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

Issue 2435863003: [Findit] Add local git parsers. (Closed)

Created:
4 years, 2 months ago by Sharu Jiang
Modified:
4 years, 1 month ago
Reviewers:
wrengr, chanli, stgao, lijeffrey
CC:
chromium-reviews, infra-reviews+infra_chromium.org
Target Ref:
refs/heads/master
Project:
infra
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Fix nits. #

Total comments: 16

Patch Set 3 : Fix nits. #

Total comments: 6

Patch Set 4 : Address comments. #

Patch Set 5 : Fix nits. #

Total comments: 16

Patch Set 6 : Address comments. #

Patch Set 7 : Add back TimeZoneInfo. #

Patch Set 8 : Fix nits. #

Patch Set 9 : Rebase #

Total comments: 13

Patch Set 10 : Split the refatoring part to another cl. #

Patch Set 11 : Add comments. #

Patch Set 12 : Add __init__ to setup tests for local scripts. #

Patch Set 13 : Fix nits. #

Patch Set 14 : Fix nits. #

Total comments: 28

Patch Set 15 : Address comments. #

Patch Set 16 : Fix nits. #

Patch Set 17 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+712 lines, -21 lines) Patch
A appengine/findit/util_scripts/__init__.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +17 lines, -0 lines 0 comments Download
M appengine/findit/util_scripts/crash_queries/crash_iterator.py View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +6 lines, -3 lines 0 comments Download
M appengine/findit/util_scripts/crash_queries/delta_test/delta_test.py View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +9 lines, -4 lines 0 comments Download
M appengine/findit/util_scripts/crash_queries/delta_test/delta_util.py View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +15 lines, -7 lines 0 comments Download
A appengine/findit/util_scripts/git_checkout/__init__.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +3 lines, -0 lines 0 comments Download
A appengine/findit/util_scripts/git_checkout/local_git_parsers.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +399 lines, -0 lines 0 comments Download
A appengine/findit/util_scripts/git_checkout/test/__init__.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +3 lines, -0 lines 0 comments Download
A appengine/findit/util_scripts/git_checkout/test/local_git_parsers_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +247 lines, -0 lines 0 comments Download
M appengine/findit/util_scripts/iterator.py View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +5 lines, -3 lines 0 comments Download
M appengine/findit/util_scripts/remote_api.py View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +6 lines, -3 lines 0 comments Download
M appengine/findit/util_scripts/sample_remote_api_query.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -1 line 0 comments Download

Messages

