diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-09-04 00:45:47 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-09-04 00:45:47 +0200 |
commit | 2d1c382f38d3b1cf9219ddb9b62ef196a4381976 (patch) | |
tree | efa6ff212276ad9ec792d9288a2b201d3a3814d7 /doc-src/dev-docs/conf.py | |
parent | 29698aa83c2f37457ce36dc5bb79a0cc1e7bf2f5 (diff) | |
download | mitmproxy-2d1c382f38d3b1cf9219ddb9b62ef196a4381976.tar.gz mitmproxy-2d1c382f38d3b1cf9219ddb9b62ef196a4381976.tar.bz2 mitmproxy-2d1c382f38d3b1cf9219ddb9b62ef196a4381976.zip |
docs, docs, docs!
Diffstat (limited to 'doc-src/dev-docs/conf.py')
-rw-r--r-- | doc-src/dev-docs/conf.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/doc-src/dev-docs/conf.py b/doc-src/dev-docs/conf.py index af7f7b9d..23db112c 100644 --- a/doc-src/dev-docs/conf.py +++ b/doc-src/dev-docs/conf.py @@ -105,7 +105,7 @@ exclude_patterns = ['_build'] pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] +modindex_common_prefix = ['libmproxy.'] # If true, keep warnings as "system message" paragraphs in the built documents. #keep_warnings = False @@ -123,31 +123,33 @@ html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -#html_theme_options = {} +html_theme_options = { + # 'logo_only': True, +} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # "<project> v<release> documentation". -#html_title = None +html_title = "mitmproxy %s documentation" % version # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. -#html_logo = None +html_logo = "mitmproxy-long.png" # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -#html_favicon = None +html_favicon = "favicon.ico" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -#html_static_path = ['_static'] +html_static_path = ['_static'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied |