Anthony Baxter <anthony@interlink.com.au>:

The following adds support for RTSP (RFC2326) URLs to the standard
urlparse.py module.

(Augmented by FLD to include rtspu:, specified in the same RFC & OK'd
by Anthony.)
This commit is contained in:
Fred Drake 2000-04-14 14:01:34 +00:00
parent 8eef583025
commit 0556501a81

View File

@ -11,20 +11,20 @@ from string import join, split, rfind
# A classification of schemes ('' means apply by default)
uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'wais', 'file',
'https', 'shttp',
'prospero', '']
'prospero', 'rtsp', 'rtspu', '']
uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet', 'wais',
'file',
'https', 'shttp', 'snews',
'prospero', '']
'prospero', 'rtsp', 'rtspu', '']
non_hierarchical = ['gopher', 'hdl', 'mailto', 'news', 'telnet', 'wais',
'snews',
]
uses_params = ['ftp', 'hdl', 'prospero', 'http',
'https', 'shttp',
'https', 'shttp', 'rtsp', 'rtspu',
'']
uses_query = ['http', 'wais',
'https', 'shttp',
'gopher',
'gopher', 'rtsp', 'rtspu',
'']
uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
'https', 'shttp', 'snews',