Re: run XSLT on filelist

2012-05-31 Thread Mark Giffin
Thanks Andy (and Harold in another post), I will check these out. I use Saxon because I'm doing XSLT 2.0 and the ant default processor is XSLT 1.0. I know Saxon can be substituted, but I already had my setup running when I found that out. You're right Andy, I use document() to access the XML f

Re: run XSLT on filelist

2012-05-31 Thread Andy Stevens
Hi Mark, On 29/05/12 23:37, Mark Giffin wrote: I'm making a single PDF out of a group of XML documentation files. It's an API reference document and the items will be alphabetized so input order doesn't matter. I want to use a fileset of XML files as input to an XSLT script, something like t

Re: run XSLT on filelist

2012-05-30 Thread Harold Putman
Check out the pathconvert task: http://ant.apache.org/manual/Tasks/pathconvert.html It will let you convert your filelist of XML files into a single string stored in a property. you can then pass that as a parameter to your XSLT. Harold On Tue, May 29, 2012 at 6:37 PM, Mark Giffin wrote: > I'm

run XSLT on filelist

2012-05-29 Thread Mark Giffin
I'm making a single PDF out of a group of XML documentation files. It's an API reference document and the items will be alphabetized so input order doesn't matter. I want to use a fileset of XML files as input to an XSLT script, something like this: I have been accomplishing this in the