OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Get stats about your activity. | 6 """Get stats about your activity. |
7 | 7 |
8 Example: | 8 Example: |
9 - my_activity.py for stats for the current week (last week on mondays). | 9 - my_activity.py for stats for the current week (last week on mondays). |
10 - my_activity.py -Q for stats for last quarter. | 10 - my_activity.py -Q for stats for last quarter. |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
80 | 80 |
81 gerrit_instances = [ | 81 gerrit_instances = [ |
82 { | 82 { |
83 'url': 'chromium-review.googlesource.com', | 83 'url': 'chromium-review.googlesource.com', |
84 'shorturl': 'crosreview.com', | 84 'shorturl': 'crosreview.com', |
85 }, | 85 }, |
86 { | 86 { |
87 'url': 'chrome-internal-review.googlesource.com', | 87 'url': 'chrome-internal-review.googlesource.com', |
88 'shorturl': 'crosreview.com/i', | 88 'shorturl': 'crosreview.com/i', |
89 }, | 89 }, |
90 { | |
91 'host': 'gerrit.chromium.org', | |
M-A Ruel
2014/11/12 01:08:58
It's still used by webm and ffpmeg.
Jorge Lucangeli Obes
2014/11/12 18:12:57
Done.
| |
92 'port': 29418, | |
93 }, | |
94 { | |
95 'host': 'gerrit-int.chromium.org', | |
96 'port': 29419, | |
97 }, | |
98 ] | 90 ] |
99 | 91 |
100 google_code_projects = [ | 92 google_code_projects = [ |
101 { | 93 { |
102 'name': 'chromium', | 94 'name': 'chromium', |
103 'shorturl': 'crbug.com', | 95 'shorturl': 'crbug.com', |
104 }, | 96 }, |
105 { | 97 { |
106 'name': 'chromium-os', | 98 'name': 'chromium-os', |
107 'shorturl': 'crosbug.com', | 99 'shorturl': 'crosbug.com', |
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
841 print '\n\n\n' | 833 print '\n\n\n' |
842 | 834 |
843 my_activity.print_changes() | 835 my_activity.print_changes() |
844 my_activity.print_reviews() | 836 my_activity.print_reviews() |
845 my_activity.print_issues() | 837 my_activity.print_issues() |
846 return 0 | 838 return 0 |
847 | 839 |
848 | 840 |
849 if __name__ == '__main__': | 841 if __name__ == '__main__': |
850 sys.exit(main()) | 842 sys.exit(main()) |
OLD | NEW |