XSLTools

scripts/xslform_schema.py

371:f2710049be3e
2005-11-01 paulb [project @ 2005-11-01 16:47:22 by paulb] Added affected element information to selector-field annotations.
     1 #!/usr/bin/env python     2      3 "Prepare a template schema."     4      5 import XSLForms.Prepare     6 import sys     7      8 if __name__ == "__main__":     9     try:    10         input_xml = sys.argv[1]    11         output_xml = sys.argv[2]    12     except IndexError:    13         print "Please specify a template and an schema filename."    14         print "For example:"    15         print "xslform_schema.py template.xhtml schema.xml"    16         sys.exit(1)    17     18     XSLForms.Prepare.make_schema(input_xml, output_xml)    19     20 # vim: tabstop=4 expandtab shiftwidth=4