Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +0.6.12 - 15 August 2008 |
| 6 | + Added $wgEnablePersistentCookies and $wgEnableHtmlDiff. |
| 7 | + |
5 | 8 | 0.6.11 - 13 August 2008 |
6 | 9 | Added --alpha option to findSettings.php script. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -407,6 +407,7 @@ |
408 | 408 | 'wgCookiePrefix' => 'text', |
409 | 409 | 'wgCookieSecure' => 'bool', |
410 | 410 | 'wgDisableCookieCheck' => 'bool', |
| 411 | + 'wgEnablePersistentCookies' => 'bool', |
411 | 412 | 'wgHttpOnlyBlacklist' => 'array', |
412 | 413 | 'wgSessionName' => 'text', |
413 | 414 | ), |
— | — | @@ -680,6 +681,7 @@ |
681 | 682 | 'wgCommandLineDarkBg' => 'bool', |
682 | 683 | 'wgCompressRevisions' => 'bool', |
683 | 684 | 'wgDisableOutputCompression' => 'bool', |
| 685 | + 'wgEnableHtmlDiff' => 'bool', |
684 | 686 | 'wgExternalDiffEngine' => 'text', |
685 | 687 | 'wgMaxShellFileSize' => 'int', |
686 | 688 | 'wgMaxShellMemory' => 'int', |
— | — | @@ -1146,6 +1148,8 @@ |
1147 | 1149 | 'wgPasswordAttemptThrottle' => array( array( '1.14alpha', '>=' ) ), |
1148 | 1150 | 'wgCategoryPrefixedDefaultSortkey' => array( array( '1.14alpha', '>=' ) ), |
1149 | 1151 | 'wgSQLiteDataDirMode' => array( array( '1.14alpha', '>=' ) ), |
| 1152 | + 'wgEnablePersistentCookies' => array( array( '1.14alpha', '>=' ) ), |
| 1153 | + 'wgEnableHtmlDiff' => array( array( '1.14alpha', '>=' ) ), |
1150 | 1154 | ## Obsolete |
1151 | 1155 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1152 | 1156 | 'wgProfilerType' => array( array( '1.8alpha', '<' ) ), |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
19 | 19 | 'description' => 'Allow authorised users to configure the wiki by a web-based interface', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.6.11', |
| 21 | + 'version' => '0.6.12', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |