User:Greenpickle/monobook.js

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEdDiff.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>'
+ '<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>');

/*

MediaWiki recent changes namespace toggler version 0.5 by Greenpickle.

Put the code on any script page you want, such as User:Name/monobook.js,
Mediawiki:Common.js, etc..  There are a few options detailed a bit lower down.

To-do:
 - incorporate logs stuff: deletions, uploads, bans, etc.
 - make possible with enchanced (grouped) RC
 - hide h4s that have no visible contents
 - extra buttons to toggle all/invert toggle
 - check for existence of indexOf, etc. before doing anything

*/

// Change this to true to make the list below an include list rather than an
// exclude list:

include = false;

// Here, default namespaces can be set; put them in '' or "" separated by
// commas, inside the [].  By default, this is the excluded list:

RCNSTList = ['User', 'User talk', 'User blog', 'Blog', 'Blog talk'];

// Change these if it'll make styling easier - e.g., use ul/li and create a
// hover menu:

RCNSTbeforecheckboxes = '<span id="rcnst"><hr />\n';
RCNSTaftercheckboxes = '</span>';
RCNSTbeforecheckbox = '';
RCNSTaftercheckbox = '\n';

window.onload = function () {
    if (document.body.className.indexOf("page-Special_RecentChanges") == -1) return;
    choice = document.getElementById("namespace").childNodes;
    nslist = [];
    for (i in choice) if (choice[i].tagName == "OPTION" && choice[i].value != "") nslist[choice[i].value] = choice[i].innerHTML;
    temp = RCNSTList;
    RCNSTList = [];
    for (i in nslist) {
        if (!include && (temp.indexOf(nslist[i]) != -1)) RCNSTList[i] = false;
        else if (include && (temp.indexOf(nslist[i])) == -1) RCNSTList[i] = false;
    }
    s = RCNSTbeforecheckboxes;
    for (i in nslist) {
        if (RCNSTList[i] == false) insert = '';
        else insert = 'checked="checked"';
        s += RCNSTbeforecheckbox + '<input type="checkbox" ' + insert + 'name="RCNST' + i + '" onclick="RCNST()" /><label for="RCNST' + i + '">' + nslist[i] + '</label>' + RCNSTaftercheckbox;
    }
    s += RCNSTaftercheckboxes;
    document.getElementsByClassName("rcoptions")[0].innerHTML += s;
    RCNST();
}
function RCNST () {
    for (i in nslist) {
        if (document.getElementsByName("RCNST" + i)[0].checked) RCNSTList[i] = true;
        else RCNSTList[i] = false;
    }
    days = document.getElementsByClassName("special");
    for (i in days) {
        if (days[i].tagName != "UL") continue;
        items = days[i].childNodes;
        for (j = 0; j < items.length; j++) {
            if (items[j].tagName != "LI") continue;
            page = items[j].getElementsByTagName("a")[1];
            if (page.innerHTML != "diff") continue;
            page = page.href;
            page = page.substring(page.indexOf("?title=") + 7);
            page = page.substring(0, page.indexOf("&curid="));
            page = page.substring(0, page.indexOf(":")).replace("_", " ");
            ns = nslist.indexOf(page);
            if (ns == -1) ns = 0;
            if (RCNSTList[ns]) items[j].style.display = "";
            else items[j].style.display = "none";
        }
    }
}