MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus The Crowdsourced Resource-Based Economy Knowledgebase
Wechseln zu: Navigation, Suche
K (1 Version)
K ('Geo' is undefined)
Zeile 1: Zeile 1:
 +
/* Jedes JavaScript hier wird für alle Benutzer für jede Seite geladen. */
 +
 
/**
 
/**
  * Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
+
  * Sortierung von Umlauten und ß auch ohne [[Vorlage:SortKey]] ermöglichen
  * loaded for all users on every wiki page. If possible create a gadget that is
+
  * For jquery.tablesorter.js
* 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 */
+
mw.config.set( 'tableSorterCollation', {'Ä':'A', 'Ö':'O', 'Ü':'U', 'ä':'a', 'ö':'o', 'ü':'u', 'ß':'ss'} );
/*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
+
  * Stay on the same server as much as possible
*
+
  * 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( 'wgPageName' ) === 'Main_Page' || mw.config.get( 'wgPageName' ) === 'Talk:Main_Page' ) {
+
if( mw.config.get( 'wgNamespaceNumber' ) > 0 ) { //not in main space and special pages
    $( document ).ready( function () {
+
mw.loader.using( [ 'user', 'mediawiki.user', 'user.options' ], function() { //wait for overrides in user.js
        mw.util.addPortletLink( 'p-lang', '//meta.wikimedia.org/wiki/List_of_Wikipedias',
+
  if( mw.user.options.get( 'relativeProtocols', true ) ) { //disable in user.js, if not needed
            'Complete list', 'interwiki-completelist', 'Complete list of Wikipedias' );
+
  mw.loader.load( '//de.wikipedia.org/w/index.php?title=MediaWiki:Common.js/relative.js'
    } );
+
                  + '&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' );
 +
  }
 +
});
 
}
 
}
  
 
/**
 
/**
  * Redirect User:Name/skin.js and skin.css to the current skin's pages
+
  * load the Edittools on [[Special:Upload]] and prefill the summary textarea
  * (unless the 'skin' page really exists)
+
  * Load pages: [[MediaWiki:Onlyifuploading.js]], [[MediaWiki:Onlyifediting.js]]
* @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
+
* @rev: 2
+
 
  */
 
  */
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
+
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload') {
    var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
+
importScript("MediaWiki:Onlyifuploading.js");
    /* Make sure there was a part before and after the slash
+
importScript("MediaWiki:Onlyifediting.js");
      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
+
  * load the Edittools ([[MediaWiki:Edittools]], the part under the edit form)
  *
+
  * Load page: [[MediaWiki:Onlyifediting.js]]
* @deprecated: Use mw.util.addPortletLink instead.
+
 
  */
 
  */
window.addPortletLink = function () {
+
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' ) {
    return mw.util.addPortletLink.apply( mw.util, arguments );
+
importScript("MediaWiki:Onlyifediting.js");
};
+
}
  
 
/**
 
/**
  * Extract a URL parameter from the current URL
+
  * Nachrichten aus [[MediaWiki:watchlist-summary]] auf der Beobachtungliste ausblenden
  *
+
  * Load page: [[MediaWiki:Common.js/watchlist.js]]
* @deprecated: Use mw.util.getParamValue with proper escaping
+
 
  */
 
  */
window.getURLParamValue = function () {
+
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist') {
    return mw.util.getParamValue.apply( mw.util, arguments );
+
importScript("MediaWiki:Common.js/watchlist.js");
};
+
}
  
/**  
+
//=============================================================
* Test if an element has a certain class
+
//*** Configuration for "star" logo in front of interwiki links to Featured Articles
*
+
//*** and green symbol in front of interwiki links to Good Articles
* @deprecated: Use $(element).hasClass() instead.
+
/** set in Special:Mypage/common.js to switch off this "feature"
 +
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
 
  */
 
  */
