diff options
author | Chris Hunt <chrahunt@gmail.com> | 2019-11-12 21:05:42 -0500 |
---|---|---|
committer | Chris Hunt <chrahunt@gmail.com> | 2019-11-12 21:05:42 -0500 |
commit | 8f60e8835a58dcb6b0852547fc6ca2fb019e602b (patch) | |
tree | d0c48cb241ab6056a8e784de859ffadba7f3d8b7 /docs/html/user_guide.rst | |
parent | cc57a185482e322aa9fb62a466b8ac084654f628 (diff) | |
download | pip-8f60e8835a58dcb6b0852547fc6ca2fb019e602b.tar.gz |
Move URL in basic auth docs
Diffstat (limited to 'docs/html/user_guide.rst')
-rw-r--r-- | docs/html/user_guide.rst | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/html/user_guide.rst b/docs/html/user_guide.rst index 10dccdda2..8f4e8fd05 100644 --- a/docs/html/user_guide.rst +++ b/docs/html/user_guide.rst @@ -58,8 +58,10 @@ a username and password separated by ``:``. ``https://[username[:password]@]pypi.company.com/simple`` Certain special characters are not valid in the authentication part of URLs. -If the user or password part of your login credentials contain any of these -special characters here then they must be percent-encoded. For example, for a +If the user or password part of your login credentials contain any of the +special characters +`here <https://en.wikipedia.org/wiki/Percent-encoding#Percent-encoding_reserved_characters>`_ +then they must be percent-encoded. For example, for a user with username "user" and password "he//o" accessing a repository at pypi.company.com, the index URL with credentials would look like: @@ -75,9 +77,6 @@ as the "username" and do not provide a password, for example - ``https://0123456789abcdef@pypi.company.com`` -`Here <https://en.wikipedia.org/wiki/Percent-encoding>`_ you can find more about -percent encoding. - Using a Proxy Server ******************** |