diff options
| author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-08-15 08:37:15 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-15 08:37:15 -0700 | 
| commit | 7e7e3a6f45db62d470c9d15b062582e9e95d3bcd (patch) | |
| tree | 29039379de3d6fb3ef4c049d9b69faba9b4e5ccf /googlemock/scripts/upload.py | |
| parent | b50b2f775ed0268af9c83a96b285e296778d0743 (diff) | |
| parent | 997d343dd680e541ef96ce71ee54a91daf2577a0 (diff) | |
| download | googletest-7e7e3a6f45db62d470c9d15b062582e9e95d3bcd.tar.gz googletest-7e7e3a6f45db62d470c9d15b062582e9e95d3bcd.tar.bz2 googletest-7e7e3a6f45db62d470c9d15b062582e9e95d3bcd.zip | |
Merge branch 'master' into patch-1
Diffstat (limited to 'googlemock/scripts/upload.py')
| -rwxr-xr-x | googlemock/scripts/upload.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/googlemock/scripts/upload.py b/googlemock/scripts/upload.py index 6e6f9a14..95239dc2 100755 --- a/googlemock/scripts/upload.py +++ b/googlemock/scripts/upload.py @@ -242,7 +242,7 @@ class AbstractRpcServer(object):      The authentication process works as follows:       1) We get a username and password from the user       2) We use ClientLogin to obtain an AUTH token for the user -        (see http://code.google.com/apis/accounts/AuthForInstalledApps.html). +        (see https://developers.google.com/identity/protocols/AuthForInstalledApps).       3) We pass the auth token to /_ah/login on the server to obtain an          authentication cookie. If login was successful, it tries to redirect          us to the URL we provided. @@ -506,7 +506,7 @@ def EncodeMultipartFormData(fields, files):      (content_type, body) ready for httplib.HTTP instance.    Source: -    http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/146306 +    https://web.archive.org/web/20160116052001/code.activestate.com/recipes/146306    """    BOUNDARY = '-M-A-G-I-C---B-O-U-N-D-A-R-Y-'    CRLF = '\r\n' @@ -807,7 +807,7 @@ class SubversionVCS(VersionControlSystem):      # svn cat translates keywords but svn diff doesn't. As a result of this      # behavior patching.PatchChunks() fails with a chunk mismatch error.      # This part was originally written by the Review Board development team -    # who had the same problem (http://reviews.review-board.org/r/276/). +    # who had the same problem (https://reviews.reviewboard.org/r/276/).      # Mapping of keywords to known aliases      svn_keywords = {        # Standard keywords @@ -860,7 +860,7 @@ class SubversionVCS(VersionControlSystem):        status_lines = status.splitlines()        # If file is in a cl, the output will begin with        # "\n--- Changelist 'cl_name':\n".  See -      # http://svn.collab.net/repos/svn/trunk/notes/changelist-design.txt +      # https://web.archive.org/web/20090918234815/svn.collab.net/repos/svn/trunk/notes/changelist-design.txt        if (len(status_lines) == 3 and            not status_lines[0] and            status_lines[1].startswith("--- Changelist")): | 
