MediaWiki:Common.js

Aus Wiki StuRa HTW Dresden
Version vom 11. Dezember 2010, 20:13 Uhr von Conny (Diskussion | Beiträge) (some scripts from wikipedia)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springen Zur Suche springen

Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.

  • Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
  • Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
  • Internet Explorer/Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
  • Opera: Strg+F5
/* Jedes JavaScript hier wird für alle Benutzer für jede Seite geladen. */

//=============================================================
//*** Configuration for "star" logo in front of interwiki links to Featured Articles
//*** and green symbol in front of interwiki links to Good Articles

/** set to false in Special:Mypage/monobook.js to switch off this "feature" */
var linkFA_enabled  = true;

/** 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 und simple siehe [[MediaWiki:Common.css]]

/** image to use instead of the standard bullet (for cologneblue, nostalgia and standard */
var linkFA_bullet = "http://upload.wikimedia.org/wikipedia/commons/d/d0/Monobook-bullet-star-transparent.png";
var linkGA_bullet = "http://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;";

/**
 * star logo for featured articles in other languages,
 * see Template:Link_FA / Template:Link_GA and MediaWiki:Common.css
 */
addOnloadHook(function() 
{
    // early exit when disabled
    if (!linkFA_enabled) return;

    // skins need to be treated differently
    if (skin == "monobook" || skin == "simple" || skin == "modern") {
        newer();
    }
    else if (skin == "cologneblue" || skin == "nostalgia" || skin == "standard") {
        older();
    }

    /** skin == "monobook" || skin == "simple" || skin="modern" */
    function newer() 
    {
        // 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 older() 
    {
        // 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]);
            }
        }
    }

    /** id necessary, modify a link to show the FA-star (older) */
    function decorate(link) 
    {
        var lang    = link.title.split(":")[0]; // not precise enough
        var fa      = document.getElementById("interwiki-" + lang + "-fa");
        if (fa)
        {
            // build an image-node for the FA-star
            var img = document.createElement("img");
            img.setAttribute("src",     linkFA_bullet);
            img.setAttribute("alt",     linkFA_description);
            img.setAttribute("style",   linkFA_style);
            // decorate the link with the image
            link.appendChild(img);
            link.appendChild(link.removeChild(link.firstChild));
            link.setAttribute("title", linkFA_description);
            return;
        }
        var ga      = document.getElementById("interwiki-" + lang + "-ga");
        if (ga)
        {
            // build an image-node for the GA-star
            var img = document.createElement("img");
            img.setAttribute("src",     linkGA_bullet);
            img.setAttribute("alt",     linkGA_description);
            img.setAttribute("style",   linkGA_style);
            // decorate the link with the image
            link.appendChild(img);
            link.appendChild(link.removeChild(link.firstChild));
            link.setAttribute("title", linkGA_description);
            return;
        }
    }
});

//==============================================================================
//*** Fügt einen Link "Alle Sprachen" auf der Hauptseite unter die Sprachverweise hinzu

addOnloadHook(function() {
   // only on the main page
   if ( wgTitle != 'Hauptseite' || wgNamespaceNumber != 4 )    return;

   try {
       var node = document.getElementById( "p-lang" )
                           .getElementsByTagName('div')[0]
                           .getElementsByTagName('ul')[0];

       var aNode = document.createElement( 'a' );
       var liNode = document.createElement( 'li' );

       aNode.appendChild( document.createTextNode( 'Alle Sprachen' ) );
       aNode.setAttribute( 'href' , 'http://de.wikipedia.org/wiki/Wikipedia:Sprachen' );
       liNode.appendChild( aNode );
       liNode.className = 'interwiki-completelist';
       node.appendChild( liNode );
    } catch(e) {
        // lets just ignore what's happened
    }
});

//================================================================================
//*** force the loading of another JavaScript file (Kopie von [[Commons:Common.js]])
// Local Maintainer: [[Commons:User:Dschwen]]

function includePage(name) {
    document.write('<script type="text/javascript" src="' + wgScript + '?title='
        + name + '&action=raw&ctype=text/javascript&dontcountme=s"><\/script>');    // smaxage=3600
}

//==============================================================================
//*** Fügt der Suche weitere Suchengines hinzu (kopiert aus eswp)
// 2009-07-02: Auskommentiert, da das neue Suchformular anders funktioniert. Raymond.
//
//if (wgCanonicalSpecialPageName == "Search") {
//    includePage("MediaWiki:SpezialSuche.js");
//}

//================================================================================
//*** import Onlyifuploading-functions
// SEE ALSO [[MediaWiki:Onlyifuploading.js]]

if (wgCanonicalSpecialPageName == "Upload") {
    includePage("MediaWiki:Onlyifuploading.js");
    includePage("MediaWiki:Onlyifediting.js");
}

//================================================================================
//*** Dynamic Navigation Bars

// set up the words in your language
var NavigationBarHide = 'Einklappen';
var NavigationBarShow = 'Ausklappen';

// set up max count of Navigation Bars on page,
// if there are more, all will be hidden
// NavigationBarShowDefault = 0; // all bars will be hidden
// NavigationBarShowDefault = 1; // on pages with more than 1 bar all bars will be hidden
if (typeof NavigationBarShowDefault == 'undefined' ) {
    var NavigationBarShowDefault = 1;
}

