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

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

Issue 6312256635666432: Issue 1426 - Don`t ignore redirects during stats processing (Closed)
Patch Set: Created Sept. 22, 2014, 10:50 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/test/logprocessor.py » ('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-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
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
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
OLDNEW
« no previous file with comments | « sitescripts/stats/bin/logprocessor.py ('k') | sitescripts/stats/test/logprocessor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld