summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHangdong Zhang <hdzhang@fiberhome.com>2017-07-20 16:37:24 +0800
committerHangdong Zhang <hdzhang@fiberhome.com>2017-07-20 16:38:16 +0800
commit4a72cd6c3b3139dd2b55787eff5b84741cc0a347 (patch)
treecdb1e6c878f9b33c4027228f08d0c31bf3654fa4
parent577ded1154866e87ca3ee98bedafaa400d60a459 (diff)
downloadkeystonemiddleware-4a72cd6c3b3139dd2b55787eff5b84741cc0a347.tar.gz
Update URLs in documentation4.17.0
Update URLs according to OpenStack document migration. Change-Id: Icb4232fcce79bb1ea121489122e578e3109b5e90
-rw-r--r--HACKING.rst2
-rw-r--r--README.rst2
-rw-r--r--doc/source/index.rst4
-rw-r--r--doc/source/middlewarearchitecture.rst6
-rw-r--r--keystonemiddleware/audit/__init__.py2
-rw-r--r--keystonemiddleware/auth_token/__init__.py2
-rw-r--r--keystonemiddleware/i18n.py2
7 files changed, 10 insertions, 10 deletions
diff --git a/HACKING.rst b/HACKING.rst
index 02d290f..aeb2d9f 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 f86aaf4..6fd7ddc 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 d101653..66b851d 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 7be6e02..bf85661 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 <https://docs.openstack.org/developer/
-keystoneauth/authentication-plugins.html>`_ document for how to
-configure the auth_token middleware.
+the `Authentication Plugins <https://docs.openstack.org/keystoneauth/latest/
+authentication-plugins.html>`_ 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 8335cf6..ea8f292 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 b81e1c6..1730df4 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 c0f3afd..b926d39 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 .
"""