jenkins-bot has submitted this change and it was merged.

Change subject: Sort modules alphabetically
......................................................................


Sort modules alphabetically

Change-Id: Id8a0daabe6204e2a4c52d702e29d891fd80b89ae
---
M Resources.php
1 file changed, 71 insertions(+), 67 deletions(-)

Approvals:
  Siebrand: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/Resources.php b/Resources.php
index 3e6a461..cc6870b 100644
--- a/Resources.php
+++ b/Resources.php
@@ -7,6 +7,35 @@
  */
 
 /* Base ULS module */
+$wgResourceModules['ext.uls.displaysettings'] = array(
+       'scripts' => 'resources/js/ext.uls.displaysettings.js',
+       'styles' => 'resources/css/ext.uls.displaysettings.css',
+       'localBasePath' => $dir,
+       'dependencies' => array(
+               'ext.uls.languagesettings',
+               'ext.uls.webfonts',
+               'jquery.i18n',
+       ),
+       'remoteExtPath' => 'UniversalLanguageSelector',
+);
+
+$wgResourceModules['ext.uls.geoclient'] = array(
+       'scripts' => 'resources/js/ext.uls.geoclient.js',
+       'localBasePath' => $dir,
+       'remoteExtPath' => 'UniversalLanguageSelector',
+);
+
+$wgResourceModules['ext.uls.ime'] = array(
+       'scripts' => 'resources/js/ext.uls.ime.js',
+       'localBasePath' => $dir,
+       'remoteExtPath' => 'UniversalLanguageSelector',
+       'dependencies' => array(
+               'jquery.ime',
+               'ext.uls.preferences',
+       ),
+);
+
+// Base ULS module
 $wgResourceModules['ext.uls.init'] = array(
        'scripts' => 'resources/js/ext.uls.init.js',
        'styles' => 'resources/css/ext.uls.css',
@@ -22,7 +51,20 @@
        'position' => 'top',
 );
 
-/* Interface language selection module */
+
+$wgResourceModules['ext.uls.inputsettings'] = array(
+       'scripts' => 'resources/js/ext.uls.inputsettings.js',
+       'styles' => 'resources/css/ext.uls.inputsettings.css',
+       'localBasePath' => $dir,
+       'dependencies' => array(
+               'ext.uls.languagesettings',
+               'ext.uls.ime',
+               'jquery.i18n',
+       ),
+       'remoteExtPath' => 'UniversalLanguageSelector',
+);
+
+// Interface language selection module
 $wgResourceModules['ext.uls.interface'] = array(
        'scripts' => 'resources/js/ext.uls.interface.js',
        'localBasePath' => $dir,
@@ -37,10 +79,14 @@
        'position' => 'top',
 );
 
-$wgResourceModules['ext.uls.geoclient'] = array(
-       'scripts' => 'resources/js/ext.uls.geoclient.js',
+$wgResourceModules['ext.uls.languagesettings'] = array(
+       'scripts' => 'resources/js/ext.uls.languagesettings.js',
+       'styles' => 'resources/css/ext.uls.languagesettings.css',
        'localBasePath' => $dir,
        'remoteExtPath' => 'UniversalLanguageSelector',
+       'dependencies' => array(
+               'ext.uls.preferences',
+       ),
 );
 
 $wgResourceModules['ext.uls.preferences'] = array(
@@ -54,16 +100,6 @@
        ),
 );
 
-$wgResourceModules['ext.uls.languagesettings'] = array(
-       'scripts' => 'resources/js/ext.uls.languagesettings.js',
-       'styles' => 'resources/css/ext.uls.languagesettings.css',
-       'localBasePath' => $dir,
-       'remoteExtPath' => 'UniversalLanguageSelector',
-       'dependencies' => array(
-               'ext.uls.preferences',
-       ),
-);
-
 $wgResourceModules['ext.uls.webfonts'] = array(
        'scripts' => 'resources/js/ext.uls.webfonts.js',
        'localBasePath' => $dir,
@@ -74,37 +110,26 @@
                'ext.uls.preferences',
        ),
 );
