svn commit: r373258 - in /jakarta/commons/sandbox/exec/trunk/src: main/java/org/apache/commons/exec/ main/java/org/apache/commons/exec/environment/ main/java/org/apache/commons/exec/launcher/ test/jav

2006-01-28 Thread ngn
Author: ngn Date: Sat Jan 28 15:15:24 2006 New Revision: 373258 URL: http://svn.apache.org/viewcvs?rev=373258&view=rev Log: Patch replacing Enviroment class with Map (in line with Java 1.5) as suggested by Jerome Lacoste and myself (bugzilla 37951) Added: jakarta/commons/sandbox/exec/trunk/

[IO][PATCH] - RegexFilter support

2006-01-28 Thread Oliver Siegmar
Hello, attatched to this mail is a RegexFilter (as well as a testcase for it) for the commons-io filefilter package. I'd like to share this work with others, hope you can add it. If there's anything that has to be done before inclusion, let me know. Best Oliver commons-io_regexfilter.patch

svn commit: r373263 - in /jakarta/commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec: Exec.java Execute.java ExecuteException.java ExecuteWatchdog.java

2006-01-28 Thread ngn
Author: ngn Date: Sat Jan 28 16:15:04 2006 New Revision: 373263 URL: http://svn.apache.org/viewcvs?rev=373263&view=rev Log: Specialized ExecuteException to handling failed executions only (with exit values). In other cases, throws IOException instead. Modified: jakarta/commons/sandbox/exec/

Re: [Javaflow] Continuation questions

2006-01-28 Thread Kohsuke Kawaguchi
Jean Morissette wrote: Hi developers, I'm the lead developer of the JCyclone project http://jcyclone.sourceforge.net/ and I'm very interested by Java continuation. I want to use continuations in JCyclone as logical threads and create a fine-grained predictable thread scheduler. You may want

DO NOT REPLY [Bug 37951] - [exec] Replace Environment with Map

2006-01-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: [net] JDK 1.4+ Branch?

2006-01-28 Thread Steve Cohen
Right. That is the question we have to answer. I guess I'm okay with it but I'm not quite a +1 yet until I understand how much work is involved. I notice a couple of the Jakarta Commons projects do separate branches: Collections and HttpClient. There may be others, these were just the one

Re: [net] JDK 1.4+ Branch?

2006-01-28 Thread Rory Winston
Steve Agreed that JDK 1.3 (and previous) is still important to support. My question is: is it desirable to put a 1.4+ version on HEAD and relegate JDK 1.3 to a separate branch, or do we not want to get into separate branch maintenance? R Steve Cohen wrote: Rory Winston wrote: Hi I have

Re: [IO][PATCH] - RegexFilter support

2006-01-28 Thread Oliver Siegmar
On Saturday 28 January 2006 21:37, Stephen Colebourne wrote: > Oliver Siegmar wrote: > > I'll add a ticket to bugzilla if this request is getting lost... > > A bugzilla ticket is best. > > However, commons-io is JDK1.2 compatible, so unless we create a 1.4 or > 1.5 branch we'll be unable to include

RE: [proxy] Nightly Builds...

2006-01-28 Thread James Carman
I agree. I don't know why they are included. The jar files aren't in SVN. If it's a source distribution, shouldn't it just be exactly what's in SVN (a fresh checkout)? It looks like it's using an older version of the build.xml file, or the artifacts are still hanging around (the directory isn't

Re: [net] JDK 1.4+ Branch?

2006-01-28 Thread Steve Cohen
Rory Winston wrote: Hi I have been following the email threads re: JSSE and FTPS functionality. I think that this might be a good point to consider introducing a version of Commons-Net that uses JDK 1.4+ as a baseline. My reasoning is as follows: * We could remove the (oro) jar dependency;

Re: [IO][PATCH] - RegexFilter support

2006-01-28 Thread Stephen Colebourne
Oliver Siegmar wrote: I'll add a ticket to bugzilla if this request is getting lost... A bugzilla ticket is best. However, commons-io is JDK1.2 compatible, so unless we create a 1.4 or 1.5 branch we'll be unable to include a Regexp filter. Stephen --

[net] JDK 1.4+ Branch?

2006-01-28 Thread Rory Winston
Hi I have been following the email threads re: JSSE and FTPS functionality. I think that this might be a good point to consider introducing a version of Commons-Net that uses JDK 1.4+ as a baseline. My reasoning is as follows: * We could remove the (oro) jar dependency; * FTPS support would

Re: [IO][PATCH] - RegexFilter support

2006-01-28 Thread Oliver Siegmar
On Saturday 28 January 2006 21:05, Rahul Akolkar wrote: > Patches can and do get picked up right off of the mailing list, but I > tend to attach patches to bugzilla tickets, since I feel that patches > posted on the dev list risk getting "lost" if not picked up soon. A > bugzilla ticket will ensure

svn commit: r373243 - /jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/SocketClient.java

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 12:26:50 2006 New Revision: 373243 URL: http://svn.apache.org/viewcvs?rev=373243&view=rev Log: Added getter/setter for Input/OutputStream Modified: jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/SocketClient.java Modified

svn commit: r373242 - /jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/ftp/FTP.java

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 12:26:11 2006 New Revision: 373242 URL: http://svn.apache.org/viewcvs?rev=373242&view=rev Log: Removed dependency on TelnetClient Modified: jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/ftp/FTP.java Modified: jakarta/co

Re: [IO][PATCH] - RegexFilter support

2006-01-28 Thread Rahul Akolkar
On 1/28/06, Oliver Siegmar <[EMAIL PROTECTED]> wrote: > Hello, > > attatched to this mail is a RegexFilter (as well as a testcase for it) for the > commons-io filefilter package. > > I'd like to share this work with others, hope you can add it. > > > If there's anything that has to be done before i

[IO][PATCH] - RegexFilter support

2006-01-28 Thread Oliver Siegmar
Hello, attatched to this mail is a RegexFilter (as well as a testcase for it) for the commons-io filefilter package. I'd like to share this work with others, hope you can add it. If there's anything that has to be done before inclusion, let me know. Best Oliver commons-io_regexfilter.patch

svn commit: r373217 - in /jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow: Continuation.java bytecode/ContinuationDeath.java bytecode/StackRecorder.java

2006-01-28 Thread kohsuke
Author: kohsuke Date: Sat Jan 28 11:04:48 2006 New Revision: 373217 URL: http://svn.apache.org/viewcvs?rev=373217&view=rev Log: implemented Continuation.exit() Added: jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/ContinuationDeath.java (with props) M

svn commit: r373215 - /jakarta/commons/sandbox/javaflow/trunk/project.xml

2006-01-28 Thread kohsuke
Author: kohsuke Date: Sat Jan 28 11:03:52 2006 New Revision: 373215 URL: http://svn.apache.org/viewcvs?rev=373215&view=rev Log: reordered dependency list and classified it into categories. Modified: jakarta/commons/sandbox/javaflow/trunk/project.xml Modified: jakarta/commons/sandbox/javaflow

Re: svn commit: r373208 - /jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/ftp/parser/VMSVersioningFTPEntryParser.java

2006-01-28 Thread Rahul Akolkar
On 1/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Author: rwinston > Date: Sat Jan 28 10:32:02 2006 > New Revision: 373208 > > URL: http://svn.apache.org/viewcvs?rev=373208&view=rev > Log: > Changed to use JDK 1.4 regex functionality > > Modified: > > jakarta/commons/proper/net/branche

svn commit: r373211 - /jakarta/commons/sandbox/scxml/branches/STATELESS_MODEL/BRANCHINFO.txt

2006-01-28 Thread rahul
Author: rahul Date: Sat Jan 28 10:42:10 2006 New Revision: 373211 URL: http://svn.apache.org/viewcvs?rev=373211&view=rev Log: Commons SCXML will have a tradition of including a BRANCHINFO.txt file at the root of every new branch. This file will contain the purpose of the branch, any other releva

svn commit: r373208 - /jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/ftp/parser/VMSVersioningFTPEntryParser.java

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 10:32:02 2006 New Revision: 373208 URL: http://svn.apache.org/viewcvs?rev=373208&view=rev Log: Changed to use JDK 1.4 regex functionality Modified: jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/ftp/parser/VMSVersioningFTP

svn commit: r373207 - /jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/ftp/parser/RegexFTPFileEntryParserImpl.java

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 10:31:11 2006 New Revision: 373207 URL: http://svn.apache.org/viewcvs?rev=373207&view=rev Log: Changed to JD 1.4 regex package Modified: jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/src/java/org/apache/commons/net/ftp/parser/RegexFTPFileEntryParserImpl

svn commit: r373202 - /jakarta/commons/sandbox/scxml/branches/STATELESS_MODEL/

2006-01-28 Thread rahul
Author: rahul Date: Sat Jan 28 10:18:56 2006 New Revision: 373202 URL: http://svn.apache.org/viewcvs?rev=373202&view=rev Log: New branch for work related to decoupling the execution context from the SCXML object model Added: jakarta/commons/sandbox/scxml/branches/STATELESS_MODEL/ - cop

svn commit: r373200 - /jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 10:15:17 2006 New Revision: 373200 URL: http://svn.apache.org/viewcvs?rev=373200&view=rev Log: made a copy Added: jakarta/commons/proper/net/branches/JDK_1_4_BRANCH/ - copied from r373199, jakarta/commons/proper/net/trunk/

Re: [proxy] Nightly Builds...

2006-01-28 Thread Rahul Akolkar
On 1/28/06, James Carman <[EMAIL PROTECTED]> wrote: > All, > > The nightly source code build distributions for Proxy include its > dependencies. I am not sure, but I don't think we're supposed to do that, > are we? While I'm unaware of the specifics of [proxy] (is there any particular reason for

svn commit: r373197 - /jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/JDK_1_4_BRANCH/

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 10:10:59 2006 New Revision: 373197 URL: http://svn.apache.org/viewcvs?rev=373197&view=rev Log: Incorrect branch location Removed: jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/JDK_1_4_BRANCH/ -

svn commit: r373192 - /jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/JDK_1_4_BRANCH/

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 10:00:32 2006 New Revision: 373192 URL: http://svn.apache.org/viewcvs?rev=373192&view=rev Log: Testing new branch creation Added: jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/JDK_1_4_BRANCH/ - copied from r373191, jakarta/commons/p

DO NOT REPLY [Bug 38381] - [net] __openDataConnection does not close ServerSocket after server.accept() timesout

2006-01-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

svn commit: r373191 - /jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/FTPClient.java

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 09:51:49 2006 New Revision: 373191 URL: http://svn.apache.org/viewcvs?rev=373191&view=rev Log: Close ServerSocket resource on IOException Modified: jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/FTPClient.java Modified: jakarta/common

svn commit: r373166 - /jakarta/commons/proper/configuration/trunk/build.xml

2006-01-28 Thread oheger
Author: oheger Date: Sat Jan 28 07:38:22 2006 New Revision: 373166 URL: http://svn.apache.org/viewcvs?rev=373166&view=rev Log: Updated dependencies in ant build scipt Modified: jakarta/commons/proper/configuration/trunk/build.xml Modified: jakarta/commons/proper/configuration/trunk/build.xml

[proxy] Nightly Builds...

2006-01-28 Thread James Carman
All, The nightly source code build distributions for Proxy include its dependencies. I am not sure, but I don't think we're supposed to do that, are we? Isn't there some sort of license restriction? James - To unsubscribe,

Re: [validator] Nightly Builds

2006-01-28 Thread Niall Pemberton
Validator still appears to be broken :-( BeanUtils and Digester also have a problem (and started failing on 22nd when validator did). Niall - Original Message - From: "Craig McClanahan" <[EMAIL PROTECTED]> Sent: Thursday, January 26, 2006 5:48 PM On 1/26/06, Niall Pemberton <[EMAIL PR

DO NOT REPLY [Bug 38400] - [net] org.apache.commons.net.nntp.Article.getReferences() throws ClassCastException

2006-01-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

svn commit: r373149 - /jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/nntp/Article.java

2006-01-28 Thread rwinston
Author: rwinston Date: Sat Jan 28 06:14:29 2006 New Revision: 373149 URL: http://svn.apache.org/viewcvs?rev=373149&view=rev Log: Fixed ClassCastException Modified: jakarta/commons/proper/net/trunk/src/java/org/apache/commons/net/nntp/Article.java Modified: jakarta/commons/proper/net/trunk/

[EMAIL PROTECTED]: Project commons-jelly-tags-define-test (in module commons-jelly) failed

2006-01-28 Thread commons-jelly-tags-define development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-define-test has an issue affecting its community integration.

[EMAIL PROTECTED]: Project commons-jelly-tags-define-test (in module commons-jelly) failed

2006-01-28 Thread commons-jelly-tags-define development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-define-test has an issue affecting its community integration.

[EMAIL PROTECTED]: Project commons-logging-dist (in module jakarta-commons) failed

2006-01-28 Thread Ted Husted
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-logging-dist has an issue affecting its community integration. This issue

[EMAIL PROTECTED]: Project commons-logging-dist (in module jakarta-commons) failed

2006-01-28 Thread Ted Husted
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-logging-dist has an issue affecting its community integration. This issue

[EMAIL PROTECTED]: Project commons-jelly-tags-jsl-test (in module commons-jelly) failed

2006-01-28 Thread commons-jelly-tags-jsl development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-jsl-test has an issue affecting its community integration. Th

[EMAIL PROTECTED]: Project commons-jelly-tags-jsl-test (in module commons-jelly) failed

2006-01-28 Thread commons-jelly-tags-jsl development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-jsl-test has an issue affecting its community integration. Th

[EMAIL PROTECTED]: Project commons-jelly-tags-html (in module commons-jelly) failed

2006-01-28 Thread commons-jelly-tags-html development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-html has an issue affecting its community integration. This i

[EMAIL PROTECTED]: Project commons-jelly-tags-html (in module commons-jelly) failed

2006-01-28 Thread commons-jelly-tags-html development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-html has an issue affecting its community integration. This i

[EMAIL PROTECTED]: Project commons-jelly-tags-swing (in module commons-jelly) failed

2006-01-28 Thread JellySwing development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-swing has an issue affecting its community integration. This

[EMAIL PROTECTED]: Project commons-jelly-tags-swing (in module commons-jelly) failed

2006-01-28 Thread JellySwing development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-swing has an issue affecting its community integration. This

[EMAIL PROTECTED]: Project commons-jelly-tags-xml-test (in module commons-jelly) failed

2006-01-28 Thread commons-jelly-tags-xml development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-xml-test has an issue affecting its community integration. Th

[EMAIL PROTECTED]: Project commons-jelly-tags-xml-test (in module commons-jelly) failed

2006-01-28 Thread commons-jelly-tags-xml development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-xml-test has an issue affecting its community integration. Th

[EMAIL PROTECTED]: Project commons-jelly-test (in module commons-jelly) failed

2006-01-28 Thread commons-jelly development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-test has an issue affecting its community integration. This issue a

[EMAIL PROTECTED]: Project commons-jelly-test (in module commons-jelly) failed

2006-01-28 Thread commons-jelly development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-test has an issue affecting its community integration. This issue a