1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From 10f122ea605e382b0a4da1e7aa0fac4048a49d20 Mon Sep 17 00:00:00 2001
From: SVN-Git Migration <python-modules-team@lists.alioth.debian.org>
Date: Thu, 8 Oct 2015 12:34:59 -0700
Subject: 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
Patch-Name: 30_use_local_objects.inv
---
doc/source/conf.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 24faf00..35a1980 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -217,8 +217,8 @@ latex_documents = [('tutorial/index', 'networkx_tutorial.tex',
#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
|