Input method integration with ULS

The file ext.uls.settingspanel.js is a draft for common
code in the different settings panels.

Change-Id: I057274f16b27b2c18d43d41c1d43f485a18ef0bf
This commit is contained in:
Santhosh Thottingal
2012-10-18 16:27:25 +05:30
parent 90de05cb97
commit f13e474e43
67 changed files with 8867 additions and 22 deletions

View File

@@ -92,6 +92,7 @@ $wgResourceModules['ext.uls.init'] = array(
'jquery.uls',
'jquery.i18n',
'ext.uls.displaysettings',
'ext.uls.inputsettings',
),
'position' => 'top',
);
@@ -118,7 +119,7 @@ $wgResourceModules['ext.uls.languagesettings'] = array(
'styles' => 'resources/css/ext.uls.languagesettings.css',
'localBasePath' => $dir,
'remoteExtPath' => 'UniversalLanguageSelector',
'dependencies' => array(
'dependencies' => array(
'ext.uls.preferences',
),
);
@@ -130,8 +131,19 @@ $wgResourceModules['ext.uls.webfonts'] = array(
'dependencies' => array(
'jquery.webfonts',
'ext.uls.webfonts.repository',
'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',
@@ -145,6 +157,18 @@ $wgResourceModules['ext.uls.displaysettings'] = array(
'remoteExtPath' => 'UniversalLanguageSelector',
);
$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',
);
$wgResourceModules['jquery.uls'] = array(
'scripts' => array(
'lib/jquery.uls/jquery.uls.js',
@@ -176,4 +200,13 @@ $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',
);