diff options
author | Fred Drake <fdrake@acm.org> | 2001-01-09 22:02:10 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-01-09 22:02:10 (GMT) |
commit | 42181dba8ecf9736ae0ec2384aa4307533c835e1 (patch) | |
tree | 957090d36ed7fea73d8aff5a392c80bcb5fe25f5 /Doc/html | |
parent | e07d5cf9663c69d4656249df65543fdca7d6966c (diff) | |
download | cpython-42181dba8ecf9736ae0ec2384aa4307533c835e1.zip cpython-42181dba8ecf9736ae0ec2384aa4307533c835e1.tar.gz cpython-42181dba8ecf9736ae0ec2384aa4307533c835e1.tar.bz2 |
Added a --global-module-index option to specify a (possibly relative) URL
to the Global Module Index for a set of documents. This is used to include
a reference to the global index from the per-document module indexes, so
that it is just a little easier to find.
(Someone suggested this, but I do not remember who. Please let me know if
it was you -- thanks!)
Diffstat (limited to 'Doc/html')
-rw-r--r-- | Doc/html/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/html/Makefile b/Doc/html/Makefile index 6b2827b..5da7cab 100644 --- a/Doc/html/Makefile +++ b/Doc/html/Makefile @@ -14,7 +14,8 @@ PYTHON= python WEBCHECKER=$(PYTHON) $(TOPDIR)/../Tools/webchecker/webchecker.py MKHOWTO= $(TOOLSDIR)/mkhowto --about $(TOPDIR)/html/stdabout.dat \ --address $(PYTHONDOCS) --up-link ../index.html \ - --up-title "Python Documentation Index" + --up-title "Python Documentation Index" \ + --global-module-index "../modindex.html" MKHTML= $(MKHOWTO) --html BUILDINDEX=$(TOOLSDIR)/buildindex.py |