Re: [EMAIL PROTECTED] How to use both %2B and '+' in a url?

2007-10-12 Thread Jan M. Faber
Yes, that would avoid the problem, the old version of Rails actually did it that way, they changed it in version 1.2. The downside is that my URLs often have spaces in them and need to be e-mailed around and the '+' sign looks so much prettier than the %20 For now I just avoid the use of

[EMAIL PROTECTED] How to use both %2B and '+' in a url?

2007-10-12 Thread Jan M. Faber
I noticed a problem (bug?) that Apache decodes the incoming string % 2B into a + sign, but it does not encode the + sign itself. Let me show you why this is a problem: I have a Rails application that encodes the url www.supersaas.com/account/jo jo+jack as

Re: [EMAIL PROTECTED] How to use both %2B and '+' in a url?

2007-10-12 Thread Jacqui caren
Jan M. Faber wrote: I noticed a problem (bug?) that Apache decodes the incoming string % 2B into a + sign, but it does not encode the + sign itself. Can anyone think of a way to get around this problem? get rails app to use %20 encoding for spaces instead of the '+' encoding? I have to say I