diff options
| author | root <root@tonbuntu> | 2010-11-08 20:38:21 -0800 |
|---|---|---|
| committer | root <root@tonbuntu> | 2010-11-08 20:38:21 -0800 |
| commit | b78364281dc5d5090faf6da8fbdddf90d60e514b (patch) | |
| tree | f359f4cf50498b08381367e88ecbed4b9b59b664 /doc/ext | |
| parent | 2a81e25f89c761582d8cd575566f68d3ed5754ed (diff) | |
| parent | 0131600277f5a2e7183640e1f0d9886315933c1a (diff) | |
merge in trunk
Diffstat (limited to 'doc/ext')
| -rw-r--r-- | doc/ext/nova_autodoc.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/ext/nova_autodoc.py b/doc/ext/nova_autodoc.py new file mode 100644 index 000000000..39aa2c2cf --- /dev/null +++ b/doc/ext/nova_autodoc.py @@ -0,0 +1,9 @@ +import os + +from nova import utils + +def setup(app): + rootdir = os.path.abspath(app.srcdir + '/..') + print "**Autodocumenting from %s" % rootdir + rv = utils.execute('cd %s && ./generate_autodoc_index.sh' % rootdir) + print rv[0] |
