Add intersphinx_mapping to doc/conf.py
authorW. Trevor King <wking@drexel.edu>
Mon, 17 May 2010 20:27:20 +0000 (16:27 -0400)
committerW. Trevor King <wking@drexel.edu>
Mon, 17 May 2010 20:27:20 +0000 (16:27 -0400)
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

doc/conf.py

index 1f1de4dbf97be341401094e8f95756f8d9d75afe..5cbc0f0c7eac8c2f7da75c3ec7edb99b748c87cc 100644 (file)
@@ -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}