window.hasClass = function ( element, className ) {
+
mw.loader.using( [ 'user', 'mediawiki.user', 'user.options' ], function() { $(function() {
    return $( element ).hasClass( className );
+
    /** description that is displayed when cursor hovers above FA interwiki links */
};
+
    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,
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
+
    // für monobook, modern und simple siehe [[MediaWiki:Common.css]], vector hat in [[MediaWiki:Vector.css] eigene Definitionen
* @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
+
    /** image to use instead of the standard bullet (for cologneblue, nostalgia and standard */
var extraJS = mw.util.getParamValue( 'withJS' );
+
    var linkFA_bullet = "//upload.wikimedia.org/wikipedia/commons/d/d0/Monobook-bullet-star-transparent.png";
if ( extraJS ) {
+
    var linkGA_bullet = "//upload.wikimedia.org/wikipedia/commons/a/a1/Monobook-bullet-star-gray.png";
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 */
* Import more specific scripts if necessary
+
     var linkFA_style = "margin-right: 0.2em;";
*/
+
     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
* Load scripts specific to Internet Explorer
+
    if ( !mw.user.options.get( 'linkFA_enabled', true ) ) {
*/
+
        return;
if ( $.client.profile().name === 'msie' ) {
+
    }
    importScript( 'MediaWiki:Common.js/IEFixes.js' );
+
}
+
  
/**
+
    // skins that can be handled the CSS class way
* Fix for Windows XP Unicode font rendering
+
    var skin = mw.config.get( 'skin' );
*/
+
     if (skin === "monobook" || skin === "simple" || skin === "modern" || skin === "vector" ) {
if ( navigator.appVersion.search(/windows nt 5/i) !== -1 ) {
+
        linkFA_CSS();
     mw.util.addCSS( '.IPA { font-family: "Lucida Sans Unicode", "Arial Unicode MS"; } ' +
+
    }
                '.Unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode"; } ' );
+
    else if (skin === "cologneblue" || skin === "nostalgia" || skin === "standard") {
}
+
        linkFA_decorate();
 +
    }
  
/**
+
    /** skin == "monobook" || skin == "simple" || skin="modern" || skin== "vector" */
* WikiMiniAtlas
+
    function linkFA_CSS() {
*
+
        // links are to replaced in p-lang only
* Description: WikiMiniAtlas is a popup click and drag world map.
+
        var pLang = document.getElementById("p-lang");
*              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
+
        if (!pLang) return;
*              The script itself is located on meta because it is used by many projects.
+
        var lis = pLang.getElementsByTagName("li");
*              See [[Meta:WikiMiniAtlas]] for more information.
+
        for (var i = 0; i < lis.length; i++) {
* Maintainers: [[User:Dschwen]]
+
            var li = lis[i];
*/
+
            // only links with a corresponding Link_FA template are interesting
( function () {
+
            if (document.getElementById(li.className + "-fa")) {
    var require_wikiminiatlas = false;
+
              li.className += " FA";        // additional class so the template can be hidden with CSS
    var coord_filter = /geohack/;
+
              li.title = linkFA_description; // change title
    $( document ).ready( function() {
+
              continue;
        $( 'a.external.text' ).each( function( key, link ) {
+
            }
             if ( link.href && coord_filter.exec( link.href ) ) {
+
             if (document.getElementById(li.className + "-ga")) {
                require_wikiminiatlas = true;
+
              li.className += " GA";         // additional class so the template can be hidden with CSS
                // break from loop
+
              li.title = linkGA_description; // change title
                return false;
+
              continue;
 
             }
 
             }
        } );
 
        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" */
* Interwiki links to featured articles ***************************************
+
    function linkFA_decorate() {
*
+
        // these root elements can contain FA-/GA-links
* Description: Highlights interwiki links to featured articles (or
+
        var rootIds = new Array("topbar", "footer");
*              equivalents) by changing the bullet before the interwiki link
+
        for (var i=0; i<rootIds.length; i++) {
*              into a star.
+
            var root    = document.getElementById(rootIds[i]);
* Maintainers: [[User:R. Koot]]
+
            if (!root) continue;
*/
+
function LinkFA() {
+
    if ( document.getElementById( 'p-lang' ) ) {
+
        var InterwikiLinks = document.getElementById( 'p-lang' ).getElementsByTagName( 'li' );
+
  
        for ( var i = 0; i < InterwikiLinks.length; i++ ) {
+
            // if the root exists, try to decorate all the links within
            if ( document.getElementById( InterwikiLinks[i].className + '-fa' ) ) {
+
            var links  = root.getElementsByTagName("a");
                InterwikiLinks[i].className += ' FA';
+
            for (var j=0; j<links.length; j++) {
                 InterwikiLinks[i].title = 'This is a featured article in another language.';
+
                decorate(links[j], "-fa", linkFA_bullet, linkFA_description, linkFA_style);
            } else if ( document.getElementById( InterwikiLinks[i].className + '-ga' ) ) {
+
                 decorate(links[j], "-ga", linkGA_bullet, linkGA_description, linkGA_style);
                InterwikiLinks[i].className += ' GA';
+
                InterwikiLinks[i].title = 'This is a good article in another language.';
+
 
             }
 
             }
 
         }
 
         }
 
     }
 
     }
}
 
  
$( LinkFA );
+
    /** id necessary, modify a link to show the FA- or GA-star (older) */
 +
    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
* Collapsible tables *********************************************************
+
var img = document.createElement("img");
*
+
img.setAttribute("src",    bullet);
* Description: Allows tables to be collapsed, showing only the header. See
+
img.setAttribute("alt",     description);
*              [[Wikipedia:NavFrame]].
+
img.setAttribute("style",  style);
* Maintainers: [[User:R. Koot]]
+
// decorate the link with the image
*/
+
link.appendChild(img);
 +
link.appendChild(link.removeChild(link.firstChild));
 +
link.setAttribute("title", description);
 +
    }
 +
})});
  
var autoCollapse = 2;
+
/*
var collapseCaption = 'hide';
+
## ProjektLinks ##
var expandCaption = 'show';
+
by Skript von [[user:Merlissimo]] (Idee basierend auf http://de.wiktionary.org/wiki/MediaWiki:Common.js von [[User:Pathoschild]] und [[wikt:de:User:Melancholie]])
 +
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;
  
window.collapseTable = function ( tableIndex ) {
+
    //Erzeuge neues Portletmenue
     var Button = document.getElementById( 'collapseButton' + tableIndex );
+
    var sisterprojectnav = document.createElement("div");
     var Table = document.getElementById( 'collapsibleTable' + tableIndex );
+
     sisterprojectnav.id = "p-sisterprojects";
 
+
    sisterprojectnav.className = sistersibling.className;
     if ( !Table || !Button ) {
+
    sisterprojectnav.innerHTML = '<h3>'+document.getElementById("sisterProjects").firstChild.innerHTML+'</h3><div><ul></ul></div>';
         return false;
+
     var sistersiblingsub = sistersibling.getElementsByTagName("div")[0];
 +
     if(sistersiblingsub) {
 +
         sisterprojectnav.childNodes[1].className = sistersiblingsub.className;
 +
    } else {
 +
        sisterprojectnav.childNodes[1].className = "pBody";
 
     }
 
     }
  
     var Rows = Table.rows;
+
    //Wenn möglich vor den Interwikis einfügen
    var i;
+
     var sisternext = document.getElementById("p-lang");
 
+
     if ( sisternext && sisternext.parentNode === sisterparent ) {
     if ( Button.firstChild.data === collapseCaption ) {
+
         sisterparent.insertBefore( sisterprojectnav, sisternext );
         for ( i = 1; i < Rows.length; i++ ) {
+
            Rows[i].style.display = 'none';
+
        }
+
        Button.firstChild.data = expandCaption;
+
 
     } else {
 
     } else {
         for ( i = 1; i < Rows.length; i++ ) {
+
         sisterparent.appendChild(sisterprojectnav);
            Rows[i].style.display = Rows[0].style.display;
+
        }
+
        Button.firstChild.data = collapseCaption;
+
 
     }
 
     }
};
 
  
function createCollapseButtons() {
+
     //Schwesterlinks ermitteln und einfügen
     var tableIndex = 0;
+
     var sisterlinks = iProject.getElementsByTagName("a");
     var NavigationBoxes = {};
+
     for (var i = 0; i < sisterlinks.length; i++) {
    var Tables = document.getElementsByTagName( 'table' );
+
         var sistername = sisterlinks[i].firstChild.nodeValue;
     var i;
+
         mw.util.addPortletLink('p-sisterprojects', sisterlinks[i].getAttribute("href") + '?uselang=' + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) ), sistername, "sister-"+ sistername, sistername);
 
+
    function handleButtonLink( index, e ) {
+
         window.collapseTable( index );
+
         e.preventDefault();
+
 
     }
 
     }
 +
})});
  
    for ( i = 0; i < Tables.length; i++ ) {
+
/**
        if ( $( Tables[i] ).hasClass( 'collapsible' ) ) {
+
* Fügt einen Link "Alle Sprachen" auf der Hauptseite unter die Sprachverweise hinzu
 +
*/
 +
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 */
+
/**
            var HeaderRow = Tables[i].getElementsByTagName( 'tr' )[0];
+
* force the loading of another JavaScript file
            if ( !HeaderRow ) continue;
+
* Deprecated function, function alias kept for backward compatibility
            var Header = HeaderRow.getElementsByTagName( 'th' )[0];
+
*/
            if ( !Header ) continue;
+
window.includePage = function( name ) {
 +
    return importScript( name );
 +
}
  
            NavigationBoxes[ tableIndex ] = Tables[i];
+
//================================================================================
            Tables[i].setAttribute( 'id', 'collapsibleTable' + tableIndex );
+
//*** Dynamic Navigation Bars
  
            var Button    = document.createElement( 'span' );
+
// set up max count of Navigation Bars on page,
            var ButtonLink = document.createElement( 'a' );
+
// if there are more, all will be hidden
            var ButtonText = document.createTextNode( collapseCaption );
+
// mw.user.options.set( 'NavigationBarShowDefault', 0 ); // all bars will be hidden
 +
// mw.user.options.set( 'NavigationBarShowDefault', 1 ); // on pages with more than 1 bar all bars will be hidden
  
            Button.className = 'collapseButton'; /* Styles are declared in Common.css */
+
// adds show/hide-button to navigation bars
 +
// 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' );
  
            ButtonLink.style.color = Header.style.color;
+
// shows and hides content and picture (if available) of navigation bars
            ButtonLink.setAttribute( 'id', 'collapseButton' + tableIndex );
+
// Parameters:
            ButtonLink.setAttribute( 'href', '#' );
+
//    indexNavigationBar: the index of navigation bar to be toggled
            $( ButtonLink ).on( 'click', $.proxy( handleButtonLink, ButtonLink, tableIndex ) );
+
function toggleNavigationBar(NavToggle, NavFrame)
            ButtonLink.appendChild( ButtonText );
+
{
 +
  if (!NavFrame || !NavToggle) {
 +
  return false;
 +
  }
  
            Button.appendChild( document.createTextNode( '[' ) );
+
  // if shown now
            Button.appendChild( ButtonLink );
+
  if (NavToggle.firstChild.data === textHide) {
            Button.appendChild( document.createTextNode( ']' ) );
+
  for (
 +
  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;
 +
  }
 +
  }
  
            Header.insertBefore( Button, Header.firstChild );
+
  // if hidden now
            tableIndex++;
+
  } else if (NavToggle.firstChild.data === textShow) {
        }
+
  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;
 +
  }
 +
  }
 +
  }
 +
}
  
    for ( i = 0;  i < tableIndex; i++ ) {
+
function toggleNavigationBarFunction(NavToggle, NavFrame) {
        if ( $( NavigationBoxes[i] ).hasClass( 'collapsed' ) || ( tableIndex >= autoCollapse && $( NavigationBoxes[i] ).hasClass( 'autocollapse' ) ) ) {
+
return function() {
            window.collapseTable( i );
+
toggleNavigationBar(NavToggle, NavFrame);
        }  
+
return false;
        else if ( $( NavigationBoxes[i] ).hasClass ( 'innercollapse' ) ) {
+
};
            var element = NavigationBoxes[i];
+
}
            while ((element = element.parentNode)) {
+
// iterate over all NavFrames
                if ( $( element ).hasClass( 'outercollapse' ) ) {
+
var NavFrames = mw.util.$content.find( 'div.NavFrame' );
                    window.collapseTable ( i );
+
                    break;
+
                }
+
            }
+
        }
+
    }
+
}
+
  
$( createCollapseButtons );
+
// if more Navigation Bars found and not template namespace than Default: hide all
 +
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);
* Dynamic Navigation Bars (experimental)
+
NavToggle.appendChild(NavToggleText);
*
+
* Description: See [[Wikipedia:NavFrame]].
+
* Maintainers: UNMAINTAINED
+
*/
+
  
