Re: AntDoc with Ant 1.6.2 ?

2004-12-30 Thread Gilbert Rebhan
Hi, Jacob i had to try it that year ;) Works both with IE and Firefox - great :) You're doing more things like that with xslt ? I will have a closer look on xslt, learning yet another language ... Gilbert Yes, try my modified version. It's not perfect, but it works in both IE and Mozilla... htt

question about the list --digest vs regular

2004-12-30 Thread THUFIR HAWAT
if someone's subscribed to the regular and digest lists and they unsubscribe from the regular list, they'll still get the digest, right? thanks, Thufir -- ___ Sign-up for Ads Free at Mail.com http://promo.mail.com/adsfreejump.htm -

Re: Weird behaviour from import in Ant 1.6.2

2004-12-30 Thread Rhino
Just to follow up on this question, I've now managed to make my imports work by removing ${ant.home} and replacing it with the actual value of ant.home. This is my revised build.xml: Create the SDAC jars. All I did was to modify the value of the 'import.path' p

Weird behaviour from import in Ant 1.6.2

2004-12-30 Thread Rhino
I am getting some weird behaviour from Ant 1.6.2 in Eclipse 3.0.1. A while ago, I created a couple of simple imported tasks to do some basic work for me. My plan was to import these tasks into each Ant script that I write. Initially, this worked but I've been away from Ant for a few months and now

RE: Compiling against a shared code area

2004-12-30 Thread Anderson, Rob (Global Trade)
If you use a branch, then the build file would only need one src directory defined and the configuration of your workspace would determine what version of the source file gets built. -Rob A > -Original Message- > From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED] > Sent: Thurs

RE: Compiling against a shared code area

2004-12-30 Thread McIntosh, Stephen
Thanks for the suggestion. I tried exactly that, and I get 'The data type doesn't support the nested "present" element.' -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 30, 2004 5:02 PM To: user@ant.apache.org Subject: RE: Compiling against a

RE: Compiling against a shared code area

2004-12-30 Thread Kajsa.Anderson
I didn't test this, but I think it should work; the manual says that acts as a fileset, so I would think you could use a selector... HTH Kajsa Anderson - To unsubscribe, e-mail: [

RE: Compiling against a shared code area

