User:Legoktm/statuschanger.js
From Wikipedia, the free encyclopedia
If a message on your talk page led you here, please be wary of who left it. Code that you insert on this page could contain malicious content capable of compromising your account. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. If this is a .js page, the code will be executed when previewing the page.
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.
//////////STATUS CHANGER // Creator: Misza13 // Credits: Voyagerfan5761 for some minor improvements // Stuff changed by Legoktm // Changes your StatusBot page addOnloadHook(function (){ //Check if the config is defined if (typeof(statusChangerConfig) == 'undefined') { statusChangerConfig = {} } if (typeof(statusChangerConfig.statusList) == 'undefined') { statusChangerConfig.statusList = [ 'online', 'offline' ]; } if (typeof(statusChangerConfig.statusPage) == 'undefined') { statusChangerConfig.statusPage = 'User:StatusBot/Status/' + wgUserName; } //Add the links for (var i=0; i<statusChangerConfig.statusList.length; i++) { var stat = statusChangerConfig.statusList[i]; addPortletLink( "p-personal", //target tab - personal links wgServer + wgScript + "?title=" + statusChangerConfig.statusPage + "&action=edit&newstatus=" + stat, //link URL stat, //link text "pt-status-" + stat, //id of new button "I'm " + stat + "!", //hover text "", //??? document.getElementById("pt-logout")); //add before logout button } if (location.href.indexOf("&action=edit&newstatus=") == -1) return; //Are we here to auto-edit the status? //Get new status statusRegExp = /&action=edit&newstatus=(.*)/; status = statusRegExp.exec(location.href)[1]; //Modify the form document.getElementById('wpTextbox1').value = status; document.getElementById('wpSummary').value = "Status update: " + status; document.getElementById('wpMinoredit').checked = false; //no minor edit //Submit it! document.getElementById('editform').submit(); });