/* set up the words in your language */
+
// add NavToggle-Button as first div-element
var NavigationBarHide = '[' + collapseCaption + ']';
+
// in < div class="NavFrame" >
var NavigationBarShow = '[' + expandCaption + ']';
+
NavFrame.insertBefore(NavToggle, NavFrame.firstChild);
  
/**
+
NavToggle.onclick = toggleNavigationBarFunction(NavToggle, NavFrame);
* Shows and hides content and picture (if available) of navigation bars
+
if (initiallyToggle) {
* Parameters:
+
toggleNavigationBar(NavToggle, NavFrame);
*    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 */
+
/** Skript für [[Vorlage:Galerie]] */
    if ( NavToggle.firstChild.data === NavigationBarHide ) {
+
jQuery( document ).ready(function() {
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
+
  if (document.URL.match(/printable/g)) return;
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
+
 
                NavChild.style.display = 'none';
+
  function toggleImageFunction(group,  remindex, shwindex) {
            }
+
    return function() {
        }
+
      document.getElementById("ImageGroupsGr" + group + "Im" + remindex).style["display"] = "none";
    NavToggle.firstChild.data = NavigationBarShow;
+
      document.getElementById("ImageGroupsGr" + group + "Im" + shwindex).style["display"] = "block";
 +
      return false;
 +
    };
 +
  }
  
    /* if hidden now */
+
  var divs = document.getElementsByTagName("div");
     } else if ( NavToggle.firstChild.data === NavigationBarShow ) {
+
  var i = 0, j = 0;
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
+
  var units, search;
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
+
  var currentimage;
                NavChild.style.display = 'block';
+
  var UnitNode;
            }
