63
63
"""Return the full url to the given relative URL.
64
64
This can be supplied with a string or a list
66
assert isinstance(relpath, basestring), (type(relpath), relpath)
67
67
return os.path.join(self.base, urllib.unquote(relpath))
69
69
def relpath(self, abspath):