summaryrefslogtreecommitdiff
path: root/sphinx/config.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-03-10 18:57:44 +0100
committerGeorg Brandl <georg@python.org>2012-03-10 18:57:44 +0100
commitba36624ce9848cac923d5073157147ccc7caadb7 (patch)
tree82f904670732fe242c63c49ab3e57c63a2f75cc9 /sphinx/config.py
parent027d18cd01e0a796686aec62a4c7254be251ef17 (diff)
parentcd2b52234da7ce1f852c5bf4ff77cd0214b321c0 (diff)
downloadsphinx-ba36624ce9848cac923d5073157147ccc7caadb7.tar.gz
merge with stable
Diffstat (limited to 'sphinx/config.py')
-rw-r--r--sphinx/config.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/sphinx/config.py b/sphinx/config.py
index f119ab00..8da81361 100644
--- a/sphinx/config.py
+++ b/sphinx/config.py
@@ -123,6 +123,7 @@ class Config(object):
# Epub options
epub_basename = (lambda self: make_filename(self.project), None),
epub_theme = ('epub', 'html'),
+ epub_theme_options = ({}, 'html'),
epub_title = (lambda self: self.html_title, 'html'),
epub_author = ('unknown', 'html'),
epub_language = (lambda self: self.language or 'en', 'html'),
@@ -137,6 +138,8 @@ class Config(object):
epub_exclude_files = ([], 'env'),
epub_tocdepth = (3, 'env'),
epub_tocdup = (True, 'env'),
+ epub_fix_images = (False, 'env'),
+ epub_max_image_width = (0, 'env'),
# LaTeX options
latex_documents = ([], None),
@@ -176,6 +179,7 @@ class Config(object):
linkcheck_ignore = ([], None),
linkcheck_timeout = (None, None),
linkcheck_workers = (5, None),
+ linkcheck_anchors = (True, None),
# gettext options
gettext_compact = (True, 'gettext'),