diff options
Diffstat (limited to 'docs/source/conf.py')
-rw-r--r-- | docs/source/conf.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 4b89f31..9d71241 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,7 +28,15 @@ import os # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx'] + +intersphinx_mapping = { + 'python': ('http://docs.python.org', None), + 'webob': ('http://docs.webob.org/en/latest', None), + 'webtest': ('http://webtest.readthedocs.org/en/latest/', None), + 'beaker': ('http://beaker.readthedocs.org/en/latest/', None), + 'paste': ('http://pythonpaste.org', None), +} # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] |