+
  for (i = 0; i < divs.length; i++) {
        }
+
     if (divs[i].className !== "ImageGroup") { continue; }
        NavToggle.firstChild.data = NavigationBarHide;
+
    UnitNode = undefined;
 +
    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 */
+
/**
function createNavigationBarToggleButton() {
+
* Lokaler Dateidiskussionsseitenlink eines Commonsbildes verweist nach Commons
    var indexNavigationBar = 0;
+
*/
    var NavFrame;
+
if (mw.config.get( 'wgNamespaceNumber' ) === 6) {
    var NavChild;
+
mw.loader.using( [ 'mediawiki.util' ], function() { $( function() {
    /* iterate over all < div >-elements */
+
if ( mw.config.get( 'keepLocalFileTabs', false ) ) {
    var divs = document.getElementsByTagName( 'div' );
+
return;
    for ( var i = 0; (NavFrame = divs[i]); i++ ) {
+
}
        /* if found a navigation bar */
+
if ( $( '#ca-history' ).length ) {
        if ( $( NavFrame ).hasClass( 'NavFrame' ) ) {
+
return; //Lokale Dateibeschreibung vorhanden?
 +
}
 +
if ( !$( 'div.sharedUploadNotice' ).length ) {
 +
return; //Nur bei Commons-Bildern
 +
}
  
            indexNavigationBar++;
+
var path = '//commons.wikimedia.org/wiki/';
            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' );
+
// Ändere Link auf Diskussionsseite
            /**
+
var talkLink = $( '#ca-talk.new a' );
            * Check if any children are already hidden. This loop is here for backwards compatibility:
+
talkLink.attr( 'href', path + 'File_talk:' + mw.util.wikiUrlencode( mw.config.get( 'wgTitle' ) ) + '?uselang=' + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) ) );
            * the old way of making NavFrames start out collapsed was to manually add style="display:none"
+
talkLink.addClass( 'commonstab' );
            * 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) */
+
// Ändere Bearbeiten-Link
            for( var j = 0; j < NavFrame.childNodes.length; j++ ) {
+
var editLink = $( '#ca-edit a, #ca-viewsource a' );
                if ( $( NavFrame.childNodes[j] ).hasClass( 'NavHead' ) ) {
+
editLink.attr( 'href', path + 'File:' + mw.util.wikiUrlencode( mw.config.get( 'wgTitle' ) ) + '?action=edit&uselang=' + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) ) );
                    NavToggle.style.color = NavFrame.childNodes[j].style.color;
+
editLink.addClass( 'commonstab' );
                    NavFrame.childNodes[j].appendChild( NavToggle );
+
editLink.text( 'Bearbeiten' );
                }
+
})});
            }
+
            NavFrame.setAttribute( 'id', 'NavFrame' + indexNavigationBar );
+
        }
