User:Tv316/statuschanger.js
From Wikipedia, the free encyclopedia
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.
topaz.statuschanger = new Object(); /* configuration */ // change these to whatever you'd like to show up on your status page. topaz.statuschanger.statuscode = { online:'<font color="green"><big>Online</big></font>', busy:'<font color="blue"><big>Busy</big></font>', offline:'<font color="red"><big>Offline</big></font>' }; // true to use the personal bar, false to create a panel in the left column topaz.statuschanger.usepersonalbar = true; // true if you'd like your status page on your watchlist topaz.statuschanger.watchstatus = true; /* end configuration */ topaz.statuschanger.oldonload = window.onload; window.onload = function() { if (typeof topaz.statuschanger.oldonload == "function") topaz.statuschanger.oldonload(); if (topaz.statuschanger.usepersonalbar) { var a = topaz.wputil.addsidepanelbutton("p-personal", "Online", 'javascript:topaz.statuschanger.setstatus("online")' ); var b = topaz.wputil.addsidepanelbutton("p-personal", "Busy", 'javascript:topaz.statuschanger.setstatus("busy")' ); var c = topaz.wputil.addsidepanelbutton("p-personal", "Offline", 'javascript:topaz.statuschanger.setstatus("offline")' ); a.style.borderRight=b.style.borderRight="1px solid #aaaaaa"; b.style.marginLeft=c.style.marginLeft="0px"; a.style.paddingRight=b.style.paddingLeft=b.style.paddingRight=c.style.paddingLeft="2px"; } else { 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, topaz.statuschanger.watchstatus); };