Edgewall Software

Changes between Version 78 and Version 79 of TracEnvironment


Ignore:
Timestamp:
Nov 21, 2023, 4:57:40 PM (5 months ago)
Author:
Jun Omae
Comment:

Adapted url-encoding command to python3

Legend:

Unmodified
Added
Removed
Modified
  • TracEnvironment

    v78 v79  
    4242Note that if the username or password of the connection string (if applicable) contains the `:`, `/` or `@` characters, they need to be [https://meyerweb.com/eric/tools/dencoder/ URL encoded].
    4343{{{#!sh
    44 $ python -c "import urllib; print urllib.quote('password@:/123', '')"
     44$ python3 -c "from urllib.parse import quote; print(quote('password@:/123', ''))"
    4545password%40%3A%2F123
    4646}}}