+
    }
+
 
}
 
}
 
$( createNavigationBarToggleButton );
 
  
 
/**
 
/**
  * Uploadwizard_newusers
+
  * Fügt bei SVG-Grafiken Links zu gerenderten PNGs in verschiedenen Breiten hinzu
* Switches in a message for non-autoconfirmed users at [[Wikipedia:Upload]]
+
*
+
* Maintainers: [[User:Krimpet]]
+
 
  */
 
  */
function uploadwizard_newusers() {
+
if (mw.config.get( 'wgNamespaceNumber' ) === 6) {
    if ( mw.config.get( 'wgNamespaceNumber' ) === 4 && mw.config.get( 'wgTitle' ) === 'Upload' && mw.config.get( 'wgAction' ) === 'view' ) {
+
$( function() {
        var oldDiv = document.getElementById( 'autoconfirmedusers' ),
+
  var file = $( '#file' ); // might fail if MediaWiki can't render the SVG
            newDiv = document.getElementById( 'newusers' );
+
  if( file.length && mw.config.get( 'wgIsArticle' ) && mw.config.get( 'wgTitle' ).match( /\.svg$/i ) ) {
        if ( oldDiv && newDiv ) {
+
  var thumbsrc = file.find( 'img' ).attr( 'src' );
            var userGroups = mw.config.get( 'wgUserGroups' );
+
  if( !thumbsrc ) {
            if ( userGroups ) {
+
    return;
                for ( var i = 0; i < userGroups.length; i++ ) {
+
  }
                    if ( userGroups[i] === 'autoconfirmed' ) {
+
 
                        oldDiv.style.display = 'block';
+
  var svgAltSize = function( w, title ) {
                        newDiv.style.display = 'none';
+
    var path = thumbsrc.replace( /\/\d+(px-[^\/]+$)/, "/" + w + "$1" );
                        return;
+
    var a = $( document.createElement("a") );
                    }
+
    a.attr( 'href', path );
                }
+
    a.text( title );
            }
+
    return a;
            oldDiv.style.display = 'none';
+
  };
            newDiv.style.display = 'block';
+
 
            return;
+
  var p = $( document.createElement("p") );
        }
+
  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; }' );
 +
});
  
 
/**
 
/**
  * Magic editintros ****************************************************
+
  * Verwendung von OpenStreetMap in Wikipedia.
*
+
  * (c) 2008 by Magnus Manske, Released under GPL
* Description: Adds editintros on disambiguation pages and BLP pages.
+
  * Maintainers: [[User:RockMFR]]
+
 
  */
 
  */
function addEditIntro( name ) {
+
//mediawiki.util is used by openStreetMapToggle
    $( '.editsection, #ca-edit' ).find( 'a' ).each( function ( i, el ) {
+
mw.loader.using( [ 'mediawiki.util' ], function() { $( function() {
        el.href = $( this ).attr( 'href' ) + '&editintro=' + name;
+
  var c = $( '#coordinates' );
    } );
+
  if ( !c.length ) {
}
+
  return;
 +
  }
  
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
+
  var a = c.find( 'a' );
     $( function () {
+
  var geohack = false;
        if ( document.getElementById( 'disambigbox' ) ) {
+
  for (var i = 0; i < a.length; i++) {
            addEditIntro( 'Template:Disambig_editintro' );
+
     var h = a[i].href;
        }
+
    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' );
  
    $( function () {
+
  if ( cs.length && osm.length ) {
        var cats = document.getElementById( 'mw-normal-catlinks' );
+
  if ( osm.css( 'display' ) === 'none' ) {
        if ( !cats ) {
+
    osm.css( 'display', 'block' );
            return;
+
  } else {
        }
+
    osm.css( 'display', 'none' );
        cats = cats.getElementsByTagName( 'a' );
+
  }
        for ( var i = 0; i < cats.length; i++ ) {
+
  return false;
            if ( cats[i].title === 'Category:Living people' || cats[i].title === 'Category:Possibly living people' ) {
+
  }
                addEditIntro( 'Template:BLP_editintro' );
+
 
                break;
+
  var found_link = false;
            }
+
  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;
 
}
 
}
  
 
/**
 
/**
  * Description: Stay on the secure server as much as possible
+
  * Ändere den Spenden-Link im Sidebar für Besucher aus Deutschland
* Maintainers: [[User:TheDJ]]
+
 
  */
 
  */
if ( document.location && document.location.protocol  && document.location.protocol === 'https:' ) {
+
$( function() {
    /* New secure servers */
+
if ( typeof( Geo ) === "object" && Geo.country === 'DE' && mw.config.get( 'wgUserLanguage' ) === 'de' ) {
    importScript( 'MediaWiki:Common.js/secure new.js' );
+
  var baseUrl = 'https://spenden.wikimedia.de/';
}
+
  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, '' );
 +
  });
 +
});
 +
}

Version vom 26. März 2013, 05:21 Uhr

/* Jedes JavaScript hier wird für alle Benutzer für jede Seite geladen. */
 
/**
 * Sortierung von Umlauten und ß auch ohne [[Vorlage:SortKey]] ermöglichen
 * For jquery.tablesorter.js
 */
mw.config.set( 'tableSorterCollation', {'Ä':'A', 'Ö':'O', 'Ü':'U', 'ä':'a', 'ö':'o', 'ü':'u', 'ß':'ss'} );
 
/**
 * Stay on the same server as much as possible
 * Load page: [[MediaWiki:Common.js/relative.js]]
 */
if( mw.config.get( 'wgNamespaceNumber' ) > 0 ) { //not in main space and special pages
 mw.loader.using( [ 'user', 'mediawiki.user', 'user.options' ], function() { //wait for overrides in user.js
  if( mw.user.options.get( 'relativeProtocols', true ) ) { //disable in user.js, if not needed
   mw.loader.load( '//de.wikipedia.org/w/index.php?title=MediaWiki:Common.js/relative.js'
                   + '&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' );
  }
 });
}
 
/**
 * load the Edittools on [[Special:Upload]] and prefill the summary textarea
 * Load pages: [[MediaWiki:Onlyifuploading.js]], [[MediaWiki:Onlyifediting.js]]
 */
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload') {
 importScript("MediaWiki:Onlyifuploading.js");
 importScript("MediaWiki:Onlyifediting.js");
}
 
/**
 * load the Edittools ([[MediaWiki:Edittools]], the part under the edit form)
 * Load page: [[MediaWiki:Onlyifediting.js]]
 */
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' ) {
 importScript("MediaWiki:Onlyifediting.js");
}
 
/**
 * Nachrichten aus [[MediaWiki:watchlist-summary]] auf der Beobachtungliste ausblenden
 * Load page: [[MediaWiki:Common.js/watchlist.js]]
 */
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist') {
 importScript("MediaWiki:Common.js/watchlist.js");
}
 
//=============================================================
//*** Configuration for "star" logo in front of interwiki links to Featured Articles
//*** and green symbol in front of interwiki links to Good Articles
/** set in Special:Mypage/common.js to switch off this "feature"
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() {
    /** description that is displayed when cursor hovers above FA interwiki links */
    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
 
    /** image to use instead of the standard bullet (for cologneblue, nostalgia and standard */
    var linkFA_bullet = "//upload.wikimedia.org/wikipedia/commons/d/d0/Monobook-bullet-star-transparent.png";
    var linkGA_bullet = "//upload.wikimedia.org/wikipedia/commons/a/a1/Monobook-bullet-star-gray.png";
 
    /** style to use for the linkFA_bullet/LinkGA_bullet img */
    var linkFA_style = "margin-right: 0.2em;";
    var linkGA_style = "margin-right: 0.2em;";
 
    // early exit when disabled
    if ( !mw.user.options.get( 'linkFA_enabled', true ) ) {
        return;
    }
 
    // skins that can be handled the CSS class way
    var skin = mw.config.get( 'skin' );
    if (skin === "monobook" || skin === "simple" || skin === "modern" || skin === "vector" ) {
        linkFA_CSS();
    }
    else if (skin === "cologneblue" || skin === "nostalgia" || skin === "standard") {
        linkFA_decorate();
    }
 
    /** skin == "monobook" || skin == "simple" || skin="modern" || skin== "vector" */
    function linkFA_CSS() {
        // links are to replaced in p-lang only
        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")) {
              li.className += " FA";         // additional class so the template can be hidden with CSS
              li.title = linkFA_description; // change title
              continue;
            }
            if (document.getElementById(li.className + "-ga")) {
              li.className += " GA";         // additional class so the template can be hidden with CSS
              li.title = linkGA_description; // change title
              continue;
            }
        }
    }
 
    /** skin == "cologneblue" || skin == "nostalgia" || skin == "standard" */
    function linkFA_decorate() {
        // these root elements can contain FA-/GA-links
        var rootIds = new Array("topbar", "footer");
        for (var i=0; i<rootIds.length; i++) {
            var root    = document.getElementById(rootIds[i]);
            if (!root)  continue;
 
            // if the root exists, try to decorate all the links within
            var links   = root.getElementsByTagName("a");
            for (var j=0; j<links.length; j++) {
                decorate(links[j], "-fa", linkFA_bullet, linkFA_description, linkFA_style);
                decorate(links[j], "-ga", linkGA_bullet, linkGA_description, linkGA_style);
            }
        }
    }
 
    /** id necessary, modify a link to show the FA- or GA-star (older) */
    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");
	img.setAttribute("src",     bullet);
	img.setAttribute("alt",     description);
	img.setAttribute("style",   style);
	// decorate the link with the image
	link.appendChild(img);
	link.appendChild(link.removeChild(link.firstChild));
	link.setAttribute("title", description);
    }
})});
 
