Bug 170858 - consider switching all http://svn.webkit.org links to https://svn.webkit.org
Summary: consider switching all http://svn.webkit.org links to https://svn.webkit.org
Status: ASSIGNED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Lucas Forschler
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-04-14 14:09 PDT by Lucas Forschler
Modified: 2017-04-20 09:29 PDT (History)
6 users (show)

See Also:


Attachments
v1patch for updating Tools folder (9.72 KB, patch)
2017-04-14 14:50 PDT, Lucas Forschler
lforschler: commit-queue-
Details | Formatted Diff | Diff
v2 patch, removing previous tab. (10.21 KB, patch)
2017-04-14 15:05 PDT, Lucas Forschler
ap: review+
lforschler: commit-queue-
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Lucas Forschler 2017-04-14 14:09:23 PDT
The following files all reference http://svn.webkit.org

I'd like to update them to https, if there are no objections.

EWSTools/build-repo.sh
EWSTools/configure-git-svn.sh
EWSTools/configure-svn-auth.sh
EWSTools/configure-svn-config.sh
EWSTools/setup-commit-queue.sh
Scripts/webkitpy/common/checkout/changelog.py
Scripts/webkitpy/common/checkout/scm/scm_unittest.py
Scripts/webkitpy/common/config/urls.py
Scripts/webkitpy/tool/commands/suggestnominations.py
Scripts/webkitpy/tool/commands/suggestnominations_unittest.py
Comment 1 Lucas Forschler 2017-04-14 14:50:58 PDT
Created attachment 307149 [details]
v1patch for updating Tools folder
Comment 2 Build Bot 2017-04-14 14:52:21 PDT
Attachment 307149 [details] did not pass style-queue:


ERROR: Tools/EWSTools/build-repo.sh:53:  Line contains tab character.  [whitespace/tab] [5]
ERROR: Tools/EWSTools/setup-commit-queue.sh:51:  Line contains tab character.  [whitespace/tab] [5]
Total errors found: 2 in 12 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 3 Lucas Forschler 2017-04-14 15:05:43 PDT
Created attachment 307150 [details]
v2 patch, removing previous tab.
Comment 4 Alexey Proskuryakov 2017-04-15 08:31:34 PDT
Comment on attachment 307150 [details]
v2 patch, removing previous tab.

View in context: https://bugs.webkit.org/attachment.cgi?id=307150&action=review

> Tools/Scripts/webkitpy/tool/commands/suggestnominations.py:55
> -    _revision_regexp = re.compile(r'^git-svn-id: http://svn.webkit.org/repository/webkit/trunk@(?P<svnid>\d+) (?P<gitid>[0-9a-f\-]{36})$', re.MULTILINE)
> +    _revision_regexp = re.compile(r'^git-svn-id: https://svn.webkit.org/repository/webkit/trunk@(?P<svnid>\d+) (?P<gitid>[0-9a-f\-]{36})$', re.MULTILINE)

Would it make sense to support both http and https here?
Comment 5 Lucas Forschler 2017-04-20 09:29:37 PDT
We are currently having problems with using https remotes in git. We will need to investigate/fix this before landing this patch.