RE: ANT CVS and log

2005-09-12 Thread David TROGDON
*smack head* Bingo Thanks |-+> | | "Shatzer, Larry" | | | <[EMAIL PROTECTED]| | | logies.com> | | || | | 09/

RE: ANT CVS and log

2005-09-12 Thread Shatzer, Larry
> -Original Message- > From: David TROGDON [mailto:[EMAIL PROTECTED] > Sent: Monday, September 12, 2005 11:17 AM > To: user@ant.apache.org > Subject: ANT CVS and log > > Which is obviously a bit messy and ANT does not seem to like > the <= or >= > when trying to define date ranges. > H

ANT CVS and log

2005-09-12 Thread David TROGDON
Here is one for you gurus. The CVS command line syntax (in Windows XP) that works is: C:\eclipse\workspace>cvs log -N -d"11 Aug 2005 <= 25 Aug 2005";"25 Aug 2005 >= 11 Aug 2005" ProjectName > c:\ProjectName.txt In an attempt to translate this into an ANT script with a few variables to ease va

Re: When is task being added to main branch?

2005-09-12 Thread Steve Loughran
Mark McKay wrote: Steve Loughran wrote: Mark McKay wrote: I'm aware that an task for using the new Java apt utility exists and is in an experimental branch of Ant, but I'm not sure how to find it or add it to my current distribution of Ant (I'm using 1.6.4 at the moment). I was wondering

Re: GET ANT task parameters...

2005-09-12 Thread Steve Loughran
Marcello Sales wrote: Hello Everyone, I'm still with no answers to this... I need to express the values of parameters in the URL for the GET ant task... there is an extended httpget task in Ant's SVN repository that does all of this, alongside an HttpPost. You'd need to check out and build

Re: When is task being added to main branch?

2005-09-12 Thread Mark McKay
Steve Loughran wrote: Mark McKay wrote: I'm aware that an task for using the new Java apt utility exists and is in an experimental branch of Ant, but I'm not sure how to find it or add it to my current distribution of Ant (I'm using 1.6.4 at the moment). I was wondering when this task wil

Re: GET ANT task parameters...

2005-09-12 Thread Dominique Devienne
You did get an excellent suggestion by James! & is a reserved charaster in XML documents (like <, >, ", '). You need to escape it using & which means the amp character entity (built-in to XML). --DD - To unsubscribe, e-mail: [EMA

RE: GET ANT task parameters...

2005-09-12 Thread Marcello Sales
Hello Everyone, I'm still with no answers to this... I need to express the values of parameters in the URL for the GET ant task... Regards, Marcello -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, September 09, 2005 11:04 AM To: user@ant.apache.org S

Finding string in JSP-files

2005-09-12 Thread duvelbier-tsmets
I have the following problem : In JSP's people have copy-pasted declaration where the code included "<%!" instead of "<%". The first declaration generates member variables instead of method scope. As I believe there is a number of relevant cases, I want to ensure that the build fails if the de

Re: how to use "ant:current" attribute in ant1.6?

2005-09-12 Thread Steve Loughran
kevin wrote: how to use "ant:current" attribute in ant1.6? I'm a chinese programer.When i used ant with "antlib" speciality,I don't know what is the difference between "xmlns:antlib=..." and "ant:current" in the antlib configure of the ant manual version 1.6.5... I'm puzzled with these two at

Re: When is Ant 1.7 expected to be released?

2005-09-12 Thread Steve Loughran
Mark McKay wrote: Hi, Just wondering what the expected date is for the Ant 1.7 release. It looks like it will have a lot of useful features. No particular release date planned. The beta program hasnt started yet, and there are some other "must-do" things to deal with first, including -a

Re: When is task being added to main branch?

2005-09-12 Thread Steve Loughran
Mark McKay wrote: I'm aware that an task for using the new Java apt utility exists and is in an experimental branch of Ant, but I'm not sure how to find it or add it to my current distribution of Ant (I'm using 1.6.4 at the moment). I was wondering when this task will be added to the main br

Re: Force javac to overwrite class files?

2005-09-12 Thread Richard Gaywood
Well, those were blindingly obvious suggestions that'll teach me to try and write build scripts before my morning coffee. Thanks to Nicolas and Troy!