Tagged Questions
The rfc3986 tag has no wiki summary.
22
votes
7answers
15k views
Which characters make a url invalid?
I am writting bbcode for my own forum (based on php); how to find out if it is an invalid url provided in the the [url] tag? Which characters make a url invalid?
10
votes
2answers
349 views
RFC3986 - which pchars need to be percent-encoded?
I need to generate a href to a URI. All easy with the exception when it comes to reserved characters which need percent-encoding, e.g. link to /some/path;element should appear as <a ...
8
votes
3answers
705 views
What is the semicolon reserved for in URLs?
The RFC 3986 URI: Generic Syntax spec lists a semicolon as a reserved (sub-delim) character:
reserved = gen-delims / sub-delims
gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@"
sub-delims ...
6
votes
6answers
397 views
Can HTTP URIs have non-ASCII characters?
I tried to find this in the relevant RFC, IETF RFC 3986, but couldn't figure it.
Do URIs for HTTP allow Unicode, or non-ASCII of any kind?
Can you please cite the section and the RFC that ...
5
votes
3answers
294 views
.Net Uri Encoding RFC 2396 vs RFC 3986
First, some quick background... As part of an integration with a third party vendor, I have a C# .Net web application that receives a URL with a bunch of information in the query string. That URL is ...
4
votes
1answer
68 views
What does 'case insensitive' mean in RFC 3986 with respect to non-English characters?
RFC 3986 specifies that the host component of a URI is 'case insensitive'. However, it doesn't specify what 'case insensitive' means in terms of UCS or UTF-8 characters.
Examples given in the RFC ...
1
vote
3answers
53 views
Why isn't % (percent) considered a reserved character in RFC 3986 (URI Syntax)?
Clearly % needs to be encoded. The wikipedia article on the standard says:
Because the percent ("%") character serves as the indicator for
percent-encoded octets, it must be percent-encoded as ...
1
vote
3answers
476 views
Java and RFC 3986 URI encoding
is there a class to encode a generic String following the RFC 3986 specification?
That is: "hello world" => "hello%20world" Not (RFC 1738): "hello+world"
Thanks
1
vote
2answers
274 views
PHP: comparing URIs which differ in percent-encoding
In PHP, I want to compare two relative URLs for equality. The catch: URLs may differ in percent-encoding, e.g.
/dir/file+file vs. /dir/file%20file
/dir/file(file) vs. /dir/file%28file%29
...
1
vote
1answer
2k views
h264 RTP timestamp
I have a confusion about the timestamp of h264 RTP packet. I know the wall clock rate of video is 90KHz which I defined in the SIP SDP. The frame rate of my encoder is not exactly 30 FPS, it is ...
0
votes
1answer
171 views
Resolving relative URLs in JavaScript
I'm building a JS library which has a requirement of looking at form[action] and a[href] values and resolving them into absolute URLs.
For example, I'm on http://a/b/c/d;p?q and encounter an href ...
0
votes
3answers
343 views
URL parsing test suite
I need to test some existing http:// URL parsing code for compliance to RFC 3986.
I do not want to reinvent the wheel and to bump in to various corner cases.
Is there some existing comprehensive ...