Actions
Bug #4485
closedNDN URI spec defines + instead of ~ as unreserved
Start date:
Due date:
% Done:
100%
Estimated time:
Description
RFC 3986 defines tilde (~
) as an unreserved character and the plus sign (+
) as a reserved one.
reserved = gen-delims / sub-delims
gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@"
sub-delims = "!" / "$" / "&" / "'" / "(" / ")"
/ "*" / "+" / "," / ";" / "="
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
However, the NDN URI encoding escapes (percent-encodes) the tilde but not the plus sign.
Actions