MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus The Crowdsourced Resource-Based Economy Knowledgebase
Wechseln zu: Navigation, Suche
K ('Geo' is undefined)
K (1 Version)
 
(Eine dazwischenliegende Version von einem Benutzer wird nicht angezeigt)
Zeile 1: Zeile 1:
/* Jedes JavaScript hier wird für alle Benutzer für jede Seite geladen. */
 
 
 
/**
 
/**
  * Sortierung von Umlauten und ß auch ohne [[Vorlage:SortKey]] ermöglichen
+
  * Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
  * For jquery.tablesorter.js
+
  * loaded for all users on every wiki page. If possible create a gadget that is
 +
* enabled by default instead of adding it here (since gadgets are fully
 +
* optimized ResourceLoader modules with possibility to add dependencies etc.)
 +
*
 +
* Since Common.js isn't a gadget, there is no place to declare its
 +
* dependencies, so we have to lazy load them with mw.loader.using on demand and
 +
* then execute the rest in the callback. In most cases these dependencies will
 +
* be loaded (or loading) already and the callback will not be delayed. In case a
 +
* dependency hasn't arrived yet it'll make sure those are loaded before this.
 
  */
 
  */
mw.config.set( 'tableSorterCollation', {'Ä':'A', 'Ö':'O', 'Ü':'U', 'ä':'a', 'ö':'o', 'ü':'u', 'ß':'ss'} );
+
/*global mw, $, importStylesheet, importScript */
 +
/*jshint curly:false eqnull:true, strict:false, browser:true, */
 +
mw.loader.using( ['mediawiki.util', 'mediawiki.notify', 'jquery.client'], function () {
 +
/* Begin of mw.loader.using callback */
  
 
/**
 
/**
  * Stay on the same server as much as possible
+
  * Main Page layout fixes
  * Load page: [[MediaWiki:Common.js/relative.js]]
+
*
 +
* Description: Adds an additional link to the complete list of languages available.
 +
  * Maintainers: [[User:AzaToth]], [[User:R. Koot]], [[User:Alex Smotrov]]
 
  */
 
  */
if( mw.config.get( 'wgNamespaceNumber' ) > 0 ) { //not in main space and special pages
+
if ( mw.config.get( 'wgPageName' ) === 'Main_Page' || mw.config.get( 'wgPageName' ) === 'Talk:Main_Page' ) {
mw.loader.using( [ 'user', 'mediawiki.user', 'user.options' ], function() { //wait for overrides in user.js
+
    $( document ).ready( function () {
  if( mw.user.options.get( 'relativeProtocols', true ) ) { //disable in user.js, if not needed
+
        mw.util.addPortletLink( 'p-lang', '//meta.wikimedia.org/wiki/List_of_Wikipedias',
  mw.loader.load( '//de.wikipedia.org/w/index.php?title=MediaWiki:Common.js/relative.js'
+
            'Complete list', 'interwiki-completelist', 'Complete list of Wikipedias' );
                  + '&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' );
+
    } );
  }
+
});
+
 
}
 
}
  
 
/**
 
/**
  * load the Edittools on [[Special:Upload]] and prefill the summary textarea
+
  * Redirect User:Name/skin.js and skin.css to the current skin's pages
  * Load pages: [[MediaWiki:Onlyifuploading.js]], [[MediaWiki:Onlyifediting.js]]
+
  * (unless the 'skin' page really exists)
 +
* @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
 +
* @rev: 2
 
  */
 
  */
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload') {
+
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
importScript("MediaWiki:Onlyifuploading.js");
+
    var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
importScript("MediaWiki:Onlyifediting.js");
+
    /* Make sure there was a part before and after the slash
 +
      and that the latter is 'skin.js' or 'skin.css' */
 +
    if ( titleParts.length == 2 ) {
 +
        var userSkinPage = titleParts.shift() + '/' + mw.config.get( 'skin' );
 +
        if ( titleParts.slice( -1 ) == 'skin.js' ) {
 +
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.js' );
 +
        } else if ( titleParts.slice( -1 ) == 'skin.css' ) {
 +
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.css' );
 +
        }
 +
    }
 
}
 
}
  
 
/**
 
/**
  * load the Edittools ([[MediaWiki:Edittools]], the part under the edit form)
+
  * Map addPortletLink to mw.util
  * Load page: [[MediaWiki:Onlyifediting.js]]
+
  *
 +
* @deprecated: Use mw.util.addPortletLink instead.
 
  */
 
  */
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' ) {
+
window.addPortletLink = function () {
importScript("MediaWiki:Onlyifediting.js");
+
    return mw.util.addPortletLink.apply( mw.util, arguments );
}
+
};
  
 
/**
 
/**
  * Nachrichten aus [[MediaWiki:watchlist-summary]] auf der Beobachtungliste ausblenden
+
  * Extract a URL parameter from the current URL
  * Load page: [[MediaWiki:Common.js/watchlist.js]]
+
  *
 +
* @deprecated: Use mw.util.getParamValue with proper escaping
 
  */
 
  */
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist') {
+
window.getURLParamValue = function () {
importScript("MediaWiki:Common.js/watchlist.js");
+
    return mw.util.getParamValue.apply( mw.util, arguments );
}
+
};
  
//=============================================================
+
/**  
//*** Configuration for "star" logo in front of interwiki links to Featured Articles
+
* Test if an element has a certain class
//*** and green symbol in front of interwiki links to Good Articles
+
*
/** set in Special:Mypage/common.js to switch off this "feature"
+
* @deprecated: Use $(element).hasClass() instead.
mw.user.options.set( 'linkFA_enabled', false );
+
* star logo for featured articles in other languages,
+
* see Template:Link_FA / Template:Link_GA and MediaWiki:Common.css
+
 
  */
 
  */
mw.loader.using( [ 'user', 'mediawiki.user', 'user.options' ], function() { $(function() {
+
window.hasClass = function ( element, className ) {
    /** description that is displayed when cursor hovers above FA interwiki links */
+
    return $( element ).hasClass( className );
    var linkFA_description = "Dieser Artikel wurde als exzellent bewertet.";
+
};
    var linkGA_description = "Dieser Artikel wurde als lesenswert bewertet.";
+
  
    // linkFA_bullet/linkGA_bullet and linkFA_style/linkGA_Style werden nur für cologneblue, nostalgia and standard verwendet,
+
/**
    // für monobook, modern und simple siehe [[MediaWiki:Common.css]], vector hat in [[MediaWiki:Vector.css] eigene Definitionen
+
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
 +
* @rev 5
 +
*/
 +
// CSS
 +
var extraCSS = mw.util.getParamValue( 'withCSS' );
 +
if ( extraCSS ) {
 +
if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
 +
importStylesheet( extraCSS );
 +
} else {
 +
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
 +
}
 +
}
  
    /** image to use instead of the standard bullet (for cologneblue, nostalgia and standard */
+
// JS
    var linkFA_bullet = "//upload.wikimedia.org/wikipedia/commons/d/d0/Monobook-bullet-star-transparent.png";
+
var extraJS = mw.util.getParamValue( 'withJS' );
    var linkGA_bullet = "//upload.wikimedia.org/wikipedia/commons/a/a1/Monobook-bullet-star-gray.png";
+
if ( extraJS ) {
 +
if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
 +
importScript( extraJS );
 +
} else {
 +
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
 +
}
 +
}
  
    /** style to use for the linkFA_bullet/LinkGA_bullet img */
+
/**
     var linkFA_style = "margin-right: 0.2em;";
+
* Import more specific scripts if necessary
     var linkGA_style = "margin-right: 0.2em;";
+
*/
 +
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
 +
    /* scripts specific to editing pages */
 +
     importScript( 'MediaWiki:Common.js/edit.js' );
 +
} else if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
 +
     /* watchlist scripts */
 +
    importScript( 'MediaWiki:Common.js/watchlist.js' );
 +
}
 +
