Consider the following code:
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
class MainPage(webapp.RequestHandler):
def get(self, filename):
self.response.out.write(filename)
def main():
application = webapp.WSGIApplication([(r'/bug/(.*)', MainPage)],
debug=True)
run_wsgi_app(application)
if __name__ == '__main__':
main()
EOF
I've uploaded this to http://kc.appspot.com/bug/ .
http://kc.appspot.com/bug/Hello produces the text "Hello" as expected.
http://kc.appspot.com/bug/semi;colon produces the text "semi" but on
localhost it produces "semi%3Bcolon" as expected.
Could somebody please explain this bug to me so I can file an issue
report? Also, could somebody provide a workaround?
Thanks,
Casey
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" 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/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---