Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-24695] Android: URL auto-encoding improvements #9178

Merged
merged 4 commits into from
Jun 28, 2017

Commits on Jun 27, 2017

  1. [TIMOB-24695] Android: URL auto-encoding improvements

    - No longer encodes legal chars '?', '/', '@', and ':' in query params.
    - No longer encodes legal chars '$', '&', '+', ',', ';', and '=' in URL's "username:password" component.
    - No longer encodes legal chars '$', '&', '+', ',', ';', '=', ':', '@', '/', and '?' in URL #fragment.
    - Spaces in the URL's query paramaters are now encoded as '+' instead of "%20".
    - Given URL's %-encoded characters are now always preserved.
      * Used to decode "%26" and "%3D" to '&' and '=' in query params, breaking the query.
      * Used to decode "%2F" to '/' in URL path, which can break the path.
    jquick-axway committed Jun 27, 2017
    Configuration menu
    Copy the full SHA
    a5004b4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    53ed53f View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2017

  1. Android: More URL auto-encoding improvements.

    - No longer encodes legal chars '!', '$', ''', '(', ')', '+', ',', and ';' in query params.
    - Worked-around Android bug caused by TIMOB-24695 fix where a URL without a path would wrongly copy query param characters proceeding an unencoded '/' into the URL's path.
    jquick-axway committed Jun 28, 2017
    Configuration menu
    Copy the full SHA
    4e57e68 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    36c49d4 View commit details
    Browse the repository at this point in the history