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

From Nookipedia, the Animal Crossing wiki
(Changing if method)
(Reverting to earlier version w/ minor adjustment)
Line 36: Line 36:
 
   var status = statusRegExp.exec(location.href)[1];
 
   var status = statusRegExp.exec(location.href)[1];
 
   //Modify the form
 
   //Modify the form
   if (stat.equals("Character Art"))
+
   if (stat == 'Character Art') {
  {
 
 
   document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullCharacterArtSection}}";
 
   document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullCharacterArtSection}}";
 
   }
 
   }
   if (stat.equals("Game Screenshot"))
+
   if (stat == 'Game Screenshot') {
  {
 
 
   document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullGameScreenshotSection}}";
 
   document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullGameScreenshotSection}}";
 
   }
 
   }

Revision as of 01:37, December 14, 2010

//This script is currently in the process of being modified. It may or may not work as expected.
//
//The purpose of this script is to allow users to easily tag images with the appropriate license tag.
//Currently, this script only works with licensing images as "Template:Character art", but more will be included later.
//Upon installing this script, a button will appear to the left of your username in the upper-right-hand corner.
//Clicking on the link will immediately and automatically edit the page.
//The edit will replace EVERYTHING with a section header labeled "licensing", the selected license, and a relevant category.
//
//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 (){
  statusChangerConfig = {}
  statusChangerConfig.statusList = [ 'Character Art', 'Game Screenshot' ];
  statusChangerConfig.statusPage = wgPageName;
 
  //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
  if (stat == 'Character Art') {
  document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullCharacterArtSection}}";
  }
  if (stat == 'Game Screenshot') {
  document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullGameScreenshotSection}}";
  }
  document.getElementById('wpSummary').value = "Adding" + " licensing " + "information" + " (" + stat + ")";
  document.getElementById('wpMinoredit').checked = false;
  //Submit it!
  document.getElementById('editform').submit();
});