Re: Replacing chars in a property

2007-11-16 Thread Rob Wilson
I might be wrong, but I think there is a URLFixer task - or something similarly named, would that be useful? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: problems with zip task

2007-11-16 Thread David Weintraub
Yes. Use a subtask to specify what files you want in your Zipfile. On Nov 16, 2007 6:47 AM, Roman Agapkin <[EMAIL PROTECTED]> wrote: > Hello Experts, > > i've got a question on ant's zip task: > > i would like to create a zip file: > > take file file.xy from folder A and put them int

problems with zip task

2007-11-16 Thread Roman Agapkin
Hello Experts, i've got a question on ant's zip task: i would like to create a zip file: take file file.xy from folder A and put them into the zip file into a new folder B/file.xy is that possible? or another problem: i would like to zip a subtree e.g. i've got a path A/B/C/D/file.xy i want

Re: Replacing chars in a property

2007-11-16 Thread Nicolai Kamenzky
Thanks a lot David! I succeeded by doing this: My original path is inside the property "basedir" while the file "xyz" contains the string "${basedir}". Thus I get my original path by using "". (My modified pa