Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page.
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>//This script functions as a small tool that makes it easy to perform typo fixes on any text using JavaScript./**<nowiki> * Usage: See [[User:Joeytje50/RETF]].importScript('User:Joeytje50/RETF.js'); //backlink: [[User:Joeytje50/RETF.js]]RETF.replace(text); * This will perform all of the replacement rules on the Project:AutoWikiBrowser/Typos page on wiki it's run from * on the entered piece of text via the first argument. * To reload the typo list, simply run the following:RETF.load(); * @licence * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * @version 2.0.0 * @author Joeytje50 */window.RETF={};//making a main object to store everything elseRETF.list=[];RETF.buildList=function(response){if(response.query&&response.query.pageids[0]==='-1')return;//abort if typos page doesn't exist.varpage=response.query.pages[response.query.pageids[0]];varcont=page.revisions[0]['*'];//make sure the string starts with a < by putting <typos></typos> around.var$typolists=$('<typos>'+cont+'</typos>').find('Typo:not([disabled])').each(function(){if($(this).attr('src')!==undefined){// Allow 'importing' of external typo fixing rules. Format for the URL needs to be exactly like:// https://en.wikipedia.org/w/api.php?action=query&format=json&prop=revisions&rvprop=content&rvlimit=1&indexpageids=true&origin=*&titles=Project%3AAutoWikiBrowser%2FTypos// (changes to the base API url and changes to the page name being allowed); origin=* is important to allow CORS requests.$.get($(this).attr('src'),RETF.buildList);}else{try{newRegExp($(this).attr('find'));// will throw a SyntaxError in browsers not supporting lookbehindsRETF.list.push([$(this).attr('find'),$(this).attr('replace'),$(this).attr('word')]);//store all typofixes in one big array}catch(e){// skip rule if it contains lookbehinds.}}});};RETF.load=function(){RETF.list=[];//reset list, in case this is a list refresh.(newmw.Api()).get({action:'query',prop:'revisions',titles:'Project:AutoWikiBrowser/Typos',rvprop:'content',rvlimit:'1',indexpageids:true,format:'json',}).done(RETF.buildList);};RETF.replace=function(text){varrulesList=[];varreplaceText=function(match,g1){//don't perform replaces when one of the excluded things has been matched (indicated by group 1 not being matched).if(!g1)returnmatch;rulesList.push(RETF.list[i][2]);returng1.replace(newRegExp(RETF.list[i][0],'g'),RETF.list[i][1]);};for(vari=0;i<RETF.list.length;i++){//checks if the rule matches any wikilink targets.varwikiLinkTarget=newRegExp('\\[\\[[^\\|\\]]*'+RETF.list[i][0]+'[^\\|\\]]*(\\||\\]\\])');if(wikiLinkTarget.test(text)){continue;//ignore this rule}//Regex based on http://stackoverflow.com/a/23589204/1256925.//Rules to skip based on https://en.wikipedia.org/wiki/Wikipedia:AutoWikiBrowser/Typos#AutoWikiBrowser_.28AWB.29//Rules are: File:links | templates | "quotes" | text after : or * varexclude=newRegExp('\\[\\[File:[^\\|\\]]+\\|?|{{.+?}}|"[^"]+"|[:\\*].*|('+RETF.list[i][0]+')','ig');text=text.replace(exclude,replaceText);}console.log('RegEx Typo Fixing: Found rules '+rulesList.join(', '));returntext;};RETF.load();// </nowiki>