Update code formatting

Change-Id: I6a004a2d1ee803325cb6cfa3ee797a89db058635
This commit is contained in:
Siebrand Mazeland
2013-01-28 11:04:45 +01:00
parent 88a7d5bf8e
commit e3a4d27a49

View File

@@ -25,7 +25,7 @@ if ( !defined( 'MEDIAWIKI' ) ) {
/** /**
* Version number used in extension credits and in other placed where needed. * Version number used in extension credits and in other placed where needed.
*/ */
define( 'ULS_VERSION', '2013-01-16' ); define( 'ULS_VERSION', '2013-01-28' );
$wgExtensionCredits['other'][] = array( $wgExtensionCredits['other'][] = array(
'path' => __FILE__, 'path' => __FILE__,
@@ -159,13 +159,13 @@ $wgResourceModules['ext.uls.webfonts'] = array(
), ),
); );
$wgResourceModules['ext.uls.ime'] = array( $wgResourceModules['ext.uls.ime'] = array(
'scripts' => 'resources/js/ext.uls.ime.js', 'scripts' => 'resources/js/ext.uls.ime.js',
'localBasePath' => $dir, 'localBasePath' => $dir,
'remoteExtPath' => 'UniversalLanguageSelector', 'remoteExtPath' => 'UniversalLanguageSelector',
'dependencies' => array( 'dependencies' => array(
'jquery.ime', 'jquery.ime',
'ext.uls.preferences', 'ext.uls.preferences',
), ),
); );
@@ -182,15 +182,15 @@ $wgResourceModules['ext.uls.displaysettings'] = array(
); );
$wgResourceModules['ext.uls.inputsettings'] = array( $wgResourceModules['ext.uls.inputsettings'] = array(
'scripts' => 'resources/js/ext.uls.inputsettings.js', 'scripts' => 'resources/js/ext.uls.inputsettings.js',
'styles' => 'resources/css/ext.uls.inputsettings.css', 'styles' => 'resources/css/ext.uls.inputsettings.css',
'localBasePath' => $dir, 'localBasePath' => $dir,
'dependencies' => array( 'dependencies' => array(
'ext.uls.languagesettings', 'ext.uls.languagesettings',
'ext.uls.ime', 'ext.uls.ime',
'jquery.i18n', 'jquery.i18n',
), ),
'remoteExtPath' => 'UniversalLanguageSelector', 'remoteExtPath' => 'UniversalLanguageSelector',
); );
$wgResourceModules['jquery.uls'] = array( $wgResourceModules['jquery.uls'] = array(
@@ -221,16 +221,16 @@ $wgResourceModules['ext.uls.webfonts.repository'] = array(
); );
$wgResourceModules['jquery.i18n'] = array( $wgResourceModules['jquery.i18n'] = array(
'scripts' => 'lib/jquery.i18n.js', 'scripts' => 'lib/jquery.i18n.js',
'localBasePath' => $dir, 'localBasePath' => $dir,
'remoteExtPath' => 'UniversalLanguageSelector', 'remoteExtPath' => 'UniversalLanguageSelector',
); );
$wgResourceModules['jquery.ime'] = array( $wgResourceModules['jquery.ime'] = array(
'scripts' => 'lib/jquery.ime/jquery.ime.js', 'scripts' => 'lib/jquery.ime/jquery.ime.js',
'styles' => array( 'styles' => array(
'lib/jquery.ime/css/jquery.ime.css', 'lib/jquery.ime/css/jquery.ime.css',
), ),
'localBasePath' => $dir, 'localBasePath' => $dir,
'remoteExtPath' => 'UniversalLanguageSelector', 'remoteExtPath' => 'UniversalLanguageSelector',
); );