##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Helper functions for dealing with URLs."""
__docformat__ = "reStructuredText"
import posixpath
import urllib
import urlparse
# svn: and svn+ssh: weren't handled properly by urlparse before Python
# 2.4.2 and 2.5; this makes all versions handled them correctly:
#
if "svn" not in urlparse.uses_netloc:
urlparse.uses_netloc.extend(["svn", "svn+ssh"])
def file_url(path):
return "file://" + pathname2url(path)
def pathname2url(path):
urlpart = urllib.pathname2url(path)
# On Windows, pathname2url() returns too many slashes, or it
# returns too few on Unix. This makes everything conform to the
# expectations for Unix.
if urlpart.startswith("///"):
urlpart = urlpart[2:]
return posixpath.normpath(urlpart)
syntax highlighted by Code2HTML, v. 0.9.1