Jump to content

User:Jonesey95/AutoEd/pmc.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// <nowiki>
var AutoEd_baseurl = 'http://en.wikipedia.org/w/index.php?action=raw&ctype=text/javascript&title=User:Jonesey95/AutoEd/';
if (location.protocol === 'https:') {
  AutoEd_baseurl = 'https://en.wikipedia.org/w/index.php?action=raw&ctype=text/javascript&title=User:Jonesey95/AutoEd/';
}
 
mw.loader.load(AutoEd_baseurl + 'core3.js'); //Imports the "framework" script needed to make this function

//   ======  Use for one-off replacements  ========

//Sets variable configuration
autoEdTag3 = "Fix citation template parameters"; //Tweaks edit summary
autoEdLinkName3 = "AutoEd one-off"; //Changes the link name at the top of the page
autoEdLinkHover3 = "AutoEd one-off"; //When user hovers over link
 
//Set up function
function ReplaceTemplate(str) { //function to replace a template
 
  //One-off for citation template
  str = str.replace(/\|title=\'\'\'\'Encyclopædia Britannica\'\', 9th ed\., Vol\.&nbsp;([VI]+)\'\' \|/gi, '\|title=Encyclopædia Britannica\|edition=9th\|volume=$1\|');

  return str;
}
 
function autoEdFunctions3() { //Activates individual modules when "auto ed" tab is clicked
    var txt = document.editform.wpTextbox1; //This stays as "Textbox1". Do not increment.
    txt.value = ReplaceTemplate(txt.value);
//    txt.value = autoEdWhitespace(txt.value);
}

// </nowiki>