diff options
author | Georg Brandl <georg@python.org> | 2008-03-09 18:18:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-09 18:18:30 (GMT) |
commit | 5bb647dfa83945d8f7788a58769f9240b1a66340 (patch) | |
tree | 0c12aa9cfe1e3bc926fb12af1a62bee0e179bdce /Doc | |
parent | c557db5268552ef29ff7d487c3b5f21013ed3d54 (diff) | |
download | cpython-5bb647dfa83945d8f7788a58769f9240b1a66340.zip cpython-5bb647dfa83945d8f7788a58769f9240b1a66340.tar.gz cpython-5bb647dfa83945d8f7788a58769f9240b1a66340.tar.bz2 |
Update for newest Sphinx.
Diffstat (limited to 'Doc')
-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 c718d8b..82d16b8 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -14,6 +14,7 @@ sys.path.append('tools/sphinxext') # --------------------- extensions = ['sphinx.ext.refcounting', 'sphinx.ext.coverage'] +templates_path = ['tools/sphinxext'] # General substitutions. project = 'Python' @@ -73,16 +74,16 @@ html_last_updated_fmt = '%b %d, %Y' html_use_smartypants = True # Content template for the index page, filename relative to this file. -html_index = 'tools/sphinxext/indexcontent.html' +html_index = 'indexcontent.html' # Custom sidebar templates, filenames relative to this file. html_sidebars = { - 'index': 'tools/sphinxext/indexsidebar.html', + 'index': 'indexsidebar.html', } # Additional templates that should be rendered to pages. html_additional_pages = { - 'download': 'tools/sphinxext/download.html', + 'download': 'download.html', } # Output file base name for HTML help builder. |