ഉപയോക്താവ്:Adithyak1997/RETF.js
ശ്രദ്ധിക്കുക: സേവ് ചെയ്തശേഷം മാറ്റങ്ങൾ കാണാനായി താങ്കൾക്ക് ബ്രൗസറിന്റെ കാഷെ ഒഴിവാക്കേണ്ടി വന്നേക്കാം.
- ഫയർഫോക്സ് / സഫാരി: Reload ബട്ടൺ അമർത്തുമ്പോൾ Shift കീ അമർത്തി പിടിക്കുകയോ, Ctrl-F5 അല്ലെങ്കിൽ Ctrl-R (മാക്കിന്റോഷിൽ ⌘-R ) എന്ന് ഒരുമിച്ച് അമർത്തുകയോ ചെയ്യുക
- ഗൂഗിൾ ക്രോം: Ctrl-Shift-R (മാക്കിന്റോഷിൽ ⌘-Shift-R ) അമർത്തുക
- ഇന്റർനെറ്റ് എക്സ്പ്ലോറർ: Refresh ബട്ടൺ അമർത്തുമ്പോൾ Ctrl കീ അമർത്തിപിടിക്കുക. അല്ലെങ്കിൽ Ctrl-F5 അമർത്തുക
- ഓപ്പറ: Menu → Settings എടുക്കുക (മാക്കിൽ Opera → Preferences) എന്നിട്ട് Privacy & security → Clear browsing data → Cached images and files ചെയ്യുക.
//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 1.2.0 * @author Joeytje50 */ window.RETF = {}; //making a main object to store everything else RETF.list = []; RETF.load = function() { (new mw.Api()).get({ action: 'query', prop: 'revisions', titles: 'Project:AutoWikiBrowser/Typos', rvprop: 'content', rvlimit: '1', indexpageids: true, format: 'json', }).done(function(response) { RETF.list = []; //reset list, in case this is a list refresh. if (response.query && response.query.pageids[0] === '-1') return; //abort if typos page doesn't exist. var page = response.query.pages[response.query.pageids[0]]; var cont = page.revisions[0]['*']; var typoList = []; //make sure the string starts with a < by putting <typos></typos> around. var $typolists = $('<typos>'+cont+'</typos>').find('Typo:not([disabled])').each(function() { try { new RegExp($(this).attr('find')); // will throw a SyntaxError in browsers not supporting lookbehinds RETF.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.replace = function(text) { var rulesList = []; var replaceText = 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) return match; rulesList.push(RETF.list[i][2]); return g1.replace(new RegExp(RETF.list[i][0], 'g'), RETF.list[i][1]); }; for (var i=0;i<RETF.list.length;i++) { //checks if the rule matches any wikilink targets. var wikiLinkTarget = new RegExp('\\[\\[[^\\|\\]]*' + 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 * var exclude = new RegExp('\\[\\[File:[^\\|\\]]+\\|?|{{.+?}}|"[^"]+"|[:\\*].*|('+RETF.list[i][0]+')', 'ig'); text = text.replace(exclude, replaceText); } console.log('RegEx Typo Fixing: Found rules ' + rulesList.join(', ')); return text; }; RETF.load();