Logtalk 2.14.3 release files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@589 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2002-09-14 18:14:17 +00:00
parent 00c4895761
commit 4b88cd24f9
89 changed files with 445 additions and 440 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/sh
FOP_PATH="/Applications/Fop-0.20.2"
FOP_PATH="/Applications/fop-0.20.4"
XSLT="lgtpdfa4.xsl"
@@ -10,11 +10,11 @@ echo files applying the XSLT transformation defined in the $XSLT file
echo using the Apache FOP processor
echo
foreach file (*.xml)
for file in *.xml; do
echo converting $file
name="`expr "$file" : '\(.*\)\.[^./]*$' \| "$file"`"
eval sh $FOP_PATH/fop.sh -xsl $XSLT -xml $file -pdf $name.pdf
end
eval sh $FOP_PATH/fop.sh -q -xsl $XSLT -xml $file -pdf $name.pdf
done
echo
echo conversion done