Difference between revisions of "User:SuperHamster/vector.js"

From Nookipedia, the Animal Crossing wiki
(Removing test script (which works) and replacing it with the modified version)
(Switching variable name)
Line 28: Line 28:
 
       stat, //link text
 
       stat, //link text
 
       "pt-status-" + stat, //id of new button
 
       "pt-status-" + stat, //id of new button
       "License " + "as " + message + "!", //hover text
+
       "License " + "as " + stat + "!", //hover text
 
       "", //???
 
       "", //???
 
       document.getElementById("pt-userpage")); //add before logout button
 
       document.getElementById("pt-userpage")); //add before logout button

Revision as of 02:04, December 5, 2010

//This script is currently under construction and may or may not work.
//This script was taken from the English Wikipedia. Its authors are:
/// Misza13 originally created this script
/// Voyagerfan5761 performed some minor improvements)
/// Xenocidic updated the script to use /Status as a one word indicator)
// This version has been edited by SuperHamster to suit his needs
 
addOnloadHook(function (){
  //Check if the config is defined
  if (typeof(statusChangerConfig) == 'undefined') {
    statusChangerConfig = {}
  }
 
  if (typeof(statusChangerConfig.statusList) == 'undefined') {
      statusChangerConfig.statusList = [ 'Character' ];
  }
 
  if (typeof(statusChangerConfig.statusPage) == 'undefined') {
      statusChangerConfig.statusPage = 'User:' + wgUserName + '/Sandbox';
  }
 
  //Add the links
  for (var i=0; i<statusChangerConfig.statusList.length; i++) {
    var stat = statusChangerConfig.statusList[i];
    addPortletLink(
      "p-personal", //target tab - personal links
      wgServer + wgScript + "?title=" + statusChangerConfig.statusPage + "&action=edit&newstatus=" + stat, //link URL
      stat, //link text
      "pt-status-" + stat, //id of new button
      "License " + "as " + stat + "!", //hover text
      "", //???
      document.getElementById("pt-userpage")); //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;
  document.getElementById('wpSummary').value = "Adding" + " licensing " + "information" + "(" + "Test" + ")";
  document.getElementById('wpMinoredit').checked = false;
  //Submit it!
  document.getElementById('editform').submit();
});