r65812 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r65811‎ | r65812 | r65813 >
Date:14:43, 2 May 2010
Author:ialex
Status:deferred
Tags:
Comment:
Added $wgLocalStylePath and $wgVectorShowVariantName
Modified paths:
  • /trunk/extensions/Configure/CHANGELOG (modified) (history)
  • /trunk/extensions/Configure/Configure.php (modified) (history)
  • /trunk/extensions/Configure/settings/Settings-core.php (modified) (history)
  • /trunk/extensions/Configure/settings/Settings.i18n.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Configure/CHANGELOG
@@ -1,6 +1,9 @@
22 This file lists changes on this extension. Localisation updates are done
33 through translatewiki.net and are not listed here.
44
 5+0.15.23 - 2 May 2010
 6+ Added $wgLocalStylePath and $wgVectorShowVariantName.
 7+
58 0.15.22 - 25 April 2010
69 Added $wgAllowImageTag and $wgLogAutocreatedAccounts.
710
Index: trunk/extensions/Configure/settings/Settings.i18n.php
@@ -329,6 +329,7 @@
330330 'configure-setting-wgValidSkinNames-value' => 'Display name',
331331 'configure-setting-wgVectorUseIconWatch' => 'Watch and unwatch as an icon rather than a link',
332332 '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',
333334 'configure-setting-wgContentNamespaces' => 'Namespaces which are considered to contain real content, or pages',
334335 'configure-setting-wgExtraNamespaces' => 'Namespace overrides',
335336 'configure-setting-wgExtraNamespaces-key' => 'Namespace ID',
@@ -563,6 +564,7 @@
564565 'configure-setting-wgSQLiteDataDirMode' => 'Default directory mode for SQLite data directory on creation',
565566 'configure-setting-wgStyleDirectory' => 'File system path to the skins directory',
566567 'configure-setting-wgStylePath' => 'URL of the skins directory',
 568+ 'configure-setting-wgLocalStylePath' => "Same as \$wgStylePath, but shouldn't point to an external domain",
567569 'configure-setting-wgStyleSheetPath' => 'URL of the directory containing the stylesheets',
568570 'configure-setting-wgTmpDirectory' => 'URL of the temporary directory',
569571 '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 @@
140140 'wgServerName' => 'text',
141141 'wgStyleDirectory' => 'text',
142142 'wgStylePath' => 'text',
 143+ 'wgLocalStylePath' => 'text',
143144 'wgStyleSheetPath' => 'text',
144145 'wgTmpDirectory' => 'text',
145146 'wgUploadBaseUrl' => 'text',
@@ -331,6 +332,7 @@
332333 'vector' => array(
333334 'wgVectorUseIconWatch' => 'bool',
334335 'wgVectorUseSimpleSearch' => 'bool',
 336+ 'wgVectorShowVariantName' => 'bool',
335337 ),
336338 ),
337339 'category' => array(
@@ -1186,4 +1188,6 @@
11871189 'wgGalleryOptions' => array( array( '1.17alpha', '>=' ) ),
11881190 'wgAllowImageTag' => array( array( '1.17alpha', '>=' ) ),
11891191 'wgLogAutocreatedAccounts' => array( array( '1.17alpha', '>=' ) ),
 1192+ 'wgLocalStylePath' => array( array( '1.17alpha', '>=' ) ),
 1193+ 'wgVectorShowVariantName' => array( array( '1.17alpha', '>=' ) ),
11901194 );
Index: trunk/extensions/Configure/Configure.php
@@ -17,7 +17,7 @@
1818 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ),
1919 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure',
2020 'descriptionmsg' => 'configure-desc',
21 - 'version' => '0.15.22',
 21+ 'version' => '0.15.23',
2222 );
2323
2424 # Configuration part

Status & tagging log