summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJamie Lennox <jamielennox@redhat.com>2014-07-16 10:31:21 +1000
committerJamie Lennox <jamielennox@redhat.com>2014-08-26 10:11:39 +1000
commitd26c81df440c0d1306c1aaf1c001fa6f7df37115 (patch)
treea643a0c4971e06f8b276ee4101f30430be3151d3 /doc
parente3a3dff00ff40d2cd161d0cd50b1549ae675b0f2 (diff)
downloadkeystonemiddleware-d26c81df440c0d1306c1aaf1c001fa6f7df37115.tar.gz
Create an Auth Plugin to pass to users
We pass the service catalog and token data through to consumers via headers, with the auth plugin work we can create clients that are authenticated with the incoming token and service catalog. DocImpact: A new environment option is passed out of auth_token middleware called `token_auth` which is an authentication plugin that can be used with a session in a service. Implements: blueprint create-auth-plugin Change-Id: I549a421fc73f00126f6ac5f4b5911de2e32de825
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 19c81d6..069382b 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -231,6 +231,7 @@ latex_documents = [
# If false, no module index is generated.
#latex_use_modindex = True
+keystoneclient = 'http://docs.openstack.org/developer/python-keystoneclient/'
-# Example configuration for intersphinx: refer to the Python standard library.
-#intersphinx_mapping = {'python': ('http://docs.python.org/', None)}
+intersphinx_mapping = {'keystoneclient': (keystoneclient, None),
+ }