vote up 0 vote down star
1

Is there any straightforward to convert all incoming urls to lowercase before they get matched against urlpatterns in run_wsgi_app(webapp.WSGIApplication(urlpatterns))?

flag

2 Answers

vote up 3 vote down check

You'd have to wrap the instance of WSGIApplication with your own WSGI app that lowercases the URL in the WSGI environment -- but then the environment would just stay modified, which may have other unpleasant effects. Why not just add (?i) to the regex patterns you use in urlpatterns instead?

link|flag
Thanks. But how will this work in '/(?P<some_category>\w+)/edit/(?P<item_id>\w+)/?' where 'edit' might be 'EDIT'? – gsmd Oct 3 at 0:46
1  
@gmsd, as I said, just add (?i) to the pattern; for example, use '(?i)/(?P<some_category>\w+)/edit/(?P<item_id>\w+)/?' (just like your pattern plus (?i) in front, to tell re that the match is cases-insensitive. See docs.python.org/library/… . – Alex Martelli Oct 3 at 1:44
vote up 0 vote down

I wonder if you could modify your CGI environment variables before executing the WSGIApplication instance.

os.putenv(os.getenv('PATH_INFO').lower())

Something along those lines. I've done this myself for slight URL modifications, however I 301 redirected to the new URL; I didn't continue processing with WSGI.

link|flag
This solution will work (with the caveats Alex mentioned), but WSGI middleware is a better idea. – Nick Johnson Oct 4 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.