summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJamie Lennox <jamielennox@redhat.com>2014-12-15 12:16:39 +1000
committerJamie Lennox <jamielennox@redhat.com>2014-12-16 11:36:14 +1000
commita15dd80dd29e56a6ba195c5414532fcbb1d40a29 (patch)
treed45ec5dc37a5cba255b824c3add92899fe4494f7 /doc
parentb9f17e3bbbd901abfafba9fca867bf106ac59478 (diff)
downloadpython-keystoneclient-a15dd80dd29e56a6ba195c5414532fcbb1d40a29.tar.gz
Fix up types within API documentation
Correct the type signature of some API documentation. Add inter-sphinx mapping to documentation to provide links to external docs. Correct some phrases and errors. Change-Id: Id4a71a9901e5adc695afed656e3bc84e4e54e67a
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 30d0259..f256fd4 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -42,6 +42,7 @@ sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
extensions = ['sphinx.ext.autodoc',
'sphinx.ext.todo',
'sphinx.ext.coverage',
+ 'sphinx.ext.intersphinx',
'oslosphinx',
# NOTE(blk-u): Uncomment the [pbr] section in setup.cfg and
# remove this Sphinx extension when
@@ -232,3 +233,8 @@ latex_documents = [
# If false, no module index is generated.
#latex_use_modindex = True
+
+intersphinx_mapping = {
+ 'python': ('http://docs.python.org/', None),
+ 'osloconfig': ('http://docs.openstack.org/developer/oslo.config/', None),
+}