summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-03-04 21:33:55 (GMT)
committerFred Drake <fdrake@acm.org>1999-03-04 21:33:55 (GMT)
commit1acb8740ebdf8693171cebb8163a83e1844d3c23 (patch)
tree18b2b22bfb5922e1f6769a3875dbc28fdda2de04 /Doc
parentb41f97d6a05646df87b2cdf16500a718c5d1a3b4 (diff)
downloadcpython-1acb8740ebdf8693171cebb8163a83e1844d3c23.zip
cpython-1acb8740ebdf8693171cebb8163a83e1844d3c23.tar.gz
cpython-1acb8740ebdf8693171cebb8163a83e1844d3c23.tar.bz2
Oops, missed a couple of substitutions in the templates.
Diffstat (limited to 'Doc')
-rwxr-xr-xDoc/tools/mkmodindex15
1 files changed, 9 insertions, 6 deletions
diff --git a/Doc/tools/mkmodindex b/Doc/tools/mkmodindex
index 20c6416..4400cea 100755
--- a/Doc/tools/mkmodindex
+++ b/Doc/tools/mkmodindex
@@ -166,8 +166,10 @@ NAVIGATION = """\
<tr>
<td><img width=32 height=32 align=bottom border=0 alt=""
src="%(iconserver)s/blank.%(imgtype)s"></td>
-<td><a href="./"><img width=32 height=32 align=bottom border=0 alt="%(uplinkalt)s"
- src="%(iconserver)s/%(uplinkicon)s.%(imgtype)s"></A></td>
+<td><a href="%(uplink)s"
+ title="%(uptitle)s"><img width=32 height=32 align=bottom border=0
+ alt="%(uplinkalt)s"
+ src="%(iconserver)s/%(uplinkicon)s.%(imgtype)s"></a></td>
<td><img width=32 height=32 align=bottom border=0 alt=""
src="%(iconserver)s/blank.%(imgtype)s"></td>
<td align=center bgcolor="#99CCFF" width="100%%">
@@ -179,9 +181,9 @@ NAVIGATION = """\
<td><img width=32 height=32 align=bottom border=0 alt=""
src="%(iconserver)s/blank.%(imgtype)s"></td>
</tr></table>
-<b class=navlabel>Up:</b> <span class=sectref><A
- href="%(uplink)s">%(uptitle)s</A></span>
-<br><hr></div>
+<b class=navlabel>Up:</b> <span class=sectref><a href="%(uplink)s"
+ title="%(uptitle)s">%(uptitle)s</A></span>
+<br></div>
"""
HEAD = """\
@@ -195,12 +197,13 @@ HEAD = """\
</head>
<body bgcolor=white>
""" + NAVIGATION + """\
+<hr>
<h2>%(title)s</h2>
"""
-TAIL = NAVIGATION + """\
+TAIL = "<hr>\n" + NAVIGATION + """\
%(address)s</body>
</html>
"""