view update-xml-to-html.sh @ 372:c3ab8a10dacb misc

Don't upload XML source.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 10 Feb 2024 02:17:38 +0200
parents 32a5a3a88f0a
children
line wrap: on
line source

#!/bin/sh
XML="$1"
HTML=`echo "$XML"|sed "s/\.xml$/.html/"`
echo "Converting $XML to $HTML ..."
xsltproc --stringparam html.stylesheet "/~ccr/ggrtf/html/manual.css" \
	--output "$HTML" \
	/usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl "$XML" &&	\
	tidy -w 200 -utf8 -asxhtml -i -m "$HTML"

if test -e "$HTML"; then
	scp "$HTML" ccr@tnsp.org:public_html/bat/
fi