Revert "merged master"
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.js
1 /*
2 * Core MediaWiki JavaScript Library
3 */
4
5 var mw = ( function ( $, undefined ) {
6 "use strict";
7
8 /* Private Members */
9
10 var hasOwn = Object.prototype.hasOwnProperty,
11 slice = Array.prototype.slice;
12
13 /* Object constructors */
14
15 /**
16 * Map
17 *
18 * Creates an object that can be read from or written to from prototype functions
19 * that allow both single and multiple variables at once.
20 *
21 * @param global boolean Whether to store the values in the global window
22 * object or a exclusively in the object property 'values'.
23 * @return Map
24 */
25 function Map( global ) {
26 this.values = global === true ? window : {};
27 return this;
28 }
29
30 Map.prototype = {
31 /**
32 * Get the value of one or multiple a keys.
33 *
34 * If called with no arguments, all values will be returned.
35 *
36 * @param selection mixed String key or array of keys to get values for.
37 * @param fallback mixed Value to use in case key(s) do not exist (optional).
38 * @return mixed If selection was a string returns the value or null,
39 * If selection was an array, returns an object of key/values (value is null if not found),
40 * If selection was not passed or invalid, will return the 'values' object member (be careful as
41 * objects are always passed by reference in JavaScript!).
42 * @return Values as a string or object, null if invalid/inexistant.
43 */
44 get: function ( selection, fallback ) {
45 var results, i;
46
47 if ( $.isArray( selection ) ) {
48 selection = slice.call( selection );
49 results = {};
50 for ( i = 0; i < selection.length; i += 1 ) {
51 results[selection[i]] = this.get( selection[i], fallback );
52 }
53 return results;
54 }
55
56 if ( typeof selection === 'string' ) {
57 if ( this.values[selection] === undefined ) {
58 if ( fallback !== undefined ) {
59 return fallback;
60 }
61 return null;
62 }
63 return this.values[selection];
64 }
65
66 if ( selection === undefined ) {
67 return this.values;
68 }
69
70 // invalid selection key
71 return null;
72 },
73
74 /**
75 * Sets one or multiple key/value pairs.
76 *
77 * @param selection {mixed} String key or array of keys to set values for.
78 * @param value {mixed} Value to set (optional, only in use when key is a string)
79 * @return {Boolean} This returns true on success, false on failure.
80 */
81 set: function ( selection, value ) {
82 var s;
83
84 if ( $.isPlainObject( selection ) ) {
85 for ( s in selection ) {
86 this.values[s] = selection[s];
87 }
88 return true;
89 }
90 if ( typeof selection === 'string' && value !== undefined ) {
91 this.values[selection] = value;
92 return true;
93 }
94 return false;
95 },
96
97 /**
98 * Checks if one or multiple keys exist.
99 *
100 * @param selection {mixed} String key or array of keys to check
101 * @return {Boolean} Existence of key(s)
102 */
103 exists: function ( selection ) {
104 var s;
105
106 if ( $.isArray( selection ) ) {
107 for ( s = 0; s < selection.length; s += 1 ) {
108 if ( this.values[selection[s]] === undefined ) {
109 return false;
110 }
111 }
112 return true;
113 }
114 return this.values[selection] !== undefined;
115 }
116 };
117
118 /**
119 * Message
120 *
121 * Object constructor for messages,
122 * similar to the Message class in MediaWiki PHP.
123 *
124 * @param map Map Instance of mw.Map
125 * @param key String
126 * @param parameters Array
127 * @return Message
128 */
129 function Message( map, key, parameters ) {
130 this.format = 'plain';
131 this.map = map;
132 this.key = key;
133 this.parameters = parameters === undefined ? [] : slice.call( parameters );
134 return this;
135 }
136
137 Message.prototype = {
138 /**
139 * Simple message parser, does $N replacement and nothing else.
140 * This may be overridden to provide a more complex message parser.
141 *
142 * This function will not be called for nonexistent messages.
143 */
144 parser: function () {
145 var parameters = this.parameters;
146 return this.map.get( this.key ).replace( /\$(\d+)/g, function ( str, match ) {
147 var index = parseInt( match, 10 ) - 1;
148 return parameters[index] !== undefined ? parameters[index] : '$' + match;
149 } );
150 },
151
152 /**
153 * Appends (does not replace) parameters for replacement to the .parameters property.
154 *
155 * @param parameters Array
156 * @return Message
157 */
158 params: function ( parameters ) {
159 var i;
160 for ( i = 0; i < parameters.length; i += 1 ) {
161 this.parameters.push( parameters[i] );
162 }
163 return this;
164 },
165
166 /**
167 * Converts message object to it's string form based on the state of format.
168 *
169 * @return string Message as a string in the current form or <key> if key does not exist.
170 */
171 toString: function () {
172 var text;
173
174 if ( !this.exists() ) {
175 // Use <key> as text if key does not exist
176 if ( this.format !== 'plain' ) {
177 // format 'escape' and 'parse' need to have the brackets and key html escaped
178 return mw.html.escape( '<' + this.key + '>' );
179 }
180 return '<' + this.key + '>';
181 }
182
183 if ( this.format === 'plain' ) {
184 // @todo FIXME: Although not applicable to core Message,
185 // Plugins like jQueryMsg should be able to distinguish
186 // between 'plain' (only variable replacement and plural/gender)
187 // and actually parsing wikitext to HTML.
188 text = this.parser();
189 }
190
191 if ( this.format === 'escaped' ) {
192 text = this.parser();
193 text = mw.html.escape( text );
194 }
195
196 if ( this.format === 'parse' ) {
197 text = this.parser();
198 }
199
200 return text;
201 },
202
203 /**
204 * Changes format to parse and converts message to string
205 *
206 * @return {string} String form of parsed message
207 */
208 parse: function () {
209 this.format = 'parse';
210 return this.toString();
211 },
212
213 /**
214 * Changes format to plain and converts message to string
215 *
216 * @return {string} String form of plain message
217 */
218 plain: function () {
219 this.format = 'plain';
220 return this.toString();
221 },
222
223 /**
224 * Changes the format to html escaped and converts message to string
225 *
226 * @return {string} String form of html escaped message
227 */
228 escaped: function () {
229 this.format = 'escaped';
230 return this.toString();
231 },
232
233 /**
234 * Checks if message exists
235 *
236 * @return {string} String form of parsed message
237 */
238 exists: function () {
239 return this.map.exists( this.key );
240 }
241 };
242
243 return {
244 /* Public Members */
245
246 /**
247 * Dummy function which in debug mode can be replaced with a function that
248 * emulates console.log in console-less environments.
249 */
250 log: function () { },
251
252 /**
253 * @var constructor Make the Map constructor publicly available.
254 */
255 Map: Map,
256
257 /**
258 * @var constructor Make the Message constructor publicly available.
259 */
260 Message: Message,
261
262 /**
263 * List of configuration values
264 *
265 * Dummy placeholder. Initiated in startUp module as a new instance of mw.Map().
266 * If $wgLegacyJavaScriptGlobals is true, this Map will have its values
267 * in the global window object.
268 */
269 config: null,
270
271 /**
272 * @var object
273 *
274 * Empty object that plugins can be installed in.
275 */
276 libs: {},
277
278 /* Extension points */
279
280 legacy: {},
281
282 /**
283 * Localization system
284 */
285 messages: new Map(),
286
287 /* Public Methods */
288
289 /**
290 * Gets a message object, similar to wfMessage()
291 *
292 * @param key string Key of message to get
293 * @param parameter_1 mixed First argument in a list of variadic arguments,
294 * each a parameter for $N replacement in messages.
295 * @return Message
296 */
297 message: function ( key, parameter_1 /* [, parameter_2] */ ) {
298 var parameters;
299 // Support variadic arguments
300 if ( parameter_1 !== undefined ) {
301 parameters = slice.call( arguments );
302 parameters.shift();
303 } else {
304 parameters = [];
305 }
306 return new Message( mw.messages, key, parameters );
307 },
308
309 /**
310 * Gets a message string, similar to wfMsg()
311 *
312 * @param key string Key of message to get
313 * @param parameters mixed First argument in a list of variadic arguments,
314 * each a parameter for $N replacement in messages.
315 * @return String.
316 */
317 msg: function ( /* key, parameter_1, parameter_2, .. */ ) {
318 return mw.message.apply( mw.message, arguments ).toString();
319 },
320
321 /**
322 * Client-side module loader which integrates with the MediaWiki ResourceLoader
323 */
324 loader: ( function () {
325
326 /* Private Members */
327
328 /**
329 * Mapping of registered modules
330 *
331 * The jquery module is pre-registered, because it must have already
332 * been provided for this object to have been built, and in debug mode
333 * jquery would have been provided through a unique loader request,
334 * making it impossible to hold back registration of jquery until after
335 * mediawiki.
336 *
337 * For exact details on support for script, style and messages, look at
338 * mw.loader.implement.
339 *
340 * Format:
341 * {
342 * 'moduleName': {
343 * 'version': ############## (unix timestamp),
344 * 'dependencies': ['required.foo', 'bar.also', ...], (or) function () {}
345 * 'group': 'somegroup', (or) null,
346 * 'source': 'local', 'someforeignwiki', (or) null
347 * 'state': 'registered', 'loading', 'loaded', 'ready', 'error' or 'missing'
348 * 'script': ...,
349 * 'style': ...,
350 * 'messages': { 'key': 'value' },
351 * }
352 * }
353 */
354 var registry = {},
355 /**
356 * Mapping of sources, keyed by source-id, values are objects.
357 * Format:
358 * {
359 * 'sourceId': {
360 * 'loadScript': 'http://foo.bar/w/load.php'
361 * }
362 * }
363 */
364 sources = {},
365 // List of modules which will be loaded as when ready
366 batch = [],
367 // List of modules to be loaded
368 queue = [],
369 // List of callback functions waiting for modules to be ready to be called
370 jobs = [],
371 // Selector cache for the marker element. Use getMarker() to get/use the marker!
372 $marker = null;
373
374 /* Private methods */
375
376 function getMarker() {
377 // Cached ?
378 if ( $marker ) {
379 return $marker;
380 }
381
382 $marker = $( 'meta[name="ResourceLoaderDynamicStyles"]' );
383 if ( $marker.length ) {
384 return $marker;
385 }
386 mw.log( 'getMarker> No <meta name="ResourceLoaderDynamicStyles"> found, inserting dynamically.' );
387 $marker = $( '<meta>' ).attr( 'name', 'ResourceLoaderDynamicStyles' ).appendTo( 'head' );
388
389 return $marker;
390 }
391
392 /**
393 * Create a new style tag and add it to the DOM.
394 *
395 * @param text String: CSS text
396 * @param $nextnode mixed: [optional] An Element or jQuery object for an element where
397 * the style tag should be inserted before. Otherwise appended to the <head>.
398 * @return HTMLStyleElement
399 */
400 function addStyleTag( text, $nextnode ) {
401 var s = document.createElement( 'style' );
402 s.type = 'text/css';
403 s.rel = 'stylesheet';
404 // Insert into document before setting cssText (bug 33305)
405 if ( $nextnode ) {
406 // If a raw element, create a jQuery object, otherwise use directly
407 if ( $nextnode.nodeType ) {
408 $nextnode = $( $nextnode );
409 }
410 $nextnode.before( s );
411 } else {
412 document.getElementsByTagName('head')[0].appendChild( s );
413 }
414 if ( s.styleSheet ) {
415 s.styleSheet.cssText = text; // IE
416 } else {
417 // Safari sometimes borks on null
418 s.appendChild( document.createTextNode( String( text ) ) );
419 }
420 return s;
421 }
422
423 function addInlineCSS( css ) {
424 var $style, style, $newStyle;
425 $style = getMarker().prev();
426 // Disable <style> tag recycling/concatenation because of bug 34669
427 if ( false && $style.is( 'style' ) && $style.data( 'ResourceLoaderDynamicStyleTag' ) === true ) {
428 // There's already a dynamic <style> tag present, append to it. This recycling of
429 // <style> tags is for bug 31676 (can't have more than 32 <style> tags in IE)
430 style = $style.get( 0 );
431 if ( style.styleSheet ) {
432 style.styleSheet.cssText += css; // IE
433 } else {
434 style.appendChild( document.createTextNode( String( css ) ) );
435 }
436 } else {
437 $newStyle = $( addStyleTag( css, getMarker() ) )
438 .data( 'ResourceLoaderDynamicStyleTag', true );
439 }
440 }
441
442 function compare( a, b ) {
443 var i;
444 if ( a.length !== b.length ) {
445 return false;
446 }
447 for ( i = 0; i < b.length; i += 1 ) {
448 if ( $.isArray( a[i] ) ) {
449 if ( !compare( a[i], b[i] ) ) {
450 return false;
451 }
452 }
453 if ( a[i] !== b[i] ) {
454 return false;
455 }
456 }
457 return true;
458 }
459
460 /**
461 * Generates an ISO8601 "basic" string from a UNIX timestamp
462 */
463 function formatVersionNumber( timestamp ) {
464 var pad = function ( a, b, c ) {
465 return [a < 10 ? '0' + a : a, b < 10 ? '0' + b : b, c < 10 ? '0' + c : c].join( '' );
466 },
467 d = new Date();
468 d.setTime( timestamp * 1000 );
469 return [
470 pad( d.getUTCFullYear(), d.getUTCMonth() + 1, d.getUTCDate() ), 'T',
471 pad( d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds() ), 'Z'
472 ].join( '' );
473 }
474
475 /**
476 * Resolves dependencies and detects circular references.
477 *
478 * @param module String Name of the top-level module whose dependencies shall be
479 * resolved and sorted.
480 * @param resolved Array Returns a topological sort of the given module and its
481 * dependencies, such that later modules depend on earlier modules. The array
482 * contains the module names. If the array contains already some module names,
483 * this function appends its result to the pre-existing array.
484 * @param unresolved Object [optional] Hash used to track the current dependency
485 * chain; used to report loops in the dependency graph.
486 * @throws Error if any unregistered module or a dependency loop is encountered
487 */
488 function sortDependencies( module, resolved, unresolved ) {
489 var n, deps, len;
490
491 if ( registry[module] === undefined ) {
492 throw new Error( 'Unknown dependency: ' + module );
493 }
494 // Resolves dynamic loader function and replaces it with its own results
495 if ( $.isFunction( registry[module].dependencies ) ) {
496 registry[module].dependencies = registry[module].dependencies();
497 // Ensures the module's dependencies are always in an array
498 if ( typeof registry[module].dependencies !== 'object' ) {
499 registry[module].dependencies = [registry[module].dependencies];
500 }
501 }
502 if ( $.inArray( module, resolved ) !== -1 ) {
503 // Module already resolved; nothing to do.
504 return;
505 }
506 // unresolved is optional, supply it if not passed in
507 if ( !unresolved ) {
508 unresolved = {};
509 }
510 // Tracks down dependencies
511 deps = registry[module].dependencies;
512 len = deps.length;
513 for ( n = 0; n < len; n += 1 ) {
514 if ( $.inArray( deps[n], resolved ) === -1 ) {
515 if ( unresolved[deps[n]] ) {
516 throw new Error(
517 'Circular reference detected: ' + module +
518 ' -> ' + deps[n]
519 );
520 }
521
522 // Add to unresolved
523 unresolved[module] = true;
524 sortDependencies( deps[n], resolved, unresolved );
525 delete unresolved[module];
526 }
527 }
528 resolved[resolved.length] = module;
529 }
530
531 /**
532 * Gets a list of module names that a module depends on in their proper dependency
533 * order.
534 *
535 * @param module string module name or array of string module names
536 * @return list of dependencies, including 'module'.
537 * @throws Error if circular reference is detected
538 */
539 function resolve( module ) {
540 var m, resolved;
541
542 // Allow calling with an array of module names
543 if ( $.isArray( module ) ) {
544 resolved = [];
545 for ( m = 0; m < module.length; m += 1 ) {
546 sortDependencies( module[m], resolved );
547 }
548 return resolved;
549 }
550
551 if ( typeof module === 'string' ) {
552 resolved = [];
553 sortDependencies( module, resolved );
554 return resolved;
555 }
556
557 throw new Error( 'Invalid module argument: ' + module );
558 }
559
560 /**
561 * Narrows a list of module names down to those matching a specific
562 * state (see comment on top of this scope for a list of valid states).
563 * One can also filter for 'unregistered', which will return the
564 * modules names that don't have a registry entry.
565 *
566 * @param states string or array of strings of module states to filter by
567 * @param modules array list of module names to filter (optional, by default the entire
568 * registry is used)
569 * @return array list of filtered module names
570 */
571 function filter( states, modules ) {
572 var list, module, s, m;
573
574 // Allow states to be given as a string
575 if ( typeof states === 'string' ) {
576 states = [states];
577 }
578 // If called without a list of modules, build and use a list of all modules
579 list = [];
580 if ( modules === undefined ) {
581 modules = [];
582 for ( module in registry ) {
583 modules[modules.length] = module;
584 }
585 }
586 // Build a list of modules which are in one of the specified states
587 for ( s = 0; s < states.length; s += 1 ) {
588 for ( m = 0; m < modules.length; m += 1 ) {
589 if ( registry[modules[m]] === undefined ) {
590 // Module does not exist
591 if ( states[s] === 'unregistered' ) {
592 // OK, undefined
593 list[list.length] = modules[m];
594 }
595 } else {
596 // Module exists, check state
597 if ( registry[modules[m]].state === states[s] ) {
598 // OK, correct state
599 list[list.length] = modules[m];
600 }
601 }
602 }
603 }
604 return list;
605 }
606
607 /**
608 * Determine whether all dependencies are in state 'ready', which means we may
609 * execute the module or job now.
610 *
611 * @param dependencies Array dependencies (module names) to be checked.
612 *
613 * @return Boolean true if all dependencies are in state 'ready', false otherwise
614 */
615 function allReady( dependencies ) {
616 return filter( 'ready', dependencies ).length === dependencies.length;
617 }
618
619 /**
620 * Log a message to window.console, if possible. Useful to force logging of some
621 * errors that are otherwise hard to detect (I.e., this logs also in production mode).
622 * Gets console references in each invocation, so that delayed debugging tools work
623 * fine. No need for optimization here, which would only result in losing logs.
624 *
625 * @param msg String text for the log entry.
626 * @param e Error [optional] to also log.
627 */
628 function log( msg, e ) {
629 var console = window.console;
630 if ( console && console.log ) {
631 console.log( msg );
632 // If we have an exception object, log it through .error() to trigger
633 // proper stacktraces in browsers that support it. There are no (known)
634 // browsers that don't support .error(), that do support .log() and
635 // have useful exception handling through .log().
636 if ( e && console.error ) {
637 console.error( e );
638 }
639 }
640 }
641
642 /**
643 * A module has entered state 'ready', 'error', or 'missing'. Automatically update pending jobs
644 * and modules that depend upon this module. if the given module failed, propagate the 'error'
645 * state up the dependency tree; otherwise, execute all jobs/modules that now have all their
646 * dependencies satisfied. On jobs depending on a failed module, run the error callback, if any.
647 *
648 * @param module String name of module that entered one of the states 'ready', 'error', or 'missing'.
649 */
650 function handlePending( module ) {
651 var j, job, hasErrors, m, stateChange;
652
653 // Modules.
654 if ( $.inArray( registry[module].state, ['error', 'missing'] ) !== -1 ) {
655 // If the current module failed, mark all dependent modules also as failed.
656 // Iterate until steady-state to propagate the error state upwards in the
657 // dependency tree.
658 do {
659 stateChange = false;
660 for ( m in registry ) {
661 if ( $.inArray( registry[m].state, ['error', 'missing'] ) === -1 ) {
662 if ( filter( ['error', 'missing'], registry[m].dependencies ).length > 0 ) {
663 registry[m].state = 'error';
664 stateChange = true;
665 }
666 }
667 }
668 } while ( stateChange );
669 }
670
671 // Execute all jobs whose dependencies are either all satisfied or contain at least one failed module.
672 for ( j = 0; j < jobs.length; j += 1 ) {
673 hasErrors = filter( ['error', 'missing'], jobs[j].dependencies ).length > 0;
674 if ( hasErrors || allReady( jobs[j].dependencies ) ) {
675 // All dependencies satisfied, or some have errors
676 job = jobs[j];
677 jobs.splice( j, 1 );
678 j -= 1;
679 try {
680 if ( hasErrors ) {
681 throw new Error ("Module " + module + " failed.");
682 } else {
683 if ( $.isFunction( job.ready ) ) {
684 job.ready();
685 }
686 }
687 } catch ( e ) {
688 if ( $.isFunction( job.error ) ) {
689 try {
690 job.error( e, [module] );
691 } catch ( ex ) {
692 // A user-defined operation raised an exception. Swallow to protect
693 // our state machine!
694 log( 'Exception thrown by job.error()', ex );
695 }
696 }
697 }
698 }
699 }
700
701 if ( registry[module].state === 'ready' ) {
702 // The current module became 'ready'. Recursively execute all dependent modules that are loaded
703 // and now have all dependencies satisfied.
704 for ( m in registry ) {
705 if ( registry[m].state === 'loaded' && allReady( registry[m].dependencies ) ) {
706 execute( m );
707 }
708 }
709 }
710 }
711
712 /**
713 * Adds a script tag to the DOM, either using document.write or low-level DOM manipulation,
714 * depending on whether document-ready has occurred yet and whether we are in async mode.
715 *
716 * @param src String: URL to script, will be used as the src attribute in the script tag
717 * @param callback Function: Optional callback which will be run when the script is done
718 */
719 function addScript( src, callback, async ) {
720 /*jshint evil:true */
721 var script, head,
722 done = false;
723
724 // Using isReady directly instead of storing it locally from
725 // a $.fn.ready callback (bug 31895).
726 if ( $.isReady || async ) {
727 // jQuery's getScript method is NOT better than doing this the old-fashioned way
728 // because jQuery will eval the script's code, and errors will not have sane
729 // line numbers.
730 script = document.createElement( 'script' );
731 script.setAttribute( 'src', src );
732 script.setAttribute( 'type', 'text/javascript' );
733 if ( $.isFunction( callback ) ) {
734 // Attach handlers for all browsers (based on jQuery.ajax)
735 script.onload = script.onreadystatechange = function () {
736
737 if (
738 !done
739 && (
740 !script.readyState
741 || /loaded|complete/.test( script.readyState )
742 )
743 ) {
744
745 done = true;
746
747 callback();
748
749 // Handle memory leak in IE. This seems to fail in
750 // IE7 sometimes (Permission Denied error when
751 // accessing script.parentNode) so wrap it in
752 // a try catch.
753 try {
754 script.onload = script.onreadystatechange = null;
755 if ( script.parentNode ) {
756 script.parentNode.removeChild( script );
757 }
758
759 // Dereference the script
760 script = undefined;
761 } catch ( e ) { }
762 }
763 };
764 }
765
766 if ( window.opera ) {
767 // Appending to the <head> blocks rendering completely in Opera,
768 // so append to the <body> after document ready. This means the
769 // scripts only start loading after the document has been rendered,
770 // but so be it. Opera users don't deserve faster web pages if their
771 // browser makes it impossible
772 $( function () { document.body.appendChild( script ); } );
773 } else {
774 // IE-safe way of getting the <head> . document.documentElement.head doesn't
775 // work in scripts that run in the <head>
776 head = document.getElementsByTagName( 'head' )[0];
777 ( document.body || head ).appendChild( script );
778 }
779 } else {
780 document.write( mw.html.element(
781 'script', { 'type': 'text/javascript', 'src': src }, ''
782 ) );
783 if ( $.isFunction( callback ) ) {
784 // Document.write is synchronous, so this is called when it's done
785 // FIXME: that's a lie. doc.write isn't actually synchronous
786 callback();
787 }
788 }
789 }
790
791 /**
792 * Executes a loaded module, making it ready to use
793 *
794 * @param module string module name to execute
795 */
796 function execute( module ) {
797 var style, media, i, script, markModuleReady, nestedAddScript;
798
799 if ( registry[module] === undefined ) {
800 throw new Error( 'Module has not been registered yet: ' + module );
801 } else if ( registry[module].state === 'registered' ) {
802 throw new Error( 'Module has not been requested from the server yet: ' + module );
803 } else if ( registry[module].state === 'loading' ) {
804 throw new Error( 'Module has not completed loading yet: ' + module );
805 } else if ( registry[module].state === 'ready' ) {
806 throw new Error( 'Module has already been loaded: ' + module );
807 }
808
809 // Add styles
810 if ( $.isPlainObject( registry[module].style ) ) {
811 // 'media' type ignored, see documentation of mw.loader.implement
812 for ( media in registry[module].style ) {
813 style = registry[module].style[media];
814 if ( $.isArray( style ) ) {
815 for ( i = 0; i < style.length; i += 1 ) {
816 getMarker().before( mw.html.element( 'link', {
817 'type': 'text/css',
818 'rel': 'stylesheet',
819 'href': style[i]
820 } ) );
821 }
822 } else if ( typeof style === 'string' ) {
823 addInlineCSS( style );
824 }
825 }
826 }
827 // Add localizations to message system
828 if ( $.isPlainObject( registry[module].messages ) ) {
829 mw.messages.set( registry[module].messages );
830 }
831 // Execute script
832 try {
833 script = registry[module].script;
834 markModuleReady = function () {
835 registry[module].state = 'ready';
836 handlePending( module );
837 };
838 nestedAddScript = function ( arr, callback, async, i ) {
839 // Recursively call addScript() in its own callback
840 // for each element of arr.
841 if ( i >= arr.length ) {
842 // We're at the end of the array
843 callback();
844 return;
845 }
846
847 addScript( arr[i], function () {
848 nestedAddScript( arr, callback, async, i + 1 );
849 }, async );
850 };
851
852 if ( $.isArray( script ) ) {
853 registry[module].state = 'loading';
854 nestedAddScript( script, markModuleReady, registry[module].async, 0 );
855 } else if ( $.isFunction( script ) ) {
856 registry[module].state = 'ready';
857 script( $ );
858 handlePending( module );
859 }
860 } catch ( e ) {
861 // This needs to NOT use mw.log because these errors are common in production mode
862 // and not in debug mode, such as when a symbol that should be global isn't exported
863 log('mw.loader::execute> Exception thrown by ' + module + ': ' + e.message, e);
864 registry[module].state = 'error';
865 handlePending( module );
866 }
867 }
868
869 /**
870 * Adds a dependencies to the queue with optional callbacks to be run
871 * when the dependencies are ready or fail
872 *
873 * @param dependencies string module name or array of string module names
874 * @param ready function callback to execute when all dependencies are ready
875 * @param error function callback to execute when any dependency fails
876 * @param async (optional) If true, load modules asynchronously even if
877 * document ready has not yet occurred
878 */
879 function request( dependencies, ready, error, async ) {
880 var regItemDeps, regItemDepLen, n;
881
882 // Allow calling by single module name
883 if ( typeof dependencies === 'string' ) {
884 dependencies = [dependencies];
885 }
886
887 // Add ready and error callbacks if they were given
888 if ( ready !== undefined || error !== undefined ) {
889 jobs[jobs.length] = {
890 'dependencies': filter(
891 ['registered', 'loading', 'loaded'],
892 dependencies
893 ),
894 'ready': ready,
895 'error': error
896 };
897 }
898
899 // Queue up any dependencies that are registered
900 dependencies = filter( ['registered'], dependencies );
901 for ( n = 0; n < dependencies.length; n += 1 ) {
902 if ( $.inArray( dependencies[n], queue ) === -1 ) {
903 queue[queue.length] = dependencies[n];
904 if ( async ) {
905 // Mark this module as async in the registry
906 registry[dependencies[n]].async = true;
907 }
908 }
909 }
910
911 // Work the queue
912 mw.loader.work();
913 }
914
915 function sortQuery(o) {
916 var sorted = {}, key, a = [];
917 for ( key in o ) {
918 if ( hasOwn.call( o, key ) ) {
919 a.push( key );
920 }
921 }
922 a.sort();
923 for ( key = 0; key < a.length; key += 1 ) {
924 sorted[a[key]] = o[a[key]];
925 }
926 return sorted;
927 }
928
929 /**
930 * Converts a module map of the form { foo: [ 'bar', 'baz' ], bar: [ 'baz, 'quux' ] }
931 * to a query string of the form foo.bar,baz|bar.baz,quux
932 */
933 function buildModulesString( moduleMap ) {
934 var arr = [], p, prefix;
935 for ( prefix in moduleMap ) {
936 p = prefix === '' ? '' : prefix + '.';
937 arr.push( p + moduleMap[prefix].join( ',' ) );
938 }
939 return arr.join( '|' );
940 }
941
942 /**
943 * Asynchronously append a script tag to the end of the body
944 * that invokes load.php
945 * @param moduleMap {Object}: Module map, see buildModulesString()
946 * @param currReqBase {Object}: Object with other parameters (other than 'modules') to use in the request
947 * @param sourceLoadScript {String}: URL of load.php
948 * @param async {Boolean}: If true, use an asynchrounous request even if document ready has not yet occurred
949 */
950 function doRequest( moduleMap, currReqBase, sourceLoadScript, async ) {
951 var request = $.extend(
952 { 'modules': buildModulesString( moduleMap ) },
953 currReqBase
954 );
955 request = sortQuery( request );
956 // Asynchronously append a script tag to the end of the body
957 // Append &* to avoid triggering the IE6 extension check
958 addScript( sourceLoadScript + '?' + $.param( request ) + '&*', null, async );
959 }
960
961 /* Public Methods */
962 return {
963 addStyleTag: addStyleTag,
964
965 /**
966 * Requests dependencies from server, loading and executing when things when ready.
967 */
968 work: function () {
969 var reqBase, splits, maxQueryLength, q, b, bSource, bGroup, bSourceGroup,
970 source, group, g, i, modules, maxVersion, sourceLoadScript,
971 currReqBase, currReqBaseLength, moduleMap, l,
972 lastDotIndex, prefix, suffix, bytesAdded, async;
973
974 // Build a list of request parameters common to all requests.
975 reqBase = {
976 skin: mw.config.get( 'skin' ),
977 lang: mw.config.get( 'wgUserLanguage' ),
978 debug: mw.config.get( 'debug' )
979 };
980 // Split module batch by source and by group.
981 splits = {};
982 maxQueryLength = mw.config.get( 'wgResourceLoaderMaxQueryLength', -1 );
983
984 // Appends a list of modules from the queue to the batch
985 for ( q = 0; q < queue.length; q += 1 ) {
986 // Only request modules which are registered
987 if ( registry[queue[q]] !== undefined && registry[queue[q]].state === 'registered' ) {
988 // Prevent duplicate entries
989 if ( $.inArray( queue[q], batch ) === -1 ) {
990 batch[batch.length] = queue[q];
991 // Mark registered modules as loading
992 registry[queue[q]].state = 'loading';
993 }
994 }
995 }
996 // Early exit if there's nothing to load...
997 if ( !batch.length ) {
998 return;
999 }
1000
1001 // The queue has been processed into the batch, clear up the queue.
1002 queue = [];
1003
1004 // Always order modules alphabetically to help reduce cache
1005 // misses for otherwise identical content.
1006 batch.sort();
1007
1008 // Split batch by source and by group.
1009 for ( b = 0; b < batch.length; b += 1 ) {
1010 bSource = registry[batch[b]].source;
1011 bGroup = registry[batch[b]].group;
1012 if ( splits[bSource] === undefined ) {
1013 splits[bSource] = {};
1014 }
1015 if ( splits[bSource][bGroup] === undefined ) {
1016 splits[bSource][bGroup] = [];
1017 }
1018 bSourceGroup = splits[bSource][bGroup];
1019 bSourceGroup[bSourceGroup.length] = batch[b];
1020 }
1021
1022 // Clear the batch - this MUST happen before we append any
1023 // script elements to the body or it's possible that a script
1024 // will be locally cached, instantly load, and work the batch
1025 // again, all before we've cleared it causing each request to
1026 // include modules which are already loaded.
1027 batch = [];
1028
1029 for ( source in splits ) {
1030
1031 sourceLoadScript = sources[source].loadScript;
1032
1033 for ( group in splits[source] ) {
1034
1035 // Cache access to currently selected list of
1036 // modules for this group from this source.
1037 modules = splits[source][group];
1038
1039 // Calculate the highest timestamp
1040 maxVersion = 0;
1041 for ( g = 0; g < modules.length; g += 1 ) {
1042 if ( registry[modules[g]].version > maxVersion ) {
1043 maxVersion = registry[modules[g]].version;
1044 }
1045 }
1046
1047 currReqBase = $.extend( { 'version': formatVersionNumber( maxVersion ) }, reqBase );
1048 // For user modules append a user name to the request.
1049 if ( group === "user" && mw.config.get( 'wgUserName' ) !== null ) {
1050 currReqBase.user = mw.config.get( 'wgUserName' );
1051 }
1052 currReqBaseLength = $.param( currReqBase ).length;
1053 async = true;
1054 // We may need to split up the request to honor the query string length limit,
1055 // so build it piece by piece.
1056 l = currReqBaseLength + 9; // '&modules='.length == 9
1057
1058 moduleMap = {}; // { prefix: [ suffixes ] }
1059
1060 for ( i = 0; i < modules.length; i += 1 ) {
1061 // Determine how many bytes this module would add to the query string
1062 lastDotIndex = modules[i].lastIndexOf( '.' );
1063 // Note that these substr() calls work even if lastDotIndex == -1
1064 prefix = modules[i].substr( 0, lastDotIndex );
1065 suffix = modules[i].substr( lastDotIndex + 1 );
1066 bytesAdded = moduleMap[prefix] !== undefined
1067 ? suffix.length + 3 // '%2C'.length == 3
1068 : modules[i].length + 3; // '%7C'.length == 3
1069
1070 // If the request would become too long, create a new one,
1071 // but don't create empty requests
1072 if ( maxQueryLength > 0 && !$.isEmptyObject( moduleMap ) && l + bytesAdded > maxQueryLength ) {
1073 // This request would become too long, create a new one
1074 // and fire off the old one
1075 doRequest( moduleMap, currReqBase, sourceLoadScript, async );
1076 moduleMap = {};
1077 async = true;
1078 l = currReqBaseLength + 9;
1079 }
1080 if ( moduleMap[prefix] === undefined ) {
1081 moduleMap[prefix] = [];
1082 }
1083 moduleMap[prefix].push( suffix );
1084 if ( !registry[modules[i]].async ) {
1085 // If this module is blocking, make the entire request blocking
1086 // This is slightly suboptimal, but in practice mixing of blocking
1087 // and async modules will only occur in debug mode.
1088 async = false;
1089 }
1090 l += bytesAdded;
1091 }
1092 // If there's anything left in moduleMap, request that too
1093 if ( !$.isEmptyObject( moduleMap ) ) {
1094 doRequest( moduleMap, currReqBase, sourceLoadScript, async );
1095 }
1096 }
1097 }
1098 },
1099
1100 /**
1101 * Register a source.
1102 *
1103 * @param id {String}: Short lowercase a-Z string representing a source, only used internally.
1104 * @param props {Object}: Object containing only the loadScript property which is a url to
1105 * the load.php location of the source.
1106 * @return {Boolean}
1107 */
1108 addSource: function ( id, props ) {
1109 var source;
1110 // Allow multiple additions
1111 if ( typeof id === 'object' ) {
1112 for ( source in id ) {
1113 mw.loader.addSource( source, id[source] );
1114 }
1115 return true;
1116 }
1117
1118 if ( sources[id] !== undefined ) {
1119 throw new Error( 'source already registered: ' + id );
1120 }
1121
1122 sources[id] = props;
1123
1124 return true;
1125 },
1126
1127 /**
1128 * Registers a module, letting the system know about it and its
1129 * properties. Startup modules contain calls to this function.
1130 *
1131 * @param module {String}: Module name
1132 * @param version {Number}: Module version number as a timestamp (falls backs to 0)
1133 * @param dependencies {String|Array|Function}: One string or array of strings of module
1134 * names on which this module depends, or a function that returns that array.
1135 * @param group {String}: Group which the module is in (optional, defaults to null)
1136 * @param source {String}: Name of the source. Defaults to local.
1137 */
1138 register: function ( module, version, dependencies, group, source ) {
1139 var m;
1140 // Allow multiple registration
1141 if ( typeof module === 'object' ) {
1142 for ( m = 0; m < module.length; m += 1 ) {
1143 // module is an array of module names
1144 if ( typeof module[m] === 'string' ) {
1145 mw.loader.register( module[m] );
1146 // module is an array of arrays
1147 } else if ( typeof module[m] === 'object' ) {
1148 mw.loader.register.apply( mw.loader, module[m] );
1149 }
1150 }
1151 return;
1152 }
1153 // Validate input
1154 if ( typeof module !== 'string' ) {
1155 throw new Error( 'module must be a string, not a ' + typeof module );
1156 }
1157 if ( registry[module] !== undefined ) {
1158 throw new Error( 'module already registered: ' + module );
1159 }
1160 // List the module as registered
1161 registry[module] = {
1162 'version': version !== undefined ? parseInt( version, 10 ) : 0,
1163 'dependencies': [],
1164 'group': typeof group === 'string' ? group : null,
1165 'source': typeof source === 'string' ? source: 'local',
1166 'state': 'registered'
1167 };
1168 if ( typeof dependencies === 'string' ) {
1169 // Allow dependencies to be given as a single module name
1170 registry[module].dependencies = [dependencies];
1171 } else if ( typeof dependencies === 'object' || $.isFunction( dependencies ) ) {
1172 // Allow dependencies to be given as an array of module names
1173 // or a function which returns an array
1174 registry[module].dependencies = dependencies;
1175 }
1176 },
1177
1178 /**
1179 * Implements a module, giving the system a course of action to take
1180 * upon loading. Results of a request for one or more modules contain
1181 * calls to this function.
1182 *
1183 * All arguments are required.
1184 *
1185 * @param module String: Name of module
1186 * @param script Mixed: Function of module code or String of URL to be used as the src
1187 * attribute when adding a script element to the body
1188 * @param style Object: Object of CSS strings keyed by media-type or Object of lists of URLs
1189 * keyed by media-type. Media-type should be "all" or "", actual types are not supported
1190 * right now due to the way execute() processes the stylesheets (they are concatenated
1191 * into a single <style> tag). In the past these weren't concatenated together (which is
1192 * these are keyed by media-type), but bug 31676 forces us to. In practice this is not a
1193 * problem because ResourceLoader only generates stylesheets for media-type all (e.g. print
1194 * stylesheets are wrapped in @media print {} and concatenated with the others).
1195 * @param msgs Object: List of key/value pairs to be passed through mw.messages.set
1196 */
1197 implement: function ( module, script, style, msgs ) {
1198 // Validate input
1199 if ( typeof module !== 'string' ) {
1200 throw new Error( 'module must be a string, not a ' + typeof module );
1201 }
1202 if ( !$.isFunction( script ) && !$.isArray( script ) ) {
1203 throw new Error( 'script must be a function or an array, not a ' + typeof script );
1204 }
1205 if ( !$.isPlainObject( style ) ) {
1206 throw new Error( 'style must be an object, not a ' + typeof style );
1207 }
1208 if ( !$.isPlainObject( msgs ) ) {
1209 throw new Error( 'msgs must be an object, not a ' + typeof msgs );
1210 }
1211 // Automatically register module
1212 if ( registry[module] === undefined ) {
1213 mw.loader.register( module );
1214 }
1215 // Check for duplicate implementation
1216 if ( registry[module] !== undefined && registry[module].script !== undefined ) {
1217 throw new Error( 'module already implemented: ' + module );
1218 }
1219 // Attach components
1220 registry[module].script = script;
1221 registry[module].style = style;
1222 registry[module].messages = msgs;
1223 // The module may already have been marked as erroneous
1224 if ( $.inArray( registry[module].state, ['error', 'missing'] ) === -1 ) {
1225 registry[module].state = 'loaded';
1226 if ( allReady( registry[module].dependencies ) ) {
1227 execute( module );
1228 }
1229 }
1230 },
1231
1232 /**
1233 * Executes a function as soon as one or more required modules are ready
1234 *
1235 * @param dependencies {String|Array} Module name or array of modules names the callback
1236 * dependends on to be ready before executing
1237 * @param ready {Function} callback to execute when all dependencies are ready (optional)
1238 * @param error {Function} callback to execute when if dependencies have a errors (optional)
1239 */
1240 using: function ( dependencies, ready, error ) {
1241 var tod = typeof dependencies;
1242 // Validate input
1243 if ( tod !== 'object' && tod !== 'string' ) {
1244 throw new Error( 'dependencies must be a string or an array, not a ' + tod );
1245 }
1246 // Allow calling with a single dependency as a string
1247 if ( tod === 'string' ) {
1248 dependencies = [dependencies];
1249 }
1250 // Resolve entire dependency map
1251 dependencies = resolve( dependencies );
1252 if ( allReady( dependencies ) ) {
1253 // Run ready immediately
1254 if ( $.isFunction( ready ) ) {
1255 ready();
1256 }
1257 } else if ( filter( ['error', 'missing'], dependencies ).length ) {
1258 // Execute error immediately if any dependencies have errors
1259 if ( $.isFunction( error ) ) {
1260 error( new Error( 'one or more dependencies have state "error" or "missing"' ),
1261 dependencies );
1262 }
1263 } else {
1264 // Not all dependencies are ready: queue up a request
1265 request( dependencies, ready, error );
1266 }
1267 },
1268
1269 /**
1270 * Loads an external script or one or more modules for future use
1271 *
1272 * @param modules {mixed} Either the name of a module, array of modules,
1273 * or a URL of an external script or style
1274 * @param type {String} mime-type to use if calling with a URL of an
1275 * external script or style; acceptable values are "text/css" and
1276 * "text/javascript"; if no type is provided, text/javascript is assumed.
1277 * @param async {Boolean} (optional) If true, load modules asynchronously
1278 * even if document ready has not yet occurred. If false (default),
1279 * block before document ready and load async after. If not set, true will
1280 * be assumed if loading a URL, and false will be assumed otherwise.
1281 */
1282 load: function ( modules, type, async ) {
1283 var filtered, m, module;
1284
1285 // Validate input
1286 if ( typeof modules !== 'object' && typeof modules !== 'string' ) {
1287 throw new Error( 'modules must be a string or an array, not a ' + typeof modules );
1288 }
1289 // Allow calling with an external url or single dependency as a string
1290 if ( typeof modules === 'string' ) {
1291 // Support adding arbitrary external scripts
1292 if ( /^(https?:)?\/\//.test( modules ) ) {
1293 if ( async === undefined ) {
1294 // Assume async for bug 34542
1295 async = true;
1296 }
1297 if ( type === 'text/css' ) {
1298 $( 'head' ).append( $( '<link>', {
1299 rel: 'stylesheet',
1300 type: 'text/css',
1301 href: modules
1302 } ) );
1303 return;
1304 }
1305 if ( type === 'text/javascript' || type === undefined ) {
1306 addScript( modules, null, async );
1307 return;
1308 }
1309 // Unknown type
1310 throw new Error( 'invalid type for external url, must be text/css or text/javascript. not ' + type );
1311 }
1312 // Called with single module
1313 modules = [modules];
1314 }
1315
1316 // Filter out undefined modules, otherwise resolve() will throw
1317 // an exception for trying to load an undefined module.
1318 // Undefined modules are acceptable here in load(), because load() takes
1319 // an array of unrelated modules, whereas the modules passed to
1320 // using() are related and must all be loaded.
1321 for ( filtered = [], m = 0; m < modules.length; m += 1 ) {
1322 module = registry[modules[m]];
1323 if ( module !== undefined ) {
1324 if ( $.inArray( module.state, ['error', 'missing'] ) === -1 ) {
1325 filtered[filtered.length] = modules[m];
1326 }
1327 }
1328 }
1329
1330 if ( filtered.length === 0 ) {
1331 return;
1332 }
1333 // Resolve entire dependency map
1334 filtered = resolve( filtered );
1335 // If all modules are ready, nothing to be done
1336 if ( allReady( filtered ) ) {
1337 return;
1338 }
1339 // If any modules have errors: also quit.
1340 if ( filter( ['error', 'missing'], filtered ).length ) {
1341 return;
1342 }
1343 // Since some modules are not yet ready, queue up a request.
1344 request( filtered, null, null, async );
1345 },
1346
1347 /**
1348 * Changes the state of a module
1349 *
1350 * @param module {String|Object} module name or object of module name/state pairs
1351 * @param state {String} state name
1352 */
1353 state: function ( module, state ) {
1354 var m;
1355
1356 if ( typeof module === 'object' ) {
1357 for ( m in module ) {
1358 mw.loader.state( m, module[m] );
1359 }
1360 return;
1361 }
1362 if ( registry[module] === undefined ) {
1363 mw.loader.register( module );
1364 }
1365 if ( $.inArray(state, ['ready', 'error', 'missing']) !== -1
1366 && registry[module].state !== state ) {
1367 // Make sure pending modules depending on this one get executed if their
1368 // dependencies are now fulfilled!
1369 registry[module].state = state;
1370 handlePending( module );
1371 } else {
1372 registry[module].state = state;
1373 }
1374 },
1375
1376 /**
1377 * Gets the version of a module
1378 *
1379 * @param module string name of module to get version for
1380 */
1381 getVersion: function ( module ) {
1382 if ( registry[module] !== undefined && registry[module].version !== undefined ) {
1383 return formatVersionNumber( registry[module].version );
1384 }
1385 return null;
1386 },
1387
1388 /**
1389 * @deprecated since 1.18 use mw.loader.getVersion() instead
1390 */
1391 version: function () {
1392 return mw.loader.getVersion.apply( mw.loader, arguments );
1393 },
1394
1395 /**
1396 * Gets the state of a module
1397 *
1398 * @param module string name of module to get state for
1399 */
1400 getState: function ( module ) {
1401 if ( registry[module] !== undefined && registry[module].state !== undefined ) {
1402 return registry[module].state;
1403 }
1404 return null;
1405 },
1406
1407 /**
1408 * Get names of all registered modules.
1409 *
1410 * @return {Array}
1411 */
1412 getModuleNames: function () {
1413 return $.map( registry, function ( i, key ) {
1414 return key;
1415 } );
1416 },
1417
1418 /**
1419 * For backwards-compatibility with Squid-cached pages. Loads mw.user
1420 */
1421 go: function () {
1422 mw.loader.load( 'mediawiki.user' );
1423 }
1424 };
1425 }() ),
1426
1427 /** HTML construction helper functions */
1428 html: ( function () {
1429 function escapeCallback( s ) {
1430 switch ( s ) {
1431 case "'":
1432 return '&#039;';
1433 case '"':
1434 return '&quot;';
1435 case '<':
1436 return '&lt;';
1437 case '>':
1438 return '&gt;';
1439 case '&':
1440 return '&amp;';
1441 }
1442 }
1443
1444 return {
1445 /**
1446 * Escape a string for HTML. Converts special characters to HTML entities.
1447 * @param s The string to escape
1448 */
1449 escape: function ( s ) {
1450 return s.replace( /['"<>&]/g, escapeCallback );
1451 },
1452
1453 /**
1454 * Wrapper object for raw HTML passed to mw.html.element().
1455 * @constructor
1456 */
1457 Raw: function ( value ) {
1458 this.value = value;
1459 },
1460
1461 /**
1462 * Wrapper object for CDATA element contents passed to mw.html.element()
1463 * @constructor
1464 */
1465 Cdata: function ( value ) {
1466 this.value = value;
1467 },
1468
1469 /**
1470 * Create an HTML element string, with safe escaping.
1471 *
1472 * @param name The tag name.
1473 * @param attrs An object with members mapping element names to values
1474 * @param contents The contents of the element. May be either:
1475 * - string: The string is escaped.
1476 * - null or undefined: The short closing form is used, e.g. <br/>.
1477 * - this.Raw: The value attribute is included without escaping.
1478 * - this.Cdata: The value attribute is included, and an exception is
1479 * thrown if it contains an illegal ETAGO delimiter.
1480 * See http://www.w3.org/TR/1999/REC-html401-19991224/appendix/notes.html#h-B.3.2
1481 *
1482 * Example:
1483 * var h = mw.html;
1484 * return h.element( 'div', {},
1485 * new h.Raw( h.element( 'img', {src: '<'} ) ) );
1486 * Returns <div><img src="&lt;"/></div>
1487 */
1488 element: function ( name, attrs, contents ) {
1489 var v, attrName, s = '<' + name;
1490
1491 for ( attrName in attrs ) {
1492 v = attrs[attrName];
1493 // Convert name=true, to name=name
1494 if ( v === true ) {
1495 v = attrName;
1496 // Skip name=false
1497 } else if ( v === false ) {
1498 continue;
1499 }
1500 s += ' ' + attrName + '="' + this.escape( String( v ) ) + '"';
1501 }
1502 if ( contents === undefined || contents === null ) {
1503 // Self close tag
1504 s += '/>';
1505 return s;
1506 }
1507 // Regular open tag
1508 s += '>';
1509 switch ( typeof contents ) {
1510 case 'string':
1511 // Escaped
1512 s += this.escape( contents );
1513 break;
1514 case 'number':
1515 case 'boolean':
1516 // Convert to string
1517 s += String( contents );
1518 break;
1519 default:
1520 if ( contents instanceof this.Raw ) {
1521 // Raw HTML inclusion
1522 s += contents.value;
1523 } else if ( contents instanceof this.Cdata ) {
1524 // CDATA
1525 if ( /<\/[a-zA-z]/.test( contents.value ) ) {
1526 throw new Error( 'mw.html.element: Illegal end tag found in CDATA' );
1527 }
1528 s += contents.value;
1529 } else {
1530 throw new Error( 'mw.html.element: Invalid type of contents' );
1531 }
1532 }
1533 s += '</' + name + '>';
1534 return s;
1535 }
1536 };
1537 }() ),
1538
1539 // Skeleton user object. mediawiki.user.js extends this
1540 user: {
1541 options: new Map(),
1542 tokens: new Map()
1543 }
1544 };
1545
1546 }( jQuery ) );
1547
1548 // Alias $j to jQuery for backwards compatibility
1549 window.$j = jQuery;
1550
1551 // Attach to window and globally alias
1552 window.mw = window.mediaWiki = mw;
1553
1554 // Auto-register from pre-loaded startup scripts
1555 if ( jQuery.isFunction( window.startUp ) ) {
1556 window.startUp();
1557 window.startUp = undefined;
1558 }