CLIMATE-558 - Add config for external doc linking - Add necessary configuration for linking to numpy, scipy, and matplotlib documentation.
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/544fab01 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/544fab01 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/544fab01 Branch: refs/heads/master Commit: 544fab016cb92e38790c7ceb8a73117b78dca1c7 Parents: d56dff1 Author: Michael Joyce <[email protected]> Authored: Mon Nov 17 10:22:53 2014 -0800 Committer: Michael Joyce <[email protected]> Committed: Mon Nov 17 10:22:53 2014 -0800 ---------------------------------------------------------------------- docs/source/conf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/544fab01/docs/source/conf.py ---------------------------------------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 6caf0cc..9323133 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -260,7 +260,10 @@ texinfo_documents = [ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'http://docs.python.org/': None} +intersphinx_mapping = {'python': ('http://docs.python.org/2', None), + 'numpy': ('http://docs.scipy.org/doc/numpy/', None), + 'scipy': ('http://docs.scipy.org/doc/scipy/reference/', None), + 'matplotlib': ('http://matplotlib.sourceforge.net/', None)} # Autodoc config #
