Message146203
| Author |
oberstet |
| Recipients |
eric.araujo, ezio.melotti, nailor, oberstet, orsenthil |
| Date |
2011年10月22日.23:44:20 |
| SpamBayes Score |
1.3519184e-08 |
| Marked as misclassified |
No |
| Message-id |
<1319327061.71.0.159869251415.issue13244@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
sorry for "throw" .. somewhat bad habit (stemming from wandering between languages).
uses_fragment extended:
[autobahn@autobahnhub ~/Autobahn]$ python
Python 2.7.1 (r271:86832, Dec 13 2010, 15:52:15)
[GCC 4.2.1 20070719 [FreeBSD]] on freebsd8
Type "help", "copyright", "credits" or "license" for more information.
>>> import urlparse
>>> wsschemes = ["ws", "wss"]
>>> urlparse.uses_relative.extend(wsschemes)
>>> urlparse.uses_netloc.extend(wsschemes)
>>> urlparse.uses_params.extend(wsschemes)
>>> urlparse.uses_query.extend(wsschemes)
>>> urlparse.uses_fragment.extend(wsschemes)
>>> urlparse.urlparse("ws://example.com/something#somewhere/")
ParseResult(scheme='ws', netloc='example.com', path='/something', params='', query='', fragment='somewhere/')
>>> urlparse.urlparse("ws://example.com/something#somewhere")
ParseResult(scheme='ws', netloc='example.com', path='/something', params='', query='', fragment='somewhere')
>>>
=> fragment extracted
uses_fragment not extended:
[autobahn@autobahnhub ~/Autobahn]$ python
Python 2.7.1 (r271:86832, Dec 13 2010, 15:52:15)
[GCC 4.2.1 20070719 [FreeBSD]] on freebsd8
Type "help", "copyright", "credits" or "license" for more information.
>>> import urlparse
>>> wsschemes = ["ws", "wss"]
>>> urlparse.uses_relative.extend(wsschemes)
>>> urlparse.uses_netloc.extend(wsschemes)
>>> urlparse.uses_params.extend(wsschemes)
>>> urlparse.uses_query.extend(wsschemes)
>>> urlparse.urlparse("ws://example.com/something#somewhere/")
ParseResult(scheme='ws', netloc='example.com', path='/something#somewhere/', params='', query='', fragment='')
>>> urlparse.urlparse("ws://example.com/something#somewhere")
ParseResult(scheme='ws', netloc='example.com', path='/something#somewhere', params='', query='', fragment='')
>>>
=> no fragment extracted, but interpreted as part of path component
=> no exception raised
The answer on Hybi outstanding, but I would interpret Hybi-17: # must always be escaped, both in path and query components. Fragment components are not allowed. Thus, unescaped # can never appear in WS URL. Further, it must not be ignored, but the WS handshake failed.
If this should indeed be the correct reading of the WS spec, then I think urlparse should raise an exception upon unescaped # within URLs from ws/wss schemes. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2011年10月22日 23:44:21 | oberstet | set | recipients:
+ oberstet, orsenthil, ezio.melotti, eric.araujo, nailor |
| 2011年10月22日 23:44:21 | oberstet | set | messageid: <1319327061.71.0.159869251415.issue13244@psf.upfronthosting.co.za> |
| 2011年10月22日 23:44:21 | oberstet | link | issue13244 messages |
| 2011年10月22日 23:44:20 | oberstet | create |
|