This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/xml/pdf.bat
pmoura 0df93ffc6e Logtalk 2.15.6 files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@970 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2004-02-09 14:18:27 +00:00

19 lines
404 B
Batchfile

@ECHO off
SET FOP_PATH=c:\Fop-0.20.5
SET XSLT="lgtpdfa4.xsl"
REM SET XSLT="lgtpdfus.xsl"
ECHO This script converts all .xml files in the current directory to .pdf
ECHO files applying the XSLT transformation defined in the $XSLT file
ECHO using the Apache FOP processor
FOR %%f IN (*.xml) DO %FOP_PATH%\fop.bat -q -xsl %XSLT% -xml %%f -pdf %%f.pdf
REN *.xml.pdf *.pdf
ECHO conversion done
@ECHO on