summaryrefslogtreecommitdiff
path: root/resources/mediawiki/mediawiki.js
blob: 121d5399a59c435c5a7095307a8a8484542d4b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
/*
 * Core MediaWiki JavaScript Library
 */

var mw = ( function ( $, undefined ) {
"use strict";

	/* Private Members */

	var hasOwn = Object.prototype.hasOwnProperty;
	/* Object constructors */

	/**
	 * Map
	 *
	 * Creates an object that can be read from or written to from prototype functions
	 * that allow both single and multiple variables at once.
	 *
	 * @param global boolean Whether to store the values in the global window
	 *  object or a exclusively in the object property 'values'.
	 * @return Map
	 */
	function Map( global ) {
		this.values = global === true ? window : {};
		return this;
	}

	Map.prototype = {
		/**
		 * Get the value of one or multiple a keys.
		 *
		 * If called with no arguments, all values will be returned.
		 *
		 * @param selection mixed String key or array of keys to get values for.
		 * @param fallback mixed Value to use in case key(s) do not exist (optional).
		 * @return mixed If selection was a string returns the value or null,
		 *  If selection was an array, returns an object of key/values (value is null if not found),
		 *  If selection was not passed or invalid, will return the 'values' object member (be careful as
		 *  objects are always passed by reference in JavaScript!).
		 * @return Values as a string or object, null if invalid/inexistant.
		 */
		get: function ( selection, fallback ) {
			var results, i;

			if ( $.isArray( selection ) ) {
				selection = $.makeArray( selection );
				results = {};
				for ( i = 0; i < selection.length; i += 1 ) {
					results[selection[i]] = this.get( selection[i], fallback );
				}
				return results;
			} else if ( typeof selection === 'string' ) {
				if ( this.values[selection] === undefined ) {
					if ( fallback !== undefined ) {
						return fallback;
					}
					return null;
				}
				return this.values[selection];
			}
			if ( selection === undefined ) {
				return this.values;
			} else {
				return null; // invalid selection key
			}
		},

		/**
		 * Sets one or multiple key/value pairs.
		 *
		 * @param selection {mixed} String key or array of keys to set values for.
		 * @param value {mixed} Value to set (optional, only in use when key is a string)
		 * @return {Boolean} This returns true on success, false on failure.
		 */
		set: function ( selection, value ) {
			var s;

			if ( $.isPlainObject( selection ) ) {
				for ( s in selection ) {
					this.values[s] = selection[s];
				}
				return true;
			} else if ( typeof selection === 'string' && value !== undefined ) {
				this.values[selection] = value;
				return true;
			}
			return false;
		},

		/**
		 * Checks if one or multiple keys exist.
		 *
		 * @param selection {mixed} String key or array of keys to check
		 * @return {Boolean} Existence of key(s)
		 */
		exists: function ( selection ) {
			var s;

			if ( $.isArray( selection ) ) {
				for ( s = 0; s < selection.length; s += 1 ) {
					if ( this.values[selection[s]] === undefined ) {
						return false;
					}
				}
				return true;
			} else {
				return this.values[selection] !== undefined;
			}
		}
	};

	/**
	 * Message
	 *
	 * Object constructor for messages,
	 * similar to the Message class in MediaWiki PHP.
	 *
	 * @param map Map Instance of mw.Map
	 * @param key String
	 * @param parameters Array
	 * @return Message
	 */
	function Message( map, key, parameters ) {
		this.format = 'plain';
		this.map = map;
		this.key = key;
		this.parameters = parameters === undefined ? [] : $.makeArray( parameters );
		return this;
	}

	Message.prototype = {
		/**
		 * Simple message parser, does $N replacement and nothing else.
		 * This may be overridden to provide a more complex message parser.
		 * 
		 * This function will not be called for nonexistent messages.
		 */
		parser: function() {
			var parameters = this.parameters;
			return this.map.get( this.key ).replace( /\$(\d+)/g, function ( str, match ) {
				var index = parseInt( match, 10 ) - 1;
				return parameters[index] !== undefined ? parameters[index] : '$' + match;
			} );
		},
		
		/**
		 * Appends (does not replace) parameters for replacement to the .parameters property.
		 *
		 * @param parameters Array
		 * @return Message
		 */
		params: function ( parameters ) {
			var i;
			for ( i = 0; i < parameters.length; i += 1 ) {
				this.parameters.push( parameters[i] );
			}
			return this;
		},

		/**
		 * Converts message object to it's string form based on the state of format.
		 *
		 * @return string Message as a string in the current form or <key> if key does not exist.
		 */
		toString: function() {
			var text;

			if ( !this.exists() ) {
				// Use <key> as text if key does not exist
				if ( this.format !== 'plain' ) {
					// format 'escape' and 'parse' need to have the brackets and key html escaped
					return mw.html.escape( '<' + this.key + '>' );
				}
				return '<' + this.key + '>';
			}

			if ( this.format === 'plain' ) {
				// @todo FIXME: Although not applicable to core Message,
				// Plugins like jQueryMsg should be able to distinguish
				// between 'plain' (only variable replacement and plural/gender)
				// and actually parsing wikitext to HTML.
				text = this.parser();
			}

			if ( this.format === 'escaped' ) {
				text = this.parser();
				text = mw.html.escape( text );
			}
			
			if ( this.format === 'parse' ) {
				text = this.parser();
			}

			return text;
		},

		/**
		 * Changes format to parse and converts message to string
		 *
		 * @return {string} String form of parsed message
		 */
		parse: function() {
			this.format = 'parse';
			return this.toString();
		},

		/**
		 * Changes format to plain and converts message to string
		 *
		 * @return {string} String form of plain message
		 */
		plain: function() {
			this.format = 'plain';
			return this.toString();
		},

		/**
		 * Changes the format to html escaped and converts message to string
		 *
		 * @return {string} String form of html escaped message
		 */
		escaped: function() {
			this.format = 'escaped';
			return this.toString();
		},

		/**
		 * Checks if message exists
		 *
		 * @return {string} String form of parsed message
		 */
		exists: function() {
			return this.map.exists( this.key );
		}
	};

	return {
		/* Public Members */

		/**
		 * Dummy function which in debug mode can be replaced with a function that
		 * emulates console.log in console-less environments.
		 */
		log: function() { },
	
		/**
		 * @var constructor Make the Map constructor publicly available.
		 */
		Map: Map,

		/**
		 * @var constructor Make the Message constructor publicly available.
		 */
		Message: Message,
	
		/**
		 * List of configuration values
		 *
		 * Dummy placeholder. Initiated in startUp module as a new instance of mw.Map().
		 * If $wgLegacyJavaScriptGlobals is true, this Map will have its values
		 * in the global window object.
		 */
		config: null,
	
		/**
		 * @var object
		 *
		 * Empty object that plugins can be installed in.
		 */
		libs: {},
	
		/* Extension points */
	
		legacy: {},
	
		/**
		 * Localization system
		 */
		messages: new Map(),
	
		/* Public Methods */
	
		/**
		 * Gets a message object, similar to wfMessage()
		 *
		 * @param key string Key of message to get
		 * @param parameter_1 mixed First argument in a list of variadic arguments,
		 *  each a parameter for $N replacement in messages.
		 * @return Message
		 */
		message: function ( key, parameter_1 /* [, parameter_2] */ ) {
			var parameters;
			// Support variadic arguments
			if ( parameter_1 !== undefined ) {
				parameters = $.makeArray( arguments );
				parameters.shift();
			} else {
				parameters = [];
			}
			return new Message( mw.messages, key, parameters );
		},
	
		/**
		 * Gets a message string, similar to wfMsg()
		 *
		 * @param key string Key of message to get
		 * @param parameters mixed First argument in a list of variadic arguments,
		 *  each a parameter for $N replacement in messages.
		 * @return String.
		 */
		msg: function ( key, parameters ) {
			return mw.message.apply( mw.message, arguments ).toString();
		},
	
		/**
		 * Client-side module loader which integrates with the MediaWiki ResourceLoader
		 */
		loader: ( function() {
	
			/* Private Members */
	
			/**
			 * Mapping of registered modules
			 *
			 * The jquery module is pre-registered, because it must have already
			 * been provided for this object to have been built, and in debug mode
			 * jquery would have been provided through a unique loader request,
			 * making it impossible to hold back registration of jquery until after
			 * mediawiki.
			 *
			 * For exact details on support for script, style and messages, look at
			 * mw.loader.implement.
			 *
			 * Format:
			 *	{
			 *		'moduleName': {
			 *			'version': ############## (unix timestamp),
			 *			'dependencies': ['required.foo', 'bar.also', ...], (or) function() {}
			 *			'group': 'somegroup', (or) null,
			 *			'source': 'local', 'someforeignwiki', (or) null
			 *			'state': 'registered', 'loading', 'loaded', 'ready', 'error' or 'missing'
			 *			'script': ...,
			 *			'style': ...,
			 *			'messages': { 'key': 'value' },
			 *		}
			 *	}
			 */
			var	registry = {},
				/**
				 * Mapping of sources, keyed by source-id, values are objects.
				 * Format:
				 *	{
				 *		'sourceId': {
				 *			'loadScript': 'http://foo.bar/w/load.php'
				 *		}
				 *	}
				 */
				sources = {},
				// List of modules which will be loaded as when ready
				batch = [],
				// List of modules to be loaded
				queue = [],
				// List of callback functions waiting for modules to be ready to be called
				jobs = [],
				// Flag indicating that document ready has occured
				ready = false,
				// Selector cache for the marker element. Use getMarker() to get/use the marker!
				$marker = null;
	
			/* Cache document ready status */
	
			$(document).ready( function () {
				ready = true;
			} );
	
			/* Private methods */
	
			function getMarker() {
				// Cached ?
				if ( $marker ) {
					return $marker;
				} else {
					$marker = $( 'meta[name="ResourceLoaderDynamicStyles"]' );
					if ( $marker.length ) {
						return $marker;
					}
					mw.log( 'getMarker> No <meta name="ResourceLoaderDynamicStyles"> found, inserting dynamically.' );
					$marker = $( '<meta>' ).attr( 'name', 'ResourceLoaderDynamicStyles' ).appendTo( 'head' );
					return $marker;
				}
			}
			
			function addInlineCSS( css, media ) {
				var	$style = getMarker().prev(),
					$newStyle,
					attrs = { 'type': 'text/css', 'media': media };
				if ( $style.is( 'style' ) && $style.data( 'ResourceLoaderDynamicStyleTag' ) === true ) {
					// There's already a dynamic <style> tag present, append to it
					// This recycling of <style> tags is for bug 31676 (can't have
					// more than 32 <style> tags in IE)
					
					// Also, calling .append() on a <style> tag explodes with a JS error in IE,
					// so if the .append() fails we fall back to building a new <style> tag and
					// replacing the existing one
					try {
						// Do cdata sanitization on the provided CSS, and prepend a double newline
						css = $( mw.html.element( 'style', {}, new mw.html.Cdata( "\n\n" + css ) ) ).html();
						$style.append( css );
					} catch ( e ) {
						// Generate a new tag with the combined CSS
						css = $style.html() + "\n\n" + css;
						$newStyle = $( mw.html.element( 'style', attrs, new mw.html.Cdata( css ) ) )
							.data( 'ResourceLoaderDynamicStyleTag', true );
						// Prevent a flash of unstyled content by inserting the new tag
						// before removing the old one
						$style.after( $newStyle );
						$style.remove();
					}
				} else {
					// Create a new <style> tag and insert it
					$style = $( mw.html.element( 'style', attrs, new mw.html.Cdata( css ) ) );
					$style.data( 'ResourceLoaderDynamicStyleTag', true );
					getMarker().before( $style );
				}
			}
	
			function compare( a, b ) {
				var i;
				if ( a.length !== b.length ) {
					return false;
				}
				for ( i = 0; i < b.length; i += 1 ) {
					if ( $.isArray( a[i] ) ) {
						if ( !compare( a[i], b[i] ) ) {
							return false;
						}
					}
					if ( a[i] !== b[i] ) {
						return false;
					}
				}
				return true;
			}
	
			/**
			 * Generates an ISO8601 "basic" string from a UNIX timestamp
			 */
			function formatVersionNumber( timestamp ) {
				var	pad = function ( a, b, c ) {
						return [a < 10 ? '0' + a : a, b < 10 ? '0' + b : b, c < 10 ? '0' + c : c].join( '' );
					},
					d = new Date();
				d.setTime( timestamp * 1000 );
				return [
					pad( d.getUTCFullYear(), d.getUTCMonth() + 1, d.getUTCDate() ), 'T',
					pad( d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds() ), 'Z'
				].join( '' );
			}
	
			/**
			 * Recursively resolves dependencies and detects circular references
			 */
			function recurse( module, resolved, unresolved ) {
				var n, deps, len;
	
				if ( registry[module] === undefined ) {
					throw new Error( 'Unknown dependency: ' + module );
				}
				// Resolves dynamic loader function and replaces it with its own results
				if ( $.isFunction( registry[module].dependencies ) ) {
					registry[module].dependencies = registry[module].dependencies();
					// Ensures the module's dependencies are always in an array
					if ( typeof registry[module].dependencies !== 'object' ) {
						registry[module].dependencies = [registry[module].dependencies];
					}
				}
				// Tracks down dependencies
				deps = registry[module].dependencies;
				len = deps.length;
				for ( n = 0; n < len; n += 1 ) {
					if ( $.inArray( deps[n], resolved ) === -1 ) {
						if ( $.inArray( deps[n], unresolved ) !== -1 ) {
							throw new Error(
								'Circular reference detected: ' + module +
								' -> ' + deps[n]
							);
						}

						// Add to unresolved
						unresolved[unresolved.length] = module;
						recurse( deps[n], resolved, unresolved );
						// module is at the end of unresolved
						unresolved.pop();
					}
				}
				resolved[resolved.length] = module;
			}
	
			/**
			 * Gets a list of module names that a module depends on in their proper dependency order
			 *
			 * @param module string module name or array of string module names
			 * @return list of dependencies, including 'module'.
			 * @throws Error if circular reference is detected
			 */
			function resolve( module ) {
				var modules, m, deps, n, resolved;
	
				// Allow calling with an array of module names
				if ( $.isArray( module ) ) {
					modules = [];
					for ( m = 0; m < module.length; m += 1 ) {
						deps = resolve( module[m] );
						for ( n = 0; n < deps.length; n += 1 ) {
							modules[modules.length] = deps[n];
						}
					}
					return modules;
				} else if ( typeof module === 'string' ) {
					resolved = [];
					recurse( module, resolved, [] );
					return resolved;
				}
				throw new Error( 'Invalid module argument: ' + module );
			}
	
			/**
			 * Narrows a list of module names down to those matching a specific
			 * state (see comment on top of this scope for a list of valid states).
			 * One can also filter for 'unregistered', which will return the
			 * modules names that don't have a registry entry.
			 *
			 * @param states string or array of strings of module states to filter by
			 * @param modules array list of module names to filter (optional, by default the entire
			 * registry is used)
			 * @return array list of filtered module names
			 */
			function filter( states, modules ) {
				var list, module, s, m;
	
				// Allow states to be given as a string
				if ( typeof states === 'string' ) {
					states = [states];
				}
				// If called without a list of modules, build and use a list of all modules
				list = [];
				if ( modules === undefined ) {
					modules = [];
					for ( module in registry ) {
						modules[modules.length] = module;
					}
				}
				// Build a list of modules which are in one of the specified states
				for ( s = 0; s < states.length; s += 1 ) {
					for ( m = 0; m < modules.length; m += 1 ) {
						if ( registry[modules[m]] === undefined ) {
							// Module does not exist
							if ( states[s] === 'unregistered' ) {
								// OK, undefined
								list[list.length] = modules[m];
							}
						} else {
							// Module exists, check state
							if ( registry[modules[m]].state === states[s] ) {
								// OK, correct state
								list[list.length] = modules[m];
							}
						}
					}
				}
				return list;
			}
	
			/**
			 * Automatically executes jobs and modules which are pending with satistifed dependencies.
			 *
			 * This is used when dependencies are satisfied, such as when a module is executed.
			 */
			function handlePending( module ) {
				var j, r;
	
				try {
					// Run jobs whose dependencies have just been met
					for ( j = 0; j < jobs.length; j += 1 ) {
						if ( compare(
							filter( 'ready', jobs[j].dependencies ),
							jobs[j].dependencies ) )
						{
							var callback = jobs[j].ready;
							jobs.splice( j, 1 );
							j -= 1;
							if ( $.isFunction( callback ) ) {
								callback();
							}
						}
					}
					// Execute modules whose dependencies have just been met
					for ( r in registry ) {
						if ( registry[r].state === 'loaded' ) {
							if ( compare(
								filter( ['ready'], registry[r].dependencies ),
								registry[r].dependencies ) )
							{
								execute( r );
							}
						}
					}
				} catch ( e ) {
					// Run error callbacks of jobs affected by this condition
					for ( j = 0; j < jobs.length; j += 1 ) {
						if ( $.inArray( module, jobs[j].dependencies ) !== -1 ) {
							if ( $.isFunction( jobs[j].error ) ) {
								jobs[j].error( e, module );
							}
							jobs.splice( j, 1 );
							j -= 1;
						}
					}
					throw e;
				}
			}
	
			/**
			 * Adds a script tag to the DOM, either using document.write or low-level DOM manipulation,
			 * depending on whether document-ready has occured yet and whether we are in async mode.
			 *
			 * @param src String: URL to script, will be used as the src attribute in the script tag
			 * @param callback Function: Optional callback which will be run when the script is done
			 */
			function addScript( src, callback, async ) {
				var done = false, script, head;
				if ( ready || async ) {
					// jQuery's getScript method is NOT better than doing this the old-fashioned way
					// because jQuery will eval the script's code, and errors will not have sane
					// line numbers.
					script = document.createElement( 'script' );
					script.setAttribute( 'src', src );
					script.setAttribute( 'type', 'text/javascript' );
					if ( $.isFunction( callback ) ) {
						// Attach handlers for all browsers (based on jQuery.ajax)
						script.onload = script.onreadystatechange = function() {
	
							if (
								!done
								&& (
									!script.readyState
									|| /loaded|complete/.test( script.readyState )
								)
							) {
	
								done = true;
	
								callback();
	
								// Handle memory leak in IE. This seems to fail in
								// IE7 sometimes (Permission Denied error when
								// accessing script.parentNode) so wrap it in
								// a try catch.
								try {
									script.onload = script.onreadystatechange = null;
									if ( script.parentNode ) {
										script.parentNode.removeChild( script );
									}
		
									// Dereference the script
									script = undefined;
								} catch ( e ) { }
							}
						};
					}
					
					if ( window.opera ) {
						// Appending to the <head> blocks rendering completely in Opera,
						// so append to the <body> after document ready. This means the
						// scripts only start loading after  the document has been rendered,
						// but so be it. Opera users don't deserve faster web pages if their
						// browser makes it impossible
						$( function() { document.body.appendChild( script ); } );
					} else {
						// IE-safe way of getting the <head> . document.documentElement.head doesn't
						// work in scripts that run in the <head>
						head = document.getElementsByTagName( 'head' )[0];
						( document.body || head ).appendChild( script );
					}
				} else {
					document.write( mw.html.element(
						'script', { 'type': 'text/javascript', 'src': src }, ''
					) );
					if ( $.isFunction( callback ) ) {
						// Document.write is synchronous, so this is called when it's done
						// FIXME: that's a lie. doc.write isn't actually synchronous
						callback();
					}
				}
			}
	
			/**
			 * Executes a loaded module, making it ready to use
			 *
			 * @param module string module name to execute
			 */
			function execute( module, callback ) {
				var style, media, i, script, markModuleReady, nestedAddScript;
	
				if ( registry[module] === undefined ) {
					throw new Error( 'Module has not been registered yet: ' + module );
				} else if ( registry[module].state === 'registered' ) {
					throw new Error( 'Module has not been requested from the server yet: ' + module );
				} else if ( registry[module].state === 'loading' ) {
					throw new Error( 'Module has not completed loading yet: ' + module );
				} else if ( registry[module].state === 'ready' ) {
					throw new Error( 'Module has already been loaded: ' + module );
				}
	
				// Add styles
				if ( $.isPlainObject( registry[module].style ) ) {
					for ( media in registry[module].style ) {
						style = registry[module].style[media];
						if ( $.isArray( style ) ) {
							for ( i = 0; i < style.length; i += 1 ) {
								getMarker().before( mw.html.element( 'link', {
									'type': 'text/css',
									'media': media,
									'rel': 'stylesheet',
									'href': style[i]
								} ) );
							}
						} else if ( typeof style === 'string' ) {
							addInlineCSS( style, media );
						}
					}
				}
				// Add localizations to message system
				if ( $.isPlainObject( registry[module].messages ) ) {
					mw.messages.set( registry[module].messages );
				}
				// Execute script
				try {
					script = registry[module].script;
					markModuleReady = function() {
						registry[module].state = 'ready';
						handlePending( module );
						if ( $.isFunction( callback ) ) {
							callback();
						}
					};
					nestedAddScript = function ( arr, callback, async, i ) {
						// Recursively call addScript() in its own callback
						// for each element of arr.
						if ( i >= arr.length ) {
							// We're at the end of the array
							callback();
							return;
						}
	
						addScript( arr[i], function() {
							nestedAddScript( arr, callback, async, i + 1 );
						}, async );
					};
	
					if ( $.isArray( script ) ) {
						registry[module].state = 'loading';
						nestedAddScript( script, markModuleReady, registry[module].async, 0 );
					} else if ( $.isFunction( script ) ) {
						script( $ );
						markModuleReady();
					}
				} catch ( e ) {
					// This needs to NOT use mw.log because these errors are common in production mode
					// and not in debug mode, such as when a symbol that should be global isn't exported
					if ( window.console && typeof window.console.log === 'function' ) {
						console.log( 'mw.loader::execute> Exception thrown by ' + module + ': ' + e.message );
					}
					registry[module].state = 'error';
				}
			}
	
			/**
			 * Adds a dependencies to the queue with optional callbacks to be run
			 * when the dependencies are ready or fail
			 *
			 * @param dependencies string module name or array of string module names
			 * @param ready function callback to execute when all dependencies are ready
			 * @param error function callback to execute when any dependency fails
			 * @param async (optional) If true, load modules asynchronously even if
			 *  document ready has not yet occurred
			 */
			function request( dependencies, ready, error, async ) {
				var regItemDeps, regItemDepLen, n;
	
				// Allow calling by single module name
				if ( typeof dependencies === 'string' ) {
					dependencies = [dependencies];
					if ( registry[dependencies[0]] !== undefined ) {
						// Cache repetitively accessed deep level object member
						regItemDeps = registry[dependencies[0]].dependencies;
						// Cache to avoid looped access to length property
						regItemDepLen = regItemDeps.length;
						for ( n = 0; n < regItemDepLen; n += 1 ) {
							dependencies[dependencies.length] = regItemDeps[n];
						}
					}
				}
				// Add ready and error callbacks if they were given
				if ( arguments.length > 1 ) {
					jobs[jobs.length] = {
						'dependencies': filter(
							['registered', 'loading', 'loaded'],
							dependencies
						),
						'ready': ready,
						'error': error
					};
				}
				// Queue up any dependencies that are registered
				dependencies = filter( ['registered'], dependencies );
				for ( n = 0; n < dependencies.length; n += 1 ) {
					if ( $.inArray( dependencies[n], queue ) === -1 ) {
						queue[queue.length] = dependencies[n];
						if ( async ) {
							// Mark this module as async in the registry
							registry[dependencies[n]].async = true;
						}
					}
				}
				// Work the queue
				mw.loader.work();
			}
	
			function sortQuery(o) {
				var sorted = {}, key, a = [];
				for ( key in o ) {
					if ( hasOwn.call( o, key ) ) {
						a.push( key );
					}
				}
				a.sort();
				for ( key = 0; key < a.length; key += 1 ) {
					sorted[a[key]] = o[a[key]];
				}
				return sorted;
			}
	
			/**
			 * Converts a module map of the form { foo: [ 'bar', 'baz' ], bar: [ 'baz, 'quux' ] }
			 * to a query string of the form foo.bar,baz|bar.baz,quux
			 */
			function buildModulesString( moduleMap ) {
				var arr = [], p, prefix;
				for ( prefix in moduleMap ) {
					p = prefix === '' ? '' : prefix + '.';
					arr.push( p + moduleMap[prefix].join( ',' ) );
				}
				return arr.join( '|' );
			}
	
			/**
			 * Asynchronously append a script tag to the end of the body
			 * that invokes load.php
			 * @param moduleMap {Object}: Module map, see buildModulesString()
			 * @param currReqBase {Object}: Object with other parameters (other than 'modules') to use in the request
			 * @param sourceLoadScript {String}: URL of load.php
			 * @param async {Boolean}: If true, use an asynchrounous request even if document ready has not yet occurred
			 */
			function doRequest( moduleMap, currReqBase, sourceLoadScript, async ) {
				var request = $.extend(
					{ 'modules': buildModulesString( moduleMap ) },
					currReqBase
				);
				request = sortQuery( request );
				// Asynchronously append a script tag to the end of the body
				// Append &* to avoid triggering the IE6 extension check
				addScript( sourceLoadScript + '?' + $.param( request ) + '&*', null, async );
			}
	
			/* Public Methods */
			return {
				/**
				 * Requests dependencies from server, loading and executing when things when ready.
				 */
				work: function () {
					var	reqBase, splits, maxQueryLength, q, b, bSource, bGroup, bSourceGroup,
						source, group, g, i, modules, maxVersion, sourceLoadScript,
						currReqBase, currReqBaseLength, moduleMap, l,
						lastDotIndex, prefix, suffix, bytesAdded, async;
		
					// Build a list of request parameters common to all requests.
					reqBase = {
						skin: mw.config.get( 'skin' ),
						lang: mw.config.get( 'wgUserLanguage' ),
						debug: mw.config.get( 'debug' )
					};
					// Split module batch by source and by group.
					splits = {};
					maxQueryLength = mw.config.get( 'wgResourceLoaderMaxQueryLength', -1 );
		
					// Appends a list of modules from the queue to the batch
					for ( q = 0; q < queue.length; q += 1 ) {
						// Only request modules which are registered
						if ( registry[queue[q]] !== undefined && registry[queue[q]].state === 'registered' ) {
							// Prevent duplicate entries
							if ( $.inArray( queue[q], batch ) === -1 ) {
								batch[batch.length] = queue[q];
								// Mark registered modules as loading
								registry[queue[q]].state = 'loading';
							}
						}
					}
					// Early exit if there's nothing to load...
					if ( !batch.length ) {
						return;
					}
		
					// The queue has been processed into the batch, clear up the queue.
					queue = [];
		
					// Always order modules alphabetically to help reduce cache
					// misses for otherwise identical content.
					batch.sort();
		
					// Split batch by source and by group.
					for ( b = 0; b < batch.length; b += 1 ) {
						bSource = registry[batch[b]].source;
						bGroup = registry[batch[b]].group;
						if ( splits[bSource] === undefined ) {
							splits[bSource] = {};
						}
						if ( splits[bSource][bGroup] === undefined ) {
							splits[bSource][bGroup] = [];
						}
						bSourceGroup = splits[bSource][bGroup];
						bSourceGroup[bSourceGroup.length] = batch[b];
					}
		
					// Clear the batch - this MUST happen before we append any
					// script elements to the body or it's possible that a script
					// will be locally cached, instantly load, and work the batch
					// again, all before we've cleared it causing each request to
					// include modules which are already loaded.
					batch = [];
		
					for ( source in splits ) {
		
						sourceLoadScript = sources[source].loadScript;
		
						for ( group in splits[source] ) {
		
							// Cache access to currently selected list of
							// modules for this group from this source.
							modules = splits[source][group];
		
							// Calculate the highest timestamp
							maxVersion = 0;
							for ( g = 0; g < modules.length; g += 1 ) {
								if ( registry[modules[g]].version > maxVersion ) {
									maxVersion = registry[modules[g]].version;
								}
							}
		
							currReqBase = $.extend( { 'version': formatVersionNumber( maxVersion ) }, reqBase );
							currReqBaseLength = $.param( currReqBase ).length;
							async = true;
							// We may need to split up the request to honor the query string length limit,
							// so build it piece by piece.
							l = currReqBaseLength + 9; // '&modules='.length == 9
		
							moduleMap = {}; // { prefix: [ suffixes ] }
		
							for ( i = 0; i < modules.length; i += 1 ) {
								// Determine how many bytes this module would add to the query string
								lastDotIndex = modules[i].lastIndexOf( '.' );
								// Note that these substr() calls work even if lastDotIndex == -1
								prefix = modules[i].substr( 0, lastDotIndex );
								suffix = modules[i].substr( lastDotIndex + 1 );
								bytesAdded = moduleMap[prefix] !== undefined
									? suffix.length + 3 // '%2C'.length == 3
									: modules[i].length + 3; // '%7C'.length == 3
		
								// If the request would become too long, create a new one,
								// but don't create empty requests
								if ( maxQueryLength > 0 && !$.isEmptyObject( moduleMap ) && l + bytesAdded > maxQueryLength ) {
									// This request would become too long, create a new one
									// and fire off the old one
									doRequest( moduleMap, currReqBase, sourceLoadScript, async );
									moduleMap = {};
									async = true;
									l = currReqBaseLength + 9;
								}
								if ( moduleMap[prefix] === undefined ) {
									moduleMap[prefix] = [];
								}
								moduleMap[prefix].push( suffix );
								if ( !registry[modules[i]].async ) {
									// If this module is blocking, make the entire request blocking
									// This is slightly suboptimal, but in practice mixing of blocking
									// and async modules will only occur in debug mode.
									async = false;
								}
								l += bytesAdded;
							}
							// If there's anything left in moduleMap, request that too
							if ( !$.isEmptyObject( moduleMap ) ) {
								doRequest( moduleMap, currReqBase, sourceLoadScript, async );
							}
						}
					}
				},
		
				/**
				 * Register a source.
				 *
				 * @param id {String}: Short lowercase a-Z string representing a source, only used internally.
				 * @param props {Object}: Object containing only the loadScript property which is a url to
				 * the load.php location of the source.
				 * @return {Boolean}
				 */
				addSource: function ( id, props ) {
					var source;
					// Allow multiple additions
					if ( typeof id === 'object' ) {
						for ( source in id ) {
							mw.loader.addSource( source, id[source] );
						}
						return true;
					}
		
					if ( sources[id] !== undefined ) {
						throw new Error( 'source already registered: ' + id );
					}
		
					sources[id] = props;
		
					return true;
				},
		
				/**
				 * Registers a module, letting the system know about it and its
				 * properties. Startup modules contain calls to this function.
				 *
				 * @param module {String}: Module name
				 * @param version {Number}: Module version number as a timestamp (falls backs to 0)
				 * @param dependencies {String|Array|Function}: One string or array of strings of module
				 *  names on which this module depends, or a function that returns that array.
				 * @param group {String}: Group which the module is in (optional, defaults to null)
				 * @param source {String}: Name of the source. Defaults to local.
				 */
				register: function ( module, version, dependencies, group, source ) {
					var m;
					// Allow multiple registration
					if ( typeof module === 'object' ) {
						for ( m = 0; m < module.length; m += 1 ) {
							// module is an array of module names
							if ( typeof module[m] === 'string' ) {
								mw.loader.register( module[m] );
							// module is an array of arrays
							} else if ( typeof module[m] === 'object' ) {
								mw.loader.register.apply( mw.loader, module[m] );
							}
						}
						return;
					}
					// Validate input
					if ( typeof module !== 'string' ) {
						throw new Error( 'module must be a string, not a ' + typeof module );
					}
					if ( registry[module] !== undefined ) {
						throw new Error( 'module already registered: ' + module );
					}
					// List the module as registered
					registry[module] = {
						'version': version !== undefined ? parseInt( version, 10 ) : 0,
						'dependencies': [],
						'group': typeof group === 'string' ? group : null,
						'source': typeof source === 'string' ? source: 'local',
						'state': 'registered'
					};
					if ( typeof dependencies === 'string' ) {
						// Allow dependencies to be given as a single module name
						registry[module].dependencies = [dependencies];
					} else if ( typeof dependencies === 'object' || $.isFunction( dependencies ) ) {
						// Allow dependencies to be given as an array of module names
						// or a function which returns an array
						registry[module].dependencies = dependencies;
					}
				},
		
				/**
				 * Implements a module, giving the system a course of action to take
				 * upon loading. Results of a request for one or more modules contain
				 * calls to this function.
				 *
				 * All arguments are required.
				 *
				 * @param module String: Name of module
				 * @param script Mixed: Function of module code or String of URL to be used as the src
				 *  attribute when adding a script element to the body
				 * @param style Object: Object of CSS strings keyed by media-type or Object of lists of URLs
				 *  keyed by media-type
				 * @param msgs Object: List of key/value pairs to be passed through mw.messages.set
				 */
				implement: function ( module, script, style, msgs ) {
					// Validate input
					if ( typeof module !== 'string' ) {
						throw new Error( 'module must be a string, not a ' + typeof module );
					}
					if ( !$.isFunction( script ) && !$.isArray( script ) ) {
						throw new Error( 'script must be a function or an array, not a ' + typeof script );
					}
					if ( !$.isPlainObject( style ) ) {
						throw new Error( 'style must be an object, not a ' + typeof style );
					}
					if ( !$.isPlainObject( msgs ) ) {
						throw new Error( 'msgs must be an object, not a ' + typeof msgs );
					}
					// Automatically register module
					if ( registry[module] === undefined ) {
						mw.loader.register( module );
					}
					// Check for duplicate implementation
					if ( registry[module] !== undefined && registry[module].script !== undefined ) {
						throw new Error( 'module already implemented: ' + module );
					}
					// Mark module as loaded
					registry[module].state = 'loaded';
					// Attach components
					registry[module].script = script;
					registry[module].style = style;
					registry[module].messages = msgs;
					// Execute or queue callback
					if ( compare(
						filter( ['ready'], registry[module].dependencies ),
						registry[module].dependencies ) )
					{
						execute( module );
					}
				},
		
				/**
				 * Executes a function as soon as one or more required modules are ready
				 *
				 * @param dependencies {String|Array} Module name or array of modules names the callback
				 *  dependends on to be ready before executing
				 * @param ready {Function} callback to execute when all dependencies are ready (optional)
				 * @param error {Function} callback to execute when if dependencies have a errors (optional)
				 */
				using: function ( dependencies, ready, error ) {
					var tod = typeof dependencies;
					// Validate input
					if ( tod !== 'object' && tod !== 'string' ) {
						throw new Error( 'dependencies must be a string or an array, not a ' + tod );
					}
					// Allow calling with a single dependency as a string
					if ( tod === 'string' ) {
						dependencies = [dependencies];
					}
					// Resolve entire dependency map
					dependencies = resolve( dependencies );
					// If all dependencies are met, execute ready immediately
					if ( compare( filter( ['ready'], dependencies ), dependencies ) ) {
						if ( $.isFunction( ready ) ) {
							ready();
						}
					}
					// If any dependencies have errors execute error immediately
					else if ( filter( ['error'], dependencies ).length ) {
						if ( $.isFunction( error ) ) {
							error( new Error( 'one or more dependencies have state "error"' ),
								dependencies );
						}
					}
					// Since some dependencies are not yet ready, queue up a request
					else {
						request( dependencies, ready, error );
					}
				},
		
				/**
				 * Loads an external script or one or more modules for future use
				 *
				 * @param modules {mixed} Either the name of a module, array of modules,
				 *  or a URL of an external script or style
				 * @param type {String} mime-type to use if calling with a URL of an
				 *  external script or style; acceptable values are "text/css" and
				 *  "text/javascript"; if no type is provided, text/javascript is assumed.
				 * @param async {Boolean} (optional) If true, load modules asynchronously
				 *  even if document ready has not yet occurred. If false (default),
				 *  block before document ready and load async after. If not set, true will
				 *  be assumed if loading a URL, and false will be assumed otherwise.
				 */
				load: function ( modules, type, async ) {
					var filtered, m;

					// Validate input
					if ( typeof modules !== 'object' && typeof modules !== 'string' ) {
						throw new Error( 'modules must be a string or an array, not a ' + typeof modules );
					}
					// Allow calling with an external url or single dependency as a string
					if ( typeof modules === 'string' ) {
						// Support adding arbitrary external scripts
						if ( /^(https?:)?\/\//.test( modules ) ) {
							if ( async === undefined ) {
								// Assume async for bug 34542
								async = true;
							}
							if ( type === 'text/css' ) {
								$( 'head' ).append( $( '<link>', {
									rel: 'stylesheet',
									type: 'text/css',
									href: modules
								} ) );
								return;
							} else if ( type === 'text/javascript' || type === undefined ) {
								addScript( modules, null, async );
								return;
							}
							// Unknown type
							throw new Error( 'invalid type for external url, must be text/css or text/javascript. not ' + type );
						}
						// Called with single module
						modules = [modules];
					}

					// Filter out undefined modules, otherwise resolve() will throw
					// an exception for trying to load an undefined module.
					// Undefined modules are acceptable here in load(), because load() takes
					// an array of unrelated modules, whereas the modules passed to
					// using() are related and must all be loaded.
					for ( filtered = [], m = 0; m < modules.length; m += 1 ) {
						if ( registry[modules[m]] !== undefined ) {
							filtered[filtered.length] = modules[m];
						}
					}

					// Resolve entire dependency map
					filtered = resolve( filtered );
					// If all modules are ready, nothing dependency be done
					if ( compare( filter( ['ready'], filtered ), filtered ) ) {
						return;
					}
					// If any modules have errors
					else if ( filter( ['error'], filtered ).length ) {
						return;
					}
					// Since some modules are not yet ready, queue up a request
					else {
						request( filtered, null, null, async );
						return;
					}
				},
		
				/**
				 * Changes the state of a module
				 *
				 * @param module {String|Object} module name or object of module name/state pairs
				 * @param state {String} state name
				 */
				state: function ( module, state ) {
					var m;
					if ( typeof module === 'object' ) {
						for ( m in module ) {
							mw.loader.state( m, module[m] );
						}
						return;
					}
					if ( registry[module] === undefined ) {
						mw.loader.register( module );
					}
					registry[module].state = state;
				},
		
				/**
				 * Gets the version of a module
				 *
				 * @param module string name of module to get version for
				 */
				getVersion: function ( module ) {
					if ( registry[module] !== undefined && registry[module].version !== undefined ) {
						return formatVersionNumber( registry[module].version );
					}
					return null;
				},
		
				/**
				 * @deprecated since 1.18 use mw.loader.getVersion() instead
				 */
				version: function () {
					return mw.loader.getVersion.apply( mw.loader, arguments );
				},
		
				/**
				 * Gets the state of a module
				 *
				 * @param module string name of module to get state for
				 */
				getState: function ( module ) {
					if ( registry[module] !== undefined && registry[module].state !== undefined ) {
						return registry[module].state;
					}
					return null;
				},
		
				/**
				 * Get names of all registered modules.
				 *
				 * @return {Array}
				 */
				getModuleNames: function () {
					return $.map( registry, function ( i, key ) {
						return key;
					} );
				},
		
				/**
				 * For backwards-compatibility with Squid-cached pages. Loads mw.user
				 */
				go: function () {
					mw.loader.load( 'mediawiki.user' );
				}
			};
		}() ),
	
		/** HTML construction helper functions */
		html: ( function () {
			function escapeCallback( s ) {
				switch ( s ) {
					case "'":
						return '&#039;';
					case '"':
						return '&quot;';
					case '<':
						return '&lt;';
					case '>':
						return '&gt;';
					case '&':
						return '&amp;';
				}
			}

			return {
				/**
				 * Escape a string for HTML. Converts special characters to HTML entities.
				 * @param s The string to escape
				 */
				escape: function ( s ) {
					return s.replace( /['"<>&]/g, escapeCallback );
				},
		
				/**
				 * Wrapper object for raw HTML passed to mw.html.element().
				 * @constructor
				 */
				Raw: function ( value ) {
					this.value = value;
				},
		
				/**
				 * Wrapper object for CDATA element contents passed to mw.html.element()
				 * @constructor
				 */
				Cdata: function ( value ) {
					this.value = value;
				},
		
				/**
				 * Create an HTML element string, with safe escaping.
				 *
				 * @param name The tag name.
				 * @param attrs An object with members mapping element names to values
				 * @param contents The contents of the element. May be either:
				 *  - string: The string is escaped.
				 *  - null or undefined: The short closing form is used, e.g. <br/>.
				 *  - this.Raw: The value attribute is included without escaping.
				 *  - this.Cdata: The value attribute is included, and an exception is
				 *   thrown if it contains an illegal ETAGO delimiter.
				 *   See http://www.w3.org/TR/1999/REC-html401-19991224/appendix/notes.html#h-B.3.2
				 *
				 * Example:
				 *	var h = mw.html;
				 *	return h.element( 'div', {},
				 *		new h.Raw( h.element( 'img', {src: '<'} ) ) );
				 * Returns <div><img src="&lt;"/></div>
				 */
				element: function ( name, attrs, contents ) {
					var v, attrName, s = '<' + name;
		
					for ( attrName in attrs ) {
						v = attrs[attrName];
						// Convert name=true, to name=name
						if ( v === true ) {
							v = attrName;
						// Skip name=false
						} else if ( v === false ) {
							continue;
						}
						s += ' ' + attrName + '="' + this.escape( String( v ) ) + '"';
					}
					if ( contents === undefined || contents === null ) {
						// Self close tag
						s += '/>';
						return s;
					}
					// Regular open tag
					s += '>';
					switch ( typeof contents ) {
						case 'string':
							// Escaped
							s += this.escape( contents );
							break;
						case 'number':
						case 'boolean':
							// Convert to string
							s += String( contents );
							break;
						default:
							if ( contents instanceof this.Raw ) {
								// Raw HTML inclusion
								s += contents.value;
							} else if ( contents instanceof this.Cdata ) {
								// CDATA
								if ( /<\/[a-zA-z]/.test( contents.value ) ) {
									throw new Error( 'mw.html.element: Illegal end tag found in CDATA' );
								}
								s += contents.value;
							} else {
								throw new Error( 'mw.html.element: Invalid type of contents' );
							}
					}
					s += '</' + name + '>';
					return s;
				}
			};
		})(),

		// Skeleton user object. mediawiki.user.js extends this
		user: {
			options: new Map(),
			tokens: new Map()
		}
	};
	
})( jQuery );

// Alias $j to jQuery for backwards compatibility
window.$j = jQuery;

// Attach to window and globally alias
window.mw = window.mediaWiki = mw;

// Auto-register from pre-loaded startup scripts
if ( typeof startUp !== 'undefined' && jQuery.isFunction( startUp ) ) {
	startUp();
	startUp = undefined;
}