From 96dac98364562055720a0ada7ec3c89c8d251bf5 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Sun, 5 Feb 2017 20:36:05 -0800 Subject: [PATCH] Use https for *.openstack.org references The openstack.org pages now support https and our references to the site should by default be one signed by the organization. Change-Id: I8521461203fe40e4576f4de7cfb500bd64027d6d --- CONTRIBUTING.rst | 4 ++-- HACKING.rst | 4 ++-- README.rst | 10 +++++----- doc/source/conf.py | 2 +- doc/source/index.rst | 6 +++--- doc/source/middlewarearchitecture.rst | 2 +- keystonemiddleware/audit/__init__.py | 2 +- keystonemiddleware/auth_token/__init__.py | 2 +- keystonemiddleware/i18n.py | 2 +- setup.cfg | 2 +- 10 files changed, 18 insertions(+), 18 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index ba308f23..2098f3f2 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -1,13 +1,13 @@ If you would like to contribute to the development of OpenStack, you must follow the steps in this page: - http://docs.openstack.org/infra/manual/developers.html + https://docs.openstack.org/infra/manual/developers.html Once those steps have been completed, changes to OpenStack should be submitted for review via the Gerrit tool, following the workflow documented at: - http://docs.openstack.org/infra/manual/developers.html#development-workflow + https://docs.openstack.org/infra/manual/developers.html#development-workflow Pull requests submitted through GitHub will be ignored. diff --git a/HACKING.rst b/HACKING.rst index 77de6b32..02d290fc 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -2,7 +2,7 @@ Keystone Style Commandments =========================== - Step 1: Read the OpenStack Style Commandments - http://docs.openstack.org/developer/hacking/ + https://docs.openstack.org/developer/hacking/ - Step 2: Read on Exceptions @@ -17,7 +17,7 @@ Testing Keystone Middleware uses testtools and testr for its unittest suite and its test runner. Basic workflow around our use of tox and testr can -be found at http://wiki.openstack.org/testr. If you'd like to learn more +be found at https://wiki.openstack.org/testr. If you'd like to learn more in depth: https://testtools.readthedocs.org/ diff --git a/README.rst b/README.rst index e9e6f8d6..f86aaf4e 100644 --- a/README.rst +++ b/README.rst @@ -2,8 +2,8 @@ Team and repository tags ======================== -.. image:: http://governance.openstack.org/badges/keystonemiddleware.svg - :target: http://governance.openstack.org/reference/tags/index.html +.. image:: https://governance.openstack.org/badges/keystonemiddleware.svg + :target: https://governance.openstack.org/reference/tags/index.html .. Change things from this point on @@ -27,9 +27,9 @@ Python API features. For information on contributing, see ``CONTRIBUTING.rst``. * License: Apache License, Version 2.0 -* Documentation: http://docs.openstack.org/developer/keystonemiddleware -* Source: http://git.openstack.org/cgit/openstack/keystonemiddleware -* Bugs: http://bugs.launchpad.net/keystonemiddleware +* Documentation: https://docs.openstack.org/developer/keystonemiddleware +* Source: https://git.openstack.org/cgit/openstack/keystonemiddleware +* Bugs: https://bugs.launchpad.net/keystonemiddleware For any other information, refer to the parent project, Keystone: diff --git a/doc/source/conf.py b/doc/source/conf.py index 29bf3157..14a55010 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -241,7 +241,7 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True -keystoneclient = 'http://docs.openstack.org/developer/python-keystoneclient/' +keystoneclient = 'https://docs.openstack.org/developer/python-keystoneclient/' intersphinx_mapping = {'keystoneclient': (keystoneclient, None), } diff --git a/doc/source/index.rst b/doc/source/index.rst index 97ca5f73..d1016532 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -22,8 +22,8 @@ In addition to creating the Python Middleware for OpenStack Identity API, the Keystone team also provides `Identity Service`_, as well as `Python Client Library`_. -.. _`Identity Service`: http://docs.openstack.org/developer/keystone/ -.. _`Python Client Library`: http://docs.openstack.org/developer/python-keystoneclient/ +.. _`Identity Service`: https://docs.openstack.org/developer/keystone/ +.. _`Python Client Library`: https://docs.openstack.org/developer/python-keystoneclient/ Release Notes ============= @@ -42,7 +42,7 @@ using `Gerrit`_. .. _on GitHub: https://github.com/openstack/keystonemiddleware .. _Launchpad: https://launchpad.net/keystonemiddleware -.. _Gerrit: http://docs.openstack.org/infra/manual/developers.html#development-workflow +.. _Gerrit: https://docs.openstack.org/infra/manual/developers.html#development-workflow Run tests with ``tox -e py27`` if running with python 2.7. See the ``tox.ini`` file for other test environment options. diff --git a/doc/source/middlewarearchitecture.rst b/doc/source/middlewarearchitecture.rst index 3248f912..7be6e02e 100644 --- a/doc/source/middlewarearchitecture.rst +++ b/doc/source/middlewarearchitecture.rst @@ -130,7 +130,7 @@ a WSGI component. Example for the auth_token middleware: .. literalinclude:: _static/keystonemiddleware.conf.sample If the ``auth_plugin`` configuration option is set, you may need to refer to -the `Authentication Plugins `_ document for how to configure the auth_token middleware. diff --git a/keystonemiddleware/audit/__init__.py b/keystonemiddleware/audit/__init__.py index ade5891a..cf7b5682 100644 --- a/keystonemiddleware/audit/__init__.py +++ b/keystonemiddleware/audit/__init__.py @@ -79,7 +79,7 @@ class AuditMiddleware(object): The audit middleware takes in various configuration options such as the ability to skip audit of certain requests. The full list of options can be discovered here: - http://docs.openstack.org/developer/keystonemiddleware/audit.html + https://docs.openstack.org/developer/keystonemiddleware/audit.html """ def __init__(self, app, **conf): diff --git a/keystonemiddleware/auth_token/__init__.py b/keystonemiddleware/auth_token/__init__.py index 8d86ce44..970f2f61 100644 --- a/keystonemiddleware/auth_token/__init__.py +++ b/keystonemiddleware/auth_token/__init__.py @@ -26,7 +26,7 @@ This WSGI component: * Collects and forwards identity information based on a valid token such as user name, domain, project, etc. -Refer to: http://docs.openstack.org/developer/keystonemiddleware/\ +Refer to: https://docs.openstack.org/developer/keystonemiddleware/\ middlewarearchitecture.html diff --git a/keystonemiddleware/i18n.py b/keystonemiddleware/i18n.py index 0591284d..b1c1416a 100644 --- a/keystonemiddleware/i18n.py +++ b/keystonemiddleware/i18n.py @@ -14,7 +14,7 @@ """oslo.i18n integration module. -See http://docs.openstack.org/developer/oslo.i18n/usage.html . +See https://docs.openstack.org/developer/oslo.i18n/usage.html . """ diff --git a/setup.cfg b/setup.cfg index deafd103..dff4e89c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,7 @@ description-file = README.rst author = OpenStack author-email = openstack-dev@lists.openstack.org -home-page = http://docs.openstack.org/developer/keystonemiddleware/ +home-page = https://docs.openstack.org/developer/keystonemiddleware/ classifier = Environment :: OpenStack Intended Audience :: Information Technology