Fix #6684: Improper javascript array iteration causes problems
[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 = ((clientPC.indexOf('gecko')!=-1) && (clientPC.indexOf('spoofer')==-1)
5 && (clientPC.indexOf('khtml') == -1) && (clientPC.indexOf('netscape/7.0')==-1));
6 var is_safari = ((clientPC.indexOf('applewebkit')!=-1) && (clientPC.indexOf('spoofer')==-1));
7 var is_khtml = (navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ));
8 // For accesskeys
9 var is_ff2_win = (clientPC.indexOf('firefox/2')!=-1 || clientPC.indexOf('minefield/3')!=-1) && clientPC.indexOf('windows')!=-1;
10 var is_ff2_x11 = (clientPC.indexOf('firefox/2')!=-1 || clientPC.indexOf('minefield/3')!=-1) && clientPC.indexOf('x11')!=-1;
11 if (clientPC.indexOf('opera') != -1) {
12 var is_opera = true;
13 var is_opera_preseven = (window.opera && !document.childNodes);
14 var is_opera_seven = (window.opera && document.childNodes);
15 }
16
17 // Global external objects used by this script.
18 /*extern ta, stylepath, skin */
19
20 // add any onload functions in this hook (please don't hard-code any events in the xhtml source)
21 var doneOnloadHook;
22
23 if (!window.onloadFuncts) {
24 var onloadFuncts = [];
25 }
26
27 function addOnloadHook(hookFunct) {
28 // Allows add-on scripts to add onload functions
29 onloadFuncts[onloadFuncts.length] = hookFunct;
30 }
31
32 function hookEvent(hookName, hookFunct) {
33 if (window.addEventListener) {
34 window.addEventListener(hookName, hookFunct, false);
35 } else if (window.attachEvent) {
36 window.attachEvent("on" + hookName, hookFunct);
37 }
38 }
39
40 // document.write special stylesheet links
41 if (typeof stylepath != 'undefined' && typeof skin != 'undefined') {
42 if (is_opera_preseven) {
43 document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/Opera6Fixes.css">');
44 } else if (is_opera_seven) {
45 document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/Opera7Fixes.css">');
46 } else if (is_khtml) {
47 document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/KHTMLFixes.css">');
48 }
49 }
50
51 if (wgBreakFrames) {
52 // Un-trap us from framesets
53 if (window.top != window) {
54 window.top.location = window.location;
55 }
56 }
57
58 // for enhanced RecentChanges
59 function toggleVisibility(_levelId, _otherId, _linkId) {
60 var thisLevel = document.getElementById(_levelId);
61 var otherLevel = document.getElementById(_otherId);
62 var linkLevel = document.getElementById(_linkId);
63 if (thisLevel.style.display == 'none') {
64 thisLevel.style.display = 'block';
65 otherLevel.style.display = 'none';
66 linkLevel.style.display = 'inline';
67 } else {
68 thisLevel.style.display = 'none';
69 otherLevel.style.display = 'inline';
70 linkLevel.style.display = 'none';
71 }
72 }
73
74 function historyRadios(parent) {
75 var inputs = parent.getElementsByTagName('input');
76 var radios = [];
77 for (var i = 0; i < inputs.length; i++) {
78 if (inputs[i].name == "diff" || inputs[i].name == "oldid") {
79 radios[radios.length] = inputs[i];
80 }
81 }
82 return radios;
83 }
84
85 // check selection and tweak visibility/class onclick
86 function diffcheck() {
87 var dli = false; // the li where the diff radio is checked
88 var oli = false; // the li where the oldid radio is checked
89 var hf = document.getElementById('pagehistory');
90 if (!hf) {
91 return true;
92 }
93 var lis = hf.getElementsByTagName('li');
94 for (var i=0;i<lis.length;i++) {
95 var inputs = historyRadios(lis[i]);
96 if (inputs[1] && inputs[0]) {
97 if (inputs[1].checked || inputs[0].checked) { // this row has a checked radio button
98 if (inputs[1].checked && inputs[0].checked && inputs[0].value == inputs[1].value) {
99 return false;
100 }
101 if (oli) { // it's the second checked radio
102 if (inputs[1].checked) {
103 oli.className = "selected";
104 return false;
105 }
106 } else if (inputs[0].checked) {
107 return false;
108 }
109 if (inputs[0].checked) {
110 dli = lis[i];
111 }
112 if (!oli) {
113 inputs[0].style.visibility = 'hidden';
114 }
115 if (dli) {
116 inputs[1].style.visibility = 'hidden';
117 }
118 lis[i].className = "selected";
119 oli = lis[i];
120 } else { // no radio is checked in this row
121 if (!oli) {
122 inputs[0].style.visibility = 'hidden';
123 } else {
124 inputs[0].style.visibility = 'visible';
125 }
126 if (dli) {
127 inputs[1].style.visibility = 'hidden';
128 } else {
129 inputs[1].style.visibility = 'visible';
130 }
131 lis[i].className = "";
132 }
133 }
134 }
135 return true;
136 }
137
138 // page history stuff
139 // attach event handlers to the input elements on history page
140 function histrowinit() {
141 var hf = document.getElementById('pagehistory');
142 if (!hf) {
143 return;
144 }
145 var lis = hf.getElementsByTagName('li');
146 for (var i = 0; i < lis.length; i++) {
147 var inputs = historyRadios(lis[i]);
148 if (inputs[0] && inputs[1]) {
149 inputs[0].onclick = diffcheck;
150 inputs[1].onclick = diffcheck;
151 }
152 }
153 diffcheck();
154 }
155
156 // generate toc from prefs form, fold sections
157 // XXX: needs testing on IE/Mac and safari
158 // more comments to follow
159 function tabbedprefs() {
160 var prefform = document.getElementById('preferences');
161 if (!prefform || !document.createElement) {
162 return;
163 }
164 if (prefform.nodeName.toLowerCase() == 'a') {
165 return; // Occasional IE problem
166 }
167 prefform.className = prefform.className + 'jsprefs';
168 var sections = [];
169 var children = prefform.childNodes;
170 var seci = 0;
171 for (var i = 0; i < children.length; i++) {
172 if (children[i].nodeName.toLowerCase() == 'fieldset') {
173 children[i].id = 'prefsection-' + seci;
174 children[i].className = 'prefsection';
175 if (is_opera || is_khtml) {
176 children[i].className = 'prefsection operaprefsection';
177 }
178 var legends = children[i].getElementsByTagName('legend');
179 sections[seci] = {};
180 legends[0].className = 'mainLegend';
181 if (legends[0] && legends[0].firstChild.nodeValue) {
182 sections[seci].text = legends[0].firstChild.nodeValue;
183 } else {
184 sections[seci].text = '# ' + seci;
185 }
186 sections[seci].secid = children[i].id;
187 seci++;
188 if (sections.length != 1) {
189 children[i].style.display = 'none';
190 } else {
191 var selectedid = children[i].id;
192 }
193 }
194 }
195 var toc = document.createElement('ul');
196 toc.id = 'preftoc';
197 toc.selectedid = selectedid;
198 for (i = 0; i < sections.length; i++) {
199 var li = document.createElement('li');
200 if (i === 0) {
201 li.className = 'selected';
202 }
203 var a = document.createElement('a');
204 a.href = '#' + sections[i].secid;
205 a.onmousedown = a.onclick = uncoversection;
206 a.appendChild(document.createTextNode(sections[i].text));
207 a.secid = sections[i].secid;
208 li.appendChild(a);
209 toc.appendChild(li);
210 }
211 prefform.parentNode.insertBefore(toc, prefform.parentNode.childNodes[0]);
212 document.getElementById('prefsubmit').id = 'prefcontrol';
213 }
214
215 function uncoversection() {
216 var oldsecid = this.parentNode.parentNode.selectedid;
217 var newsec = document.getElementById(this.secid);
218 if (oldsecid != this.secid) {
219 var ul = document.getElementById('preftoc');
220 document.getElementById(oldsecid).style.display = 'none';
221 newsec.style.display = 'block';
222 ul.selectedid = this.secid;
223 var lis = ul.getElementsByTagName('li');
224 for (var i = 0; i< lis.length; i++) {
225 lis[i].className = '';
226 }
227 this.parentNode.className = 'selected';
228 }
229 return false;
230 }
231
232 // Timezone stuff
233 // tz in format [+-]HHMM
234 function checkTimezone(tz, msg) {
235 var localclock = new Date();
236 // returns negative offset from GMT in minutes
237 var tzRaw = localclock.getTimezoneOffset();
238 var tzHour = Math.floor( Math.abs(tzRaw) / 60);
239 var tzMin = Math.abs(tzRaw) % 60;
240 var tzString = ((tzRaw >= 0) ? "-" : "+") + ((tzHour < 10) ? "0" : "") + tzHour + ((tzMin < 10) ? "0" : "") + tzMin;
241 if (tz != tzString) {
242 var junk = msg.split('$1');
243 document.write(junk[0] + "UTC" + tzString + junk[1]);
244 }
245 }
246
247 function unhidetzbutton() {
248 var tzb = document.getElementById('guesstimezonebutton');
249 if (tzb) {
250 tzb.style.display = 'inline';
251 }
252 }
253
254 // in [-]HH:MM format...
255 // won't yet work with non-even tzs
256 function fetchTimezone() {
257 // FIXME: work around Safari bug
258 var localclock = new Date();
259 // returns negative offset from GMT in minutes
260 var tzRaw = localclock.getTimezoneOffset();
261 var tzHour = Math.floor( Math.abs(tzRaw) / 60);
262 var tzMin = Math.abs(tzRaw) % 60;
263 var tzString = ((tzRaw >= 0) ? "-" : "") + ((tzHour < 10) ? "0" : "") + tzHour +
264 ":" + ((tzMin < 10) ? "0" : "") + tzMin;
265 return tzString;
266 }
267
268 function guessTimezone(box) {
269 document.getElementsByName("wpHourDiff")[0].value = fetchTimezone();
270 }
271
272 function showTocToggle() {
273 if (document.createTextNode) {
274 // Uses DOM calls to avoid document.write + XHTML issues
275
276 var linkHolder = document.getElementById('toctitle');
277 if (!linkHolder) {
278 return;
279 }
280
281 var outerSpan = document.createElement('span');
282 outerSpan.className = 'toctoggle';
283
284 var toggleLink = document.createElement('a');
285 toggleLink.id = 'togglelink';
286 toggleLink.className = 'internal';
287 toggleLink.href = 'javascript:toggleToc()';
288 toggleLink.appendChild(document.createTextNode(tocHideText));
289
290 outerSpan.appendChild(document.createTextNode('['));
291 outerSpan.appendChild(toggleLink);
292 outerSpan.appendChild(document.createTextNode(']'));
293
294 linkHolder.appendChild(document.createTextNode(' '));
295 linkHolder.appendChild(outerSpan);
296
297 var cookiePos = document.cookie.indexOf("hidetoc=");
298 if (cookiePos > -1 && document.cookie.charAt(cookiePos + 8) == 1) {
299 toggleToc();
300 }
301 }
302 }
303
304 function changeText(el, newText) {
305 // Safari work around
306 if (el.innerText) {
307 el.innerText = newText;
308 } else if (el.firstChild && el.firstChild.nodeValue) {
309 el.firstChild.nodeValue = newText;
310 }
311 }
312
313 function toggleToc() {
314 var toc = document.getElementById('toc').getElementsByTagName('ul')[0];
315 var toggleLink = document.getElementById('togglelink');
316
317 if (toc && toggleLink && toc.style.display == 'none') {
318 changeText(toggleLink, tocHideText);
319 toc.style.display = 'block';
320 document.cookie = "hidetoc=0";
321 } else {
322 changeText(toggleLink, tocShowText);
323 toc.style.display = 'none';
324 document.cookie = "hidetoc=1";
325 }
326 }
327
328 var mwEditButtons = [];
329 var mwCustomEditButtons = []; // eg to add in MediaWiki:Common.js
330
331 // this function generates the actual toolbar buttons with localized text
332 // we use it to avoid creating the toolbar where javascript is not enabled
333 function addButton(imageFile, speedTip, tagOpen, tagClose, sampleText) {
334 // Don't generate buttons for browsers which don't fully
335 // support it.
336 mwEditButtons[mwEditButtons.length] =
337 {"imageFile": imageFile,
338 "speedTip": speedTip,
339 "tagOpen": tagOpen,
340 "tagClose": tagClose,
341 "sampleText": sampleText};
342 }
343
344 // this function generates the actual toolbar buttons with localized text
345 // we use it to avoid creating the toolbar where javascript is not enabled
346 function mwInsertEditButton(parent, item) {
347 var image = document.createElement("img");
348 image.width = 23;
349 image.height = 22;
350 image.src = item.imageFile;
351 image.border = 0;
352 image.alt = item.speedTip;
353 image.title = item.speedTip;
354 image.style.cursor = "pointer";
355 image.onclick = function() {
356 insertTags(item.tagOpen, item.tagClose, item.sampleText);
357 return false;
358 };
359
360 parent.appendChild(image);
361 return true;
362 }
363
364 function mwSetupToolbar() {
365 var toolbar = document.getElementById('toolbar');
366 if (!toolbar) { return false; }
367
368 var textbox = document.getElementById('wpTextbox1');
369 if (!textbox) { return false; }
370
371 // Don't generate buttons for browsers which don't fully
372 // support it.
373 if (!document.selection && textbox.selectionStart === null) {
374 return false;
375 }
376
377 for (var i = 0; i < mwEditButtons.length; i++) {
378 mwInsertEditButton(toolbar, mwEditButtons[i]);
379 }
380 for (var i = 0; i < mwCustomEditButtons.length; i++) {
381 mwInsertEditButton(toolbar, mwCustomEditButtons[i]);
382 }
383 return true;
384 }
385
386 function escapeQuotes(text) {
387 var re = new RegExp("'","g");
388 text = text.replace(re,"\\'");
389 re = new RegExp("\\n","g");
390 text = text.replace(re,"\\n");
391 return escapeQuotesHTML(text);
392 }
393
394 function escapeQuotesHTML(text) {
395 var re = new RegExp('&',"g");
396 text = text.replace(re,"&amp;");
397 re = new RegExp('"',"g");
398 text = text.replace(re,"&quot;");
399 re = new RegExp('<',"g");
400 text = text.replace(re,"&lt;");
401 re = new RegExp('>',"g");
402 text = text.replace(re,"&gt;");
403 return text;
404 }
405
406 // apply tagOpen/tagClose to selection in textarea,
407 // use sampleText instead of selection if there is none
408 // copied and adapted from phpBB
409 function insertTags(tagOpen, tagClose, sampleText) {
410 var txtarea;
411 if (document.editform) {
412 txtarea = document.editform.wpTextbox1;
413 } else {
414 // some alternate form? take the first one we can find
415 var areas = document.getElementsByTagName('textarea');
416 txtarea = areas[0];
417 }
418
419 // IE
420 if (document.selection && !is_gecko) {
421 var theSelection = document.selection.createRange().text;
422 if (!theSelection) {
423 theSelection=sampleText;
424 }
425 txtarea.focus();
426 if (theSelection.charAt(theSelection.length - 1) == " ") { // exclude ending space char, if any
427 theSelection = theSelection.substring(0, theSelection.length - 1);
428 document.selection.createRange().text = tagOpen + theSelection + tagClose + " ";
429 } else {
430 document.selection.createRange().text = tagOpen + theSelection + tagClose;
431 }
432
433 // Mozilla
434 } else if(txtarea.selectionStart || txtarea.selectionStart == '0') {
435 var replaced = false;
436 var startPos = txtarea.selectionStart;
437 var endPos = txtarea.selectionEnd;
438 if (endPos-startPos) {
439 replaced = true;
440 }
441 var scrollTop = txtarea.scrollTop;
442 var myText = (txtarea.value).substring(startPos, endPos);
443 if (!myText) {
444 myText=sampleText;
445 }
446 var subst;
447 if (myText.charAt(myText.length - 1) == " ") { // exclude ending space char, if any
448 subst = tagOpen + myText.substring(0, (myText.length - 1)) + tagClose + " ";
449 } else {
450 subst = tagOpen + myText + tagClose;
451 }
452 txtarea.value = txtarea.value.substring(0, startPos) + subst +
453 txtarea.value.substring(endPos, txtarea.value.length);
454 txtarea.focus();
455 //set new selection
456 if (replaced) {
457 var cPos = startPos+(tagOpen.length+myText.length+tagClose.length);
458 txtarea.selectionStart = cPos;
459 txtarea.selectionEnd = cPos;
460 } else {
461 txtarea.selectionStart = startPos+tagOpen.length;
462 txtarea.selectionEnd = startPos+tagOpen.length+myText.length;
463 }
464 txtarea.scrollTop = scrollTop;
465
466 // All other browsers get no toolbar.
467 // There was previously support for a crippled "help"
468 // bar, but that caused more problems than it solved.
469 }
470 // reposition cursor if possible
471 if (txtarea.createTextRange) {
472 txtarea.caretPos = document.selection.createRange().duplicate();
473 }
474 }
475
476
477 /**
478 * Set the accesskey prefix based on browser detection.
479 */
480 var tooltipAccessKeyPrefix = 'alt-';
481 if (is_opera) {
482 tooltipAccessKeyPrefix = 'shift-esc-';
483 } else if (is_safari
484 || navigator.userAgent.toLowerCase().indexOf('mac') != -1
485 || navigator.userAgent.toLowerCase().indexOf('konqueror') != -1 ) {
486 tooltipAccessKeyPrefix = 'ctrl-';
487 } else if (is_ff2_x11 || is_ff2_win) {
488 tooltipAccessKeyPrefix = 'alt-shift-';
489 }
490 var tooltipAccessKeyRegexp = /\[(ctrl-)?(alt-)?(shift-)?(esc-)?.\]$/;
491
492 /**
493 * Add the appropriate prefix to the accesskey shown in the tooltip.
494 * If the nodeList parameter is given, only those nodes are updated;
495 * otherwise, all the nodes that will probably have accesskeys by
496 * default are updated.
497 *
498 * @param Array nodeList -- list of elements to update
499 */
500 function updateTooltipAccessKeys( nodeList ) {
501 if ( !nodeList ) {
502 // skins without a "column-one" element don't seem to have links with accesskeys either
503 var columnOne = document.getElementById("column-one");
504 if ( columnOne )
505 updateTooltipAccessKeys( columnOne.getElementsByTagName("a") );
506 // these are rare enough that no such optimization is needed
507 updateTooltipAccessKeys( document.getElementsByTagName("input") );
508 updateTooltipAccessKeys( document.getElementsByTagName("label") );
509 return;
510 }
511
512 for ( var i = 0; i < nodeList.length; i++ ) {
513 var element = nodeList[i];
514 var tip = element.getAttribute("title");
515 var key = element.getAttribute("accesskey");
516 if ( key && tooltipAccessKeyRegexp.exec(tip) ) {
517 tip = tip.replace(tooltipAccessKeyRegexp,
518 "["+tooltipAccessKeyPrefix+key+"]");
519 element.setAttribute("title", tip );
520 }
521 }
522 }
523
524 /**
525 * Add a link to one of the portlet menus on the page, including:
526 *
527 * p-cactions: Content actions (shown as tabs above the main content in Monobook)
528 * p-personal: Personal tools (shown at the top right of the page in Monobook)
529 * p-navigation: Navigation
530 * p-tb: Toolbox
531 *
532 * This function exists for the convenience of custom JS authors. All
533 * but the first three parameters are optional, though providing at
534 * least an id and a tooltip is recommended.
535 *
536 * By default the new link will be added to the end of the list. To
537 * add the link before a given existing item, pass the DOM node of
538 * that item (easily obtained with document.getElementById()) as the
539 * nextnode parameter; to add the link _after_ an existing item, pass
540 * the node's nextSibling instead.
541 *
542 * @param String portlet -- id of the target portlet ("p-cactions", "p-personal", "p-navigation" or "p-tb")
543 * @param String href -- link URL
544 * @param String text -- link text (will be automatically lowercased by CSS for p-cactions in Monobook)
545 * @param String id -- id of the new item, should be unique and preferably have the appropriate prefix ("ca-", "pt-", "n-" or "t-")
546 * @param String tooltip -- text to show when hovering over the link, without accesskey suffix
547 * @param String accesskey -- accesskey to activate this link (one character, try to avoid conflicts)
548 * @param Node nextnode -- the DOM node before which the new item should be added, should be another item in the same list
549 *
550 * @return Node -- the DOM node of the new item (an LI element) or null
551 */
552 function addPortletLink(portlet, href, text, id, tooltip, accesskey, nextnode) {
553 var node = document.getElementById(portlet);
554 if ( !node ) return null;
555 node = node.getElementsByTagName( "ul" )[0];
556 if ( !node ) return null;
557
558 var link = document.createElement( "a" );
559 link.appendChild( document.createTextNode( text ) );
560 link.href = href;
561
562 var item = document.createElement( "li" );
563 item.appendChild( link );
564 if ( id ) item.id = id;
565
566 if ( accesskey ) {
567 link.setAttribute( "accesskey", accesskey );
568 tooltip += " ["+accesskey+"]";
569 }
570 if ( tooltip ) {
571 link.setAttribute( "title", tooltip );
572 }
573 if ( accesskey && tooltip ) {
574 updateTooltipAccessKeys( new Array( link ) );
575 }
576
577 if ( nextnode && nextnode.parentNode == node )
578 node.insertBefore( item, nextnode );
579 else
580 node.appendChild( item ); // IE compatibility (?)
581
582 return item;
583 }
584
585
586 /**
587 * Set up accesskeys/tooltips from the deprecated ta array. If doId
588 * is specified, only set up for that id. Note that this function is
589 * deprecated and will not be supported indefinitely -- use
590 * updateTooltipAccessKey() instead.
591 *
592 * @param mixed doId string or null
593 */
594 function akeytt( doId ) {
595 // A lot of user scripts (and some of the code below) break if
596 // ta isn't defined, so we make sure it is. Explictly using
597 // window.ta avoids a "ta is not defined" error.
598 if (!window.ta) window.ta = new Array;
599
600 // Make a local, possibly restricted, copy to avoid clobbering
601 // the original.
602 var ta;
603 if ( doId ) {
604 ta = new Array;
605 ta[doId] = window.ta[doId];
606 } else {
607 ta = window.ta;
608 }
609
610 // Now deal with evil deprecated ta
611 var watchCheckboxExists = document.getElementById( 'wpWatchthis' ) ? true : false;
612 for (var id in ta) {
613 var n = document.getElementById(id);
614 if (n) {
615 var a = null;
616 var ak = '';
617 // Are we putting accesskey in it
618 if (ta[id][0].length > 0) {
619 // Is this object a object? If not assume it's the next child.
620
621 if (n.nodeName.toLowerCase() == "a") {
622 a = n;
623 } else {
624 a = n.childNodes[0];
625 }
626 // Don't add an accesskey for the watch tab if the watch
627 // checkbox is also available.
628 if (a && ((id != 'ca-watch' && id != 'ca-unwatch') || !watchCheckboxExists)) {
629 a.accessKey = ta[id][0];
630 ak = ' ['+tooltipAccessKeyPrefix+ta[id][0]+']';
631 }
632 } else {
633 // We don't care what type the object is when assigning tooltip
634 a = n;
635 ak = '';
636 }
637
638 if (a) {
639 a.title = ta[id][1]+ak;
640 }
641 }
642 }
643 }
644
645 function setupRightClickEdit() {
646 if (document.getElementsByTagName) {
647 var spans = document.getElementsByTagName('span');
648 for (var i = 0; i < spans.length; i++) {
649 var el = spans[i];
650 if(el.className == 'editsection') {
651 addRightClickEditHandler(el);
652 }
653 }
654 }
655 }
656
657 function addRightClickEditHandler(el) {
658 for (var i = 0; i < el.childNodes.length; i++) {
659 var link = el.childNodes[i];
660 if (link.nodeType == 1 && link.nodeName.toLowerCase() == 'a') {
661 var editHref = link.getAttribute('href');
662 // find the enclosing (parent) header
663 var prev = el.parentNode;
664 if (prev && prev.nodeType == 1 &&
665 prev.nodeName.match(/^[Hh][1-6]$/)) {
666 prev.oncontextmenu = function(e) {
667 if (!e) { e = window.event; }
668 // e is now the event in all browsers
669 var targ;
670 if (e.target) { targ = e.target; }
671 else if (e.srcElement) { targ = e.srcElement; }
672 if (targ.nodeType == 3) { // defeat Safari bug
673 targ = targ.parentNode;
674 }
675 // targ is now the target element
676
677 // We don't want to deprive the noble reader of a context menu
678 // for the section edit link, do we? (Might want to extend this
679 // to all <a>'s?)
680 if (targ.nodeName.toLowerCase() != 'a'
681 || targ.parentNode.className != 'editsection') {
682 document.location = editHref;
683 return false;
684 }
685 return true;
686 };
687 }
688 }
689 }
690 }
691
692 var checkboxes;
693 var lastCheckbox;
694
695 function setupCheckboxShiftClick() {
696 checkboxes = [];
697 lastCheckbox = null;
698 var inputs = document.getElementsByTagName('input');
699 addCheckboxClickHandlers(inputs);
700 }
701
702 function addCheckboxClickHandlers(inputs, start) {
703 if ( !start) start = 0;
704
705 var finish = start + 250;
706 if ( finish > inputs.length )
707 finish = inputs.length;
708
709 for ( var i = start; i < finish; i++ ) {
710 var cb = inputs[i];
711 if ( !cb.type || cb.type.toLowerCase() != 'checkbox' )
712 continue;
713 cb.index = checkboxes.push(cb) - 1;
714 cb.onmouseup = checkboxMouseupHandler;
715 }
716
717 if ( finish < inputs.length ) {
718 setTimeout( function () {
719 addCheckboxClickHandlers(inputs, finish);
720 }, 200 );
721 }
722 }
723
724 function checkboxMouseupHandler(e) {
725 if (typeof e == 'undefined') {
726 e = window.event;
727 }
728 if ( !e.shiftKey || lastCheckbox === null ) {
729 lastCheckbox = this.index;
730 return true;
731 }
732 var endState = !this.checked;
733 if ( is_opera ) { // opera has already toggled the checkbox by this point
734 endState = !endState;
735 }
736 var start, finish;
737 if ( this.index < lastCheckbox ) {
738 start = this.index + 1;
739 finish = lastCheckbox;
740 } else {
741 start = lastCheckbox;
742 finish = this.index - 1;
743 }
744 for (var i = start; i <= finish; ++i ) {
745 checkboxes[i].checked = endState;
746 }
747 lastCheckbox = this.index;
748 return true;
749 }
750
751 function toggle_element_activation(ida,idb) {
752 if (!document.getElementById) {
753 return;
754 }
755 document.getElementById(ida).disabled=true;
756 document.getElementById(idb).disabled=false;
757 }
758
759 function toggle_element_check(ida,idb) {
760 if (!document.getElementById) {
761 return;
762 }
763 document.getElementById(ida).checked=true;
764 document.getElementById(idb).checked=false;
765 }
766
767 function fillDestFilename(id) {
768 if (!document.getElementById) {
769 return;
770 }
771 var path = document.getElementById(id).value;
772 // Find trailing part
773 var slash = path.lastIndexOf('/');
774 var backslash = path.lastIndexOf('\\');
775 var fname;
776 if (slash == -1 && backslash == -1) {
777 fname = path;
778 } else if (slash > backslash) {
779 fname = path.substring(slash+1, 10000);
780 } else {
781 fname = path.substring(backslash+1, 10000);
782 }
783
784 // Capitalise first letter and replace spaces by underscores
785 fname = fname.charAt(0).toUpperCase().concat(fname.substring(1,10000)).replace(/ /g, '_');
786
787 // Output result
788 var destFile = document.getElementById('wpDestFile');
789 if (destFile) {
790 destFile.value = fname;
791 }
792 }
793
794
795 function considerChangingExpiryFocus() {
796 if (!document.getElementById) {
797 return;
798 }
799 var drop = document.getElementById('wpBlockExpiry');
800 if (!drop) {
801 return;
802 }
803 var field = document.getElementById('wpBlockOther');
804 if (!field) {
805 return;
806 }
807 var opt = drop.value;
808 if (opt == 'other') {
809 field.style.display = '';
810 } else {
811 field.style.display = 'none';
812 }
813 }
814
815 function scrollEditBox() {
816 var editBoxEl = document.getElementById("wpTextbox1");
817 var scrollTopEl = document.getElementById("wpScrolltop");
818 var editFormEl = document.getElementById("editform");
819
820 if (editBoxEl && scrollTopEl) {
821 if (scrollTopEl.value) { editBoxEl.scrollTop = scrollTopEl.value; }
822 editFormEl.onsubmit = function() {
823 document.getElementById("wpScrolltop").value = document.getElementById("wpTextbox1").scrollTop;
824 };
825 }
826 }
827
828 hookEvent("load", scrollEditBox);
829
830 var allmessages_nodelist = false;
831 var allmessages_modified = false;
832 var allmessages_timeout = false;
833 var allmessages_running = false;
834
835 function allmessagesmodified() {
836 allmessages_modified = !allmessages_modified;
837 allmessagesfilter();
838 }
839
840 function allmessagesfilter() {
841 if ( allmessages_timeout )
842 window.clearTimeout( allmessages_timeout );
843
844 if ( !allmessages_running )
845 allmessages_timeout = window.setTimeout( 'allmessagesfilter_do();', 500 );
846 }
847
848 function allmessagesfilter_do() {
849 if ( !allmessages_nodelist )
850 return;
851
852 var text = document.getElementById('allmessagesinput').value;
853 var nodef = allmessages_modified;
854
855 allmessages_running = true;
856
857 for ( var name in allmessages_nodelist ) {
858 var nodes = allmessages_nodelist[name];
859 var display = ( name.indexOf( text ) == -1 ? 'none' : '' );
860
861 for ( var i = 0; i < nodes.length; i++)
862 nodes[i].style.display =
863 ( nodes[i].className == "def" && nodef
864 ? 'none' : display );
865 }
866
867 if ( text != document.getElementById('allmessagesinput').value ||
868 nodef != allmessages_modified )
869 allmessagesfilter_do(); // repeat
870
871 allmessages_running = false;
872 }
873
874 function allmessagesfilter_init() {
875 if ( allmessages_nodelist )
876 return;
877
878 var nodelist = new Array();
879 var templist = new Array();
880
881 var table = document.getElementById('allmessagestable');
882 if ( !table ) return;
883
884 var rows = document.getElementsByTagName('tr');
885 for ( var i = 0; i < rows.length; i++ ) {
886 var id = rows[i].getAttribute('id')
887 if ( id && id.substring(0,16) != 'sp-allmessages-r' ) continue;
888 templist[ id ] = rows[i];
889 }
890
891 var spans = table.getElementsByTagName('span');
892 for ( var i = 0; i < spans.length; i++ ) {
893 var id = spans[i].getAttribute('id')
894 if ( id && id.substring(0,17) != 'sp-allmessages-i-' ) continue;
895 if ( !spans[i].firstChild || spans[i].firstChild.nodeType != 3 ) continue;
896
897 var nodes = new Array();
898 var row1 = templist[ id.replace('i', 'r1') ];
899 var row2 = templist[ id.replace('i', 'r2') ];
900
901 if ( row1 ) nodes[nodes.length] = row1;
902 if ( row2 ) nodes[nodes.length] = row2;
903 nodelist[ spans[i].firstChild.nodeValue ] = nodes;
904 }
905
906 var k = document.getElementById('allmessagesfilter');
907 if (k) { k.style.display = ''; }
908
909 allmessages_nodelist = nodelist;
910 }
911
912 hookEvent( "load", allmessagesfilter_init );
913
914 /*
915 Written by Jonathan Snook, http://www.snook.ca/jonathan
916 Add-ons by Robert Nyman, http://www.robertnyman.com
917 Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
918 From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
919 */
920 function getElementsByClassName(oElm, strTagName, oClassNames){
921 var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
922 var arrReturnElements = new Array();
923 var arrRegExpClassNames = new Array();
924 if(typeof oClassNames == "object"){
925 for(var i=0; i<oClassNames.length; i++){
926 arrRegExpClassNames.push(new RegExp("(^|\\s)" + oClassNames[i].replace(/\-/g, "\\-") + "(\\s|$)"));
927 }
928 }
929 else{
930 arrRegExpClassNames.push(new RegExp("(^|\\s)" + oClassNames.replace(/\-/g, "\\-") + "(\\s|$)"));
931 }
932 var oElement;
933 var bMatchesAll;
934 for(var j=0; j<arrElements.length; j++){
935 oElement = arrElements[j];
936 bMatchesAll = true;
937 for(var k=0; k<arrRegExpClassNames.length; k++){
938 if(!arrRegExpClassNames[k].test(oElement.className)){
939 bMatchesAll = false;
940 break;
941 }
942 }
943 if(bMatchesAll){
944 arrReturnElements.push(oElement);
945 }
946 }
947 return (arrReturnElements)
948 }
949
950 function redirectToFragment(fragment) {
951 var match = navigator.userAgent.match(/AppleWebKit\/(\d+)/);
952 if (match) {
953 var webKitVersion = parseInt(match[1]);
954 if (webKitVersion < 420) {
955 // Released Safari w/ WebKit 418.9.1 messes up horribly
956 // Nightlies of 420+ are ok
957 return;
958 }
959 }
960 if (is_gecko) {
961 // Mozilla needs to wait until after load, otherwise the window doesn't scroll
962 addOnloadHook(function () {
963 if (window.location.hash == "")
964 window.location.hash = fragment;
965 });
966 } else {
967 if (window.location.hash == "")
968 window.location.hash = fragment;
969 }
970 }
971
972 /*
973 * Table sorting script by Joost de Valk, check it out at http://www.joostdevalk.nl/code/sortable-table/.
974 * Based on a script from http://www.kryogenix.org/code/browser/sorttable/.
975 * Distributed under the MIT license: http://www.kryogenix.org/code/browser/licence.html .
976 *
977 * Copyright (c) 1997-2006 Stuart Langridge, Joost de Valk.
978 *
979 * @todo don't break on colspans/rowspans (bug 8028)
980 * @todo language-specific digit grouping/decimals (bug 8063)
981 * @todo support all accepted date formats (bug 8226)
982 */
983
984 var ts_image_path = stylepath+"/common/images/";
985 var ts_image_up = "sort_up.gif";
986 var ts_image_down = "sort_down.gif";
987 var ts_image_none = "sort_none.gif";
988 var ts_europeandate = wgContentLanguage != "en"; // The non-American-inclined can change to "true"
989 var ts_alternate_row_colors = true;
990 var SORT_COLUMN_INDEX;
991
992 function sortables_init() {
993 var idnum = 0;
994 // Find all tables with class sortable and make them sortable
995 var tables = getElementsByClassName(document, "table", "sortable");
996 for (var ti = 0; ti < tables.length ; ti++) {
997 if (!tables[ti].id) {
998 tables[ti].setAttribute('id','sortable_table_id_'+idnum);
999 ++idnum;
1000 }
1001 ts_makeSortable(tables[ti]);
1002 }
1003 }
1004
1005 function ts_makeSortable(table) {
1006 var firstRow;
1007 if (table.rows && table.rows.length > 0) {
1008 if (table.tHead && table.tHead.rows.length > 0) {
1009 firstRow = table.tHead.rows[table.tHead.rows.length-1];
1010 } else {
1011 firstRow = table.rows[0];
1012 }
1013 }
1014 if (!firstRow) return;
1015
1016 // We have a first row: assume it's the header, and make its contents clickable links
1017 for (var i = 0; i < firstRow.cells.length; i++) {
1018 var cell = firstRow.cells[i];
1019 if ((" "+cell.className+" ").indexOf(" unsortable ") == -1) {
1020 cell.innerHTML += '&nbsp;&nbsp;<a href="#" class="sortheader" onclick="ts_resortTable(this);return false;"><span class="sortarrow"><img src="'+ ts_image_path + ts_image_none + '" alt="&darr;"/></span></a>';
1021 }
1022 }
1023 if (ts_alternate_row_colors) {
1024 ts_alternate(table);
1025 }
1026 }
1027
1028 function ts_getInnerText(el) {
1029 if (typeof el == "string") return el;
1030 if (typeof el == "undefined") { return el };
1031 if (el.innerText) return el.innerText; // Not needed but it is faster
1032 var str = "";
1033
1034 var cs = el.childNodes;
1035 var l = cs.length;
1036 for (var i = 0; i < l; i++) {
1037 switch (cs[i].nodeType) {
1038 case 1: //ELEMENT_NODE
1039 str += ts_getInnerText(cs[i]);
1040 break;
1041 case 3: //TEXT_NODE
1042 str += cs[i].nodeValue;
1043 break;
1044 }
1045 }
1046 return str;
1047 }
1048
1049 function ts_resortTable(lnk) {
1050 // get the span
1051 var span = lnk.getElementsByTagName('span')[0];
1052
1053 var td = lnk.parentNode;
1054 var tr = td.parentNode;
1055 var column = td.cellIndex;
1056
1057 var table = tr.parentNode;
1058 while (table && !(table.tagName && table.tagName.toLowerCase() == 'table'))
1059 table = table.parentNode;
1060 if (!table) return;
1061
1062 // Work out a type for the column
1063 if (table.rows.length <= 1) return;
1064
1065 // Skip the first row if that's where the headings are
1066 var rowStart = (table.tHead && table.tHead.rows.length > 0 ? 0 : 1);
1067
1068 var itm = "";
1069 for (var i = rowStart; i < table.rows.length; i++) {
1070 if (table.rows[i].cells.length > column) {
1071 itm = ts_getInnerText(table.rows[i].cells[column]);
1072 itm = itm.replace(/^[\s\xa0]+/, "").replace(/[\s\xa0]+$/, "");
1073 if (itm != "") break;
1074 }
1075 }
1076
1077 sortfn = ts_sort_caseinsensitive;
1078 if (itm.match(/^\d\d[\/. -][a-zA-Z]{3}[\/. -]\d\d\d\d$/))
1079 sortfn = ts_sort_date;
1080 if (itm.match(/^\d\d[\/.-]\d\d[\/.-]\d\d\d\d$/))
1081 sortfn = ts_sort_date;
1082 if (itm.match(/^\d\d[\/.-]\d\d[\/.-]\d\d$/))
1083 sortfn = ts_sort_date;
1084 if (itm.match(/^[£$\80Û¢´]/))
1085 sortfn = ts_sort_currency;
1086 if (itm.match(/^[\d.,]+\%?$/))
1087 sortfn = ts_sort_numeric;
1088
1089 var reverse = (span.getAttribute("sortdir") == 'down');
1090
1091 var newRows = new Array();
1092 for (var j = rowStart; j < table.rows.length; j++) {
1093 var row = table.rows[j];
1094 var keyText = ts_getInnerText(row.cells[column]);
1095 var oldIndex = (reverse ? -j : j);
1096
1097 newRows[newRows.length] = new Array(row, keyText, oldIndex);
1098 }
1099
1100 newRows.sort(sortfn);
1101
1102 var arrowHTML;
1103 if (reverse) {
1104 arrowHTML = '<img src="'+ ts_image_path + ts_image_down + '" alt="&darr;"/>';
1105 newRows.reverse();
1106 span.setAttribute('sortdir','up');
1107 } else {
1108 arrowHTML = '<img src="'+ ts_image_path + ts_image_up + '" alt="&uarr;"/>';
1109 span.setAttribute('sortdir','down');
1110 }
1111
1112 // We appendChild rows that already exist to the tbody, so it moves them rather than creating new ones
1113 // don't do sortbottom rows
1114 for (var i = 0; i < newRows.length; i++) {
1115 if ((" "+newRows[i][0].className+" ").indexOf(" sortbottom ") == -1)
1116 table.tBodies[0].appendChild(newRows[i][0]);
1117 }
1118 // do sortbottom rows only
1119 for (var i = 0; i < newRows.length; i++) {
1120 if ((" "+newRows[i][0].className+" ").indexOf(" sortbottom ") != -1)
1121 table.tBodies[0].appendChild(newRows[i][0]);
1122 }
1123
1124 // Delete any other arrows there may be showing
1125 var spans = getElementsByClassName(tr, "span", "sortarrow");
1126 for (var i = 0; i < spans.length; i++) {
1127 spans[i].innerHTML = '<img src="'+ ts_image_path + ts_image_none + '" alt="&darr;"/>';
1128 }
1129 span.innerHTML = arrowHTML;
1130
1131 ts_alternate(table);
1132 }
1133
1134 function ts_dateToSortKey(date) {
1135 // y2k notes: two digit years less than 50 are treated as 20XX, greater than 50 are treated as 19XX
1136 if (date.length == 11) {
1137 switch (date.substr(3,3).toLowerCase()) {
1138 case "jan": var month = "01"; break;
1139 case "feb": var month = "02"; break;
1140 case "mar": var month = "03"; break;
1141 case "apr": var month = "04"; break;
1142 case "may": var month = "05"; break;
1143 case "jun": var month = "06"; break;
1144 case "jul": var month = "07"; break;
1145 case "aug": var month = "08"; break;
1146 case "sep": var month = "09"; break;
1147 case "oct": var month = "10"; break;
1148 case "nov": var month = "11"; break;
1149 case "dec": var month = "12"; break;
1150 // default: var month = "00";
1151 }
1152 return date.substr(7,4)+month+date.substr(0,2);
1153 } else if (date.length == 10) {
1154 if (ts_europeandate == false) {
1155 return date.substr(6,4)+date.substr(0,2)+date.substr(3,2);
1156 } else {
1157 return date.substr(6,4)+date.substr(3,2)+date.substr(0,2);
1158 }
1159 } else if (date.length == 8) {
1160 yr = date.substr(6,2);
1161 if (parseInt(yr) < 50) {
1162 yr = '20'+yr;
1163 } else {
1164 yr = '19'+yr;
1165 }
1166 if (ts_europeandate == true) {
1167 return yr+date.substr(3,2)+date.substr(0,2);
1168 } else {
1169 return yr+date.substr(0,2)+date.substr(3,2);
1170 }
1171 }
1172 return "00000000";
1173 }
1174
1175 function ts_parseFloat(num) {
1176 if (!num) return 0;
1177 num = parseFloat(num.replace(/,/, ""));
1178 return (isNaN(num) ? 0 : num);
1179 }
1180
1181 function ts_sort_date(a,b) {
1182 var aa = ts_dateToSortKey(a[1]);
1183 var bb = ts_dateToSortKey(b[1]);
1184 return (aa < bb ? -1 : aa > bb ? 1 : a[2] - b[2]);
1185 }
1186
1187 function ts_sort_currency(a,b) {
1188 var aa = ts_parseFloat(a[1].replace(/[^0-9.]/g,''));
1189 var bb = ts_parseFloat(b[1].replace(/[^0-9.]/g,''));
1190 return (aa != bb ? aa - bb : a[2] - b[2]);
1191 }
1192
1193 function ts_sort_numeric(a,b) {
1194 var aa = ts_parseFloat(a[1]);
1195 var bb = ts_parseFloat(b[1]);
1196 return (aa != bb ? aa - bb : a[2] - b[2]);
1197 }
1198
1199 function ts_sort_caseinsensitive(a,b) {
1200 var aa = a[1].toLowerCase();
1201 var bb = b[1].toLowerCase();
1202 return (aa < bb ? -1 : aa > bb ? 1 : a[2] - b[2]);
1203 }
1204
1205 function ts_sort_default(a,b) {
1206 return (a[1] < b[1] ? -1 : a[1] > b[1] ? 1 : a[2] - b[2]);
1207 }
1208
1209 function ts_alternate(table) {
1210 // Take object table and get all it's tbodies.
1211 var tableBodies = table.getElementsByTagName("tbody");
1212 // Loop through these tbodies
1213 for (var i = 0; i < tableBodies.length; i++) {
1214 // Take the tbody, and get all it's rows
1215 var tableRows = tableBodies[i].getElementsByTagName("tr");
1216 // Loop through these rows
1217 // Start at 1 because we want to leave the heading row untouched
1218 for (var j = 0; j < tableRows.length; j++) {
1219 // Check if j is even, and apply classes for both possible results
1220 var oldClasses = tableRows[j].className.split(" ");
1221 var newClassName = "";
1222 for (var k = 0; k < oldClasses.length; k++) {
1223 if (oldClasses[k] != "" && oldClasses[k] != "even" && oldClasses[k] != "odd")
1224 newClassName += oldClasses[k] + " ";
1225 }
1226 tableRows[j].className = newClassName + (j % 2 == 0 ? "even" : "odd");
1227 }
1228 }
1229 }
1230
1231 /*
1232 * End of table sorting code
1233 */
1234
1235 function runOnloadHook() {
1236 // don't run anything below this for non-dom browsers
1237 if (doneOnloadHook || !(document.getElementById && document.getElementsByTagName)) {
1238 return;
1239 }
1240
1241 // set this before running any hooks, since any errors below
1242 // might cause the function to terminate prematurely
1243 doneOnloadHook = true;
1244
1245 histrowinit();
1246 unhidetzbutton();
1247 tabbedprefs();
1248 updateTooltipAccessKeys( null );
1249 akeytt( null );
1250 scrollEditBox();
1251 setupCheckboxShiftClick();
1252 sortables_init();
1253
1254 // Run any added-on functions
1255 for (var i = 0; i < onloadFuncts.length; i++) {
1256 onloadFuncts[i]();
1257 }
1258 }
1259
1260 //note: all skins should call runOnloadHook() at the end of html output,
1261 // so the below should be redundant. It's there just in case.
1262 hookEvent("load", runOnloadHook);
1263
1264 hookEvent("load", mwSetupToolbar);