Difference between revisions of "MediaWiki:Common.js"

From Asylum Projects
Jump to: navigation, search
m (Reverted edits by M-Explorer (Talk) to last revision by Transferbot)
Line 1: Line 1:
//<source lang="javascript">
+
/* <pre><nowiki> */
+
 
/*
+
importScript('MediaWiki:Functions.js');
* Description: Redirects from /User:UserName/skin.js or .css to the user's actual skin page
+
 
* Maintainer: Cacycle
+
// Load upload form JS
*/
+
importScript('MediaWiki:Upload.js');
if (wgArticleId == 0) {
+
   
  var slash = wgPageName.indexOf('/');
+
 
  var norm = wgPageName.substr(0, slash) + wgPageName.substr(slash).toLowerCase();
+
// onload stuff
  var test = 'User:' + wgUserName.replace(/ /g, '_') + '/skin.';
+
var firstRun = true;
  var ext = null;
+
 
  if (norm == test + 'js') ext = 'js';
+
function loadFunc() {
  else if (norm == test + 'css') ext = 'css';
+
if( firstRun )
  if (ext != null) window.location.href = window.location.href.replace(/\/skin.(css|js)/i, '/' + skin + '.' + ext);
+
firstRun = false;
 +
else
 +
return;
 +
 
 +
initFunctionsJS();
 +
 
 +
// DEPRECATED
 +
if( document.getElementById('infoboxinternal') != null && document.getElementById('infoboxend') != null ) {
 +
document.getElementById('infoboxend').innerHTML = '<a id="infoboxtoggle" href="javascript:infoboxToggle()">[Hide]</a>';
 +
}
 +
 
 +
// Upload form - need to run before adding hide buttons
 +
setupUploadForm();
 +
 
 +
addHideButtons();
 +
 
 +
if( document.getElementById('mp3-navlink') != null ) {
 +
document.getElementById('mp3-navlink').onclick = onArticleNavClick;
 +
document.getElementById('mp3-navlink').getElementsByTagName('a')[0].href = 'javascript:void(0)';
 +
}
 +
 
 +
if( window.storagePresent )
 +
initVisibility();
 +
 
 +
rewriteSearchFormLink();
 +
fillEditSummaries();
 +
fillDeleteReasons();
 +
fillPreloads();
 +
 
 +
substUsername();
 +
substUsernameTOC();
 +
rewriteTitle();
 +
showEras('title-eraicons');
 +
showEras('title-shortcut');
 +
rewriteHover();
 +
addAlternatingRowColors();
 +
// replaceSearchIcon(); this is now called from MediaWiki:Monobook.js
 +
fixSearch();
 +
 
 +
var body = document.getElementsByTagName('body')[0];
 +
var bodyClass = body.className;
 +
 
 +
if( !bodyClass || (bodyClass.indexOf('page-') == -1) ) {
 +
var page = window.pageName.replace(/\W/g, '_');
 +
body.className += ' page-' + page;
 +
}
 +
 
 +
if( typeof(onPageLoad) != "undefined" ) {
 +
onPageLoad();
 +
}
 +
}
 +
 
 +
function infoboxToggle() {
 +
var page = window.pageName.replace(/\W/g, '_');
 +
var nowShown;
 +
 
 +
if(document.getElementById('infoboxtoggle').innerHTML == '[Hide]') {
 +
document.getElementById('infoboxinternal').style.display = 'none';
 +
document.getElementById('infoboxtoggle').innerHTML = '[Show]';
 +
nowShown = false;
 +
} else {
 +
document.getElementById('infoboxinternal').style.display = 'block';
 +
document.getElementById('infoboxtoggle').innerHTML = '[Hide]';
 +
nowShown = true;
 +
}
 +
 
 +
if(window.storagePresent) {
 +
var storage = globalStorage[window.location.hostname];
 +
storage.setItem('infoboxshow-' + page, nowShown);
 +
}
 +
}
 +
 
 +
function fillEditSummaries() {
 +
var label = document.getElementById("wpSummaryLabel");
 +
 
 +
if( label == null )
 +
return;
 +
 
 +
var comboString = "Standard summaries: <select id='stdSummaries' onchange='onStdSummaryChange()'>";
 +
comboString += "</select><br />";
 +
label.innerHTML = comboString + label.innerHTML;
 +
 
 +
requestComboFill('stdSummaries', 'Template:Stdsummaries');
 +
}
 +
 
 +
function onStdSummaryChange() {
 +
var combo = document.getElementById("stdSummaries");
 +
var value = combo.options[combo.selectedIndex].value;
 +
 
 +
if( value != "" ) {
 +
if( skin == 'monaco' ) {
 +
document.getElementById("wpSummaryEnhanced").value = value;
 +
} else {
 +
document.getElementById("wpSummary").value = value;
 +
}
 +
}
 +
}
 +
 
 +
function fillDeleteReasons() {
 +
var label = document.getElementById("wpReason");
 +
 
 +
if( label == null )
 +
return;
 +
 
 +
label = document.getElementById("contentSub");
 +
 
 +
if( label == null )
 +
return;
 +
}
 +
 
 +
function onStdReasonChange() {
 +
var combo = document.getElementById("stdReasons");
 +
var value = combo.options[combo.selectedIndex].value;
 +
 
 +
if( value != "" )
 +
document.getElementById("wpReason").value = value;
 +
}
 +
 
 +
function fillPreloads() {
 +
var div = document.getElementById("lf-preload");
 +
 
 +
if( div == null )
 +
return;
 +
 
 +
div.style.display = 'block';
 +
var span = document.getElementById('lf-preload-cbox');
 +
 
 +
var comboString = "<select id='stdPreloads' onchange='onPreloadChange()'>";
 +
comboString += "</select>";
 +
span.innerHTML = comboString;
 +
   
 +
span = document.getElementById('lf-preload-pagename');
 +
span.innerHTML = '<input type="text" class="textbox" />';
 +
span = document.getElementById('lf-preload-button');
 +
span.innerHTML = '<input type="button" class="button" value="Insert" onclick="doCustomPreload()" />';
 +
 
 +
requestComboFill('stdPreloads', "Template:Stdpreloads");
 +
}
 +
 
 +
function doCustomPreload() {
 +
doPreload(document.getElementById('lf-preload-pagename').getElementsByTagName('input')[0].value);
 +
}
 +
 
 +
function onPreloadChange() {
 +
var combo = document.getElementById("stdPreloads");
 +
var value = combo.options[combo.selectedIndex].value;
 +
 
 +
if( value == "" )
 +
return;
 +
 
 +
value = "Template:" + value + "/preload";
 +
value = value.replace(" ", "_");
 +
doPreload(value);
 +
}
 +
 
 +
// ============================================================
 +
// BEGIN JavaScript title rewrite
 +
 
 +
function rewriteTitle() {
 +
if( typeof( window.SKIP_TITLE_REWRITE ) != 'undefined' && window.SKIP_TITLE_REWRITE )
 +
return;
 +
var titleDiv = document.getElementById('title-meta');
 +
 
 +
if( titleDiv == null )
 +
return;
 +
 
 +
var cloneNode = titleDiv.cloneNode(true);
 +
var firstHeading = getFirstHeading();
 +
var node = firstHeading.childNodes[0];
 +
 
 +
// new, then old!
 +
firstHeading.replaceChild(cloneNode, node);
 +
cloneNode.style.display = "inline";
 +
 
 +
var titleAlign = document.getElementById('title-align');
 +
firstHeading.style.textAlign = titleAlign.childNodes[0].nodeValue;
 +
}
 +
 
 +
function showEras(className) {
 +
if( typeof( SKIP_ERAS ) != 'undefined' && SKIP_ERAS )
 +
return;
 +
 
 +
var titleDiv = document.getElementById( className );
 +
 
 +
if( titleDiv == null || titleDiv == undefined )
 +
return;
 +
 
 +
var cloneNode = titleDiv.cloneNode(true);
 +
var firstHeading = getFirstHeading();
 +
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
 +
cloneNode.style.display = "block";
 +
}
 +
// END JavaScript title rewrite
 +
 
 +
function initVisibility() {
 +
var storage = globalStorage[window.location.hostname];
 +
 
 +
var page = window.pageName.replace(/\W/g,'_');
 +
var show = storage.getItem('infoboxshow-' + page);
 +
 
 +
if( show == 'false' ) {
 +
infoboxToggle();
 +
}
 +
   
 +
var hidables = getElementsByClass('hidable');
 +
   
 +
for(var i = 0; i < hidables.length; i++) {
 +
show = storage.getItem('hidableshow-' + i  + '_' + page);
 +
       
 +
if( show == 'false' ) {
 +
var content = getElementsByClass('hidable-content', hidables[i]);
 +
var button = getElementsByClass('hidable-button', hidables[i]);
 +
           
 +
if( content != null && content.length > 0 &&
 +
button != null && button.length > 0 && content[0].style.display != 'none' )
 +
{
 +
button[0].onclick('bypass');
 +
}
 +
} else if( show == 'true' ) {
 +
var content = getElementsByClass('hidable-content', hidables[i]);
 +
var button = getElementsByClass('hidable-button', hidables[i]);
 +
           
 +
if( content != null && content.length > 0 &&
 +
button != null && button.length > 0 && content[0].style.display == 'none' )
 +
{
 +
button[0].onclick('bypass');
 +
}
 +
}
 +
}
 +
}
 +
 
 +
function onArticleNavClick() {
 +
var div = document.getElementById('mp3-nav');
 +
 
 +
if( div.style.display == 'block' )
 +
div.style.display = 'none';
 +
else
 +
div.style.display = 'block';
 +
}
 +
 
 +
function addAlternatingRowColors() {
 +
var infoboxes = getElementsByClass('infobox', document.getElementById('content'));
 +
 
 +
if( infoboxes.length == 0 )
 +
return;
 +
 
 +
for( var k = 0; k < infoboxes.length; k++ ) {
 +
var infobox = infoboxes[k];
 +
 
 +
var rows = infobox.getElementsByTagName('tr');
 +
var changeColor = false;
 +
 
 +
for( var i = 0; i < rows.length; i++ ) {
 +
if(rows[i].className.indexOf('infoboxstopalt') != -1)
 +
break;
 +
 
 +
var ths = rows[i].getElementsByTagName('th');
 +
 
 +
if( ths.length > 0 ) {
 +
continue;
 +
}
 +
 
 +
if(changeColor)
 +
rows[i].style.backgroundColor = '#f9f9f9';
 +
changeColor = !changeColor;
 +
}
 +
}
 +
}
 +
 
 +
function addHideButtons() {
 +
var hidables = getElementsByClass('hidable');
 +
   
 +
for( var i = 0; i < hidables.length; i++ ) {
 +
var box = hidables[i];
 +
var button = getElementsByClass('hidable-button', box, 'span');
 +
       
 +
if( button != null && button.length > 0 ) {
 +
button = button[0];
 +
           
 +
button.onclick = toggleHidable;
 +
button.appendChild( document.createTextNode('[Hide]') );
 +
 
 +
if( new ClassTester('start-hidden').isMatch(box) )
 +
button.onclick('bypass');
 +
}
 +
}
 +
}
 +
 
 +
function toggleHidable(bypassStorage) {
 +
var parent = getParentByClass('hidable', this);
 +
var content = getElementsByClass('hidable-content', parent);
 +
var nowShown;
 +
   
 +
if( content != null && content.length > 0 ) {
 +
content = content[0];
 +
       
 +
if( content.style.display == 'none' ) {
 +
content.style.display = content.oldDisplayStyle;
 +
this.firstChild.nodeValue = '[Hide]';
 +
nowShown = true;
 +
} else {
 +
content.oldDisplayStyle = content.style.display;
 +
content.style.display = 'none';
 +
this.firstChild.nodeValue = '[Show]';
 +
nowShown = false;
 +
}
 +
       
 +
if( window.storagePresent && ( typeof( bypassStorage ) == 'undefined' || bypassStorage != 'bypass' ) ) {
 +
var page = window.pageName.replace(/\W/g, '_');
 +
var items = getElementsByClass('hidable');
 +
var item = -1;
 +
           
 +
for( var i = 0; i < items.length; i++ ) {
 +
if( items[i] == parent ) {
 +
item = i;
 +
break;
 +
}
 +
}
 +
           
 +
if( item == -1 ) {
 +
return;
 +
}
 +
       
 +
var storage = globalStorage[window.location.hostname];
 +
storage.setItem('hidableshow-' + item + '_' + page, nowShown);
 +
}
 +
}
 +
}
 +
 
 +
function substUsernameTOC() {
 +
var toc = document.getElementById('toc');
 +
var userpage = document.getElementById('pt-userpage');
 +
   
 +
if( !userpage || !toc )
 +
return;
 +
       
 +
var username = userpage.firstChild.firstChild.nodeValue;
 +
var elements = getElementsByClass('toctext', toc, 'span');
 +
 
 +
for( var i = 0; i < elements.length; i++ )
 +
elements[i].firstChild.nodeValue = elements[i].firstChild.nodeValue.replace('<insert name here>', username);
 +
}
 +
 
 +
// this was moved to Monobook.js --TOR <tor@wikia-inc.com>
 +
function replaceSearchIcon() {
 +
return;
 +
}
 +
 
 +
function rand(n) {
 +
return Math.round(Math.random() * n);
 +
}
 +
 
 +
// Reskin parser script from [[Uncyclopedia:MediaWiki:Uncyclopedia.js]]
 +
skinjs = {
 +
"Logout": "Logout.js"
 +
}
 +
 
 +
var re = RegExp("(.*) - Wookieepedia, the Star Wars Wiki");
 +
var matches = re.exec(document.title);
 +
 
 +
var skinNamejs;
 +
 
 +
if (matches) {
 +
if (skinjs[matches[1]] != undefined) {
 +
skinNamejs = (skinjs[matches[1]].length > 0) ? skinjs[matches[1]] : matches[1] + '.js';
 +
document.write('<script type="text/javascript" src="/index.php?title=MediaWiki:Skin/' + skinNamejs + '&action=raw&ctype=text/javascript"></script>');
 +
}
 +
}
 +
 
 +
function fixSearch() {
 +
var button = document.getElementById('searchSubmit');
 +
 
 +
if( button )
 +
button.name = 'go';
 +
}
 +
 
 +
//addOnloadHook(loadFunc);
 +
 
 +
$(loadFunc);
 +
 
 +
///////////////////////////////////////////////////////////////////////////////////////////////////////////
 +
 
 +
// ADVANCED AJAX AUTO-REFRESHING ARTICLES
 +
// Code courtesy of "pcj" of WoWWiki.
 +
 
 +
///////////////////////////////////////////////////////////////////////////////////////////////////////////
 +
 
 +
ajaxPages = new Array("Special:RecentChanges", "Special:Watchlist", "Special:Log", "Special:NewFiles");
 +
 
 +
function setCookie(c_name,value,expiredays) {
 +
var exdate=new Date()
 +
exdate.setDate(exdate.getDate()+expiredays)
 +
document.cookie=c_name+ "=" +escape(value) + ((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
 +
}
 +
 
 +
function getCookie(c_name) {
 +
if (document.cookie.length>0) {
 +
c_start=document.cookie.indexOf(c_name + "=")
 +
if (c_start!=-1) {
 +
c_start=c_start + c_name.length+1
 +
c_end=document.cookie.indexOf(";",c_start)
 +
if (c_end==-1) c_end=document.cookie.length
 +
return unescape(document.cookie.substring(c_start,c_end))
 +
}
 
}
 
}
+
return ""
 
/* Import more specific scripts if necessary */
 
 
if (wgAction == "edit" || wgAction == "submit" || wgPageName == "Special:Upload") //scripts specific to editing pages
 
{
 
    importScript("MediaWiki:Common.js/edit.js")
 
 
}
 
}
else if (wgPageName == "Special:Watchlist") //watchlist scripts
+
 
{
+
function getXmlHttpRequestObject() {
    importScript("MediaWiki:Common.js/watchlist.js")
+
if (window.XMLHttpRequest) {
 +
return new XMLHttpRequest(); //Not Internet Explorer
 +
} else if(window.ActiveXObject) {
 +
return new ActiveXObject("Microsoft.XMLHTTP"); //Internet Explorer
 +
} else {
 +
//fail silently
 
}
 
}
 
 
/** Sysop Javascript *******************************************************
 
  *
 
  *  Description: Allows for sysop-specific Javascript at [[MediaWiki:Sysop.js]].
 
  */
 
function sysopFunctions() {
 
    if ( wgUserGroups && !window.disableSysopJS ) {
 
        for ( var g = 0; g < wgUserGroups.length; ++g ) {
 
            if ( wgUserGroups[g] == "sysop" ) {
 
                importScript( "MediaWiki:Sysop.js" );
 
                break;
 
            }
 
        }
 
    }
 
 
}
 
}
+
getRCDataRO = getXmlHttpRequestObject();
addOnloadHook( sysopFunctions );
+
var cr = new RegExp("\r", "gm");
+
var lf = new RegExp("\n", "gm");
+
var endText = new RegExp('</div>[\t\s]*?<!-- end content -->[\t\s]*?<div class="visualClear">', "mi");
/** WikiMiniAtlas *******************************************************
+
var rcTimer;
  *
+
var rcRefresh = 60000;
  *  Description: WikiMiniAtlas is a popup click and drag world map.
+
function preloadAJAXRC() {
  *              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
+
if (skin == "monaco") {
  *              The script itself is located on meta because it is used by many projects.
+
s = 1;
  *              See [[Meta:WikiMiniAtlas]] for more information.
 
  * Maintainers: [[User:Dschwen]]
 
  */
 
 
if (wgServer == "https://secure.wikimedia.org") {
 
    var metaBase = "https://secure.wikimedia.org/wikipedia/meta";
 
 
} else {
 
} else {
    var metaBase = "http://meta.wikimedia.org";
+
s = 0;
 +
}
 +
ajaxRCCookie = (getCookie("ajaxload-"+wgPageName)=="on") ? true:false;
 +
document.getElementsByTagName("h1")[0].innerHTML += ' <span style="font-size: xx-small; border-bottom: 1px dotted; cursor:help;" title="Enable auto-refreshing page loads">Automatically refresh:</span><input type="checkbox" id="ajaxRCtoggle" onClick="toggleRC();">';
 +
document.getElementById("ajaxRCtoggle").checked = ajaxRCCookie;
 +
if (getCookie("ajaxload-"+wgPageName)=="on") loadRCData();
 
}
 
}
importScriptURI(metaBase+"/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400")
+
 
+
function toggleRC() {
+
if (document.getElementById("ajaxRCtoggle").checked == true) {
/** Mobile Redirect Helper ************************************************
+
setCookie("ajaxload-"+wgPageName, "on", 30);
*
+
loadRCData();
*  Redirects to the mobile-optimized gateway at en.m.wikimedia.org
+
} else {
*  for viewers on iPhone, iPod Touch, Palm Pre, and Android devices.
+
setCookie("ajaxload-"+wgPageName, "off", 30);
*
+
clearTimeout(rcTimer);
*  You can turn off the redirect by setting the cookie "stopMobileRedirect=true"
 
*
 
*  This code cannot be imported, because the JS only loads after all other files
 
*  and this was causing major issues for users with mobile devices. Must be loaded
 
*  *before* the images and etc of the page on all mobile devices.
 
*
 
*  Maintainer: [[User:Brion VIBBER]], [[User:hcatlin]]
 
*/
 
if (/(Android|iPhone|iPod|webOS|NetFront|Opera Mini|SEMC-Browser|PlayStation Portable|Nintendo Wii)/.test(navigator.userAgent)) {
 
 
  var wgMainPageName = 'Main_Page';
 
 
  var stopMobileRedirectCookieExists = function() {
 
    return (document.cookie.indexOf("stopMobileRedirect=true") >= 0);
 
  }
 
 
  var mobileSiteLink = function() {
 
    if (wgCanonicalNamespace == 'Special' && wgCanonicalSpecialPageName == 'Search') {
 
        var pageLink = '?search=' + encodeURIComponent(document.getElementById('searchText').value);
 
    } else if (wgPageName == wgMainPageName) {
 
        var pageLink = '::Home'; // Special case
 
    } else {
 
        var pageLink = encodeURIComponent(wgPageName).replace('%2F','/').replace('%3A',':');
 
    }
 
    return 'http://' + wgContentLanguage + '.m.wikipedia.org/wiki/' + pageLink + "?wasRedirected=true"
 
  }
 
 
  if (!stopMobileRedirectCookieExists()) {
 
    document.location = mobileSiteLink();
 
  }
 
 
}
 
}
 
 
/* Scripts specific to Internet Explorer */
 
 
if (navigator.appName == "Microsoft Internet Explorer")
 
{
 
    /** Internet Explorer bug fix **************************************************
 
    *
 
    *  Description: Fixes IE horizontal scrollbar bug
 
    *  Maintainers: [[User:Tom-]]?
 
    */
 
 
    var oldWidth;
 
    var docEl = document.documentElement;
 
 
    function fixIEScroll()
 
    {
 
        if (!oldWidth || docEl.clientWidth > oldWidth)
 
            doFixIEScroll();
 
        else
 
            setTimeout(doFixIEScroll, 1);
 
 
        oldWidth = docEl.clientWidth;
 
    }
 
 
    function doFixIEScroll() {
 
        docEl.style.overflowX = (docEl.scrollWidth - docEl.clientWidth < 4) ? "hidden" : "";
 
    }
 
 
    document.attachEvent("onreadystatechange", fixIEScroll);
 
    document.attachEvent("onresize", fixIEScroll);
 
 
 
    /**
 
    * Remove need for CSS hacks regarding MSIE and IPA.
 
    */
 
    if (document.createStyleSheet) {
 
        document.createStyleSheet().addRule('.IPA', 'font-family: "Doulos SIL", "Charis SIL", Gentium, "DejaVu Sans", Code2000, "TITUS Cyberbit Basic", "Arial Unicode MS", "Lucida Sans Unicode", "Chrysanthi Unicode";');
 
    }
 
 
    // In print IE (7?) does not like line-height
 
    appendCSS( '@media print { sup, sub, p, .documentDescription { line-height: normal; }}');
 
 
    // IE overflow bug
 
    appendCSS('div.overflowbugx { overflow-x: scroll !important; overflow-y: hidden !important; } div.overflowbugy { overflow-y: scroll !important; overflow-x: hidden !important; }');
 
 
    //Import scripts specific to Internet Explorer 6
 
    if (navigator.appVersion.substr(22, 1) == "6") {
 
        importScript("MediaWiki:Common.js/IE60Fixes.js")
 
    }
 
 
}
 
}
+
 
