| OLD | NEW |
| 1 # coding: utf-8 | 1 # coding: utf-8 |
| 2 | 2 |
| 3 # This file is part of the Adblock Plus web scripts, | 3 # This file is part of the Adblock Plus web scripts, |
| 4 # Copyright (C) 2006-2014 Eyeo GmbH | 4 # Copyright (C) 2006-2014 Eyeo GmbH |
| 5 # | 5 # |
| 6 # Adblock Plus is free software: you can redistribute it and/or modify | 6 # Adblock Plus is free software: you can redistribute it and/or modify |
| 7 # it under the terms of the GNU General Public License version 3 as | 7 # it under the terms of the GNU General Public License version 3 as |
| 8 # published by the Free Software Foundation. | 8 # published by the Free Software Foundation. |
| 9 # | 9 # |
| 10 # Adblock Plus is distributed in the hope that it will be useful, | 10 # Adblock Plus is distributed in the hope that it will be useful, |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "name": "fullua", | 78 "name": "fullua", |
| 79 "title": "Browser versions", | 79 "title": "Browser versions", |
| 80 "coltitle": "Browser version", | 80 "coltitle": "Browser version", |
| 81 }, | 81 }, |
| 82 { | 82 { |
| 83 "name": "referrer", | 83 "name": "referrer", |
| 84 "title": "Referrers", | 84 "title": "Referrers", |
| 85 "coltitle": "Referrer", | 85 "coltitle": "Referrer", |
| 86 }, | 86 }, |
| 87 { | 87 { |
| 88 "name": "status", |
| 89 "title": "Status codes", |
| 90 "coltitle": "Status code", |
| 91 }, |
| 92 { |
| 88 "name": "mirror", | 93 "name": "mirror", |
| 89 "title": "Download mirrors", | 94 "title": "Download mirrors", |
| 90 "coltitle": "Download mirror", | 95 "coltitle": "Download mirror", |
| 91 }, | 96 }, |
| 92 ] | 97 ] |
| 93 | 98 |
| 94 downloader_fields = [ | 99 downloader_fields = [ |
| 95 { | 100 { |
| 96 "name": "addonName", | 101 "name": "addonName", |
| 97 "title": "Extensions", | 102 "title": "Extensions", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 install_fields = [ | 161 install_fields = [ |
| 157 { | 162 { |
| 158 "name": "installType", | 163 "name": "installType", |
| 159 "title": "Install types", | 164 "title": "Install types", |
| 160 "coltitle": "Install type", | 165 "coltitle": "Install type", |
| 161 }, | 166 }, |
| 162 ] | 167 ] |
| 163 | 168 |
| 164 | 169 |
| 165 fields = basic_fields + downloader_fields + install_fields | 170 fields = basic_fields + downloader_fields + install_fields |
| OLD | NEW |