This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author orsenthil
Recipients Timothy.Gates, orsenthil, pje, r.david.murray
Date 2010-12-27.18:05:13
SpamBayes Score 2.7903534e-06
Marked as misclassified No
Message-id <1293473117.4.0.769274607157.issue10753@psf.upfronthosting.co.za>
In-reply-to
Content
I agree that semi-colon separated segments (params) can be in PATH portion of the url. I was trying to find out, how a path;params would be useful in wsgiref request_uri's PATH_INFO variable , wherein I assumed PATH_INFO should be a file-system path or a method name.

After doing a bit of study, I find that ';' can be part of PATH_INFO in wsgiref compliant servers. I find a couple of bugs related to issues where ';' in PATH_INFO is not handled properly in other systems - http://bit.ly/g4UHhX

So, I think, we can have ';' as safe character so that it is prevented from quoting.

Also, RFC 3986 in Section 3.3 says that ';' '=' and ',' can be considered safe in the PATH component. Should we include those too?
History
Date User Action Args
2010-12-27 18:05:17orsenthilsetrecipients: + orsenthil, pje, r.david.murray, Timothy.Gates
2010-12-27 18:05:17orsenthilsetmessageid: <1293473117.4.0.769274607157.issue10753@psf.upfronthosting.co.za>
2010-12-27 18:05:13orsenthillinkissue10753 messages
2010-12-27 18:05:13orsenthilcreate