MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus SchnuppTrupp
Wechseln zu: Navigation, Suche
K
K (Änderung 27039 von Novelette (Diskussion) rückgängig gemacht.)
Zeile 8: Zeile 8:
 
   }
 
   }
 
}
 
}
 
addOnloadHook( setup );
 
 
 
function toSt2(n) {
 
function toSt2(n) {
 
   s = "";
 
   s = "";
Zeile 58: Zeile 55:
 
}
 
}
  
/** Dynamic Navigation Bars (experimental) *************************************
+
//================================================================================
  *
+
//*** Dynamic Navigation Bars
  *  Description: See [[Wikipedia:NavFrame]].
+
  *  Maintainers: UNMAINTAINED
+
  */
+
 
   
 
   
  // set up the words in your language
+
// set up the words in your language
  var NavigationBarHide = '[' + collapseCaption + ']';
+
var NavigationBarHide = 'Einklappen';
  var NavigationBarShow = '[' + expandCaption + ']';
+
var NavigationBarShow = 'Ausklappen';
 
   
 
   
  // set up max count of Navigation Bars on page,
+
// set up max count of Navigation Bars on page,
  // if there are more, all will be hidden
+
// if there are more, all will be hidden
  // NavigationBarShowDefault = 0; // all bars will be hidden
+
NavigationBarShowDefault = 0; // all bars will be hidden
  // NavigationBarShowDefault = 1; // on pages with more than 1 bar all bars will be hidden
+
// NavigationBarShowDefault = 1; // on pages with more than 1 bar all bars will be hidden
  var NavigationBarShowDefault = autoCollapse;
+
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(NavToggle, NavFrame)
 +
{
 +
  if (!NavFrame || !NavToggle) {
 +
  return false;
 +
  }
 
   
 
   
  // shows and hides content and picture (if available) of navigation bars
+
  // if shown now
  // Parameters:
+
  if (NavToggle.firstChild.data == NavigationBarHide) {
  //    indexNavigationBar: the index of navigation bar to be toggled
+
  for (
  function toggleNavigationBar(indexNavigationBar)
+
  var NavChild = NavFrame.firstChild;
  {
+
  NavChild != null;
    var NavToggle = document.getElementById("NavToggle" + indexNavigationBar);
+
  NavChild = NavChild.nextSibling
    var NavFrame = document.getElementById("NavFrame" + indexNavigationBar);
+
  ) {
 +
  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 (!NavFrame || !NavToggle) {
+
  // if hidden now
        return false;
+
  } 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;
 +
  }
 +
  }
 +
  }
 +
}
 
   
 
   
    // if shown now
+
function toggleNavigationBarFunction(NavToggle, NavFrame) {
    if (NavToggle.firstChild.data == NavigationBarHide) {
+
return function() {
        for (
+
toggleNavigationBar(NavToggle, NavFrame);
                var NavChild = NavFrame.firstChild;
+
return false;
                NavChild != null;
+
};
                NavChild = NavChild.nextSibling
+
}
            ) {
+
// iterate over all NavFrames
            if ( hasClass( NavChild, 'NavPic' ) ) {
+
var content = document.getElementById("content") || document.getElementById("mw_content");
                NavChild.style.display = 'none';
+
var NavFrames = getElementsByClassName(content, "div", "NavFrame");
            }
+
// if more Navigation Bars found and not template namespace than Default: hide all
            if ( hasClass( NavChild, 'NavContent') ) {
+
var initiallyToggle = NavigationBarShowDefault < NavFrames.length && wgNamespaceNumber != 10;
                NavChild.style.display = 'none';
+
for (var i=0;  i<NavFrames.length; i++) {
            }
+
var NavFrame = NavFrames[i];
        }
+
var NavToggle = document.createElement("a");
    NavToggle.firstChild.data = NavigationBarShow;
+
NavToggle.className = 'NavToggle';
 +
NavToggle.setAttribute('href', '#');
 
   
 
   
    // if hidden now
+
var NavToggleText = document.createTextNode(NavigationBarHide);
    } else if (NavToggle.firstChild.data == NavigationBarShow) {
+
NavToggle.appendChild(NavToggleText);
        for (
+
                var NavChild = NavFrame.firstChild;
+
                NavChild != null;
+
                NavChild = NavChild.nextSibling
+
            ) {
+
            if (hasClass(NavChild, 'NavPic')) {
+
                NavChild.style.display = 'block';
+
            }
+
            if (hasClass(NavChild, 'NavContent')) {
+
                NavChild.style.display = 'block';
+
            }
+
        }
+
    NavToggle.firstChild.data = NavigationBarHide;
+
    }
+
  }
