]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Support 2.3 docs in HTMLHelp format.
authorThomas Heller <theller@ctypes.org>
Mon, 22 Sep 2003 14:54:58 +0000 (14:54 +0000)
committerThomas Heller <theller@ctypes.org>
Mon, 22 Sep 2003 14:54:58 +0000 (14:54 +0000)
Doc/tools/prechm.py

index 04d49c36898b85d0a467846a12a50be20e82f23d..00379a93a43921cb6510fc72869d7ec549056561 100644 (file)
@@ -150,6 +150,22 @@ class Book:
 # Library Doc list of books:
 # each 'book' : (Dir, Title, First page, Content page, Index page)
 supported_libraries = {
+    '2.3':
+    [
+        Book('.', 'Main page', 'index'),
+        Book('.', 'Global Module Index', 'modindex'),
+        Book('whatsnew', "What's New", 'index', 'contents'),
+        Book('tut','Tutorial','tut','node2'),
+        Book('lib','Library Reference','lib','contents','genindex'),
+        Book('ref','Language Reference','ref','contents','genindex'),
+        Book('mac','Macintosh Reference','mac','contents','genindex'),
+        Book('ext','Extending and Embedding','ext','contents'),
+        Book('api','Python/C API','api','contents','genindex'),
+        Book('doc','Documenting Python','doc','contents'),
+        Book('inst','Installing Python Modules', 'inst', 'index'),
+        Book('dist','Distributing Python Modules', 'dist', 'index'),
+    ],
+
     '2.2':
     [
         Book('.', 'Main page', 'index'),