RE: Parsing directory names

2006-10-05 Thread Suzanne Dorman
The user specifies the version. If they specify 1.1, I need to get the directories of 1.0 and 1.1 but not 1.1.1 and 2.0. If they specify 1.1.1, I have to get 1.0, 1.1, and 1.1.1. So it's not as simple as just using the version they specify, I have to add some logic to figure out what versions ar

Re: Parsing directory names

2006-10-05 Thread Matt Benson
--- Dominique Devienne <[EMAIL PROTECTED]> wrote: > On 10/4/06, Suzanne Dorman > <[EMAIL PROTECTED]> wrote: [SNIP] > > I can get the list of directory names and put them > in a foreach without any > > problem but I don't know how to parse the string I > get. In fact, I can't > > find anything for

Re: Merging multiple generated_web.xmls

2006-10-05 Thread Antoine Levy-Lambert
Hello, you can try also to create a stylesheet (*.xsl) doing the merge that you want. Look at document() to access several source XMLs in one transformation. the ant task can do the transformation. Regards, Antoine [EMAIL PROTECTED] wrote: > We are already using the "token method" to insert one

Re: No supported regular expression matcher found

2006-10-05 Thread Antoine Levy-Lambert
Hello Tina, Tina Meier wrote: > Hello, > > forgive me if this is obvious but i've been struggling with this for a few > days and i'm at the end of my wisdom. > > So: i would like to use ant to create an overview of my ivy repository (like > described at http://www.jayasoft.fr/org/ivyrep/ - in t

Re: Location attribute in property not resolving correctly

2006-10-05 Thread Steve Loughran
Rebhan, Gilbert wrote: Hi, still no solution ? Should i fill a bug report about that behaviour of resulting in a deformed path, f.e. Y:/bla/corba.jar >>> Y\:/bla/corba.jar ?! see example below same result with ant 1.7.0 beta2 Regards, Gilbert -Original Message- From: Rebhan, Gil

Re: Location attribute in property not resolving correctly

2006-10-05 Thread Antoine Levy-Lambert
Hello Gilbert, this is not a bug. propertyfile generates a file with the properties format. The : in Y:/bla/corba.jar gets escaped. This works as designed. Antoine On Oct 5, 2006, at 10:54 AM, Rebhan, Gilbert wrote: Hi, still no solution ? Should i fill a bug report about that behaviour

RE: Location attribute in property not resolving correctly

2006-10-05 Thread Rebhan, Gilbert
Hi, still no solution ? Should i fill a bug report about that behaviour of resulting in a deformed path, f.e. Y:/bla/corba.jar >>> Y\:/bla/corba.jar ?! see example below same result with ant 1.7.0 beta2 Regards, Gilbert -Original Message- From: Rebhan, Gilbert [mailto:[EMAIL PROT

AW: Parsing directory names

2006-10-05 Thread Jan.Materne
>I have the following directory structure: > >2005_1.0 > filea > fileb >2005_1.1 > filec >2005_1.1.1 > filed >2005_2.0 > filee > > >My build needs to determine which files to zip based on the >directory name. >If the user specifies 1.1, I need to include all files in