Jump to content
Wikipedia The Free Encyclopedia

User:RhinosF1/StatusChange.js

From Wikipedia, the free encyclopedia
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.
This user script seems to have a documentation page at User:RhinosF1/StatusChange.
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.
 //////////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
 // Modified by APerson for compatibility with {{UserStatus}}
 // Modified by RhinosF1 for compatibility with his script.
 // compatible with {{User:RhinosF1/Template/StatusMonitor}}
 $(function(){
 varwgUserName=mw.config.get("wgUserName");
 varwgServer=mw.config.get("wgServer");
 varwgScript=mw.config.get("wgScript");
 //Check if the config is defined
 if(typeof(statusChangerConfig)=='undefined'){
 statusChangerConfig={};
 }
 varsetMessage=function(stat){
 varmessage=stat;
 switch(message){
 case"sleeping":
 message="asleep";
 break;
 case"BOW(A)":
 message="very busy dealing with something on-wiki";
 break;
 case"BOW(R)":
 message="very busy dealing with something on-wiki";
 break;
 case"around(A)":
 message="around";
 break;
 case"around(R)":
 message="around";
 break;
 case"WB":
 message="on wikibreak";
 break;
 }
 returnmessage;
 };

 if(typeof(statusChangerConfig.statusList)=='undefined'){
 statusChangerConfig.statusList=['online','offline','sleeping','around(A)','around(R)','BOW(A)','BOW(R)','WB'];
 }

 if(typeof(statusChangerConfig.statusPage)=='undefined'){
 statusChangerConfig.statusPage='User:'+wgUserName+'/Status';
 }
 varmsg;
 //Add the links
 for(vari=0;i<statusChangerConfig.statusList.length;i++){
 varstat=statusChangerConfig.statusList[i];
 msg=setMessage(stat);
 mw.util.addPortletLink(
 "p-personal",//target tab - personal links
 wgServer+wgScript+"?title="+statusChangerConfig.statusPage+"&action=submit&newstatus="+stat,//link URL
 stat,//link text
 "pt-status-"+stat,//id of new button
 "I'm "+msg+"!",//hover text
 "",//???
 document.getElementById("pt-logout"));//add before logout button
 }

 if(location.href.indexOf("&action=submit&newstatus=")==-1)return;//Are we here to auto-edit the status?
 //Get new status
 statusRegExp=/&action=submit&newstatus=(.*)/;
 varstatus=statusRegExp.exec(location.href)[1];
 //Modify the form
 document.getElementById('wpTextbox1').value=status;
 msg=setMessage(status);
 if(status=="sleep"){
 status="sleeping";
 }

 document.getElementById('wpSummary').value=wgUserName+" is now "+msg+".";
 document.getElementById('wpMinoredit').checked=true;
 //Submit it!
 document.getElementById('editform').submit();
 });

 //[[Category:Wikipedia scripts|statusChanger]]

AltStyle によって変換されたページ (->オリジナル) /