// adds show/hide-button to navigation bars
addOnloadHook(function() {
	// shows and hides content and picture (if available) of navigation bars
	// Parameters:
	//     indexNavigationBar: the index of navigation bar to be toggled
	function toggleNavigationBar(indexNavigationBar)
	{
	   var NavToggle = document.getElementById("NavToggle" + indexNavigationBar);
	   var NavFrame = document.getElementById("NavFrame" + indexNavigationBar);

	   if (!NavFrame || !NavToggle) {
		   return false;
	   }

	   // if shown now
	   if (NavToggle.firstChild.data == NavigationBarHide) {
		   for (
				   var NavChild = NavFrame.firstChild;
				   NavChild != null;
				   NavChild = NavChild.nextSibling
			   ) {
			   if (NavChild.className == 'NavPic') {
				   NavChild.style.display = 'none';
			   }
			   if (NavChild.className == 'NavContent') {
				   NavChild.style.display = 'none';
			   }
			   if (NavChild.className == 'NavToggle') {
				   NavChild.firstChild.data = NavigationBarShow;
			   }
		   }

	   // if hidden now
	   } else if (NavToggle.firstChild.data == NavigationBarShow) {
		   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 = NavigationBarHide;
			   }
		   }
	   }
	}

	function toggleNavigationBarFunction(indexNavigationBar) {
		return function() {
			toggleNavigationBar(indexNavigationBar);
			return false;
		};
	}

   var indexNavigationBar = 0;
   // iterate over all < div >-elements
   var divs = document.getElementsByTagName("div");
   for (var i=0;  i<divs.length; i++) {
       var NavFrame = divs[i];
       // if found a navigation bar
       if (NavFrame.className == "NavFrame") {

           indexNavigationBar++;
           var NavToggle = document.createElement("a");
           NavToggle.className = 'NavToggle';
           NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar);
           NavToggle.setAttribute('href', '#');
		   NavToggle.onclick = toggleNavigationBarFunction(indexNavigationBar);

           var NavToggleText = document.createTextNode(NavigationBarHide);
           NavToggle.appendChild(NavToggleText);

           // add NavToggle-Button as first div-element
           // in < div class="NavFrame" >
           NavFrame.insertBefore(
               NavToggle,
               NavFrame.firstChild
           );
           NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar);
       }
   }
   // if more Navigation Bars found than Default: hide all
   if (NavigationBarShowDefault < indexNavigationBar) {
       for(
               var i=1;
               i<=indexNavigationBar;
               i++
       ) {
           toggleNavigationBar(i);
       }
   }
});

//================================================================================
//*** import Onlyifediting-functions
// SEE ALSO [[MediaWiki:Onlyifediting.js]]

if (document.URL.indexOf("action=edit") > 0 || document.URL.indexOf("action=submit") > 0) {
    includePage("MediaWiki:Onlyifediting.js");
}

//================================================================================

/** Skript für Vorlage:Galerie */
addOnloadHook(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";
      }
    }
  }
});

/* admin ui changes */

if( window.wgUserGroups ) {
  for(var i = 0; i < wgUserGroups.length; ++i) {
    if(wgUserGroups[i] === "sysop") {
  /*  importScript("MediaWiki:Group-sysop.js");  kann bei Bedarf ent-auskommentiert werden  */
      importStylesheet("MediaWiki:Group-sysop.css");
      break;
    }
  }
}

//==============================================================================
//*** Fügt eine Betreffzeile auf leeren Diskussionsseiten ein

addOnloadHook(function() {
        if(wgNamespaceNumber != 0 && wgNamespaceNumber != 1) return;
	var tab = document.getElementById( 'ca-talk' );
	if( !tab || tab.className != 'new' ) return;
	var link = tab.getElementsByTagName( 'a' )[0];
	if( !link ) return;
	link.href += '&section=new';
});


// Lokaler Bilddiskussionsseitenlink eines Commonsbildes verweist nach Commons

if( wgNamespaceNumber === 6 ) addOnloadHook( function() {
	if( window.keepLocalFileTabs ) return;
	if( document.getElementById( 'ca-history' ) ) return; //Lokale Dateibeschreibung vorhanden?
	if( !getElementsByClassName( document, 'div', 'sharedUploadNotice' )[0] ) return; //Nur bei Commons-Bildern
 
	var talk = document.getElementById( 'ca-talk' );
	if( !talk.className.match( /(^| )new( |$)/) ) return;
	var path = wgServer.match( /^https/ )
		? 'https://secure.wikimedia.org/wikipedia/commons/wiki/'
		: 'http://commons.wikimedia.org/wiki/';
 
	//Ändere Link auf Diskussionsseite
	var link                  = talk.getElementsByTagName( 'a' )[0];
	link.href                 = path + 'File_talk:' + encodeURIComponent( wgTitle ) + '?uselang=de';
	link.className           += ' commonstab';
 
	//Ändere Bearbeiten-Link
	var link                  = document.getElementById( 'ca-edit' ).getElementsByTagName( 'a' )[0];
	link.href                 = path + 'File:' + encodeURIComponent( wgTitle ) + '?action=edit&uselang=de';
	link.className           += ' commonstab';
	link.firstChild.nodeValue = 'Bearbeiten';
});