+
function loadRCData() {
/* Test if an element has a certain class **************************************
+
if (getRCDataRO.readyState == 4 || getRCDataRO.readyState == 0) {
*
+
if (location.href.indexOf("/wiki/")) {
* Description: Uses regular expressions and caching for better performance.
+
rcURL = "http://" + location.hostname + "/wiki/" + wgPageName + location.search;
* Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]]
+
} else {
*/
+
rcURL = "http://" + location.hostname + "/" + wgPageName + location.search;
 
var hasClass = (function () {
 
    var reCache = {};
 
    return function (element, className) {
 
        return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className);
 
    };
 
})();
 
 
 
/** Interwiki links to featured articles ***************************************
 
*
 
*  Description: Highlights interwiki links to featured articles (or
 
*              equivalents) by changing the bullet before the interwiki link
 
*              into a star.
 
*  Maintainers: [[User:R. Koot]]
 
*/
 
 
function LinkFA()
 
{
 
    if ( document.getElementById( "p-lang" ) ) {
 
        var InterwikiLinks = document.getElementById( "p-lang" ).getElementsByTagName( "li" );
 
 
        for ( var i = 0; i < InterwikiLinks.length; i++ ) {
 
            if ( document.getElementById( InterwikiLinks[i].className + "-fa" ) ) {
 
                InterwikiLinks[i].className += " FA"
 
                InterwikiLinks[i].title = "This is a featured article in another language.";
 
            }
 
        }
 
    }
 
 
}
 
}
+
getRCDataRO.open("GET", rcURL, true);
addOnloadHook( LinkFA );
+
getRCDataRO.onreadystatechange = parseRCdata;
+
getRCDataRO.send(null);
 
/** Collapsible tables *********************************************************
 
*
 
*  Description: Allows tables to be collapsed, showing only the header. See
 
*              [[Wikipedia:NavFrame]].
 
*  Maintainers: [[User:R. Koot]]
 
*/
 
 
var autoCollapse = 2;
 
var collapseCaption = "hide";
 
var expandCaption = "show";
 
 
function collapseTable( tableIndex )
 
{
 
    var Button = document.getElementById( "collapseButton" + tableIndex );
 
    var Table = document.getElementById( "collapsibleTable" + tableIndex );
 
 
    if ( !Table || !Button ) {
 
        return false;
 
    }
 
 
    var Rows = Table.rows;
 
 
    if ( Button.firstChild.data == collapseCaption ) {
 
        for ( var i = 1; i < Rows.length; i++ ) {
 
            Rows[i].style.display = "none";
 
        }
 
        Button.firstChild.data = expandCaption;
 
    } else {
 
        for ( var i = 1; i < Rows.length; i++ ) {
 
            Rows[i].style.display = Rows[0].style.display;
 
        }
 
        Button.firstChild.data = collapseCaption;
 
    }
 
 
}
 
}
 
function createCollapseButtons()
 
{
 
    var tableIndex = 0;
 
    var NavigationBoxes = new Object();
 
    var Tables = document.getElementsByTagName( "table" );
 
 
    for ( var i = 0; i < Tables.length; i++ ) {
 
        if ( hasClass( Tables[i], "collapsible" ) ) {
 
 
            /* only add button and increment count if there is a header row to work with */
 
            var HeaderRow = Tables[i].getElementsByTagName( "tr" )[0];
 
            if (!HeaderRow) continue;
 
            var Header = HeaderRow.getElementsByTagName( "th" )[0];
 
            if (!Header) continue;
 
 
            NavigationBoxes[ tableIndex ] = Tables[i];
 
            Tables[i].setAttribute( "id", "collapsibleTable" + tableIndex );
 
 
            var Button    = document.createElement( "span" );
 
            var ButtonLink = document.createElement( "a" );
 
            var ButtonText = document.createTextNode( collapseCaption );
 
 
            Button.className = "collapseButton";  //Styles are declared in Common.css
 
 
            ButtonLink.style.color = Header.style.color;
 
            ButtonLink.setAttribute( "id", "collapseButton" + tableIndex );
 
            ButtonLink.setAttribute( "href", "javascript:collapseTable(" + tableIndex + ");" );
 
            ButtonLink.appendChild( ButtonText );
 
 
            Button.appendChild( document.createTextNode( "[" ) );
 
            Button.appendChild( ButtonLink );
 
            Button.appendChild( document.createTextNode( "]" ) );
 
 
            Header.insertBefore( Button, Header.childNodes[0] );
 
            tableIndex++;
 
        }
 
    }
 
 
    for ( var i = 0;  i < tableIndex; i++ ) {
 
        if ( hasClass( NavigationBoxes[i], "collapsed" ) || ( tableIndex >= autoCollapse && hasClass( NavigationBoxes[i], "autocollapse" ) ) ) {
 
            collapseTable( i );
 
        }
 
        else if ( hasClass( NavigationBoxes[i], "innercollapse" ) ) {
 
            var element = NavigationBoxes[i];
 
            while (element = element.parentNode) {
 
                if ( hasClass( element, "outercollapse" ) ) {
 
                    collapseTable ( i );
 
                    break;
 
                }
 
            }
 
        }
 
    }
 
 
}
 
}
+
 
addOnloadHook( createCollapseButtons );
+
function parseRCdata() {
+
if (getRCDataRO.readyState == 4) {
+
textFilter = new RegExp('<div id="bodyContent">.*?</div>[\t\s]*?<!-- end content -->[\t\s]*?<div class="visualClear">', "i");
/** Dynamic Navigation Bars (experimental) *************************************
+
rawRCdata = getRCDataRO.responseText.replace(cr, "").replace(lf, "");
*
+
filteredRCdata = textFilter.exec(rawRCdata);
*  Description: See [[Wikipedia:NavFrame]].
+
updatedText = filteredRCdata[0].replace('<div id="bodyContent">', "").replace(endText, "");
* Maintainers: UNMAINTAINED
+
document.getElementById("bodyContent").innerHTML = updatedText;
*/
+
rcTimer = setTimeout("loadRCData();", rcRefresh);
 
// set up the words in your language
 
var NavigationBarHide = '[' + collapseCaption + ']';
 
var NavigationBarShow = '[' + expandCaption + ']';
 
 
// shows and hides content and picture (if available) of navigation bars
 
// Parameters:
 
//    indexNavigationBar: the index of navigation bar to be toggled
 
function toggleNavigationBar(indexNavigationBar)
 
{
 
    var NavToggle = document.getElementById("NavToggle" + indexNavigationBar);
 
    var NavFrame = document.getElementById("NavFrame" + indexNavigationBar);
 
 
    if (!NavFrame || !NavToggle) {
 
        return false;
 
    }
 
 
    // if shown now
 
    if (NavToggle.firstChild.data == NavigationBarHide) {
 
        for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
 
            if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) {
 
                NavChild.style.display = 'none';
 
            }
 
        }
 
    NavToggle.firstChild.data = NavigationBarShow;
 
 
    // if hidden now
 
    } else if (NavToggle.firstChild.data == NavigationBarShow) {
 
        for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
 
            if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) {
 
                NavChild.style.display = 'block';
 
            }
 
        }
 
        NavToggle.firstChild.data = NavigationBarHide;
 
    }
 
 
}
 
}
 
// adds show/hide-button to navigation bars
 
function createNavigationBarToggleButton()
 
{
 
    var indexNavigationBar = 0;
 
    // iterate over all < div >-elements
 
    var divs = document.getElementsByTagName("div");
 
    for (var i = 0; NavFrame = divs[i]; i++) {
 
        // if found a navigation bar
 
        if (hasClass(NavFrame, "NavFrame")) {
 
 
            indexNavigationBar++;
 
            var NavToggle = document.createElement("a");
 
            NavToggle.className = 'NavToggle';
 
            NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar);
 
            NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');');
 
 
            var isCollapsed = hasClass( NavFrame, "collapsed" );
 
            /*
 
            * Check if any children are already hidden.  This loop is here for backwards compatibility:
 
            * the old way of making NavFrames start out collapsed was to manually add style="display:none"
 
            * to all the NavPic/NavContent elements.  Since this was bad for accessibility (no way to make
 
            * the content visible without JavaScript support), the new recommended way is to add the class
 
            * "collapsed" to the NavFrame itself, just like with collapsible tables.
 
            */
 
            for (var NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling) {
 
                if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) {
 
                    if ( NavChild.style.display == 'none' ) {
 
                        isCollapsed = true;
 
                    }
 
                }
 
            }
 
            if (isCollapsed) {
 
                for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
 
                    if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) {
 
                        NavChild.style.display = 'none';
 
                    }
 
                }
 
            }
 
            var NavToggleText = document.createTextNode(isCollapsed ? NavigationBarShow : NavigationBarHide);
 
            NavToggle.appendChild(NavToggleText);
 
 
            // Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked)
 
            for(var j=0; j < NavFrame.childNodes.length; j++) {
 
                if (hasClass(NavFrame.childNodes[j], "NavHead")) {
 
                    NavFrame.childNodes[j].appendChild(NavToggle);
 
                }
 
            }
 
            NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar);
 
        }
 
    }
 
 
}
 
}
+
 
addOnloadHook( createNavigationBarToggleButton );
+
for (x in ajaxPages) {
+
if (wgPageName == ajaxPages[x]) addOnloadHook(preloadAJAXRC);
 
/** Main Page layout fixes *********************************************************
 
*
 
*  Description: Adds an additional link to the complete list of languages available.
 
*  Maintainers: [[User:AzaToth]], [[User:R. Koot]], [[User:Alex Smotrov]]
 
*/
 
 
if (wgPageName == 'Main_Page' || wgPageName == 'Talk:Main_Page')
 
    addOnloadHook(function () {
 
        addPortletLink('p-lang', 'http://meta.wikimedia.org/wiki/List_of_Wikipedias',
 
                'Complete list', 'interwiki-completelist', 'Complete list of Wikipedias')
 
        var nstab = document.getElementById('ca-nstab-main')
 
        if (nstab && wgUserLanguage=='en') {
 
            while (nstab.firstChild) nstab = nstab.firstChild
 
            nstab.nodeValue = 'Main Page'
 
        }
 
    }
 
)
 
 
 
/** Table sorting fixes ************************************************
 
  *
 
  *  Description: Disables code in table sorting routine to set classes on even/odd rows
 
  *  Maintainers: [[User:Random832]]
 
  */
 
 
ts_alternate_row_colors = false;
 
 
 
/***** uploadwizard_newusers ********
 
* Switches in a message for non-autoconfirmed users at [[Wikipedia:Upload]]
 
*
 
*  Maintainers: [[User:Krimpet]]
 
****/
 
function uploadwizard_newusers() {
 
  if (wgNamespaceNumber == 4 && wgTitle == "Upload" && wgAction == "view") {
 
    var oldDiv = document.getElementById("autoconfirmedusers"),
 
        newDiv = document.getElementById("newusers");
 
    if (oldDiv && newDiv) {
 
      if (typeof wgUserGroups == "object" && wgUserGroups) {
 
        for (i = 0; i < wgUserGroups.length; i++) {
 
          if (wgUserGroups[i] == "autoconfirmed") {
 
            oldDiv.style.display = "block";
 
            newDiv.style.display = "none";
 
            return;
 
          }
 
        }
 
      }
 
      oldDiv.style.display = "none";
 
      newDiv.style.display = "block";
 
      return;
 
    }
 
  }
 
 
}
 
}
addOnloadHook(uploadwizard_newusers);
+
 
+
 
+
///////////////////////////////////////////////////////////////////////////////////////////////////////////
/** IPv6 AAAA connectivity testing **/
+
 
+
// END OF AJAX AUTO-REFRESH
var __ipv6wwwtest_factor = 100;
+
 
var __ipv6wwwtest_done = 0;
+
///////////////////////////////////////////////////////////////////////////////////////////////////////////
if ((wgServer != "https://secure.wikimedia.org") && (Math.floor(Math.random()*__ipv6wwwtest_factor)==42)) {
+
 
    importScript("MediaWiki:Common.js/IPv6.js");
+
//Link FA
 +
 
 +
var FA_enabled  = true;
 +
 
 +
function addfaicon() {
 +
// if disabled
 +
if (!FA_enabled) return;
 +
var pLang = document.getElementById("p-lang");
 +
if (!pLang) return;
 +
var lis = pLang.getElementsByTagName("li");
 +
for (var i = 0; i < lis.length; i++) {
 +
var li = lis[i];
 +
// only links with a corresponding Link_FA template are interesting
 +
if (!document.getElementById(li.className + "-fa"))   continue;
 +
// additional class so the template can be hidden with CSS
 +
li.className += " FA";
 +
// change title (mouse over)
 +
li.title = "This article is rated as featured article.";
 +
}
 
}
 
}
+
addOnloadHook(addfaicon);
/** Magic editintros ****************************************************
+
 
*
+
/* Magic edit intro. Copied from Wikipedia's MediaWiki:Common.js, modified for use in both Monaco and Monobook skins by Sikon*/
*  Description: Adds editintros on disambiguation pages and BLP pages.
+
function addEditIntro(name) {
*  Maintainers: [[User:RockMFR]]
+
// Top link
*/
+
var el = document.getElementById('ca-edit');
+
 
function addEditIntro(name)
+
if( typeof(el.href) == 'undefined' ) {
{
+
el = el.getElementsByTagName('a')[0];
  var el = document.getElementById('ca-edit');
+
}
  if (!el)
+
 
    return;
+
if (el)
  el = el.getElementsByTagName('a')[0];
+
el.href += '&editintro=' + name;
  if (el)
+
 
    el.href += '&editintro=' + name;
+
// Section links
 +
var spans = document.getElementsByTagName('span');
 +
for ( var i = 0; i < spans.length; i++ ) {
 +
el = null;
 +
 
 +
if (spans[i].className == 'editsection') {
 +
el = spans[i].getElementsByTagName('a')[0];
 +
if (el)
 +
el.href += '&editintro=' + name;
 +
} else if (spans[i].className == 'editsection-upper') {
 +
el = spans[i].getElementsByTagName('a')[0];
 +
if (el)
 +
el.href += '&editintro=' + name;
 +
}
 +
}
 
}
 
}
+
 
 
 
