Return-Path: Delivered-To: apmail-ant-user-archive@www.apache.org Received: (qmail 99242 invoked from network); 26 Mar 2010 22:22:38 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Mar 2010 22:22:38 -0000 Received: (qmail 24202 invoked by uid 500); 26 Mar 2010 22:22:37 -0000 Delivered-To: apmail-ant-user-archive@ant.apache.org Received: (qmail 24155 invoked by uid 500); 26 Mar 2010 22:22:37 -0000 Mailing-List: contact user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Users List" Reply-To: "Ant Users List" Delivered-To: mailing list user@ant.apache.org Received: (qmail 24147 invoked by uid 99); 26 Mar 2010 22:22:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Mar 2010 22:22:37 +0000 X-ASF-Spam-Status: No, hits=3.9 required=10.0 tests=AWL,FREEMAIL_FROM,FREEMAIL_REPLY,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of mgainty@hotmail.com designates 65.55.111.153 as permitted sender) Received: from [65.55.111.153] (HELO blu0-omc4-s14.blu0.hotmail.com) (65.55.111.153) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Mar 2010 22:22:31 +0000 Received: from BLU142-W35 ([65.55.111.136]) by blu0-omc4-s14.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 26 Mar 2010 15:21:03 -0700 Message-ID: Content-Type: multipart/alternative; boundary="_6d228c00-2a5c-443c-a346-43a97c689155_" X-Originating-IP: [64.241.37.140] From: Martin Gainty To: Ant Users List Subject: RE: I must be blind Date: Fri, 26 Mar 2010 18:21:03 -0400 Importance: Normal In-Reply-To: References: , MIME-Version: 1.0 X-OriginalArrivalTime: 26 Mar 2010 22:21:03.0189 (UTC) FILETIME=[9EED4850:01CACD32] --_6d228c00-2a5c-443c-a346-43a97c689155_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi Glenn- =20 yes i was going to suggest a regular expression utility which reads these f= iles to place the results in properties files=20 then have your ant script read in the associated properties with the conten= ts of the property file globmapper seems like the better option.. =20 Greetings and Salutations from the other side of the pond Martin Gainty=20 ______________________________________________=20 Verzicht und Vertraulichkeitanmerkung/Note de d=E9ni et de confidentialit= =E9 =20 Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaeng= er sein=2C so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiter= leitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient l= ediglich dem Austausch von Informationen und entfaltet keine rechtliche Bin= dungswirkung. Aufgrund der leichten Manipulierbarkeit von E-Mails koennen w= ir keine Haftung fuer den Inhalt uebernehmen.Ce message est confidentiel et= peut =EAtre privil=E9gi=E9. Si vous n'=EAtes pas le destinataire pr=E9vu= =2C nous te demandons avec bont=E9 que pour satisfaire informez l'exp=E9dit= eur. N'importe quelle diffusion non autoris=E9e ou la copie de ceci est int= erdite. Ce message sert =E0 l'information seulement et n'aura pas n'importe= quel effet l=E9galement obligatoire. =C9tant donn=E9 que les email peuvent= facilement =EAtre sujets =E0 la manipulation=2C nous ne pouvons accepter a= ucune responsabilit=E9 pour le contenu fourni. =20 > Date: Fri=2C 26 Mar 2010 17:09:22 -0500 > Subject: Re: I must be blind > From: glennoph@gmail.com > To: user@ant.apache.org >=20 > I think that doc is found at > http://ant.apache.org/manual/conceptstypeslist.html >=20 > I find it a bit challenging=2C too. >=20 > --glenn >=20 >=20 > On Fri=2C Mar 26=2C 2010 at 16:20=2C Robert Menteer wrot= e: >=20 > > I'm looking over the documentation that comes with Apache Ant version 1= .8.0 > > and can't find where classpath=2C path and pathelement are documented. = I've > > found a page that describes path like structures but it doesn't list th= e > > valid attributes or nested elements for these. Another thing I can't fi= nd in > > the documentation is a description of the relationships between filelis= t=2C > > fileset=2C patternset and path and how to convert them back and forth. = For > > instance there has to be an easier way to compile only those classes in= one > > package while removing all class dependencies on the package classes an= d > > update documentation. > > > > > > > dir =3D "${src}"> > > > > > > > > > > > refid =3D "java.source.set" > > pathsep =3D "=2C"> > > > to =3D "*.class" /> > > > > > > > > > destdir =3D "${build}" > > includes =3D "${java.source.list}" > > closure =3D "yes" /> > > > > > > > dir =3D "${build}"> > > > > > > > > > > > refid =3D "class.uptodate.set" > > pathsep =3D "=2C"> > > > > > > > > > > > destdir =3D "${build}" > > classpathref =3D "compile.classpath" > > includes =3D "${java.source.list}" > > excludes =3D "${java.uptodate.list}"/> > > > > > > > > > includes =3D "class.dir.list" /> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Notice there's a number of conversions between filesets=2C paths and co= mma > > separated list just to get the proper 'type' required for the different= ant > > tasks. Is there a way to simplify this while still processing the fewes= t > > files in a complex directory structure? > > > > > > > > =20 _________________________________________________________________ The New Busy is not the old busy. Search=2C chat and e-mail from your inbox= . http://www.windowslive.com/campaign/thenewbusy?ocid=3DPID27925::T:WLMTAGL:O= N:WL:en-US:WM_HMP:032010_3= --_6d228c00-2a5c-443c-a346-43a97c689155_--