diff options
author | Georg Brandl <georg@python.org> | 2009-12-31 18:40:58 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-12-31 18:40:58 +0100 |
commit | f3a2854ba97b33548c92490e0731e91014fa7c20 (patch) | |
tree | 9b849cdb3c5de2fe7c51b44403dad44ee3e2f149 /doc/conf.py | |
parent | 5d0812fb91a26ae1fef79573a205999ee8b7fe24 (diff) | |
parent | bf9c12a3e8a0e604fd8878bf21b291dd97187502 (diff) | |
download | sphinx-git-f3a2854ba97b33548c92490e0731e91014fa7c20.tar.gz |
merge with trunk
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/conf.py b/doc/conf.py index e8db04500..9cd3803ae 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -64,6 +64,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', |