if (wgNamespaceNumber == 0) {
 
if (wgNamespaceNumber == 0) {
  addOnloadHook(function(){
+
addOnloadHook(function(){
    if (document.getElementById('disambigbox'))
+
var cats = document.getElementById('mw-normal-catlinks');
      addEditIntro('Template:Disambig_editintro');
+
if (!cats)
  });
+
return;
 +
cats = cats.getElementsByTagName('a');
 +
for (var i = 0; i < cats.length; i++) {
 +
if (cats[i].title == 'Category:Wookieepedia featured articles') {
 +
addEditIntro('Template:Featured_editintro');
 +
break;
 +
} else if (cats[i].title == 'Category:Wookieepedia good articles') {
 +
addEditIntro('Template:Good_editintro');
 +
break;
 +
} else if ( cats[i].title == 'Category:Articles undergoing major edits' || cats[i].title == 'Category:Works in progress' ) {
 +
addEditIntro('Template:Inuse_editintro‎');
 +
break;
 +
}
 +
}
 +
});
 +
}
 +
 
 +
// [[Main Page]] JS transform. Originally from [[Wikipedia:MediaWiki:Monobook.js]]/[[Wikipedia:MediaWiki:Common.js]] and may be further modified for local use.
 +
function mainPageRenameNamespaceTab() {
 +
try {
 +
var Node = document.getElementById( 'ca-nstab-main' ).firstChild;
 +
if ( Node.textContent ) {      // Per DOM Level 3
 +
Node.textContent = 'Main Page';
 +
} else if ( Node.innerText ) { // IE doesn't handle .textContent
 +
Node.innerText = 'Main Page';
 +
} else {                      // Fallback
 +
Node.replaceChild( Node.firstChild, document.createTextNode( 'Main Page' ) );
 +
}
 +
} catch(e) {
 +
// bailing out!
 +
}
 +
}
 +
 
 +
if ( wgTitle == 'Main Page' && ( wgNamespaceNumber == 0 || wgNamespaceNumber == 1 ) ) {
 +
addOnloadHook( mainPageRenameNamespaceTab );
 +
}
 
   
 
   
  addOnloadHook(function(){
+
/** Archive edit tab disabling *************************************
    var cats = document.getElementById('mw-normal-catlinks');
+
* Disables the edit tab on old forum topic pages to stop noobs bumping old topics.
    if (!cats)
+
* Page can still be edited by going via the edit tab on the history etc, or by
      return;
+
* typing the edit address manually.
    cats = cats.getElementsByTagName('a');
+
* By [[User:Spang|Spang]]
    for (var i = 0; i < cats.length; i++) {
+
* Monaco support by [[User:Uberfuzzy|]]
      if (cats[i].title == 'Category:Living people' || cats[i].title == 'Category:Possibly living people') {
+
* Removal of new section tab on talk pages added by [[User:Grunny|Grunny]]
        addEditIntro('Template:BLP_editintro');
+
*/
        break;
+
function disableOldForumEdit() {
      }
+
if( typeof( enableOldForumEdit ) != 'undefined' && enableOldForumEdit )
    }
+
return;
  });
+
if(!document.getElementById('old-forum-warning') ||
 +
!document.getElementById('ca-edit') )
 +
return;
 +
 
 +
if( skin == 'monaco' ) {
 +
editLink = document.getElementById('ca-edit');
 +
} else if( skin == 'monobook' ) {
 +
editLink = document.getElementById('ca-edit').firstChild;
 +
}
 +
 
 +
editLink.removeAttribute('href', 0);
 +
editLink.removeAttribute('title', 0);
 +
editLink.style.color = 'gray';
 +
editLink.innerHTML = 'Archived';
 +
 
 +
$('span.editsection-upper').remove();
 +
$('span.editsection').remove();
 +
 
 +
appendCSS( '#control_addsection, #ca-addsection { display: none !important; }' );
 
}
 
}
 +
addOnloadHook( disableOldForumEdit );
 
   
 
   
//</source>
+
// </nowiki></pre>

Revision as of 12:05, 10 May 2010

/* <pre><nowiki> */

importScript('MediaWiki:Functions.js');

// Load upload form JS
importScript('MediaWiki:Upload.js');
    

// onload stuff
var firstRun = true;

function loadFunc() {
	if( firstRun )
		firstRun = false;
	else
		return;

	initFunctionsJS();

	// DEPRECATED
	if( document.getElementById('infoboxinternal') != null && document.getElementById('infoboxend') != null ) {
		document.getElementById('infoboxend').innerHTML = '<a id="infoboxtoggle" href="javascript:infoboxToggle()">[Hide]</a>';
	}

	// Upload form - need to run before adding hide buttons
	setupUploadForm();

	addHideButtons();

	if( document.getElementById('mp3-navlink') != null ) {
		document.getElementById('mp3-navlink').onclick = onArticleNavClick;
		document.getElementById('mp3-navlink').getElementsByTagName('a')[0].href = 'javascript:void(0)';
	}

	if( window.storagePresent )
		initVisibility();

	rewriteSearchFormLink();
	fillEditSummaries();
	fillDeleteReasons();
	fillPreloads();

	substUsername();
	substUsernameTOC();
	rewriteTitle();
	showEras('title-eraicons');
	showEras('title-shortcut');
	rewriteHover();
	addAlternatingRowColors();
	// replaceSearchIcon(); this is now called from MediaWiki:Monobook.js
	fixSearch();

	var body = document.getElementsByTagName('body')[0];
	var bodyClass = body.className;

	if( !bodyClass || (bodyClass.indexOf('page-') == -1) ) {
		var page = window.pageName.replace(/\W/g, '_');
		body.className += ' page-' + page;
	}

	if( typeof(onPageLoad) != "undefined" ) {
		onPageLoad();
	}
}

function infoboxToggle() {
	var page = window.pageName.replace(/\W/g, '_');
	var nowShown;

	if(document.getElementById('infoboxtoggle').innerHTML == '[Hide]') {
		document.getElementById('infoboxinternal').style.display = 'none';
		document.getElementById('infoboxtoggle').innerHTML = '[Show]';
		nowShown = false;
	} else {
		document.getElementById('infoboxinternal').style.display = 'block';
		document.getElementById('infoboxtoggle').innerHTML = '[Hide]';
		nowShown = true;
	}

	if(window.storagePresent) {
		var storage = globalStorage[window.location.hostname];
		storage.setItem('infoboxshow-' + page, nowShown);
	}
}

function fillEditSummaries() {
	var label = document.getElementById("wpSummaryLabel");

	if( label == null )
		return;

	var comboString = "Standard summaries: <select id='stdSummaries' onchange='onStdSummaryChange()'>";
	comboString += "</select><br />";
	label.innerHTML = comboString + label.innerHTML;

	requestComboFill('stdSummaries', 'Template:Stdsummaries');
}

function onStdSummaryChange() {
	var combo = document.getElementById("stdSummaries");
	var value = combo.options[combo.selectedIndex].value;

	if( value != "" ) {
		if( skin == 'monaco' ) {
			document.getElementById("wpSummaryEnhanced").value = value;
		} else {
			document.getElementById("wpSummary").value = value;
		}
	}
}

function fillDeleteReasons() {
	var label = document.getElementById("wpReason");

	if( label == null )
		return;

	label = document.getElementById("contentSub");

	if( label == null )
		return;
}

function onStdReasonChange() {
	var combo = document.getElementById("stdReasons");
	var value = combo.options[combo.selectedIndex].value;

	if( value != "" )
		document.getElementById("wpReason").value = value;
}

function fillPreloads() {
	var div = document.getElementById("lf-preload");

	if( div == null )
		return;

	div.style.display = 'block';
	var span = document.getElementById('lf-preload-cbox');

	var comboString = "<select id='stdPreloads' onchange='onPreloadChange()'>";
	comboString += "</select>";
	span.innerHTML = comboString;
    
	span = document.getElementById('lf-preload-pagename');
	span.innerHTML = '<input type="text" class="textbox" />';
	span = document.getElementById('lf-preload-button');
	span.innerHTML = '<input type="button" class="button" value="Insert" onclick="doCustomPreload()" />';

	requestComboFill('stdPreloads', "Template:Stdpreloads");
}

