Logtalk 2.9.3 files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@350 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2002-02-08 20:03:20 +00:00
parent 89b034ce45
commit a69a8e9a3f
8 changed files with 1302 additions and 0 deletions

23
Logtalk/xml/html.sh Normal file
View File

@@ -0,0 +1,23 @@
#!/bin/sh
XT_PATH="."
SAX_PATH="."
XP_PATH="."
XSLT="lgthtml.xsl"
echo
echo This script converts all .xml files in the current directory to .html
echo files applying the XSLT transformation defined in the $XSLT file
echo using the James Clark XT XSLT Java processor
echo
foreach file (*.xml)
echo converting $file
name="`expr "$file" : '\(.*\)\.[^./]*$' \| "$file"`"
eval java -cp ${XT_PATH}/xt.jar:${SAX_PATH}/sax.jar:${XP_PATH}/xp.jar -Dcom.jclark.xsl.sax.parser=com.jclark.xml.sax.CommentDriver com.jclark.xsl.sax.Driver $file $XSLT $name.html
end
echo
echo conversion done
echo