User:The Obento Musubi/monobook.js/tabs.js

From Wikipedia, the free encyclopedia

Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.

/* <pre><nowiki> */
 
// ========== Content Relating to this Script Only ============
 
if (document.title.indexOf("Editing ") == 0) {
	if (window.addEventListener) window.addEventListener("load", loadTabs, false);
	else if (window.attachEvent) window.attachEvent("onload", loadTabs);
}
 
if (window.location.href.indexOf("Special") == -1) {
    if (window.addEventListener) window.addEventListener("load", loadNonEdit, false);
    else if (window.attachEvent) window.attachEvent("onload", loadNonEdit);
}
 
function loadTabs() {
	sNamespace = getNameSpace();
	bContent = checkContent();
}
 
function loadNonEdit() {
	addQpp();	//	Purge Page Button
}
 
// ========== Purge Button ==========
 
function doQpp() {
	var nurl = "http://en.wikipedia.org/w/index.php?title=" + getPname() + "&action=purge";
	document.location = nurl;
}
 
function addQpp() {
	addTab("javascript:doQpp()", "purge", "ca-pp", "Purge this page.", "");
}
 
/* </nowiki></pre> */