Ant FTP task: adding progress indicator and timeout

2010-08-22 Thread Evgeny Goldin
Hi All, I had to add a progress indicator to Ant's FTP task and blogged recently about how it can be done: http://evgeny-goldin.com/blog/2010/08/18/ant-ftp-task-progress-indicator-timeout/ Hope it'll help other people if they need to do the same. -- Best regards, Evgeny htt

evgeny.zislis has invited you to Spokeo

2009-03-15 Thread evgeny . zislis
Hi Ant, evgeny.zis...@gmail.com has invited you to try Spokeo, which finds your friends' updates across the Web. Your friends are already using Spokeo to follow you on Web Results. Try Spokeo today to find what your friends are doing across 30 different social networks! Click http://www.spoke

Re: ant global properies (variable)

2008-08-27 Thread Evgeny
Well, with JDK 1.6 and Ant 1.7.x you can write a that will do whatever it is you want.And it will probably be shorter/easier/more readable than any ant-out-of-the-box solution you'll come up with. On Wed, Aug 27, 2008 at 7:04 PM, mindspin311 <[EMAIL PROTECTED]>wrote: > > I have a unit-test task

Re: variables or a counter ?

2008-08-19 Thread Evgeny
IMHO ant is not a suitable tool for the task you need, ant is a build tool - not a scripting language. In your case it would be much better to use some other language, like ruby/python/bash/perl/whatever ... than to use ant. On Tue, Aug 19, 2008 at 4:48 PM, Scot P. Floess <[EMAIL PROTECTED]>wrote:

Re: Initializing Task variables at taskdef time?

2008-08-19 Thread Evgeny
You can use something like a "presetdef" to set default values for your task, and then use the presetdef when calling the task instead of the original one. Is this what you want? On Tue, Aug 19, 2008 at 3:56 PM, cowwoc <[EMAIL PROTECTED]> wrote: > > Hi, > > This seems like such an obvious use-cas

Re: A way to create empty files

2008-08-12 Thread Evgeny
f > a particular file. > > See > http://ant.apache.org/manual/CoreTypes/resources.html > and > http://ant.apache.org/manual/CoreTypes/resources.html#restrict > in particular for more information. > > -Matt > > --- Evgeny <[EMAIL PROTECTED]> wrote: > >

Re: A way to create empty files

2008-08-12 Thread Evgeny
other platforms unless you included the class file >> that implements the task. >> >> Jim >> >> >> -Original Message- >> From: Evgeny [mailto:[EMAIL PROTECTED] >> Sent: Tuesday, August 12, 2008 3:53 AM >> To: Ant Users List >> Subje

Re: Uptodate working one way only

2008-08-12 Thread Evgeny
ew java files. > > Did I miss again? > > -Original Message- > From: Evgeny [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 12, 2008 3:58 AM > To: user@ant.apache.org > Subject: Re: Uptodate working one way only > > No one replied, perhaps I did not make myself clear.

Re: Uptodate working one way only

2008-08-12 Thread Evgeny
onality of , is there any other way that I am missing? Regards, Evgeny On Wed, Aug 6, 2008 at 5:20 PM, Evgeny <[EMAIL PROTECTED]> wrote: > Hi Ant users, > > I wish there was a way to use the uptodate task in the other > direction, not check source against target but check target a

Re: A way to create empty files

2008-08-12 Thread Evgeny
uld be what people are using to see > what targets exist in a particular build file). > > -Original Message- > From: Evgeny [mailto:[EMAIL PROTECTED] > Sent: Monday, August 11, 2008 9:29 AM > To: Ant Users List > Subject: Re: A way to create empty files > > So th

Re: A way to create empty files

2008-08-11 Thread Evgeny
So there is no way to do this other than creating an additional target with an "if" attribute? On Mon, Aug 11, 2008 at 3:09 PM, Kevin Jackson <[EMAIL PROTECTED]> wrote: > I think you want to look at the Available task > > http://ant.apache.org/manual/CoreTasks/available.html > > Thanks, > Kev > >

A way to create empty files

2008-08-11 Thread Evgeny
Is there a way to create an empty file, but when a file exist not to touch it? I would like to use but sometimes the manifest does not exist, and if I just touch it each time ... it would re-create the jar each time, not something I want. Regards, Evgeny

Uptodate working one way only

2008-08-06 Thread Evgeny
opied to (aggregated). But I want to have a way to use antcall or something similar if there is anything needs to be copied, and it's almost impossible with the current uptodate task. Regards, Evgeny - To unsubscribe, e-ma

Re: Ant HTML documentation generation

2005-11-18 Thread Evgeny Goldin
Hi, Good, I'm glad to hear something is done about it. I think I'll give Dominique's XSL system a try. Thank you ! On 11/17/05, Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: > > Hello Evgeny, > we have a system - which is not used yet - where we would extract the

Ant HTML documentation generation

2005-11-17 Thread Evgeny Goldin
Hi, After browsing and searching this mailing list it appears to me that Ant's HTML documentation was and still is coded by hand. Am I right ? The reason I'm asking this question is because I would like to generate an Ant-like HTML documentation for the custom Ant components that we develop intern