Re: how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread Gilbert Rebhan
Hi, david wrote: Hello Steve, this should be in DZONE snippets. that thread reminds me of another thread = http://marc.info/?l=ant-user&m=117791665300047&w=2 /* I thought the original poster was asking for "... the next weeks start date and last week start date ..." because of that i sugge

Re: Exec is failing, command line works fine

2007-10-02 Thread Robert Clark
On Tuesday October 2, 2007, "Steve Middleton" <[EMAIL PROTECTED]> wrote: > As for the environment variables, the documentation for "emake" is > lacking, but it doesn't mention anything about environment > variables, so I'm not entirely sure. I've contacted support for > EurekaLog, but they simpl

RE: Exec is failing, command line works fine

2007-10-02 Thread Steve Middleton
- what directory is Ant executing the command in? Is it the same as from the command line? I've already checked this one. - How is Ant passing the command line args? Is it the same as the shell would? I've tried both methods i.e. like the following: Either way, I get the sa

RE: Exec is failing, command line works fine

2007-10-02 Thread Steve Middleton
Sorry, in regards to my last post, please replace "psbase.mak" with "mymakefile.mak" -Original Message- From: Steve Middleton [mailto:[EMAIL PROTECTED] Sent: October 2, 2007 2:14 PM To: 'Ant Users List' Subject: Exec is failing, command line works fine Hi everyone, I'm having a problem

Re: Exec is failing, command line works fine

2007-10-02 Thread Robert Clark
On Tuesday October 2, 2007, "Steve Middleton" <[EMAIL PROTECTED]> wrote: > I'm having a problem with an executable that seems to work fine > from the command line, but does not work with the ant "exec" task. When I run into this, I generally look at 3 things: - what directory is Ant executing

Exec is failing, command line works fine

2007-10-02 Thread Steve Middleton
Hi everyone, I'm having a problem with an executable that seems to work fine from the command line, but does not work with the ant "exec" task. If I type this into the command line, it works no problem: emake -B -f mymakefile.mak But if I use the following build.xml file with Ant:

Accessing Properties from Sub-Projects

2007-10-02 Thread Christoph Krammer
Hello everybody, I use Ant together with a Test framework for Web applications (Canoo WebTest). The main structure of the Ant files is the following: main build.xml: Excerpt from the webtest.xml: ...

Re: Capturing Ant output in a way similar to Unix pipes

2007-10-02 Thread Dominique Devienne
On 10/2/07, Holger Rauch <[EMAIL PROTECTED]> wrote: > Is it possible to use the output of one Ant task as the input of another Ant > task (some sort of piping mechanism as it exists in Unix) without the usage > of intermediate temporary files? If so, how can this be done? > Is it possible to acces

Capturing Ant output in a way similar to Unix pipes

2007-10-02 Thread Holger Rauch
Hi to all list members, I've looked in the Ant manual and googled about the questions mentioned below but unfortunately haven't found anything useful. Is it possible to use the output of one Ant task as the input of another Ant task (some sort of piping mechanism as it exists in Unix) without the

RE: AW: FOP task, what changed from 0.92beta to 0.94?

2007-10-02 Thread cknell
Thanks. I'll try over there. -- Charles Knell [EMAIL PROTECTED] - email -Original Message- From: <[EMAIL PROTECTED]> Sent: Tue, 2 Oct 2007 15:30:08 +0200 To: Subject: AW: FOP task, what changed from 0.92beta to 0.94? The fop task is not maintained by the Ant team. I thi

Re: Need to compile VB project

2007-10-02 Thread David Weintraub
I am still confused with what you need: * Do you have an ant script that does a whole bunch of stuff, and there is this one compile that also needs to be done, but you're not quite sure how to do it? * Or, someone told you that Ant is the way to go, and you need to rewrite how you do your build,

AW: FOP task, what changed from 0.92beta to 0.94?

2007-10-02 Thread Jan.Materne
The fop task is not maintained by the Ant team. I think it part of FOP itself. http://xmlgraphics.apache.org/fop/trunk/anttask.html Jan >-Ursprüngliche Nachricht- >Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Gesendet: Dienstag, 2. Oktober 2007 15:08 >An: user@ant.apache.org >Betr

FOP task, what changed from 0.92beta to 0.94?

2007-10-02 Thread cknell
I recently downloaded FOP version 0.94, upgrading from 0.92beta. My build.xml file now fails when I execute the fop task, giving this error: build.xml:105: java.lang.NoClassDefFound Error: org/apache/xmlgraphics/util/Service It seems that something has changed in FOP that breaks the Ant FOP task

RE: how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread Rebhan, Gilbert
Hi, -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 02, 2007 2:36 PM To: Ant Users List Subject: Re: how can I copy a directory of files to lower case equivalents? /* The ant-approved way would be a with an appropriate mapper listed as a nes

Re: how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread david
Hello Steve, this should be in DZONE snippets. Steve Loughran wrote .. > Alx G wrote: > > Hi, > > > > Does anyone know if there's anything in Ant that can copy files from > a > > directory to another directory but change all the file names to lower > case? > > > > e.g. > > > > working/some_fold

Re: how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread Steve Loughran
Alx G wrote: Hi, Does anyone know if there's anything in Ant that can copy files from a directory to another directory but change all the file names to lower case? e.g. working/some_folder/etc/Blah.jpg => dist/some_folder/etc/blah.jpg ... etc. for a whole load of files in various directories.

RE: how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread Rebhan, Gilbert
Hi, -Original Message- From: Alx G [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 02, 2007 1:10 PM To: user@ant.apache.org Subject: how can I copy a directory of files to lower case equivalents? /* Hi, Does anyone know if there's anything in Ant that can copy files from a director

RE: how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread Rebhan, Gilbert
sorry forgot one line, the first post renames dirnames also, so one has to use =

Re: how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread david
Hello Alx, assuming you are on some type of NIX system (Windows doesn't car about case) the following is untested but you might want to twiddle around with it or this may get you a starting point in another direction: Alx G wrote .. > > Hi, > > Does anyone know if there's anything

RE: how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread Rebhan, Gilbert
Hi, -Original Message- From: Alx G [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 02, 2007 1:10 PM To: user@ant.apache.org Subject: how can I copy a directory of files to lower case equivalents? /* Hi, Does anyone know if there's anything in Ant that can copy files from a directory

how can I copy a directory of files to lower case equivalents?

2007-10-02 Thread Alx G
Hi, Does anyone know if there's anything in Ant that can copy files from a directory to another directory but change all the file names to lower case? e.g. working/some_folder/etc/Blah.jpg => dist/some_folder/etc/blah.jpg ... etc. for a whole load of files in various directories. Perhaps there

Re: No class Def Error

2007-10-02 Thread Steve Loughran
Ramu Sethu wrote: Hi all 'Tried my best to solve this problem on my own, but i couldn't solve it. so asking the experts I will summarize again my problem. We have a class path ref which refers to jboss-all-client jar and other dependent jars. I am using this class path ref in two places In junit

Re: Optional scp task does not accept remote paths with the '@' symbol in them

2007-10-02 Thread Steve Loughran
Anderson, Rob (Global Trade) wrote: Shame, shame, shame IBM. You should know better. :) -Rob A -Original Message- From: TSD Contractor2 [mailto:[EMAIL PROTECTED] Sent: Friday, September 28, 2007 5:20 AM To: Ant Users List Subject: RE: Optional scp task does not accept remote paths

Re: SSH Authentication Errors

2007-10-02 Thread Steve Loughran
Michael Giroux wrote: Thought you might like to know -- the problem turns out to be user error. I was watching the developer use the script, and I assumed that when he entered the password for the target useid, that he had configured the script to use the userid associated w/ the password. As it

Re: doing antcalls in parallel

2007-10-02 Thread Steve Loughran
weiji wrote: Hi, I have a few targets set up related to handling Java code. After the code is compiled, I run JUnit tests and generate Javadocs. Kudos to "Ant in Action" with the very handy junitreport setup. youre welcome :) My question is whether it would be possible to run the target

Re: Need to compile VB project

2007-10-02 Thread Steve Loughran
Sayed, Irfan (Irfan) wrote: Thanks for your reply. I have gone through the URL but did not get much. Need to execute following command in Ant' build.xml M:\cc_mv_test\v_agentapi\Develop\VB Server>"c:\Program Files\Microsoft Visual St udio\VB98\VB6.EXE" -make Moagent32.vbp c:\test.dll -out c:\bu