Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

fix(angular.encodeUriSegment): do not encode semi-colon #5019

Closed
wants to merge 2 commits into from

Commits on Nov 19, 2013

  1. fix(angular.encodeUriSegment): do not encode semi-colon

    RFC 3986 indicates that ; is not encoded as part of the URI, as is the case
    with other members of sub-delim. Changed encodeUriSegment to match that
    behaviour, along with the corresponding spec.
    brettporter committed Nov 19, 2013
    Configuration menu
    Copy the full SHA
    0ea270e View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2013

  1. fix($location): retain original encoded path

    Change location to retain the expected path encoding. The decode/encode cycle
    for the location path loses data as %3B (a semi-colon in the path) and ; (a
    sub-delim in the URI for path parameters) are considered to be different.
    brettporter committed Nov 21, 2013
    Configuration menu
    Copy the full SHA
    f728b78 View commit details
    Browse the repository at this point in the history