Total messages: 67 (38 generated)
Sharu Jiang
PTAL :)
4 years, 2 months ago (2016-10-19 22:18:01 UTC) #1
lijeffrey
https://codereview.chromium.org/2435863003/diff/20001/appengine/findit/common/local_git_parsers.py File appengine/findit/common/local_git_parsers.py (right): https://codereview.chromium.org/2435863003/diff/20001/appengine/findit/common/local_git_parsers.py#newcode60 appengine/findit/common/local_git_parsers.py:60: offset = int(offset_str[-4:-2]) * 60 + int(offset_str[-2:]) is it ...
4 years, 2 months ago (2016-10-20 23:31:32 UTC) #4
Sharu Jiang
https://codereview.chromium.org/2435863003/diff/20001/appengine/findit/common/local_git_parsers.py File appengine/findit/common/local_git_parsers.py (right): https://codereview.chromium.org/2435863003/diff/20001/appengine/findit/common/local_git_parsers.py#newcode60 appengine/findit/common/local_git_parsers.py:60: offset = int(offset_str[-4:-2]) * 60 + int(offset_str[-2:]) On 2016/10/20 ...
4 years, 2 months ago (2016-10-21 01:07:42 UTC) #5
stgao
https://codereview.chromium.org/2435863003/diff/40001/appengine/findit/common/blame.py File appengine/findit/common/blame.py (right): https://codereview.chromium.org/2435863003/diff/40001/appengine/findit/common/blame.py#newcode31 appengine/findit/common/blame.py:31: super(Blame, self).__init__(regions or []) Can we just use the ...
4 years, 2 months ago (2016-10-22 00:39:16 UTC) #6
Sharu Jiang
https://codereview.chromium.org/2435863003/diff/40001/appengine/findit/common/blame.py File appengine/findit/common/blame.py (right): https://codereview.chromium.org/2435863003/diff/40001/appengine/findit/common/blame.py#newcode31 appengine/findit/common/blame.py:31: super(Blame, self).__init__(regions or []) On 2016/10/22 00:39:16, stgao wrote: ...
4 years, 1 month ago (2016-10-25 00:36:20 UTC) #7
stgao
Looks better now. https://codereview.chromium.org/2435863003/diff/160001/appengine/findit/common/blame.py File appengine/findit/common/blame.py (right): https://codereview.chromium.org/2435863003/diff/160001/appengine/findit/common/blame.py#newcode9 appengine/findit/common/blame.py:9: author_name=None, author_email=None, author_time=None): why default to ...
4 years, 1 month ago (2016-10-25 23:01:34 UTC) #12
Sharu Jiang
https://codereview.chromium.org/2435863003/diff/160001/appengine/findit/common/blame.py File appengine/findit/common/blame.py (right): https://codereview.chromium.org/2435863003/diff/160001/appengine/findit/common/blame.py#newcode9 appengine/findit/common/blame.py:9: author_name=None, author_email=None, author_time=None): On 2016/10/25 23:01:33, stgao wrote: > ...
4 years, 1 month ago (2016-10-26 06:13:38 UTC) #13
wrengr
https://codereview.chromium.org/2435863003/diff/20001/appengine/findit/common/repo_util.py File appengine/findit/common/repo_util.py (right): https://codereview.chromium.org/2435863003/diff/20001/appengine/findit/common/repo_util.py#newcode37 appengine/findit/common/repo_util.py:37: lines = message.strip().split('\n')[-5:] On 2016/10/21 01:07:42, sharu jiang wrote: ...
4 years, 1 month ago (2016-10-28 18:15:36 UTC) #14
Sharu Jiang
Hi, I added back the TimeZoneInfo since the --date:<format> will be ignored by --porcelain and ...
4 years, 1 month ago (2016-10-28 21:05:36 UTC) #15
stgao
https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/common/time_util.py File appengine/findit/common/time_util.py (right): https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/common/time_util.py#newcode71 appengine/findit/common/time_util.py:71: class TimeZoneInfo(object): We already have the code to handle ...
4 years, 1 month ago (2016-11-02 02:04:20 UTC) #18
wrengr
https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/lib/gitiles/local_git_parsers.py File appengine/findit/lib/gitiles/local_git_parsers.py (right): https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/lib/gitiles/local_git_parsers.py#newcode1 appengine/findit/lib/gitiles/local_git_parsers.py:1: # Copyright 2016 The Chromium Authors. All rights reserved. ...
4 years, 1 month ago (2016-11-03 17:09:01 UTC) #23
stgao
https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/lib/gitiles/repo_util.py File appengine/findit/lib/gitiles/repo_util.py (right): https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/lib/gitiles/repo_util.py#newcode1 appengine/findit/lib/gitiles/repo_util.py:1: # Copyright 2016 The Chromium Authors. All rights reserved. ...
4 years, 1 month ago (2016-11-03 17:28:40 UTC) #24
Sharu Jiang
This cl grows big because I moved time_util from common/ to lib/ after refactor. I ...
4 years, 1 month ago (2016-11-03 20:59:48 UTC) #30
wrengr
https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/lib/gitiles/local_git_parsers.py File appengine/findit/lib/gitiles/local_git_parsers.py (right): https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/lib/gitiles/local_git_parsers.py#newcode1 appengine/findit/lib/gitiles/local_git_parsers.py:1: # Copyright 2016 The Chromium Authors. All rights reserved. ...
4 years, 1 month ago (2016-11-03 21:16:09 UTC) #31
wrengr
On 2016/11/03 20:59:48, Sharu Jiang wrote: > How about code_review_util.py under the lib/? In general ...
4 years, 1 month ago (2016-11-03 21:20:25 UTC) #32
Sharu Jiang
On 2016/11/03 21:20:25, wrengr wrote: > On 2016/11/03 20:59:48, Sharu Jiang wrote: > > How ...
4 years, 1 month ago (2016-11-04 19:47:57 UTC) #36
Sharu Jiang
On 2016/11/03 21:16:09, wrengr wrote: > https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/lib/gitiles/local_git_parsers.py > File appengine/findit/lib/gitiles/local_git_parsers.py (right): > > https://codereview.chromium.org/2435863003/diff/280001/appengine/findit/lib/gitiles/local_git_parsers.py#newcode1 > ...
4 years, 1 month ago (2016-11-04 19:54:27 UTC) #37
Sharu Jiang
Ping.
4 years, 1 month ago (2016-11-08 00:15:02 UTC) #44
wrengr
lgtm with nits https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/git_checkout/local_git_parsers.py File appengine/findit/util_scripts/git_checkout/local_git_parsers.py (right): https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/git_checkout/local_git_parsers.py#newcode213 appengine/findit/util_scripts/git_checkout/local_git_parsers.py:213: info = {'message':'', 'touched_files':[]} nit: spaces ...
4 years, 1 month ago (2016-11-08 19:05:17 UTC) #45
stgao
lgtm if comments are addressed. https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/__init__.py File appengine/findit/util_scripts/__init__.py (right): https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/__init__.py#newcode21 appengine/findit/util_scripts/__init__.py:21: # from util_scripts, so ...
4 years, 1 month ago (2016-11-08 21:44:16 UTC) #46
Sharu Jiang
https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/__init__.py File appengine/findit/util_scripts/__init__.py (right): https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/__init__.py#newcode21 appengine/findit/util_scripts/__init__.py:21: # from util_scripts, so added this util_scripts/ directory as ...
4 years, 1 month ago (2016-11-10 22:28:38 UTC) #49
stgao
https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/__init__.py File appengine/findit/util_scripts/__init__.py (right): https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/__init__.py#newcode21 appengine/findit/util_scripts/__init__.py:21: # from util_scripts, so added this util_scripts/ directory as ...
4 years, 1 month ago (2016-11-10 22:33:47 UTC) #50
Sharu Jiang
https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/__init__.py File appengine/findit/util_scripts/__init__.py (right): https://codereview.chromium.org/2435863003/diff/730001/appengine/findit/util_scripts/__init__.py#newcode21 appengine/findit/util_scripts/__init__.py:21: # from util_scripts, so added this util_scripts/ directory as ...
4 years, 1 month ago (2016-11-11 21:07:09 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2435863003/810001
4 years, 1 month ago (2016-11-11 21:07:25 UTC) #54
commit-bot: I haz the power
Try jobs failed on following builders: Infra Presubmit on luci.infra.try (JOB_FAILED, https://luci-milo.appspot.com/swarming/task/326e0bd99f482510)
4 years, 1 month ago (2016-11-11 21:13:55 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2435863003/830001
4 years, 1 month ago (2016-11-11 22:14:24 UTC) #59
commit-bot: I haz the power
Try jobs failed on following builders: Infra Presubmit on luci.infra.try (JOB_FAILED, https://luci-milo.appspot.com/swarming/task/326e4668ab132710)
4 years, 1 month ago (2016-11-11 22:21:13 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2435863003/850001
4 years, 1 month ago (2016-11-11 22:27:13 UTC) #64
commit-bot: I haz the power
4 years, 1 month ago (2016-11-11 22:41:48 UTC) #66
Message was sent while issue was closed.
Committed patchset #18 (id:850001) as
https://chromium.googlesource.com/infra/infra/+/b8b4590396043079125412a7e3715...

Powered by Google App Engine
This is Rietveld 408576698