/*
## ProjektLinks ##
by Skript von [[user:Merlissimo]] (Idee basierend auf http://de.wiktionary.org/wiki/MediaWiki:Common.js von [[User:Pathoschild]] und [[wikt:de:User:Melancholie]])
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
    var sisterprojectnav = document.createElement("div");
    sisterprojectnav.id = "p-sisterprojects";
    sisterprojectnav.className = sistersibling.className;
    sisterprojectnav.innerHTML = '<h3>'+document.getElementById("sisterProjects").firstChild.innerHTML+'</h3><div><ul></ul></div>';
    var sistersiblingsub = sistersibling.getElementsByTagName("div")[0];
    if(sistersiblingsub) {
        sisterprojectnav.childNodes[1].className = sistersiblingsub.className;
    } else {
        sisterprojectnav.childNodes[1].className = "pBody";
    }
 
    //Wenn möglich vor den Interwikis einfügen
    var sisternext = document.getElementById("p-lang");
    if ( sisternext && sisternext.parentNode === sisterparent ) {
        sisterparent.insertBefore( sisterprojectnav, sisternext );
    } else {
        sisterparent.appendChild(sisterprojectnav);
    }
 
    //Schwesterlinks ermitteln und einfügen
    var sisterlinks = iProject.getElementsByTagName("a");
    for (var i = 0; i < sisterlinks.length; i++) {
        var sistername = sisterlinks[i].firstChild.nodeValue;
        mw.util.addPortletLink('p-sisterprojects', sisterlinks[i].getAttribute("href") + '?uselang=' + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) ), sistername, "sister-"+ sistername, sistername);
    }
})});
 
/**
 * Fügt einen Link "Alle Sprachen" auf der Hauptseite unter die Sprachverweise hinzu
 */
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'
  );
 })});
}
 
