RSS: make more sense to default config

* Change default separator to `|` as used by Topic plugin.
* Show links with manual calling and automatic announcement.
    * In most of cases we want to know where does new RSS feed title point to...
This commit is contained in:
Mikaela Suomalainen 2014-06-20 22:09:30 +03:00
parent aad0f0c88c
commit 2caade8f7c

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.""")))