User:Saizai/monobook.js

From Wikipedia, the free encyclopedia

If a message on your talk page led you here, please be wary of who left it. The code below could contain malicious content capable of compromising your account; if your account appears to be compromised, it will be blocked. If you are unsure whether the code is safe, you can ask at the appropriate village pump.
Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.
/* 
<pre> <nowiki> */
 
//importScript('User:Alex_Smotrov/edittop.js');
//if (wgAction=='edit' && document.URL.indexOf('&section=0') != -1)
//addOnloadHook(function(){
//  document.getElementById('wpSummary').value = "/* Intro */ ";
//})
 
// install [[User:Cacycle/wikEd]] in-browser text editor
importScript('User:Cacycle/wikiEd.js');
 
// wikiEd says it has quickpreview functionality
// importScript('User:Sander Säde/quickpreview.js'); 
 
// [[User:Dschwen/highlightredirects.js]] - please include this line 
importScript('User:Dschwen/highlightredirects.js');
//document.write('<script type="text/javascript" src="' 
//             + 'http://en.wikipedia.org/w/index.php?title=User:Dschwen/highlightredirects.js' 
//            + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
 
// should make deleted / up-for-deletion links highlighted
importScript('User:Anomie/linkclassifier.js'); // Linkback: [[User:Anomie/linkclassifier.js]]
importStylesheet('User:Anomie/linkclassifier.css'); // Linkback: [[User:Anomie/linkclassifier.css]]
 
importScript('User:Ais523/votesymbols.js');
importScript('User:Ais523/highlightmyname.js'); // or highlightmyname2.js to not highlight in edit boxes
 
// adds edit/hist for the *other* tag (article / discussion)
importScript('Wikipedia:WikiProject User scripts/Scripts/Six tabs');
 
// Autolink [[wikilinks]] and {{templates}} (especially useful for monobook.js and similar pages)
importScript('Wikipedia:WikiProject User scripts/Scripts/Autolink');
 
// Logs link in toolbox
importScript('Wikipedia:WikiProject User scripts/Scripts/Logs link');
 
// Purge tab
importScript('Wikipedia:WikiProject User scripts/Scripts/Add purge to tabs');
 
// [[User:Henrik/live-edit-counter]]
importScript('User:Henrik/js/live-edit-counter.js'); 
 
// Gives assessment data for an article
// [[User:Outriggr/metadatatest.js]] <nowiki>
importScript('User:Outriggr/metadatatest.js'); 
assessmentMyTemplateCode = ["{{WP conlangs|class=|importance=|needs-infobox=}}"];
// , "{{TemplateB|class=|importance=}}", "{{TemplateC|class=|importance=}}"
assessmentDefaultProject = "WP conlangs";
assessmentMarkAsMinor = false;
assessmentDefaultPriority = "Low";  // (applies to any project with priority/importance ratings)
 
// </nowiki>
 
// [[User:Lupin/popups.js]] - navigation popups
importScript('User:Lupin/popups.js');
 
// [[User:Lupin/Anti-vandal tool]]
importScript("User:Lupin/recent2.js");
 
// [[WP:TWINKLE]]
importScript('User:AzaToth/twinkle.js');
 
importScript('Wikipedia:WikiProject User scripts/Scripts/Add LI menu');
importStylesheet('Wikipedia:WikiProject User scripts/Scripts/Add LI menu/css');
 
 
// WATCHLIST MODIFICATIONS
 
importScript('Wikipedia:WikiProject User scripts/Scripts/Watchlist since'); //[[Wikipedia:WikiProject User scripts/Scripts/Watchlist since]]
 
// importScript('User:Ais523/watchlistnotifier.js');
 
// not compatible with JS-ified watchlists
// importScript('User:Ais523/catwatch.js');
 
 
// importScript('User:Alex Smotrov/wlunwatch.js');
// this makes the above load only on request
if (wgCanonicalSpecialPageName && wgCanonicalSpecialPageName=='Watchlist' && wgAction=='view') 
addOnloadHook(function () {
var frm = document.getElementsByTagName('form')[0];
frm.parentNode.insertBefore(document.createTextNode(' | '), frm);
var lnk = document.createElement('a');
lnk.appendChild(document.createTextNode('Unwatch…'));
lnk.href = 'javascript:importScript("User:Alex_Smotrov/wlunwatch.js")';
frm.parentNode.insertBefore(lnk, frm);
})
 
/*
</nowiki> </pre>
== Watchlist sorter ==
<pre> <nowiki>
Sorts your watchlist by namespace, and also adds spaces for readability.
*/
 
addOnloadHook(function (){
  if (location.href.indexOf('Special:Watchlist') == -1) return; //Are we on a watchlist?
  //days = document.getElementById('bodyContent').getElementsByTagName('ul');
  days = document.evaluate( //Hell knows how it works - found in "Dive into Greasemonkey"
    "//ul[@class='special']",
    document,
    null,
    XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
    null);
  for (d = 0; d < days.snapshotLength; d++) { //For each day
    day = days.snapshotItem(d);
    newday = document.createElement('ul'); //This will replace the old listing
    while ((diffs = day.getElementsByTagName('li')).length > 0) { //Are there any diffs left?
      //Try to extract the namespace
      As = diffs[0].getElementsByTagName('a');
      if (As[0].innerHTML == 'diff')
        pagename = As[2].innerHTML;
      else
        pagename = As[1].innerHTML;
      if (pagename.indexOf(':') == -1)
        namespace = 'Main';
      else
        namespace = pagename.split(':')[0]; //This will fail for articles which contain ":" in name
      hdrs = newday.getElementsByTagName('h5'); //Get the list of namespace headers
      hdr = null;
      for (j=0; j<hdrs.length; j++) //Find the header
        if (hdrs[j].innerHTML==namespace) {
          hdr = hdrs[j]; break;
        }
      if (hdr==null) { //Not found? Make a new one!
        hdr = document.createElement('h5');
        hdr.innerHTML = namespace;
        newday.appendChild(hdr);
        namespacesub = document.createElement('ul');
        newday.appendChild(namespacesub);
      }
      hdr.nextSibling.appendChild(diffs[0]); //Move the diff
    }
    newday.appendChild(document.createElement('hr')); //For readablility
    day.parentNode.replaceChild(newday,day);
  }
});