if ( mw.config.get( 'wgNamespaceNumber' ) === 6 ) {
 +
    /* file description page scripts */
 +
    importScript( 'MediaWiki:Common.js/file.js' );
 +
}
  
    // early exit when disabled
+
/**
    if ( !mw.user.options.get( 'linkFA_enabled', true ) ) {
+
* Load scripts specific to Internet Explorer
        return;
+
*/
    }
+
if ( $.client.profile().name === 'msie' ) {
 +
    importScript( 'MediaWiki:Common.js/IEFixes.js' );
 +
}
  
    // skins that can be handled the CSS class way
+
/**
    var skin = mw.config.get( 'skin' );
+
* Fix for Windows XP Unicode font rendering
     if (skin === "monobook" || skin === "simple" || skin === "modern" || skin === "vector" ) {
+
*/
        linkFA_CSS();
+
if ( navigator.appVersion.search(/windows nt 5/i) !== -1 ) {
    }
+
     mw.util.addCSS( '.IPA { font-family: "Lucida Sans Unicode", "Arial Unicode MS"; } ' +
    else if (skin === "cologneblue" || skin === "nostalgia" || skin === "standard") {
+
                '.Unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode"; } ' );
        linkFA_decorate();
+
}
    }
+
  
    /** skin == "monobook" || skin == "simple" || skin="modern" || skin== "vector" */
+
/**
    function linkFA_CSS() {
+
* WikiMiniAtlas
        // links are to replaced in p-lang only
+
*
        var pLang = document.getElementById("p-lang");
+
* Description: WikiMiniAtlas is a popup click and drag world map.
        if (!pLang) return;
+
*              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
        var lis = pLang.getElementsByTagName("li");
+
*              The script itself is located on meta because it is used by many projects.
        for (var i = 0; i < lis.length; i++) {
+
*              See [[Meta:WikiMiniAtlas]] for more information.
            var li = lis[i];
+
* Maintainers: [[User:Dschwen]]
            // only links with a corresponding Link_FA template are interesting
+
*/
            if (document.getElementById(li.className + "-fa")) {
+
( function () {
              li.className += " FA";        // additional class so the template can be hidden with CSS
+
    var require_wikiminiatlas = false;
              li.title = linkFA_description; // change title
+
    var coord_filter = /geohack/;
              continue;
+
    $( document ).ready( function() {
            }
+
        $( 'a.external.text' ).each( function( key, link ) {
             if (document.getElementById(li.className + "-ga")) {
+
             if ( link.href && coord_filter.exec( link.href ) ) {
              li.className += " GA";         // additional class so the template can be hidden with CSS
+
                require_wikiminiatlas = true;
              li.title = linkGA_description; // change title
+
                // break from loop
              continue;
+
                return false;
 
             }
 
             }
 +
        } );
 +
        if ( $( 'div.kmldata' ).length ) {
 +
            require_wikiminiatlas = true;
 
         }
 
         }
     }
+
        if ( require_wikiminiatlas ) {
 +
            mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
 +
        }
 +
     } );
 +
} )();
  
    /** skin == "cologneblue" || skin == "nostalgia" || skin == "standard" */
+
/**
    function linkFA_decorate() {
+
* Interwiki links to featured articles ***************************************
        // these root elements can contain FA-/GA-links
+
*
        var rootIds = new Array("topbar", "footer");
+
* Description: Highlights interwiki links to featured articles (or
        for (var i=0; i<rootIds.length; i++) {
+
*              equivalents) by changing the bullet before the interwiki link
            var root    = document.getElementById(rootIds[i]);
+
*              into a star.
            if (!root) continue;
+
* Maintainers: [[User:R. Koot]]
 +
*/
 +
function LinkFA() {
 +
    if ( document.getElementById( 'p-lang' ) ) {
 +
        var InterwikiLinks = document.getElementById( 'p-lang' ).getElementsByTagName( 'li' );
  
            // if the root exists, try to decorate all the links within
+
        for ( var i = 0; i < InterwikiLinks.length; i++ ) {
            var links  = root.getElementsByTagName("a");
+
            if ( document.getElementById( InterwikiLinks[i].className + '-fa' ) ) {
            for (var j=0; j<links.length; j++) {
+
                InterwikiLinks[i].className += ' FA';
                decorate(links[j], "-fa", linkFA_bullet, linkFA_description, linkFA_style);
+
                 InterwikiLinks[i].title = 'This is a featured article in another language.';
                 decorate(links[j], "-ga", linkGA_bullet, linkGA_description, linkGA_style);
+
            } else if ( document.getElementById( InterwikiLinks[i].className + '-ga' ) ) {
 +
                InterwikiLinks[i].className += ' GA';
 +
                InterwikiLinks[i].title = 'This is a good article in another language.';
 
             }
 
             }
 
         }
 
         }
 
     }
 
     }
 +
}
  
    /** id necessary, modify a link to show the FA- or GA-star (older) */
+
$( LinkFA );
    function decorate(link, idSuffix, bullet, description, style) {
+
        var lang    = link.hostname.split(".")[0];
+
        var fa      = document.getElementById("interwiki-" + lang + idSuffix);
+
        if (!fa) return;
+
  
// build an image-node for the FA-star
+
/**
var img = document.createElement("img");
+
* Collapsible tables *********************************************************
img.setAttribute("src",    bullet);
+
*
img.setAttribute("alt",     description);
+
* Description: Allows tables to be collapsed, showing only the header. See
img.setAttribute("style",  style);
+
*              [[Wikipedia:NavFrame]].
// decorate the link with the image
+
* Maintainers: [[User:R. Koot]]
link.appendChild(img);
+
*/
link.appendChild(link.removeChild(link.firstChild));
+
link.setAttribute("title", description);
+
    }
+
})});
+
  
