[Python-checkins] r61330 - python/trunk/Doc/conf.py

georg.brandl python-checkins at python.org
Sun Mar 9 19:18:31 CET 2008


Author: georg.brandl
Date: Sun Mar  9 19:18:30 2008
New Revision: 61330

Modified:
   python/trunk/Doc/conf.py
Log:
Update for newest Sphinx.


Modified: python/trunk/Doc/conf.py
==============================================================================
--- python/trunk/Doc/conf.py	(original)
+++ python/trunk/Doc/conf.py	Sun Mar  9 19:18:30 2008
@@ -14,6 +14,7 @@
 # ---------------------
 
 extensions = ['sphinx.ext.refcounting', 'sphinx.ext.coverage']
+templates_path = ['tools/sphinxext']
 
 # General substitutions.
 project = 'Python'
@@ -73,16 +74,16 @@
 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.


More information about the Python-checkins mailing list