[google-appengine] uppercase and lowercase url handler in app.yaml.

2011-01-24 Thread Albert
Hi!

In my app.yaml, I have the following handler:

- url: /app
  script: handler.py

I also want /App and /ApP to resolve to my handler, and all other
uppercase and lowercase variations of "app" to work. Any ideas?

Thanks!


Albert

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] uppercase and lowercase url handler in app.yaml.

2011-01-24 Thread djidjadji
- url: /(?i)app
 script: handler.py

or

- url: (?i)/app
 script: handler.py


2011/1/24 Albert :
> Hi!
>
> In my app.yaml, I have the following handler:
>
> - url: /app
>  script: handler.py
>
> I also want /App and /ApP to resolve to my handler, and all other
> uppercase and lowercase variations of "app" to work. Any ideas?
>
> Thanks!
> Albert

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.