Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. Localisation updates are done |
3 | 3 | through translatewiki.net and are not listed here. |
4 | 4 | |
| 5 | +0.15.23 - 2 May 2010 |
| 6 | + Added $wgLocalStylePath and $wgVectorShowVariantName. |
| 7 | + |
5 | 8 | 0.15.22 - 25 April 2010 |
6 | 9 | Added $wgAllowImageTag and $wgLogAutocreatedAccounts. |
7 | 10 | |
Index: trunk/extensions/Configure/settings/Settings.i18n.php |
— | — | @@ -329,6 +329,7 @@ |
330 | 330 | 'configure-setting-wgValidSkinNames-value' => 'Display name', |
331 | 331 | 'configure-setting-wgVectorUseIconWatch' => 'Watch and unwatch as an icon rather than a link', |
332 | 332 | 'configure-setting-wgVectorUseSimpleSearch' => 'Use an icon search button rather than Go & Search buttons', |
| 333 | + 'configure-setting-wgVectorShowVariantName' => 'Show the name of the current language variant as a label in the variants drop-down menu', |
333 | 334 | 'configure-setting-wgContentNamespaces' => 'Namespaces which are considered to contain real content, or pages', |
334 | 335 | 'configure-setting-wgExtraNamespaces' => 'Namespace overrides', |
335 | 336 | 'configure-setting-wgExtraNamespaces-key' => 'Namespace ID', |
— | — | @@ -563,6 +564,7 @@ |
564 | 565 | 'configure-setting-wgSQLiteDataDirMode' => 'Default directory mode for SQLite data directory on creation', |
565 | 566 | 'configure-setting-wgStyleDirectory' => 'File system path to the skins directory', |
566 | 567 | 'configure-setting-wgStylePath' => 'URL of the skins directory', |
| 568 | + 'configure-setting-wgLocalStylePath' => "Same as \$wgStylePath, but shouldn't point to an external domain", |
567 | 569 | 'configure-setting-wgStyleSheetPath' => 'URL of the directory containing the stylesheets', |
568 | 570 | 'configure-setting-wgTmpDirectory' => 'URL of the temporary directory', |
569 | 571 | 'configure-setting-wgUploadBaseUrl' => 'Base URL for uploaded files if shared upload directory is not to be used', |
Index: trunk/extensions/Configure/settings/Settings-core.php |
— | — | @@ -139,6 +139,7 @@ |
140 | 140 | 'wgServerName' => 'text', |
141 | 141 | 'wgStyleDirectory' => 'text', |
142 | 142 | 'wgStylePath' => 'text', |
| 143 | + 'wgLocalStylePath' => 'text', |
143 | 144 | 'wgStyleSheetPath' => 'text', |
144 | 145 | 'wgTmpDirectory' => 'text', |
145 | 146 | 'wgUploadBaseUrl' => 'text', |
— | — | @@ -331,6 +332,7 @@ |
332 | 333 | 'vector' => array( |
333 | 334 | 'wgVectorUseIconWatch' => 'bool', |
334 | 335 | 'wgVectorUseSimpleSearch' => 'bool', |
| 336 | + 'wgVectorShowVariantName' => 'bool', |
335 | 337 | ), |
336 | 338 | ), |
337 | 339 | 'category' => array( |
— | — | @@ -1186,4 +1188,6 @@ |
1187 | 1189 | 'wgGalleryOptions' => array( array( '1.17alpha', '>=' ) ), |
1188 | 1190 | 'wgAllowImageTag' => array( array( '1.17alpha', '>=' ) ), |
1189 | 1191 | 'wgLogAutocreatedAccounts' => array( array( '1.17alpha', '>=' ) ), |
| 1192 | + 'wgLocalStylePath' => array( array( '1.17alpha', '>=' ) ), |
| 1193 | + 'wgVectorShowVariantName' => array( array( '1.17alpha', '>=' ) ), |
1190 | 1194 | ); |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ), |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.15.22', |
| 21 | + 'version' => '0.15.23', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |