diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-04-14 10:48:33 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-04-14 10:48:33 -0400 |
commit | be7c679942b9b3a1838cce692f87e1c3d45092cf (patch) | |
tree | 5033c863144251c6e8dfeb6f7b0747c8ee4a7fe1 /sites/shared_conf.py | |
parent | c8cc53940c039c285e38f4cc7f566849190014e0 (diff) |
Errything uses intersphinx to Python
Diffstat (limited to 'sites/shared_conf.py')
-rw-r--r-- | sites/shared_conf.py | 7 |
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 |