diff options
author | Georg Brandl <georg@python.org> | 2009-12-29 12:32:42 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-12-29 12:32:42 +0100 |
commit | 24fb46226fbb8ca08ff0a1bd6e32f322515b16db (patch) | |
tree | 1867b8f75fa1f5c25983974816037347a3cb0876 /doc/conf.py | |
parent | b6f93999617c73163e881bd29a40d98b49df58ac (diff) | |
download | sphinx-git-24fb46226fbb8ca08ff0a1bd6e32f322515b16db.tar.gz |
Review of epub builder. Add a separate "epub_theme" config value for selecting a different theme.
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/conf.py b/doc/conf.py index 7393643a1..de7fc59cd 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -34,7 +34,7 @@ release = version show_authors = True # The HTML template theme. -html_theme = 'epub' +html_theme = 'sphinxdoc' # A list of ignored prefixes names for module index sorting. modindex_common_prefix = ['sphinx.'] @@ -65,12 +65,13 @@ html_use_opensearch = 'http://sphinx.pocoo.org' htmlhelp_basename = 'Sphinxdoc' # Epub fields +epub_theme = 'epub' epub_basename = 'sphinx' -epub_author = 'Georg Brandl' +epub_author = 'Georg Brandl' epub_publisher = 'http://sphinx.pocoo.org/' epub_scheme = 'url' epub_identifier = epub_publisher -epub_pre_files = [ ('index', 'Welcome')] +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'] |