From: Reedy Date: Wed, 2 Jul 2014 20:55:15 +0000 (+0100) Subject: Update $wgRCFeeds documentation X-Git-Tag: 1.31.0-rc.0~15116 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_aide%28?a=commitdiff_plain;h=2ec5cb61f52c416ef43c6fc5556453140bcf7b10;p=lhc%2Fweb%2Fwiklou.git Update $wgRCFeeds documentation Added RedisPubSubFeedEngine, not added to docs in I846036c091c45059a8 Change-Id: Id38e7fef49318bdde2a8cf8719ede52fb7fdb551 --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 09907085ed..11196ae109 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -5601,9 +5601,11 @@ $wgRC2UDPOmitBots = false; * Destinations to which notifications about recent changes * should be sent. * - * As of MediaWiki 1.22, the only supported 'engine' parameter option in core - * is 'UDPRCFeedEngine', which is used to send recent changes over UDP to the - * specified server. + * As of MediaWiki 1.22, there are 2 supported 'engine' parameter option in core: + * * 'UDPRCFeedEngine', which is used to send recent changes over UDP to the + * specified server. + * * 'RedisPubSubFeedEngine', which is used to send recent changes to Redis. + * * The common options are: * * 'uri' -- the address to which the notices are to be sent. * * 'formatter' -- the class name (implementing RCFeedFormatter) which will @@ -5613,10 +5615,12 @@ $wgRC2UDPOmitBots = false; * * 'omit_user' -- whether edits by registered users should be in the feed * * 'omit_minor' -- whether minor edits should be in the feed * * 'omit_patrolled' -- whether patrolled edits should be in the feed + * * The IRC-specific options are: * * 'add_interwiki_prefix' -- whether the titles should be prefixed with * the first entry in the $wgLocalInterwikis array (or the value of * $wgLocalInterwiki, if set) + * * The JSON-specific options are: * * 'channel' -- if set, the 'channel' parameter is also set in JSON values. *