+
 
   
 
   
  // adds show/hide-button to navigation bars
+
// add NavToggle-Button as first div-element
  function createNavigationBarToggleButton()
+
// in < div class="NavFrame" >
  {
+
NavFrame.insertBefore(NavToggle, NavFrame.firstChild);
    var indexNavigationBar = 0;
+
    // iterate over all < div >-elements
+
    var divs = document.getElementsByTagName("div");
+
    for(
+
            var i=0;
+
            NavFrame = divs[i];
+
            i++
+
        ) {
+
        // if found a navigation bar
+
        if (hasClass(NavFrame, "NavFrame")) {
+
+
            indexNavigationBar++;
+
            var NavToggle = document.createElement("a");
+
            NavToggle.className = 'NavToggle';
+
            NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar);
+
            NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');');
+
+
            var NavToggleText = document.createTextNode(NavigationBarHide);
+
            NavToggle.appendChild(NavToggleText);
+
            // Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked)
+
            for(
+
              var j=0;  
+
              j < NavFrame.childNodes.length;
+
              j++
+
            ) {
+
              if (hasClass(NavFrame.childNodes[j], "NavHead")) {
+
                NavFrame.childNodes[j].appendChild(NavToggle);
+
              }
+
            }
+
            NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar);
+
        }
+
    }
+
    // if more Navigation Bars found than Default: hide all
+
    if (NavigationBarShowDefault < indexNavigationBar) {
+
        for(
+
                var i=1;
+
                i<=indexNavigationBar;
+
                i++
+
        ) {
+
            toggleNavigationBar(i);
+
        }
+
    }
+
+
  }
+
 
   
 
   
  addOnloadHook( createNavigationBarToggleButton );
+
NavToggle.onclick = toggleNavigationBarFunction(NavToggle, NavFrame);
 +
if (initiallyToggle) {
 +
toggleNavigationBar(NavToggle, NavFrame);
 +
}
 +
}
 +
        setup();
 +
});

Version vom 7. Juli 2011, 12:44 Uhr

/* Das folgende JavaScript wird für alle Benutzer geladen. */

function setup() {
  if (document.getElementById('countdown')) {
    if (end = new Date(document.getElementById('countdown').innerHTML)) {
      setTimeout("countdown()", 500);
    }
  }
}
function toSt2(n) {
  s = "";
  if (n < 10) s += "0";
  return (s + n).toString();
}
function toSt3(n) {
  s = "";
  if (n < 10) s += "00";
  else if (n < 100) s += "0";
  return (s + n).toString();
}
function countdown() {
  var tname = ' Tage ';
  var hname = ' Stunden ';
  var mname = ' Minuten ';
  var sname = ' Sekunden ';
  var d = new Date();
  var count = Math.floor(end.getTime() - d.getTime());
  if(count > 0) {
    var miliseconds = toSt3(count%1000); count = Math.floor(count/1000);
    var seconds = toSt2(count%60); count = Math.floor(count/60);
    if (seconds==1) {
      sname = ' Sekunde ';
    }
    var minutes = toSt2(count%60); count = Math.floor(count/60);
    if (minutes==1) {
      mname = ' Minute ';
    }
    var hours = toSt2(count%24); count = Math.floor(count/24);
    if (hours==1) {
      hname = ' Stunde ';
    }
    var days = count;
    if (days==1) {
      tname = ' Tag ';
    }
    document.getElementById('countdown').innerHTML = days + tname + hours + hname + minutes + mname + seconds + sname +'';
    setTimeout("countdown()", 1000);
  }
}

function rskpopup (url,name,x,y) {
    newwindow= window.open(url, name, "width=" + x + ",height=" + y + ",scrollbars=no,location=no");
    newwindow.focus();

}

//================================================================================
//*** 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(NavToggle, NavFrame)
	{
	   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(NavToggle, NavFrame) {
		return function() {
			toggleNavigationBar(NavToggle, NavFrame);
			return false;
		};
	}
	// iterate over all NavFrames
	var content	= document.getElementById("content") || document.getElementById("mw_content");
	var NavFrames = getElementsByClassName(content, "div", "NavFrame");
	// if more Navigation Bars found and not template namespace than Default: hide all
	var initiallyToggle	= NavigationBarShowDefault < NavFrames.length && 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(NavigationBarHide);
		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);
		}
	}
        setup();
});