User:GeorgeMoney/Scripts/StubRemove

From Wikipedia, the free encyclopedia

//Written by [[User:GeorgeMoney]], thanks to [[User:Where]] and [[User:Eagle_101]] for help with this!
// BEGIN STUBREMOVE CODE
//check if we are editing and we want to stubfix
if (window.location.href.indexOf('action=edit') != -1 && window.location.href.indexOf('stubfix=1') != -1) {
  function stubfix() {
    document.getElementById('wpSummary').value = "Removing stub";
        var contents = document.getElementById('wpTextbox1').value;
        var newcontents = contents.replace(/\{\{.*?stubs?(\|?.*)\}\}/g, "");
        document.getElementById('wpTextbox1').value = newcontents;
        document.getElementById('wpDiff').click();
        document.getElementById('wpWatchthis').checked = "";
}
    addOnloadHook(function(){ stubfix(); });
}
//Check if it's article to add the tab
if(wgCanonicalNamespace == "") {
  addOnloadHook(function(){ 
   var taburl = "http://en.wikipedia.org/w/index.php?title="+wgPageName+"&action=edit&stubfix=1";
   addTab(taburl, "Remove Stub!", "ca-stubfix", "This is to fix the stubs"); 
  });
}
//END STUBREMOVE CODE