-$wgResourceModules['ext.uls.ime'] = array(
-       'scripts' => 'resources/js/ext.uls.ime.js',
-       'localBasePath' => $dir,
-       'remoteExtPath' => 'UniversalLanguageSelector',
-       'dependencies' => array(
-               'jquery.ime',
-               'ext.uls.preferences',
-       ),
-);
 
-$wgResourceModules['ext.uls.displaysettings'] = array(
-       'scripts' => 'resources/js/ext.uls.displaysettings.js',
-       'styles' => 'resources/css/ext.uls.displaysettings.css',
+$wgResourceModules['ext.uls.webfonts.repository'] = array(
+       'scripts' => 'resources/js/ext.uls.webfonts.repository.js',
        'localBasePath' => $dir,
-       'dependencies' => array(
-               'ext.uls.languagesettings',
-               'ext.uls.webfonts',
-               'jquery.i18n',
-       ),
        'remoteExtPath' => 'UniversalLanguageSelector',
 );
 
-$wgResourceModules['ext.uls.inputsettings'] = array(
-       'scripts' => 'resources/js/ext.uls.inputsettings.js',
-       'styles' => 'resources/css/ext.uls.inputsettings.css',
+
+$wgResourceModules['jquery.i18n'] = array(
+       'scripts' => 'lib/jquery.i18n.js',
        'localBasePath' => $dir,
-       'dependencies' => array(
-               'ext.uls.languagesettings',
-               'ext.uls.ime',
-               'jquery.i18n',
+       'remoteExtPath' => 'UniversalLanguageSelector',
+);
+
+$wgResourceModules['jquery.ime'] = array(
+       'scripts' => 'lib/jquery.ime/jquery.ime.js',
+       'styles' => array(
+               'lib/jquery.ime/css/jquery.ime.css',
        ),
+       'localBasePath' => $dir,
        'remoteExtPath' => 'UniversalLanguageSelector',
 );
 
@@ -126,15 +151,6 @@
                'jquery.uls.grid',
                'jquery.uls.data',
        ),
-       'position' => 'top',
-);
-
-$wgResourceModules['jquery.uls.grid'] = array(
-       'styles' => array(
-               'lib/jquery.uls/css/jquery.uls.grid.css',
-       ),
-       'localBasePath' => $dir,
-       'remoteExtPath' => 'UniversalLanguageSelector',
        'position' => 'top',
 );
 
@@ -160,29 +176,17 @@
        'position' => 'top',
 );
 
+$wgResourceModules['jquery.uls.grid'] = array(
+       'styles' => array(
+               'lib/jquery.uls/css/jquery.uls.grid.css',
+       ),
+       'localBasePath' => $dir,
+       'remoteExtPath' => 'UniversalLanguageSelector',
+       'position' => 'top',
+);
+
 $wgResourceModules['jquery.webfonts'] = array(
        'scripts' => 'lib/jquery.webfonts.js',
-       'localBasePath' => $dir,
-       'remoteExtPath' => 'UniversalLanguageSelector',
-);
-
-$wgResourceModules['ext.uls.webfonts.repository'] = array(
-       'scripts' => 'resources/js/ext.uls.webfonts.repository.js',
-       'localBasePath' => $dir,
-       'remoteExtPath' => 'UniversalLanguageSelector',
-);
-
-$wgResourceModules['jquery.i18n'] = array(
-       'scripts' => 'lib/jquery.i18n.js',
-       'localBasePath' => $dir,
-       'remoteExtPath' => 'UniversalLanguageSelector',
-);
-
-$wgResourceModules['jquery.ime'] = array(
-       'scripts' => 'lib/jquery.ime/jquery.ime.js',
-       'styles' => array(
-               'lib/jquery.ime/css/jquery.ime.css',
-       ),
        'localBasePath' => $dir,
        'remoteExtPath' => 'UniversalLanguageSelector',
 );

-- 
To view, visit https://gerrit.wikimedia.org/r/55865
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Id8a0daabe6204e2a4c52d702e29d891fd80b89ae
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/UniversalLanguageSelector
Gerrit-Branch: master
Gerrit-Owner: Nikerabbit <[email protected]>
Gerrit-Reviewer: Siebrand <[email protected]>
Gerrit-Reviewer: jenkins-bot

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to