From 23b50f539aee351c2899cfdad61f493974a53ac1 Mon Sep 17 00:00:00 2001 From: Dennis Kaarsemaker Date: Mon, 17 Sep 2007 21:00:51 +0200 Subject: [PATCH] Fix up bugtracker --- Bugtracker/__init__.py | 4 ++-- Bugtracker/config.py | 8 +++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Bugtracker/__init__.py b/Bugtracker/__init__.py index 6c04428..156c27d 100644 --- a/Bugtracker/__init__.py +++ b/Bugtracker/__init__.py @@ -19,10 +19,10 @@ This plugin will display bug information when requested. import supybot import supybot.world as world -__version__ = "2.5" +__version__ = "2.5.1" __author__ = supybot.Author("Dennis Kaarsemaker","Seveas","dennis@kaarsemaker.net") __contributors__ = {} -__url__ = 'http://bots.ubuntulinux.nl/' +__url__ = 'http://ubotu.ubuntu-nl.org' import config reload(config) diff --git a/Bugtracker/config.py b/Bugtracker/config.py index c9ef892..f4c8901 100644 --- a/Bugtracker/config.py +++ b/Bugtracker/config.py @@ -28,8 +28,6 @@ conf.registerChannelValue(conf.supybot.plugins.Bugtracker, 'bugSnarfer', will have their information reported into the channel.""")) conf.registerChannelValue(conf.supybot.plugins.Bugtracker, 'bugReporter', registry.String('', """Report new bugs (experimental)""")) -conf.registerChannelValue(conf.supybot.plugins.Bugtracker, 'bugReporter_closed', - registry.String('', """Report new bugs (experimental)""")) conf.registerChannelValue(conf.supybot.plugins.Bugtracker, 'replyNoBugtracker', registry.String('I don\'t have a bugtracker %s.', """Determines the phrase to use when notifying the user that there is no information about that @@ -48,10 +46,10 @@ conf.registerGlobalValue(conf.supybot.plugins.Bugtracker, 'replyWhenNotFound', conf.registerChannelValue(conf.supybot.plugins.Bugtracker, 'repeatdelay', registry.Integer(60, """Number of seconds to wait between repeated bug calls""")) conf.registerChannelValue(conf.supybot.plugins.Bugtracker, 'showassignee', - registry.Boolean(False, """Whether to show th assignee in bug reports""")) + registry.Boolean(False, """Whether to show the assignee in bug reports""")) conf.registerGlobalValue(conf.supybot.plugins.Bugtracker, 'reportercache', - registry.String('', """Name of the basedir for the bugreporter cache""")) + registry.String('', """Name of the basedir for the bugreporter cache""",private=True)) conf.registerGlobalValue(conf.supybot.plugins.Bugtracker, 'imap_server', registry.String('', """IMAP server for bugmail account""",private=True)) conf.registerGlobalValue(conf.supybot.plugins.Bugtracker, 'imap_user', @@ -59,5 +57,5 @@ conf.registerGlobalValue(conf.supybot.plugins.Bugtracker, 'imap_user', conf.registerGlobalValue(conf.supybot.plugins.Bugtracker, 'imap_password', registry.String('', """IMAP password for bugmail account""", private=True)) conf.registerGlobalValue(conf.supybot.plugins.Bugtracker, 'imap_ssl', - registry.Boolean(False, """Use SSL for imap connections""")) + registry.Boolean(False, """Use SSL for imap connections""",private=True))