Re: uri escaping spaces

2000-06-28 Thread Bryan Thale
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: > > >

RE: uri escaping spaces

2000-06-28 Thread Gerald Richter
> > 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

Re: uri escaping spaces

2000-06-28 Thread Michael Blakeley
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

Re: uri escaping spaces

2000-06-27 Thread Chris Thorman
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 >

uri escaping spaces

2000-06-27 Thread Michael Blakeley
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