manila/doc/ext/manila_autodoc.py

13 lines
233 B
Python
Raw Normal View History

2013-08-08 10:34:06 -04:00
import gettext
import os
gettext.install('manila')
2013-08-08 10:34:06 -04:00
from manila import utils
2013-08-08 10:34:06 -04:00
def setup(app):
print "**Autodocumenting from %s" % os.path.abspath(os.curdir)
2013-09-17 12:21:17 +03:00
rv = utils.execute('./generate_autodoc_index.sh')
2013-08-08 10:34:06 -04:00
print rv[0]