mirror of https://github.com/python/cpython.git
Pekka Pessi <Pekka.Pessi@nokia.com>:
Patch to add support for sip: (Session Initiation Protocol, RFC2543) URLs.
This commit is contained in:
parent
396f6e0d6a
commit
bdd44a389b
|
@ -17,14 +17,14 @@
|
||||||
'https', 'shttp', 'snews',
|
'https', 'shttp', 'snews',
|
||||||
'prospero', 'rtsp', 'rtspu', '']
|
'prospero', 'rtsp', 'rtspu', '']
|
||||||
non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
|
non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
|
||||||
'snews',
|
'snews', 'sip',
|
||||||
]
|
]
|
||||||
uses_params = ['ftp', 'hdl', 'prospero', 'http',
|
uses_params = ['ftp', 'hdl', 'prospero', 'http',
|
||||||
'https', 'shttp', 'rtsp', 'rtspu',
|
'https', 'shttp', 'rtsp', 'rtspu', 'sip',
|
||||||
'']
|
'']
|
||||||
uses_query = ['http', 'wais',
|
uses_query = ['http', 'wais',
|
||||||
'https', 'shttp',
|
'https', 'shttp',
|
||||||
'gopher', 'rtsp', 'rtspu',
|
'gopher', 'rtsp', 'rtspu', 'sip',
|
||||||
'']
|
'']
|
||||||
uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
|
uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
|
||||||
'https', 'shttp', 'snews',
|
'https', 'shttp', 'snews',
|
||||||
|
|
Loading…
Reference in New Issue