You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2013/08/04 02:58:49 UTC

[2/2] git commit: docs: Use :mod: tags for modules.

docs: Use :mod: tags for modules.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/18211fac
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/18211fac
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/18211fac

Branch: refs/heads/trunk
Commit: 18211fac3cab22a098527fb9c3c9f315f20d9bde
Parents: e061798
Author: Tomaz Muraus <to...@apache.org>
Authored: Sun Aug 4 02:32:14 2013 +0200
Committer: Tomaz Muraus <to...@apache.org>
Committed: Sun Aug 4 02:32:14 2013 +0200

----------------------------------------------------------------------
 contrib/generate_provider_feature_matrix_table.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/18211fac/contrib/generate_provider_feature_matrix_table.py
----------------------------------------------------------------------
diff --git a/contrib/generate_provider_feature_matrix_table.py b/contrib/generate_provider_feature_matrix_table.py
index d4ac4d4..afdcfb7 100755
--- a/contrib/generate_provider_feature_matrix_table.py
+++ b/contrib/generate_provider_feature_matrix_table.py
@@ -218,8 +218,9 @@ def generate_supported_providers_table(provider_matrix):
     data.append(header)
     for provider, values in provider_matrix.items():
         name_str = '`%s`_' % (values['name'])
+        module_str = ':mod:`%s`' % (values['module'])
         class_str = ':class:`%s`' % (values['class'])
-        row = [name_str, values['constant'], values['module'], class_str]
+        row = [name_str, values['constant'], module_str, class_str]
         data.append(row)
 
     result = generate_rst_table(data)