/*
+
var autoCollapse = 2;
## ProjektLinks ##
+
var collapseCaption = 'hide';
by Skript von [[user:Merlissimo]] (Idee basierend auf http://de.wiktionary.org/wiki/MediaWiki:Common.js von [[User:Pathoschild]] und [[wikt:de:User:Melancholie]])
+
var expandCaption = 'show';
erzeugt Sitebar-Interwiki zu Schwesterprojekten aufgrund von Vorlage [[Vorlage:InterProjekt]]
+
siehe auch Feature-Request [[bugzilla:708]]
+
*/
+
mw.loader.using( [ 'mediawiki.util' ], function() { jQuery( document ).ready(function() {
+
    var iProject = document.getElementById("interProject");
+
    if(!iProject) return;
+
    var sistersibling = document.getElementById("p-lang");
+
    if(!sistersibling) sistersibling= document.getElementById("p-tb");
+
    if(!sistersibling) return;
+
    //Link auf Parennode des Portletmenues
+
    var sisterparent = sistersibling.parentNode;
+
  
    //Erzeuge neues Portletmenue
+
window.collapseTable = function ( tableIndex ) {
    var sisterprojectnav = document.createElement("div");
+
     var Button = document.getElementById( 'collapseButton' + tableIndex );
     sisterprojectnav.id = "p-sisterprojects";
+
     var Table = document.getElementById( 'collapsibleTable' + tableIndex );
    sisterprojectnav.className = sistersibling.className;
+
 
    sisterprojectnav.innerHTML = '<h3>'+document.getElementById("sisterProjects").firstChild.innerHTML+'</h3><div><ul></ul></div>';
+
     if ( !Table || !Button ) {
     var sistersiblingsub = sistersibling.getElementsByTagName("div")[0];
+
         return false;
     if(sistersiblingsub) {
+
         sisterprojectnav.childNodes[1].className = sistersiblingsub.className;
+
    } else {
+
        sisterprojectnav.childNodes[1].className = "pBody";
+
 
     }
 
     }
  
    //Wenn möglich vor den Interwikis einfügen
+
     var Rows = Table.rows;
     var sisternext = document.getElementById("p-lang");
+
    var i;
     if ( sisternext && sisternext.parentNode === sisterparent ) {
+
 
         sisterparent.insertBefore( sisterprojectnav, sisternext );
+
     if ( Button.firstChild.data === collapseCaption ) {
 +
         for ( i = 1; i < Rows.length; i++ ) {
 +
            Rows[i].style.display = 'none';
 +
        }
 +
        Button.firstChild.data = expandCaption;
 
     } else {
 
     } else {
         sisterparent.appendChild(sisterprojectnav);
+
         for ( i = 1; i < Rows.length; i++ ) {
 +
            Rows[i].style.display = Rows[0].style.display;
 +
        }
 +
        Button.firstChild.data = collapseCaption;
 
     }
 
     }
 +
};
  
     //Schwesterlinks ermitteln und einfügen
+
function createCollapseButtons() {
     var sisterlinks = iProject.getElementsByTagName("a");
+
     var tableIndex = 0;
     for (var i = 0; i < sisterlinks.length; i++) {
+
     var NavigationBoxes = {};
         var sistername = sisterlinks[i].firstChild.nodeValue;
+
    var Tables = document.getElementsByTagName( 'table' );
         mw.util.addPortletLink('p-sisterprojects', sisterlinks[i].getAttribute("href") + '?uselang=' + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) ), sistername, "sister-"+ sistername, sistername);
+
     var i;
 +
 
 +
    function handleButtonLink( index, e ) {
 +
         window.collapseTable( index );
 +
         e.preventDefault();
 
     }
 
     }
})});
 
  
/**
+
    for ( i = 0; i < Tables.length; i++ ) {
* Fügt einen Link "Alle Sprachen" auf der Hauptseite unter die Sprachverweise hinzu
+
        if ( $( Tables[i] ).hasClass( 'collapsible' ) ) {
*/
+
if( mw.config.get( 'wgIsMainPage' ) ) {
+
mw.loader.using( [ 'mediawiki.util' ], function() { $( function () {
+
  mw.util.addPortletLink(
+
  'p-lang',
+
  mw.util.wikiGetlink( 'Wikipedia:Sprachen' ),
+
  'Alle Sprachen',
+
  'interwiki-completelist',
+
  'Liste aller Sprachversionen von Wikipedia'
+
  );
+
})});
+
}
+
  
/**
+
            /* only add button and increment count if there is a header row to work with */
* force the loading of another JavaScript file
+
            var HeaderRow = Tables[i].getElementsByTagName( 'tr' )[0];
* Deprecated function, function alias kept for backward compatibility
+
            if ( !HeaderRow ) continue;
*/
+
            var Header = HeaderRow.getElementsByTagName( 'th' )[0];
window.includePage = function( name ) {
+
            if ( !Header ) continue;
    return importScript( name );
+
}
+
  
//================================================================================
+
            NavigationBoxes[ tableIndex ] = Tables[i];
//*** Dynamic Navigation Bars
+
            Tables[i].setAttribute( 'id', 'collapsibleTable' + tableIndex );
  
// set up max count of Navigation Bars on page,
+
            var Button    = document.createElement( 'span' );
// if there are more, all will be hidden
+
            var ButtonLink = document.createElement( 'a' );
// mw.user.options.set( 'NavigationBarShowDefault', 0 ); // all bars will be hidden
+
            var ButtonText = document.createTextNode( collapseCaption );
// mw.user.options.set( 'NavigationBarShowDefault', 1 ); // on pages with more than 1 bar all bars will be hidden
+
  
// adds show/hide-button to navigation bars
+
            Button.className = 'collapseButton'; /* Styles are declared in Common.css */
// using 'jquery.makeCollapsible': for messages
+
// using 'user', 'mediawiki.user', 'user.options': wait for overrides in user.js
+
mw.loader.using( [ 'mediawiki.util', 'jquery.makeCollapsible', 'user', 'mediawiki.user', 'user.options' ], function() { $(function() {
+
// allow setting NavigationBarShowDefault
+
var showDefaultCount = mw.user.options.get( 'NavigationBarShowDefault',
+
typeof NavigationBarShowDefault !== 'undefined' ? NavigationBarShowDefault : 1 );
+
// allow user overrides for b/c
+
var textHide = typeof NavigationBarHide === 'string' ? NavigationBarHide : mw.msg( 'collapsible-collapse' );
+
var textShow = typeof NavigationBarShow === 'string' ? NavigationBarShow : mw.msg( 'collapsible-expand' );
+
  
// shows and hides content and picture (if available) of navigation bars
+
            ButtonLink.style.color = Header.style.color;
// Parameters:
+
            ButtonLink.setAttribute( 'id', 'collapseButton' + tableIndex );
//    indexNavigationBar: the index of navigation bar to be toggled
+
            ButtonLink.setAttribute( 'href', '#' );
function toggleNavigationBar(NavToggle, NavFrame)
+
            $( ButtonLink ).on( 'click', $.proxy( handleButtonLink, ButtonLink, tableIndex ) );
{
+
            ButtonLink.appendChild( ButtonText );
  if (!NavFrame || !NavToggle) {
+
  return false;
+
  }
+
  
  // if shown now
+
            Button.appendChild( document.createTextNode( '[' ) );
  if (NavToggle.firstChild.data === textHide) {
+
            Button.appendChild( ButtonLink );
  for (
+
            Button.appendChild( document.createTextNode( ']' ) );
  var NavChild = NavFrame.firstChild;
+
  NavChild !== null;
+
  NavChild = NavChild.nextSibling
+
  ) {
+
  if (NavChild.className === 'NavPic') {
+
  NavChild.style.display = 'none';
+
  }
+
  if (NavChild.className === 'NavContent') {
+
  NavChild.style.display = 'none';
+
  }
+
  if (NavChild.className === 'NavToggle') {
+
  NavChild.firstChild.data = textShow;
+
  }
+
  }
+
  
  // if hidden now
+
            Header.insertBefore( Button, Header.firstChild );
  } else if (NavToggle.firstChild.data === textShow) {
+
            tableIndex++;
  for (
+
        }
  var NavChild = NavFrame.firstChild;
+
    }
  NavChild !== null;
+
  NavChild = NavChild.nextSibling
+
  ) {
+
  if (NavChild.className === 'NavPic') {
+
  NavChild.style.display = 'block';
+
  }
+
  if (NavChild.className === 'NavContent') {
+
  NavChild.style.display = 'block';
+
  }
+
  if (NavChild.className === 'NavToggle') {
+
  NavChild.firstChild.data = textHide;
+
  }
+
  }
+
  }
+
}
+
  
function toggleNavigationBarFunction(NavToggle, NavFrame) {
+
    for ( i = 0;  i < tableIndex; i++ ) {
return function() {
+
        if ( $( NavigationBoxes[i] ).hasClass( 'collapsed' ) || ( tableIndex >= autoCollapse && $( NavigationBoxes[i] ).hasClass( 'autocollapse' ) ) ) {
toggleNavigationBar(NavToggle, NavFrame);
+
            window.collapseTable( i );
return false;
+
        }  
};
+
        else if ( $( NavigationBoxes[i] ).hasClass ( 'innercollapse' ) ) {
}
+
            var element = NavigationBoxes[i];
// iterate over all NavFrames
+
            while ((element = element.parentNode)) {
var NavFrames = mw.util.$content.find( 'div.NavFrame' );
+
                if ( $( element ).hasClass( 'outercollapse' ) ) {
 +
                    window.collapseTable ( i );
 +
                    break;
 +
                }
 +
            }
 +
        }
 +
    }
 +
}
  
// if more Navigation Bars found and not template namespace than Default: hide all
+
$( createCollapseButtons );
var initiallyToggle = showDefaultCount < NavFrames.length && mw.config.get( 'wgNamespaceNumber' ) !== 10;
+
for (var i=0;  i<NavFrames.length; i++) {
+
var NavFrame = NavFrames[i];
+
var NavToggle = document.createElement("a");
+
NavToggle.className = 'NavToggle';
+
NavToggle.setAttribute('href', '#');
+
  
var NavToggleText = document.createTextNode(textHide);
+
/**
NavToggle.appendChild(NavToggleText);
+
* Dynamic Navigation Bars (experimental)
 +
*
 +
* Description: See [[Wikipedia:NavFrame]].
 +
* Maintainers: UNMAINTAINED
 +
*/
  
// add NavToggle-Button as first div-element
+
/* set up the words in your language */
// in < div class="NavFrame" >
+
var NavigationBarHide = '[' + collapseCaption + ']';
NavFrame.insertBefore(NavToggle, NavFrame.firstChild);
+
var NavigationBarShow = '[' + expandCaption + ']';
  
NavToggle.onclick = toggleNavigationBarFunction(NavToggle, NavFrame);
+
/**
if (initiallyToggle) {
+
* Shows and hides content and picture (if available) of navigation bars
toggleNavigationBar(NavToggle, NavFrame);
+
* Parameters:
}
+
*    indexNavigationBar: the index of navigation bar to be toggled
}
+
**/
})});
+
window.toggleNavigationBar = function ( indexNavigationBar, event ) {
 +
    var NavToggle = document.getElementById( 'NavToggle' + indexNavigationBar );
 +
    var NavFrame = document.getElementById( 'NavFrame' + indexNavigationBar );
 +
    var NavChild;
  
//================================================================================
+
    if ( !NavFrame || !NavToggle ) {
 +
        return false;
 +
    }
  
/** Skript für [[Vorlage:Galerie]] */
+
    /* if shown now */
jQuery( document ).ready(function() {
+
    if ( NavToggle.firstChild.data === NavigationBarHide ) {
  if (document.URL.match(/printable/g)) return;
+
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
 
+
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
  function toggleImageFunction(group,  remindex, shwindex) {
+
                NavChild.style.display = 'none';
    return function() {
+
            }
      document.getElementById("ImageGroupsGr" + group + "Im" + remindex).style["display"] = "none";
+
        }
      document.getElementById("ImageGroupsGr" + group + "Im" + shwindex).style["display"] = "block";
+
    NavToggle.firstChild.data = NavigationBarShow;
      return false;
+
    };
+
  }
+
  
  var divs = document.getElementsByTagName("div");
+
    /* if hidden now */
  var i = 0, j = 0;
+
     } else if ( NavToggle.firstChild.data === NavigationBarShow ) {
  var units, search;
+
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
  var currentimage;
+
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
  var UnitNode;
+
                NavChild.style.display = 'block';
  for (i = 0; i < divs.length; i++) {
+
            }
     if (divs[i].className !== "ImageGroup") { continue; }
+
        }
    UnitNode = undefined;
+
        NavToggle.firstChild.data = NavigationBarHide;
    search = divs[i].getElementsByTagName("div");
+
    for (j = 0; j < search.length; j++) {
+
      if (search[j].className !== "ImageGroupUnits") { continue; }
+
      UnitNode=search[j];
+
      break;
+
    }
+
    if (UnitNode === undefined) { continue; }
+
    units = [];
+
    for (j = 0 ; j < UnitNode.childNodes.length ; j++ ) {
+
      var temp = UnitNode.childNodes[j];
+
      if (temp.className === "center") { units.push(temp); }
+
 
     }
 
     }
    var rightlink = undefined;
 
    var commentText = undefined;
 
    for (j = 0; j < units.length; j++) {
 
      currentimage = units[j];
 
      currentimage.id = "ImageGroupsGr" + i + "Im" + j;
 
      var leftlink = document.createElement("a");
 
      if (commentText !== undefined) {
 
        leftlink.setAttribute("title", commentText);
 
      }
 
      var comment;
 
      if (typeof(currentimage.getAttribute("title")) !== "string") {
 
        commentText = (j+1) + "/" + units.length;
 
        comment = document.createElement("tt").appendChild(document.createTextNode("("+ commentText + ")"));
 
      } else {
 
        commentText = currentimage.getAttribute("title");
 
        comment = document.createElement("span").appendChild(document.createTextNode(commentText));
 
        currentimage.removeAttribute("title");
 
      }
 
      if(rightlink !== undefined) {
 
        rightlink.setAttribute("title", commentText);
 
      }
 
      var imghead = document.createElement("div");
 
      rightlink = document.createElement("a");
 
      if (j !== 0) {
 
        leftlink.href = "#";
 
        leftlink.onclick = toggleImageFunction(i, j, j-1);
 
        leftlink.appendChild(document.createTextNode("◀"));
 
      }
 
      if (j !== units.length - 1) {
 
        rightlink.href = "#";
 
        rightlink.onclick = toggleImageFunction(i, j, j+1);
 
        rightlink.appendChild(document.createTextNode("▶"));
 
      }
 
      imghead.style["fontSize"] = "110%";
 
      imghead.style["fontweight"] = "bold";
 
      imghead.appendChild(leftlink);
 
      imghead.appendChild(document.createTextNode("\xA0"));
 
      imghead.appendChild(comment);
 
      imghead.appendChild(document.createTextNode("\xA0"));
 
      imghead.appendChild(rightlink);
 
      if (units.length > 1) {
 
        currentimage.insertBefore(imghead,currentimage.childNodes[0]);
 
      }
 
      if (j !== 0) {
 
        currentimage.style["display"] = "none";
 
      }
 
    }
 
  }
 
});
 
  
/**
+
    event.preventDefault();
* Fügt eine Betreffzeile auf leeren Artikel-Diskussionsseiten ein
+
};
*/
+
if( mw.config.get( 'wgNamespaceNumber' ) === 0 || mw.config.get( 'wgNamespaceNumber' ) === 1 ) {
+
$(function() {
+
  $( '#ca-talk.new a' ).attr( 'href', function( index, attr ) {
+
  return attr + '&section=new';
+
  });
+
});
+
}
+
  
