From: Fred Drake Date: Tue, 5 Sep 2000 21:45:11 +0000 (+0000) Subject: Fix mkhowto so that the bookmarks for the PDF work for both "howto" and X-Git-Tag: v2.0b2~453 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=239e1d5e505eff2fc41bcb294b6c0ce3c8b80312;p=python Fix mkhowto so that the bookmarks for the PDF work for both "howto" and "manual" class documents. --- diff --git a/Doc/tools/mkhowto b/Doc/tools/mkhowto index 9a8a0b8dde..de59602d4c 100755 --- a/Doc/tools/mkhowto +++ b/Doc/tools/mkhowto @@ -300,7 +300,11 @@ class Job: # if os.path.isfile(self.doc + ".toc") and binary == PDFLATEX_BINARY: import toc2bkm - toc2bkm.process(self.doc + ".toc", self.doc + ".bkm", "section") + if self.doctype == "manual": + bigpart = "chapter" + else: + bigpart = "section" + toc2bkm.process(self.doc + ".toc", self.doc + ".bkm", bigpart) if self.use_bibtex: self.run("%s %s" % (BIBTEX_BINARY, self.doc)) self.run("%s %s" % (binary, self.doc))