Subject: RE: multiple input to multiple output
From: Linda van den Brink <lvdbrink@xxxxxxx>
Date: Fri, 10 Dec 1999 12:46:08 +0100
|
Unfortunalely I don't know any programming/scripting languages at all,
except for a bit of Omnimark. I wanted to know if could be done with XSL
itself. If not, maybe I'd best ask my colleague for a perl script?
-----Original Message-----
From: Sebastian Rahtz
[mailto:sebastian.rahtz@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx]
Sent: Friday, December 10, 1999 11:57 AM
To: xsl-list@xxxxxxxxxxxxxxxx
Subject: Re: multiple input to multiple output
Linda van den Brink writes:
>
> Is it possible to use XSL to process all the XML files in a directory
> according to one stylesheet and create one output file for each input
file?
surely this is best done with a conventional script? like
for i in *.xml
do
xslprocess $i foo.xsl
done
or whatever the equivalent in Windows command language is?
or perhaps there are constraints on your system that preclude such a
simple solution? if so, best to state them up front.
sebastian
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|