Merge pull request #754 from Mkaysi/patch-1

RSS: make more sense to default config
This commit is contained in:
Valentin Lorentz 2014-06-20 22:52:07 +02:00
commit 1a2f720857

View File

@ -54,7 +54,7 @@ conf.registerChannelValue(RSS, 'bold', registry.Boolean(
True, _("""Determines whether the bot will bold the title of the feed when True, _("""Determines whether the bot will bold the title of the feed when
it announces news."""))) it announces news.""")))
conf.registerChannelValue(RSS, 'headlineSeparator', conf.registerChannelValue(RSS, 'headlineSeparator',
registry.StringSurroundedBySpaces(' || ', _("""Determines what string is registry.StringSurroundedBySpaces('|', _("""Determines what string is
used to separate headlines in new feeds."""))) used to separate headlines in new feeds.""")))
conf.registerChannelValue(RSS, 'announcementPrefix', conf.registerChannelValue(RSS, 'announcementPrefix',
registry.StringWithSpaceOnRight(_('News from '), _("""Determines what registry.StringWithSpaceOnRight(_('News from '), _("""Determines what
@ -83,7 +83,7 @@ conf.registerGlobalValue(RSS, 'feeds',
FeedNames([], _("""Determines what feeds should be accessible as FeedNames([], _("""Determines what feeds should be accessible as
commands."""))) commands.""")))
conf.registerChannelValue(RSS, 'showLinks', conf.registerChannelValue(RSS, 'showLinks',
registry.Boolean(False, _("""Determines whether the bot will list the link registry.Boolean(True, _("""Determines whether the bot will list the link
along with the title of the feed when the rss command is called. along with the title of the feed when the rss command is called.
supybot.plugins.RSS.announce.showLinks affects whether links will be supybot.plugins.RSS.announce.showLinks affects whether links will be
listed when a feed is automatically announced."""))) listed when a feed is automatically announced.""")))
@ -110,7 +110,7 @@ conf.registerChannelValue(RSS, 'keywordBlacklist',
conf.registerGroup(RSS, 'announce') conf.registerGroup(RSS, 'announce')
conf.registerChannelValue(RSS.announce, 'showLinks', conf.registerChannelValue(RSS.announce, 'showLinks',
registry.Boolean(False, _("""Determines whether the bot will list the link registry.Boolean(True, _("""Determines whether the bot will list the link
along with the title of the feed when a feed is automatically along with the title of the feed when a feed is automatically
announced."""))) announced.""")))