Updated to Logtalk 2.9.1
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@211 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
21
Logtalk/xml/script.bat
Normal file
21
Logtalk/xml/script.bat
Normal file
@@ -0,0 +1,21 @@
|
||||
@ECHO off
|
||||
|
||||
SET JAVA_HOME=c:\jdk1.3
|
||||
|
||||
SET XT_PATH=c:\xt
|
||||
SET SAX_PATH=c:\xt
|
||||
SET XP_PATH=c:\xt
|
||||
|
||||
SET XSLT="lgthtml.xsl"
|
||||
|
||||
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
|
||||
|
||||
FOR %%f IN (*.xml) DO %JAVA_HOME%\bin\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 %%f %XSLT% %%f.html
|
||||
|
||||
REN *.xml.html *.html
|
||||
|
||||
ECHO conversion done
|
||||
|
||||
@ECHO on
|
||||
Reference in New Issue
Block a user