From 5be0b319a48a4755f5aaa0eda9dfd7b9c0b50b10 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 19 Aug 2004 18:16:24 +0000 Subject: [PATCH] Bugfix. --- plugins/Bugzilla.py | 19 +++++++------------ test/test_Bugzilla.py | 5 +++-- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/plugins/Bugzilla.py b/plugins/Bugzilla.py index 2767f4a82..00dfbf0ce 100644 --- a/plugins/Bugzilla.py +++ b/plugins/Bugzilla.py @@ -207,11 +207,12 @@ class Bugzilla(callbacks.PrivmsgCommandAndRegexp): irc.reply('I have no defined bugzillae.') def bugzSnarf(self, irc, msg, match): - r"""\s*bug\s*(?:id|ids|#)?\s+(?:id|ids|#)?(?P\d+)""" + r"""\bbug\b(?:id|ids|#)?\s+(?:id|ids|#)?(?P\d+)""" snarfTarget = self.registryValue('snarfTarget') - bugid = match.group('bug') - + if not snarfTarget: + return + bugid = match.group('bug') name = self.shorthand[snarfTarget] try: (url, description) = self.db[name] @@ -219,13 +220,10 @@ class Bugzilla(callbacks.PrivmsgCommandAndRegexp): s = self.registryValue('replyNoBugzilla', name) irc.error(s % name) return - if not self.registryValue('bugSnarfer', name): return - queryurl = '%s/xml.cgi?id=%s' % (url, bugid) bold = self.registryValue('bold', name) - try: summary = self._get_short_bug_summary(queryurl,description,bugid) except BugzillaError, e: @@ -234,16 +232,13 @@ class Bugzilla(callbacks.PrivmsgCommandAndRegexp): except IOError, e: s = '%s. Try yourself: %s' % (e, queryurl) irc.error(s) - report = {} - report['id'] = bugid - report['url'] = str('%s/show_bug.cgi?id=%s' % (url, bugid)) - report['title'] = str(summary['title']) + report['id'] = bugid + report['url'] = str('%s/show_bug.cgi?id=%s' % (url, bugid)) + report['title'] = str(summary['title']) report['summary'] = str(self._mk_summary_string(summary, bold)) report['product'] = str(summary['product']) - s = '%(product)s bug #%(id)s: %(title)s %(summary)s' % report - irc.reply(s, prefixName=False) def bzSnarfer(self, irc, msg, match): diff --git a/test/test_Bugzilla.py b/test/test_Bugzilla.py index 678084527..cbf64138e 100644 --- a/test/test_Bugzilla.py +++ b/test/test_Bugzilla.py @@ -60,10 +60,11 @@ if network: def testConfigBugSnarfer(self): self.assertNotError('add gcc http://gcc.gnu.org/bugzilla gcc') + conf.supybot.plugins.bugzilla.snarfTarget.setValue('gcc') conf.supybot.plugins.bugzilla.bugSnarfer.setValue(False) - self.assertNoResponse('bug 5') + self.assertNoResponse('blah blah bug 5') conf.supybot.plugins.bugzilla.bugSnarfer.setValue(True) - self.assertNotError('bug 5') + self.assertNotError('blah blah bug 5') # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: