| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ] | 94 ] |
| 95 | 95 |
| 96 google_code_projects = [ | 96 google_code_projects = [ |
| 97 { | 97 { |
| 98 'name': 'brillo', |
| 99 'shorturl': 'brbug.com', |
| 100 }, |
| 101 { |
| 98 'name': 'chromium', | 102 'name': 'chromium', |
| 99 'shorturl': 'crbug.com', | 103 'shorturl': 'crbug.com', |
| 100 }, | 104 }, |
| 101 { | 105 { |
| 102 'name': 'chromium-os', | 106 'name': 'chromium-os', |
| 103 'shorturl': 'crosbug.com', | 107 'shorturl': 'crosbug.com', |
| 104 }, | 108 }, |
| 105 { | 109 { |
| 106 'name': 'chrome-os-partner', | 110 'name': 'chrome-os-partner', |
| 107 }, | 111 }, |
| (...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 print '\n\n\n' | 841 print '\n\n\n' |
| 838 | 842 |
| 839 my_activity.print_changes() | 843 my_activity.print_changes() |
| 840 my_activity.print_reviews() | 844 my_activity.print_reviews() |
| 841 my_activity.print_issues() | 845 my_activity.print_issues() |
| 842 return 0 | 846 return 0 |
| 843 | 847 |
| 844 | 848 |
| 845 if __name__ == '__main__': | 849 if __name__ == '__main__': |
| 846 sys.exit(main()) | 850 sys.exit(main()) |
| OLD | NEW |