Commit a7f167cf authored by Fred Drake's avatar Fred Drake

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).
parent 20f381d4
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<tr> <tr>
<td><img width="32" height="32" align="bottom" border="0" alt="" <td><img width="32" height="32" align="bottom" border="0" alt=""
src="icons/blank.gif"></td> src="icons/blank.gif"></td>
<td><a href="./" <td><a href="index.html"
title="Python Documentation Index"><img width="32" height="32" title="Python Documentation Index"><img width="32" height="32"
align="bottom" border="0" alt="up" align="bottom" border="0" alt="up"
src="icons/up.gif"></a></td> src="icons/up.gif"></a></td>
......
...@@ -25,7 +25,7 @@ class Options: ...@@ -25,7 +25,7 @@ class Options:
outputfile = "-" outputfile = "-"
columns = 1 columns = 1
letters = 0 letters = 0
uplink = "./" uplink = "index.html"
uptitle = "Python Documentation Index" uptitle = "Python Documentation Index"
def __init__(self): def __init__(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment