michr
2011-09-24 4ac7538f7808d1079695a1ebd6ca1c0bde647c37
exclude book pages (foreword.rst, latexindex.rst, authorintro.rst)
from online docs since they were generating warnings
1 files modified
9 ■■■■■ changed files
docs/conf.py 9 ●●●●● patch | view | raw | blame | history
docs/conf.py
@@ -106,6 +106,10 @@
# List of documents that shouldn't be included in the build.
#unused_docs = []
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ['_themes/README.rst',]
# List of directories, relative to source directories, that shouldn't be searched
# for source files.
#exclude_dirs = []
@@ -129,6 +133,11 @@
if book:
    pygments_style = 'bw'
# do not include book material for online docs
if not book:
    exclude_patterns.extend(['foreword.rst', 'latexindex.rst',
                             'authorintro.rst'])
# The default language to highlight source code in.
#highlight_language = 'guess'