|
|
@ -71,16 +71,19 @@ def main():
|
|
|
|
run_through_template("tmp/howto.rst")
|
|
|
|
run_through_template("tmp/howto.rst")
|
|
|
|
rst2html("tmp/full_spec.rst", "gen/specification.html")
|
|
|
|
rst2html("tmp/full_spec.rst", "gen/specification.html")
|
|
|
|
rst2html("tmp/howto.rst", "gen/howtos.html")
|
|
|
|
rst2html("tmp/howto.rst", "gen/howtos.html")
|
|
|
|
|
|
|
|
if "--nodelete" not in sys.argv:
|
|
|
|
cleanup_env()
|
|
|
|
cleanup_env()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if len(sys.argv) > 1:
|
|
|
|
if len(sys.argv) > 1 and sys.argv[1:] != ["--nodelete"]:
|
|
|
|
# we accept no args, so they don't know what they're doing!
|
|
|
|
# we accept almost no args, so they don't know what they're doing!
|
|
|
|
print "gendoc.py - Generate the Matrix specification as HTML."
|
|
|
|
print "gendoc.py - Generate the Matrix specification as HTML."
|
|
|
|
print "Usage:"
|
|
|
|
print "Usage:"
|
|
|
|
print " python gendoc.py"
|
|
|
|
print " python gendoc.py [--nodelete]"
|
|
|
|
print ""
|
|
|
|
print ""
|
|
|
|
print "The specification can then be found in the gen/ folder."
|
|
|
|
print "The specification can then be found in the gen/ folder."
|
|
|
|
|
|
|
|
print ("If --nodelete was specified, intermediate files will be "
|
|
|
|
|
|
|
|
"present in the tmp/ folder.")
|
|
|
|
print ""
|
|
|
|
print ""
|
|
|
|
print "Requirements:"
|
|
|
|
print "Requirements:"
|
|
|
|
print " - This script requires Jinja2 and rst2html (docutils)."
|
|
|
|
print " - This script requires Jinja2 and rst2html (docutils)."
|
|
|
|