1 """Macintosh-specific module for conversion between pathnames and URLs.
3 Do not import directly; use urllib instead."""
8 __all__
= ["url2pathname","pathname2url"]
10 def url2pathname(pathname
):
11 """OS-specific conversion from a relative URL of the 'file' scheme
12 to a file system path; not recommended for general use."""
14 # XXXX The .. handling should be fixed...
16 tp
= urllib
.splittype(pathname
)[0]
17 if tp
and tp
!= 'file':
18 raise RuntimeError, 'Cannot convert non-local URL to pathname'
19 # Turn starting /// into /, an empty hostname means current host
20 if pathname
[:3] == '///':
21 pathname
= pathname
[2:]
22 elif pathname
[:2] == '//':
23 raise RuntimeError, 'Cannot convert non-local URL to pathname'
24 components
= pathname
.split('/')
25 # Remove . and embedded ..
27 while i
< len(components
):
28 if components
[i
] == '.':
30 elif components
[i
] == '..' and i
> 0 and \
31 components
[i
-1] not in ('', '..'):
32 del components
[i
-1:i
+1]
34 elif components
[i
] == '' and i
> 0 and components
[i
-1] != '':
39 # Absolute unix path, don't start with colon
40 rv
= ':'.join(components
[1:])
42 # relative unix path, start with colon. First replace
43 # leading .. by empty strings (giving ::file)
45 while i
< len(components
) and components
[i
] == '..':
48 rv
= ':' + ':'.join(components
)
49 # and finally unquote slashes and other funny characters
50 return urllib
.unquote(rv
)
52 def pathname2url(pathname
):
53 """OS-specific conversion from a file system path to a relative URL
54 of the 'file' scheme; not recommended for general use."""
56 raise RuntimeError, "Cannot convert pathname containing slashes"
57 components
= pathname
.split(':')
58 # Remove empty first and/or last component
59 if components
[0] == '':
61 if components
[-1] == '':
63 # Replace empty string ('::') by .. (will result in '/../' later)
64 for i
in range(len(components
)):
65 if components
[i
] == '':
67 # Truncate names longer than 31 bytes
68 components
= map(_pncomp2url
, components
)
70 if os
.path
.isabs(pathname
):
71 return '/' + '/'.join(components
)
73 return '/'.join(components
)
75 def _pncomp2url(component
):
76 component
= urllib
.quote(component
[:31], safe
='') # We want to quote slashes
80 for url
in ["index.html",
82 "/foo/bar/index.html",
85 print '%r -> %r' % (url
, url2pathname(url
))
86 for path
in ["drive:",
94 print '%r -> %r' % (path
, pathname2url(path
))
96 if __name__
== '__main__':