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

From Nookipedia, the Animal Crossing wiki
(Restoring submit functions)
(Importing two scripts)
Line 1: Line 1:
//The purpose of this script is to allow users to easily tag images with the appropriate license tag.
+
importScript('User:SuperHamster/imagelicensorcharacterart.js');
//Currently, this script only works with licensing images as "Template:Character art" and "Template:Game screenshot".
+
importScript('User:SuperHamster/imagelicensorgamescreenshot.js');
//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 (){
 
  statusChanger2Config = {}
 
  statusChanger2Config.statusList = [ 'Gameplay Screenshot' ];
 
  statusChanger2Config.statusPage = wgPageName;
 
 
  //Add the links
 
  for (var i=0; i<statusChanger2Config.statusList.length; i++) {
 
    var stat2 = statusChanger2Config.statusList[i];
 
    addPortletLink(
 
      "p-personal", //target tab - personal links
 
      wgServer + wgScript + "?title=" + statusChanger2Config.statusPage + "&action=edit&newstatus=" + stat2, //link URL
 
      stat2, //link text
 
      "pt-status-" + stat2, //id of new button
 
      "License " + "as " + stat2, //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" + " (" + stat2 + ")";
 
  document.getElementById('wpMinoredit').checked = false;
 
  //Submit it!
 
  document.getElementById('editform').submit();
 
});
 

Revision as of 23:13, December 7, 2010

importScript('User:SuperHamster/imagelicensorcharacterart.js');
importScript('User:SuperHamster/imagelicensorgamescreenshot.js');