diff options
author | Georg Brandl <georg@python.org> | 2012-10-28 18:14:11 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-10-28 18:14:11 +0100 |
commit | 2ea543ee2d2824aaf5f27ec4795e1a1ecc5b3887 (patch) | |
tree | ae73caace60422a3698b5dbc100c9a9dea1be984 /sphinx/util/osutil.py | |
parent | f30ef68167e58dea3ee44400081ea4d8c62061d7 (diff) | |
parent | 9df24c6468c9f431e45d4875d743cc914a1a86a3 (diff) | |
download | sphinx-git-2ea543ee2d2824aaf5f27ec4795e1a1ecc5b3887.tar.gz |
merge with stable
Diffstat (limited to 'sphinx/util/osutil.py')
-rw-r--r-- | sphinx/util/osutil.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index c5fee9d93..64ce74234 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -40,12 +40,20 @@ def relative_uri(base, to): return to b2 = base.split(SEP) t2 = to.split(SEP) - # remove common segments - for x, y in zip(b2, t2): + # remove common segments (except the last segment) + for x, y in zip(b2[:-1], t2[:-1]): if x != y: break b2.pop(0) t2.pop(0) + if b2 == t2: + # Special case: relative_uri('f/index.html','f/index.html') + # returns '', not 'index.html' + return '' + if len(b2) == 1 and t2 == ['']: + # Special case: relative_uri('f/index.html','f/') should + # return './', not '' + return '.' + SEP return ('..' + SEP) * (len(b2)-1) + SEP.join(t2) |