1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Use a local copy of object.inv from doc.python.org and docs.scipy.org, instead of downloading them each time from the internet
Last-Update: 2014-06-22
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -167,8 +167,8 @@ latex_documents = [('tutorial/index', 'n
#latex_appendices = ['credits']
# Intersphinx mapping
-intersphinx_mapping = {'http://docs.python.org/': None,
- 'http://docs.scipy.org/doc/numpy/': None,
+intersphinx_mapping = {'http://docs.python.org/': '../../debian/python.org_objects.inv',
+ 'http://docs.scipy.org/doc/numpy/': '../../debian/scipy.org_numpy_objects.inv',
}
# For trac custom roles
|