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.
--- /dev/null
+++ dnsviz-0.11.1/dnsviz/config.py
@@ -0,0 +1,40 @@
+#
+# This file is a part of DNSViz, a tool suite for DNS/DNSSEC monitoring,
+# analysis, and visualization.
+# Created by Casey Deccio (casey@deccio.net)
+#
+# Copyright 2014-2016 Verisign, Inc.
+#
+# Copyright 2016-2021 Casey Deccio
+#
+# DNSViz is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# DNSViz is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with DNSViz.  If not, see <http://www.gnu.org/licenses/>.
+#
+
+from __future__ import unicode_literals
+
+import os
+import sys
+
+_prefix = ''
+if (hasattr(sys, 'real_prefix') or hasattr(sys, 'base_prefix')) and \
+        not _prefix:
+    DNSVIZ_INSTALL_PREFIX = sys.prefix
+else:
+    DNSVIZ_INSTALL_PREFIX = _prefix
+DNSVIZ_SHARE_PATH = os.getenv('DNSVIZ_SHARE_PATH', os.path.join(DNSVIZ_INSTALL_PREFIX, 'share', 'dnsviz'))
+JQUERY_PATH = 'file:///usr/share/javascript/jquery/jquery.min.js'
+JQUERY_UI_PATH = 'file:///usr/share/javascript/jquery-ui/jquery-ui.min.js'
+JQUERY_UI_CSS_PATH = 'file:///usr/share/javascript/jquery-ui-themes/redmond/jquery-ui.css'
+RAPHAEL_PATH = 'file:///usr/share/javascript/raphael/raphael.min.js'
+RESOLV_CONF = '/etc/resolv.conf'
