RE: Getting the complete build.xml?

2003-06-26 Thread Mazzolini, Mike
Thanks for your response. Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 3:50 AM To: [EMAIL PROTECTED] Subject: AW: Getting the complete build.xml? I suggest reading http://codefeed.com/tutorial/ant_config.html . Conor wrote much

Re: Getting the complete build.xml?

2003-06-26 Thread Stefan Bodewig
On Wed, 25 Jun 2003, Mike Mazzolini <[EMAIL PROTECTED]> wrote: > Now this leads into another question. The Project.topoSort and > Project.getTargets gets me all targets and their tasks but what if > someone does an 'antcall' task? Then you are out of luck - sorry. This is one of the main reason

RE: Getting the complete build.xml?

2003-06-25 Thread Jim Fuller
you might be better off using an xslt transformation on the build.xml file itself, just a lurkers comments, jim fuller > -Original Message- > From: Mazzolini, Mike [mailto:[EMAIL PROTECTED] > Sent: 25 June 2003 17:00 > To: [EMAIL PROTECTED] > Subject: RE: Getting the com

RE: Getting the complete build.xml?

2003-06-25 Thread Mazzolini, Mike
til it executes it. How do I get information about what targets/tasks it might be calling? Thanks. Mike -Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 9:41 AM To: [EMAIL PROTECTED] Subject: Re: Getting the complete build.xml? On Wed, 25

Re: Getting the complete build.xml?

2003-06-25 Thread Stefan Bodewig
On Wed, 25 Jun 2003, Mike Mazzolini <[EMAIL PROTECTED]> wrote: > When Ant starts, does it parse the entire XML file before > running any tasks? Yes. > In other words does it build a DOM object or does it use SAX? Not the same question. Ant uses SAX. > I'm looking to ge