/**
+
/* adds show/hide-button to navigation bars */
* Lokaler Dateidiskussionsseitenlink eines Commonsbildes verweist nach Commons
+
function createNavigationBarToggleButton() {
*/
+
    var indexNavigationBar = 0;
if (mw.config.get( 'wgNamespaceNumber' ) === 6) {
+
    var NavFrame;
mw.loader.using( [ 'mediawiki.util' ], function() { $( function() {
+
    var NavChild;
if ( mw.config.get( 'keepLocalFileTabs', false ) ) {
+
    /* iterate over all < div >-elements */
return;
+
    var divs = document.getElementsByTagName( 'div' );
}
+
    for ( var i = 0; (NavFrame = divs[i]); i++ ) {
if ( $( '#ca-history' ).length ) {
+
        /* if found a navigation bar */
return; //Lokale Dateibeschreibung vorhanden?
+
        if ( $( NavFrame ).hasClass( 'NavFrame' ) ) {
}
+
if ( !$( 'div.sharedUploadNotice' ).length ) {
+
return; //Nur bei Commons-Bildern
+
}
+
  
var path = '//commons.wikimedia.org/wiki/';
+
            indexNavigationBar++;
 +
            var NavToggle = document.createElement( 'a' );
 +
            NavToggle.className = 'NavToggle';
 +
            NavToggle.setAttribute( 'id', 'NavToggle' + indexNavigationBar );
 +
            NavToggle.setAttribute( 'href', '#' );
 +
            $( NavToggle ).on( 'click', $.proxy( window.toggleNavigationBar, window, indexNavigationBar ) );
  
// Ändere Link auf Diskussionsseite
+
            var isCollapsed = $( NavFrame ).hasClass( 'collapsed' );
var talkLink = $( '#ca-talk.new a' );
+
            /**
talkLink.attr( 'href', path + 'File_talk:' + mw.util.wikiUrlencode( mw.config.get( 'wgTitle' ) ) + '?uselang=' + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) ) );
+
            * Check if any children are already hidden. This loop is here for backwards compatibility:
talkLink.addClass( 'commonstab' );
+
            * 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 ( NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling ) {
 +
                if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
 +
                    if ( NavChild.style.display === 'none' ) {
 +
                        isCollapsed = true;
 +
                    }
 +
                }
 +
            }
 +
            if ( isCollapsed ) {
 +
                for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
 +
                    if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
 +
                        NavChild.style.display = 'none';
 +
                    }
 +
                }
 +
            }
 +
            var NavToggleText = document.createTextNode( isCollapsed ? NavigationBarShow : NavigationBarHide );
 +
            NavToggle.appendChild( NavToggleText );
  
// Ändere Bearbeiten-Link
+
            /* Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked) */
var editLink = $( '#ca-edit a, #ca-viewsource a' );
+
            for( var j = 0; j < NavFrame.childNodes.length; j++ ) {
editLink.attr( 'href', path + 'File:' + mw.util.wikiUrlencode( mw.config.get( 'wgTitle' ) ) + '?action=edit&uselang=' + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) ) );
+
                if ( $( NavFrame.childNodes[j] ).hasClass( 'NavHead' ) ) {
editLink.addClass( 'commonstab' );
+
                    NavToggle.style.color = NavFrame.childNodes[j].style.color;
editLink.text( 'Bearbeiten' );
+
                    NavFrame.childNodes[j].appendChild( NavToggle );
})});
+
                }
 +
            }
 +
            NavFrame.setAttribute( 'id', 'NavFrame' + indexNavigationBar );
 +
        }
 +
    }
 
}
 
}
 +
 +
$( createNavigationBarToggleButton );
  
 
/**
 
/**
  * Fügt bei SVG-Grafiken Links zu gerenderten PNGs in verschiedenen Breiten hinzu
+
  * Uploadwizard_newusers
 +
* Switches in a message for non-autoconfirmed users at [[Wikipedia:Upload]]
 +
*
 +
* Maintainers: [[User:Krimpet]]
 
  */
 
  */
