Index: trunk/extensions/Collection/README.txt |
— | — | @@ -81,14 +81,22 @@ |
82 | 82 | DO NOT USE THIS SETTING, as the credentials will be exposed to eavesdropping! |
83 | 83 | |
84 | 84 | *$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. |
86 | 86 | The default value is: |
87 | 87 | |
88 | 88 | array( |
89 | 89 | 'rl' => 'PDF', |
90 | 90 | ) |
91 | 91 | |
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. |
93 | 101 | |
94 | 102 | *$wgCollectionStartPage (string)* |
95 | 103 | Title of a page that is displayed when a user clicks on "Start collection", |