Skip to content

Commit

Permalink
Use https for *.openstack.org references
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ericwb committed Feb 6, 2017
1 parent 49866d1 commit 96dac98
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions HACKING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/
Expand Down
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
# 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),
}
6 changes: 3 additions & 3 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
=============
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/middlewarearchitecture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://docs.openstack.org/developer/
the `Authentication Plugins <https://docs.openstack.org/developer/
keystoneauth/authentication-plugins.html>`_ document for how to
configure the auth_token middleware.

Expand Down
2 changes: 1 addition & 1 deletion keystonemiddleware/audit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion keystonemiddleware/auth_token/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* 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
Expand Down
2 changes: 1 addition & 1 deletion keystonemiddleware/i18n.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
"""

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 96dac98

Please sign in to comment.