Project

General

Profile

root / trunk / doc / manual / gen_html.sh @ 705

1
#!/bin/bash
2

    
3
python gen_cli_doc.py > appendix_cli.tex
4
python gen_config_doc.py > appendix_conf.tex
5
python gen_probe_doc.py > appendix_probes.tex
6

    
7
latex2html -split 4 -dir ../../html/manual -show_section_numbers -local_icons -toc_depth 3 -link 2 -top_navigation -bottom_navigation manual.tex
8
tar cvzf ../../html/downloads/haizea-manual-multiple.tar.gz ../../html/manual
9

    
10
latex2html -split 0 -no_navigation -dir ../../html/manual_single -show_section_numbers -local_icons -toc_depth 3 manual.tex 
11
tar cvzf ../../html/downloads/haizea-manual-single.tar.gz ../../html/manual_single
12
#tidy --clean y --doctype "transitional" --output-xhtml y --indent "auto" --wrap "90" --char-encoding "utf8" --logical-emphasis y
13

    
14
cp manual.pdf ../../html/haizea_manual.pdf
15

    
16

    
17