AW: api ref doc

2005-04-12 Thread Jan . Materne
Download the sources and build Ant for yourself - including the JavaDocs ;-) Maybe there are some points on the Gump server ... Jan > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Gesendet am: Mittwoch, 13. April 2005 05:38 > An: Ant Users List > Betreff:

Re: api ref doc

2005-04-12 Thread luke
Hi, 12Apr2005 @ 20:41 Conelly, Luis (GE Energy, Non GE, GENE) thusly spake > http://ant.apache.org/manual/index.html you can find the manual which refers to this page :-), http://ant.apache.org/manual/api/packages.html It's weird that I can't find the api, but I have solved that by using an RPM

RE: api ref doc

2005-04-12 Thread Conelly, Luis (GE Energy, Non GE, GENE)
http://ant.apache.org/manual/index.html you can find the manual -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 12, 2005 7:50 PM To: user@ant.apache.org Subject: api ref doc Hi, I've just subscribed to this list :-) I'm looking for the api ref

Re: classpath for custom Ant tasks

2005-04-12 Thread Mark Lybarger
have you looked at the taskdef ? it's a typedef and as such takes a classpath On 4/12/05, Michael Pelz Sherman <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm writing a custom Ant task that has dependencies on our custom > libraries. > > Is there some way I can define or code the task so it can ta

api ref doc

2005-04-12 Thread luke
Hi, I've just subscribed to this list :-) I'm looking for the api reference for 1.6.2, it doesn't seem to be in the tar.gz file that I downloaded. It's also not online, where can I find it? kind regards, Luke -- ._ :| .| |.|/.|_ :|__.|_|.|\.|_ :0421 276 282.

Re: Help with some shell script and ssh command problems...

2005-04-12 Thread Rhino
Your question has nothing whatever to do with Ant. You may get lucky and get an answer anyway but you'd have a lot better chance to post to a newsgroup that specializes in shell script questions. I believe there are some BASH newsgroups for example. Rhino - Original Message - From: "Baz

classpath for custom Ant tasks

2005-04-12 Thread Michael Pelz Sherman
Hi, I'm writing a custom Ant task that has dependencies on our custom libraries. Is there some way I can define or code the task so it can take a "classpath" and/or "classpathref" argument? Thanks, - Michael - To unsubscribe, e

Help with some shell script and ssh command problems...

2005-04-12 Thread Baz
Hi all, I know this might be a little off the topic but i know this group can help me with my questions. I am trying to execute a ssh command from a shell script. When execute, this script build.sh fine if i do: ./build.sh However, if i do: ./build.sh > logfile 2>&1 ,the ssh command will hang f

Re: AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread James Fuller
Huditsch Roman wrote: >Hi Jim, > >Thanks a lot for your solution. >I'll straigth dive into it tomorrow morning. >Thanks! > > > a few caveats...u have to download ant-contribs jar and make it available to Ant (usually this means putting it in ant's lib...though I would suggest putting into a sep

AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread Huditsch Roman
Hi, I tried it, but doesn't seem to do the timestamp check. Since if I process my ant file two times, all files are transformed again, although neither the stylesheets nor the files have changed... My stylesheets are not using or . Since I am doing transformations on directory basis, I would

AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread Huditsch Roman
Hi Jim, Thanks a lot for your solution. I'll straigth dive into it tomorrow morning. Thanks! wbr, Roman ___ Roman Huditsch IT and Electronic Publishing LexisNexis ARD Orac Marxergasse 25 1030 Vienna Austria ph: +43-1-534 52-1514 f: +43-1-534 52-140 e-mail [

Re: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread James Fuller
you could do something like Transform not required

