diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-29 15:42:19 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-29 15:42:19 (GMT) |
commit | 5cc0a9b252ac61dc79bf694c96e217e6e0097ec9 (patch) | |
tree | 2b004fba7f40feecc4ef61783a5f8e45ce590846 /Doc/html/index.html.in | |
parent | fe1e207841ab44f17ec06ed37f7e789d51fb5512 (diff) | |
download | cpython-5cc0a9b252ac61dc79bf694c96e217e6e0097ec9.zip cpython-5cc0a9b252ac61dc79bf694c96e217e6e0097ec9.tar.gz cpython-5cc0a9b252ac61dc79bf694c96e217e6e0097ec9.tar.bz2 |
Generate index.html from index.html.in. This avoids having to modify the
index to update the version number; boilerplate.tex remains the only document
source for this information.
Diffstat (limited to 'Doc/html/index.html.in')
-rw-r--r-- | Doc/html/index.html.in | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/Doc/html/index.html.in b/Doc/html/index.html.in new file mode 100644 index 0000000..5db55e9 --- /dev/null +++ b/Doc/html/index.html.in @@ -0,0 +1,61 @@ +<html> + <head> + <title>Python 1.5.2 Documentation</title> + <link rel=STYLESHEET href="lib/lib.css" type="text/css"> + <style type="text/css"> + a.title { font-weight: bold; font-size: 110%; } + </style> + </head> + <body bgcolor=white> + <div align=center> + <h1>Python Documentation</h1> + + <p> + <strong>Release @RELEASE@</strong> + <br> + <strong>@DATE@</strong> + </p> + </div> + + <table> + <tbody> + <tr><td> + <ul> + <li> <a href="tut/tut.html" class=title>Tutorial</a> + <br>(start here) + + <li> <a href="modindex.html" class=title>Global Module Index</a> + <br>(for quick access to all documentation) + + <li> <a href="lib/lib.html" class=title>Library Reference</a> + (<a href="lib/modindex.html">Module Index</a>) + <br>(keep this under your pillow) + + <li> <a href="mac/mac.html" class=title>Macintosh Module + Reference</a> (<a href="mac/modindex.html">Module + Index</a>) + <br>(this too, if you use a Macintosh) + </ul> + </td> + <td> + <ul> + <li> <a href="ref/ref.html" class=title>Language Reference</a> + <br>(for language lawyers) + + <li> <a href="ext/ext.html" class=title>Extending and + Embedding</a> + <br>(tutorial for C/C++ programmers) + + <li> <a href="api/api.html" class=title>Python/C API</a> + <br>(reference for C/C++ programmers) + + <li> <a href="doc/doc.html" class=title>Documenting Python</a> + <br>(information for documentation authors) + </ul> + </td> + </tr> + </tbody> + </table> + + </body> +</html> |