Jump to content

User:Esrever/monobook.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
importScript('User:Dr pda/articlehistory.js');

importScript('User:Magnus Manske/fixdisambig.js');

importScript('User:Dr pda/persondata.js'); //[[User:Dr pda/persondata.js]]

/*
<pre><nowiki>
*/
function addTab(id, after, caption, url) {
  if (!document.getElementById(id)) {
    var edit = document.getElementById(after);
    if (!edit) return; //If the previous tab doesn't exist, don't add this one
    var editparent = edit.parentNode;
    //+
    var aseclinkcaption = document.createTextNode(caption)
    //'<a href="/index.php?title=User_talk:Astronouth7303&amp;action=edit&amp;section=new">'
    var aseclink = document.createElement('a');
    aseclink.setAttribute('href',url);
    var addsectionlinkcaption = aseclink.appendChild(aseclinkcaption);
    //'<li id="ca-addsection">'
    var asec = document.createElement('li');
    asec.setAttribute('id',id);
    var addsectionlink = asec.appendChild(aseclink);
    var addsection = editparent.insertBefore(asec,edit.nextSibling);
  }
}
 
function addEditSection() {
	var arti = mw.config.get('wgPageName');
	addTab("ca-addsection", 'ca-edit', '+', mw.config.get('wgScriptPath')+"/index.php?title="+escape(arti)+"&action=edit&section=new");
	addTab("ca-editfirst" , 'ca-edit', '0', mw.config.get('wgScriptPath')+"/index.php?title="+escape(arti)+"&action=edit&section=0");
}
if (window.addEventListener) window.addEventListener("load",addEditSection,false);
else if (window.attachEvent) window.attachEvent("onload",addEditSection);
/*
</nowiki></pre>
*/