[google-appengine] Re: Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread 风笑雪
; is not a valid char in url, you need encode it. from urllib import quote quote(/090314/vm-memory-in-the-cloud-watch-what-kevin-has-to-say;b.html) '/090314/vm-memory-in-the-cloud-watch-what-kevin-has-to-say%3Bb.html' 2009/4/18 Alex Popescu the.mindstorm.mailingl...@gmail.com Hi, It looks

[google-appengine] Re: Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread Alex Popescu
On Apr 17, 8:32 pm, 风笑雪 kea...@gmail.com wrote: ; is not a valid char in url, you need encode it. from urllib import quote quote(/090314/vm-memory-in-the-cloud-watch-what-kevin-has-to-say;b.html) '/090314/vm-memory-in-the-cloud-watch-what-kevin-has-to-say%3Bb.html' Even so, the App Engine

[google-appengine] Re: Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread powera
On Apr 17, 2:58 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: On Apr 17, 8:32 pm, 风笑雪 kea...@gmail.com wrote: ; is not a valid char in url, you need encode it. from urllib import quote quote(/090314/vm-memory-in-the-cloud-watch-what-kevin-has-to-say;b.html)

[google-appengine] Re: Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread Alex Popescu
On Apr 18, 1:17 am, powera pow...@gmail.com wrote: On Apr 17, 2:58 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: On Apr 17, 8:32 pm, 风笑雪 kea...@gmail.com wrote: ; is not a valid char in url, you need encode it. from urllib import quote

[google-appengine] Re: Critical bug in URL handling: dropping everything after a semicolon

2009-04-17 Thread Alex Popescu
On Apr 18, 1:43 am, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: On Apr 18, 1:17 am, powera pow...@gmail.com wrote: On Apr 17, 2:58 pm, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: On Apr 17, 8:32 pm, 风笑雪 kea...@gmail.com wrote: ; is not a valid char in