r68972 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r68971‎ | r68972 | r68973 >
Date:20:46, 3 July 2010
Author:ialex
Status:deferred
Tags:
Comment:
Added $wgSqlMode
Modified paths:
  • /trunk/extensions/Configure/CHANGELOG (modified) (history)
  • /trunk/extensions/Configure/Configure.php (modified) (history)
  • /trunk/extensions/Configure/handler/HandlerDb.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.33 - 3 July 2010
 6+ Added $wgSqlMode.
 7+
58 0.15.32 - 23 June 2010
69 Updated Translate extension.
710
Index: trunk/extensions/Configure/settings/Settings.i18n.php
@@ -278,6 +278,7 @@
279279 'configure-setting-wgExtensionFunctions' => 'Extension Functions',
280280 'configure-setting-wgExtensionMessagesFiles' => 'Extension messages files',
281281 'configure-setting-wgExternalStores' => 'External storage configuration',
 282+ 'configure-setting-wgSQLMode' => 'SQL mode',
282283 'configure-setting-wgHooks' => 'Hooks',
283284 'configure-setting-wgPagePropLinkInvalidations' => 'Page property link table invalidation lists',
284285 'configure-setting-wgParserOutputHooks' => 'Parser output hooks',
Index: trunk/extensions/Configure/settings/Settings-core.php
@@ -190,6 +190,7 @@
191191 'wgDBAvgStatusPoll' => 'int',
192192 'wgUseDumbLinkUpdate' => 'bool',
193193 'wgExternalStores' => 'array',
 194+ 'wgSQLMode' => 'text',
194195 ),
195196 'load-balancing' => array(
196197 'wgDBClusterTimeout' => 'int',
@@ -1157,6 +1158,7 @@
11581159 'wgCommandLineMode',
11591160 'wgConf',
11601161 'wgDBconnection', // Too old
 1162+ 'wgSQLMode',
11611163 'wgDBmysql4', // Too old
11621164 'wgEditEncoding', // Too old
11631165 'wgExceptionHooks',
@@ -1204,4 +1206,5 @@
12051207 'wgJQueryMinified' => array( array( '1.17alpha', '>=' ) ),
12061208 'wgJQueryOnEveryPage' => array( array( '1.17alpha', '>=' ) ),
12071209 'wgJQueryVersion' => array( array( '1.17alpha', '>=' ) ),
 1210+ 'wgSQLMode' => array( array( '1.17alpha', '>=' ) ),
12081211 );
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.32',
 21+ 'version' => '0.15.33',
2222 );
2323
2424 # Configuration part
Index: trunk/extensions/Configure/handler/HandlerDb.php
@@ -343,6 +343,7 @@
344344 'wgSharedDB',
345345 'wgSharedPrefix',
346346 'wgSharedTables',
 347+ 'wgSQLMode',
347348 'wgDBClusterTimeout',
348349 'wgDBservers',
349350 'wgLBFactoryConf',

Follow-up revisions

RevisionCommit summaryAuthorDate
r68973Fix for r68972: put the correct restriction :)ialex20:49, 3 July 2010

Status & tagging log