diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-14 10:58:43 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-14 10:58:43 -0400 |
commit | b0876fa01394186d08938430f9459012fdde3bf1 (patch) | |
tree | 2eb38cbd35029e18051e8853a73ff5c1b2deacae /sites/shared_conf.py | |
parent | fded67e7120d79c619e541ccd3ba19898c194b5b (diff) | |
parent | fa86d655dc8f08eb9171930c41b508e2bee08b08 (diff) |
Merge branch 'master' into ecdsa-deterministic
Conflicts:
paramiko/ecdsakey.py
Diffstat (limited to 'sites/shared_conf.py')
-rw-r--r-- | sites/shared_conf.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sites/shared_conf.py b/sites/shared_conf.py index 52cec938..e0afe92e 100644 --- a/sites/shared_conf.py +++ b/sites/shared_conf.py @@ -1,15 +1,12 @@ from datetime import datetime -import os -import sys 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_static_path = ['../_shared_static'] html_theme = 'alabaster' html_theme_options = { 'description': "A Python implementation of SSHv2.", @@ -17,9 +14,6 @@ html_theme_options = { 'github_repo': 'paramiko', 'gittip_user': 'bitprophet', 'analytics_id': 'UA-18486793-2', - - 'link': '#3782BE', - 'link_hover': '#3782BE', } html_sidebars = { '**': [ @@ -30,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 |