if (mw.config.get( 'wgNamespaceNumber' ) === 6) {
+
function uploadwizard_newusers() {
$( function() {
+
    if ( mw.config.get( 'wgNamespaceNumber' ) === 4 && mw.config.get( 'wgTitle' ) === 'Upload' && mw.config.get( 'wgAction' ) === 'view' ) {
  var file = $( '#file' ); // might fail if MediaWiki can't render the SVG
+
        var oldDiv = document.getElementById( 'autoconfirmedusers' ),
  if( file.length && mw.config.get( 'wgIsArticle' ) && mw.config.get( 'wgTitle' ).match( /\.svg$/i ) ) {
+
            newDiv = document.getElementById( 'newusers' );
  var thumbsrc = file.find( 'img' ).attr( 'src' );
+
        if ( oldDiv && newDiv ) {
  if( !thumbsrc ) {
+
            var userGroups = mw.config.get( 'wgUserGroups' );
    return;
+
            if ( userGroups ) {
  }
+
                for ( var i = 0; i < userGroups.length; i++ ) {
 
+
                    if ( userGroups[i] === 'autoconfirmed' ) {
  var svgAltSize = function( w, title ) {
+
                        oldDiv.style.display = 'block';
    var path = thumbsrc.replace( /\/\d+(px-[^\/]+$)/, "/" + w + "$1" );
+
                        newDiv.style.display = 'none';
    var a = $( document.createElement("a") );
+
                        return;
    a.attr( 'href', path );
+
                    }
    a.text( title );
+
                }
    return a;
+
            }
  };
+
            oldDiv.style.display = 'none';
 
+
            newDiv.style.display = 'block';
  var p = $( document.createElement("p") );
+
            return;
  p.addClass( "SVGThumbs" );
+
        }
  p.append( document.createTextNode( "Aus SVG automatisch erzeugte PNG-Grafiken in verschiedenen Auflösungen"+": " ) );
+
  var l = [ 200, 500, 1000, 2000 ];
+
  for( var i = 0; i < l.length; i++ ) {
+
    if( i !== 0 ) {
+
    p.append( document.createTextNode( ", " ) );
+
 
     }
 
     }
    p.append( svgAltSize( l[i], l[i] + "px" ) );
 
  }
 
  p.append( document.createTextNode( "." ) );
 
  $( file.parent() ).find( 'div.fullMedia' ).append( p );
 
  }
 
});
 
 
}
 
}
  
/**
+
$(uploadwizard_newusers);
* <noscript>-Emulation via <div class="noscript"></div>
+
*/
+
mw.loader.using( [ 'mediawiki.util' ], function() {
+
mw.util.addCSS( '.noscript { display:none; }' );
+
});
+
  
 
/**
 
/**
  * Verwendung von OpenStreetMap in Wikipedia.
+
  * Magic editintros ****************************************************
  * (c) 2008 by Magnus Manske, Released under GPL
+
*
 +
* Description: Adds editintros on disambiguation pages and BLP pages.
 +
  * Maintainers: [[User:RockMFR]]
 
  */
 
  */
//mediawiki.util is used by openStreetMapToggle
+
function addEditIntro( name ) {
mw.loader.using( [ 'mediawiki.util' ], function() { $( function() {
+
    $( '.editsection, #ca-edit' ).find( 'a' ).each( function ( i, el ) {
  var c = $( '#coordinates' );
+
        el.href = $( this ).attr( 'href' ) + '&editintro=' + name;
  if ( !c.length ) {
+
    } );
  return;
+
}
  }
+
  
  var a = c.find( 'a' );
+
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
  var geohack = false;
+
     $( function () {
  for (var i = 0; i < a.length; i++) {
+
        if ( document.getElementById( 'disambigbox' ) ) {
     var h = a[i].href;
+
            addEditIntro( 'Template:Disambig_editintro' );
    if (!h.match(/geohack/)) continue;
+
        }
    if (h.match(/skyhack/)) continue;
+
    } );
    if (h.match(/_globe:/)) continue; // no OSM for moon, mars, etc
+
    geohack = true;
+
    break;
+
  }
+
  if ( !geohack ) {
+
  return;
+
  }
+
 
+
  var separator = $( document.createElement( 'span' ) );
+
  separator.text( ' | ' );
+
  separator.attr( 'class', 'noprint coordinates-separator' );
+
  c.append( separator );
+
  var img = $( document.createElement( 'img' ) );
+
  img.attr( {
+
  'src': '//upload.wikimedia.org/wikipedia/commons/thumb/c/c9/OpenStreetMapLogo.png/17px-OpenStreetMapLogo.png',
+
  'width': '17px',
+
  'height': '17px'
+
  } );
+
  var a = $( document.createElement( 'a' ) );
+
  a.attr( {
+
  'href': '#',
+
  'title': 'Zeige Koordinaten auf einer Karte von OpenStreetMap',
+
  'class': 'noprint osm-icon-coordinates'
+
  } );
+
  a.click( openStreetMapToggle );
+
  a.append( img );
+
  c.append( a );
+
})});
+
// The function to toggle
+
function openStreetMapToggle() {
+
  var c = $( '#coordinates' );
+
  if ( !c.length) {
+
  return;
+
  }
+
  var cs = $( '#contentSub' );
+
  var osm = $( '#openstreetmap' );
+
  
  if ( cs.length && osm.length ) {
+
    $( function () {
  if ( osm.css( 'display' ) === 'none' ) {
+
        var cats = document.getElementById( 'mw-normal-catlinks' );
    osm.css( 'display', 'block' );
+
        if ( !cats ) {
  } else {
+
            return;
    osm.css( 'display', 'none' );
+
        }
  }
+
        cats = cats.getElementsByTagName( 'a' );
  return false;
+
        for ( var i = 0; i < cats.length; i++ ) {
  }
+
            if ( cats[i].title === 'Category:Living people' || cats[i].title === 'Category:Possibly living people' ) {
 
+
                addEditIntro( 'Template:BLP_editintro' );
  var found_link = false;
+
                break;
  var a = c.find( 'a' );
+
            }
  var h;
+
        }
  for (var i = 0; i < a.length; i++) {
+
    } );
  h = a[i].href;
+
  if (!h.match(/geohack/)) continue;
+
  found_link = true;
+
  break;
+
  }
+
  if ( !found_link ) {
+
  return; // No geohack link found
+
  }
+
 
+
  h = h.split('params=')[1];
+
 
+
  var url = '//toolserver.org/~kolossos/openlayers/kml-on-ol.php?lang=de&uselang='
+
          + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) )
+
          + '&params=' + h
+
          + '&title=' + mw.util.wikiUrlencode( mw.config.get( 'wgTitle' ) );
+
 
+
  var iframe = $( document.createElement( 'iframe' ) );
+
  iframe.attr( 'id', 'openstreetmap' );
+
  iframe.css({
+
  'width': '100%',
+
  'height': '350px',
+
  'clear': 'both'
+
  });
+
  iframe.attr( 'src', url );
+
  cs.append( iframe );
+
  return false;
+
 
}
 
}
  
 
/**
 
/**
  * Ändere den Spenden-Link im Sidebar für Besucher aus Deutschland
+
  * Description: Stay on the secure server as much as possible
 +
* Maintainers: [[User:TheDJ]]
 
  */
 
  */
$( function() {
+
if ( document.location && document.location.protocol  && document.location.protocol === 'https:' ) {
if ( typeof( Geo ) === "object" && Geo.country === 'DE' && mw.config.get( 'wgUserLanguage' ) === 'de' ) {
+
    /* New secure servers */
  var baseUrl = 'https://spenden.wikimedia.de/';
+
    importScript( 'MediaWiki:Common.js/secure new.js' );
  var queryString = $.param({
+
}
      'piwik_campaign': 'de.wikipedia.org',
+
      'piwik_kwd': 'sidebar',
+
      'language': mw.config.get( 'wgUserLanguage' ),
+
      'country': Geo.country
+
  });
+
  $("#n-sitesupport a").attr("href", baseUrl + '?' + queryString);
+
}
+
});
+
  
