From 4ad46bb0c666d1b04222c1c5f55e1566c8763d60 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Tue, 12 Dec 2017 01:29:47 -0800 Subject: [PATCH] Always use https with all readthedocs links https://github.com/python-ldap/python-ldap/pull/119 --- CONTRIBUTING.rst | 2 +- Doc/bytes_mode.rst | 2 +- Doc/contributing.rst | 2 +- Doc/index.rst | 2 +- INSTALL | 2 +- Tests/t_ldap_syncrepl.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 0866c8e..7fd68fc 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -4,7 +4,7 @@ If you wish to help, detailed instructions are in `Doc/contributing.rst`_, and in `online documentation`_. .. _Doc/contributing.rst: Doc/contributing.rst -.. _online documentation: http://python-ldap.readthedocs.io/en/latest/contributing.html +.. _online documentation: https://python-ldap.readthedocs.io/en/latest/contributing.html Open-source veretans should find no surprises there. diff --git a/Doc/bytes_mode.rst b/Doc/bytes_mode.rst index c775b27..bbd83db 100644 --- a/Doc/bytes_mode.rst +++ b/Doc/bytes_mode.rst @@ -85,7 +85,7 @@ General instructions for this are provided `in Python documentation`_ and in the `Conservative porting guide`_. .. _in Python documentation: https://docs.python.org/3/howto/pyporting.html -.. _Conservative porting guide: http://portingguide.readthedocs.io/en/latest/ +.. _Conservative porting guide: https://portingguide.readthedocs.io/en/latest/ When porting from python-ldap 2.x, users are advised to update their code diff --git a/Doc/contributing.rst b/Doc/contributing.rst index 70856c4..c45e9c9 100644 --- a/Doc/contributing.rst +++ b/Doc/contributing.rst @@ -79,7 +79,7 @@ Or, if you prefer to avoid closed-source services: * Run tests with `tox`_; ignore Python interpreters you don't have locally. * Read the documentation directly at `Read the Docs`_. -.. _Read the Docs: http://python-ldap.readthedocs.io/ +.. _Read the Docs: https://python-ldap.readthedocs.io/ If you're new to some aspect of the project, you're welcome to use (or adapt) our :ref:`sample workflow `. diff --git a/Doc/index.rst b/Doc/index.rst index ef652d9..fcf9005 100644 --- a/Doc/index.rst +++ b/Doc/index.rst @@ -57,7 +57,7 @@ versions for offline use, using the sidebar on the right. Documentation for some older versions is available for download at the `GitHub release page`_. -.. _Read the Docs: http://python-ldap.readthedocs.io/en/latest/ +.. _Read the Docs: https://python-ldap.readthedocs.io/en/latest/ .. _GitHub release page: https://github.com/python-ldap/python-ldap/releases diff --git a/INSTALL b/INSTALL index 0475a2f..b9b13d2 100644 --- a/INSTALL +++ b/INSTALL @@ -6,4 +6,4 @@ Quick build instructions: Detailed instructions are in Doc/installing.rst, or online at: - http://python-ldap.readthedocs.io/en/latest/installing.html + https://python-ldap.readthedocs.io/en/latest/installing.html diff --git a/Tests/t_ldap_syncrepl.py b/Tests/t_ldap_syncrepl.py index faa6856..539ff3a 100644 --- a/Tests/t_ldap_syncrepl.py +++ b/Tests/t_ldap_syncrepl.py @@ -241,7 +241,7 @@ def syncrepl_present(self, uuids, refreshDeletes=False): """ The 'present' message from the LDAP server is the most complicated part of the refresh phase. Suggest looking here for more info: - http://syncrepl-client.readthedocs.io/en/latest/client.html + https://syncrepl-client.readthedocs.io/en/latest/client.html """ if (uuids is not None) and (refreshDeletes is False): self.present.extend(uuids)