RE: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread Dominique Devienne
> From: Huditsch Roman [mailto:[EMAIL PROTECTED] > The proplem is taht everytime I start the transformation, all files of my > input folder are converted. > I would like ant to just produce new or changed files (since the last > transformation call). > the source folder is specified within my batch

AW: Copy to remote machine

2005-04-12 Thread Jan . Materne
why not just ? You only have to ensure that ${target.dir} is not under your basedir (.) for recursion possibility. Jan > -Ursprüngliche Nachricht- > Von: Dick, Brian E. [mailto:[EMAIL PROTECTED] > Gesendet am: Dienstag, 12. April 2005 15:43 > An: Ant Users List > Betr

Copy to remote machine

2005-04-12 Thread Dick, Brian E.
I need to copy a directory of files to a remote machine. I want to maintain the same relative directory structure on the remote machine as defined by the local machine. Only the top level directories are different between the two machines. The following works, but is it the best way to accomplish

Re: AW: AW: AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread James Fuller
>The is making my go crazy...I don't get it to work in the way I >want. >I would like to transform just those files in "source" which have been altered >in respect to the "result" directory >But the above statement is setting "xmlBuild.notRequired" if one file has been >altered, which

AW: AW: AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread Huditsch Roman
Hi James, I tried to incorporate your suggestions, but I think I just made it to a certain extent

RE: Quotations in a property get corrupted when passed as an arg

2005-04-12 Thread Oski Wee
temp.cmd argument^ that^ has^ a^ literal^ ^"^ as^ part^ of^ its^ value The above is properly treated as 1 argument. Actually, turns out that the ^ does not even work from the command prompt. I guess I can try doing this: temp.cmd "argument that has a literal "" as part of its value" as a close appr

Re: AW: AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread James Fuller
http://ant-contrib.sourceforge.net/ gives u etc...generally you should resort to such things after you have exhausted all other meansthough the nice thing with using Ant as Controller is that you will continue to tweak (as with a build) to satisfy constantly changing requirements. gl, Jim F

Re: AW: AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread James Fuller
Huditsch Roman wrote: >Hi James, > >As you may have seen by my previous posts on the list, >I managed to make some progress :))) > > > its great to see you getting the hang of things...though there are many refactoring opportunities with your build file a) instead of creating one large target,

AW: AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread Huditsch Roman
Hi James, As you may have seen by my previous posts on the list, I managed to make some progress :))) > check out the manual page for all options > http://ant.apache.org/manual/CoreTasks/style.html I was able to define my definitions in a working way at least: The only issue to solve is now

RE: Quotations in a property get corrupted when passed as an arg

2005-04-12 Thread Oski Wee
Thanks Bill for the suggestion. I tried it, but it did not work. Maybe I can give a better example that illustrates the problem. I want to pass my script an argument that has quotation marks and spaces inside it. Here is the contents of my script, temp.cmd: start "Arg1" cmd /K echo %1 start "

AW: Problems with

2005-04-12 Thread Huditsch Roman
Solved it too: wbr, Roman > -Ursprüngliche Nachricht- > Von: Huditsch Roman [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 12. April 2005 12:18 > An: Ant Users List > Betreff: AW: Problem

AW: Problems with

2005-04-12 Thread Huditsch Roman
Solved it in the meantime... But as I take a step forward, I discovered another issue I split my files using , and for what reason ever I get an empty source file within my result folder beside the splitted documents. Now I suppose that I have to delet those 0kb files. How can I achieve that?

Problems with

2005-04-12 Thread Huditsch Roman
Hi, I just tried to do a simple XSLT transformation with ant. I defined the transformation as follows: The problem is now, that it seems that the transformation ignores my within my stylesheet since the process produces HTML files. Another issue to solve is that I just want to tran

AW: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread Huditsch Roman
Hi James, Thank you very much for the quick reply. > why not control Saxon directly from Ant ? Would be nice. I am just uncertain how to do this properly ;) > You can use the Ant task or use to invoke > saxon...which may or may not have the built in up to date > checking you desire hmm, I t

Re: Converting new or changed files with an batch file called from within ant

2005-04-12 Thread James Fuller
Huditsch Roman wrote: >Hi list, > >Although I search the archives, I could not find any useful hint for my >problem. >I recently started using ant for controlling my XSLT transformations. >Actually, I need ant to take control over the execution of the appropriate >batch file for a given target.

Converting new or changed files with an batch file called from within ant

2005-04-12 Thread Huditsch Roman
Hi list, Although I search the archives, I could not find any useful hint for my problem. I recently started using ant for controlling my XSLT transformations. Actually, I need ant to take control over the execution of the appropriate batch file for a given target. These target-specific batch-fil