Subject: Collected Debian patches for dnsviz
Author: Debian DNS Maintainers <pkg-dns-devel@lists.alioth.debian.org>

The dnsviz package is maintained in Git rather than maintaining
patches as separate files, and separating the patches doesn't seem to
be worth the effort.  They are therefore all included in this single
Debian patch.

For full commit history and separated commits, see the packaging Git
repository.
--- dnsviz-0.6.4.orig/setup.py
+++ dnsviz-0.6.4/setup.py
@@ -14,10 +14,21 @@ from distutils.dist import Distribution
 from distutils.command.install import install
 from distutils.command.build import build
 
-JQUERY_UI_PATH = "'http://code.jquery.com/ui/1.11.4/jquery-ui.min.js'"
-JQUERY_UI_CSS_PATH = "'http://code.jquery.com/ui/1.11.4/themes/redmond/jquery-ui.css'"
-JQUERY_PATH = "'http://code.jquery.com/jquery-1.11.3.min.js'"
-RAPHAEL_PATH = "'http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.4/raphael-min.js'"
+# Requires libjs-jquery-ui
+JQUERY_UI_PATH = \
+    "'file:///usr/share/javascript/jquery-ui/jquery-ui.min.js'"
+
+# Requires libjs-jquery-ui-theme-redmond
+JQUERY_UI_CSS_PATH = \
+    "'file:///usr/share/javascript/jquery-ui-themes/redmond/jquery-ui.css'"
+
+# Requires libjs-jquery
+JQUERY_PATH = \
+    "'file:///usr/share/javascript/jquery/jquery.min.js'"
+
+# Requires libjs-raphael
+RAPHAEL_PATH = \
+    "'file:///usr/share/javascript/raphael/raphael.min.js'"
 
 def apply_substitutions(filename, install_prefix):
     assert filename.endswith('.in'), 'Filename supplied for customization must end with \'.in\': %s' % (filename)
