summaryrefslogtreecommitdiffhomepage
path: root/sites/shared_conf.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-04-14 10:49:13 -0400
committerJeff Forcier <jeff@bitprophet.org>2014-04-14 10:49:54 -0400
commit59a696cef2639b65adbf47321171bbfea98f7df0 (patch)
treeaf35c0e1234d2f61d3f606bc2799c7d6cc27b3ac /sites/shared_conf.py
parentd31373f0efac2976af80380e16136c1a7831b6a7 (diff)
parent160e2c08e0b7652a92d879c0e481ce72cddafef7 (diff)
Merge branch '295-int'
Diffstat (limited to 'sites/shared_conf.py')
-rw-r--r--sites/shared_conf.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/sites/shared_conf.py b/sites/shared_conf.py
index c265fc49..e0afe92e 100644
--- a/sites/shared_conf.py
+++ b/sites/shared_conf.py
@@ -5,7 +5,7 @@ import alabaster
# Alabaster theme + mini-extension
html_theme_path = [alabaster.get_path()]
-extensions = ['alabaster']
+extensions = ['alabaster', 'sphinx.ext.intersphinx']
# Paths relative to invoking conf.py - not this shared file
html_theme = 'alabaster'
html_theme_options = {
@@ -24,6 +24,11 @@ html_sidebars = {
]
}
+# Everything intersphinx's to Python
+intersphinx_mapping = {
+ 'python': ('http://docs.python.org/2.6', None),
+}
+
# Regular settings
project = 'Paramiko'
year = datetime.now().year