RE: and update timestamp even if overwrite="false"

2004-07-31 Thread Jacob Kjome
Ok, I've got the behavior figured out. If the source file is newer than the destination file, then seems to overwrite the destination, even if overwrite="false". I guess this only applies when the destination file is newer. A re-read of the docs pointed this out to me, but I don't find it a

RE: and update timestamp even if overwrite="false"

2004-07-31 Thread Jacob Kjome
At 10:49 PM 7/30/2004 +, you wrote: Quoting Dominique Devienne <[EMAIL PROTECTED]>: > > From: Jacob Kjome [mailto:[EMAIL PROTECTED] > > > > I have noticed that the and tasks update the file > timestamp > > even > > if overwrite="false", making it somewhat hard to determine whether it > is > >

Re: change to a property

2004-07-31 Thread mail.laconiadatasystems.com
Thats what I was looking for Thanks Dale! -Martin - Original Message - From: "Dale Anson" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Saturday, July 31, 2004 12:19 PM Subject: Re: change to a property > Another option would be to use the 'variable' task from ant-con

HTTP POST REQUEST

2004-07-31 Thread Eduardo Andrés Alfonso Sierra
Hi I want to know if there is any "standard" way to make a HTTP POST REQUEST to a web server. By standard I mean using the core or optional task of the ant distribution.. I guess using anteater external task this could be possible, but is it using standard tasks ?? Maybe using the get task and ch

Re: change to a property

2004-07-31 Thread Dale Anson
Another option would be to use the 'variable' task from ant-contrib. 'variable' is used exactly like a property, but is mutable. Dale Bill Rich wrote: Properties are immutable so you can not change them once they are set. But, you can specify the value multiple times so that only the first one w

RE: change to a property

2004-07-31 Thread Bill Rich
Properties are immutable so you can not change them once they are set. But, you can specify the value multiple times so that only the first one will take effect. You can specify the value of a property on the command line (-Dprop=value). This will be the first setting of the property so no other