User:CBM/stubtagtab.js

From Wikipedia, the free encyclopedia
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.
// Stub tag tab. By [[User:ais523]], on a request by [[User:thesublime514]].
// ([[User:ais523/stubtagtab.js]])

// Modified slightly by CBM

// <source lang="javascript">
$(function(){
  if(mw.config.get('wgNamespaceNumber')==0&&mw.config.get('wgAction')=="view")
  {
    if(document.getElementById("ca-edit"))
      mw.util.addPortletLink('p-cactions', 'javascript:stubtagtab()', 'stub', 'ca-stubtag',
                                   'Add a stub tag to this page', '');
  }
  if(location.href.indexOf("&autoaddstubtag=")!=-1&&document.getElementById('wpTextbox1')!=null)
  {
    var x=decodeURIComponent(location.href.split("&autoaddstubtag=")[1]);
    if(x=="") x="stub"; else x+="-stub";
    var text = document.getElementById('wpTextbox1').value;
    text = text.replace(/\{\{[mM]ath-stub\}\}/g,  '');
    text = text.replace(/\n\n\n+/g,'\n\n');
    text = text.replace(/\n+$/g,'');
    text += "\n{"+"{"+x+"}}"; //add to the end of the article
    document.getElementById('wpTextbox1').value = text ;
    document.getElementById('wpSummary').value=
      "Tagging with {"+"{"+x+"}} using [[WP:US/S|user scripts]]";
    document.getElementById('wpPreview').click();
  }
});

function stubtagtab()
{
  var x=prompt("Which stub tag? (Leave blank for {"+
               "{stub}}; otherwise -stub will be added to the name)");
  if(x==null) return;
  location.href=mw.config.get('wgServer')+mw.config.get('wgScript')+"?title="+encodeURIComponent(mw.config.get('wgPageName'))+                                  
                "&action=edit&autoaddstubtag="+encodeURIComponent(x);
}

// </source> [[Category:Wikipedia scripts]]