/**
+
/* End of mw.loader.using callback */
* erzeuge einen "Neuen Abschnitt"-Link an der letzten Überschrift
+
} );
*/
+
/* DO NOT ADD CODE BELOW THIS LINE */
$( function() {
+
var newSectionLink = $( '#ca-addsection a' );
+
if( newSectionLink.length ) {
+
  var link = newSectionLink.clone(); //create a copy
+
  //avoid duplicate accesskey
+
  link.removeAttr( 'accesskey' ).attr( 'title', function ( index, oldTitle ) {
+
  return oldTitle.replace( /\s*\[.*\]\s*$/, '' );
+
  } );
+
  //add it wihin the brackets
+
  var lastEditsectionLink = $( 'span.editsection:last a' );
+
  lastEditsectionLink.after( link );
+
  lastEditsectionLink.after( ' | ' ); //see [[MediaWiki:Pipe-separator]]
+
}
+
});
+
 
+
/**
+
* Entferne [[Vorlage:Anker]] aus der Zusammenfassungszeile,
+
* damit diese beim generieren der Auto-Zusammenfassung nicht das Linkziel mit beeinflusst
+
*/
+
if ( mw.config.get( 'wgAction' ) === 'edit' ) {
+
$( function() {
+
  $( '#wpSummary' ).val( function( i, val ) {
+
  //Nur aktiv werden, wenn es auch eine Autozusammenfassung gibt
+
  if( val.length <= 2 || val.substring( 0, 2 ) !== '/*' ) {
+
    return val;
+
  }
+
  return val.replace( /\{\{[\s_]*:?[\s_]*(?:(?:Template|Vorlage)[\s_]*:[\s_]*)?Anker[\s_]*\|[^}]*\}\}\s*/gi, '' );
+
  });
+
});
+
}
+

Aktuelle Version vom 30. März 2013, 04:02 Uhr

/**
 * Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
 * loaded for all users on every wiki page. If possible create a gadget that is
 * enabled by default instead of adding it here (since gadgets are fully
 * optimized ResourceLoader modules with possibility to add dependencies etc.)
 *
 * Since Common.js isn't a gadget, there is no place to declare its
 * dependencies, so we have to lazy load them with mw.loader.using on demand and
 * then execute the rest in the callback. In most cases these dependencies will
 * be loaded (or loading) already and the callback will not be delayed. In case a
 * dependency hasn't arrived yet it'll make sure those are loaded before this.
 */
/*global mw, $, importStylesheet, importScript */
/*jshint curly:false eqnull:true, strict:false, browser:true, */
mw.loader.using( ['mediawiki.util', 'mediawiki.notify', 'jquery.client'], function () {
/* Begin of mw.loader.using callback */
 
/**
 * 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 ( mw.config.get( 'wgPageName' ) === 'Main_Page' || mw.config.get( 'wgPageName' ) === 'Talk:Main_Page' ) {
    $( document ).ready( function () {
        mw.util.addPortletLink( 'p-lang', '//meta.wikimedia.org/wiki/List_of_Wikipedias',
            'Complete list', 'interwiki-completelist', 'Complete list of Wikipedias' );
    } );
}
 
/**
 * Redirect User:Name/skin.js and skin.css to the current skin's pages
 * (unless the 'skin' page really exists)
 * @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
 * @rev: 2
 */
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
    var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
    /* Make sure there was a part before and after the slash
       and that the latter is 'skin.js' or 'skin.css' */
    if ( titleParts.length == 2 ) {
        var userSkinPage = titleParts.shift() + '/' + mw.config.get( 'skin' );
        if ( titleParts.slice( -1 ) == 'skin.js' ) {
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.js' );
        } else if ( titleParts.slice( -1 ) == 'skin.css' ) {
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.css' );
        }
    }
}
 
/**
 * Map addPortletLink to mw.util 
 *
 * @deprecated: Use mw.util.addPortletLink instead.
 */
window.addPortletLink = function () {
    return mw.util.addPortletLink.apply( mw.util, arguments );
};
 
/**
 * Extract a URL parameter from the current URL
 *
 * @deprecated: Use mw.util.getParamValue with proper escaping
 */
window.getURLParamValue = function () {
    return mw.util.getParamValue.apply( mw.util, arguments );
};
 
/** 
 * Test if an element has a certain class
 *
 * @deprecated:  Use $(element).hasClass() instead.
 */
window.hasClass = function ( element, className ) {
    return $( element ).hasClass( className );
};
 
/**
 * @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
 * @rev 5
 */
// CSS
var extraCSS = mw.util.getParamValue( 'withCSS' );
if ( extraCSS ) {
	if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
		importStylesheet( extraCSS );
	} else {
		mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
	}
}
 
// JS
var extraJS = mw.util.getParamValue( 'withJS' );
if ( extraJS ) {
	if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
		importScript( extraJS );
	} else {
		mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
	}
}
 
/**
 * Import more specific scripts if necessary
 */
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
    /* scripts specific to editing pages */
    importScript( 'MediaWiki:Common.js/edit.js' );
} else if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
    /* watchlist scripts */
    importScript( 'MediaWiki:Common.js/watchlist.js' );
}
if ( mw.config.get( 'wgNamespaceNumber' ) === 6 ) {
    /* file description page scripts */
    importScript( 'MediaWiki:Common.js/file.js' );
}
 
/**
 * Load scripts specific to Internet Explorer
 */
if ( $.client.profile().name === 'msie' ) {
    importScript( 'MediaWiki:Common.js/IEFixes.js' );
}
 
/**
 * Fix for Windows XP Unicode font rendering
 */
if ( navigator.appVersion.search(/windows nt 5/i) !== -1 ) {
    mw.util.addCSS( '.IPA { font-family: "Lucida Sans Unicode", "Arial Unicode MS"; } ' + 
                '.Unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode"; } ' );
}
 
/**
 * WikiMiniAtlas
 *
 * Description: WikiMiniAtlas is a popup click and drag world map.
 *              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
 *              The script itself is located on meta because it is used by many projects.
 *              See [[Meta:WikiMiniAtlas]] for more information. 
 * Maintainers: [[User:Dschwen]]
 */
( function () {
    var require_wikiminiatlas = false;
    var coord_filter = /geohack/;
    $( document ).ready( function() {
        $( 'a.external.text' ).each( function( key, link ) {
            if ( link.href && coord_filter.exec( link.href ) ) {
                require_wikiminiatlas = true;
                // break from loop
                return false;
            }
        } );
        if ( $( 'div.kmldata' ).length ) {
            require_wikiminiatlas = true;
        }
        if ( require_wikiminiatlas ) {
            mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
        }
    } );
} )();
 
