diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-08 10:42:59 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-08 10:42:59 -0700 |
commit | 615c30759f62c1ccb5120223f12d1415d09a3566 (patch) | |
tree | 99bed6c92ab7f8767e3386c11f5826d059503381 /sites/shared_conf.py | |
parent | 77b1aaccc6dcc17108da17dc609c81bdd4e9a0e5 (diff) | |
parent | ec9f8a26d4ea77ce6e4a1afe1a9e3b29dbf002bf (diff) |
Merge branch 'master' into 298-int
Conflicts:
setup.py
Diffstat (limited to 'sites/shared_conf.py')
-rw-r--r-- | sites/shared_conf.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sites/shared_conf.py b/sites/shared_conf.py index 52cec938..4a6a5c4e 100644 --- a/sites/shared_conf.py +++ b/sites/shared_conf.py @@ -1,25 +1,20 @@ 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.", 'github_user': 'paramiko', 'github_repo': 'paramiko', - 'gittip_user': 'bitprophet', + 'gratipay_user': 'bitprophet', 'analytics_id': 'UA-18486793-2', - - 'link': '#3782BE', - 'link_hover': '#3782BE', + 'travis_button': True, } html_sidebars = { '**': [ @@ -30,6 +25,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 |