function doCustomPreload() {
	doPreload(document.getElementById('lf-preload-pagename').getElementsByTagName('input')[0].value);
}

function onPreloadChange() {
	var combo = document.getElementById("stdPreloads");
	var value = combo.options[combo.selectedIndex].value;

	if( value == "" )
		return;

	value = "Template:" + value + "/preload";
	value = value.replace(" ", "_");
	doPreload(value);
}

// ============================================================
// BEGIN JavaScript title rewrite

function rewriteTitle() {
	if( typeof( window.SKIP_TITLE_REWRITE ) != 'undefined' && window.SKIP_TITLE_REWRITE )
		return;
	var titleDiv = document.getElementById('title-meta');

	if( titleDiv == null )
		return;

	var cloneNode = titleDiv.cloneNode(true);
	var firstHeading = getFirstHeading();
	var node = firstHeading.childNodes[0];

	// new, then old!
	firstHeading.replaceChild(cloneNode, node);
	cloneNode.style.display = "inline";

	var titleAlign = document.getElementById('title-align');
	firstHeading.style.textAlign = titleAlign.childNodes[0].nodeValue;
}

function showEras(className) {
	if( typeof( SKIP_ERAS ) != 'undefined' && SKIP_ERAS )
		return;

	var titleDiv = document.getElementById( className );

	if( titleDiv == null || titleDiv == undefined )
		return;

	var cloneNode = titleDiv.cloneNode(true);
	var firstHeading = getFirstHeading();
	firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
	cloneNode.style.display = "block";
}
// END JavaScript title rewrite

function initVisibility() {
	var storage = globalStorage[window.location.hostname];

	var page = window.pageName.replace(/\W/g,'_');
	var show = storage.getItem('infoboxshow-' + page);

	if( show == 'false' ) {
		infoboxToggle();
	}
    
	var hidables = getElementsByClass('hidable');
    
	for(var i = 0; i < hidables.length; i++) {
		show = storage.getItem('hidableshow-' + i  + '_' + page);
        
		if( show == 'false' ) {
			var content = getElementsByClass('hidable-content', hidables[i]);
			var button = getElementsByClass('hidable-button', hidables[i]);
            
			if( content != null && content.length > 0 &&
				button != null && button.length > 0 && content[0].style.display != 'none' )
			{
				button[0].onclick('bypass');
			}
		} else if( show == 'true' ) {
			var content = getElementsByClass('hidable-content', hidables[i]);
			var button = getElementsByClass('hidable-button', hidables[i]);
            
			if( content != null && content.length > 0 &&
				button != null && button.length > 0 && content[0].style.display == 'none' )
			{
				button[0].onclick('bypass');
			}
		}
	}
}

function onArticleNavClick() {
	var div = document.getElementById('mp3-nav');

	if( div.style.display == 'block' )
		div.style.display = 'none';
	else
		div.style.display = 'block';
}

function addAlternatingRowColors() {
	var infoboxes = getElementsByClass('infobox', document.getElementById('content'));

	if( infoboxes.length == 0 )
		return;

	for( var k = 0; k < infoboxes.length; k++ ) {
		var infobox = infoboxes[k];

		var rows = infobox.getElementsByTagName('tr');
		var changeColor = false;

		for( var i = 0; i < rows.length; i++ ) {
			if(rows[i].className.indexOf('infoboxstopalt') != -1)
			break;

			var ths = rows[i].getElementsByTagName('th');

			if( ths.length > 0 ) {
				continue;
			}

			if(changeColor)
				rows[i].style.backgroundColor = '#f9f9f9';
			changeColor = !changeColor;
		}
	}
}

function addHideButtons() {
	var hidables = getElementsByClass('hidable');
    
	for( var i = 0; i < hidables.length; i++ ) {
		var box = hidables[i];
		var button = getElementsByClass('hidable-button', box, 'span');
        
		if( button != null && button.length > 0 ) {
			button = button[0];
            
			button.onclick = toggleHidable;
			button.appendChild( document.createTextNode('[Hide]') );

			if( new ClassTester('start-hidden').isMatch(box) )
				button.onclick('bypass');
		}
	}
}

function toggleHidable(bypassStorage) {
	var parent = getParentByClass('hidable', this);
	var content = getElementsByClass('hidable-content', parent);
	var nowShown;
    
	if( content != null && content.length > 0 ) {
		content = content[0];
        
		if( content.style.display == 'none' ) {
			content.style.display = content.oldDisplayStyle;
			this.firstChild.nodeValue = '[Hide]';
			nowShown = true;
		} else {
			content.oldDisplayStyle = content.style.display;
			content.style.display = 'none';
			this.firstChild.nodeValue = '[Show]';
			nowShown = false;
		}
        
		if( window.storagePresent && ( typeof( bypassStorage ) == 'undefined' || bypassStorage != 'bypass' ) ) {
			var page = window.pageName.replace(/\W/g, '_');
			var items = getElementsByClass('hidable');
			var item = -1;
            
			for( var i = 0; i < items.length; i++ ) {
				if( items[i] == parent ) {
					item = i;
					break;
				}
			}
            
			if( item == -1 ) {
				return;
			}
        
			var storage = globalStorage[window.location.hostname];
			storage.setItem('hidableshow-' + item + '_' + page, nowShown);
		}
	}
}

function substUsernameTOC() {
	var toc = document.getElementById('toc');
	var userpage = document.getElementById('pt-userpage');
    
	if( !userpage || !toc )
		return;
        
	var username = userpage.firstChild.firstChild.nodeValue;
	var elements = getElementsByClass('toctext', toc, 'span');

	for( var i = 0; i < elements.length; i++ )
		elements[i].firstChild.nodeValue = elements[i].firstChild.nodeValue.replace('<insert name here>', username);
}

// this was moved to Monobook.js --TOR <tor@wikia-inc.com>
function replaceSearchIcon() {
	return;
}

function rand(n) {
	return Math.round(Math.random() * n);
}

// Reskin parser script from [[Uncyclopedia:MediaWiki:Uncyclopedia.js]]
skinjs = {
	"Logout": "Logout.js"
}

var re = RegExp("(.*) - Wookieepedia, the Star Wars Wiki");
var matches = re.exec(document.title);

var skinNamejs;

if (matches) {
	if (skinjs[matches[1]] != undefined) {
		skinNamejs = (skinjs[matches[1]].length > 0) ? skinjs[matches[1]] : matches[1] + '.js';
		document.write('<script type="text/javascript" src="/index.php?title=MediaWiki:Skin/' + skinNamejs + '&action=raw&ctype=text/javascript"></script>');
	}
}

function fixSearch() {
	var button = document.getElementById('searchSubmit');

	if( button )
		button.name = 'go';
}

//addOnloadHook(loadFunc);

$(loadFunc);

///////////////////////////////////////////////////////////////////////////////////////////////////////////

// ADVANCED AJAX AUTO-REFRESHING ARTICLES
// Code courtesy of "pcj" of WoWWiki.

///////////////////////////////////////////////////////////////////////////////////////////////////////////

ajaxPages = new Array("Special:RecentChanges", "Special:Watchlist", "Special:Log", "Special:NewFiles");

