summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Guterres Jeffman <rjeffman@redhat.com>2023-01-11 19:37:13 -0300
committerGitHub <noreply@github.com>2023-01-11 14:37:13 -0800
commit24f0687ebbfc7499d32f47810c6fac2b9b87a63b (patch)
tree0d2ff9055d03d5b6ededdd5d59e715ee88b82826
parent6d7f73a515d394b27252fa235ecdc7e985a7d273 (diff)
downloaddnspython-24f0687ebbfc7499d32f47810c6fac2b9b87a63b.tar.gz
Use 'https' instead of 'http' for dnspython.org (#883)
These days, 'https' should be used instead of 'http' for almost anything, and Coverity is warning that dnspython.org URL in 'setup.cfg' uses 'http'. This patch changes the use of 'http' to 'https' on setup.cfg and documentation, where it does not affect module code, tests or examples.
-rw-r--r--dns/name.py2
-rw-r--r--doc/community.rst6
-rw-r--r--doc/name-codecs.rst2
-rw-r--r--doc/rfc.rst4
-rw-r--r--setup.cfg2
5 files changed, 8 insertions, 8 deletions
diff --git a/dns/name.py b/dns/name.py
index 29639b5..612af02 100644
--- a/dns/name.py
+++ b/dns/name.py
@@ -238,7 +238,7 @@ class IDNA2008Codec(IDNACodec):
*uts_46* is a ``bool``. If True, apply Unicode IDNA
compatibility processing as described in Unicode Technical
- Standard #46 (http://unicode.org/reports/tr46/).
+ Standard #46 (https://unicode.org/reports/tr46/).
If False, do not apply the mapping. The default is False.
*transitional* is a ``bool``: If True, use the
diff --git a/doc/community.rst b/doc/community.rst
index 3fb02e5..7104eca 100644
--- a/doc/community.rst
+++ b/doc/community.rst
@@ -12,6 +12,6 @@ Bugs and feature requests can be made using the github issues system at
Mailing Lists
-------------
-| `dnspython-announce <http://groups.google.com/group/dnspython-announce>`_
-| `dnspython-users <http://groups.google.com/group/dnspython-users>`_
-| `dnspython-dev <http://groups.google.com/group/dnspython-dev>`_
+| `dnspython-announce <https://groups.google.com/group/dnspython-announce>`_
+| `dnspython-users <https://groups.google.com/group/dnspython-users>`_
+| `dnspython-dev <https://groups.google.com/group/dnspython-dev>`_
diff --git a/doc/name-codecs.rst b/doc/name-codecs.rst
index 851e00d..6f46be0 100644
--- a/doc/name-codecs.rst
+++ b/doc/name-codecs.rst
@@ -11,7 +11,7 @@ widely used, and the revised and not fully compatible standard "IDNA
2008". There are also varying degrees of strictness that can be applied
in encoding and decoding. Explaining the standards in detail is
out of scope for this document; Unicode Technical Standard #46
-http://unicode.org/reports/tr46/ is a good place to start learning more.
+https://unicode.org/reports/tr46/ is a good place to start learning more.
Dnspython provides "codecs" to implement International Domain Name policy
according to the user's desire.
diff --git a/doc/rfc.rst b/doc/rfc.rst
index b9b9ba5..dde2691 100644
--- a/doc/rfc.rst
+++ b/doc/rfc.rst
@@ -16,7 +16,7 @@ list because there are many DNSSEC related RFCs and it's helpful to group
them together. It's not a statement that DNSSEC isn't part of the "Core"
of the DNS.
-The IANA `DNS Parameters <http://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml>`_ registry is the official reference site for all DNS
+The IANA `DNS Parameters <https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml>`_ registry is the official reference site for all DNS
constants.
@@ -128,7 +128,7 @@ listed it means it is obsolete, deprecated, or rare "in the wild".
Some types that are currently rare are listed because they may
well be more heavily used in the not-to-distant future.
See the
-IANA `DNS Parameters <http://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml>`_ registry for a complete list.
+IANA `DNS Parameters <https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml>`_ registry for a complete list.
A
`RFC 1035 <https://tools.ietf.org/html/rfc1035>`_
diff --git a/setup.cfg b/setup.cfg
index bb1c643..bd07111 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,7 +6,7 @@ author_email = halley@dnspython.org
license = ISC
license_file = LICENSE
description = DNS toolkit
-url = http://www.dnspython.org
+url = https://www.dnspython.org
project_urls =
Bug Tracker = https://github.com/rthalley/dnspython/issues
Documentation = https://dnspython.readthedocs.io/en/stable/