/**
 * force the loading of another JavaScript file
 * Deprecated function, function alias kept for backward compatibility
 */
window.includePage = function( name ) {
    return importScript( name );
}
 
//================================================================================
//*** Dynamic Navigation Bars
 
// set up max count of Navigation Bars on page,
// if there are more, all will be hidden
// mw.user.options.set( 'NavigationBarShowDefault', 0 ); // all bars will be hidden
// 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
// 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
	// Parameters:
	//     indexNavigationBar: the index of navigation bar to be toggled
	function toggleNavigationBar(NavToggle, NavFrame)
	{
	   if (!NavFrame || !NavToggle) {
		   return false;
	   }
 
	   // if shown now
	   if (NavToggle.firstChild.data === textHide) {
		   for (
				   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
	   } else if (NavToggle.firstChild.data === textShow) {
		   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) {
		return function() {
			toggleNavigationBar(NavToggle, NavFrame);
			return false;
		};
	}
	// iterate over all NavFrames
	var NavFrames = mw.util.$content.find( 'div.NavFrame' );
 
	// if more Navigation Bars found and not template namespace than Default: hide all
	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);
 
		// add NavToggle-Button as first div-element
		// in < div class="NavFrame" >
		NavFrame.insertBefore(NavToggle, NavFrame.firstChild);
 
		NavToggle.onclick = toggleNavigationBarFunction(NavToggle, NavFrame);
		if (initiallyToggle) {
			toggleNavigationBar(NavToggle, NavFrame);
		}
	}
})});
 
