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 29
|
From a50548de4e8b8b0ee93c57797e63a2e1fb2c780a Mon Sep 17 00:00:00 2001
From: Michael Fladischer <fladi@debian.org>
Date: Thu, 8 Oct 2015 08:50:54 -0700
Subject: Disable objects.inv download for sphinx.
The python-django-doc package does not ship a objects.inv file by now, so there
is no sense in keeping intersphinx enabled. Once it is shipped, the patch
should switch to using the locally available Django objects.inv.
Last-Update: 2014-04-25
Forwarded: not-needed
Patch-Name: intersphinx.patch
---
docs/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index 37fcd78..4f5454b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -24,7 +24,7 @@ import sys, os
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ["sphinx.ext.intersphinx"]
-intersphinx_mapping = {'django': ('http://readthedocs.org/projects/eric/django/docs/', None)}
+#intersphinx_mapping = {'django': ('http://readthedocs.org/projects/eric/django/docs/', None)}
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
|