Re: arg and jvmarg

2008-04-16 Thread Dave Pawson
On 16/04/2008, Steve Loughran <[EMAIL PROTECTED]> wrote: > > I've given up with the xslt task now; > > Need it to handle a different parser (xercesImpl) for xIncludes > > and Apache resolver.jar for catalogs - I don't think > > the xslt task can hack that? > > > > -you should be using xercesImpl

Re: arg and jvmarg

2008-04-16 Thread Steve Loughran
Dave Pawson wrote: On 16/04/2008, Steve Loughran <[EMAIL PROTECTED]> wrote: Saxon XSLT processor. -o filename is the parameter. I'd always thought of it as one param. Name (-o) value (filename) Ant seems to view it differently. Its two separate parameters when you break up the command line b

Re: arg and jvmarg

2008-04-16 Thread Dave Pawson
On 16/04/2008, Steve Loughran <[EMAIL PROTECTED]> wrote: > > Saxon XSLT processor. > > -o filename is the parameter. I'd always thought of it as one param. > > Name (-o) > > value (filename) > > Ant seems to view it differently. > > > > Its two separate parameters when you break up the command li

Re: arg and jvmarg

2008-04-16 Thread Steve Loughran
Dave Pawson wrote: On 11/04/2008, Rick Genter <[EMAIL PROTECTED]> wrote: > I seem to have found just the opposite? > line="-o filename" works fine, but as was pointed out, > if I want to use value I have to use two arg elements? Your example has 2 arguments: '-o' and 'filename'. I recommen

RE: arg and jvmarg

2008-04-11 Thread Rick Genter
> From: Dave Pawson [mailto:[EMAIL PROTECTED] > Sent: Friday, April 11, 2008 9:50 AM > To: Ant Users List > Subject: Re: arg and jvmarg > > Saxon XSLT processor. > -o filename is the parameter. I'd always thought of it as one param. > Name (-o) > value (

Re: arg and jvmarg

2008-04-11 Thread Dave Pawson
On 11/04/2008, Rick Genter <[EMAIL PROTECTED]> wrote: > > I seem to have found just the opposite? > > line="-o filename" works fine, but as was pointed out, > > if I want to use value I have to use two arg elements? > > > Your example has 2 arguments: '-o' and 'filename'. I recommend reading >

RE: arg and jvmarg

2008-04-11 Thread Rick Genter
> From: Dave Pawson [mailto:[EMAIL PROTECTED] > Sent: Friday, April 11, 2008 7:35 AM > To: Ant Users List > Subject: Re: arg and jvmarg > > On 11/04/2008, Rick Genter <[EMAIL PROTECTED]> wrote: > > > From: Dave Pawson [mailto:[EMAIL PROTECTED] > >

Re: arg and jvmarg

2008-04-11 Thread Dave Pawson
On 11/04/2008, Rick Genter <[EMAIL PROTECTED]> wrote: > > From: Dave Pawson [mailto:[EMAIL PROTECTED] > > Sent: Friday, April 11, 2008 1:02 AM > > To: Ant Users List > > Subject: Re: arg and jvmarg > > > > > Thanks Joe. I can see the logic, althou

RE: arg and jvmarg

2008-04-11 Thread Rick Genter
> From: Dave Pawson [mailto:[EMAIL PROTECTED] > Sent: Friday, April 11, 2008 1:02 AM > To: Ant Users List > Subject: Re: arg and jvmarg > > Thanks Joe. I can see the logic, although 'line=' seems to > make more sense from > a user view? "-o filenam

Re: arg and jvmarg

2008-04-11 Thread Dave Pawson
On 11/04/2008, Joe Schmetzer <[EMAIL PROTECTED]> wrote: > is interpreted as a single argument, even if "x" happens > to contain spaces. In your case, you actually have two arguments: "-o" and > "filename", so you need to specify it like this: > > > Thanks Joe. I can see the logic, altho

Re: arg and jvmarg

2008-04-11 Thread Joe Schmetzer
On Fri, April 11, 2008 8:42 am, Dave Pawson wrote: > http://ant.apache.org/manual/using.html#arg > > mentions using > For an xslt task I want to specify > -o filename > > Trying this > > > > > The single '-l' works OK, > but the -o option causes a problem with the processor. > > How can I s