From: W. Trevor King Date: Mon, 17 May 2010 20:27:20 +0000 (-0400) Subject: Add intersphinx_mapping to doc/conf.py X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=268a9d7990d789aa29326f20497c14db1d079bac;p=hooke.git Add intersphinx_mapping to doc/conf.py This tell's intersphinx where to find documentation for other projects. Currently we've only told it about the standard Python libraries. http://sphinx.pocoo.org/latest/ext/intersphinx.html#confval-intersphinx_mapping --- diff --git a/doc/conf.py b/doc/conf.py index 1f1de4d..5cbc0f0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -198,3 +198,7 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True + +# -- Options for LaTeX intersphinx---------------------------------------------- + +intersphinx_mapping = {'http://docs.python.org/dev': None}