Rewrote Special:Upload to allow easier extension. Mostly backwards compatible towards...
[lhc/web/wiklou.git] / skins / common / wikibits.js
1 // MediaWiki JavaScript support functions
2
3 var clientPC = navigator.userAgent.toLowerCase(); // Get client info
4 var is_gecko = /gecko/.test( clientPC ) &&
5 !/khtml|spoofer|netscape\/7\.0/.test(clientPC);
6 var webkit_match = clientPC.match(/applewebkit\/(\d+)/);
7 if (webkit_match) {
8 var is_safari = clientPC.indexOf('applewebkit') != -1 &&
9 clientPC.indexOf('spoofer') == -1;
10 var is_safari_win = is_safari && clientPC.indexOf('windows') != -1;
11 var webkit_version = parseInt(webkit_match[1]);
12 }
13 // For accesskeys; note that FF3+ is included here!
14 var is_ff2 = /firefox\/[2-9]|minefield\/3/.test( clientPC );
15 var ff2_bugs = /firefox\/2/.test( clientPC );
16 // These aren't used here, but some custom scripts rely on them
17 var is_ff2_win = is_ff2 && clientPC.indexOf('windows') != -1;
18 var is_ff2_x11 = is_ff2 && clientPC.indexOf('x11') != -1;
19 if (clientPC.indexOf('opera') != -1) {
20 var is_opera = true;
21 var is_opera_preseven = window.opera && !document.childNodes;
22 var is_opera_seven = window.opera && document.childNodes;
23 var is_opera_95 = /opera\/(9\.[5-9]|[1-9][0-9])/.test( clientPC );
24 var opera6_bugs = is_opera_preseven;
25 var opera7_bugs = is_opera_seven && !is_opera_95;
26 var opera95_bugs = /opera\/(9\.5)/.test( clientPC );
27 }
28
29 // Global external objects used by this script.
30 /*extern ta, stylepath, skin */
31
32 // add any onload functions in this hook (please don't hard-code any events in the xhtml source)
33 var doneOnloadHook;
34
35 if (!window.onloadFuncts) {
36 var onloadFuncts = [];
37 }
38
39 // code that is dependent on js2 functions should use js2AddOnloadHook
40 function addOnloadHook(hookFunct) {
41 // Allows add-on scripts to add onload functions
42 if(!doneOnloadHook) {
43 onloadFuncts[onloadFuncts.length] = hookFunct;
44 } else {
45 hookFunct(); // bug in MSIE script loading
46 }
47 }
48
49
50 function hookEvent(hookName, hookFunct) {
51 addHandler(window, hookName, hookFunct);
52 }
53
54 function importScript(page) {
55 // TODO: might want to introduce a utility function to match wfUrlencode() in PHP
56 var uri = wgScript + '?title=' +
57 encodeURIComponent(page.replace(/ /g,'_')).replace(/%2F/ig,'/').replace(/%3A/ig,':') +
58 '&action=raw&ctype=text/javascript';
59 return importScriptURI(uri);
60 }
61
62 var loadedScripts = {}; // included-scripts tracker
63 function importScriptURI(url) {
64 if (loadedScripts[url]) {
65 return null;
66 }
67 loadedScripts[url] = true;
68 var s = document.createElement('script');
69 s.setAttribute('src',url);
70 s.setAttribute('type','text/javascript');
71 document.getElementsByTagName('head')[0].appendChild(s);
72 return s;
73 }
74
75 function importStylesheet(page) {
76 return importStylesheetURI(wgScript + '?action=raw&ctype=text/css&title=' + encodeURIComponent(page.replace(/ /g,'_')));
77 }
78
79 function importStylesheetURI(url,media) {
80 var l = document.createElement('link');
81 l.type = 'text/css';
82 l.rel = 'stylesheet';
83 l.href = url;
84 if(media) l.media = media
85 document.getElementsByTagName('head')[0].appendChild(l);
86 return l;
87 }
88
89 function appendCSS(text) {
90 var s = document.createElement('style');
91 s.type = 'text/css';
92 s.rel = 'stylesheet';
93 if (s.styleSheet) s.styleSheet.cssText = text //IE
94 else s.appendChild(document.createTextNode(text + '')) //Safari sometimes borks on null
95 document.getElementsByTagName('head')[0].appendChild(s);
96 return s;
97 }
98
99 // special stylesheet links
100 if (typeof stylepath != 'undefined' && typeof skin != 'undefined') {
101 // FIXME: This tries to load the stylesheets even for skins where they
102 // don't exist, i.e., everything but Monobook.
103 if (opera6_bugs) {
104 importStylesheetURI(stylepath+'/'+skin+'/Opera6Fixes.css');
105 } else if (opera7_bugs) {
106 importStylesheetURI(stylepath+'/'+skin+'/Opera7Fixes.css');
107 } else if (opera95_bugs) {
108 importStylesheetURI(stylepath+'/'+skin+'/Opera9Fixes.css');
109 } else if (ff2_bugs) {
110 importStylesheetURI(stylepath+'/'+skin+'/FF2Fixes.css');
111 }
112 }
113
114
115 if (wgBreakFrames) {
116 // Un-trap us from framesets
117 if (window.top != window) {
118 window.top.location = window.location;
119 }
120 }
121
122 function showTocToggle() {
123 if (document.createTextNode) {
124 // Uses DOM calls to avoid document.write + XHTML issues
125
126 var linkHolder = document.getElementById('toctitle');
127 var existingLink = document.getElementById('togglelink');
128 if (!linkHolder || existingLink) {
129 // Don't add the toggle link twice
130 return;
131 }
132
133 var outerSpan = document.createElement('span');
134 outerSpan.className = 'toctoggle';
135
136 var toggleLink = document.createElement('a');
137 toggleLink.id = 'togglelink';
138 toggleLink.className = 'internal';
139 toggleLink.href = 'javascript:toggleToc()';
140 toggleLink.appendChild(document.createTextNode(tocHideText));
141
142 outerSpan.appendChild(document.createTextNode('['));
143 outerSpan.appendChild(toggleLink);
144 outerSpan.appendChild(document.createTextNode(']'));
145
146 linkHolder.appendChild(document.createTextNode(' '));
147 linkHolder.appendChild(outerSpan);
148
149 var cookiePos = document.cookie.indexOf("hidetoc=");
150 if (cookiePos > -1 && document.cookie.charAt(cookiePos + 8) == 1) {
151 toggleToc();
152 }
153 }
154 }
155
156 function changeText(el, newText) {
157 // Safari work around
158 if (el.innerText) {
159 el.innerText = newText;
160 } else if (el.firstChild && el.firstChild.nodeValue) {
161 el.firstChild.nodeValue = newText;
162 }
163 }
164
165 function toggleToc() {
166 var tocmain = document.getElementById('toc');
167 var toc = document.getElementById('toc').getElementsByTagName('ul')[0];
168 var toggleLink = document.getElementById('togglelink');
169
170 if (toc && toggleLink && toc.style.display == 'none') {
171 changeText(toggleLink, tocHideText);
172 toc.style.display = 'block';
173 document.cookie = "hidetoc=0";
174 tocmain.className = 'toc';
175 } else {
176 changeText(toggleLink, tocShowText);
177 toc.style.display = 'none';
178 document.cookie = "hidetoc=1";
179 tocmain.className = 'toc tochidden';
180 }
181 }
182
183 var mwEditButtons = [];
184 var mwCustomEditButtons = []; // eg to add in MediaWiki:Common.js
185
186 function escapeQuotes(text) {
187 var re = new RegExp("'","g");
188 text = text.replace(re,"\\'");
189 re = new RegExp("\\n","g");
190 text = text.replace(re,"\\n");
191 return escapeQuotesHTML(text);
192 }
193
194 function escapeQuotesHTML(text) {
195 var re = new RegExp('&',"g");
196 text = text.replace(re,"&");
197 re = new RegExp('"',"g");
198 text = text.replace(re,""");
199 re = new RegExp('<',"g");
200 text = text.replace(re,"&lt;");
201 re = new RegExp('>',"g");
202 text = text.replace(re,"&gt;");
203 return text;
204 }
205
206
207 /**
208 * Set the accesskey prefix based on browser detection.
209 */
210 var tooltipAccessKeyPrefix = 'alt-';
211 if (is_opera) {
212 tooltipAccessKeyPrefix = 'shift-esc-';
213 } else if (!is_safari_win && is_safari && webkit_version > 526) {
214 tooltipAccessKeyPrefix = 'ctrl-alt-';
215 } else if (!is_safari_win && (is_safari
216 || clientPC.indexOf('mac') != -1
217 || clientPC.indexOf('konqueror') != -1 )) {
218 tooltipAccessKeyPrefix = 'ctrl-';
219 } else if (is_ff2) {
220 tooltipAccessKeyPrefix = 'alt-shift-';
221 }
222 var tooltipAccessKeyRegexp = /\[(ctrl-)?(alt-)?(shift-)?(esc-)?(.)\]$/;
223
224 /**
225 * Add the appropriate prefix to the accesskey shown in the tooltip.
226 * If the nodeList parameter is given, only those nodes are updated;
227 * otherwise, all the nodes that will probably have accesskeys by
228 * default are updated.
229 *
230 * @param Array nodeList -- list of elements to update
231 */
232 function updateTooltipAccessKeys( nodeList ) {
233 if ( !nodeList ) {
234 // Rather than scan all links on the whole page, we can just scan these
235 // containers which contain the relevant links. This is really just an
236 // optimization technique.
237 var linkContainers = [
238 "column-one", // Monobook and Modern
239 "head", "panel", "p-logo" // Vector
240 ];
241 for ( var i in linkContainers ) {
242 var linkContainer = document.getElementById( linkContainers[i] );
243 if ( linkContainer ) {
244 updateTooltipAccessKeys( linkContainer.getElementsByTagName("a") );
245 }
246 }
247 // these are rare enough that no such optimization is needed
248 updateTooltipAccessKeys( document.getElementsByTagName("input") );
249 updateTooltipAccessKeys( document.getElementsByTagName("label") );
250 return;
251 }
252
253 for ( var i = 0; i < nodeList.length; i++ ) {
254 var element = nodeList[i];
255 var tip = element.getAttribute("title");
256 if ( tip && tooltipAccessKeyRegexp.exec(tip) ) {
257 tip = tip.replace(tooltipAccessKeyRegexp,
258 "["+tooltipAccessKeyPrefix+"$5]");
259 element.setAttribute("title", tip );
260 }
261 }
262 }
263
264 /**
265 * Add a link to one of the portlet menus on the page, including:
266 *
267 * p-cactions: Content actions (shown as tabs above the main content in Monobook)
268 * p-personal: Personal tools (shown at the top right of the page in Monobook)
269 * p-navigation: Navigation
270 * p-tb: Toolbox
271 *
272 * This function exists for the convenience of custom JS authors. All
273 * but the first three parameters are optional, though providing at
274 * least an id and a tooltip is recommended.
275 *
276 * By default the new link will be added to the end of the list. To
277 * add the link before a given existing item, pass the DOM node of
278 * that item (easily obtained with document.getElementById()) as the
279 * nextnode parameter; to add the link _after_ an existing item, pass
280 * the node's nextSibling instead.
281 *
282 * @param String portlet -- id of the target portlet ("p-cactions", "p-personal", "p-navigation" or "p-tb")
283 * @param String href -- link URL
284 * @param String text -- link text (will be automatically lowercased by CSS for p-cactions in Monobook)
285 * @param String id -- id of the new item, should be unique and preferably have the appropriate prefix ("ca-", "pt-", "n-" or "t-")
286 * @param String tooltip -- text to show when hovering over the link, without accesskey suffix
287 * @param String accesskey -- accesskey to activate this link (one character, try to avoid conflicts)
288 * @param Node nextnode -- the DOM node before which the new item should be added, should be another item in the same list
289 *
290 * @return Node -- the DOM node of the new item (an LI element) or null
291 */
292 function addPortletLink(portlet, href, text, id, tooltip, accesskey, nextnode) {
293 var root = document.getElementById(portlet);
294 if ( !root ) return null;
295 var node = root.getElementsByTagName( "ul" )[0];
296 if ( !node ) return null;
297
298 // unhide portlet if it was hidden before
299 root.className = root.className.replace( /(^| )emptyPortlet( |$)/, "$2" );
300
301 var span = document.createElement( "span" );
302 span.appendChild( document.createTextNode( text ) );
303
304 var link = document.createElement( "a" );
305 link.appendChild( span );
306 link.href = href;
307
308 var item = document.createElement( "li" );
309 item.appendChild( link );
310 if ( id ) item.id = id;
311
312 if ( accesskey ) {
313 link.setAttribute( "accesskey", accesskey );
314 tooltip += " ["+accesskey+"]";
315 }
316 if ( tooltip ) {
317 link.setAttribute( "title", tooltip );
318 }
319 if ( accesskey && tooltip ) {
320 updateTooltipAccessKeys( new Array( link ) );
321 }
322
323 if ( nextnode && nextnode.parentNode == node )
324 node.insertBefore( item, nextnode );
325 else
326 node.appendChild( item ); // IE compatibility (?)
327
328 return item;
329 }
330
331 function getInnerText(el) {
332 if (typeof el == "string") return el;
333 if (typeof el == "undefined") { return el };
334 if (el.textContent) return el.textContent; // not needed but it is faster
335 if (el.innerText) return el.innerText; // IE doesn't have textContent
336 var str = "";
337
338 var cs = el.childNodes;
339 var l = cs.length;
340 for (var i = 0; i < l; i++) {
341 switch (cs[i].nodeType) {
342 case 1: //ELEMENT_NODE
343 str += ts_getInnerText(cs[i]);
344 break;
345 case 3: //TEXT_NODE
346 str += cs[i].nodeValue;
347 break;
348 }
349 }
350 return str;
351 }
352
353
354 /**
355 * Set up accesskeys/tooltips from the deprecated ta array. If doId
356 * is specified, only set up for that id. Note that this function is
357 * deprecated and will not be supported indefinitely -- use
358 * updateTooltipAccessKey() instead.
359 *
360 * @param mixed doId string or null
361 */
362 function akeytt( doId ) {
363 // A lot of user scripts (and some of the code below) break if
364 // ta isn't defined, so we make sure it is. Explictly using
365 // window.ta avoids a "ta is not defined" error.
366 if (!window.ta) window.ta = new Array;
367
368 // Make a local, possibly restricted, copy to avoid clobbering
369 // the original.
370 var ta;
371 if ( doId ) {
372 ta = [doId];
373 } else {
374 ta = window.ta;
375 }
376
377 // Now deal with evil deprecated ta
378 var watchCheckboxExists = document.getElementById( 'wpWatchthis' ) ? true : false;
379 for (var id in ta) {
380 var n = document.getElementById(id);
381 if (n) {
382 var a = null;
383 var ak = '';
384 // Are we putting accesskey in it
385 if (ta[id][0].length > 0) {
386 // Is this object a object? If not assume it's the next child.
387
388 if (n.nodeName.toLowerCase() == "a") {
389 a = n;
390 } else {
391 a = n.childNodes[0];
392 }
393 // Don't add an accesskey for the watch tab if the watch
394 // checkbox is also available.
395 if (a && ((id != 'ca-watch' && id != 'ca-unwatch') || !watchCheckboxExists)) {
396 a.accessKey = ta[id][0];
397 ak = ' ['+tooltipAccessKeyPrefix+ta[id][0]+']';
398 }
399 } else {
400 // We don't care what type the object is when assigning tooltip
401 a = n;
402 ak = '';
403 }
404
405 if (a) {
406 a.title = ta[id][1]+ak;
407 }
408 }
409 }
410 }
411
412 var checkboxes;
413 var lastCheckbox;
414
415 function setupCheckboxShiftClick() {
416 checkboxes = [];
417 lastCheckbox = null;
418 var inputs = document.getElementsByTagName('input');
419 addCheckboxClickHandlers(inputs);
420 }
421
422 function addCheckboxClickHandlers(inputs, start) {
423 if ( !start) start = 0;
424
425 var finish = start + 250;
426 if ( finish > inputs.length )
427 finish = inputs.length;
428
429 for ( var i = start; i < finish; i++ ) {
430 var cb = inputs[i];
431 if ( !cb.type || cb.type.toLowerCase() != 'checkbox' )
432 continue;
433 var end = checkboxes.length;
434 checkboxes[end] = cb;
435 cb.index = end;
436 cb.onclick = checkboxClickHandler;
437 }
438
439 if ( finish < inputs.length ) {
440 setTimeout( function () {
441 addCheckboxClickHandlers(inputs, finish);
442 }, 200 );
443 }
444 }
445
446 function checkboxClickHandler(e) {
447 if (typeof e == 'undefined') {
448 e = window.event;
449 }
450 if ( !e.shiftKey || lastCheckbox === null ) {
451 lastCheckbox = this.index;
452 return true;
453 }
454 var endState = this.checked;
455 var start, finish;
456 if ( this.index < lastCheckbox ) {
457 start = this.index + 1;
458 finish = lastCheckbox;
459 } else {
460 start = lastCheckbox;
461 finish = this.index - 1;
462 }
463 for (var i = start; i <= finish; ++i ) {
464 checkboxes[i].checked = endState;
465 if( i > start && typeof checkboxes[i].onchange == 'function' )
466 checkboxes[i].onchange(); // fire triggers
467 }
468 lastCheckbox = this.index;
469 return true;
470 }
471
472
473 /*
474 Written by Jonathan Snook, http://www.snook.ca/jonathan
475 Add-ons by Robert Nyman, http://www.robertnyman.com
476 Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
477 From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
478 */
479 function getElementsByClassName(oElm, strTagName, oClassNames){
480 var arrReturnElements = new Array();
481 if ( typeof( oElm.getElementsByClassName ) == "function" ) {
482 /* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
483 var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
484 if ( strTagName == "*" )
485 return arrNativeReturn;
486 for ( var h=0; h < arrNativeReturn.length; h++ ) {
487 if( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() )
488 arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
489 }
490 return arrReturnElements;
491 }
492 var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
493 var arrRegExpClassNames = new Array();
494 if(typeof oClassNames == "object"){
495 for(var i=0; i<oClassNames.length; i++){
496 arrRegExpClassNames[arrRegExpClassNames.length] =
497 new RegExp("(^|\\s)" + oClassNames[i].replace(/\-/g, "\\-") + "(\\s|$)");
498 }
499 }
500 else{
501 arrRegExpClassNames[arrRegExpClassNames.length] =
502 new RegExp("(^|\\s)" + oClassNames.replace(/\-/g, "\\-") + "(\\s|$)");
503 }
504 var oElement;
505 var bMatchesAll;
506 for(var j=0; j<arrElements.length; j++){
507 oElement = arrElements[j];
508 bMatchesAll = true;
509 for(var k=0; k<arrRegExpClassNames.length; k++){
510 if(!arrRegExpClassNames[k].test(oElement.className)){
511 bMatchesAll = false;
512 break;
513 }
514 }
515 if(bMatchesAll){
516 arrReturnElements[arrReturnElements.length] = oElement;
517 }
518 }
519 return (arrReturnElements)
520 }
521
522 function redirectToFragment(fragment) {
523 var match = navigator.userAgent.match(/AppleWebKit\/(\d+)/);
524 if (match) {
525 var webKitVersion = parseInt(match[1]);
526 if (webKitVersion < 420) {
527 // Released Safari w/ WebKit 418.9.1 messes up horribly
528 // Nightlies of 420+ are ok
529 return;
530 }
531 }
532 if (is_gecko) {
533 // Mozilla needs to wait until after load, otherwise the window doesn't scroll
534 addOnloadHook(function () {
535 if (window.location.hash == "")
536 window.location.hash = fragment;
537 });
538 } else {
539 if (window.location.hash == "")
540 window.location.hash = fragment;
541 }
542 }
543
544 /*
545 * Table sorting script based on one (c) 1997-2006 Stuart Langridge and Joost
546 * de Valk:
547 * http://www.joostdevalk.nl/code/sortable-table/
548 * http://www.kryogenix.org/code/browser/sorttable/
549 *
550 * @todo don't break on colspans/rowspans (bug 8028)
551 * @todo language-specific digit grouping/decimals (bug 8063)
552 * @todo support all accepted date formats (bug 8226)
553 */
554
555 var ts_image_path = stylepath+"/common/images/";
556 var ts_image_up = "sort_up.gif";
557 var ts_image_down = "sort_down.gif";
558 var ts_image_none = "sort_none.gif";
559 var ts_europeandate = wgContentLanguage != "en"; // The non-American-inclined can change to "true"
560 var ts_alternate_row_colors = false;
561 var ts_number_transform_table = null;
562 var ts_number_regex = null;
563
564 function sortables_init() {
565 var idnum = 0;
566 // Find all tables with class sortable and make them sortable
567 var tables = getElementsByClassName(document, "table", "sortable");
568 for (var ti = 0; ti < tables.length ; ti++) {
569 if (!tables[ti].id) {
570 tables[ti].setAttribute('id','sortable_table_id_'+idnum);
571 ++idnum;
572 }
573 ts_makeSortable(tables[ti]);
574 }
575 }
576
577 function ts_makeSortable(table) {
578 var firstRow;
579 if (table.rows && table.rows.length > 0) {
580 if (table.tHead && table.tHead.rows.length > 0) {
581 firstRow = table.tHead.rows[table.tHead.rows.length-1];
582 } else {
583 firstRow = table.rows[0];
584 }
585 }
586 if (!firstRow) return;
587
588 // We have a first row: assume it's the header, and make its contents clickable links
589 for (var i = 0; i < firstRow.cells.length; i++) {
590 var cell = firstRow.cells[i];
591 if ((" "+cell.className+" ").indexOf(" unsortable ") == -1) {
592 cell.innerHTML += '&nbsp;&nbsp;'
593 + '<a href="#" class="sortheader" '
594 + 'onclick="ts_resortTable(this);return false;">'
595 + '<span class="sortarrow">'
596 + '<img src="'
597 + ts_image_path
598 + ts_image_none
599 + '" alt="&darr;"/></span></a>';
600 }
601 }
602 if (ts_alternate_row_colors) {
603 ts_alternate(table);
604 }
605 }
606
607 function ts_getInnerText(el) {
608 return getInnerText( el );
609 }
610
611 function ts_resortTable(lnk) {
612 // get the span
613 var span = lnk.getElementsByTagName('span')[0];
614
615 var td = lnk.parentNode;
616 var tr = td.parentNode;
617 var column = td.cellIndex;
618
619 var table = tr.parentNode;
620 while (table && !(table.tagName && table.tagName.toLowerCase() == 'table'))
621 table = table.parentNode;
622 if (!table) return;
623
624 if (table.rows.length <= 1) return;
625
626 // Generate the number transform table if it's not done already
627 if (ts_number_transform_table == null) {
628 ts_initTransformTable();
629 }
630
631 // Work out a type for the column
632 // Skip the first row if that's where the headings are
633 var rowStart = (table.tHead && table.tHead.rows.length > 0 ? 0 : 1);
634
635 var itm = "";
636 for (var i = rowStart; i < table.rows.length; i++) {
637 if (table.rows[i].cells.length > column) {
638 itm = ts_getInnerText(table.rows[i].cells[column]);
639 itm = itm.replace(/^[\s\xa0]+/, "").replace(/[\s\xa0]+$/, "");
640 if (itm != "") break;
641 }
642 }
643
644 // TODO: bug 8226, localised date formats
645 var sortfn = ts_sort_generic;
646 var preprocessor = ts_toLowerCase;
647 if (/^\d\d[\/. -][a-zA-Z]{3}[\/. -]\d\d\d\d$/.test(itm)) {
648 preprocessor = ts_dateToSortKey;
649 } else if (/^\d\d[\/.-]\d\d[\/.-]\d\d\d\d$/.test(itm)) {
650 preprocessor = ts_dateToSortKey;
651 } else if (/^\d\d[\/.-]\d\d[\/.-]\d\d$/.test(itm)) {
652 preprocessor = ts_dateToSortKey;
653 // pound dollar euro yen currency cents
654 } else if (/(^[\u00a3$\u20ac\u00a4\u00a5]|\u00a2$)/.test(itm)) {
655 preprocessor = ts_currencyToSortKey;
656 } else if (ts_number_regex.test(itm)) {
657 preprocessor = ts_parseFloat;
658 }
659
660 var reverse = (span.getAttribute("sortdir") == 'down');
661
662 var newRows = new Array();
663 var staticRows = new Array();
664 for (var j = rowStart; j < table.rows.length; j++) {
665 var row = table.rows[j];
666 if((" "+row.className+" ").indexOf(" unsortable ") < 0) {
667 var keyText = ts_getInnerText(row.cells[column]);
668 if(keyText == undefined) {
669 keyText = "";
670 }
671 var oldIndex = (reverse ? -j : j);
672 var preprocessed = preprocessor( keyText.replace(/^[\s\xa0]+/, "").replace(/[\s\xa0]+$/, "") );
673
674 newRows[newRows.length] = new Array(row, preprocessed, oldIndex);
675 } else staticRows[staticRows.length] = new Array(row, false, j-rowStart);
676 }
677
678 newRows.sort(sortfn);
679
680 var arrowHTML;
681 if (reverse) {
682 arrowHTML = '<img src="'+ ts_image_path + ts_image_down + '" alt="&darr;"/>';
683 newRows.reverse();
684 span.setAttribute('sortdir','up');
685 } else {
686 arrowHTML = '<img src="'+ ts_image_path + ts_image_up + '" alt="&uarr;"/>';
687 span.setAttribute('sortdir','down');
688 }
689
690 for (var i = 0; i < staticRows.length; i++) {
691 var row = staticRows[i];
692 newRows.splice(row[2], 0, row);
693 }
694
695 // We appendChild rows that already exist to the tbody, so it moves them rather than creating new ones
696 // don't do sortbottom rows
697 for (var i = 0; i < newRows.length; i++) {
698 if ((" "+newRows[i][0].className+" ").indexOf(" sortbottom ") == -1)
699 table.tBodies[0].appendChild(newRows[i][0]);
700 }
701 // do sortbottom rows only
702 for (var i = 0; i < newRows.length; i++) {
703 if ((" "+newRows[i][0].className+" ").indexOf(" sortbottom ") != -1)
704 table.tBodies[0].appendChild(newRows[i][0]);
705 }
706
707 // Delete any other arrows there may be showing
708 var spans = getElementsByClassName(tr, "span", "sortarrow");
709 for (var i = 0; i < spans.length; i++) {
710 spans[i].innerHTML = '<img src="'+ ts_image_path + ts_image_none + '" alt="&darr;"/>';
711 }
712 span.innerHTML = arrowHTML;
713
714 if (ts_alternate_row_colors) {
715 ts_alternate(table);
716 }
717 }
718
719 function ts_initTransformTable() {
720 if ( typeof wgSeparatorTransformTable == "undefined"
721 || ( wgSeparatorTransformTable[0] == '' && wgDigitTransformTable[2] == '' ) )
722 {
723 digitClass = "[0-9,.]";
724 ts_number_transform_table = false;
725 } else {
726 ts_number_transform_table = {};
727 // Unpack the transform table
728 // Separators
729 ascii = wgSeparatorTransformTable[0].split("\t");
730 localised = wgSeparatorTransformTable[1].split("\t");
731 for ( var i = 0; i < ascii.length; i++ ) {
732 ts_number_transform_table[localised[i]] = ascii[i];
733 }
734 // Digits
735 ascii = wgDigitTransformTable[0].split("\t");
736 localised = wgDigitTransformTable[1].split("\t");
737 for ( var i = 0; i < ascii.length; i++ ) {
738 ts_number_transform_table[localised[i]] = ascii[i];
739 }
740
741 // Construct regex for number identification
742 digits = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ',', '\\.'];
743 maxDigitLength = 1;
744 for ( var digit in ts_number_transform_table ) {
745 // Escape regex metacharacters
746 digits.push(
747 digit.replace( /[\\\\$\*\+\?\.\(\)\|\{\}\[\]\-]/,
748 function( s ) { return '\\' + s; } )
749 );
750 if (digit.length > maxDigitLength) {
751 maxDigitLength = digit.length;
752 }
753 }
754 if ( maxDigitLength > 1 ) {
755 digitClass = '[' + digits.join( '', digits ) + ']';
756 } else {
757 digitClass = '(' + digits.join( '|', digits ) + ')';
758 }
759 }
760
761 // We allow a trailing percent sign, which we just strip. This works fine
762 // if percents and regular numbers aren't being mixed.
763 ts_number_regex = new RegExp(
764 "^(" +
765 "[+-]?[0-9][0-9,]*(\\.[0-9,]*)?(E[+-]?[0-9][0-9,]*)?" + // Fortran-style scientific
766 "|" +
767 "[+-]?" + digitClass + "+%?" + // Generic localised
768 ")$", "i"
769 );
770 }
771
772 function ts_toLowerCase( s ) {
773 return s.toLowerCase();
774 }
775
776 function ts_dateToSortKey(date) {
777 // y2k notes: two digit years less than 50 are treated as 20XX, greater than 50 are treated as 19XX
778 if (date.length == 11) {
779 switch (date.substr(3,3).toLowerCase()) {
780 case "jan": var month = "01"; break;
781 case "feb": var month = "02"; break;
782 case "mar": var month = "03"; break;
783 case "apr": var month = "04"; break;
784 case "may": var month = "05"; break;
785 case "jun": var month = "06"; break;
786 case "jul": var month = "07"; break;
787 case "aug": var month = "08"; break;
788 case "sep": var month = "09"; break;
789 case "oct": var month = "10"; break;
790 case "nov": var month = "11"; break;
791 case "dec": var month = "12"; break;
792 // default: var month = "00";
793 }
794 return date.substr(7,4)+month+date.substr(0,2);
795 } else if (date.length == 10) {
796 if (ts_europeandate == false) {
797 return date.substr(6,4)+date.substr(0,2)+date.substr(3,2);
798 } else {
799 return date.substr(6,4)+date.substr(3,2)+date.substr(0,2);
800 }
801 } else if (date.length == 8) {
802 yr = date.substr(6,2);
803 if (parseInt(yr) < 50) {
804 yr = '20'+yr;
805 } else {
806 yr = '19'+yr;
807 }
808 if (ts_europeandate == true) {
809 return yr+date.substr(3,2)+date.substr(0,2);
810 } else {
811 return yr+date.substr(0,2)+date.substr(3,2);
812 }
813 }
814 return "00000000";
815 }
816
817 function ts_parseFloat( s ) {
818 if ( !s ) {
819 return 0;
820 }
821 if (ts_number_transform_table != false) {
822 var newNum = '', c;
823
824 for ( var p = 0; p < s.length; p++ ) {
825 c = s.charAt( p );
826 if (c in ts_number_transform_table) {
827 newNum += ts_number_transform_table[c];
828 } else {
829 newNum += c;
830 }
831 }
832 s = newNum;
833 }
834
835 num = parseFloat(s.replace(/,/g, ""));
836 return (isNaN(num) ? 0 : num);
837 }
838
839 function ts_currencyToSortKey( s ) {
840 return ts_parseFloat(s.replace(/[^0-9.,]/g,''));
841 }
842
843 function ts_sort_generic(a, b) {
844 return a[1] < b[1] ? -1 : a[1] > b[1] ? 1 : a[2] - b[2];
845 }
846
847 function ts_alternate(table) {
848 // Take object table and get all it's tbodies.
849 var tableBodies = table.getElementsByTagName("tbody");
850 // Loop through these tbodies
851 for (var i = 0; i < tableBodies.length; i++) {
852 // Take the tbody, and get all it's rows
853 var tableRows = tableBodies[i].getElementsByTagName("tr");
854 // Loop through these rows
855 // Start at 1 because we want to leave the heading row untouched
856 for (var j = 0; j < tableRows.length; j++) {
857 // Check if j is even, and apply classes for both possible results
858 var oldClasses = tableRows[j].className.split(" ");
859 var newClassName = "";
860 for (var k = 0; k < oldClasses.length; k++) {
861 if (oldClasses[k] != "" && oldClasses[k] != "even" && oldClasses[k] != "odd")
862 newClassName += oldClasses[k] + " ";
863 }
864 tableRows[j].className = newClassName + (j % 2 == 0 ? "even" : "odd");
865 }
866 }
867 }
868
869 /*
870 * End of table sorting code
871 */
872
873
874 /**
875 * Add a cute little box at the top of the screen to inform the user of
876 * something, replacing any preexisting message.
877 *
878 * @param String -or- Dom Object message HTML to be put inside the right div
879 * @param String className Used in adding a class; should be different for each
880 * call to allow CSS/JS to hide different boxes. null = no class used.
881 * @return Boolean True on success, false on failure
882 */
883 function jsMsg( message, className ) {
884 if ( !document.getElementById ) {
885 return false;
886 }
887 // We special-case skin structures provided by the software. Skins that
888 // choose to abandon or significantly modify our formatting can just define
889 // an mw-js-message div to start with.
890 var messageDiv = document.getElementById( 'mw-js-message' );
891 if ( !messageDiv ) {
892 messageDiv = document.createElement( 'div' );
893 if ( document.getElementById( 'column-content' )
894 && document.getElementById( 'content' ) ) {
895 // MonoBook, presumably
896 document.getElementById( 'content' ).insertBefore(
897 messageDiv,
898 document.getElementById( 'content' ).firstChild
899 );
900 } else if ( document.getElementById('content')
901 && document.getElementById( 'article' ) ) {
902 // Non-Monobook but still recognizable (old-style)
903 document.getElementById( 'article').insertBefore(
904 messageDiv,
905 document.getElementById( 'article' ).firstChild
906 );
907 } else {
908 return false;
909 }
910 }
911
912 messageDiv.setAttribute( 'id', 'mw-js-message' );
913 messageDiv.style.display = 'block';
914 if( className ) {
915 messageDiv.setAttribute( 'class', 'mw-js-message-'+className );
916 }
917
918 if (typeof message === 'object') {
919 while (messageDiv.hasChildNodes()) // Remove old content
920 messageDiv.removeChild(messageDiv.firstChild);
921 messageDiv.appendChild (message); // Append new content
922 }
923 else {
924 messageDiv.innerHTML = message;
925 }
926 return true;
927 }
928
929 /**
930 * Inject a cute little progress spinner after the specified element
931 *
932 * @param element Element to inject after
933 * @param id Identifier string (for use with removeSpinner(), below)
934 */
935 function injectSpinner( element, id ) {
936 var spinner = document.createElement( "img" );
937 spinner.id = "mw-spinner-" + id;
938 spinner.src = stylepath + "/common/images/spinner.gif";
939 spinner.alt = spinner.title = "...";
940 if( element.nextSibling ) {
941 element.parentNode.insertBefore( spinner, element.nextSibling );
942 } else {
943 element.parentNode.appendChild( spinner );
944 }
945 }
946
947 /**
948 * Remove a progress spinner added with injectSpinner()
949 *
950 * @param id Identifier string
951 */
952 function removeSpinner( id ) {
953 var spinner = document.getElementById( "mw-spinner-" + id );
954 if( spinner ) {
955 spinner.parentNode.removeChild( spinner );
956 }
957 }
958
959 function runOnloadHook() {
960 // don't run anything below this for non-dom browsers
961 if (doneOnloadHook || !(document.getElementById && document.getElementsByTagName)) {
962 return;
963 }
964
965 // set this before running any hooks, since any errors below
966 // might cause the function to terminate prematurely
967 doneOnloadHook = true;
968
969 updateTooltipAccessKeys( null );
970 akeytt( null );
971 setupCheckboxShiftClick();
972 sortables_init();
973
974 // Run any added-on functions
975 for (var i = 0; i < onloadFuncts.length; i++) {
976 onloadFuncts[i]();
977 }
978 }
979
980 /**
981 * Add an event handler to an element
982 *
983 * @param Element element Element to add handler to
984 * @param String attach Event to attach to
985 * @param callable handler Event handler callback
986 */
987 function addHandler( element, attach, handler ) {
988 if( window.addEventListener ) {
989 element.addEventListener( attach, handler, false );
990 } else if( window.attachEvent ) {
991 element.attachEvent( 'on' + attach, handler );
992 }
993 }
994
995 /**
996 * Add a click event handler to an element
997 *
998 * @param Element element Element to add handler to
999 * @param callable handler Event handler callback
1000 */
1001 function addClickHandler( element, handler ) {
1002 addHandler( element, 'click', handler );
1003 }
1004
1005 /**
1006 * Removes an event handler from an element
1007 *
1008 * @param Element element Element to remove handler from
1009 * @param String remove Event to remove
1010 * @param callable handler Event handler callback to remove
1011 */
1012 function removeHandler( element, remove, handler ) {
1013 if( window.removeEventListener ) {
1014 element.removeEventListener( remove, handler, false );
1015 } else if( window.detachEvent ) {
1016 element.detachEvent( 'on' + remove, handler );
1017 }
1018 }
1019 //note: all skins should call runOnloadHook() at the end of html output,
1020 // so the below should be redundant. It's there just in case.
1021 hookEvent("load", runOnloadHook);