]> granicus.if.org Git - python/commitdiff
main(): Include a \label{modindex} in the output so latex won't let us re-use
authorFred Drake <fdrake@acm.org>
Tue, 17 Feb 1998 23:13:19 +0000 (23:13 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 17 Feb 1998 23:13:19 +0000 (23:13 +0000)
the name elsewhere.  This is useful for the logical filenames project,
since the "modindex" label is hardcoded into .latex2html-init.

Doc/modindex.py
Doc/tools/modindex.py

index 84c106608fa11288ed5cb190427578f4399bb9ed..0209a1a3f621c979cbe0ad72312e736ab396ab57 100755 (executable)
@@ -22,6 +22,7 @@ def cmp_items((s1, line1), (s2, line2)):
     return rc
 
 
+
 def main():
     if sys.argv[1:]:
        infile = sys.argv[1]
@@ -36,7 +37,7 @@ def main():
        base, ext = os.path.splitext(infile)
        outfile = base + ".ind"
        ofp = open(outfile, "w")
-    ofp.write("\\begin{theindex}\n\n")
+    ofp.write("\\begin{theindex}\n\label{modindex}\n\n")
     lines = ifp.readlines()
     for i in range(len(lines)):
        if lines[i][0] == '\\':
index 84c106608fa11288ed5cb190427578f4399bb9ed..0209a1a3f621c979cbe0ad72312e736ab396ab57 100755 (executable)
@@ -22,6 +22,7 @@ def cmp_items((s1, line1), (s2, line2)):
     return rc
 
 
+
 def main():
     if sys.argv[1:]:
        infile = sys.argv[1]
@@ -36,7 +37,7 @@ def main():
        base, ext = os.path.splitext(infile)
        outfile = base + ".ind"
        ofp = open(outfile, "w")
-    ofp.write("\\begin{theindex}\n\n")
+    ofp.write("\\begin{theindex}\n\label{modindex}\n\n")
     lines = ifp.readlines()
     for i in range(len(lines)):
        if lines[i][0] == '\\':