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-2013 Eyeo GmbH | 4 # Copyright (C) 2006-2013 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 "name": "fullPlatform", | 107 "name": "fullPlatform", |
108 "title": "Platform versions", | 108 "title": "Platform versions", |
109 "coltitle": "Platform version", | 109 "coltitle": "Platform version", |
110 }, | 110 }, |
111 { | 111 { |
112 "name": "downloadInterval", | 112 "name": "downloadInterval", |
113 "title": "Download intervals", | 113 "title": "Download intervals", |
114 "coltitle": "Download interval", | 114 "coltitle": "Download interval", |
115 }, | 115 }, |
116 { | 116 { |
| 117 "name": "previousDownload", |
| 118 "hidden": True, |
| 119 }, |
| 120 { |
117 "name": "firstDownload", | 121 "name": "firstDownload", |
118 "title": "Initial download", | 122 "title": "Initial download", |
119 "filter": True, | 123 "filter": True, |
120 }, | 124 }, |
121 { | 125 { |
122 "name": "firstInDay", | 126 "name": "firstInDay", |
123 "title": "First download this day", | 127 "title": "First download this day", |
124 "filter": True, | 128 "filter": True, |
125 }, | 129 }, |
126 { | 130 { |
(...skipping 11 matching lines...) Expand all Loading... |
138 install_fields = [ | 142 install_fields = [ |
139 { | 143 { |
140 "name": "installType", | 144 "name": "installType", |
141 "title": "Install types", | 145 "title": "Install types", |
142 "coltitle": "Install type", | 146 "coltitle": "Install type", |
143 }, | 147 }, |
144 ] | 148 ] |
145 | 149 |
146 | 150 |
147 fields = basic_fields + downloader_fields + install_fields | 151 fields = basic_fields + downloader_fields + install_fields |
OLD | NEW |