Re: include-require

2009-07-13 Thread Horvath Adam
I want to define properties: Common static properties (xmlproperty is great for this) Dynamic property (property value from timestamp or from other properties) > Do you really want the contents of common.xml copied into a build.xml > file or just be able to call the targets defined in common.xml?

include-require

2009-07-13 Thread Horvath Adam
Hi! How can I create build xml from more file? Like 'require' or 'include' in php. E.g. common.xml: And I like to include this in more other build.xml, e.g.: ... The result should be: ... Thanks, Adam - To u

Re: image draw

2009-07-10 Thread Horvath Adam
> we could provide greater assistance if you could specify > source image format > target image format I only do 'jpg to jpg' conversions. - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail:

image draw

2009-07-10 Thread Horvath Adam
Hi! -- I try to do image conversion. It works: It's great. In manual I found: Draw Adds a Draw ImageOperation to chain. DrawOperation DataType objects can be nested inside the Draw object. xloc X-Position where to draw nested image elements.

Re: test if exists

2009-07-09 Thread Horvath Adam
> > Give more command line arg > > > > Thanks a lot. - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

test if exists

2009-07-08 Thread Horvath Adam
Hi! I'm learning ant. ant -Dpropname=xxx // correct usage ant // incorrect usage of my build Can I test a property existence? if propname not exists ( echo "Give more command line arg" exit ant running ) Thanks, Adam -