mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-11 20:59:42 +01:00
@tiny should be specifying cmd=True when I call _getTinyUrl. That was the
whole point of having a cmd parameter.
This commit is contained in:
parent
b14ee76ca0
commit
84bff2f755
@ -53,27 +53,6 @@ import ircmsgs
|
|||||||
import privmsgs
|
import privmsgs
|
||||||
import callbacks
|
import callbacks
|
||||||
|
|
||||||
example = utils.wrapLines("""
|
|
||||||
<supybot> lasturl, numurls, randomurl
|
|
||||||
<jemfinch> @numurls
|
|
||||||
<supybot> Error: Command must be sent in a channel or include a channel in its arguments.
|
|
||||||
<jemfinch> (each channel has its own URL database, so these commands need to know which channel database to access)
|
|
||||||
<jemfinch> @numurls #sourcereview
|
|
||||||
<supybot> I have 93 URLs in my database.
|
|
||||||
<jemfinch> @randomurl #sourcereview
|
|
||||||
<supybot> <http://gameknot.com/chess.pl?bd=1022045&r=735> (added by Strike at 06:25 PM, August 17, 2003)
|
|
||||||
<jemfinch> @lasturl
|
|
||||||
<supybot> Error: Command must be sent in a channel or include a channel in its arguments.
|
|
||||||
<jemfinch> @lasturl #sourcereview
|
|
||||||
<supybot> <http://lambda.weblogs.com/xml/rss.xml>, added by Strike at 12:12 AM, August 26, 2003.
|
|
||||||
<jemfinch> @lasturl #sourcereview --proto ftp
|
|
||||||
<supybot> <ftp://ftp.us.debian.org/debian/dists/unstable/Contents-i386.gz>, added by Strike|work at 07:27 PM, August 21, 2003.
|
|
||||||
<jemfinch> @lasturl #sourcereview --near Stuka
|
|
||||||
<supybot> <http://slashdot.org/comments.pl?sid=75020&cid=6720123>, added by jemfinch at 03:16 PM, August 25, 2003.
|
|
||||||
<jemfinch> @lasturl #sourcereview --at coderforums.com
|
|
||||||
<supybot> <http://coderforums.com/showthread.php?s=&postid=15798#post15798>, added by Strike|work at 02:41 PM, August 25, 2003.
|
|
||||||
""")
|
|
||||||
|
|
||||||
def configure(onStart, afterConnect, advanced):
|
def configure(onStart, afterConnect, advanced):
|
||||||
# This will be called by setup.py to configure this module. onStart and
|
# This will be called by setup.py to configure this module. onStart and
|
||||||
# afterConnect are both lists. Append to onStart the commands you would
|
# afterConnect are both lists. Append to onStart the commands you would
|
||||||
@ -117,7 +96,7 @@ class URL(callbacks.Privmsg, plugins.Toggleable, plugins.ChannelDBHandler):
|
|||||||
db.commit()
|
db.commit()
|
||||||
return db
|
return db
|
||||||
|
|
||||||
_urlRe = re.compile(r"([^\[<(\s]+://[^\])>\s]+)", re.I)
|
_urlRe = re.compile(r"([-a-z0-9+.]+://[-\w=#!*()',$;&/@:%?.~]+)", re.I)
|
||||||
def doPrivmsg(self, irc, msg):
|
def doPrivmsg(self, irc, msg):
|
||||||
channel = msg.args[0]
|
channel = msg.args[0]
|
||||||
db = self.getDb(channel)
|
db = self.getDb(channel)
|
||||||
@ -216,7 +195,7 @@ class URL(callbacks.Privmsg, plugins.Toggleable, plugins.ChannelDBHandler):
|
|||||||
if self.toggles.get('tinysnarf', channel=msg.args[0]) and\
|
if self.toggles.get('tinysnarf', channel=msg.args[0]) and\
|
||||||
self.toggles.get('tinyreply', channel=msg.args[0]):
|
self.toggles.get('tinyreply', channel=msg.args[0]):
|
||||||
return
|
return
|
||||||
url = self._getTinyUrl(url)
|
url = self._getTinyUrl(url, cmd=True)
|
||||||
if not url:
|
if not url:
|
||||||
irc.error(msg, 'Could not parse the TinyURL.com results page. '\
|
irc.error(msg, 'Could not parse the TinyURL.com results page. '\
|
||||||
'(%s)' % conf.replyPossibleBug)
|
'(%s)' % conf.replyPossibleBug)
|
||||||
|
Loading…
Reference in New Issue
Block a user