User:SuperHamster/bitcoin.js

From Bitcoin Wiki
Revision as of 20:42, 16 June 2014 by SuperHamster (talk | contribs) (Creating script)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
//The purpose of this script is to allow users to easily tag images with the appropriate license tag.
//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 = [ 'Fair Use' ];
  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/Fairuse}}";
  document.getElementById('wpSummary').value = "Adding licensing information (" + stat + ")";
  document.getElementById('wpMinoredit').checked = false;
  //Submit it!
  document.getElementById('editform').submit();
});