echo off echo -- XSLT Transformations for Slideshow echo -- This file is a part of http://mcdid.multimania.com/slideshow echo -- Contact : Didier Donsez Didier.Donsez@univ-valenciennes.fr echo 1- Download/Install Xalan-Java (http://xml.apache.org) echo 2- Set the java class path to include xalan.jar and xerces.jar echo 3- Run transform.bat or transform.sh echo -- Xalan options (such as -VALIDATE, -MEDIA) are described by java org.apache.xalan.xslt.Process echo -- Input : the file slideshow.xml and XSLT stylesheet echo on pause rem -- Transform SLIDESHOW in SMIL java org.apache.xalan.xslt.Process -INDENT 2 -PARAM timeoutDelay '5s' -IN slideshow.xml -XSL slideshow2smil.xsl -OUT slideshow.smil rem -- Transform SLIDESHOW in RDFPIC java org.apache.xalan.xslt.Process -INDENT 2 -IN slideshow.xml -XSL slideshow2rdfpic.xsl -OUT slideshow.rdfpic rem -- Transform SLIDESHOW in JavaScript rem java org.apache.xalan.xslt.Process -INDENT 2 -IN slideshow.xml -XSL slideshow2js.xsl -OUT slideshow.js rem -- Transform SLIDESHOW in DHTML (HTML+JavaScript) rem java org.apache.xalan.xslt.Process -INDENT 2 -IN slideshow.xml -XSL slideshow2dhtml.xsl -OUT slideshow.html