//================================================================================
 
/** Skript für [[Vorlage:Galerie]] */
jQuery( document ).ready(function() {
  if (document.URL.match(/printable/g)) return;
 
  function toggleImageFunction(group,  remindex, shwindex) {
    return function() {
      document.getElementById("ImageGroupsGr" + group + "Im" + remindex).style["display"] = "none";
      document.getElementById("ImageGroupsGr" + group + "Im" + shwindex).style["display"] = "block";
      return false;
    };
  }
 
  var divs = document.getElementsByTagName("div");
  var i = 0, j = 0;
  var units, search;
  var currentimage;
  var UnitNode;
  for (i = 0; i < divs.length; i++) {
    if (divs[i].className !== "ImageGroup") { continue; }
    UnitNode = undefined;
    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";
      }
    }
  }
});
 
/**
 * 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';
  });
 });
}
 
/**
 * Lokaler Dateidiskussionsseitenlink eines Commonsbildes verweist nach Commons
 */
if (mw.config.get( 'wgNamespaceNumber' ) === 6) {
 mw.loader.using( [ 'mediawiki.util' ], function() { $( function() {
	if ( mw.config.get( 'keepLocalFileTabs', false ) ) {
		return;
	}
	if ( $( '#ca-history' ).length ) {
		return; //Lokale Dateibeschreibung vorhanden?
	}
	if ( !$( 'div.sharedUploadNotice' ).length ) {
		return; //Nur bei Commons-Bildern
	}
 
	var path = '//commons.wikimedia.org/wiki/';
 
	// Ändere Link auf Diskussionsseite
	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' ) ) );
	talkLink.addClass( 'commonstab' );
 
	// Ändere Bearbeiten-Link
	var editLink = $( '#ca-edit a, #ca-viewsource a' );
	editLink.attr( 'href', path + 'File:' + mw.util.wikiUrlencode( mw.config.get( 'wgTitle' ) ) + '?action=edit&uselang=' + mw.util.rawurlencode( mw.config.get( 'wgUserLanguage' ) ) );
	editLink.addClass( 'commonstab' );
	editLink.text( 'Bearbeiten' );
 })});
}
 
/**
 * Fügt bei SVG-Grafiken Links zu gerenderten PNGs in verschiedenen Breiten hinzu
 */
if (mw.config.get( 'wgNamespaceNumber' ) === 6) {
 $( function() {
  var file = $( '#file' ); // might fail if MediaWiki can't render the SVG
  if( file.length && mw.config.get( 'wgIsArticle' ) && mw.config.get( 'wgTitle' ).match( /\.svg$/i ) ) {
   var thumbsrc = file.find( 'img' ).attr( 'src' );
   if( !thumbsrc ) {
    return;
   }
 
   var svgAltSize = function( w, title ) {
    var path = thumbsrc.replace( /\/\d+(px-[^\/]+$)/, "/" + w + "$1" );
    var a = $( document.createElement("a") );
    a.attr( 'href', path );
    a.text( title );
    return a;
   };
 
   var p = $( document.createElement("p") );
   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 );
  }
 });
}
 
/**
 * <noscript>-Emulation via <div class="noscript"></div>
 */
mw.loader.using( [ 'mediawiki.util' ], function() {
 mw.util.addCSS( '.noscript { display:none; }' );
});
 
/**
 * Verwendung von OpenStreetMap in Wikipedia.
 * (c) 2008 by Magnus Manske, Released under GPL
 */
//mediawiki.util is used by openStreetMapToggle
mw.loader.using( [ 'mediawiki.util' ], function() { $( function() {
  var c = $( '#coordinates' );
  if ( !c.length ) {
   return;
  }
 
  var a = c.find( 'a' );
  var geohack = false;
  for (var i = 0; i < a.length; i++) {
    var h = a[i].href;
    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 ) {
   if ( osm.css( 'display' ) === 'none' ) {
    osm.css( 'display', 'block' );
   } else {
    osm.css( 'display', 'none' );
   }
   return false;
  }
 
  var found_link = false;
  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
 */
$( function() {
 if ( typeof( Geo ) === "object" && Geo.country === 'DE' && mw.config.get( 'wgUserLanguage' ) === 'de' ) {
  var baseUrl = 'https://spenden.wikimedia.de/';
  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);
 }
});
 
/**
 * erzeuge einen "Neuen Abschnitt"-Link an der letzten Überschrift
 */
$( 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, '' );
  });
 });
}
Meine Werkzeuge

Varianten
Aktionen
Navigation
Werkzeuge
Teilen