Jump to content

User:BrownHairedGirl/Unref.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.
/* <pre> [[User:BrownHairedGirl/Unref.js]] <nowiki> */

function TagAsUnreferenced() {
//var apiurl = mw.config.get('wgServer')+mw.config.get('wgScriptPath')+'/api.php?action=query&meta=siteinfo&siprop=namespaces&format=xml';
//var xmlhttp = window.XMLHttpRequest ? new XMLHttpRequest() : window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : null;
//xmlhttp.open('GET',apiurl, false);
//xmlhttp.send(null);
//alert(xmlhttp.responseXML.getElementById('14').childNodes[0].nodeValue);

    var txt = document.editform.wpTextbox1.value;
    var scrollPosition = document.editform.wpTextbox1.scrollTop;
    // Now that we know that everything is OK, we can proceed with modifying the content of the editbox
    txt = "{{subst:dated|unreferenced}}\n" + txt;
    document.editform.wpTextbox1.value=txt;
    // Restore scroll position
    document.editform.wpSummary.value = "{{[[Template:Unreferenced|unreferenced]]}}; " + document.editform.wpSummary.value;
    document.editform.wpTextbox1.scrollTop = scrollPosition;
}

addOnloadHook(function() {
  if (mw.config.get('wgCanonicalNamespace') == "User" || mw.config.get('wgCanonicalNamespace') == "User_talk") {
     return;
  }
  if (document.editform) {
     mw.util.addPortletLink('p-cactions', 'javascript:TagAsUnreferenced()', 'unref', 'ca-unref', 'Mark as unreferenced', '', document.getElementById('ca-purge'));
  }
});

/* </nowiki></pre> */