summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2013-03-13 11:25:43 -0500
committerDolph Mathews <dolph.mathews@gmail.com>2013-03-13 11:25:43 -0500
commit050ad91b07f12bad3b25557744b04abbef6cfcde (patch)
treeb0522fca9716aabf9fcd7d687b4da9a240a4f809 /doc
parent45228caa7335420d5c3bbe8a3c10e921e1dcaa3e (diff)
downloadkeystone-050ad91b07f12bad3b25557744b04abbef6cfcde.tar.gz
keystone-050ad91b07f12bad3b25557744b04abbef6cfcde.tar.xz
keystone-050ad91b07f12bad3b25557744b04abbef6cfcde.zip
Revise docs to use keystoneclient.middleware.auth_token
Change-Id: Ic6caf991cb3eda359658ea679b0fd2f75180c2a9
Diffstat (limited to 'doc')
-rw-r--r--doc/source/configuringservices.rst4
-rw-r--r--doc/source/middlewarearchitecture.rst10
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/source/configuringservices.rst b/doc/source/configuringservices.rst
index 2a8c1472..17ced552 100644
--- a/doc/source/configuringservices.rst
+++ b/doc/source/configuringservices.rst
@@ -192,7 +192,7 @@ Here is an example paste config filter that makes use of the 'admin_user' and
'admin_password' parameters::
[filter:authtoken]
- paste.filter_factory = keystone.middleware.auth_token:filter_factory
+ paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
auth_port = 35357
auth_host = 127.0.0.1
auth_token = 012345SECRET99TOKEN012345
@@ -208,7 +208,7 @@ The auth_token middleware can also be configured in nova.conf
parameters::
[filter:authtoken]
- paste.filter_factory = keystone.middleware.auth_token:filter_factory
+ paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
and in nova.conf::
diff --git a/doc/source/middlewarearchitecture.rst b/doc/source/middlewarearchitecture.rst
index c3f88b15..9224682d 100644
--- a/doc/source/middlewarearchitecture.rst
+++ b/doc/source/middlewarearchitecture.rst
@@ -33,8 +33,8 @@ OpenStack projects based on the WSGI standard.
For the architecture of keystone and its services, please see
:doc:`architecture`. This documentation primarily describes the implementation
-in ``keystone/middleware/auth_token.py``
-(:py:class:`keystone.middleware.auth_token.AuthProtocol`)
+in ``keystoneclient/middleware/auth_token.py``
+(:py:class:`keystoneclient.middleware.auth_token.AuthProtocol`)
Specification Overview
======================
@@ -122,7 +122,7 @@ a WSGI component. Example for the auth_token middleware::
pipeline = tokenauth myService
[filter:tokenauth]
- paste.filter_factory = keystone.middleware.auth_token:filter_factory
+ paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
auth_host = 127.0.0.1
auth_port = 35357
auth_protocol = http
@@ -143,7 +143,7 @@ config file. For example in Nova, all middleware parameters can be removed
from api-paste.ini::
[filter:authtoken]
- paste.filter_factory = keystone.middleware.auth_token:filter_factory
+ paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
and set in nova.conf::
@@ -219,7 +219,7 @@ unsuccessful.
Extended the request with additional User Information
-----------------------------------------------------
-:py:class:`keystone.middleware.auth_token.AuthProtocol` extends the request
+:py:class:`keystoneclient.middleware.auth_token.AuthProtocol` extends the request
with additional information if the user has been authenticated.