vote up 0 vote down star
application = webapp.WSGIApplication(
                                 [('/', DefaultPage),
								  ('/ClearDataPage', ClearDataPage),
								  ('/DeleteTweets', DeleteTweets),
								  ('/DeleteLinks', DeleteLinks),
								  ('/awesome', Awesome),
								  ('/RunScriptPage', RunScriptPage)],
                                 debug=True)

In this scenario, how do I make any variations of "Awesome" or for that matter any url case insensitive?

such that Awesome will always be directed to localhost:8080/awesome ...?

flag

52% accept rate

2 Answers

vote up 1 vote down check

For such somewhat advanced dispatching needs, don't use the extremely lightweight webapp framework -- use any of the richer ones, such as web.py, that App Engine also supports; there, you can dispatch based on regular expressions, not just strings, so you can in particular use a case-insensitive regular expression pattern.

For example, '(?i)awesome' is the pattern for a regular expression that matches 'awesome' in a case-insensitive manner, as you desire.

link|flag
1  
Hold it right there! Webapp also supports dispatching on regular expressions! The regex you suggest for web.py will work perfectly on webapp. – Nick Johnson Jun 17 at 8:28
vote up 2 vote down

You may use regular expressions in this case. Wikipedia: Regular Expressions

Some app engine specific examples can be found in the app engine docs.

link|flag

Your Answer

Get an OpenID
or

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