The plus=space encoding is from the specification of the
application/x-www-form-urlencoded media type.
http://www.w3.org/MarkUp/html-spec/html-spec_8.html#SEC8.2.1
Bryan.
--
Bryan Thale
Motorola Labs, Networking and Infrastructure Research
mailto:[EMAIL PROTECTED]
Gerald Richter wrote:
> >
>
>
> At 8:00 PM -0700 6/27/2000, Chris Thorman wrote:
> >In the URI escaping spec, '+' is the special (optional) escape code
> >for space. But since %XX works for any character, %20 also works
> >for space.
>
> I can't find anything like that in
> http://www.ietf.org/rfc/rfc2396.txt - do you have
At 8:00 PM -0700 6/27/2000, Chris Thorman wrote:
>In the URI escaping spec, '+' is the special (optional) escape code
>for space. But since %XX works for any character, %20 also works
>for space.
I can't find anything like that in
http://www.ietf.org/rfc/rfc2396.txt - do you have any referenc
In the URI escaping spec, '+' is the special (optional) escape code for space. But
since %XX works for any character, %20 also works for space.
-c
At 4:54 PM -0700 6/27/00, Michael Blakeley wrote:
>With the default $escapemode, Embperl seems to encode
> javascript('foo bar')
>as
>
With the default $escapemode, Embperl seems to encode
javascript('foo bar')
as
javascript('foo+bar')
but I would have expected
javascript('foo%20bar')
like Apache::Utils::escape_uri() does it. The '+', to me, means
multiple options.
Am I misguided? Or is Embperl? Or is th