5326: Add Alphabetical Index and Table of Contents generation for pdf reports

svn: r18870
This commit is contained in:
Nick Hall
2012-02-12 21:55:07 +00:00
parent c91e45c547
commit 8a443da4d2
8 changed files with 566 additions and 7 deletions

View File

@@ -299,3 +299,16 @@ class TextDoc(object):
"""
pass
def insert_toc(self):
"""
Insert a Table of Contents at this point in the document. This passes
without error so that docgen types are not required to have this.
"""
pass
def insert_index(self):
"""
Insert an Alphabetical Index at this point in the document. This passes
without error so that docgen types are not required to have this.
"""
pass