From: Fred Drake Date: Mon, 4 Feb 2002 21:15:42 +0000 (+0000) Subject: When linking to an index page, explicitly name index.html instead of X-Git-Tag: v2.3c1~6736 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=baf43c5036f2811b46dd1cdd2a0341f022f8ec49;p=python 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). --- diff --git a/Doc/html/about.html b/Doc/html/about.html index 3203faf66a..8cf90549ae 100644 --- a/Doc/html/about.html +++ b/Doc/html/about.html @@ -13,7 +13,7 @@ - up diff --git a/Doc/tools/support.py b/Doc/tools/support.py index bfd86cee61..187ac21a75 100644 --- a/Doc/tools/support.py +++ b/Doc/tools/support.py @@ -25,7 +25,7 @@ class Options: outputfile = "-" columns = 1 letters = 0 - uplink = "./" + uplink = "index.html" uptitle = "Python Documentation Index" def __init__(self):