Followup r78539: don't renew a cookie that expires at the end of the session anyway...
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.js
1 /*
2 * JavaScript backwards-compatibility alternatives and other convenience functions
3 */
4
5 jQuery.extend({
6 trimLeft : function( str ) {
7 return str == null ? '' : str.toString().replace( /^\s+/, '' );
8 },
9 trimRight : function( str ) {
10 return str == null ?
11 '' : str.toString().replace( /\s+$/, '' );
12 },
13 ucFirst : function( str ) {
14 return str.substr( 0, 1 ).toUpperCase() + str.substr( 1, str.length );
15 },
16 escapeRE : function( str ) {
17 return str.replace ( /([\\{}()|.?*+^$\[\]])/g, "\\$1" );
18 },
19 isEmpty : function( v ) {
20 var key;
21 if ( v === "" || v === 0 || v === "0" || v === null
22 || v === false || typeof v === 'undefined' )
23 {
24 return true;
25 }
26 // the for-loop could potentially contain prototypes
27 // to avoid that we check it's length first
28 if ( v.length === 0 ) {
29 return true;
30 }
31 if ( typeof v === 'object' ) {
32 for ( key in v ) {
33 return false;
34 }
35 return true;
36 }
37 return false;
38 },
39 compareArray : function( arrThis, arrAgainst ) {
40 if ( arrThis.length != arrAgainst.length ) {
41 return false;
42 }
43 for ( var i = 0; i < arrThis.length; i++ ) {
44 if ( arrThis[i] instanceof Array ) {
45 if ( !$.compareArray( arrThis[i], arrAgainst[i] ) ) {
46 return false;
47 }
48 } else if ( arrThis[i] !== arrAgainst[i] ) {
49 return false;
50 }
51 }
52 return true;
53 },
54 compareObject : function( objectA, objectB ) {
55
56 // Do a simple check if the types match
57 if ( typeof( objectA ) == typeof( objectB ) ) {
58
59 // Only loop over the contents if it really is an object
60 if ( typeof( objectA ) == 'object' ) {
61 // If they are aliases of the same object (ie. mw and mediaWiki) return now
62 if ( objectA === objectB ) {
63 return true;
64 } else {
65 // Iterate over each property
66 for ( var prop in objectA ) {
67 // Check if this property is also present in the other object
68 if ( prop in objectB ) {
69 // Compare the types of the properties
70 var type = typeof( objectA[prop] );
71 if ( type == typeof( objectB[prop] ) ) {
72 // Recursively check objects inside this one
73 switch ( type ) {
74 case 'object' :
75 if ( !$.compareObject( objectA[prop], objectB[prop] ) ) {
76 return false;
77 }
78 break;
79 case 'function' :
80 // Functions need to be strings to compare them properly
81 if ( objectA[prop].toString() !== objectB[prop].toString() ) {
82 return false;
83 }
84 break;
85 default:
86 // Strings, numbers
87 if ( objectA[prop] !== objectB[prop] ) {
88 return false;
89 }
90 break;
91 }
92 } else {
93 return false;
94 }
95 } else {
96 return false;
97 }
98 }
99 // Check for properties in B but not in A
100 // This is about 15% faster (tested in Safari 5 and Firefox 3.6)
101 // ...than incrementing a count variable in the above and below loops
102 // See also: http://www.mediawiki.org/wiki/ResourceLoader/Default_modules/compareObject_test#Results
103 for ( var prop in objectB ) {
104 if ( !( prop in objectA ) ) {
105 return false;
106 }
107 }
108 }
109 }
110 } else {
111 return false;
112 }
113 return true;
114 }
115 });
116
117 /*
118 * Core MediaWiki JavaScript Library
119 */
120
121 // Attach to window
122 window.mediaWiki = new ( function( $ ) {
123
124 /* Constants */
125
126 // This will not change until we are 100% ready to turn off legacy globals
127 var LEGACY_GLOBALS = true;
128
129 /* Private Members */
130
131 // List of messages that have been requested to be loaded
132 var messageQueue = {};
133
134 /* Prototypes */
135
136 /**
137 * An object which allows single and multiple get/set/exists functionality
138 * on a list of key / value pairs.
139 *
140 * @param {boolean} global Whether to get/set/exists values on the window
141 * object or a private object
142 */
143 function Map( global ) {
144 this.values = ( global === true ) ? window : {};
145 }
146
147 /**
148 * Gets the value of a key, or a list of key/value pairs for an array of keys.
149 *
150 * If called with no arguments, all values will be returned.
151 *
152 * @param selection mixed Key or array of keys to get values for
153 * @param fallback mixed Value to use in case key(s) do not exist (optional)
154 */
155 Map.prototype.get = function( selection, fallback ) {
156 if ( typeof selection === 'object' ) {
157 selection = $.makeArray( selection );
158 var results = {};
159 for ( var i = 0; i < selection.length; i++ ) {
160 results[selection[i]] = this.get( selection[i], fallback );
161 }
162 return results;
163 } else if ( typeof selection === 'string' ) {
164 if ( typeof this.values[selection] === 'undefined' ) {
165 if ( typeof fallback !== 'undefined' ) {
166 return fallback;
167 }
168 return null;
169 }
170 return this.values[selection];
171 }
172 return this.values;
173 };
174
175 /**
176 * Sets one or multiple key/value pairs.
177 *
178 * @param selection mixed Key or object of key/value pairs to set
179 * @param value mixed Value to set (optional, only in use when key is a string)
180 */
181 Map.prototype.set = function( selection, value ) {
182 if ( typeof selection === 'object' ) {
183 for ( var s in selection ) {
184 this.values[s] = selection[s];
185 }
186 } else if ( typeof selection === 'string' && typeof value !== 'undefined' ) {
187 this.values[selection] = value;
188 }
189 };
190
191 /**
192 * Checks if one or multiple keys exist.
193 *
194 * @param selection mixed Key or array of keys to check
195 * @return boolean Existence of key(s)
196 */
197 Map.prototype.exists = function( selection ) {
198 if ( typeof keys === 'object' ) {
199 for ( var s = 0; s < selection.length; s++ ) {
200 if ( !( selection[s] in this.values ) ) {
201 return false;
202 }
203 }
204 return true;
205 } else {
206 return selection in this.values;
207 }
208 };
209
210 /**
211 * Message object, similar to Message in PHP
212 */
213 function Message( map, key, parameters ) {
214 this.format = 'parse';
215 this.map = map;
216 this.key = key;
217 this.parameters = typeof parameters === 'undefined' ? [] : $.makeArray( parameters );
218 }
219
220 /**
221 * Appends parameters for replacement
222 *
223 * @param parameters mixed First in a list of variadic arguments to append as message parameters
224 */
225 Message.prototype.params = function( parameters ) {
226 for ( var i = 0; i < parameters.length; i++ ) {
227 this.parameters[this.parameters.length] = parameters[i];
228 }
229 return this;
230 };
231
232 /**
233 * Converts message object to it's string form based on the state of format
234 *
235 * @return {string} String form of message
236 */
237 Message.prototype.toString = function() {
238 if ( !this.map.exists( this.key ) ) {
239 // Return <key> if key does not exist
240 return '<' + this.key + '>';
241 }
242 var text = this.map.get( this.key );
243 var parameters = this.parameters;
244 text = text.replace( /\$(\d+)/g, function( string, match ) {
245 var index = parseInt( match, 10 ) - 1;
246 return index in parameters ? parameters[index] : '$' + match;
247 } );
248 /* This should be fixed up when we have a parser
249 if ( this.format === 'parse' && 'language' in mediaWiki ) {
250 text = mediaWiki.language.parse( text );
251 }
252 */
253 return text;
254 };
255
256 /**
257 * Changes format to parse and converts message to string
258 *
259 * @return {string} String form of parsed message
260 */
261 Message.prototype.parse = function() {
262 this.format = 'parse';
263 return this.toString();
264 };
265
266 /**
267 * Changes format to plain and converts message to string
268 *
269 * @return {string} String form of plain message
270 */
271 Message.prototype.plain = function() {
272 this.format = 'plain';
273 return this.toString();
274 };
275
276 /**
277 * Checks if message exists
278 *
279 * @return {string} String form of parsed message
280 */
281 Message.prototype.exists = function() {
282 return this.map.exists( this.key );
283 };
284
285 /**
286 * User object
287 */
288 function User() {
289
290 /* Private Members */
291
292 var that = this;
293
294 /* Public Members */
295
296 this.options = new Map();
297
298 /* Public Methods */
299
300 /**
301 * Generates a random user session ID (32 alpha-numeric characters).
302 *
303 * This information would potentially be stored in a cookie to identify a user during a
304 * session or series of sessions. It's uniqueness should not be depended on.
305 *
306 * @return string random set of 32 alpha-numeric characters
307 */
308 function generateId() {
309 var id = '';
310 var seed = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz';
311 for ( var i = 0, r; i < 32; i++ ) {
312 r = Math.floor( Math.random() * seed.length );
313 id += seed.substring( r, r + 1 );
314 }
315 return id;
316 }
317
318 /**
319 * Gets the current user's name.
320 *
321 * @return mixed user name string or null if users is anonymous
322 */
323 this.name = function() {
324 return mediaWiki.config.get( 'wgUserName' );
325 };
326
327 /**
328 * Checks if the current user is anonymous.
329 *
330 * @return boolean
331 */
332 this.anonymous = function() {
333 return that.name() ? false : true;
334 };
335
336 /**
337 * Gets a random session ID automatically generated and kept in a cookie.
338 *
339 * This ID is ephemeral for everyone, staying in their browser only until they close
340 * their browser.
341 *
342 * Do not use this method before the first call to mediaWiki.loader.go(), it depends on
343 * jquery.cookie, which is added to the first pay-load just after mediaWiki is defined, but
344 * won't be loaded until the first call to go().
345 *
346 * @return string user name or random session ID
347 */
348 this.sessionId = function () {
349 var sessionId = $.cookie( 'mediaWiki.user.sessionId' );
350 if ( typeof sessionId == 'undefined' || sessionId == null ) {
351 sessionId = generateId();
352 $.cookie( 'mediaWiki.user.sessionId', sessionId, { 'expires': null, 'path': '/' } );
353 }
354 return sessionId;
355 };
356
357 /**
358 * Gets the current user's name or a random ID automatically generated and kept in a cookie.
359 *
360 * This ID is persistent for anonymous users, staying in their browser up to 1 year. The
361 * expiration time is reset each time the ID is queried, so in most cases this ID will
362 * persist until the browser's cookies are cleared or the user doesn't visit for 1 year.
363 *
364 * Do not use this method before the first call to mediaWiki.loader.go(), it depends on
365 * jquery.cookie, which is added to the first pay-load just after mediaWiki is defined, but
366 * won't be loaded until the first call to go().
367 *
368 * @return string user name or random session ID
369 */
370 this.id = function() {
371 var name = that.name();
372 if ( name ) {
373 return name;
374 }
375 var id = $.cookie( 'mediaWiki.user.id' );
376 if ( typeof id == 'undefined' || id == null ) {
377 id = generateId();
378 }
379 // Set cookie if not set, or renew it if already set
380 $.cookie( 'mediaWiki.user.id', id, { 'expires': 365, 'path': '/' } );
381 return id;
382 };
383 }
384
385 /* Public Members */
386
387 /*
388 * Dummy function which in debug mode can be replaced with a function that
389 * does something clever
390 */
391 this.log = function() { };
392
393 /*
394 * Make the Map-class publicly available
395 */
396 this.Map = Map;
397
398 /*
399 * List of configuration values
400 *
401 * In legacy mode the values this object wraps will be in the global space
402 */
403 this.config = new this.Map( LEGACY_GLOBALS );
404
405 /*
406 * Information about the current user
407 */
408 this.user = new User();
409
410 /*
411 * Localization system
412 */
413 this.messages = new this.Map();
414
415 /* Public Methods */
416
417 /**
418 * Gets a message object, similar to wfMessage()
419 *
420 * @param key string Key of message to get
421 * @param parameters mixed First argument in a list of variadic arguments, each a parameter for $
422 * replacement
423 */
424 this.message = function( key, parameters ) {
425 // Support variadic arguments
426 if ( typeof parameters !== 'undefined' ) {
427 parameters = $.makeArray( arguments );
428 parameters.shift();
429 } else {
430 parameters = [];
431 }
432 return new Message( mediaWiki.messages, key, parameters );
433 };
434
435 /**
436 * Gets a message string, similar to wfMsg()
437 *
438 * @param key string Key of message to get
439 * @param parameters mixed First argument in a list of variadic arguments, each a parameter for $
440 * replacement
441 */
442 this.msg = function( key, parameters ) {
443 return mediaWiki.message.apply( mediaWiki.message, arguments ).toString();
444 };
445
446 /**
447 * Client-side module loader which integrates with the MediaWiki ResourceLoader
448 */
449 this.loader = new ( function() {
450
451 /* Private Members */
452
453 /**
454 * Mapping of registered modules
455 *
456 * The jquery module is pre-registered, because it must have already
457 * been provided for this object to have been built, and in debug mode
458 * jquery would have been provided through a unique loader request,
459 * making it impossible to hold back registration of jquery until after
460 * mediawiki.
461 *
462 * Format:
463 * {
464 * 'moduleName': {
465 * 'dependencies': ['required module', 'required module', ...], (or) function() {}
466 * 'state': 'registered', 'loading', 'loaded', 'ready', or 'error'
467 * 'script': function() {},
468 * 'style': 'css code string',
469 * 'messages': { 'key': 'value' },
470 * 'version': ############## (unix timestamp)
471 * }
472 * }
473 */
474 var registry = {};
475 // List of modules which will be loaded as when ready
476 var batch = [];
477 // List of modules to be loaded
478 var queue = [];
479 // List of callback functions waiting for modules to be ready to be called
480 var jobs = [];
481 // Flag indicating that requests should be suspended
482 var suspended = true;
483 // Flag inidicating that document ready has occured
484 var ready = false;
485
486 /* Private Methods */
487
488 function compare( a, b ) {
489 if ( a.length != b.length ) {
490 return false;
491 }
492 for ( var i = 0; i < b.length; i++ ) {
493 if ( $.isArray( a[i] ) ) {
494 if ( !compare( a[i], b[i] ) ) {
495 return false;
496 }
497 }
498 if ( a[i] !== b[i] ) {
499 return false;
500 }
501 }
502 return true;
503 }
504
505 /**
506 * Generates an ISO8601 "basic" string from a UNIX timestamp
507 */
508 function formatVersionNumber( timestamp ) {
509 function pad( a, b, c ) {
510 return [a < 10 ? '0' + a : a, b < 10 ? '0' + b : b, c < 10 ? '0' + c : c].join( '' );
511 }
512 var d = new Date();
513 d.setTime( timestamp * 1000 );
514 return [
515 pad( d.getUTCFullYear(), d.getUTCMonth() + 1, d.getUTCDate() ), 'T',
516 pad( d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds() ), 'Z'
517 ].join( '' );
518 }
519
520 /**
521 * Recursively resolves dependencies and detects circular references
522 */
523 function recurse( module, resolved, unresolved ) {
524 if ( typeof registry[module] === 'undefined' ) {
525 throw new Error( 'Unknown dependency: ' + module );
526 }
527 // Resolves dynamic loader function and replaces it with its own results
528 if ( typeof registry[module].dependencies === 'function' ) {
529 registry[module].dependencies = registry[module].dependencies();
530 // Ensures the module's dependencies are always in an array
531 if ( typeof registry[module].dependencies !== 'object' ) {
532 registry[module].dependencies = [registry[module].dependencies];
533 }
534 }
535 // Tracks down dependencies
536 for ( var n = 0; n < registry[module].dependencies.length; n++ ) {
537 if ( $.inArray( registry[module].dependencies[n], resolved ) === -1 ) {
538 if ( $.inArray( registry[module].dependencies[n], unresolved ) !== -1 ) {
539 throw new Error(
540 'Circular reference detected: ' + module +
541 ' -> ' + registry[module].dependencies[n]
542 );
543 }
544 recurse( registry[module].dependencies[n], resolved, unresolved );
545 }
546 }
547 resolved[resolved.length] = module;
548 unresolved.splice( $.inArray( module, unresolved ), 1 );
549 }
550
551 /**
552 * Gets a list of module names that a module depends on in their proper dependency order
553 *
554 * @param module string module name or array of string module names
555 * @return list of dependencies
556 * @throws Error if circular reference is detected
557 */
558 function resolve( module, resolved, unresolved ) {
559 // Allow calling with an array of module names
560 if ( typeof module === 'object' ) {
561 var modules = [];
562 for ( var m = 0; m < module.length; m++ ) {
563 var dependencies = resolve( module[m] );
564 for ( var n = 0; n < dependencies.length; n++ ) {
565 modules[modules.length] = dependencies[n];
566 }
567 }
568 return modules;
569 } else if ( typeof module === 'string' ) {
570 // Undefined modules have no dependencies
571 if ( !( module in registry ) ) {
572 return [];
573 }
574 var resolved = [];
575 recurse( module, resolved, [] );
576 return resolved;
577 }
578 throw new Error( 'Invalid module argument: ' + module );
579 }
580
581 /**
582 * Narrows a list of module names down to those matching a specific
583 * state. Possible states are 'undefined', 'registered', 'loading',
584 * 'loaded', or 'ready'
585 *
586 * @param states string or array of strings of module states to filter by
587 * @param modules array list of module names to filter (optional, all modules
588 * will be used by default)
589 * @return array list of filtered module names
590 */
591 function filter( states, modules ) {
592 // Allow states to be given as a string
593 if ( typeof states === 'string' ) {
594 states = [states];
595 }
596 // If called without a list of modules, build and use a list of all modules
597 var list = [];
598 if ( typeof modules === 'undefined' ) {
599 modules = [];
600 for ( module in registry ) {
601 modules[modules.length] = module;
602 }
603 }
604 // Build a list of modules which are in one of the specified states
605 for ( var s = 0; s < states.length; s++ ) {
606 for ( var m = 0; m < modules.length; m++ ) {
607 if ( typeof registry[modules[m]] === 'undefined' ) {
608 // Module does not exist
609 if ( states[s] == 'undefined' ) {
610 // OK, undefined
611 list[list.length] = modules[m];
612 }
613 } else {
614 // Module exists, check state
615 if ( registry[modules[m]].state === states[s] ) {
616 // OK, correct state
617 list[list.length] = modules[m];
618 }
619 }
620 }
621 }
622 return list;
623 }
624
625 /**
626 * Executes a loaded module, making it ready to use
627 *
628 * @param module string module name to execute
629 */
630 function execute( module ) {
631 if ( typeof registry[module] === 'undefined' ) {
632 throw new Error( 'Module has not been registered yet: ' + module );
633 } else if ( registry[module].state === 'registered' ) {
634 throw new Error( 'Module has not been requested from the server yet: ' + module );
635 } else if ( registry[module].state === 'loading' ) {
636 throw new Error( 'Module has not completed loading yet: ' + module );
637 } else if ( registry[module].state === 'ready' ) {
638 throw new Error( 'Module has already been loaded: ' + module );
639 }
640 // Add style sheet to document
641 if ( typeof registry[module].style === 'string' && registry[module].style.length ) {
642 $( 'head' )
643 .append( mediaWiki.html.element( 'style',
644 { type: "text/css" },
645 new mediaWiki.html.Cdata( registry[module].style )
646 ) );
647 } else if ( typeof registry[module].style === 'object'
648 && !( registry[module].style instanceof Array ) )
649 {
650 for ( var media in registry[module].style ) {
651 $( 'head' ).append( mediaWiki.html.element( 'style',
652 { type: 'text/css', media: media },
653 new mediaWiki.html.Cdata( registry[module].style[media] )
654 ) );
655 }
656 }
657 // Add localizations to message system
658 if ( typeof registry[module].messages === 'object' ) {
659 mediaWiki.messages.set( registry[module].messages );
660 }
661 // Execute script
662 try {
663 registry[module].script();
664 registry[module].state = 'ready';
665 // Run jobs who's dependencies have just been met
666 for ( var j = 0; j < jobs.length; j++ ) {
667 if ( compare(
668 filter( 'ready', jobs[j].dependencies ),
669 jobs[j].dependencies ) )
670 {
671 if ( typeof jobs[j].ready === 'function' ) {
672 jobs[j].ready();
673 }
674 jobs.splice( j, 1 );
675 j--;
676 }
677 }
678 // Execute modules who's dependencies have just been met
679 for ( r in registry ) {
680 if ( registry[r].state == 'loaded' ) {
681 if ( compare(
682 filter( ['ready'], registry[r].dependencies ),
683 registry[r].dependencies ) )
684 {
685 execute( r );
686 }
687 }
688 }
689 } catch ( e ) {
690 mediaWiki.log( 'Exception thrown by ' + module + ': ' + e.message );
691 mediaWiki.log( e );
692 registry[module].state = 'error';
693 // Run error callbacks of jobs affected by this condition
694 for ( var j = 0; j < jobs.length; j++ ) {
695 if ( $.inArray( module, jobs[j].dependencies ) !== -1 ) {
696 if ( typeof jobs[j].error === 'function' ) {
697 jobs[j].error();
698 }
699 jobs.splice( j, 1 );
700 j--;
701 }
702 }
703 }
704 }
705
706 /**
707 * Adds a dependencies to the queue with optional callbacks to be run
708 * when the dependencies are ready or fail
709 *
710 * @param dependencies string module name or array of string module names
711 * @param ready function callback to execute when all dependencies are ready
712 * @param error function callback to execute when any dependency fails
713 */
714 function request( dependencies, ready, error ) {
715 // Allow calling by single module name
716 if ( typeof dependencies === 'string' ) {
717 dependencies = [dependencies];
718 if ( dependencies[0] in registry ) {
719 for ( var n = 0; n < registry[dependencies[0]].dependencies.length; n++ ) {
720 dependencies[dependencies.length] =
721 registry[dependencies[0]].dependencies[n];
722 }
723 }
724 }
725 // Add ready and error callbacks if they were given
726 if ( arguments.length > 1 ) {
727 jobs[jobs.length] = {
728 'dependencies': filter(
729 ['undefined', 'registered', 'loading', 'loaded'],
730 dependencies ),
731 'ready': ready,
732 'error': error
733 };
734 }
735 // Queue up any dependencies that are undefined or registered
736 dependencies = filter( ['undefined', 'registered'], dependencies );
737 for ( var n = 0; n < dependencies.length; n++ ) {
738 if ( $.inArray( dependencies[n], queue ) === -1 ) {
739 queue[queue.length] = dependencies[n];
740 }
741 }
742 // Work the queue
743 mediaWiki.loader.work();
744 }
745
746 function sortQuery(o) {
747 var sorted = {}, key, a = [];
748 for ( key in o ) {
749 if ( o.hasOwnProperty( key ) ) {
750 a.push( key );
751 }
752 }
753 a.sort();
754 for ( key = 0; key < a.length; key++ ) {
755 sorted[a[key]] = o[a[key]];
756 }
757 return sorted;
758 }
759
760 /* Public Methods */
761
762 /**
763 * Requests dependencies from server, loading and executing when things when ready.
764 */
765 this.work = function() {
766 // Appends a list of modules to the batch
767 for ( var q = 0; q < queue.length; q++ ) {
768 // Only request modules which are undefined or registered
769 if ( !( queue[q] in registry ) || registry[queue[q]].state == 'registered' ) {
770 // Prevent duplicate entries
771 if ( $.inArray( queue[q], batch ) === -1 ) {
772 batch[batch.length] = queue[q];
773 // Mark registered modules as loading
774 if ( queue[q] in registry ) {
775 registry[queue[q]].state = 'loading';
776 }
777 }
778 }
779 }
780 // Clean up the queue
781 queue = [];
782 // After document ready, handle the batch
783 if ( !suspended && batch.length ) {
784 // Always order modules alphabetically to help reduce cache
785 // misses for otherwise identical content
786 batch.sort();
787 // Build a list of request parameters
788 var base = {
789 'skin': mediaWiki.config.get( 'skin' ),
790 'lang': mediaWiki.config.get( 'wgUserLanguage' ),
791 'debug': mediaWiki.config.get( 'debug' )
792 };
793 // Extend request parameters with a list of modules in the batch
794 var requests = [];
795 // Split into groups
796 var groups = {};
797 for ( var b = 0; b < batch.length; b++ ) {
798 var group = registry[batch[b]].group;
799 if ( !( group in groups ) ) {
800 groups[group] = [];
801 }
802 groups[group][groups[group].length] = batch[b];
803 }
804 for ( var group in groups ) {
805 // Calculate the highest timestamp
806 var version = 0;
807 for ( var g = 0; g < groups[group].length; g++ ) {
808 if ( registry[groups[group][g]].version > version ) {
809 version = registry[groups[group][g]].version;
810 }
811 }
812 requests[requests.length] = $.extend(
813 { 'modules': groups[group].join( '|' ), 'version': formatVersionNumber( version ) }, base
814 );
815 }
816 // Clear the batch - this MUST happen before we append the
817 // script element to the body or it's possible that the script
818 // will be locally cached, instantly load, and work the batch
819 // again, all before we've cleared it causing each request to
820 // include modules which are already loaded
821 batch = [];
822 // Asynchronously append a script tag to the end of the body
823 function request() {
824 var html = '';
825 for ( var r = 0; r < requests.length; r++ ) {
826 requests[r] = sortQuery( requests[r] );
827 // Build out the HTML
828 var src = mediaWiki.config.get( 'wgLoadScript' ) + '?' + $.param( requests[r] );
829 html += mediaWiki.html.element( 'script',
830 { type: 'text/javascript', src: src }, '' );
831 }
832 return html;
833 }
834 // Load asynchronously after doumument ready
835 if ( ready ) {
836 setTimeout( function() { $( 'body' ).append( request() ); }, 0 )
837 } else {
838 document.write( request() );
839 }
840 }
841 };
842
843 /**
844 * Registers a module, letting the system know about it and its
845 * dependencies. loader.js files contain calls to this function.
846 */
847 this.register = function( module, version, dependencies, group ) {
848 // Allow multiple registration
849 if ( typeof module === 'object' ) {
850 for ( var m = 0; m < module.length; m++ ) {
851 if ( typeof module[m] === 'string' ) {
852 mediaWiki.loader.register( module[m] );
853 } else if ( typeof module[m] === 'object' ) {
854 mediaWiki.loader.register.apply( mediaWiki.loader, module[m] );
855 }
856 }
857 return;
858 }
859 // Validate input
860 if ( typeof module !== 'string' ) {
861 throw new Error( 'module must be a string, not a ' + typeof module );
862 }
863 if ( typeof registry[module] !== 'undefined' ) {
864 throw new Error( 'module already implemeneted: ' + module );
865 }
866 // List the module as registered
867 registry[module] = {
868 'state': 'registered',
869 'group': typeof group === 'string' ? group : null,
870 'dependencies': [],
871 'version': typeof version !== 'undefined' ? parseInt( version ) : 0
872 };
873 if ( typeof dependencies === 'string' ) {
874 // Allow dependencies to be given as a single module name
875 registry[module].dependencies = [dependencies];
876 } else if ( typeof dependencies === 'object' || typeof dependencies === 'function' ) {
877 // Allow dependencies to be given as an array of module names
878 // or a function which returns an array
879 registry[module].dependencies = dependencies;
880 }
881 };
882
883 /**
884 * Implements a module, giving the system a course of action to take
885 * upon loading. Results of a request for one or more modules contain
886 * calls to this function.
887 */
888 this.implement = function( module, script, style, localization ) {
889 // Automatically register module
890 if ( typeof registry[module] === 'undefined' ) {
891 mediaWiki.loader.register( module );
892 }
893 // Validate input
894 if ( typeof script !== 'function' ) {
895 throw new Error( 'script must be a function, not a ' + typeof script );
896 }
897 if ( typeof style !== 'undefined'
898 && typeof style !== 'string'
899 && typeof style !== 'object' )
900 {
901 throw new Error( 'style must be a string or object, not a ' + typeof style );
902 }
903 if ( typeof localization !== 'undefined'
904 && typeof localization !== 'object' )
905 {
906 throw new Error( 'localization must be an object, not a ' + typeof localization );
907 }
908 if ( typeof registry[module] !== 'undefined'
909 && typeof registry[module].script !== 'undefined' )
910 {
911 throw new Error( 'module already implemeneted: ' + module );
912 }
913 // Mark module as loaded
914 registry[module].state = 'loaded';
915 // Attach components
916 registry[module].script = script;
917 if ( typeof style === 'string'
918 || typeof style === 'object' && !( style instanceof Array ) )
919 {
920 registry[module].style = style;
921 }
922 if ( typeof localization === 'object' ) {
923 registry[module].messages = localization;
924 }
925 // Execute or queue callback
926 if ( compare(
927 filter( ['ready'], registry[module].dependencies ),
928 registry[module].dependencies ) )
929 {
930 execute( module );
931 } else {
932 request( module );
933 }
934 };
935
936 /**
937 * Executes a function as soon as one or more required modules are ready
938 *
939 * @param dependencies string or array of strings of modules names the callback
940 * dependencies to be ready before
941 * executing
942 * @param ready function callback to execute when all dependencies are ready (optional)
943 * @param error function callback to execute when if dependencies have a errors (optional)
944 */
945 this.using = function( dependencies, ready, error ) {
946 // Validate input
947 if ( typeof dependencies !== 'object' && typeof dependencies !== 'string' ) {
948 throw new Error( 'dependencies must be a string or an array, not a ' +
949 typeof dependencies )
950 }
951 // Allow calling with a single dependency as a string
952 if ( typeof dependencies === 'string' ) {
953 dependencies = [dependencies];
954 }
955 // Resolve entire dependency map
956 dependencies = resolve( dependencies );
957 // If all dependencies are met, execute ready immediately
958 if ( compare( filter( ['ready'], dependencies ), dependencies ) ) {
959 if ( typeof ready === 'function' ) {
960 ready();
961 }
962 }
963 // If any dependencies have errors execute error immediately
964 else if ( filter( ['error'], dependencies ).length ) {
965 if ( typeof error === 'function' ) {
966 error();
967 }
968 }
969 // Since some dependencies are not yet ready, queue up a request
970 else {
971 request( dependencies, ready, error );
972 }
973 };
974
975 /**
976 * Loads an external script or one or more modules for future use
977 *
978 * @param modules mixed either the name of a module, array of modules,
979 * or a URL of an external script or style
980 * @param type string mime-type to use if calling with a URL of an
981 * external script or style; acceptable values are "text/css" and
982 * "text/javascript"; if no type is provided, text/javascript is
983 * assumed
984 */
985 this.load = function( modules, type ) {
986 // Validate input
987 if ( typeof modules !== 'object' && typeof modules !== 'string' ) {
988 throw new Error( 'dependencies must be a string or an array, not a ' +
989 typeof dependencies )
990 }
991 // Allow calling with an external script or single dependency as a string
992 if ( typeof modules === 'string' ) {
993 // Support adding arbitrary external scripts
994 if ( modules.substr( 0, 7 ) == 'http://'
995 || modules.substr( 0, 8 ) == 'https://' )
996 {
997 if ( type === 'text/css' ) {
998 $( 'head' )
999 .append( $( '<link rel="stylesheet" type="text/css" />' )
1000 .attr( 'href', modules ) );
1001 return true;
1002 } else if ( type === 'text/javascript' || typeof type === 'undefined' ) {
1003 var script = mediaWiki.html.element( 'script',
1004 { type: 'text/javascript', src: modules }, '' );
1005 if ( ready ) {
1006 $( 'body' ).append( script );
1007 } else {
1008 document.write( script );
1009 }
1010 return true;
1011 }
1012 // Unknown type
1013 return false;
1014 }
1015 // Called with single module
1016 modules = [modules];
1017 }
1018 // Resolve entire dependency map
1019 modules = resolve( modules );
1020 // If all modules are ready, nothing dependency be done
1021 if ( compare( filter( ['ready'], modules ), modules ) ) {
1022 return true;
1023 }
1024 // If any modules have errors return false
1025 else if ( filter( ['error'], modules ).length ) {
1026 return false;
1027 }
1028 // Since some modules are not yet ready, queue up a request
1029 else {
1030 request( modules );
1031 return true;
1032 }
1033 };
1034
1035 /**
1036 * Flushes the request queue and begin executing load requests on demand
1037 */
1038 this.go = function() {
1039 suspended = false;
1040 mediaWiki.loader.work();
1041 };
1042
1043 /**
1044 * Changes the state of a module
1045 *
1046 * @param module string module name or object of module name/state pairs
1047 * @param state string state name
1048 */
1049 this.state = function( module, state ) {
1050 if ( typeof module === 'object' ) {
1051 for ( var m in module ) {
1052 mediaWiki.loader.state( m, module[m] );
1053 }
1054 return;
1055 }
1056 if ( !( module in registry ) ) {
1057 mediaWiki.loader.register( module );
1058 }
1059 registry[module].state = state;
1060 };
1061
1062 /**
1063 * Gets the version of a module
1064 *
1065 * @param module string name of module to get version for
1066 */
1067 this.version = function( module ) {
1068 if ( module in registry && 'version' in registry[module] ) {
1069 return formatVersionNumber( registry[module].version );
1070 }
1071 return null;
1072 };
1073
1074 /* Cache document ready status */
1075
1076 $(document).ready( function() { ready = true; } );
1077 } )();
1078
1079 /** HTML construction helper functions */
1080 this.html = new ( function () {
1081 function escapeCallback( s ) {
1082 switch ( s ) {
1083 case "'":
1084 return '&#039;';
1085 case '"':
1086 return '&quot;';
1087 case '<':
1088 return '&lt;';
1089 case '>':
1090 return '&gt;';
1091 case '&':
1092 return '&amp;';
1093 }
1094 }
1095
1096 /**
1097 * Escape a string for HTML. Converts special characters to HTML entities.
1098 * @param s The string to escape
1099 */
1100 this.escape = function( s ) {
1101 return s.replace( /['"<>&]/g, escapeCallback );
1102 };
1103
1104 /**
1105 * Wrapper object for raw HTML passed to mediaWiki.html.element().
1106 */
1107 this.Raw = function( value ) {
1108 this.value = value;
1109 };
1110
1111 /**
1112 * Wrapper object for CDATA element contents passed to mediaWiki.html.element()
1113 */
1114 this.Cdata = function( value ) {
1115 this.value = value;
1116 };
1117
1118 /**
1119 * Create an HTML element string, with safe escaping.
1120 *
1121 * @param name The tag name.
1122 * @param attrs An object with members mapping element names to values
1123 * @param contents The contents of the element. May be either:
1124 * - string: The string is escaped.
1125 * - null or undefined: The short closing form is used, e.g. <br/>.
1126 * - this.Raw: The value attribute is included without escaping.
1127 * - this.Cdata: The value attribute is included, and an exception is
1128 * thrown if it contains an illegal ETAGO delimiter.
1129 * See http://www.w3.org/TR/1999/REC-html401-19991224/appendix/notes.html#h-B.3.2
1130 *
1131 * Example:
1132 * var h = mediaWiki.html;
1133 * return h.element( 'div', {},
1134 * new h.Raw( h.element( 'img', {src: '<'} ) ) );
1135 * Returns <div><img src="&lt;"/></div>
1136 */
1137 this.element = function( name, attrs, contents ) {
1138 var s = '<' + name;
1139 for ( attrName in attrs ) {
1140 s += ' ' + attrName + '="' + this.escape( attrs[attrName] ) + '"';
1141 }
1142 if ( typeof contents == 'undefined' || contents === null ) {
1143 // Self close tag
1144 s += '/>';
1145 return s;
1146 }
1147 // Regular open tag
1148 s += '>';
1149 if (typeof contents === 'string') {
1150 // Escaped
1151 s += this.escape( contents );
1152 } else if ( contents instanceof this.Raw ) {
1153 // Raw HTML inclusion
1154 s += contents.value;
1155 } else if ( contents instanceof this.Cdata ) {
1156 // CDATA
1157 if ( /<\/[a-zA-z]/.test( contents.value ) ) {
1158 throw new Error( 'mw.html.element: Illegal end tag found in CDATA' );
1159 }
1160 s += contents.value;
1161 } else {
1162 throw new Error( 'mw.html.element: Invalid type of contents' );
1163 }
1164 s += '</' + name + '>';
1165 return s;
1166 };
1167 } )();
1168
1169
1170 /* Extension points */
1171
1172 this.legacy = {};
1173
1174 } )( jQuery );
1175
1176 /* Auto-register from pre-loaded startup scripts */
1177
1178 if ( typeof startUp === 'function' ) {
1179 startUp();
1180 delete startUp;
1181 }
1182
1183 // Add jQuery Cookie to initial payload (used in mediaWiki.user)
1184 mediaWiki.loader.load( 'jquery.cookie' );
1185
1186 // Alias $j to jQuery for backwards compatibility
1187 window.$j = jQuery;
1188 window.mw = mediaWiki;