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

From Nookipedia, the Animal Crossing wiki
(Adding code for licensing gameplay screenshots / Updating description of script accordingly)
(Correcting template)
Line 64: Line 64:
 
   var status = statusRegExp.exec(location.href)[1];
 
   var status = statusRegExp.exec(location.href)[1];
 
   //Modify the form
 
   //Modify the form
   document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullCharacterArtSection}}";
+
   document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullGameScreenshotSection}}";
 
   document.getElementById('wpSummary').value = "Adding" + " licensing " + "information" + " (" + stat + ")";
 
   document.getElementById('wpSummary').value = "Adding" + " licensing " + "information" + " (" + stat + ")";
 
   document.getElementById('wpMinoredit').checked = false;
 
   document.getElementById('wpMinoredit').checked = false;

Revision as of 20:07, December 7, 2010

//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" and "Template:Game screenshot".
//Once installed, two buttons, "Character Art" and "Gameplay Screenshot", will appear to the left of your username at the top.
//Choosing any of the license buttons will immediately and automatically edit the page. Be careful!
//EVERYTHING will be replaced with a header labeled "Licensing", the license you selected, and a relevant category (if applicable).
//
//This script is a derivative of a work from the English Wikipedia (CC-BY-SA 3.0). Its authors on Wikipedia 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' ];
  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
  document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullCharacterArtSection}}";
  document.getElementById('wpSummary').value = "Adding" + " licensing " + "information" + " (" + stat + ")";
  document.getElementById('wpMinoredit').checked = false;
  //Submit it!
  document.getElementById('editform').submit();
});

addOnloadHook(function (){
  statusChangerConfig = {}
  statusChangerConfig.statusList = [ 'Gameplay 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
  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();
});