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

Issue 29459580: Issue 5250 - Add copyright update script (Closed)

Created:
June 8, 2017, 1:39 p.m. by rosie
Modified:
July 17, 2017, 3:49 p.m.
Base URL:
https://hg.adblockplus.org/codingtools
Visibility:
Public.

Description

This script will attempt to update the eyeo copyright information on each page of each repo listed on https://hg.adblockplus.org/

Patch Set 1 #

Total comments: 63

Patch Set 2 : Addressed comments #

Total comments: 43

Patch Set 3 : Addressed more comments #

Total comments: 19

Patch Set 4 : Clean up comments, ReadMe, formatting #

Total comments: 6

Patch Set 5 : Minor formatting fixes #

Total comments: 24

Patch Set 6 : Also test strings and non-eyeo copyright info #

Total comments: 5

Patch Set 7 : Remove the wrapper #

Total comments: 4

Patch Set 8 : Remove bash script, make Python script executable #

Patch Set 9 : Fix indentation and default args #

Unified diffs Side-by-side diffs Delta from patch set Stats (+431 lines, -0 lines) Patch
M .hgignore View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
A update-copyright/README.md View 1 2 3 4 5 6 1 chunk +32 lines, -0 lines 0 comments Download
A update-copyright/tests/data/hg_page.html View 1 chunk +99 lines, -0 lines 0 comments Download
A update-copyright/tests/data/sample_file.py View 1 2 3 4 5 1 chunk +15 lines, -0 lines 0 comments Download
A update-copyright/tests/test_update_copyright.py View 1 2 3 4 5 1 chunk +115 lines, -0 lines 0 comments Download
A update-copyright/tox.ini View 1 2 3 4 5 1 chunk +18 lines, -0 lines 0 comments Download
A update-copyright/update_copyright.py View 1 2 3 4 5 6 7 8 1 chunk +150 lines, -0 lines 0 comments Download

Messages

Total messages: 29
rosie
June 8, 2017, 1:39 p.m. (2017-06-08 13:39:27 UTC) #1
Jon Sonesen
Hey Rosie, Thanks for the patch! It looks like the tests are not passing as ...
June 13, 2017, 4:30 p.m. (2017-06-13 16:30:20 UTC) #2
Vasily Kuznetsov
Hi Rosie, Definitely on the right track but there are quite a few small things ...
June 19, 2017, 4:25 p.m. (2017-06-19 16:25:31 UTC) #3
rosie
Thanks for the feedback! It was very helpful. I think all comments have been addressed. ...
June 23, 2017, 2:39 p.m. (2017-06-23 14:39:26 UTC) #4
Vasily Kuznetsov
Hi Rosie! Thanks for addressing the comments on the first patch set, it looks pretty ...
June 27, 2017, 4:18 p.m. (2017-06-27 16:18:54 UTC) #5
rosie
Thanks for the helpful feedback! Please let me know if I've missed anything. Rosie https://codereview.adblockplus.org/29459580/diff/29472573/update-copyright/.cache/v/cache/lastfailed ...
July 3, 2017, 3:33 p.m. (2017-07-03 15:33:47 UTC) #6
Vasily Kuznetsov
Hi Rosie, It's looking good. A few more comments but nothing big that I see ...
July 3, 2017, 7:25 p.m. (2017-07-03 19:25:48 UTC) #7
rosie
https://codereview.adblockplus.org/29459580/diff/29472573/update-copyright/update_copyright.py File update-copyright/update_copyright.py (right): https://codereview.adblockplus.org/29459580/diff/29472573/update-copyright/update_copyright.py#newcode80 update-copyright/update_copyright.py:80: if 'ssh://hg@hg.adblockplus.org/' in hg_upstream: On 2017/06/27 16:18:52, Vasily Kuznetsov ...
July 4, 2017, 1:38 p.m. (2017-07-04 13:38:26 UTC) #8
Vasily Kuznetsov
Hi Rosie, LGTM from my side, but feel free to fix a couple of stylistic ...
July 4, 2017, 3:02 p.m. (2017-07-04 15:02:41 UTC) #9
rosie
https://codereview.adblockplus.org/29459580/diff/29479603/update-copyright/README.md File update-copyright/README.md (right): https://codereview.adblockplus.org/29459580/diff/29479603/update-copyright/README.md#newcode1 update-copyright/README.md:1: # update-copyright # On 2017/07/04 15:02:40, Vasily Kuznetsov wrote: ...
July 4, 2017, 3:14 p.m. (2017-07-04 15:14:04 UTC) #10
Jon Sonesen
Hey Guys, Rose, thanks a bunch for addressing these things, and Vasily thanks a lot ...
July 4, 2017, 3:23 p.m. (2017-07-04 15:23:17 UTC) #11
Vasily Kuznetsov
Patch set 5 also LGTM.
July 4, 2017, 4:18 p.m. (2017-07-04 16:18:51 UTC) #12
Sebastian Noack
Thanks for working on this. You did a great job! For the most part, it ...
July 5, 2017, 3:46 p.m. (2017-07-05 15:46:54 UTC) #13
Vasily Kuznetsov
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh File update-copyright/run_update_copyright.sh (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh#newcode1 update-copyright/run_update_copyright.sh:1: #!/bin/sh On 2017/07/05 15:46:52, Sebastian Noack wrote: > Is ...
July 5, 2017, 5:38 p.m. (2017-07-05 17:38:05 UTC) #14
Sebastian Noack
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md File update-copyright/README.md (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md#newcode8 update-copyright/README.md:8: If a user doesn't have permission to push to ...
July 5, 2017, 6:55 p.m. (2017-07-05 18:55:22 UTC) #15
Sebastian Noack
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh File update-copyright/run_update_copyright.sh (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh#newcode1 update-copyright/run_update_copyright.sh:1: #!/bin/sh On 2017/07/05 17:38:05, Vasily Kuznetsov wrote: > On ...
July 5, 2017, 7:08 p.m. (2017-07-05 19:08:26 UTC) #16
Vasily Kuznetsov
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh File update-copyright/run_update_copyright.sh (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh#newcode1 update-copyright/run_update_copyright.sh:1: #!/bin/sh On 2017/07/05 19:08:25, Sebastian Noack wrote: > On ...
July 5, 2017, 7:24 p.m. (2017-07-05 19:24:46 UTC) #17
Sebastian Noack
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh File update-copyright/run_update_copyright.sh (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh#newcode1 update-copyright/run_update_copyright.sh:1: #!/bin/sh On 2017/07/05 19:24:45, Vasily Kuznetsov wrote: > On ...
July 7, 2017, 2:48 p.m. (2017-07-07 14:48:54 UTC) #18
Vasily Kuznetsov
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh File update-copyright/run_update_copyright.sh (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh#newcode1 update-copyright/run_update_copyright.sh:1: #!/bin/sh On 2017/07/07 14:48:53, Sebastian Noack wrote: > On ...
July 7, 2017, 3:55 p.m. (2017-07-07 15:55:27 UTC) #19
rosie
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md File update-copyright/README.md (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md#newcode8 update-copyright/README.md:8: If a user doesn't have permission to push to ...
July 7, 2017, 3:55 p.m. (2017-07-07 15:55:50 UTC) #20
Sebastian Noack
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh File update-copyright/run_update_copyright.sh (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/run_update_copyright.sh#newcode1 update-copyright/run_update_copyright.sh:1: #!/bin/sh On 2017/07/07 15:55:26, Vasily Kuznetsov wrote: > So ...
July 7, 2017, 4:05 p.m. (2017-07-07 16:05:28 UTC) #21
rosie
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md File update-copyright/README.md (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md#newcode8 update-copyright/README.md:8: If a user doesn't have permission to push to ...
July 7, 2017, 4:44 p.m. (2017-07-07 16:44:01 UTC) #22
Sebastian Noack
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md File update-copyright/README.md (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md#newcode8 update-copyright/README.md:8: If a user doesn't have permission to push to ...
July 7, 2017, 4:58 p.m. (2017-07-07 16:58:31 UTC) #23
rosie
https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md File update-copyright/README.md (right): https://codereview.adblockplus.org/29459580/diff/29479618/update-copyright/README.md#newcode8 update-copyright/README.md:8: If a user doesn't have permission to push to ...
July 17, 2017, 10:10 a.m. (2017-07-17 10:10:07 UTC) #24
Sebastian Noack
On 2017/07/05 15:46:54, Sebastian Noack wrote: > Also the title of this review (which I ...
July 17, 2017, 10:19 a.m. (2017-07-17 10:19:55 UTC) #25
rosie
https://codereview.adblockplus.org/29459580/diff/29482675/update-copyright/update_copyright.py File update-copyright/update_copyright.py (right): https://codereview.adblockplus.org/29459580/diff/29482675/update-copyright/update_copyright.py#newcode117 update-copyright/update_copyright.py:117: len(self.current_url) > 2): On 2017/07/17 10:19:53, Sebastian Noack wrote: ...
July 17, 2017, 1:23 p.m. (2017-07-17 13:23:18 UTC) #26
Sebastian Noack
LGTM!
July 17, 2017, 2:36 p.m. (2017-07-17 14:36:03 UTC) #27
Vasily Kuznetsov
LGTM again for PS9
July 17, 2017, 2:57 p.m. (2017-07-17 14:57:18 UTC) #28
Vasily Kuznetsov
July 17, 2017, 2:57 p.m. (2017-07-17 14:57:19 UTC) #29
LGTM again for PS9

Powered by Google App Engine
This is Rietveld