From baf43c5036f2811b46dd1cdd2a0341f022f8ec49 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 4 Feb 2002 21:15:42 +0000 Subject: [PATCH] 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). --- Doc/html/about.html | 2 +- Doc/tools/support.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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): -- 2.40.0