]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Use 'https' instead of 'http' for dnspython.org (#883)
authorRafael Guterres Jeffman <rjeffman@redhat.com>
Wed, 11 Jan 2023 22:37:13 +0000 (19:37 -0300)
committerGitHub <noreply@github.com>
Wed, 11 Jan 2023 22:37:13 +0000 (14:37 -0800)
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.

dns/name.py
doc/community.rst
doc/name-codecs.rst
doc/rfc.rst
setup.cfg

index 29639b5e41cd82f199d33a11e83cd06b898f60d8..612af0214f23732e74be03f9d4febde64e5d8035 100644 (file)
@@ -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
index 3fb02e5ea898fec47012eeb98fdaaa602c03ad11..7104ecadd6054440e270c1d2363c7fcb906edc00 100644 (file)
@@ -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>`_
index 851e00d06317b18485fded54485f4c89febd6b49..6f46be0ea96ebd2a61f12e92b201a6ec7b9ec244 100644 (file)
@@ -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.
index b9b9ba5338e7eca399c5df932cc82882b6d02dd6..dde26913191bb1dd89d375118d03d04c5d3f5ce8 100644 (file)
@@ -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>`_
index bb1c6439618613226c36f8d759edd8f4dfb67442..bd07111c251973968bb92a0fe6b7334b132dff9d 100644 (file)
--- 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/