#!/bin/sh
CTAN=ftp://ftp.dante.de/tex-archive/
echo '
The TeX System'
echo 'The TeX System
'
for i in *; do
if [ $i = help ]; then
echo "$i
"
echo '
'
continue
fi
if [ -d $i ]; then
echo "$i
"
echo '
'
for j in $i/*.html $i/*.html.gz $i/*.dvi $i/*.ps $i/*.tex $i/*.dvi.gz $i/*.ps.gz $i/*.tex.gz; do
test -f $j && echo "- `basename $j`"
done
for j in $i/*; do
test -d $j || continue
test -f `echo $j/*.html | sed 's/ .*//'` ||
test -f `echo $j/*.html.gz | sed 's/ .*//'` ||
test -f `echo $j/*.ps.gz | sed 's/ .*//'` ||
test -f `echo $j/*.dvi.gz | sed 's/ .*//'` ||
test -f `echo $j/*.dvi | sed 's/ .*//'` ||
test -f `echo $j/*.ps | sed 's/ .*//'` || continue
if test -f $j/index.html; then
echo "
- `basename $j`"
else
echo '
- '`basename $j`
echo '
'
for k in $j/xyguide-html $j/index.html $j/index.html.gz $j/*.dvi $j/*.ps $j/*.tex $j/*.dvi.gz $j/*.ps.gz $j/*.tex.gz; do
if test -f $k/index.html; then
echo "- `basename $k`"
else
test -f $k || continue
echo "
- `basename $k`"
fi
done
echo '
'
fi
done
echo '
'
fi
done
if test -w help/Catalogue/catalogue.html && grep '\.\./\.\./' help/Catalogue/catalogue.html >/dev/null 2>&1; then
echo "Changing CTAN location from local to $CTAN in catalogue.html..." >&2
sed 's@\.\./\.\./@'"$CTAN"@g help/Catalogue/catalogue.html > .tmp$$ || rm -f .tmp$$
test -f .tmp$$ && cat .tmp$$ > help/Catalogue/catalogue.html
rm -f .tmp$$
fi
if test -w help/Catalogue/catalogue.html && grep 'http://www.ausflag.com.au/ausflag/images/' help/Catalogue/catalogue.html >/dev/null 2>&1; then
echo "Changing location for 93-2.gif and 95-3.gif from www.ausflag.com.au to local in catalogue.html..." >&2
sed 's@http://www.ausflag.com.au/ausflag/images/@@g' help/Catalogue/catalogue.html > .tmp$$ || rm -f .tmp$$
test -f .tmp$$ && cat .tmp$$ > help/Catalogue/catalogue.html
rm -f .tmp$$
fi
exit 0