You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
A change in function encodeUriSegment would solve the problem.
functionencodeUriSegment(val){returnencodeUriQuery(val,true).replace(/%26/gi,'&').replace(/%3B/gi,';').//added this linereplace(/%3D/gi,'=').replace(/%2B/gi,'+');}
Objections
Are there any objections to don't support this? Security, backwards compatible, etc.
If there are. Is there a way to implement a kind of replace-list?
Aside from dot-segments in hierarchical paths, a path segment is
considered opaque by the generic syntax. URI producing applications
often use the reserved characters allowed in a segment to delimit
scheme-specific or dereference-handler-specific subcomponents. For
example, the semicolon (";") and equals ("=") reserved characters are
often used to delimit parameters and parameter values applicable to
that segment. The comma (",") reserved character is often used for
similar purposes. For example, one URI producer might use a segment
such as "name;v=1.1" to indicate a reference to version 1.1 of
"name", whereas another might use a segment such as "name,1.1" to
indicate the same. Parameter types may be defined by scheme-specific
semantics, but in most cases the syntax of a parameter is specific to
the implementation of the URI's dereferencing algorithm.
The text was updated successfully, but these errors were encountered:
The #8377 does not solve this issues because has changed encodeUriQuery in src/Angular.js and $resource use encodeUriQuery in the src/ngResource/resource.js.
Support for Matrix URIs
With a small change it is possible to support Matrix URIs in $resource (What is a matrix uri? See doc at the end of this request).
The only problem is that semicolons are encoded in $resource.
Change
A change in function
encodeUriSegment
would solve the problem.Objections
Are there any objections to don't support this? Security, backwards compatible, etc.
If there are. Is there a way to implement a kind of replace-list?
Doc
http://www.w3.org/DesignIssues/MatrixURIs.html
and
https://tools.ietf.org/html/rfc3986#section-3.3
The text was updated successfully, but these errors were encountered: