Left: | ||
Right: |
OLD | NEW |
---|---|
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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
113 /** | 113 /** |
114 * Creates a filter of correct type from its text representation - does the | 114 * Creates a filter of correct type from its text representation - does the |
115 * basic parsing and calls the right constructor then. | 115 * basic parsing and calls the right constructor then. |
116 * | 116 * |
117 * @param {string} text as in Filter() | 117 * @param {string} text as in Filter() |
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) | |
Manish Jethani
2018/08/27 21:42:46
I'm not sure why you removed this because this is
Jon Sonesen
2018/08/27 21:49:01
Dang wth I didn't mean to do that
| |
124 return filter; | |
125 | |
126 let match = text.includes("#") ? Filter.contentRegExp.exec(text) : null; | 123 let match = text.includes("#") ? Filter.contentRegExp.exec(text) : null; |
127 if (match) | 124 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]); | 125 filter = ContentFilter.fromText(text, match[1], match[2], match[3]); |
142 } | |
143 else if (text[0] == "!") | 126 else if (text[0] == "!") |
144 filter = new CommentFilter(text); | 127 filter = new CommentFilter(text); |
145 else | 128 else |
146 filter = RegExpFilter.fromText(text); | 129 filter = RegExpFilter.fromText(text); |
147 | 130 |
148 Filter.knownFilters.set(filter.text, filter); | 131 Filter.knownFilters.set(filter.text, filter); |
149 return filter; | 132 return filter; |
150 }; | 133 }; |
151 | 134 |
152 /** | 135 /** |
(...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1191 | 1174 |
1192 /** | 1175 /** |
1193 * Script that should be executed | 1176 * Script that should be executed |
1194 * @type {string} | 1177 * @type {string} |
1195 */ | 1178 */ |
1196 get script() | 1179 get script() |
1197 { | 1180 { |
1198 return this.body; | 1181 return this.body; |
1199 } | 1182 } |
1200 }); | 1183 }); |
OLD | NEW |