This is with reference to following question..
http://stackoverflow.com/questions/1428431/switch-off-case-sensitive-urls-in-google-app-engine
I am trying to use appengine as CDN. There is a lot of code written where javascript and css is being accessed in pages without considering case sensitivity. My App file looks like below..
handlers:
- url: /themes/([^A-Z]+)
static_files: themes/\1
upload: themes/.*
- url: /.*
handler: tolowercase.py
The problem is I want to make even themes as case insensitive. So what should be modification in tolowercase.py?
Also I didn't understand the first solution as I don't know about adding middleware in appengine (pardon my ignorance here)