When linking to an index page, explicitly name index.html instead of

using "./".  The later does not work nicely when browsing docs on a local
disk (as in the installed docs on Windows).
This commit is contained in:
Fred Drake 2002-02-04 21:15:42 +00:00
parent 210d3cca86
commit baf43c5036
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
<tr>
<td><img width="32" height="32" align="bottom" border="0" alt=""
src="icons/blank.gif"></td>
<td><a href="./"
<td><a href="index.html"
title="Python Documentation Index"><img width="32" height="32"
align="bottom" border="0" alt="up"
src="icons/up.gif"></a></td>

View file

@ -25,7 +25,7 @@ class Options:
outputfile = "-"
columns = 1
letters = 0
uplink = "./"
uplink = "index.html"
uptitle = "Python Documentation Index"
def __init__(self):