Hi,
I'm using mod_wsgi 3.3-2 under a debian 6 system.
When I use this simple wsgi script :
"""
def application(environ, start_response):
print environ
start_response('200 OK', [('Content-Type', 'text/plain')])
yield 'Hello World'
"""
and I go to /testé or /test%C3%A9
I get the following in my log :
... , 'PATH_INFO': '/test\\xc3\\xa9', ...
I'd expect :
'/test\xc3\xa9'
Is there any configuration turnaround or did I missed something ?
Regard
Gaston
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/modwsgi?hl=en.