| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 86 Parsing mode (see `abp.filters.parser.parse_line`). | 86 Parsing mode (see `abp.filters.parser.parse_line`). |
| 87 | 87 |
| 88 Returns | 88 Returns |
| 89 ------- | 89 ------- |
| 90 dict | 90 dict |
| 91 With the parsing results and all strings converted to utf8 byte | 91 With the parsing results and all strings converted to utf8 byte |
| 92 strings. | 92 strings. |
| 93 | 93 |
| 94 """ | 94 """ |
| 95 return strings2utf8(tuple2dict(parse_line(text, mode))) | 95 return strings2utf8(tuple2dict(parse_line(text, mode))) |
| 96 | |
| 97 | |
| 98 def lines2dicts(string_list, mode='body'): | |
| 99 """Convert a list of filterlist strings to a dictionary. | |
| 100 | |
| 101 All strings in the output dictionary will be UTF8 byte strings. This is | |
| 102 necessary to prevent unicode encoding errors in rPython conversion layer. | |
| 103 | |
| 104 Parameters | |
| 105 ---------- | |
| 106 string_list: iterable of str | |
| 107 Each string in the list can be an empty line, include instruction, or | |
| 108 filter. Headers and metadata will not parse properly unless the mode | |
|
Vasily Kuznetsov
2019/01/25 15:00:58
The connection between the first and the second se
rhowell
2019/01/26 01:08:22
Done.
| |
| 109 is 'start'. | |
| 110 mode: str | |
| 111 Parsing mode (see `abp.filters.parser.parse_line`). | |
| 112 | |
| 113 Returns | |
| 114 ------- | |
| 115 dict | |
|
Vasily Kuznetsov
2019/01/25 15:00:58
Nit: it should be list of dict.
rhowell
2019/01/26 01:08:22
Done.
| |
| 116 With the parsing results and all strings converted to utf8 byte | |
| 117 strings. | |
| 118 | |
| 119 """ | |
| 120 result = [] | |
| 121 for string in string_list: | |
| 122 result.append(line2dict(string, mode)) | |
| 123 return result | |
| OLD | NEW |