User talk:Chris day/toolbox.js

From Citizendium
Jump to navigation Jump to search

function addToToolbox() {

 if (wgCanonicalNamespace != "Special") {
  var pTb = document.getElementById("p-tb");
  var pRef = pTb.cloneNode(true);
  var pStats = pTb.cloneNode(true);
  pRef.id="p-refs";

pRef.innerHTML = "

Reference formatting

    ";

      pStats.id="p-stats";
    

    pStats.innerHTML = "

    Statistics

      ";

        pTb.parentNode.insertBefore(pRef, pTb.nextSibling);
        pTb.parentNode.insertBefore(pStats, pRef);
      
        addPortletLink("p-refs", "http://tools.wikimedia.de/~verisimilus/Bot/DOI_bot/doibot.php?edit=toolbar&turbo=1&user="+wgUserName+"&page="+wgPageName, 'Automatic (fast)', , "Add DOIs to citations and fix common formatting errors. Turbo mode!");
        addPortletLink("p-refs", "http://tools.wikimedia.de/~verisimilus/Bot/DOI_bot/doibot.php?edit=toolbar&slow=1&user="+wgUserName+"&page="+wgPageName, 'Automatic (thorough)', , "Add DOIs to citations and fix common formatting errors");
        addPortletLink("p-refs", "http://tools.wikimedia.de/~verisimilus/Scholar/RefTool.php?user="+wgUserName+"&wgPageName="+wgPageName, 'Semi-automatic (experimental)', , "Improve formatting of references – manually approve automatic improvements");
      
        now = new Date();
        var month = now.getMonth();
        var thisMonth = (now.getDay() > 6);
        if (thisMonth) month++;
        if (month == 0) var month=12;
        else var month =  ((month <10)?'0':) + month;
        addPortletLink("p-stats", "http://stats.grok.se/en/" + now.getFullYear() + month + "/"+wgPageName, 'Traffic stats', , "Traffic to this page " + (thisMonth?'this':'last') + " month");
        addPortletLink("p-stats", "http://wikidashboard.parc.com/wiki/"+wgPageName, 'Edit history stats', , "Statistics about the edit history of this page");
      
         }
      

      } addOnloadHook(addToToolbox);