User:PandaB31/vector.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .css page for this skin can be added at User:PandaB31/vector.css. |
importScript('User:TheDJ/qui.js');
importScript('User:Smith609/toolbox.js');//////////STATUS CHANGER
// Creator: Misza13// Credits: Voyagerfan5761 for some minor improvements
// Modified by Xenocidic to simply use /Status as a one word indicator,
// Modified by Kraftlos to include Sleep status
// compatible with {{Statustop}} for display addOnloadHook(function (){
//Check if the config is defined
if (typeof(statusChangerConfig) == 'undefined') { statusChangerConfig = {}
} if (typeof(statusChangerConfig.statusList) == 'undefined') {
statusChangerConfig.statusList = [ 'online', 'busy', 'around', 'offline', 'sleep' ];
} if (typeof(statusChangerConfig.statusPage) == 'undefined') {
statusChangerConfig.statusPage = 'User:' + mw.config.get('wgUserName') + '/Status'; }
//Add the links for (var i=0; i<statusChangerConfig.statusList.length; i++) {
var stat = statusChangerConfig.statusList[i];
var message = (stat === "sleep") ? link = "asleep" : link = stat;
mw.util.addPortletLink( "p-personal", //target tab - personal links
mw.config.get('wgServer') + mw.config.get('wgScript') + "?title=" + statusChangerConfig.statusPage + "&action=edit&newstatus=" + stat, //link URL
stat, //link text "pt-status-" + stat, //id of new button
"I'm " + message + "!", //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=(.*)/;
var status = statusRegExp.exec(location.href)[1]; //Modify the form
document.getElementById('wpTextbox1').value = status; if (status == "sleep")
{ status = "sleeping"; }
document.getElementById('wpSummary').value = mw.config.get('wgUserName') + " is now " + status +".";
document.getElementById('wpMinoredit').checked = true; //Submit it!
document.getElementById('editform').submit();});
//[[Category:Wikipedia scripts|statusChanger]]