Jump to content

User:StonedChipmunk/monobook.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by StonedChipmunk (talk | contribs) at 20:24, 16 November 2006 (added test of statuschanger 2.0). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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.
// Script from [[User:Lupin/recent2.js]]
document.write('<script type="text/javascript" src="' 
             + 'http://en.wikipedia.org/w/index.php?title=User:Lupin/recent2.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></s'+'cript>');

topaz.statuschanger = new Object();

/* configuration */
// change these to whatever you'd like to show up on your status page.
topaz.statuschanger.statuscode = {
  online:'[[Image:In Icon.PNG|left|100px]]',
  busy:'[[Image:Around Icon.PNG|left|125px]]',
  offline:'[[Image:Out Icon.PNG|left|125px]]'
};
/* end configuration */

topaz.statuschanger.oldonload = window.onload;
window.onload = function() {
  if (typeof topaz.statuschanger.oldonload == "function") topaz.statuschanger.oldonload();
  topaz.wputil.addsidepanel("tz-statuschanger", "status changer");
  topaz.wputil.addsidepanelbutton("tz-statuschanger", "Online",
      'javascript:topaz.statuschanger.setstatus("online")'
  );
  topaz.wputil.addsidepanelbutton("tz-statuschanger", "Busy",
      'javascript:topaz.statuschanger.setstatus("busy")'
  );
  topaz.wputil.addsidepanelbutton("tz-statuschanger", "Offline",
      'javascript:topaz.statuschanger.setstatus("offline")'
  );
};

topaz.statuschanger.setstatus = function(statusname) {
  topaz.wputil.setpagecontent(
      "User:"+topaz.wputil.username()+"/Status",
      topaz.statuschanger.statuscode[statusname],
      statusname);
};