LEFT | RIGHT |
1 # This file is part of Adblock Plus <https://adblockplus.org/>, | 1 # This file is part of Adblock Plus <https://adblockplus.org/>, |
2 # Copyright (C) 2006-present eyeo GmbH | 2 # Copyright (C) 2006-present eyeo GmbH |
3 # | 3 # |
4 # Adblock Plus is free software: you can redistribute it and/or modify | 4 # Adblock Plus is free software: you can redistribute it and/or modify |
5 # it under the terms of the GNU General Public License version 3 as | 5 # it under the terms of the GNU General Public License version 3 as |
6 # published by the Free Software Foundation. | 6 # published by the Free Software Foundation. |
7 # | 7 # |
8 # Adblock Plus is distributed in the hope that it will be useful, | 8 # Adblock Plus is distributed in the hope that it will be useful, |
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 | 165 |
166 | 166 |
167 def _parse_instruction(text): | 167 def _parse_instruction(text): |
168 match = INCLUDE_REGEXP.match(text) | 168 match = INCLUDE_REGEXP.match(text) |
169 if not match: | 169 if not match: |
170 raise ParseError('Unrecognized instruction', text) | 170 raise ParseError('Unrecognized instruction', text) |
171 return Include(match.group(1)) | 171 return Include(match.group(1)) |
172 | 172 |
173 | 173 |
174 def _parse_option(option): | 174 def _parse_option(option): |
| 175 if '=' in option: |
| 176 return option.split('=', 1) |
175 if option.startswith('~'): | 177 if option.startswith('~'): |
176 return option[1:], False | 178 return option[1:], False |
177 if '=' in option: | |
178 return option.split('=', 1) | |
179 return option, True | 179 return option, True |
180 | 180 |
181 | 181 |
182 def _parse_filter_option(option): | 182 def _parse_filter_option(option): |
183 name, value = _parse_option(option) | 183 name, value = _parse_option(option) |
184 | 184 |
185 # Handle special cases of multivalued options. | 185 # Handle special cases of multivalued options. |
186 if name == FILTER_OPTION.DOMAIN: | 186 if name == FILTER_OPTION.DOMAIN: |
187 value = [_parse_option(o) for o in value.split('|')] | 187 value = [_parse_option(o) for o in value.split('|')] |
188 elif name == FILTER_OPTION.SITEKEY: | 188 elif name == FILTER_OPTION.SITEKEY: |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 Raises | 313 Raises |
314 ------ | 314 ------ |
315 ParseError | 315 ParseError |
316 Thrown during iteration for invalid filter list lines. | 316 Thrown during iteration for invalid filter list lines. |
317 TypeError | 317 TypeError |
318 If `lines` is not iterable. | 318 If `lines` is not iterable. |
319 | 319 |
320 """ | 320 """ |
321 for line in lines: | 321 for line in lines: |
322 yield parse_line(line) | 322 yield parse_line(line) |
LEFT | RIGHT |