summaryrefslogtreecommitdiffhomepage
path: root/sites/shared_conf.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-04-14 10:48:33 -0400
committerJeff Forcier <jeff@bitprophet.org>2014-04-24 10:12:15 -0700
commita1c2a9829a620c3ace6ddc6187bf05262e10b137 (patch)
tree18e3de5515d51fe39cdb527adf25416d7eb1b351 /sites/shared_conf.py
parent4fe3ad2220996354b7f096cbd2d3000caf5cfdf0 (diff)
Errything uses intersphinx to Python
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