Pass Quotes to arg line

2008-07-15 Thread Peters, John
Hello, I'm trying to pass quotes to the arg line for a parameter that has spaces in it. I've tried " but that didn't seem to work. Also tried "" \". Any suggestions? Blue Cross Blue Shield of Florida, Inc., and its subsidiary and affiliate companies are not responsible for err

Trouble executing python script in Unix

2008-07-15 Thread Keith Hughitt
Hi all, I've just recently started using Ant on Linux, and so far it has been really amazing. I've run into one problem, however, that I haven't been able to get past. I would like to call an external script (a python script to minimize some JavaScript files), but have not been able to get it to

Re: failonerror and forking

2008-07-15 Thread Gilbert Rebhan
Gilbert Rebhan schrieb: [EMAIL PROTECTED] schrieb: Hello everybody, I am running a forked task as part of my ant job using the following arguments. When I run the job, ant ends with "BUILD SUCCESSFULL" even if there was an exception raised in the forked task. But I would need the job to e

Re: failonerror and forking

2008-07-15 Thread Gilbert Rebhan
[EMAIL PROTECTED] schrieb: Hello everybody, I am running a forked task as part of my ant job using the following arguments. When I run the job, ant ends with "BUILD SUCCESSFULL" even if there was an exception raised in the forked task. But I would need the job to end with an error code. Has an

Re: Ivy problem publishing with a forced dependency version

2008-07-15 Thread Maarten Coene
Which version of Ivy do you use? Could you also send us the ivy.xml file with the exact revisions and configurations in it? regards, Maarten - Original Message From: Patrick Aikens <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Sent: Tuesday, July 15, 2008 9:15:56 PM Subject: Re: Ivy prob

Re: Question about scp

2008-07-15 Thread Reinhardt Christiansen
Actually, I'd love to participate in something like that. But, unfortunately, I simply don't have the time. I'm not sure if I have quite enough skill either. But I might check in again in a few months to ask about volunteer opportunities, assuming things slow down a bit by then. -- Rhino And

RE: Question about scp

2008-07-15 Thread Anderson, Rob (Global Trade)
You could write a selector if you would like. You are probably not the first to have a need/desire for this functionality. The Ant project is a great example of users filling their needs while contributing to make the project better. I encourage you to participate. Some would even call it fun :)

Re: How can I pass each filename of a fileset to a macrodef?

2008-07-15 Thread Matt Benson
ant-contrib sounds like what you want. HTH, Matt --- Lars Monsees <[EMAIL PROTECTED]> wrote: > Hi, > > I couldn´t find a better subject for describing the > problem that I have. It seems quite tricky to me... > > > I have a directory with multiple files of which I > don´t know the exact name

How can I pass each filename of a fileset to a macrodef?

2008-07-15 Thread Lars Monsees
Hi, I couldn´t find a better subject for describing the problem that I have. It seems quite tricky to me... I have a directory with multiple files of which I don´t know the exact names like this: yo1234.order yo1236.order 8211_020_yo1234.pdf 8211_040_yo1236.pdf As you can see, th

Re: Question about scp

2008-07-15 Thread Reinhardt Christiansen
I see. Well, it's nice to know that it wasn't a case of me being stupid. It's a shame that it has to be that complicated to copy a tree from the remote Linux machine to my PC but that's life, I suppose. Thanks for the information. -- Rhino Anderson, Rob (Global Trade) wrote: You need to use

failonerror and forking

2008-07-15 Thread rainer . luedtke
Hello everybody, I am running a forked task as part of my ant job using the following arguments. When I run the job, ant ends with "BUILD SUCCESSFULL" even if there was an exception raised in the forked task. But I would need the job to end with an error code. Has anybody ever come across this

Re: LDAP ant tasks

2008-07-15 Thread Matteo Centonza
Hi, have a look at novell's jldap code: http://www.openldap.org/devel/cvsweb.cgi?cvsroot=JLDAP You can use Ldif2Ldap.java in the samples directory: http://developer.novell.com/documentation/samplecode/jldap_sample/dsml_ldif/Ldif2Ldap.java.html to export an ldif file to a remote ldap server. A

Re: Creating file containing current date in its filename

2008-07-15 Thread Kevin Jackson
Hi, You can use the Tstamp [1] task to store the date in a property, then read this in the zip task: Thanks, Kev [1] http://ant.apache.org/manual/CoreTasks/tstamp.html - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Creating file containing current date in its filename

2008-07-15 Thread Andreas Bakurov
I am trying to figure out if it possible to generate a zip file which name will contain a current date , for example archive_15jul08.zip will be created at 15 July, 2008 and by running the same script at 10 August, 2008 the file name will be archive_10aug2008.zip Thank you in advance.