From 40d8b0f45445cfe2f7292437fdc53ffd012d4e4e Mon Sep 17 00:00:00 2001 From: Jay Clark Date: Wed, 26 Aug 2015 17:19:23 -0400 Subject: [PATCH] enabling the stevedore.sphinxext extension. The point behind the addition of the stevedore.sphinxext extension is "to document drivers and other types of plugins to make the available sets built into projects easier to discover"(dhellman). For the heat project, since there are so many plugins that need documentation, we discussed having the initial/parent patch be the enabling of the extension alone, then following up with individual patches that add the appropriate documentation to each plugin that requires it. The next patch in the set will be one of the plugins that needs documentation, and it will depend on this patch that enables the extension. More details in the ML thread at http://lists.openstack.org/pipermail/openstack-dev/2015-August/073338.html Change-Id: Id05f80c2221c66ed3e2561983654e19bb253c572 --- doc/source/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 1620f5c3fb..43b12eef19 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -78,7 +78,8 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode', 'sphinx.ext.doctest', 'oslosphinx', - 'ext.resources'] + 'ext.resources', + 'stevedore.sphinxext'] todo_include_todos = True