Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: sitescripts/stats/common.py

Issue 11576063: Stats processing: Add previousDownload field in addition to downloadInterval (Closed)
Patch Set: Created Sept. 5, 2013, 10:54 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sitescripts/stats/bin/logprocessor.py ('k') | sitescripts/stats/template/fileStats.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « sitescripts/stats/bin/logprocessor.py ('k') | sitescripts/stats/template/fileStats.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld