Re: Ant 1.6.2 release?

2004-05-27 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: [SNIP] Dear committers, do you think we can get a list of must-get-fixed reports by some fixed date - say end of next week? [SNIP] I'll go through bugzilla and submit my must-fix bugs to the list next week. Stuff I have not, but plan to, put into

Re: Ant 1.6.2 release?

2004-05-27 Thread Matt Benson
--- Matt Benson [EMAIL PROTECTED] wrote: [SNIP] fail nested condition instead of if/unless [SNIP] s/instead of/as an alternative to/ -Matt __ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com

RE: Ant Bug: Launcher fails for UNC drive names (Bugzilla #27922)

2004-05-27 Thread Matt Benson
Hi, sorry I hadn't jumped in until now... the CVS versions from both the main and 1.6 branches work for me. I imagine the main branch is what you got from CVS. In any event, if it doesn't work I definitely need/want to find out why prior to the release of 1.6.2. We should probably take this to

RE: Ant Bug: Launcher fails for UNC drive names (Bugzilla #27922)

2004-05-27 Thread Matt Benson
9095 Locator.java If you can confirm the source is correct I'd appreciate it. I'll continue on this tomorrow. I want to make sure the right thing gets in 1.6.2. Do you have any idea when 1.6.2 is due out? Thanks. --Cyril -Original Message- From: Matt Benson [mailto

Re: patch for CoreTasks/macrodef.html

2004-05-07 Thread Matt Benson
Fixed in CVS; thanks! -Matt --- Yuji Yamano [EMAIL PROTECTED] wrote: Hi, I found typo in docs/manual/CoreTasks/macrodef.html. Here is the patch. Index: macrodef.html === RCS file:

Re: cvs commit: ant/src/script ant

2004-05-06 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: mbenson 2004/05/06 09:42:18 Modified:src/script ant Log: Cygwin/UNC ANT_HOME compatibility using mixed paths on NT-family systems. +# For Cygwin, switch paths to appropriate format before running java if $cygwin; then + if [ $OS =

Re: cvs commit: ant/src/etc/testcases/taskdefs fail.xml

2004-04-29 Thread Matt Benson
The way Peter originally suggested to fix this was the simplest. I originally coded up that change in December or January, I think... it didn't strike me as a BC issue because I didn't think about the possibility that someone would want to extend Exit/fail... oh, well... -Matt --- [EMAIL

RE: [Container|Composite]Mapper

2004-04-27 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: Sorry, it wasn´t me :-) As the changelog [1] shows I added only the last example (use of @attributes inside attribute (1.14). The text comes from Matt (1.16). I still don't remember doing that, but it's in the log... oh well! -Matt

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Execute.java

2004-04-27 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: Stefan Bodewig wrote: Is it save to call getXYZStream on a Process instance after it has terminated or even been destroyed? I've never tried it and the Javadocs don't say anything. Stefan: The test cases all pass. I imagine this is okay.

Re: Redirector

2004-04-23 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: Only two small notes: * Enough Rope? [snip] I think I understand the saying, but I don't understand what you want to say here? Why would mapping of property names be dangerous? I had thought of including this but had these visions of

Re: Redirector

2004-04-23 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: [SNIP] Seriously. I'm not sure whether properties per execution are actually desirable. At least nobody has asked for them yet. So maybe we should just remove the text that says we hadn't implemented it to protect our users. Simply don't talk

Re: failifexecutionfails, append and incompatibleWithSpawn

2004-04-23 Thread Matt Benson
Sounds reasonable to me... -Matt --- Stefan Bodewig [EMAIL PROTECTED] wrote: Hi, why is setting failifexecutionfails incompatible with the spawn attribute in exec and friends? Execute#spawn would fail in the same way as Execute#execute if Ant fails to create the process (because a the

nested condition in fail

2004-04-22 Thread Matt Benson
Can anyone give a good reason not to allow this, other than you can get along without it? If not, I am going to commit this to HEAD soon... -Matt __ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25¢

Re: cvs commit: ant/src/testcases/org/apache/tools/ant/types MapperTest.java

2004-04-22 Thread Matt Benson
Most notably, mapper had to changed to not automatically reject nested elements when other attributes (other than refid) are set. The use-case for this is: mapper classname=org.apache.tools.ant.util.ChainedMapper mapper type=whatever / mapper type=etc / mapper type=etc / /mapper However

Redirector WAS [Container|Composite]Mapper

2004-04-21 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: Thank you for bringing this up again, I have not forgotten about it (nor about reviewing the redirector stuff). Would you (or anyone else) like to review what's in HEAD before I merge it to the 1.6 branch? -Matt

Re: [Container|Composite]Mapper

2004-04-21 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: Ps. Thanks for updating the doc for macrodef, esp the text element!. Actually, that was all Jan's work. I just noticed a missing e on the word attribut and thought I'd fix it... -Matt __ Do

Re: timestamp checking

2004-04-21 Thread Matt Benson
--- Steve Loughran [EMAIL PROTECTED] wrote: I am thinking we can and should factor out all timestamp checking into one place, like FileUtils and FileSet. +1 Incidentally, on that granularity discussion yesterday. There is a platform independent way to determine this:

Re: cvs commit: ant/src/main/org/apache/tools/ant/util FileUtils.java

2004-04-20 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: +/** + * get the granularity of file timestamps. + * The choice is made on OS, which is incorrect -it should really be + * by filesystem. We do not have an easy way to probe for file systems, + * however. Funny you should mention

Re: tests failing w/ illegal access error

2004-04-20 Thread Matt Benson
Never seen anything like it... but am I crazy here? I thought Ljava/lang/String would be referring to a String[], but there is no such method void expectLog(String[], String[]), only void expectLog(String, String). If I am not mistaken about the significance of the L, I suppose this would be

RE: tests failing w/ illegal access error

2004-04-20 Thread Matt Benson
--- Dominique Devienne [EMAIL PROTECTED] wrote: From: Matt Benson [mailto:[EMAIL PROTECTED] I thought Ljava/lang/String would be referring to a String[], but there is no such method No Ljava/lang/String; is String, whereas [Ljava/lang/String; is String[]. --DD Gotcha, thanks. -Matt

Re: JVM Security properties

2004-04-20 Thread Matt Benson
--- Steve Loughran [EMAIL PROTECTED] wrote: I'm adding security to a JVM 1. to enable the security manager on a JVM , you go [SNIP] But what about (1)? Do you think a value of will get through? Judging from the code, I would think it would... if not a temporary workaround should be

RE: Ant 1.6.2 ?

2004-04-20 Thread Matt Benson
+1 -Matt --- [EMAIL PROTECTED] wrote: +1 also +1 ;-) Should we make a list of things we want to see fixed and call it a freeze for 1.6.2 when done? I´d visited Bugzilla and found some entries which should (IMHO) be discussed in that area. Jan

[Container|Composite]Mapper

2004-04-20 Thread Matt Benson
To rehash yet again, Peter, do I understand you correctly to NOT have a problem with this going into 1.6.2, with the understanding that as the dynamic stuff evolves, the advised usage pattern on mappers can/will change? Or was there a reason you wanted to keep any hint of this out of a 1.6.x

Re: cvs commit: ant/docs/manual/CoreTasks import.html

2004-04-16 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: -p align=centerCopyright copy; 2003-2004 Apache Software +p align=centerCopyright copy; 2003-2004 The Apache Software Anyway thanks Peter and Jan for the merge instructions... whew! -Matt __ Do

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs ImportTask.java

2004-04-14 Thread Matt Benson
And once again I escape having to merge anything I'm really going to have to learn to do that before 1.6.2... :( -Matt --- [EMAIL PROTECTED] wrote: peterreilly2004/04/14 01:21:35 Modified: src/main/org/apache/tools/ant/taskdefs Tag: ANT_16_BRANCH

RE: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Import Task.java

2004-04-14 Thread Matt Benson
co ant -r ANT_16_BRANCH cd to the directory in question and do cvs update -j HEAD ImportTask.java this updates the working file. do cvs diff ImportTask.java to make sure that the changes are ok and then do commit ImportTask.java Peter Matt Benson wrote: And once again I

Re: target if/unless property substitution

2004-04-13 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: On Fri, 9 Apr 2004, Matt Benson [EMAIL PROTECTED] wrote: So my question is whether--since this behavior is consistent with that of virtually any other XML attribute in Ant--that was something everyone took for granted, or is it a little

target if/unless property substitution

2004-04-09 Thread Matt Benson
I was looking at the code for if/unless on targets and noticed--apparently courtesy of Conor--that properties substitution is perfectly operational here. It had never occurred to me that it would be. So my question is whether--since this behavior is consistent with that of virtually any other

RE: target if/unless property substitution

2004-04-09 Thread Matt Benson
PROTECTED] wrote: From: Matt Benson [mailto:[EMAIL PROTECTED] I was looking at the code for if/unless on targets and noticed--apparently courtesy of Conor--that properties substitution is perfectly operational here. It had never occurred to me that it would be. So my question

Re: DateSelector patch

2004-04-07 Thread Matt Benson
--- David Kavanagh [EMAIL PROTECTED] wrote: Here is a patch for the DateSelector. It allows it FYI I have taken your patch and made a few mods... I have some more things to work on before I can thoroughly test this, but I haven't forgotten it. :) -Matt __ Do

Re: little error in presetdef

2004-04-07 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: [SNIP] build.xml:5: The x type doesn't support the wrongattribute attribute. I think it would be better to show the original taskname (in contrast to the other *def tasks) because presetdef only takes one task/type and finding the error would be easier.

Re: submitting a patch

2004-04-07 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: I had a look at the guidelines (http://ant.apache.org/ant_task_guidelines.html) and the suggestion is to run ant -f patch.xml . Where is patch.xml? Knowing the guidlines, I'll submit the DateSelector change that way. patch.xml is in the root directory of an

Re: DateSelector patch

2004-04-07 Thread Matt Benson
. Would the best thing be to grab the 1.6.1 source release and get DateSelector from anonCVS and build myself? David Quoting Matt Benson [EMAIL PROTECTED]: --- [EMAIL PROTECTED] wrote: Matt, Thanks! I just thought I'd explain one thing in the code. Previously, it was parsing

Re: cvs commit: ant/src/main/org/apache/tools/ant/launch Locator.java

2004-04-03 Thread Matt Benson
Good point. I'll alter that. :) -Matt --- Martijn Kruithof [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: 1.12 +12 -7 ant/src/main/org/apache/tools/ant/launch/Locator.java Index: Locator.java ===

Re: hotswap via ant

2004-04-02 Thread Matt Benson
the javac has run? Once I get this worked out, I'll clean up the task a little and make it available for everyone to try. (and provide some docs as well!) Thanks, David PS. I tested this by coding a specific class filename, since the date thing isn't working yet. Thus Spoke Matt Benson

Re: nested elements in antlibs

2004-04-01 Thread Matt Benson
silliness: antlib presetdef name=myls xmlns:c=ant:current apply executable=ls c:arg value=-l/ /apply /presetdef /antlib see: http://ant.apache.org/manual/CoreTypes/antlib.html#currentnamespace Peter Matt Benson wrote: I can't figure it out... I am using your exact

Re: hotswap via ant

2004-04-01 Thread Matt Benson
Basically you should make any task as atomic as possible. So all your task would need to know about is a fileset. Then it becomes the user's problem how to select which files to include. One way might be to use a tstamp to set a baseline time, then compile, then use a date file selector to get

Re: hotswap via ant

2004-04-01 Thread Matt Benson
with a list of class files provided via some built-in filtering means. Thanks, David Quoting Matt Benson [EMAIL PROTECTED]: Basically you should make any task as atomic as possible. So all your task would need to know about is a fileset. Then it becomes the user's problem how

Re: antlib and classloaders

2004-04-01 Thread Matt Benson
I'm not sure I followed your suggestion. As far as allowing a way to automagically include stuff without adding it to the base installation, Antoine added the -lib option and Conor extended it to pull all jars from directories on (looks like) a path-style argument specified with that option (as

Re: nested elements in antlibs

2004-03-31 Thread Matt Benson
/ /apply /presetdef in an antlib at package test and used: project xmlns:t=antlib:test t:myls t:fileset dir=./ /t:myls /project Matt Benson wrote: I am finding that I cannot define the following in an antlib: presetdef name=myexecutable apply executable

nested elements in antlibs

2004-03-30 Thread Matt Benson
I am finding that I cannot define the following in an antlib: presetdef name=myexecutable apply executable=myexecutable arg value=-f / /apply /presetdef and reference it with a namespace, due to the fact that the nested elements keep the default namespace, even using the myexecutable

Re: [GUMP@lsd]: ant/ant-testutil failed

2004-03-28 Thread Matt Benson
Can someone explain to me how to go about determining the reason for the failure, as far as what happened with Gump? I must assume my recent load of changes bears a great chance of being responsible, but I'm unsure how to diagnose the problem as Gump sees it. Thanks, Matt --- Gump Integration

Re: cvs commit: ant/src/testcases/org/apache/tools/ant/taskdefs ExecTaskTest.java ExecuteOnTest.java JavaTest.java

2004-03-27 Thread Matt Benson
These changes obviously amount to quite a heap of code, and in retrospect I probably should have used the sandbox, but oh well... anyway, I sincerely hope that nothing is broken and that somebody will find this useful. As to the problems I had encountered with transcoding (thanks for that feature

Re: import task from a resource

2004-03-25 Thread Matt Benson
--- Mariano Benitez [EMAIL PROTECTED] wrote: In order to solve a problem related to classloaders, I need to bundle an include file (include.xml) so I can define the task in a classpath different from the antlib classpath. [SNIP] I can implement this and provide the patch, is this valid

Re: import task from a resource

2004-03-25 Thread Matt Benson
--- Mariano Benitez [EMAIL PROTECTED] wrote: that is way too much, I wanted a simpler solution FOR ME, not for the import task. Anyway, the basedir attribute, isn't inherited from the importing build? No, see import's manual page... -Matt __ Do you

RE: Pb with unzip+trycatch+delete

2004-03-19 Thread Matt Benson
--- Jose Alberto Fernandez [EMAIL PROTECTED] wrote: From: Steve Loughran [mailto:[EMAIL PROTECTED] we could always add a System.gc task :) +1 - I think this could be an easy way of controlling some of this issues in particular in the possible presence of 3rd party tasks that may

Re: Pb with unzip+trycatch+delete

2004-03-17 Thread Matt Benson
--- Steve Loughran [EMAIL PROTECTED] wrote: we could always add a System.gc task :) I thought of this too, but mostly just to scare myself. __ Do you Yahoo!? Yahoo! Mail - More reliable, more storage, less spam http://mail.yahoo.com

RE: Pb with unzip+trycatch+delete

2004-03-16 Thread Matt Benson
--- Dominique Devienne [EMAIL PROTECTED] wrote: From: Peter Reilly Have you tried the lastest cvs version of the delete task, Matt has added a System.gc to the Delete#delete method which solves a lot of timing issues with windows. Nope, I'm running 1.6.0. But it's always scary to me

RE: Pb with unzip+trycatch+delete

2004-03-16 Thread Matt Benson
--- Dominique Devienne [EMAIL PROTECTED] wrote: Don't get me wrong Matt, no question what you're doing is the right thing, since it fixes real problems. But I always hate it when we litter our code with turn arounds for bugs. No other solution here, but I wish SUN would fix their VMs

Re: Pb with unzip+trycatch+delete

2004-03-16 Thread Matt Benson
(and there was just such bug in ANT about not closing a stream and I think it was in 1.6.0 too). While there are bugs in JDK, I do not think we should blame it first. - Alexey. Dominique Devienne wrote: From: Matt Benson [mailto:[EMAIL PROTECTED] Nope, I'm running 1.6.0. But it's

Re: encoding stuff

2004-03-15 Thread Matt Benson
of the java.net and java.io classes that let you specify the encoding. Hope this helps! Dale Matt Benson wrote: Ack! I am in the final stages of I/O redirection. In fact, I was about to commit my changes when I cross-tested my last test case--transcoding--and found

encoding stuff

2004-03-13 Thread Matt Benson
Ack! I am in the final stages of I/O redirection. In fact, I was about to commit my changes when I cross-tested my last test case--transcoding--and found that it fails on Solaris with Sun JDK 1.4.2, but passes with Sun JDK 1.2.2. Does anyone have any helpful information on this phenomenon?

Re: cvs commit: ant/docs/manual/CoreTypes mapper.html

2004-03-12 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: One nit, though. I don't like the name ContainerMapper. MapperContainer? CompositeMapper? Mine was called CompositeMapper. We ended up going with Peter's implementation, which was simpler and included the paradigm shift (defs). Peter's version

Re: cvs commit: ant/docs/manual/CoreTypes mapper.html

2004-03-12 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: Thanks for committing the code and documenenting and writting the unit-tests! Peter Well, I wouldn't have done it if I hadn't really wanted to get an implementation in place. :) Multiple-result mappers are the complement of the nested redirectors

Re: cvs commit: ant/docs/manual/CoreTypes mapper.html

2004-03-11 Thread Matt Benson
Most of the code is Peter's, to give credit where it's due. Peter, what was the reason you wanted this to wait until 1.7? -Matt __ Do you Yahoo!? Yahoo! Search - Find what you’re looking for faster http://search.yahoo.com

Re: Mixed-media Tasks was Extension to Manifest task?

2004-03-04 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: On Wed, 3 Mar 2004, Craig Berry [EMAIL PROTECTED] wrote: The fit turns out to be rather awkward. Doesn't look that bad to me. ... I understand that this operation may be common to build a Class-Path attribute for arbitrary manifests, so

Re: cvs commit: ant/src/script ant

2004-03-03 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: On Tue, 2 Mar 2004, Matt Benson [EMAIL PROTECTED] wrote: This is in the part I've committed for the jpackage folks, right? Actually, I think it was from the previous change to avoid escaping the quote on the command line when certain paths ended

RE: depends/ and no-op output

2004-03-02 Thread Matt Benson
--- Jose Alberto Fernandez [EMAIL PROTECTED] wrote: However, I may be willing to accept, grudgingly, that this be change in ANT 1.7 only and not backported to ANT 1.6.x. So we treat this as a new feature of the task on the new mayor release. If someone has an obscure usage of this or other

Re: depends/ and no-op output

2004-03-02 Thread Matt Benson
--- Conor MacNeill [EMAIL PROTECTED] wrote: Yep. Let's just do it. I'm the original offender. Original offender? -Matt __ Do you Yahoo!? Yahoo! Search - Find what you’re looking for faster http://search.yahoo.com

Re: Ant scripts

2004-03-02 Thread Matt Benson
--- Antoine_Lévy-Lambert [EMAIL PROTECTED] wrote: A colleague of mine told me that ant 1.6 has problems if ANT_HOME or JAVA_HOME are UNC paths ( \\somemachine\mountpoint\.) This problem shows up starting ant with ant.bat. I need to confirm this problem. Never thought of that. I get

Re: Ant scripts

2004-03-02 Thread Matt Benson
--- Matt Benson [EMAIL PROTECTED] wrote: --- Antoine_Lévy-Lambert [EMAIL PROTECTED] wrote: A colleague of mine told me that ant 1.6 has problems if ANT_HOME or JAVA_HOME are UNC paths ( \\somemachine\mountpoint\.) This problem shows up starting ant with ant.bat. I need

Re: cvs commit: ant/src/script ant

2004-03-02 Thread Matt Benson
Don't be fooled--this doesn't fix the big UNC problem, just addresses a quick typo. -Matt --- [EMAIL PROTECTED] wrote: mbenson 2004/03/02 13:57:42 Modified:src/script ant Log: Fix typo. Revision ChangesPath 1.47 +1 -1 ant/src/script/ant Index:

Re: multi-result mappers

2004-03-01 Thread Matt Benson
To re-hash: --- Peter Reilly [EMAIL PROTECTED] wrote: The patch makes the mapper class to be a container of filenamemapper objects in the same way that conditionbase is a container of conditions. The two forms are allowed and are equivalent. The second from allows more filename mappers

Re: depends/ and no-op output

2004-03-01 Thread Matt Benson
--- Rob Oxspring [EMAIL PROTECTED] wrote: One of my (very few) pet hates with ant is that the depends task displays something when it performs a no-op. This I was wondering if there was any point in preparing a patch to not output/log if 0 files have been deleted. The patch / change

RE: depends/ and no-op output

2004-03-01 Thread Matt Benson
--- Jose Alberto Fernandez [EMAIL PROTECTED] wrote: From: Matt Benson [mailto:[EMAIL PROTECTED] Since the current behavior does not really qualify as a bug, it is not safe to assume that a change to the default behavior of a task would not break someone's build. OK, why would

Re: Urgent Please help with invoking ftp client on windows with a nt

2004-02-27 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: On Thu, 26 Feb 2004, Matt Benson [EMAIL PROTECTED] wrote: I'm not sure what happens to messages from non-members. They end up in the moderation queue and need approval by a moderator (Conor and myself, currently). I thought I remembered

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs ExecuteOn.java

2004-02-27 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: +* apply didn't compare timestamps of source and targetfiles when + using a nested filelist. Bugzilla Report 26985. Damn it, Stefan... now I have to merge changes together... :) __ Do you Yahoo!? Get better spam protection

Re: BugID 27282 Misspelling: s/occured/occurred/g

2004-02-27 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: occured does look like it is mispelt! Peter +1, contrast misspell. dictionary.com has both misspelled and misspelt, so we can credit it with some degree of fairness: http://dictionary.reference.com/search?q=misspell -Matt

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs PathConvert.java

2004-02-27 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: mbenson 2004/02/27 15:23:06 Modified:docs/manual/CoreTasks pathconvert.html .WHATSNEW src/main/org/apache/tools/ant/taskdefs PathConvert.java Log: Add nested mappers to pathconvert. PR: 26364

Re: PropertySet

2004-02-26 Thread Matt Benson
--- Steve Cohen [EMAIL PROTECTED] wrote: How do you negate a non-boolean property? How do you negate null? Answer: You don't. You negate the selection criteria, not the values... :) example: !-- properties that match re ^foo\..* -- propertyset id=foo.props prefix=foo / !-- everything

RE: Closing down ant-dev@jakarta and ant-user@jakarta?

2004-02-26 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: +1 for closing. +1. -Matt __ Do you Yahoo!? Get better spam protection with Yahoo! Mail. http://antispam.yahoo.com/tools - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Urgent Please help with invoking ftp client on windows with ant

2004-02-26 Thread Matt Benson
--- Majumdar, Anamitra [EMAIL PROTECTED] wrote: Can somebody tell me how do I call windows ftp client shell from and using the exec or apply task I am using syntax exec dir=${Outgoing.Input.Directory}/ftp executable=c:/winnt/system32/ftp.exe arg

RE: Urgent Please help with invoking ftp client on windows with a nt

2004-02-26 Thread Matt Benson
--- Majumdar, Anamitra [EMAIL PROTECTED] wrote: What is the e-mail id for ant users list. user@ant.apache.org __ Do you Yahoo!? Get better spam protection with Yahoo! Mail. http://antispam.yahoo.com/tools

RE: Urgent Please help with invoking ftp client on windows with a nt

2004-02-26 Thread Matt Benson
--- Majumdar, Anamitra [EMAIL PROTECTED] wrote: Hi did send my query to user's list but did not receive a reply. Can you please provide me with an answer Hmm. I never saw a post come through the user list. Are you subscribed? I'm not sure what happens to messages from non-members. -Matt

Re: cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java

2004-02-25 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: + - You have misspelt ' + have spelt wrong or not + lSep Do we get to have another long discussion about the spellings of words related to spelling now? ;) __ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the

Re: cvs commit: ant/src/main/org/apache/tools/ant UnknownElement.java

2004-02-25 Thread Matt Benson
--- Steve Loughran [EMAIL PROTECTED] wrote: Actually I didnt add the word misspelt; that bit was already there. I just indented the text there in a desparate attempt to improve readability. I worry that that error message is too long. Doh--I wondered why it looked so familiar. -Matt

Re: cvs diff format

2004-02-24 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: Check the contents of your ~/.cvsrc file. Hmmm. I didn't have one. Maybe it was inadvertently blown away... It should have a line: diff -u That did it. Thanks Peter! -Matt __ Do you Yahoo!? Yahoo! Mail

Re: Authors tag

2004-02-23 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: Matt Benson wrote: - author tags are officially discouraged. these I noticed this too. Could we change the checkstyle config to allow only whitespace as the @author parameter as a relatively safe starting point, I have modified

cvs diff format

2004-02-23 Thread Matt Benson
Hmm... formerly, when I would use cvs diff somefile, the -u format would be used by default. Then out of nowhere the regular diff format starts being used by default. Does anyone know of a setting of some sort that would cause this? Thanks, Matt __ Do you

RE: [GUMP@lsd]: ant/test-ant failed

2004-02-20 Thread Matt Benson
--- Jose Alberto Fernandez [EMAIL PROTECTED] wrote: +1 for (1). Another +1 for (1). -Matt On Fri, 20 Feb 2004, Jan Materne [EMAIL PROTECTED] wrote: 1. multiple targets defined in ONE buildfile is an error, while definitions via import is correct -- modify the test (more

Re: cvs commit: ant WHATSNEW

2004-02-20 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: Opps, hit the send button too early. I meant to say good catch! ;) __ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools

Re: cvs commit: ant/xdocs contributors.xml

2004-02-20 Thread Matt Benson
Too lazy to figure out how to set up a jakarta-site2 directory, so I hope this (seemingly simple) addition works. --- [EMAIL PROTECTED] wrote: mbenson 2004/02/20 07:05:37 Modified:xdocscontributors.xml Log: Added me. Revision ChangesPath 1.25 +5 -1

Re: file system abstraction was Ant 1.7

2004-02-20 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: On Wed, 18 Feb 2004, Matt Benson [EMAIL PROTECTED] wrote: I am not necessarily in favor of adding vfs or anything else as a core dependency, but there are only so many ways we can go. I for one would be delighted to hear any ideas

Re: apply outputproperty errorproperty

2004-02-19 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: On Wed, 18 Feb 2004, Matt Benson [EMAIL PROTECTED] wrote: Contract: apply's outputproperty and errorproperty attributes will behave as output and error attributes with regard to the append attribute. Sounds absolutely reasonable to me

RE: apply outputproperty errorproperty

2004-02-19 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: On the user list there was a wish to enable javadoc to be more quite. I took a look at the source and saw that it should be possible to add the redirector helper, see [1]. The I reminded this thread (which I haven´t followed so deeply :) and I think javadoc

concat nested text

2004-02-19 Thread Matt Benson
Is there a reason why nested text in concat is undocumented, or is this merely an oversight? -Matt __ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools

Re: oata.ExecuteOnTest fails (Redirector)

2004-02-18 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: On my machine (W2K, JDK 1.4.2) the ExecuteOnTest fails. Are you working on that, Matt? Jan Ow. Yeah, the tests rely on either Cygwin or Un*x for some common executables... But an individual target isn't executed when the necessary executable isn't available.

Re: oata.ExecuteOnTest fails (Redirector)

2004-02-18 Thread Matt Benson
--- Matt Benson [EMAIL PROTECTED] wrote: --- [EMAIL PROTECTED] wrote: On my machine (W2K, JDK 1.4.2) the ExecuteOnTest fails. Are you working on that, Matt? Ow. Yeah, the tests rely on either Cygwin or Un*x for some common executables... But an individual target isn't executed when

AntLikeTasksAtTopLevelTest

2004-02-18 Thread Matt Benson
For quite some time now (ever since I have dealt with the Ant testcases) I have had this test fail every time. Does this happen to anyone else? It seems that the expected exception message is different from the actual due to the fact that the actual message has been wrapped by

Re: apply outputproperty errorproperty

2004-02-18 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: bug in this case. For append=false I'm not sure, but we can always point to the manual that says that you want to set it to true in non-parallel executions. Okay if I roll this into nested redirectors? Contract: apply's outputproperty and

Re: AntLikeTasksAtTopLevelTest

2004-02-18 Thread Matt Benson
--- Antoine_Lévy-Lambert [EMAIL PROTECTED] wrote: Hi Matt, this test fails for me under *cygwin* too, and I must admit that I did not dig into it more than that. Wild, it never occurred to me to try it from CMD. Does anyone else have any inkling what might cause the difference? -Matt

Re: Ant 1.7

2004-02-16 Thread Matt Benson
Sorry all for the long post, bear with me... --- Antoine_Lévy-Lambert [EMAIL PROTECTED] wrote: 4) think about virtual file system abstractions, and do something about them, Since this virtual file system stuff is a biggie, it should be thought of and discussed upfront. Antoine, I am

Re: apply outputproperty errorproperty

2004-02-16 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: The apply task attempts to set these properties after each invocation of the executable so that limited or non-parallel execution does not necessarily yield the expected results. Does it even do so if append is false? true, I meant.

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Delete.java

2004-02-16 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: Stefan Bodewig wrote: welcome Matt +1 congrats... Peter :) -Matt __ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Delete.java

2004-02-16 Thread Matt Benson
--- Antoine_Lévy-Lambert [EMAIL PROTECTED] wrote: +10 Matt: This is going to save the face of the next guy preparing an ant release on Windows. ;-) Antoine Let's hope so... :) -Matt __ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online.

Re: Ant 1.6.1 release / md5sum missing in the source distribution

2004-02-13 Thread Matt Benson
--- Antoine_Lévy-Lambert [EMAIL PROTECTED] wrote: Now I have found the reason why I did not generate the md5sum files when building the ant 1.6.1 distribution. the delete task in the src-dist target failed, and md5sum files are normally generated after this delete. I had not paid

Re: roles, restricted types

2004-02-12 Thread Matt Benson
--- Peter Reilly [EMAIL PROTECTED] wrote: Hi, I have reactivated my code for restricted/roled types. I like this... :) The user-level issues would be: Is the attribute contact a good name for this attribute (use role, restrict, instanceof or ?). I kind of like contract, but role is

apply outputproperty errorproperty

2004-02-12 Thread Matt Benson
The apply task attempts to set these properties after each invocation of the executable so that limited or non-parallel execution does not necessarily yield the expected results. Is this: [ ] a bug that needs correction [ ] a feature that needs documentation ? -Matt

Re: cvs commit: ant/src/main/org/apache/tools/ant/launch Launcher .java

2004-02-11 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: On Wed, 11 Feb 2004, Dominique Devienne [EMAIL PROTECTED] wrote: Why go for 'ant.library.dir' instead of 'ant.library.dirs'? This is only peripherally related... this has been discussed briefly before, but I never received a satisfactory answer.

Re: output redirectors

2004-02-10 Thread Matt Benson
--- Stefan Bodewig [EMAIL PROTECTED] wrote: You miss encoding attributes. Ah--I am by my own admission a little ignorant on encoding concepts... tunnel vision. I'll have to work on that. Would it make sense here to create a new core FilterReader for encoding conversions, and let that be the

<    5   6   7   8   9   10   11   >