function setCookie(c_name,value,expiredays) {
var exdate=new Date()
exdate.setDate(exdate.getDate()+expiredays)
document.cookie=c_name+ "=" +escape(value) + ((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
}

function getCookie(c_name) {
if (document.cookie.length>0) {
c_start=document.cookie.indexOf(c_name + "=")
if (c_start!=-1) { 
c_start=c_start + c_name.length+1 
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length
return unescape(document.cookie.substring(c_start,c_end))
} 
}
return ""
}

function getXmlHttpRequestObject() {
if (window.XMLHttpRequest) {
return new XMLHttpRequest(); //Not Internet Explorer
} else if(window.ActiveXObject) {
return new ActiveXObject("Microsoft.XMLHTTP"); //Internet Explorer
} else {
//fail silently
}
}
getRCDataRO = getXmlHttpRequestObject();
var cr = new RegExp("\r", "gm");
var lf = new RegExp("\n", "gm");
var endText = new RegExp('</div>[\t\s]*?<!-- end content -->[\t\s]*?<div class="visualClear">', "mi");
var rcTimer;
var rcRefresh = 60000;
function preloadAJAXRC() {
if (skin == "monaco") {
s = 1;
} else {
s = 0;
}
ajaxRCCookie = (getCookie("ajaxload-"+wgPageName)=="on") ? true:false;
document.getElementsByTagName("h1")[0].innerHTML += ' <span style="font-size: xx-small; border-bottom: 1px dotted; cursor:help;" title="Enable auto-refreshing page loads">Automatically refresh:</span><input type="checkbox" id="ajaxRCtoggle" onClick="toggleRC();">';
document.getElementById("ajaxRCtoggle").checked = ajaxRCCookie;
if (getCookie("ajaxload-"+wgPageName)=="on") loadRCData();
}

function toggleRC() {
if (document.getElementById("ajaxRCtoggle").checked == true) {
setCookie("ajaxload-"+wgPageName, "on", 30);
loadRCData();
} else {
setCookie("ajaxload-"+wgPageName, "off", 30);
clearTimeout(rcTimer);
}
}

function loadRCData() {
if (getRCDataRO.readyState == 4 || getRCDataRO.readyState == 0) {
if (location.href.indexOf("/wiki/")) {
rcURL = "http://" + location.hostname + "/wiki/" + wgPageName + location.search;
} else {
rcURL = "http://" + location.hostname + "/" + wgPageName + location.search;
}
getRCDataRO.open("GET", rcURL, true);
getRCDataRO.onreadystatechange = parseRCdata;
getRCDataRO.send(null);
}
}

function parseRCdata() {
if (getRCDataRO.readyState == 4) {
textFilter = new RegExp('<div id="bodyContent">.*?</div>[\t\s]*?<!-- end content -->[\t\s]*?<div class="visualClear">', "i");
rawRCdata = getRCDataRO.responseText.replace(cr, "").replace(lf, "");
filteredRCdata = textFilter.exec(rawRCdata);
updatedText = filteredRCdata[0].replace('<div id="bodyContent">', "").replace(endText, "");
document.getElementById("bodyContent").innerHTML = updatedText;
rcTimer = setTimeout("loadRCData();", rcRefresh);
}
}

for (x in ajaxPages) {
if (wgPageName == ajaxPages[x]) addOnloadHook(preloadAJAXRC);
}


///////////////////////////////////////////////////////////////////////////////////////////////////////////

// END OF AJAX AUTO-REFRESH

///////////////////////////////////////////////////////////////////////////////////////////////////////////

//Link FA

var FA_enabled  = true;

function addfaicon() {
	// if disabled
	if (!FA_enabled) return;
	var pLang = document.getElementById("p-lang");
	if (!pLang) return;
	var lis = pLang.getElementsByTagName("li");
	for (var i = 0; i < lis.length; i++) {
		var li = lis[i];
		// only links with a corresponding Link_FA template are interesting
		if (!document.getElementById(li.className + "-fa"))   continue;
		// additional class so the template can be hidden with CSS
		li.className += " FA";
		// change title (mouse over)
		li.title = "This article is rated as featured article.";
	}
}
addOnloadHook(addfaicon);

/* Magic edit intro. Copied from Wikipedia's MediaWiki:Common.js, modified for use in both Monaco and Monobook skins by Sikon*/
function addEditIntro(name) {
	// Top link
	var el = document.getElementById('ca-edit');

	if( typeof(el.href) == 'undefined' ) {
		el = el.getElementsByTagName('a')[0];
	}

	if (el)
		el.href += '&editintro=' + name;

	// Section links
	var spans = document.getElementsByTagName('span');
	for ( var i = 0; i < spans.length; i++ ) {
		el = null;

		if (spans[i].className == 'editsection') {
			el = spans[i].getElementsByTagName('a')[0];
			if (el)
				el.href += '&editintro=' + name;
		} else if (spans[i].className == 'editsection-upper') {
			el = spans[i].getElementsByTagName('a')[0];
			if (el)
				el.href += '&editintro=' + name;
		}
	}
}

if (wgNamespaceNumber == 0) {
	addOnloadHook(function(){
		var cats = document.getElementById('mw-normal-catlinks');
		if (!cats)
			return;
		cats = cats.getElementsByTagName('a');
		for (var i = 0; i < cats.length; i++) {
			if (cats[i].title == 'Category:Wookieepedia featured articles') {
				addEditIntro('Template:Featured_editintro');
				break;
			} else if (cats[i].title == 'Category:Wookieepedia good articles') {
				addEditIntro('Template:Good_editintro');
				break;
			} else if ( cats[i].title == 'Category:Articles undergoing major edits' || cats[i].title == 'Category:Works in progress' ) {
				addEditIntro('Template:Inuse_editintro‎');
				break;
			}
		}
	});
}

// [[Main Page]] JS transform. Originally from [[Wikipedia:MediaWiki:Monobook.js]]/[[Wikipedia:MediaWiki:Common.js]] and may be further modified for local use.
function mainPageRenameNamespaceTab() {
	try {
		var Node = document.getElementById( 'ca-nstab-main' ).firstChild;
		if ( Node.textContent ) {      // Per DOM Level 3
			Node.textContent = 'Main Page';
		} else if ( Node.innerText ) { // IE doesn't handle .textContent
			Node.innerText = 'Main Page';
		} else {                       // Fallback
			Node.replaceChild( Node.firstChild, document.createTextNode( 'Main Page' ) ); 
		}
	} catch(e) {
		// bailing out!
	}
}

if ( wgTitle == 'Main Page' && ( wgNamespaceNumber == 0 || wgNamespaceNumber == 1 ) ) {
	addOnloadHook( mainPageRenameNamespaceTab );
} 
 
/** Archive edit tab disabling *************************************
 * Disables the edit tab on old forum topic pages to stop noobs bumping old topics.
 * Page can still be edited by going via the edit tab on the history etc, or by 
 * typing the edit address manually.
 * By [[User:Spang|Spang]]
 * Monaco support by [[User:Uberfuzzy|]]
 * Removal of new section tab on talk pages added by [[User:Grunny|Grunny]]
 */
function disableOldForumEdit() {
	if( typeof( enableOldForumEdit ) != 'undefined' && enableOldForumEdit )
		return;
	if(!document.getElementById('old-forum-warning') ||
		 !document.getElementById('ca-edit') )
		return;

	if( skin == 'monaco' ) {
		editLink = document.getElementById('ca-edit');
	} else if( skin == 'monobook' ) {
		editLink = document.getElementById('ca-edit').firstChild;
	}

	editLink.removeAttribute('href', 0);
	editLink.removeAttribute('title', 0);
	editLink.style.color = 'gray';
	editLink.innerHTML = 'Archived';

	$('span.editsection-upper').remove();
	$('span.editsection').remove();

	appendCSS( '#control_addsection, #ca-addsection { display: none !important; }' );
}
addOnloadHook( disableOldForumEdit );
 
// </nowiki></pre>