[
Lists Home |
Date Index |
Thread Index
]
[Jerry Sheehan]
> Should this be allowed...The use of the %3A to encode
> the reserved character ':' as shown below?
>
> <!DOCTYPE AAF SYSTEM "file:///e%3a/test/out.dtd">
> to substitue for
>
> <!DOCTYPE AAF SYSTEM "file:///e:/test/out.dtd">
>
":" is one of those characters that is not absolutely reserved but only
reserved when in a part ("component") of a URI that uses it with special
meaning. Seee section 2.2 of rfc2396.
In the case of a file: URI, the colon has a special meaning when it
separates the scheme form the rest of the URI, but the rest of the URI does
not need the colon to be reserved, so it does not need to be escaped.
Cheers,
Tom P
|