Docs rebuild

This commit is contained in:
Michael DeHaan 2012-04-12 21:38:47 -04:00
commit e5baf5a926
19 changed files with 4 additions and 315 deletions

View file

@ -63,11 +63,6 @@ class SphinxBuilder(object):
app.builder.build_all()
# We also have the HTML man pages to handle now as well
#if os.system("make htmlman"):
# print "There was an error while building the HTML man pages."
# print "Run 'make htmlman' to recreate the problem."
#print "Your docs are now in %s" % outdir
except ImportError, ie:
traceback.print_exc()
except Exception, ex:
@ -80,11 +75,6 @@ class SphinxBuilder(object):
def build_rst_docs():
docgen = SphinxBuilder()
def build_html_manpages():
os.system("make htmlman")
if __name__ == '__main__':
if '-h' in sys.argv or '--help' in sys.argv:
print "This script builds the html documentation from rst/asciidoc sources.\n"
@ -100,7 +90,6 @@ if __name__ == '__main__':
# By default, preform the rst->html transformation and then
# the asciidoc->html trasnformation
build_rst_docs()
build_html_manpages()
if "view" in sys.argv:
import webbrowser