diff options
| author | Georg Brandl <georg@python.org> | 2010-01-03 16:04:23 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2010-01-03 16:04:23 +0100 |
| commit | bc033e2d4ced76efe960ea557ac56e4142f33222 (patch) | |
| tree | b5e92f56e1a73df4d505f335bc7036dddced45e0 /doc/conf.py | |
| parent | e7ead814127708601c5ba64453461ce5f0991bd0 (diff) | |
| parent | 66febe79c7881126b13fc380b5b66685bd661993 (diff) | |
| download | sphinx-bc033e2d4ced76efe960ea557ac56e4142f33222.tar.gz | |
merge with 0.6
Diffstat (limited to 'doc/conf.py')
| -rw-r--r-- | doc/conf.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index 415b0c8d..ce87c54e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -62,6 +62,19 @@ html_use_opensearch = 'http://sphinx.pocoo.org' # Output file base name for HTML help builder. htmlhelp_basename = 'Sphinxdoc' +# Epub fields +epub_theme = 'epub' +epub_basename = 'sphinx' +epub_author = 'Georg Brandl' +epub_publisher = 'http://sphinx.pocoo.org/' +epub_scheme = 'url' +epub_identifier = epub_publisher +epub_pre_files = [('index', 'Welcome')] +epub_exclude_files = ['_static/opensearch.xml', '_static/doctools.js', + '_static/jquery.js', '_static/searchtools.js', + '_static/basic.css', 'search.html'] + + # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [('contents', 'sphinx.tex', 'Sphinx Documentation', @@ -72,7 +85,7 @@ latex_logo = '_static/sphinx.png' # Additional stuff for the LaTeX preamble. latex_elements = { - 'fontpkg': '\\usepackage{palatino}' + 'fontpkg': '\\usepackage{palatino}', } # Put TODOs into the output. |
