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.15.4 - 16 January 2010 |
| 6 | + Updated scripts/findSettings.php's ignore list. |
| 7 | + |
5 | 8 | 0.15.3 - 12 January 2010 |
6 | 9 | Now using $wgExtensionAssetsPath for the path to Configure.js/.css. |
7 | 10 | |
Index: trunk/extensions/Configure/scripts/findSettings.php |
— | — | @@ -134,10 +134,12 @@ |
135 | 135 | $allSettings = array_keys( $coreSettings->getAllSettings() ); |
136 | 136 | $ignoreList = array( |
137 | 137 | 'wgAuth', 'wgCommandLineMode', 'wgCheckSerialized', 'wgConf','wgDBconnection', |
138 | | - 'wgEnableNewpagesUserFilter', 'wgEnableSerializedMessages', 'wgEnforceHtmlIds', |
139 | | - 'wgLegacySchemaConversion', 'wgMaintenanceScripts', 'wgMemCachedDebug', |
140 | | - 'wgOldChangeTagsIndex', 'wgProxyKey', 'wgValidSkinNames', 'wgVectorExtraStyles', |
141 | | - 'wgVersion' |
| 138 | + 'wgEnableNewpagesUserFilter', 'wgEnableSerializedMessages', 'wgEnableSorbs', |
| 139 | + 'wgEnforceHtmlIds', 'wgLegacySchemaConversion', 'wgMaintenanceScripts', |
| 140 | + 'wgMemCachedDebug', 'wgOldChangeTagsIndex', 'wgProxyKey', 'wgSorbsUrl', |
| 141 | + 'wgValidSkinNames', 'wgVectorExtraStyles', 'wgVersion', |
| 142 | + // For now |
| 143 | + 'wgDummyLanguageCodes', 'wgAsyncHTTPTimeout', |
142 | 144 | ); |
143 | 145 | } |
144 | 146 | |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'description' => 'Allow authorised users to configure the wiki via a web-based interface', |
21 | 21 | 'descriptionmsg' => 'configure-desc', |
22 | | - 'version' => '0.15.3', |
| 22 | + 'version' => '0.15.4', |
23 | 23 | ); |
24 | 24 | |
25 | 25 | # Configuration part |