Re: [Ant-contrib-developers] Re: Ant-contrib for ANT1.6

2003-12-11 Thread Dean Hiller
I don't know which list this came from so I am replying to this cross-post. PLEASE DO NOT reply to everyone. Instead just reply to the ant-contrib list if you have more questions. I fixed the issue with compilewithwalls not being compatible with 1.3. You can build from source until a new re

Re: ant task submission....compilewithwalls

2003-08-27 Thread Dean Hiller
and see what happens. thanks for all your guys' comments and help, dean Stefan Bodewig wrote: On Tue, 26 Aug 2003, Dean Hiller <[EMAIL PROTECTED]> wrote: My apologies for being annoying. There is no other way to lobby people than to be annoying if they don't react. Don't wo

Re: ant task submission....compilewithwalls

2003-08-27 Thread Dean Hiller
yeah, I think you are probably right :). I think the way it is now is fine. I just never looked at ant-contrib due to it's description. dean [EMAIL PROTECTED] wrote: Can I suggest trying something new possibly? ant-contrib might be a good idea, but is it possible to have the ant manual co

Re: ant task submission....compilewithwalls

2003-08-27 Thread Dean Hiller
t 26, 2003, at 08:45 PM, Dean Hiller wrote: ok, I am a moron. I think I ran into the top of that when looking for guidelines and must not have looked down far enough. My apologies for being annoying. Anyways, what you are saying kind of worries me. I have no where to really post this the

Re: ant task submission....compilewithwalls

2003-08-27 Thread Dean Hiller
nyone though, let me know. I would be happy to support this task with bug fix and it's respective test case. thanks, dean Steve Loughran wrote: Dean Hiller wrote: ok, I am a moron. I think I ran into the top of that when looking for guidelines and must not have looked down far e

Re: ant task submission....compilewithwalls

2003-08-27 Thread Dean Hiller
n Wed, 27 Aug 2003, Dean Hiller <[EMAIL PROTECTED]> wrote: It was not in ant's list of external docs nor was there a link from the manual. It's linked from the related projects page. I have one more suggestion. Ant contrib was saying I have to change the build file. It wo

Re: ant task submission....compilewithwalls

2003-08-27 Thread Dean Hiller
nd read it in to get all the tasks. What do you think? thanks, dean Erik Hatcher wrote: On Tuesday, August 26, 2003, at 08:45 PM, Dean Hiller wrote: ok, I am a moron. I think I ran into the top of that when looking for guidelines and must not have looked down far enough. My apologie

Re: ant task submission....compilewithwalls

2003-08-27 Thread Dean Hiller
ok, I am a moron. I think I ran into the top of that when looking for guidelines and must not have looked down far enough. My apologies for being annoying. Anyways, what you are saying kind of worries me. I have no where to really post this then? I have a feeling this ant task is just

Re: ant task submission....compilewithwalls-1

2003-08-26 Thread Dean Hiller
mport LGPL code. /* Copyright (c) 2002, Dean Hiller All rights reserved. * IF YOU MAKE CHANGES TO THIS CODE AND DO NOT POST THEM, YOU WILL BE IN VIOLATION OF THE LICENSE I HAVE GIVEN YOU. Contact me at [EMAIL PROTECTED] if you n

Re: ant task submission....compilewithwalls

2003-08-26 Thread Dean Hiller
he task is deleting javac's destdir if destdir is empty. Dean Dean Hiller wrote: yeah, that's weird. I see the html file in my sent mail, but once I received it back from the list, it is not there. So anyways, here is the summary. In a project, there can be lots of modules and it is import

Re: ant task submission....compilewithwalls

2003-08-26 Thread Dean Hiller
ripped. thanks, dean Conor MacNeill wrote: On Tue, 26 Aug 2003 01:22 pm, Dean Hiller wrote: Hello, What is the acceptance process of a new task? I would like to put this task in the ant repository for anybody else who needs it. I have attached the task, tests and doc for it. I ha

ant task submission....compilewithwalls

2003-08-26 Thread Dean Hiller
* information on the Apache Software Foundation, please see * <http://www.apache.org/>. */ package org.apache.tools.ant.taskdefs.optional.walls; import org.apache.tools.ant.Project; import org.apache.tools.ant.taskdefs.Move; /* * Created on Aug 25, 2003 * * To change the template for t

Re: how to programatically temporarily turn off logging

2003-08-26 Thread Dean Hiller
ERBOSE); } public void log(String msg, int level) { super.log(msg, (level==Project.MSG_INFO? Project.MSG_VERBOSE: level)); } } // END class DspModuleInstall.SilentExpand -Original Message- From: Dean Hiller [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 8:27

Re: reverse FileSet utility?

2003-08-25 Thread Dean Hiller
a FileSet normal; FileSet inverse = normal.getInverseFileSet(); call, but I think it will do fine for now. thanks, dean Stefan Bodewig wrote: On Sun, 24 Aug 2003, Dean Hiller <[EMAIL PROTECTED]> wrote: Writing an ant task and I want to take a FileSet and make it's inverse.

how to programatically temporarily turn off logging

2003-08-25 Thread Dean Hiller
I have a task that uses the move tasks. How do I turn off logging from the Move task? I typically will only let the move task log when the user selects verbose or debug or something. Otherwise, there is just too much logging coming out of my new ant task. thanks, dean --

Re: trying to get access to fileset from new task to javac task

2003-08-25 Thread Dean Hiller
patterns. Above works for me, but is there an easier way ***without changing the ant base*** to get what I want. Your last statement is exactly my intention. thanks, dean Stefan Bodewig wrote: On Sun, 24 Aug 2003, Dean Hiller <[EMAIL PROTECTED]> wrote: I am writing a new task that h

reverse FileSet utility?

2003-08-25 Thread Dean Hiller
Is there a reverse FileSet Utility somewhere in the code? Writing an ant task and I want to take a FileSet and make it's inverse. I couldn't find one. thanks, dean - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

trying to get access to fileset from new task to javac task

2003-08-24 Thread Dean Hiller
I am writing a new task that happens to wrap javac and call it a few times. Is there any way to clear the FileSet? or possibly retrieve the FileSet from Javac's superclass(MatchingTask)? The getImplicitFileset() was protected and there doesn't seem to be a clear function on the MatchingTask