diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-12-03 14:35:04 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-12-03 14:35:04 -0500 |
commit | 9e6fc80397582838de8124344efcde6b17472b73 (patch) | |
tree | 50fd8121c695ad5f322ebb377b9815711098e531 /sites/docs/conf.py | |
parent | 25de1a7a02a2189614787718739efbde86d5bb8e (diff) | |
parent | 84fa355a253d30d6c39adaea8bb095ced0c3b751 (diff) |
Merge branch 'master' into 1343-int
Diffstat (limited to 'sites/docs/conf.py')
-rw-r--r-- | sites/docs/conf.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sites/docs/conf.py b/sites/docs/conf.py index eb895804..4805a03c 100644 --- a/sites/docs/conf.py +++ b/sites/docs/conf.py @@ -1,8 +1,9 @@ # Obtain shared config values import os, sys +from os.path import abspath, join, dirname -sys.path.append(os.path.abspath("..")) -sys.path.append(os.path.abspath("../..")) +sys.path.append(abspath("..")) +sys.path.append(abspath("../..")) from shared_conf import * # Enable autodoc, intersphinx @@ -11,6 +12,13 @@ extensions.extend(["sphinx.ext.autodoc"]) # Autodoc settings autodoc_default_flags = ["members", "special-members"] +# Default is 'local' building, but reference the public www site when building +# under RTD. +target = join(dirname(__file__), "..", "www", "_build") +if os.environ.get("READTHEDOCS") == "True": + target = "http://paramiko.org" +intersphinx_mapping["www"] = (target, None) + # Sister-site links to WWW html_theme_options["extra_nav_links"] = { "Main website": "http://www.paramiko.org" |