AW: Disable Static content

2008-03-03 Thread Jan.Materne
You could use the external xml tasks for manipulating. You could use . You could use with a nested to generate the live file from a template. Jan > -Ursprüngliche Nachricht- > Von: Mevi [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 3. März 2008 23:11 > An: user@ant.apache.org > Betre

Problem with ListModule

2008-03-03 Thread Ross Camara
I'm trying to use the ant task 'listmodule' to retrieve a listing of all the modules in my repository in my build scripts. However upon execution of the task only a portion of all the modules are listed. I'm wondering if anyone one has some suggestions why I'm seeing this strange behavior. This i

Disable Static content

2008-03-03 Thread Mevi
Hi, In our project we would like to disable file serving. Via RAD one can edit the Web Deployment Descriptor. Under the extensions tab there is a check box for "File serving enabled" . What happens under the covers is that the ibm-web-ext.xmi file is modified. The attribute is for fileServingEnabl

Re: How to display the classpath that Ant is using to launch the java task?

2008-03-03 Thread Fred Janon
Hi Garrett, Thanks for the answer, the TopAntTips got the ansmwer for my problem. Following up on my ant java target question, the "fork" option for those who use ant to run java apps seem to be important when specifying the classpath: with fork='true' in the java target, here is the classpath a

Re: task won't run in cruise control but runs from windows command prompt...

2008-03-03 Thread Tim-at-Startupgeek
Greetings - Just ran into this myself with our CC environment - your question about 'why this will run from the command prompt but not from Cruise Control' is something I just solved for us. Check the system account that Cruise Control is running under. We're running CCNet under Windows ourse

Verifying checksum of files after ftp'ing to remote server

2008-03-03 Thread Vijay Aravamudhan
hi, In our build process, some files are ftp'ed onto a remote server. I would like to incorporate a step that can be used to verify that the ftp process worked correctly - by verifying the checksum of the local file(s) to the corresponding remote one(s). Could someone please help with how this

Re: compare folder/files

2008-03-03 Thread Gilbert Rebhan
Md. Jahidul Hasan schrieb: > Hi, > > I have a target which upload folders/files to one location and I need to > compare the content after upload, how to proceed ? uploaded part has been > done by using copy and fileset task. Can't find any good solution for > compare. see http://ant.apache.org/m

AW: Antwort: How to execute a target multiple times, with different parameters

2008-03-03 Thread Jan.Materne
Jan > -Ursprüngliche Nachricht- > Von: leondz [mailto:[EMAIL PROTECTED] > Gesendet: Montag, 3. März 2008 14:50 > An: user@ant.apache.org > Betreff: Re: Antwort: How to execute a target multiple times, > with different parameters > > > Hi, > > This approach is working really we

Antwort: Re: Antwort: How to execute a target multiple times, with different parameters

2008-03-03 Thread Karl-Friedrich . Heintz
Hi, i think you should take < param name="questions" value="QA2006_testset.xml" /> < param name="maxdocs" value="200" /> not as 'param' but as normal properties. Then they are visible within your target "get-docs-all" and all called targets. Karl leondz <[EMAIL PROTECTED]>

RE: task, inheritAll=false and ant.version property

2008-03-03 Thread Keith Hatton
Thanks for the info Peter. Keith -Original Message- From: Peter Reilly [mailto:[EMAIL PROTECTED] Sent: 03 March 2008 13:17 To: Ant Users List Subject: Re: task, inheritAll=false and ant.version property This is a bug in ant 1.7.0, it has been fixed and will be in the soon to be relea

Re: Antwort: How to execute a target multiple times, with different parameters

2008-03-03 Thread leondz
Hi, This approach is working really well! I've found that the target executing contains a lot of repeated code, though; is it possible to nest parameters? For example, I have: < param name="questions" value="QA2006_testset.xml" /> < param name="engine

Re: task, inheritAll=false and ant.version property

2008-03-03 Thread Peter Reilly
This is a bug in ant 1.7.0, it has been fixed and will be in the soon to be released 1.7.1. https://issues.apache.org/bugzilla/show_bug.cgi?id=42263 Peter On Mon, Mar 3, 2008 at 9:53 AM, Keith Hatton <[EMAIL PROTECTED]> wrote: > It seems that something has changed between Ant 1.6.2 and 1.7.0 in th

Re: compare folder/files

2008-03-03 Thread Dimitris Mouchritsas
Md. Jahidul Hasan wrote: Md. Jahidul Hasan wrote: Hi, I have a target which upload folders/files to one location and I need to compare the content after upload, how to proceed ? uploaded part has been done by using copy and fileset task. Can't find any good solution for compare. Hasan

Re: compare folder/files

2008-03-03 Thread Md. Jahidul Hasan
> Md. Jahidul Hasan wrote: >> Hi, >> >> I have a target which upload folders/files to one location and I need to >> compare the content after upload, how to proceed ? uploaded part has >> been >> done by using copy and fileset task. Can't find any good solution for >> compare. >> >> Hasan >> >> >

Re: compare folder/files

2008-03-03 Thread Dimitris Mouchritsas
Md. Jahidul Hasan wrote: Hi, I have a target which upload folders/files to one location and I need to compare the content after upload, how to proceed ? uploaded part has been done by using copy and fileset task. Can't find any good solution for compare. Hasan ---

compare folder/files

2008-03-03 Thread Md. Jahidul Hasan
Hi, I have a target which upload folders/files to one location and I need to compare the content after upload, how to proceed ? uploaded part has been done by using copy and fileset task. Can't find any good solution for compare. Hasan --

task, inheritAll=false and ant.version property

2008-03-03 Thread Keith Hatton
It seems that something has changed between Ant 1.6.2 and 1.7.0 in the way the ant.version property is handled when another build file is invoked using the task. Given the following files: main-build.xml: Ant version is ${ant.version} sub-build.xml: Ant