diff --git a/HACKING.rst b/HACKING.rst index 02d290fc..aeb2d9f6 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -2,7 +2,7 @@ Keystone Style Commandments =========================== - Step 1: Read the OpenStack Style Commandments - https://docs.openstack.org/developer/hacking/ + https://docs.openstack.org/hacking/latest/ - Step 2: Read on Exceptions diff --git a/README.rst b/README.rst index f86aaf4e..6fd7ddcc 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ Python API features. For information on contributing, see ``CONTRIBUTING.rst``. * License: Apache License, Version 2.0 -* Documentation: https://docs.openstack.org/developer/keystonemiddleware +* Documentation: https://docs.openstack.org/keystonemiddleware/latest/ * Source: https://git.openstack.org/cgit/openstack/keystonemiddleware * Bugs: https://bugs.launchpad.net/keystonemiddleware diff --git a/doc/source/index.rst b/doc/source/index.rst index d1016532..66b851d1 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`: https://docs.openstack.org/developer/keystone/ -.. _`Python Client Library`: https://docs.openstack.org/developer/python-keystoneclient/ +.. _`Identity Service`: https://docs.openstack.org/keystone/latest/ +.. _`Python Client Library`: https://docs.openstack.org/python-keystoneclient/latest/ Release Notes ============= diff --git a/doc/source/middlewarearchitecture.rst b/doc/source/middlewarearchitecture.rst index 7be6e02e..bf856612 100644 --- a/doc/source/middlewarearchitecture.rst +++ b/doc/source/middlewarearchitecture.rst @@ -130,9 +130,9 @@ 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. +the `Authentication Plugins `_ document for how to configure the auth_token +middleware. For services which have a separate paste-deploy ini file, auth_token middleware can be alternatively configured in [keystone_authtoken] section in the main diff --git a/keystonemiddleware/audit/__init__.py b/keystonemiddleware/audit/__init__.py index 8335cf64..ea8f292b 100644 --- a/keystonemiddleware/audit/__init__.py +++ b/keystonemiddleware/audit/__init__.py @@ -78,7 +78,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: - https://docs.openstack.org/developer/keystonemiddleware/audit.html + https://docs.openstack.org/keystonemiddleware/latest/audit.html """ def __init__(self, app, **conf): diff --git a/keystonemiddleware/auth_token/__init__.py b/keystonemiddleware/auth_token/__init__.py index b81e1c63..1730df42 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: https://docs.openstack.org/developer/keystonemiddleware/\ +Refer to: https://docs.openstack.org/keystonemiddleware/latest/\ middlewarearchitecture.html diff --git a/keystonemiddleware/i18n.py b/keystonemiddleware/i18n.py index c0f3afd3..b926d394 100644 --- a/keystonemiddleware/i18n.py +++ b/keystonemiddleware/i18n.py @@ -14,7 +14,7 @@ """oslo.i18n integration module. -See https://docs.openstack.org/developer/oslo.i18n/usage.html . +See https://docs.openstack.org/oslo.i18n/latest/user/usage.html . """