r40380 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r40379‎ | r40380 | r40381 >
Date:13:49, 3 September 2008
Author:jojo
Status:old
Tags:
Comment:
fixed typo, added example for $wgCollectionFormats
Modified paths:
  • /trunk/extensions/Collection/README.txt (modified) (history)

Diff [purge]

Index: trunk/extensions/Collection/README.txt
@@ -81,14 +81,22 @@
8282 DO NOT USE THIS SETTING, as the credentials will be exposed to eavesdropping!
8383
8484 *$wgCollectionFormats*
85 - An array mapping names of mwlib_ writers to the name of the produces format.
 85+ An array mapping names of mwlib_ writers to the name of the produced format.
8686 The default value is:
8787
8888 array(
8989 'rl' => 'PDF',
9090 )
9191
92 - i.e. only PDF enabled. See mwlib_ for possible other writers.
 92+ i.e. only PDF enabled. If you want to add OpenDocument Text in addition to
 93+ PDF you can set $wgCollectionFormats to something like this:
 94+
 95+ $wgCollectionFormats = array(
 96+ 'rl' => 'PDF',
 97+ 'odf' => 'ODT',
 98+ );
 99+
 100+ See mwlib_ for possible other writers.
93101
94102 *$wgCollectionStartPage (string)*
95103 Title of a page that is displayed when a user clicks on "Start collection",