Jump to content

User:Z.E.R.O./statuschanger.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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.
/* <pre><nowiki> */

$(StatusChange);

/*** Status changer ***/
function StatusChange() {
  var user = document.getElementById( 'pt-userpage' ).firstChild.firstChild.data;
  var subpage = "/Status";
  var scheme = "/StatusTemplate";
  var table = "/StatusTable";
  var linkprefix = "http://en.wikipedia.org/w/index.php?title=User:";
  var contribs = document.getElementById( 'pt-mycontris' );
  //Add the links
  addlilink(contribs, linkprefix+user+subpage+"&action=purge", "( S", "pt-status-s", "Status", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=in", "I", "pt-status-in", "In", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=busy", "B", "pt-status-busy", "Busy", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=around", "A", "pt-status-around", "Around", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=out", "O )", "pt-status-out", "Out", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=new", "( N", "pt-status-new", "New", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=email", "E", "pt-status-email", "Email", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=check", "C", "pt-status-check", "Checking", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=hide", "H )", "pt-status-hide", "Hiding", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=commons", "( C", "pt-status-commons", "Commons", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=meta", "M )", "pt-status-meta", "Meta", "");
  if (location.href.indexOf("User:"+user+subpage+"&action=edit&newstatus=") == -1) return; //Are we here to auto-edit the status?
  //Get new status
  status = location.href.split("=");
  status = status[status.length-1];
  //Modify the form
  document.getElementById('wpTextbox1').value = "{{User:"+user+scheme+"|"+status+"}}";
  document.getElementById('wpSummary').value = "Status: "+status;
  document.getElementById('wpMinoredit').checked = 'checked';
  //Submit it!
  document.getElementById('editform').submit();
}

/* </nowiki></pre> */