2004-12-30 Thread Anderson, Rob (Global Trade)
It sounds like you should be using a branch in version control, rather than locating different versions of source files in different directories. -Rob Anderson > -Original Message- > From: McIntosh, Stephen [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 30, 2004 1:31 PM > To: 'user

Compiling against a shared code area

2004-12-30 Thread McIntosh, Stephen
Hello. I'm not quite a newbie user of Ant, but I'm not an expert either. I'm hoping there's a solution to my problem: I would like to have Ant compile a set of java files against two separate source directories, one "local" and one "shared". This can easily be done like this: except that this

Re: Macrodef in import file having same behaviour as targets?

2004-12-30 Thread galenboyerdev
Martin Cooper <[EMAIL PROTECTED]> writes: > You may be running into a bug that has been fixed but is not yet in a > release. Does anybody know if this is true? I'm guessing there is still some work to get ant working the way I was hoping. But, I would at least like to override the macr

RE: SQL task and the delimiter and 1.6.2.

2004-12-30 Thread Anderson, Rob (Global Trade)
Send the relevant portion of your build.xml. -Rob A > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 30, 2004 12:39 PM > To: Ant Users List > Subject: Re: SQL task and the delimiter and 1.6.2. > > > "Anderson, Rob (Global Trade)" <[EMAI

Re: SQL task and the delimiter and 1.6.2.

2004-12-30 Thread galenboyerdev
"Anderson, Rob (Global Trade)" <[EMAIL PROTECTED]> writes: > In this case your delimiter is "go". That is my issue. I use go as my delimiter but multiple statements still fail. > -Rob Anderson > > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTEC

RE: SQL task and the delimiter and 1.6.2.

2004-12-30 Thread Anderson, Rob (Global Trade)
In this case your delimiter is "go". -Rob Anderson > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 30, 2004 11:57 AM > To: Ant Users List > Subject: Re: SQL task and the delimiter and 1.6.2. > > > Okay, > > I'm having the same type of

Re: SQL task and the delimiter and 1.6.2.

2004-12-30 Thread galenboyerdev
Okay, I'm having the same type of issue with SQLServer. I've mucked around with different combinations of delimiters but two statements in the same file being executed against SQLServer seem to fail. create view dbo.t1_v1 as select * from t1 go create view dbo.t1_v2 as select * from

RE: Sql task and property

2004-12-30 Thread Jacob, Anil - MWT
That makes perfect sense, I was able to send the o/p to a file now I just need to filter and load the file. Thanks Rob. ANil -Original Message- From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED] Sent: Thursday, December 30, 2004 11:46 AM To: Ant Users List Subject: RE: Sql task

RE: Sql task and property

2004-12-30 Thread Anderson, Rob (Global Trade)
Anil, You may be able to accomplish what you need by using the output attribute of the task to specify an output file for the sql statement, then use the task to load the value contained in the output file into a property, then use the ant-contrib task to test the value of the property. -Rob

Re: Sql task and property

2004-12-30 Thread galenboyerdev
"Jacob, Anil - MWT" <[EMAIL PROTECTED]> writes: > I have an sql task which checks the records in 3 tables. Is there a way > I can set a property if the value in any of the tables is > 0? This > property will be used for other tasks. > > Anil Here is the path I would try: The ant-contrib has a m

Getting access to the Caching of the sql connection?

2004-12-30 Thread galenboyerdev
I would like to create my own task which would use the DatabaseMetaData class. Is there a way I could piggyback on how the sql connection is cached during the execution of the tasks? -- Galen Boyer - To unsubscribe, e-mail: [EM

Sql task and property

2004-12-30 Thread Jacob, Anil - MWT
I have an sql task which checks the records in 3 tables. Is there a way I can set a property if the value in any of the tables is > 0? This property will be used for other tasks. Anil

Re: SQL task and the delimiter and 1.6.2.

2004-12-30 Thread galenboyerdev
"Velagapudi, Murali" <[EMAIL PROTECTED]> writes: > try with delimiter="/" and replace ; with / > it works fine for me on oracle. Arghh!!! No sooner did I send the message than I found it out. But no matter. I truly appreciate the reply. -- Galen Boyer -

Re: AntDoc with Ant 1.6.2 ?

2004-12-30 Thread Gilbert Rebhan
Hi, Jacob thx !! for the link, i've downloaded and give it a shot, when i'm back @ work on 10/01/05 don't know, if i'm able to test it earlier ... >Entity 'nbsp'not defined. Error ... ressource 'file:///T:/test/ant2html.xsl' > >     >--... > >Any ideas ? > Yes, try

RE: SQL task and the delimiter and 1.6.2.

2004-12-30 Thread Velagapudi, Murali
try with delimiter="/" and replace ; with / it works fine for me on oracle. thanks, Murali -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Thursday, December 30, 2004 1:52 PM To: user@ant.apache.org Subject: SQL task and the delimiter and 1.6.2.

SQL task and the delimiter and 1.6.2.

2004-12-30 Thread galenboyerdev
I'm having trouble getting more than one statement withing a file to execute successfully. I'm pretty sure it has to do with the delimiter. I am using 1.6.2. For my sql task, I have the delimiter attribute set to ";" HERE I AM GOING AGAINST ORACLE: <> create or replace view t1_v1 as select

Cloud 9

2004-12-30 Thread Zafarano, Marcus
Has anyone used Cloud 9 and ANT? Thanks Marcus

Which For ANT

2004-12-30 Thread Urciolo, Kevin \(Mission Systems\)
Is there a "which" type feature for ANT that would allow me to discover which task ant is executing? Let's just say that I have "a few" tasks, and some overriding going on, and it is sometimes hard to track down where a task exists. Is there something that can do this for me? Thanks.

Re: AntDoc with Ant 1.6.2 ?

2004-12-30 Thread Jacob Kjome
At 10:20 AM 12/30/2004 +0100, you wrote: >I also tried to combine our build scripts with XSLT as >explained in >http://www-128.ibm.com/developerworks/xml/library/x-antxsl/index.html >but the example stylesheet doesn't work with our scripts (Ant 1.6.2, IE 6) >error : > >Entity 'nbsp'not defined. Er

Re: Macrodef in import file having same behaviour as targets?

2004-12-30 Thread galenboyerdev
Martin Cooper <[EMAIL PROTECTED]> writes: > You may be running into a bug that has been fixed but is not yet in a > release. Try putting your macrodefs inside targets, and using the > appropriate depends to ensure those targets are invoked first. I'm okay with the target idea, just wondering if m

Re: Macrodef in import file having same behaviour as targets?

2004-12-30 Thread Martin Cooper
You may be running into a bug that has been fixed but is not yet in a release. Try putting your macrodefs inside targets, and using the appropriate depends to ensure those targets are invoked first. -- Martin Cooper On Thu, 30 Dec 2004 [EMAIL PROTECTED] wrote: HERE IS MY EXAMPLE IMPORT FILE:

RE: AntDoc with Ant 1.6.2 ?

2004-12-30 Thread Martin Cooper
On Thu, 30 Dec 2004, Dick, Brian E. wrote: I use AntDoc and I like it. However, it hasn't been kept up to date and doesn't support V1.62 features such as import and macrodef. The author doesn't have time to keep it going and has asked for support from the open source community. I don't know what r

Macrodef in import file having same behaviour as targets?

2004-12-30 Thread galenboyerdev
HERE IS MY EXAMPLE IMPORT FILE: HERE IS MY EXAMPLE FILE DOING THE IMPORTING: See how I would like to make a call back to the im

GMANE email to news gateway question.

2004-12-30 Thread galenboyerdev
This list is gatewayed to the gmane.org newserver for reading through a newsreader. But, the gmane.org email response stated that this list has been designated as a private email group. That means I need to be subscribed to respond, which I am. My question is: Does this group have a "nomail" opt

RE: AntDoc with Ant 1.6.2 ?

2004-12-30 Thread Dick, Brian E.
I use AntDoc and I like it. However, it hasn't been kept up to date and doesn't support V1.62 features such as import and macrodef. The author doesn't have time to keep it going and has asked for support from the open source community. I don't know what response he has received. -Original Mess

AntDoc with Ant 1.6.2 ?

2004-12-30 Thread Rebhan, Gilbert
Hi, i'm looking for a tool, that generates HTML pages from Ant buildfiles and (optional) allows the launching of targets via browser interface. So i had a look @ AntDoc http://antdoc.free.fr/ , ... "The exact configuration under which the task has been successfully tested is the following: