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

From Wikipedia, the free encyclopedia

Note: After saving, you have to bypass your browser's cache to see the changes. Firefox/Mozilla/Safari: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Internet Explorer: press Ctrl-F5, Opera/Konqueror: press F5.

/* <pre><nowiki> */

addOnloadHook(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> */