Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Side by Side Diff: my_activity.py

Issue 714373002: Remove old Gerrit instances. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Only remove gerrit-int. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 { 90 {
91 'host': 'gerrit.chromium.org', 91 'host': 'gerrit.chromium.org',
92 'port': 29418, 92 'port': 29418,
93 }, 93 },
94 {
95 'host': 'gerrit-int.chromium.org',
96 'port': 29419,
97 },
98 ] 94 ]
99 95
100 google_code_projects = [ 96 google_code_projects = [
101 { 97 {
102 'name': 'chromium', 98 'name': 'chromium',
103 'shorturl': 'crbug.com', 99 'shorturl': 'crbug.com',
104 }, 100 },
105 { 101 {
106 'name': 'chromium-os', 102 'name': 'chromium-os',
107 'shorturl': 'crosbug.com', 103 'shorturl': 'crosbug.com',
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 print '\n\n\n' 837 print '\n\n\n'
842 838
843 my_activity.print_changes() 839 my_activity.print_changes()
844 my_activity.print_reviews() 840 my_activity.print_reviews()
845 my_activity.print_issues() 841 my_activity.print_issues()
846 return 0 842 return 0
847 843
848 844
849 if __name__ == '__main__': 845 if __name__ == '__main__':
850 sys.exit(main()) 846 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698