Translation updates from translatewiki.net
[mediawiki.git] / resources / Resources.php
blob4e4c90ac373525f314c3af81c884c3a7b0f4180a
1 <?php
3 return array(
5 /* Special modules who have their own classes */
7 // Scripts managed by the local wiki (stored in the MediaWiki namespace)
8 'site' => array( 'class' => 'ResourceLoaderSiteModule' ),
9 'noscript' => array( 'class' => 'ResourceLoaderNoscriptModule' ),
10 'startup' => array( 'class' => 'ResourceLoaderStartUpModule' ),
11 'filepage' => array( 'class' => 'ResourceLoaderFilePageModule' ),
12 'user.groups' => array( 'class' => 'ResourceLoaderUserGroupsModule' ),
14 // Scripts managed by the current user (stored in their user space)
15 'user' => array( 'class' => 'ResourceLoaderUserModule' ),
17 // Scripts generated based on the current user's preferences
18 'user.cssprefs' => array( 'class' => 'ResourceLoaderUserCSSPrefsModule' ),
20 // Populate mediawiki.user placeholders with information about the current user
21 'user.options' => array( 'class' => 'ResourceLoaderUserOptionsModule' ),
22 'user.tokens' => array( 'class' => 'ResourceLoaderUserTokensModule' ),
24 /* Skins */
26 'skins.chick' => array(
27 'styles' => array( 'chick/main.css' => array( 'media' => 'screen, handheld' ) ),
28 'remoteBasePath' => $GLOBALS['wgStylePath'],
29 'localBasePath' => $GLOBALS['wgStyleDirectory'],
31 'skins.cologneblue' => array(
32 'styles' => array( 'cologneblue/screen.css' => array( 'media' => 'screen' ) ),
33 'remoteBasePath' => $GLOBALS['wgStylePath'],
34 'localBasePath' => $GLOBALS['wgStyleDirectory'],
36 'skins.modern' => array(
37 'styles' => array(
38 'modern/main.css' => array( 'media' => 'screen' ),
39 'modern/print.css' => array( 'media' => 'print' ),
41 'remoteBasePath' => $GLOBALS['wgStylePath'],
42 'localBasePath' => $GLOBALS['wgStyleDirectory'],
44 'skins.monobook' => array(
45 'styles' => array(
46 'common/commonElements.css' => array( 'media' => 'screen' ),
47 'common/commonContent.css' => array( 'media' => 'screen' ),
48 'common/commonInterface.css' => array( 'media' => 'screen' ),
49 'monobook/main.css' => array( 'media' => 'screen' ),
51 'remoteBasePath' => $GLOBALS['wgStylePath'],
52 'localBasePath' => $GLOBALS['wgStyleDirectory'],
54 'skins.nostalgia' => array(
55 'styles' => array( 'nostalgia/screen.css' => array( 'media' => 'screen' ) ),
56 'remoteBasePath' => $GLOBALS['wgStylePath'],
57 'localBasePath' => $GLOBALS['wgStyleDirectory'],
59 'skins.simple' => array(
60 'styles' => array( 'simple/main.css' => array( 'media' => 'screen' ) ),
61 'remoteBasePath' => $GLOBALS['wgStylePath'],
62 'localBasePath' => $GLOBALS['wgStyleDirectory'],
64 'skins.standard' => array(
65 'styles' => array( 'standard/main.css' => array( 'media' => 'screen' ) ),
66 'remoteBasePath' => $GLOBALS['wgStylePath'],
67 'localBasePath' => $GLOBALS['wgStyleDirectory'],
69 'skins.vector' => array(
70 'styles' => array(
71 'common/commonElements.css' => array( 'media' => 'screen' ),
72 'common/commonContent.css' => array( 'media' => 'screen' ),
73 'common/commonInterface.css' => array( 'media' => 'screen' ),
74 'vector/screen.css' => array( 'media' => 'screen' ),
76 'scripts' => 'vector/vector.js',
77 'remoteBasePath' => $GLOBALS['wgStylePath'],
78 'localBasePath' => $GLOBALS['wgStyleDirectory'],
81 /* jQuery */
83 'jquery' => array(
84 'scripts' => 'resources/jquery/jquery.js',
85 'debugRaw' => false,
88 /* jQuery Plugins */
90 'jquery.appear' => array(
91 'scripts' => 'resources/jquery/jquery.appear.js',
93 'jquery.arrowSteps' => array(
94 'scripts' => 'resources/jquery/jquery.arrowSteps.js',
95 'styles' => 'resources/jquery/jquery.arrowSteps.css',
97 'jquery.async' => array(
98 'scripts' => 'resources/jquery/jquery.async.js',
100 'jquery.autoEllipsis' => array(
101 'scripts' => 'resources/jquery/jquery.autoEllipsis.js',
102 'dependencies' => 'jquery.highlightText',
104 'jquery.byteLength' => array(
105 'scripts' => 'resources/jquery/jquery.byteLength.js',
107 'jquery.byteLimit' => array(
108 'scripts' => 'resources/jquery/jquery.byteLimit.js',
109 'dependencies' => 'jquery.byteLength',
111 'jquery.checkboxShiftClick' => array(
112 'scripts' => 'resources/jquery/jquery.checkboxShiftClick.js',
114 'jquery.client' => array(
115 'scripts' => 'resources/jquery/jquery.client.js',
117 'jquery.collapsibleTabs' => array(
118 'scripts' => 'resources/jquery/jquery.collapsibleTabs.js',
120 'jquery.color' => array(
121 'scripts' => 'resources/jquery/jquery.color.js',
122 'dependencies' => 'jquery.colorUtil',
124 'jquery.colorUtil' => array(
125 'scripts' => 'resources/jquery/jquery.colorUtil.js',
127 'jquery.cookie' => array(
128 'scripts' => 'resources/jquery/jquery.cookie.js',
130 'jquery.delayedBind' => array(
131 'scripts' => 'resources/jquery/jquery.delayedBind.js',
133 'jquery.expandableField' => array(
134 'scripts' => 'resources/jquery/jquery.expandableField.js',
135 'dependencies' => 'jquery.delayedBind',
137 'jquery.farbtastic' => array(
138 'scripts' => 'resources/jquery/jquery.farbtastic.js',
139 'styles' => 'resources/jquery/jquery.farbtastic.css',
140 'dependencies' => 'jquery.colorUtil',
142 'jquery.footHovzer' => array(
143 'scripts' => 'resources/jquery/jquery.footHovzer.js',
144 'styles' => 'resources/jquery/jquery.footHovzer.css',
146 'jquery.form' => array(
147 'scripts' => 'resources/jquery/jquery.form.js',
149 'jquery.getAttrs' => array(
150 'scripts' => 'resources/jquery/jquery.getAttrs.js',
152 'jquery.highlightText' => array(
153 'scripts' => 'resources/jquery/jquery.highlightText.js',
155 'jquery.hoverIntent' => array(
156 'scripts' => 'resources/jquery/jquery.hoverIntent.js',
158 'jquery.json' => array(
159 'scripts' => 'resources/jquery/jquery.json.js',
161 'jquery.localize' => array(
162 'scripts' => 'resources/jquery/jquery.localize.js',
164 'jquery.makeCollapsible' => array(
165 'scripts' => 'resources/jquery/jquery.makeCollapsible.js',
166 'styles' => 'resources/jquery/jquery.makeCollapsible.css',
167 'messages' => array( 'collapsible-expand', 'collapsible-collapse' ),
169 'jquery.messageBox' => array(
170 'scripts' => 'resources/jquery/jquery.messageBox.js',
171 'styles' => 'resources/jquery/jquery.messageBox.css',
173 'jquery.mockjax' => array(
174 'scripts' => 'resources/jquery/jquery.mockjax.js',
176 'jquery.mw-jump' => array(
177 'scripts' => 'resources/jquery/jquery.mw-jump.js',
179 'jquery.mwExtension' => array(
180 'scripts' => 'resources/jquery/jquery.mwExtension.js',
182 'jquery.placeholder' => array(
183 'scripts' => 'resources/jquery/jquery.placeholder.js',
185 'jquery.qunit' => array(
186 'scripts' => 'resources/jquery/jquery.qunit.js',
187 'styles' => 'resources/jquery/jquery.qunit.css',
188 'position' => 'top',
190 'jquery.qunit.completenessTest' => array(
191 'scripts' => 'resources/jquery/jquery.qunit.completenessTest.js',
192 'dependencies' => 'jquery.qunit',
194 'jquery.spinner' => array(
195 'scripts' => 'resources/jquery/jquery.spinner.js',
196 'styles' => 'resources/jquery/jquery.spinner.css',
198 'jquery.suggestions' => array(
199 'scripts' => 'resources/jquery/jquery.suggestions.js',
200 'styles' => 'resources/jquery/jquery.suggestions.css',
201 'dependencies' => 'jquery.autoEllipsis',
203 'jquery.tabIndex' => array(
204 'scripts' => 'resources/jquery/jquery.tabIndex.js',
206 'jquery.tablesorter' => array(
207 'scripts' => 'resources/jquery/jquery.tablesorter.js',
208 'styles' => 'resources/jquery/jquery.tablesorter.css',
209 'messages' => array( 'sort-descending', 'sort-ascending' ),
211 'jquery.textSelection' => array(
212 'scripts' => 'resources/jquery/jquery.textSelection.js',
213 'dependencies' => 'jquery.client',
215 'jquery.validate' => array(
216 'scripts' => 'resources/jquery/jquery.validate.js',
218 'jquery.xmldom' => array(
219 'scripts' => 'resources/jquery/jquery.xmldom.js',
222 /* jQuery Tipsy */
224 'jquery.tipsy' => array(
225 'scripts' => 'resources/jquery.tipsy/jquery.tipsy.js',
226 'styles' => 'resources/jquery.tipsy/jquery.tipsy.css',
229 /* jQuery UI */
231 // Core
232 'jquery.ui.core' => array(
233 'scripts' => 'resources/jquery.ui/jquery.ui.core.js',
234 'skinStyles' => array(
235 'default' => array(
236 'resources/jquery.ui/themes/default/jquery.ui.core.css',
237 'resources/jquery.ui/themes/default/jquery.ui.theme.css',
239 'vector' => array(
240 'resources/jquery.ui/themes/vector/jquery.ui.core.css',
241 'resources/jquery.ui/themes/vector/jquery.ui.theme.css',
244 'dependencies' => 'jquery',
245 'group' => 'jquery.ui',
247 'jquery.ui.widget' => array(
248 'scripts' => 'resources/jquery.ui/jquery.ui.widget.js',
249 'group' => 'jquery.ui',
251 'jquery.ui.mouse' => array(
252 'scripts' => 'resources/jquery.ui/jquery.ui.mouse.js',
253 'dependencies' => 'jquery.ui.widget',
254 'group' => 'jquery.ui',
256 'jquery.ui.position' => array(
257 'scripts' => 'resources/jquery.ui/jquery.ui.position.js',
258 'group' => 'jquery.ui',
260 // Interactions
261 'jquery.ui.draggable' => array(
262 'scripts' => 'resources/jquery.ui/jquery.ui.draggable.js',
263 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.mouse', 'jquery.ui.widget' ),
264 'group' => 'jquery.ui',
266 'jquery.ui.droppable' => array(
267 'scripts' => 'resources/jquery.ui/jquery.ui.droppable.js',
268 'dependencies' => array(
269 'jquery.ui.core', 'jquery.ui.mouse', 'jquery.ui.widget', 'jquery.ui.draggable',
271 'group' => 'jquery.ui',
273 'jquery.ui.resizable' => array(
274 'scripts' => 'resources/jquery.ui/jquery.ui.resizable.js',
275 'skinStyles' => array(
276 'default' => 'resources/jquery.ui/themes/default/jquery.ui.resizable.css',
277 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.resizable.css',
279 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.mouse' ),
280 'group' => 'jquery.ui',
282 'jquery.ui.selectable' => array(
283 'scripts' => 'resources/jquery.ui/jquery.ui.selectable.js',
284 'skinStyles' => array(
285 'default' => 'resources/jquery.ui/themes/default/jquery.ui.selectable.css',
286 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.selectable.css',
288 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.mouse' ),
289 'group' => 'jquery.ui',
291 'jquery.ui.sortable' => array(
292 'scripts' => 'resources/jquery.ui/jquery.ui.sortable.js',
293 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.mouse' ),
294 'group' => 'jquery.ui',
296 // Widgets
297 'jquery.ui.accordion' => array(
298 'scripts' => 'resources/jquery.ui/jquery.ui.accordion.js',
299 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget' ),
300 'skinStyles' => array(
301 'default' => 'resources/jquery.ui/themes/default/jquery.ui.accordion.css',
302 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.accordion.css',
304 'group' => 'jquery.ui',
306 'jquery.ui.autocomplete' => array(
307 'scripts' => 'resources/jquery.ui/jquery.ui.autocomplete.js',
308 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.position' ),
309 'skinStyles' => array(
310 'default' => 'resources/jquery.ui/themes/default/jquery.ui.autocomplete.css',
311 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.autocomplete.css',
313 'group' => 'jquery.ui',
315 'jquery.ui.button' => array(
316 'scripts' => 'resources/jquery.ui/jquery.ui.button.js',
317 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget' ),
318 'skinStyles' => array(
319 'default' => 'resources/jquery.ui/themes/default/jquery.ui.button.css',
320 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.button.css',
322 'group' => 'jquery.ui',
324 'jquery.ui.datepicker' => array(
325 'scripts' => 'resources/jquery.ui/jquery.ui.datepicker.js',
326 'dependencies' => 'jquery.ui.core',
327 'skinStyles' => array(
328 'default' => 'resources/jquery.ui/themes/default/jquery.ui.datepicker.css',
329 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.datepicker.css',
331 'languageScripts' => array(
332 'af' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-af.js',
333 'ar' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ar.js',
334 'az' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-az.js',
335 'bg' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-bg.js',
336 'bs' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-bs.js',
337 'ca' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ca.js',
338 'cs' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-cs.js',
339 'da' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-da.js',
340 'de' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-de.js',
341 'el' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-el.js',
342 'en-gb' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-en-GB.js',
343 'eo' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-eo.js',
344 'es' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-es.js',
345 'et' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-et.js',
346 'eu' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-eu.js',
347 'fa' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-fa.js',
348 'fi' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-fi.js',
349 'fo' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-fo.js',
350 'fr-ch' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-fr-CH.js',
351 'fr' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-fr.js',
352 'gl' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-gl.js',
353 'he' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-he.js',
354 'hr' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-hr.js',
355 'hu' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-hu.js',
356 'hy' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-hy.js',
357 'id' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-id.js',
358 'is' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-is.js',
359 'it' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-it.js',
360 'ja' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ja.js',
361 'kk' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-kk.js',
362 'ko' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ko.js',
363 'lb' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-lb.js',
364 'lt' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-lt.js',
365 'lv' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-lv.js',
366 'mk' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-mk.js',
367 'ml' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ml.js',
368 'ms' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ms.js',
369 'nl' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-nl.js',
370 'no' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-no.js',
371 'pl' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-pl.js',
372 'pt' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-pt.js',
373 'pt-br' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-pt-BR.js',
374 'rm' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-rm.js',
375 'ro' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ro.js',
376 'ru' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ru.js',
377 'sk' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-sk.js',
378 'sl' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-sl.js',
379 'sq' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-sq.js',
380 'sr-sr' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-sr-SR.js',
381 'sr' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-sr.js',
382 'sv' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-sv.js',
383 'ta' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-ta.js',
384 'th' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-th.js',
385 'tr' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-tr.js',
386 'uk' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-uk.js',
387 'vi' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-vi.js',
388 'zh-cn' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-zh-CN.js',
389 'zh-hk' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-zh-HK.js',
390 'zh-tw' => 'resources/jquery.ui/i18n/jquery.ui.datepicker-zh-TW.js',
392 'group' => 'jquery.ui',
394 'jquery.ui.dialog' => array(
395 'scripts' => 'resources/jquery.ui/jquery.ui.dialog.js',
396 'dependencies' => array(
397 'jquery.ui.core',
398 'jquery.ui.widget',
399 'jquery.ui.button',
400 'jquery.ui.draggable',
401 'jquery.ui.mouse',
402 'jquery.ui.position',
403 'jquery.ui.resizable',
405 'skinStyles' => array(
406 'default' => 'resources/jquery.ui/themes/default/jquery.ui.dialog.css',
407 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.dialog.css',
409 'group' => 'jquery.ui',
411 'jquery.ui.progressbar' => array(
412 'scripts' => 'resources/jquery.ui/jquery.ui.progressbar.js',
413 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget' ),
414 'skinStyles' => array(
415 'default' => 'resources/jquery.ui/themes/default/jquery.ui.progressbar.css',
416 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.progressbar.css',
418 'group' => 'jquery.ui',
420 'jquery.ui.slider' => array(
421 'scripts' => 'resources/jquery.ui/jquery.ui.slider.js',
422 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.mouse' ),
423 'skinStyles' => array(
424 'default' => 'resources/jquery.ui/themes/default/jquery.ui.slider.css',
425 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.slider.css',
427 'group' => 'jquery.ui',
429 'jquery.ui.tabs' => array(
430 'scripts' => 'resources/jquery.ui/jquery.ui.tabs.js',
431 'dependencies' => array( 'jquery.ui.core', 'jquery.ui.widget' ),
432 'skinStyles' => array(
433 'default' => 'resources/jquery.ui/themes/default/jquery.ui.tabs.css',
434 'vector' => 'resources/jquery.ui/themes/vector/jquery.ui.tabs.css',
436 'group' => 'jquery.ui',
438 // Effects
439 'jquery.effects.core' => array(
440 'scripts' => 'resources/jquery.effects/jquery.effects.core.js',
441 'dependencies' => 'jquery',
442 'group' => 'jquery.ui',
444 'jquery.effects.blind' => array(
445 'scripts' => 'resources/jquery.effects/jquery.effects.blind.js',
446 'dependencies' => 'jquery.effects.core',
447 'group' => 'jquery.ui',
449 'jquery.effects.bounce' => array(
450 'scripts' => 'resources/jquery.effects/jquery.effects.bounce.js',
451 'dependencies' => 'jquery.effects.core',
452 'group' => 'jquery.ui',
454 'jquery.effects.clip' => array(
455 'scripts' => 'resources/jquery.effects/jquery.effects.clip.js',
456 'dependencies' => 'jquery.effects.core',
457 'group' => 'jquery.ui',
459 'jquery.effects.drop' => array(
460 'scripts' => 'resources/jquery.effects/jquery.effects.drop.js',
461 'dependencies' => 'jquery.effects.core',
462 'group' => 'jquery.ui',
464 'jquery.effects.explode' => array(
465 'scripts' => 'resources/jquery.effects/jquery.effects.explode.js',
466 'dependencies' => 'jquery.effects.core',
467 'group' => 'jquery.ui',
469 'jquery.effects.fade' => array(
470 'scripts' => 'resources/jquery.effects/jquery.effects.fade.js',
471 'dependencies' => 'jquery.effects.core',
472 'group' => 'jquery.ui',
474 'jquery.effects.fold' => array(
475 'scripts' => 'resources/jquery.effects/jquery.effects.fold.js',
476 'dependencies' => 'jquery.effects.core',
477 'group' => 'jquery.ui',
479 'jquery.effects.highlight' => array(
480 'scripts' => 'resources/jquery.effects/jquery.effects.highlight.js',
481 'dependencies' => 'jquery.effects.core',
482 'group' => 'jquery.ui',
484 'jquery.effects.pulsate' => array(
485 'scripts' => 'resources/jquery.effects/jquery.effects.pulsate.js',
486 'dependencies' => 'jquery.effects.core',
487 'group' => 'jquery.ui',
489 'jquery.effects.scale' => array(
490 'scripts' => 'resources/jquery.effects/jquery.effects.scale.js',
491 'dependencies' => 'jquery.effects.core',
492 'group' => 'jquery.ui',
494 'jquery.effects.shake' => array(
495 'scripts' => 'resources/jquery.effects/jquery.effects.shake.js',
496 'dependencies' => 'jquery.effects.core',
497 'group' => 'jquery.ui',
499 'jquery.effects.slide' => array(
500 'scripts' => 'resources/jquery.effects/jquery.effects.slide.js',
501 'dependencies' => 'jquery.effects.core',
502 'group' => 'jquery.ui',
504 'jquery.effects.transfer' => array(
505 'scripts' => 'resources/jquery.effects/jquery.effects.transfer.js',
506 'dependencies' => 'jquery.effects.core',
507 'group' => 'jquery.ui',
510 /* MediaWiki */
512 'mediawiki' => array(
513 'scripts' => 'resources/mediawiki/mediawiki.js',
514 'debugScripts' => 'resources/mediawiki/mediawiki.log.js',
515 'debugRaw' => false,
517 'mediawiki.api' => array(
518 'scripts' => 'resources/mediawiki.api/mediawiki.api.js',
519 'dependencies' => 'mediawiki.util',
521 'mediawiki.api.category' => array(
522 'scripts' => 'resources/mediawiki.api/mediawiki.api.category.js',
523 'dependencies' => array(
524 'mediawiki.api',
525 'mediawiki.Title'
528 'mediawiki.api.edit' => array(
529 'scripts' => 'resources/mediawiki.api/mediawiki.api.edit.js',
530 'dependencies' => array(
531 'mediawiki.api',
532 'mediawiki.Title'
535 'mediawiki.api.parse' => array(
536 'scripts' => 'resources/mediawiki.api/mediawiki.api.parse.js',
537 'dependencies' => 'mediawiki.api',
539 'mediawiki.api.titleblacklist' => array(
540 'scripts' => 'resources/mediawiki.api/mediawiki.api.titleblacklist.js',
541 'dependencies' => array(
542 'mediawiki.api',
543 'mediawiki.Title'
546 'mediawiki.api.watch' => array(
547 'scripts' => 'resources/mediawiki.api/mediawiki.api.watch.js',
548 'dependencies' => array(
549 'mediawiki.api',
550 'user.tokens',
553 'mediawiki.debug' => array(
554 'scripts' => 'resources/mediawiki/mediawiki.debug.js',
555 'styles' => 'resources/mediawiki/mediawiki.debug.css',
556 'dependencies' => 'jquery.footHovzer',
557 'position' => 'bottom',
559 'mediawiki.debug.init' => array(
560 'scripts' => 'resources/mediawiki/mediawiki.debug.init.js',
561 'dependencies' => 'mediawiki.debug',
562 // Uses a custom mw.config variable that is set in debughtml,
563 // must be loaded on the bottom
564 'position' => 'bottom',
566 'mediawiki.feedback' => array(
567 'scripts' => 'resources/mediawiki/mediawiki.feedback.js',
568 'styles' => 'resources/mediawiki/mediawiki.feedback.css',
569 'dependencies' => array(
570 'mediawiki.api.edit',
571 'mediawiki.Title',
572 'mediawiki.jqueryMsg',
573 'jquery.ui.dialog',
575 'messages' => array(
576 'feedback-bugornote',
577 'feedback-subject',
578 'feedback-message',
579 'feedback-cancel',
580 'feedback-submit',
581 'feedback-adding',
582 'feedback-error1',
583 'feedback-error2',
584 'feedback-error3',
585 'feedback-thanks',
586 'feedback-close',
587 'feedback-bugcheck',
588 'feedback-bugnew',
591 'mediawiki.htmlform' => array(
592 'scripts' => 'resources/mediawiki/mediawiki.htmlform.js',
594 'mediawiki.Title' => array(
595 'scripts' => 'resources/mediawiki/mediawiki.Title.js',
596 'dependencies' => 'mediawiki.util',
598 'mediawiki.Uri' => array(
599 'scripts' => 'resources/mediawiki/mediawiki.Uri.js',
601 'mediawiki.user' => array(
602 'scripts' => 'resources/mediawiki/mediawiki.user.js',
603 'dependencies' => array(
604 'jquery.cookie',
607 'mediawiki.util' => array(
608 'scripts' => 'resources/mediawiki/mediawiki.util.js',
609 'dependencies' => array(
610 'jquery.client',
611 'jquery.cookie',
612 'jquery.messageBox',
613 'jquery.mwExtension',
615 'messages' => array( 'showtoc', 'hidetoc' ),
616 'position' => 'top', // For $wgPreloadJavaScriptMwUtil
619 /* MediaWiki Action */
621 'mediawiki.action.edit' => array(
622 'scripts' => 'resources/mediawiki.action/mediawiki.action.edit.js',
623 'dependencies' => array(
624 'jquery.textSelection',
625 'jquery.byteLimit',
628 'mediawiki.action.history' => array(
629 'scripts' => 'resources/mediawiki.action/mediawiki.action.history.js',
630 'dependencies' => 'jquery.ui.button',
631 'group' => 'mediawiki.action.history',
633 'mediawiki.action.history.diff' => array(
634 'styles' => 'resources/mediawiki.action/mediawiki.action.history.diff.css',
635 'group' => 'mediawiki.action.history',
637 'mediawiki.action.view.dblClickEdit' => array(
638 'scripts' => 'resources/mediawiki.action/mediawiki.action.view.dblClickEdit.js',
639 'dependencies' => 'mediawiki.util',
641 'mediawiki.action.view.metadata' => array(
642 'scripts' => 'resources/mediawiki.action/mediawiki.action.view.metadata.js',
643 'messages' => array(
644 'metadata-expand',
645 'metadata-collapse',
648 'mediawiki.action.view.rightClickEdit' => array(
649 'scripts' => 'resources/mediawiki.action/mediawiki.action.view.rightClickEdit.js',
651 'mediawiki.action.watch.ajax' => array(
652 'scripts' => 'resources/mediawiki.action/mediawiki.action.watch.ajax.js',
653 'dependencies' => array(
654 'mediawiki.api.watch',
655 'mediawiki.util',
657 'messages' => array(
658 'watch',
659 'unwatch',
660 'watching',
661 'unwatching',
662 'tooltip-ca-watch',
663 'tooltip-ca-unwatch',
664 'watcherrortext',
668 /* MediaWiki Language */
670 'mediawiki.language' => array(
671 'scripts' => 'resources/mediawiki.language/mediawiki.language.js',
672 'languageScripts' => array(
673 'am' => 'resources/mediawiki.language/languages/am.js',
674 'ar' => 'resources/mediawiki.language/languages/ar.js',
675 'bat-smg' => 'resources/mediawiki.language/languages/bat-smg.js',
676 'be' => 'resources/mediawiki.language/languages/be.js',
677 'be-tarask' => 'resources/mediawiki.language/languages/be-tarask.js',
678 'bh' => 'resources/mediawiki.language/languages/bh.js',
679 'bs' => 'resources/mediawiki.language/languages/bs.js',
680 'cs' => 'resources/mediawiki.language/languages/cs.js',
681 'cu' => 'resources/mediawiki.language/languages/cu.js',
682 'cy' => 'resources/mediawiki.language/languages/cy.js',
683 'dsb' => 'resources/mediawiki.language/languages/dsb.js',
684 'fr' => 'resources/mediawiki.language/languages/fr.js',
685 'ga' => 'resources/mediawiki.language/languages/ga.js',
686 'gd' => 'resources/mediawiki.language/languages/gd.js',
687 'gv' => 'resources/mediawiki.language/languages/gv.js',
688 'he' => 'resources/mediawiki.language/languages/he.js',
689 'hi' => 'resources/mediawiki.language/languages/hi.js',
690 'hr' => 'resources/mediawiki.language/languages/hr.js',
691 'hsb' => 'resources/mediawiki.language/languages/hsb.js',
692 'hy' => 'resources/mediawiki.language/languages/hy.js',
693 'ksh' => 'resources/mediawiki.language/languages/ksh.js',
694 'ln' => 'resources/mediawiki.language/languages/ln.js',
695 'lt' => 'resources/mediawiki.language/languages/lt.js',
696 'lv' => 'resources/mediawiki.language/languages/lv.js',
697 'mg' => 'resources/mediawiki.language/languages/mg.js',
698 'mk' => 'resources/mediawiki.language/languages/mk.js',
699 'mo' => 'resources/mediawiki.language/languages/mo.js',
700 'mt' => 'resources/mediawiki.language/languages/mt.js',
701 'nl' => 'resources/mediawiki.language/languages/nl.js',
702 'nso' => 'resources/mediawiki.language/languages/nso.js',
703 'pl' => 'resources/mediawiki.language/languages/pl.js',
704 'pt' => 'resources/mediawiki.language/languages/pt.js',
705 'pt-br' => 'resources/mediawiki.language/languages/pt-br.js',
706 'ro' => 'resources/mediawiki.language/languages/ro.js',
707 'ru' => 'resources/mediawiki.language/languages/ru.js',
708 'se' => 'resources/mediawiki.language/languages/se.js',
709 'sh' => 'resources/mediawiki.language/languages/sh.js',
710 'sk' => 'resources/mediawiki.language/languages/sk.js',
711 'sl' => 'resources/mediawiki.language/languages/sl.js',
712 'sma' => 'resources/mediawiki.language/languages/sma.js',
713 'sr-ec' => 'resources/mediawiki.language/languages/sr-ec.js',
714 'sr-el' => 'resources/mediawiki.language/languages/sr-el.js',
715 'sr' => 'resources/mediawiki.language/languages/sr.js',
716 'ti' => 'resources/mediawiki.language/languages/ti.js',
717 'tl' => 'resources/mediawiki.language/languages/tl.js',
718 'uk' => 'resources/mediawiki.language/languages/uk.js',
719 'wa' => 'resources/mediawiki.language/languages/wa.js',
723 'mediawiki.jqueryMsg' => array(
724 'dependencies' => array( 'mediawiki.language', 'mediawiki.util' ),
725 'scripts' => 'resources/mediawiki/mediawiki.jqueryMsg.js'
728 /* MediaWiki Libs */
730 'mediawiki.libs.jpegmeta' => array(
731 'scripts' => 'resources/mediawiki.libs/mediawiki.libs.jpegmeta.js',
734 /* MediaWiki Page */
736 'mediawiki.page.ready' => array(
737 'scripts' => 'resources/mediawiki.page/mediawiki.page.ready.js',
738 'dependencies' => array(
739 'jquery.checkboxShiftClick',
740 'jquery.makeCollapsible',
741 'jquery.placeholder',
742 'jquery.mw-jump',
743 'mediawiki.util',
746 'mediawiki.page.startup' => array(
747 'scripts' => 'resources/mediawiki.page/mediawiki.page.startup.js',
748 'dependencies' => array(
749 'jquery.client',
750 'mediawiki.util',
752 'position' => 'top',
756 /* MediaWiki Special pages */
758 'mediawiki.special' => array(
759 'scripts' => 'resources/mediawiki.special/mediawiki.special.js',
760 'styles' => 'resources/mediawiki.special/mediawiki.special.css',
762 'mediawiki.special.block' => array(
763 'scripts' => 'resources/mediawiki.special/mediawiki.special.block.js',
764 'dependencies' => array(
765 'mediawiki.util',
768 'mediawiki.special.changeemail' => array(
769 'scripts' => 'resources/mediawiki.special/mediawiki.special.changeemail.js',
770 'styles' => 'resources/mediawiki.special/mediawiki.special.changeemail.css',
771 'dependencies' => array(
772 'mediawiki.util',
774 'messages' => array(
775 'email-address-validity-valid',
776 'email-address-validity-invalid',
779 'mediawiki.special.changeslist' => array(
780 'styles' => 'resources/mediawiki.special/mediawiki.special.changeslist.css',
781 'dependencies' => array( 'jquery.makeCollapsible' ),
783 'mediawiki.special.movePage' => array(
784 'scripts' => 'resources/mediawiki.special/mediawiki.special.movePage.js',
785 'dependencies' => 'jquery.byteLimit',
787 'mediawiki.special.preferences' => array(
788 'scripts' => 'resources/mediawiki.special/mediawiki.special.preferences.js',
789 'styles' => 'resources/mediawiki.special/mediawiki.special.preferences.css',
791 'mediawiki.special.recentchanges' => array(
792 'scripts' => 'resources/mediawiki.special/mediawiki.special.recentchanges.js',
793 'dependencies' => array( 'mediawiki.special' ),
794 'position' => 'top',
796 'mediawiki.special.search' => array(
797 'scripts' => 'resources/mediawiki.special/mediawiki.special.search.js',
798 'styles' => 'resources/mediawiki.special/mediawiki.special.search.css',
800 'mediawiki.special.undelete' => array(
801 'scripts' => 'resources/mediawiki.special/mediawiki.special.undelete.js',
803 'mediawiki.special.upload' => array(
804 // @TODO: merge in remainder of mediawiki.legacy.upload
805 'scripts' => 'resources/mediawiki.special/mediawiki.special.upload.js',
806 'messages' => array(
807 'widthheight',
808 'size-bytes',
809 'size-kilobytes',
810 'size-megabytes',
811 'size-gigabytes',
812 'largefileserver',
814 'dependencies' => array( 'mediawiki.libs.jpegmeta', 'mediawiki.util' ),
816 'mediawiki.special.javaScriptTest' => array(
817 'scripts' => 'resources/mediawiki.special/mediawiki.special.javaScriptTest.js',
818 'messages' => array_merge( Skin::getSkinNameMessages(), array(
819 'colon-separator',
820 'javascripttest-pagetext-skins',
821 ) ),
822 'dependencies' => array( 'jquery.qunit' ),
823 'position' => 'top',
826 /* MediaWiki Tests */
828 'mediawiki.tests.qunit.testrunner' => array(
829 'scripts' => 'tests/qunit/data/testrunner.js',
830 'dependencies' => array(
831 'jquery.qunit',
832 'jquery.qunit.completenessTest',
833 'mediawiki.page.startup',
834 'mediawiki.page.ready',
836 'position' => 'top',
839 /* MediaWiki Legacy */
841 'mediawiki.legacy.ajax' => array(
842 'scripts' => 'common/ajax.js',
843 'remoteBasePath' => $GLOBALS['wgStylePath'],
844 'localBasePath' => $GLOBALS['wgStyleDirectory'],
845 'dependencies' => array(
846 'mediawiki.util',
847 'mediawiki.legacy.wikibits',
849 'position' => 'top', // Temporary hack for legacy support
851 'mediawiki.legacy.commonPrint' => array(
852 'styles' => array( 'common/commonPrint.css' => array( 'media' => 'print' ) ),
853 'remoteBasePath' => $GLOBALS['wgStylePath'],
854 'localBasePath' => $GLOBALS['wgStyleDirectory'],
856 'mediawiki.legacy.config' => array(
857 'scripts' => 'common/config.js',
858 'styles' => array( 'common/config.css', 'common/config-cc.css' ),
859 'remoteBasePath' => $GLOBALS['wgStylePath'],
860 'localBasePath' => $GLOBALS['wgStyleDirectory'],
861 'dependencies' => 'mediawiki.legacy.wikibits',
863 'mediawiki.legacy.IEFixes' => array(
864 'scripts' => 'common/IEFixes.js',
865 'remoteBasePath' => $GLOBALS['wgStylePath'],
866 'localBasePath' => $GLOBALS['wgStyleDirectory'],
867 'dependencies' => 'mediawiki.legacy.wikibits',
869 'mediawiki.legacy.mwsuggest' => array(
870 'scripts' => 'common/mwsuggest.js',
871 'remoteBasePath' => $GLOBALS['wgStylePath'],
872 'localBasePath' => $GLOBALS['wgStyleDirectory'],
873 'dependencies' => 'mediawiki.legacy.wikibits',
874 'messages' => array( 'search-mwsuggest-enabled', 'search-mwsuggest-disabled' ),
876 'mediawiki.legacy.preview' => array(
877 'scripts' => 'common/preview.js',
878 'remoteBasePath' => $GLOBALS['wgStylePath'],
879 'localBasePath' => $GLOBALS['wgStyleDirectory'],
880 'dependencies' => 'mediawiki.legacy.wikibits',
882 'mediawiki.legacy.protect' => array(
883 'scripts' => 'common/protect.js',
884 'remoteBasePath' => $GLOBALS['wgStylePath'],
885 'localBasePath' => $GLOBALS['wgStyleDirectory'],
886 'dependencies' => array(
887 'mediawiki.legacy.wikibits',
888 'jquery.byteLimit',
890 'position' => 'top',
892 'mediawiki.legacy.shared' => array(
893 'styles' => array( 'common/shared.css' => array( 'media' => 'screen' ) ),
894 'remoteBasePath' => $GLOBALS['wgStylePath'],
895 'localBasePath' => $GLOBALS['wgStyleDirectory'],
897 'mediawiki.legacy.oldshared' => array(
898 'styles' => array( 'common/oldshared.css' => array( 'media' => 'screen' ) ),
899 'remoteBasePath' => $GLOBALS['wgStylePath'],
900 'localBasePath' => $GLOBALS['wgStyleDirectory'],
902 'mediawiki.legacy.upload' => array(
903 'scripts' => 'common/upload.js',
904 'remoteBasePath' => $GLOBALS['wgStylePath'],
905 'localBasePath' => $GLOBALS['wgStyleDirectory'],
906 'dependencies' => array(
907 'mediawiki.legacy.wikibits',
908 'mediawiki.util',
911 'mediawiki.legacy.wikibits' => array(
912 'scripts' => 'common/wikibits.js',
913 'remoteBasePath' => $GLOBALS['wgStylePath'],
914 'localBasePath' => $GLOBALS['wgStyleDirectory'],
915 'dependencies' => array(
916 'mediawiki.util',
918 'position' => 'top',
920 'mediawiki.legacy.wikiprintable' => array(
921 'styles' => array( 'common/wikiprintable.css' => array( 'media' => 'print' ) ),
922 'remoteBasePath' => $GLOBALS['wgStylePath'],
923 'localBasePath' => $GLOBALS['wgStyleDirectory'],