summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authormichr <michr@webhippo.net>2011-09-29 02:03:33 -0700
committermichr <michr@webhippo.net>2011-09-29 02:03:33 -0700
commitc8b363e547635e92a78c5718e9f17a5e8f55dc7f (patch)
treeb65d3371f988954cf8844bc34c3314804564278c /docs/conf.py
parentb9407996975e3504f2518359640139ab51fa9c38 (diff)
downloadpyramid-c8b363e547635e92a78c5718e9f17a5e8f55dc7f.tar.gz
pyramid-c8b363e547635e92a78c5718e9f17a5e8f55dc7f.tar.bz2
pyramid-c8b363e547635e92a78c5718e9f17a5e8f55dc7f.zip
avoid warning for latexindex, foreword by putting them in a hidden toc
from now on complie docs strictly, turning warnings to errors exclude unnecssary static js files when compiling ePub
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index a5eaeb0fb..c78285840 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -11,7 +11,8 @@
# All configuration values have a default value; values that are commented out
# serve to show the default value.
-import sys, os
+import sys
+import os
import datetime
import inspect
import warnings
@@ -389,7 +390,7 @@ def frontmatter(name, arguments, options, content, lineno,
% reset page counter
\setcounter{page}{1}
% suppress first toc pagenum
-\addtocontents{toc}{\protect\thispagestyle{empty}}
+\addtocontents{toc}{\protect\thispagestyle{empty}}
""",
format='latex')]
@@ -402,7 +403,7 @@ def mainmatter(name, arguments, options, content, lineno,
% allow part/chapter/section numbering
\setcounter{secnumdepth}{2}
% get headers back
-\pagestyle{fancy}
+\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
@@ -488,7 +489,10 @@ epub_uid = 'The Pyramid Web Application Development Framework, Version 1.2'
#epub_post_files = []
# A list of files that should not be packed into the epub file.
-#epub_exclude_files = []
+epub_exclude_files = ['_static/opensearch.xml', '_static/doctools.js',
+ '_static/jquery.js', '_static/searchtools.js', '_static/underscore.js',
+ '_static/basic.css', 'search.html']
+
# The depth of the table of contents in toc.ncx.
epub_tocdepth = 3