How To Generate HTML Files From SDDL Files?
A tool called sddl_to_html is used to generate HTML files from the
original SDDL files.
The tool takes a SDDL file name as input. It then parses the SDDL
file in the jtools_src area. Three output files are generated:
- sddlname_frame.shtml -- which is the frame page for each relation SDDL.
- sddlname.shtml -- which is the modified SDDL file.
- sddlname_help.shtml -- which is the help file.
The tool is written in TCL and must be run under UNIX environment. For example,
the following command will generate HTML files for the file qbs_obset.sddl:
> tclsh sddl_to_html.tcl qbs_obset.sddl
The generated files are: qbs_obset_frame.shtml, qbs_obset.shtml and
qbs_obset_help.shtml.
Back