2006-09-04 10:26:34 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
cd ../yo
|
|
|
|
|
|
|
|
echo 1>&2 "
|
|
|
|
Construct html files from `pwd`.
|
|
|
|
Converting .yo to .html
|
|
|
|
"
|
|
|
|
|
|
|
|
yodl2html --no-warnings -l3 cplusplus
|
|
|
|
|
2007-07-30 12:47:25 +02:00
|
|
|
if [ $? != 0 ] ; then
|
|
|
|
echo html conversion failed
|
|
|
|
exit 1
|
|
|
|
fi
|
2006-09-04 10:26:34 +02:00
|
|
|
|
|
|
|
echo 1>&2 "
|
|
|
|
Moving .html files to ../html
|
|
|
|
"
|
|
|
|
|
|
|
|
mv *.html ../html
|
|
|
|
|
|
|
|
cd ../html
|
|
|
|
|
|
|
|
echo 1>&2 "
|
|
|
|
Removing extra blank lines around <pre> ... </pre> tags.
|
|
|
|
"
|
|
|
|
|
|
|
|
../bin/patchhtmlpre
|
|
|
|
|
|
|
|
echo 1>&2 "
|
|
|
|
Constructing contentspage in `pwd`.
|
|
|
|
"
|
|
|
|
|
|
|
|
../bin/htmlcontentspage > contents.html
|
|
|
|
|
|
|
|
echo 1>&2 "
|
|
|
|
Constructing the html-index.
|
|
|
|
"
|
|
|
|
|
|
|
|
../bin/htmlindex # construct index page
|
|
|
|
|
2007-07-30 12:47:25 +02:00
|
|
|
if [ $? != 0 ] ; then
|
|
|
|
echo index construction not without errors
|
|
|
|
exit 1
|
|
|
|
fi
|
2006-09-04 10:26:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
echo 1>&2 "
|
|
|
|
Removing <index ...> entries from cplusplusXX.html files.
|
|
|
|
"
|
|
|
|
|
|
|
|
../bin/patchhtmlindexentries
|
|
|
|
|
|
|
|
echo 1>&2 "
|
|
|
|
Ready to zip it up
|
|
|
|
"
|