ssh advice

2005-09-16 Thread Ramnish Kalsi
Hi, I am working on a project to automate a build system, and the flow is somewhat like this: 1. ssh into a unix machine. 2. Sync the repository 3. dist the projects. 4. ssh into application-specific unix boxes and deploy appropriate apps to appropriate boxes. How can i gather the output of ss

RE: ant log

2005-09-15 Thread Ramnish Kalsi
Previously Reported ? just a guess ... :) -Original Message- From: Giuliano Dessì [mailto:[EMAIL PROTECTED] Sent: 15 September 2005 09:32 To: user@ant.apache.org Subject: ant log Hi all. I'm a student and I'm working to a tesi about Open Source Projects. Now I'm parsing ant logs to ext

RE: Copy task and timestamp

2005-08-02 Thread Ramnish Kalsi
This should solve your issue: preservelastmodifiedGive the copied files the same last modified time as the original source files. No; defaults to false. http://ant.apache.org/manual/CoreTasks/copy.html Its the second paramter. ramnish. -Original Message- From: [EMAIL PROTECTED

RE: XSLT - Many Input One Output

2005-07-29 Thread Ramnish Kalsi
Going by your requirement, you can : a) Generate a big XML file on the fly, using xmltask. - Take one xml file and copy it into the BIG.xml , and for all other xml files, copy all the data excluding their root inside the root element of BIG.xml. This link can help you with xpath: http://www.zvon

RE: how would I perform set intersection or disjunction with file sets?

2005-07-14 Thread Ramnish Kalsi
I am not an ant expert, but how about this: a) Copy both the filesets into a directory, b) Sync the copied directory to one of the filesets, and you will be left with an intersection. the target sync need ant >1.6 description