Re: Increase Java heap within xslt task?

2012-08-06 Thread Mark Giffin
llows From: Mark Giffin To: Ant Users List Cc: Vimil Saju Sent: Sunday, August 5, 2012 7:20 PM Subject: Re: Increase Java heap within xslt task? I assume you mean running the java task with the fork attribute set to true, not the xslt task. Nothing is wrong with using the java

Re: Increase Java heap within xslt task?

2012-08-05 Thread Mark Giffin
attribute to true as you showed in the second approach is the way to go. What is wrong with this approach? From: Mark Giffin To: Ant Users List Sent: Sunday, August 5, 2012 5:53 PM Subject: Increase Java heap within xslt task? How can I increase the memory

Increase Java heap within xslt task?

2012-08-05 Thread Mark Giffin
How can I increase the memory for the xslt task from within Ant 1.8.4, not with an environment variable? I am using Saxon by specifying the Saxon jar classpath in this target: This transform job crashes with "java.lang.OutOfMemoryError: Java heap space" unless I set ANT

Re: run XSLT on filelist

2012-05-31 Thread Mark Giffin
ss the XML files in the hrefs. Using build.xml to trigger the root xsl:template is an interesting trick! Mark On 5/31/2012 1:56 AM, Andy Stevens wrote: 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 refere

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