Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: defaults/typoRules.json

Issue 8559070: Integrated URL Fixer into Adblock Plus (Closed)
Patch Set: First batch of changes Created Nov. 9, 2012, 1:04 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "version": 2,
3
4 "expressions": [
5 // Comma or semicolon instead of dot
6 {"find": "[,;]", "replace": "."},
7
8 // Leading or trailing dots
9 {"find": "^\\.+|\\.+$", "replace": ""},
10
11 // Only two of the three w's
12 {"find": "^w{2,4}(\\.)([^\\.]+\\..*)$", "replace": "www.$2"},
13
14 // Missing the dot
15 {"find": "([^\\.])(com|net|org|edu|mil|gov|aero|biz|coop|info|museum|name|pr o|cat|jobs|mobi|travel)$", "replace": "$1.$2"}
16 ],
17
18 // Automatically generated dictionaries
19 "domain":{}
Wladimir Palant 2012/11/09 13:20:51 You probably want dummies for "domainReferrals" an
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld