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

Side by Side Diff: lib/filterClasses.js

Issue 29863644: Issue 6870 - Remove support for legacy :-abp-properties() syntax (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Put filter return back Created Aug. 27, 2018, 9:48 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
« no previous file with comments | « no previous file | test/filterClasses.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 * @return {Filter} 118 * @return {Filter}
119 */ 119 */
120 Filter.fromText = function(text) 120 Filter.fromText = function(text)
121 { 121 {
122 let filter = Filter.knownFilters.get(text); 122 let filter = Filter.knownFilters.get(text);
123 if (filter) 123 if (filter)
124 return filter; 124 return filter;
125 125
126 let match = text.includes("#") ? Filter.contentRegExp.exec(text) : null; 126 let match = text.includes("#") ? Filter.contentRegExp.exec(text) : null;
127 if (match) 127 if (match)
128 {
129 let propsMatch;
130 if (!match[2] && match[3].includes("[-") &&
131 (propsMatch = /\[-abp-properties=(["'])([^"']+)\1\]/.exec(match[3])))
132 {
133 // This is legacy CSS properties syntax, convert to current syntax
134 let prefix = match[3].substr(0, propsMatch.index);
135 let expression = propsMatch[2];
136 let suffix = match[3].substr(propsMatch.index + propsMatch[0].length);
137 return Filter.fromText(`${match[1]}#?#` +
138 `${prefix}:-abp-properties(${expression})${suffix}`);
139 }
140
141 filter = ContentFilter.fromText(text, match[1], match[2], match[3]); 128 filter = ContentFilter.fromText(text, match[1], match[2], match[3]);
142 }
143 else if (text[0] == "!") 129 else if (text[0] == "!")
144 filter = new CommentFilter(text); 130 filter = new CommentFilter(text);
145 else 131 else
146 filter = RegExpFilter.fromText(text); 132 filter = RegExpFilter.fromText(text);
147 133
148 Filter.knownFilters.set(filter.text, filter); 134 Filter.knownFilters.set(filter.text, filter);
149 return filter; 135 return filter;
150 }; 136 };
151 137
152 /** 138 /**
(...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after
1191 1177
1192 /** 1178 /**
1193 * Script that should be executed 1179 * Script that should be executed
1194 * @type {string} 1180 * @type {string}
1195 */ 1181 */
1196 get script() 1182 get script()
1197 { 1183 {
1198 return this.body; 1184 return this.body;
1199 } 1185 }
1200 }); 1186 });
OLDNEW
« no previous file with comments | « no previous file | test/filterClasses.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld