-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make hyperlink handle + like an HTML form post by default #145
Conversation
Codecov Report
@@ Coverage Diff @@
## master #145 +/- ##
==========================================
+ Coverage 98.67% 98.69% +0.02%
==========================================
Files 13 13
Lines 1809 1840 +31
Branches 209 212 +3
==========================================
+ Hits 1785 1816 +31
Misses 12 12
Partials 12 12
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
One question: do we really want to default to this for all schemes? I'm worried in particular about urn:
schemes, though even in that case, perhaps the right answer is just "don't use +
in URLs".
Unfortunately it's not just |
Before: >>> URL(scheme='https', host='foo', query={'f+o o': 'b+a r'}).to_text() 'https://foo/?f%2Bo o=b%2Ba r' After: >>> URL(scheme='https', host='foo', query={'f+o o': 'b+a r'}).to_text() 'https://foo/?f+o o=b+a r' If spaces pass unencoded, surely + can.
(Encoded)URL round-tripping of + in query
👍 Thank you for this! I'll update and release treq to depend on new Hyperlink version as soon as this has been released. That'll unblock Klein. |
The relevant specification for URNs seems to be https://tools.ietf.org/html/rfc8141#section-2.3.2 - previously, query parameters basically weren't used in URNs; https://tools.ietf.org/html/rfc2141 specifically punts on the issue. And the bananas new syntax in 8141 is going to require extensive changes in hyperlink to accommodate- for example, the URN equivalent of query components are now introduced by "?=" or "?+", not just "?". In any event, URNs are not URLs so are in some sense out of scope for this library ;-). I think if we want to handle these properly, we may want a new "URN" wrapper class which inherits this behavior and introduces the appropriate constraints (no netloc, for example) for URNs. Given all this knock-on complexity, I'm going to go ahead and land it. I'm by no means opposed to supporting URNs, "q-component" and all, but we don't before this change and adding it won't change anything. (Arguably it will make it easier to build proper support on top of URL, although it will admittedly make DecodedURL a little more of a pain.) |
Per the interminable discussion already present there, fixes #129.