Jump to content

User:AlptaJS/monobook.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by AlptaJS (talk | contribs) at 02:55, 15 September 2007 (test). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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.
// {{commons ok}} tagger
function commonsOK() {
  document.editform.wpTextbox1.value += "\n{{commons ok}}";
  document.editform.wpSummary.value = "{{[[Template:commons ok|commons ok]]}}";
  document.editform.submit();
}
function addCommonsOK(){
  if (document.editform && wgCanonicalNamespace == "Image") {
    addPortletLink("p-cactions", "javascript:commonsOK()", "{{commons ok}}", "");
  }
}
addOnloadHook(addCommonsOK);



function unverified() {

    // Find the edit box
    var txt = document.editform.wpTextbox1;

    // The tag to be included is an unverified image template
    var tag = '\u007b\u007b' + 'commons ok' + '\u007d\u007d';

    // If the edit box doesn't already have this tag...
    if (txt.value.indexOf(tag) == -1) {

        // Append the tag
        txt.value += tag;
        
        // Add an edit summary
        document.editform.wpSummary.value = '{{[[template:commons ok|commons ok]]}}';    

        // Press the Save page button
        document.editform.submit();
    } 

    // If the tag was already there, turn the tab background red to indicate 
    // that the script is functioning properly, but that there is no action 
    // to do.  This doesn't interrupt the user's work like an alert() would.
    else {
        document.getElementById('ca-unverified').firstChild.style.backgroundColor = "#ff4444";
        document.getElementById('ca-unverified').style.backgroundColor = "#ff4444";
    }
}

// Create a tab that calls this function when pressed
addOnloadHook(function () {
    if(document.title.indexOf("Editing Image:") == 0) {
        addLink('p-cactions', 'javascript:unverified()', 'tag', '{{commons ok}}', 'Adds {{commons ok}}', '', '');
    }
});