/**
 * 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.';
            } else if ( document.getElementById( InterwikiLinks[i].className + '-ga' ) ) {
                InterwikiLinks[i].className += ' GA';
                InterwikiLinks[i].title = 'This is a good article in another language.';
            }
        }
    }
}
 
$( LinkFA );
 
/**
 * 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';
 
window.collapseTable = function ( tableIndex ) {
    var Button = document.getElementById( 'collapseButton' + tableIndex );
    var Table = document.getElementById( 'collapsibleTable' + tableIndex );
 
    if ( !Table || !Button ) {
        return false;
    }
 
    var Rows = Table.rows;
    var i;
 
    if ( Button.firstChild.data === collapseCaption ) {
        for ( i = 1; i < Rows.length; i++ ) {
            Rows[i].style.display = 'none';
        }
        Button.firstChild.data = expandCaption;
    } else {
        for ( 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 = {};
    var Tables = document.getElementsByTagName( 'table' );
    var i;
 
    function handleButtonLink( index, e ) {
        window.collapseTable( index );
        e.preventDefault();
    }
 
    for ( i = 0; i < Tables.length; i++ ) {
        if ( $( Tables[i] ).hasClass( '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', '#' );
            $( ButtonLink ).on( 'click', $.proxy( handleButtonLink, ButtonLink, tableIndex ) );
            ButtonLink.appendChild( ButtonText );
 
            Button.appendChild( document.createTextNode( '[' ) );
            Button.appendChild( ButtonLink );
            Button.appendChild( document.createTextNode( ']' ) );
 
            Header.insertBefore( Button, Header.firstChild );
            tableIndex++;
        }
    }
 
    for ( i = 0;  i < tableIndex; i++ ) {
        if ( $( NavigationBoxes[i] ).hasClass( 'collapsed' ) || ( tableIndex >= autoCollapse && $( NavigationBoxes[i] ).hasClass( 'autocollapse' ) ) ) {
            window.collapseTable( i );
        } 
        else if ( $( NavigationBoxes[i] ).hasClass ( 'innercollapse' ) ) {
            var element = NavigationBoxes[i];
            while ((element = element.parentNode)) {
                if ( $( element ).hasClass( 'outercollapse' ) ) {
                    window.collapseTable ( i );
                    break;
                }
            }
        }
    }
}
 
$( createCollapseButtons );
 
/**
 * Dynamic Navigation Bars (experimental)
 *
 * Description: See [[Wikipedia:NavFrame]].
 * Maintainers: UNMAINTAINED
 */
 
/* 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
 **/
window.toggleNavigationBar = function ( indexNavigationBar, event ) {
    var NavToggle = document.getElementById( 'NavToggle' + indexNavigationBar );
    var NavFrame = document.getElementById( 'NavFrame' + indexNavigationBar );
    var NavChild;
 
    if ( !NavFrame || !NavToggle ) {
        return false;
    }
 
    /* if shown now */
    if ( NavToggle.firstChild.data === NavigationBarHide ) {
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
                NavChild.style.display = 'none';
            }
        }
    NavToggle.firstChild.data = NavigationBarShow;
 
    /* if hidden now */
    } else if ( NavToggle.firstChild.data === NavigationBarShow ) {
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
                NavChild.style.display = 'block';
            }
        }
        NavToggle.firstChild.data = NavigationBarHide;
    }
 
    event.preventDefault();
};
 
/* adds show/hide-button to navigation bars */
function createNavigationBarToggleButton() {
    var indexNavigationBar = 0;
    var NavFrame;
    var NavChild;
    /* iterate over all < div >-elements */
    var divs = document.getElementsByTagName( 'div' );
    for ( var i = 0; (NavFrame = divs[i]); i++ ) {
        /* if found a navigation bar */
        if ( $( NavFrame ).hasClass( 'NavFrame' ) ) {
 
            indexNavigationBar++;
            var NavToggle = document.createElement( 'a' );
            NavToggle.className = 'NavToggle';
            NavToggle.setAttribute( 'id', 'NavToggle' + indexNavigationBar );
            NavToggle.setAttribute( 'href', '#' );
            $( NavToggle ).on( 'click', $.proxy( window.toggleNavigationBar, window, indexNavigationBar ) );
 
            var isCollapsed = $( NavFrame ).hasClass( '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 ( NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling ) {
                if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
                    if ( NavChild.style.display === 'none' ) {
                        isCollapsed = true;
                    }
                }
            }
            if ( isCollapsed ) {
                for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
                    if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( '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 ( $( NavFrame.childNodes[j] ).hasClass( 'NavHead' ) ) {
                    NavToggle.style.color = NavFrame.childNodes[j].style.color;
                    NavFrame.childNodes[j].appendChild( NavToggle );
                }
            }
            NavFrame.setAttribute( 'id', 'NavFrame' + indexNavigationBar );
        }
    }
}
 
$( createNavigationBarToggleButton );
 
/**
 * Uploadwizard_newusers
 * Switches in a message for non-autoconfirmed users at [[Wikipedia:Upload]]
 *
 * Maintainers: [[User:Krimpet]]
 */
function uploadwizard_newusers() {
    if ( mw.config.get( 'wgNamespaceNumber' ) === 4 && mw.config.get( 'wgTitle' ) === 'Upload' && mw.config.get( 'wgAction' ) === 'view' ) {
        var oldDiv = document.getElementById( 'autoconfirmedusers' ),
            newDiv = document.getElementById( 'newusers' );
        if ( oldDiv && newDiv ) {
            var userGroups = mw.config.get( 'wgUserGroups' );
            if ( userGroups ) {
                for ( var i = 0; i < userGroups.length; i++ ) {
                    if ( userGroups[i] === 'autoconfirmed' ) {
                        oldDiv.style.display = 'block';
                        newDiv.style.display = 'none';
                        return;
                    }
                }
            }
            oldDiv.style.display = 'none';
            newDiv.style.display = 'block';
            return;
        }
    }
}
 
$(uploadwizard_newusers);
 
/**
 * Magic editintros ****************************************************
 *
 * Description: Adds editintros on disambiguation pages and BLP pages.
 * Maintainers: [[User:RockMFR]]
 */
function addEditIntro( name ) {
    $( '.editsection, #ca-edit' ).find( 'a' ).each( function ( i, el ) {
        el.href = $( this ).attr( 'href' ) + '&editintro=' + name;
    } );
}
 
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
    $( function () {
        if ( document.getElementById( 'disambigbox' ) ) {
            addEditIntro( 'Template:Disambig_editintro' );
        }
    } );
 
    $( 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:Living people' || cats[i].title === 'Category:Possibly living people' ) {
                addEditIntro( 'Template:BLP_editintro' );
                break;
            }
        }
    } );
}
 
/**
 * Description: Stay on the secure server as much as possible
 * Maintainers: [[User:TheDJ]]
 */
if ( document.location && document.location.protocol  && document.location.protocol === 'https:' ) {
    /* New secure servers */
    importScript( 'MediaWiki:Common.js/secure new.js' );
}
 
/* End of mw.loader.using callback */
} );
/* DO NOT ADD CODE BELOW THIS LINE */
Meine Werkzeuge

Varianten
Aktionen
Navigation
Werkzeuge
Teilen