Benutzer:Chris828/monobook.js

aus Wikipedia, der freien Enzyklopädie

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
 // Unterschied lokale Zeit zur Systemzeit (bleibt für Mitteleuropäer 0)
 var timezoneshift = 0;
 // aktuelle Zeit ermitteln
 var jetzt = new Date();
 var jetztfixed = jetzt.getTime();
 jetztfixed += (timezoneshift * 3600 * 1000);
 jetzt.setTime(jetztfixed);
 // fill date variables
 var Monate = new Array("", "Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember");
 var Jahr = jetzt.getYear();
 if (Jahr < 999)  Jahr += 1900;
 var Monat = jetzt.getMonth() + 1;
 var Tag = jetzt.getDate();
 // fill WP date variables
 var refDatum = jetzt.getDate() + '. ' + Monate[jetzt.getMonth() + 1] + ' ' + Jahr;

// Mehr Buttons:
customEditButtons="A,B,E,G,H,I1,I2,J1,K,M,Q,R,R3,S,U,V,W,X,FS,ZA,BG,BG2";
myButtons={'ZA':['http://upload.wikimedia.org/wikipedia/commons/e/e9/Button_done.png','Erledigt',"\{\{Erledigt|\~\~\~|\~\~\~\~\~\}\}",'',''],
'BG':['http://upload.wikimedia.org/wikipedia/commons/d/d1/Puls_da_aiutare.png','Einzelnachweis BGIA GESTIS',"<ref name=\"GESTIS\">{{GESTIS|ZVG=|CAS=|Name=|Datum=" + refDatum + "}}</ref>",'',''],
'BG2':['http://upload.wikimedia.org/wikipedia/commons/f/fe/Button_refs.png','Einzelnachweis BGIA GESTIS wiederholen',"<ref name=\"GESTIS\"/>",'','']};
var usersignature = '--\~\~\~\~';
document.write('<script type="text/javascript" src="http://de.wikipedia.org/w/index.php?title=Benutzer:Olliminatore/customToolbar.js&action=raw&ctype=text/javascript&dontcountme=s"> <\/script>');

// IP-Patrol-Vandalenkennzeichnung
document.write('<SCRIPT SRC="http://de.wikipedia.org/w/index.php?title=Benutzer:APPER/IP-Patrol/js&action=raw&ctype=text/javascript"><\/SCRIPT>');

// siehe [[WP:AN#angebotene Bild-Diskussionsseite auf de, obwohl die Bild-Datei von Commons eingebunden ist]] //
if( wgNamespaceNumber == 6 ) addOnloadHook( function() {
	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; //Lokale Diskussion schon vorhanden.
 
	var path = wgServer.match( /^https/ )
		? 'https://secure.wikimedia.org/wikipedia/commons/wiki/'
		: 'http://commons.wikimedia.org/wiki/';
	var link = talk.getElementsByTagName( 'a' )[0];
	link.href = path + 'File_talk:' + encodeURIComponent( wgTitle );
	link.style.color = '#3366BB';
});

//wird inzwischen automatisch angezeigt
/*
// aus [[Commons:User:Slomox/monobook.js]] //
function SVGInfo () {
   if ((wgNamespaceNumber == 6) && (wgTitle.substring(wgTitle.indexOf(".")).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);
   }
}

$(SVGInfo);
*/