// Fügt bei SVG-Grafiken Links zu gerenderten PNGs in verschiedenen Breiten hinzu //
addOnloadHook(function() {
   if (wgAction == "view" && wgNamespaceNumber == 6 && wgTitle.substring(wgTitle.lastIndexOf(".")).toLowerCase() == ".svg") {
      if (document.getElementById("shared-image-desc") == null) url = "http://de.wikipedia.org/w/thumb.php?f=";
      else url = "http://commons.wikimedia.org/w/thumb.php?f=";
      div = document.createElement("div");
      div.appendChild(document.createTextNode("Aus SVG automatisch erzeugte PNG-Grafiken in verschiedenen Auflösungen:"));
      div.appendChild(document.createElement("br"));
      a200 = document.createElement("a");
      a200.setAttribute("href", url + wgTitle + "&width=200px");
      a200.appendChild(document.createTextNode("200px"));
      a500 = document.createElement("a");
      a500.setAttribute("href", url + wgTitle + "&width=500px");
      a500.appendChild(document.createTextNode("500px"));
      a1000 = document.createElement("a");
      a1000.setAttribute("href", url + wgTitle + "&width=1000px");
      a1000.appendChild(document.createTextNode("1000px"));
      a2000 = document.createElement("a");
      a2000.setAttribute("href", url + wgTitle + "&width=2000px");
      a2000.appendChild(document.createTextNode("2000px"));
      div.appendChild(a200);
      div.appendChild(document.createTextNode(", "));
      div.appendChild(a500);
      div.appendChild(document.createTextNode(", "));
      div.appendChild(a1000);
      div.appendChild(document.createTextNode(", "));
      div.appendChild(a2000);
      div.appendChild(document.createTextNode("."));
      document.getElementById("file").parentNode.insertBefore(div, document.getElementById("file").nextSibling.nextSibling);
   }
});


/** Mobile browser helper link ************************************************
 *
 *  Adds a link to the mobile-optimized gateway at en.m.wikimedia.org
 *  for viewers on iPhone, iPod Touch, Palm Pre, and Android devices.
 *  This isnto drive more test traffic there for now;
 *  it's still in development but very usable for reading!
 *
 *  You can turn off the redirect by passing in the parameter "stopMobileRedirect=true"
 *
 *  Maintainer: [[User:hcatlin]], [[User:Brion VIBBER]]
 */
if (/(Android|iPhone|iPod|webOS)/.test(navigator.userAgent)) {
  var runMobileCheck = function() {
                          if(document.location.href.indexOf("stopMobileRedirect=true") > 0) {
                            document.cookie = 'stopMobileRedirect=true; expires=Thu, 05 Jun 2014 17:17:49 GMT; path=/';
                          } else if(document.location.href.indexOf("stopMobileRedirect=false") > 0) {
                            document.cookie = 'stopMobileRedirect=false; expires=Thu, 05 Jun 2014 17:17:49 GMT; path=/';
                          }
 
                          //if(stopMobileRedirectCookieExists()) {
                            addOnloadHook(showMobileLinkHeader);
                          //} else {
                          //  document.location = mobileSiteLink();
                          //}
                        }
 
 
  var stopMobileRedirectCookieExists = function() {
                                          return(document.cookie.indexOf("stopMobileRedirect=true") > 0);
                                        }
 
  var showMobileLinkHeader = function() {
                                var div = document.createElement('div');
                                div.setAttribute( "id", "mobileDeviceNotice" );
                                div.style.fontSize = '30pt';
                                div.style.lineHeight = '40pt';
                                div.style.textAlign = 'center';
                                div.style.marginTop = '20px';
                                div.style.marginBottom = '20px';
                                div.style.padding = '20px';
                                div.style.border = '2px solid gray';
                                div.appendChild(document.createTextNode("Diese Seite auf der  "));
                                var link = document.createElement('a');
                                link.href = mobileSiteLink();
                                link.appendChild(document.createTextNode("mobilen Version der Wikipedia"));
                                div.appendChild(link);
                                var content = document.getElementById('content');
                                content.insertBefore(div, content.firstChild);
                              }
 
  var mobileSiteLink = function() {
                          if (wgCanonicalNamespace == 'Special' && wgCanonicalSpecialPageName == 'Search') {
                             var pageLink = '?search=' + encodeURIComponent(document.getElementById('searchText').value);
                          } else if (wgPageName == 'Wikipedia:Hauptseite') {
                             var pageLink = '::Home'; // Special case
                          } else {
                             var pageLink = encodeURIComponent(wgPageName).replace('%2F','/').replace('%3A',':');
                          }
                          return 'http://' + wgUserLanguage + '.m.wikipedia.org/wiki/' + pageLink
                        }
 
  // Code to run a certain number of users into the mobile site
  //if(Math.random() > 1.0) {
   //runMobileCheck();
  //}
}