Jump to content

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

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Z.E.R.O. (talk | contribs) at 22:51, 7 April 2007 (update). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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> */

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=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=away", "A", "pt-status-away", "Away", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=around", "R", "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=penguin", "P", "pt-status-out", "Penguin", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=dr", "D", "pt-status-out", "Resolving Dispute", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=sleep", "S", "pt-status-out", "Sleep", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=homework", "H )", "pt-status-out", "Homework", "");
  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> */