Re: Extra / normalization

2008-04-30 Thread Yannick Gingras
Ian Bicking [EMAIL PROTECTED] writes: All you can do is include that value as parameter instead, or use WSGI 2 (which of course doesn't exist yet, but somewhere we've penned this 'feature' to be removed in version 2 of the spec). It's mentioned as an issue that WSGI 2 could address, but

Extra / normalization

2008-04-29 Thread Yannick Gingras
Hello Pyloneers, I try to implement a gdata like category search in my app but I have a hard time embedding an url inside the url and getting it back unmangled. Here is how I want to express search for an item that is also a bar with type 42 but not a foo number 1:

Re: Extra / normalization

2008-04-29 Thread Philip Jenvey
On Apr 29, 2008, at 12:29 PM, Yannick Gingras wrote: Passing the slashes as %2f do not help: it seems that the stripping occurs after the URL decoding. Does anyone know where this stripping occurs and if it's possible to selectively disable it? Unfortunately you can't disable it, WSGI

Re: Extra / normalization

2008-04-29 Thread Ian Bicking
Philip Jenvey wrote: Passing the slashes as %2f do not help: it seems that the stripping occurs after the URL decoding. Does anyone know where this stripping occurs and if it's possible to selectively disable it? Unfortunately you can't disable it, WSGI servers must decode the URL's