mirror of https://github.com/python/cpython
Oops, missed a couple of substitutions in the templates.
This commit is contained in:
parent
b41f97d6a0
commit
1acb8740eb
|
@ -166,8 +166,10 @@ NAVIGATION = """\
|
||||||
<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="%(iconserver)s/blank.%(imgtype)s"></td>
|
src="%(iconserver)s/blank.%(imgtype)s"></td>
|
||||||
<td><a href="./"><img width=32 height=32 align=bottom border=0 alt="%(uplinkalt)s"
|
<td><a href="%(uplink)s"
|
||||||
src="%(iconserver)s/%(uplinkicon)s.%(imgtype)s"></A></td>
|
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=""
|
<td><img width=32 height=32 align=bottom border=0 alt=""
|
||||||
src="%(iconserver)s/blank.%(imgtype)s"></td>
|
src="%(iconserver)s/blank.%(imgtype)s"></td>
|
||||||
<td align=center bgcolor="#99CCFF" width="100%%">
|
<td align=center bgcolor="#99CCFF" width="100%%">
|
||||||
|
@ -179,9 +181,9 @@ NAVIGATION = """\
|
||||||
<td><img width=32 height=32 align=bottom border=0 alt=""
|
<td><img width=32 height=32 align=bottom border=0 alt=""
|
||||||
src="%(iconserver)s/blank.%(imgtype)s"></td>
|
src="%(iconserver)s/blank.%(imgtype)s"></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
<b class=navlabel>Up:</b> <span class=sectref><A
|
<b class=navlabel>Up:</b> <span class=sectref><a href="%(uplink)s"
|
||||||
href="%(uplink)s">%(uptitle)s</A></span>
|
title="%(uptitle)s">%(uptitle)s</A></span>
|
||||||
<br><hr></div>
|
<br></div>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
HEAD = """\
|
HEAD = """\
|
||||||
|
@ -195,12 +197,13 @@ HEAD = """\
|
||||||
</head>
|
</head>
|
||||||
<body bgcolor=white>
|
<body bgcolor=white>
|
||||||
""" + NAVIGATION + """\
|
""" + NAVIGATION + """\
|
||||||
|
<hr>
|
||||||
|
|
||||||
<h2>%(title)s</h2>
|
<h2>%(title)s</h2>
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
TAIL = NAVIGATION + """\
|
TAIL = "<hr>\n" + NAVIGATION + """\
|
||||||
%(address)s</body>
|
%(address)s</body>
|
||||||
</html>
|
</html>
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue