[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 wrote: > On Apr 18, 1:17 am, powera wrote: > > > > > On Apr 17, 2:58 pm, Alex Popescu > > wrote: > > > > On Apr 17, 8:32 pm, 风笑雪 wrote: > > > > > ";" is not a valid char in url, you need encode it.>>> from urllib > > > > import quote > > > > > quote("/090314

[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 wrote: > On Apr 17, 2:58 pm, Alex Popescu > wrote: > > > On Apr 17, 8:32 pm, 风笑雪 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 powera
On Apr 17, 2:58 pm, Alex Popescu wrote: > On Apr 17, 8:32 pm, 风笑雪 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-ke

[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, 风笑雪 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 dro

[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 > > Hi, > > It looks like the production se