DO NOT REPLY [Bug 10686] - Upgrade your version number

2002-11-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10686. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

[lang] Validate.java

2002-11-25 Thread Ola Berg
By the way, I promised some time ago to make a Validate class. Well, here is a first cut at it. Improvements, disapprovements etc are welcome as usual. /O package org.apache.commons.lang; /* * The Apache Software License,

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/core FileTag.java

2002-11-25 Thread jstrachan
jstrachan2002/11/25 05:43:37 Modified:jelly/src/java/org/apache/commons/jelly/tags/core FileTag.java Log: Applied patch supplied by Alexei Barantsev for issue Jelly-14 http://jira.werken.com/secure/ViewIssue.jspa?key=JELLY-14 Revision Changes

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/util LoadTextTag.java

2002-11-25 Thread jstrachan
jstrachan2002/11/25 06:29:07 Modified:jelly/src/java/org/apache/commons/jelly/tags/util LoadTextTag.java Log: patched bug which incorrectly kept open the Reader that is used to load text from a file Revision ChangesPath 1.4 +28 -12

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/ant AntTag.java

2002-11-25 Thread jstrachan
jstrachan2002/11/25 06:31:56 Modified:jelly/src/test/org/apache/commons/jelly/ant suite.jelly jelly/src/java/org/apache/commons/jelly/tags/ant AntTag.java Log: Patch and test case for the use case brought up by Stefan recently that an Ant Task can be nested inside a

Re: [lang] Release 1.0.1 test cut

2002-11-25 Thread Andy_Freeman
I have only used the ToStringBuilder class out of the builders package. Has anyone tried the other builders to see how they work in subclasses? http://issues.apache.org/bugzilla/show_bug.cgi?id=14447 Thanks, Andy

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/junit AssertEqualsTag.java

2002-11-25 Thread jstrachan
jstrachan2002/11/25 07:02:47 Modified:jelly/src/java/org/apache/commons/jelly/tags/junit AssertEqualsTag.java Log: Fixed typeo found by Knut Wannheden. Revision ChangesPath 1.4 +1 -1

[GUMP] [GUMP] Build Failure - commons-email

2002-11-25 Thread dIon Gillard
This email is autogenerated from the output from: http://cvs.apache.org/builds/gump/2002-11-25/commons-email.html Buildfile: build-gump.xml jar: [mkdir] Created dir:

[GUMP] Build Failure - commons-vfs

2002-11-25 Thread commons-vfs development
This email is autogenerated from the output from: http://cvs.apache.org/builds/gump/2002-11-25/commons-vfs.html Buildfile: build.xml init: [mkdir] Created dir:

Inheritence and ToStringBuilder (Was: [lang] Release 1.0.1 test cut)

2002-11-25 Thread Henri Yandell
Not that I know of Andy. I don't think it's a bug that anyone is arguing with and as far as I'm aware it will be addressed in 1.1 as it's a design bug rather than an implementation bug. You mention adding an appendSuper method to handle trimming the prefix etc. If you could submit this idea as a

Re: [general] Killing projects (Was: [pattern] Proposed removal of project)

2002-11-25 Thread Morgan Delagrange
--- Henri Yandell [EMAIL PROTECTED] wrote: This would then be applied to other projects, for example: patterns, cjan, altrmi, armi, cadastre, graph, latka/latka-webapp? Hen Latka's not dead. :) At least two developers have made commits within the last two months:

RE: [general] Killing projects (Was: [pattern] Proposed removal of project)

2002-11-25 Thread O'brien, Tim
[codec] sat around for 8 months with no activity. It wasn't being displayed on the website, and it contained 3 classes that used to be available in [lang] ( I think.. ).This dormant project came in handy for me - I needed Soundex and Metaphone. My point isn't to start any confrontation, I'm

Re: [general] Killing projects (Was: [pattern] Proposed removal ofproject)

2002-11-25 Thread Nicola Ken Barozzi
O'brien, Tim wrote: [codec] sat around for 8 months with no activity. It wasn't being displayed on the website, and it contained 3 classes that used to be available in [lang] ( I think.. ).This dormant project came in handy for me - I needed Soundex and Metaphone. My point isn't to start

[lang] unused variables in MethodUtils

2002-11-25 Thread Andy_Freeman
The methodName and parameterTypes variables are never used. public static Method getAccessibleMethod(Method method) { ... // Check the implemented interfaces and subinterfaces String methodName = method.getName(); Class[] parameterTypes = method.getParameterTypes();

[lang] notifier bug?

2002-11-25 Thread Andy_Freeman
Is the this.clss assignment correct? Shouldn't it be this.clss = listener? public Notifier(Class listener) { if(listener == null) { throw new IllegalArgumentException(Illegal to have a null listener Class. ); } this.clss = clss; // now we check

Re: [general] Killing projects (Was: [pattern] Proposed removal of project)

2002-11-25 Thread bob mcwhirter
Also, consider the larger issue that obliterating it as a project also destroys the ASF's intellectual property. Probably not something wise to do all willy-nilly. -bob On Mon, 25 Nov 2002, Nicola Ken Barozzi wrote: O'brien, Tim wrote: [codec] sat around for 8 months with no

Re: [general] Killing projects (Was: [pattern] Proposed removal ofproject)

2002-11-25 Thread Henri Yandell
I don't agree. Look at it from the point of the Incubator project, these are projects which failed to make it in. Codec is not a good example as it is still in the state of trying to get in. Something like Patterns is accepted as not making its way in. When incubation fails [and that is all

Re: [lang] notifier bug?

2002-11-25 Thread Henri Yandell
Yep. Thought I'd fixed that :) Thanks. On Mon, 25 Nov 2002 [EMAIL PROTECTED] wrote: Is the this.clss assignment correct? Shouldn't it be this.clss = listener? public Notifier(Class listener) { if(listener == null) { throw new IllegalArgumentException(Illegal to

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang Notifier.java

2002-11-25 Thread bayard
bayard 2002/11/25 09:35:57 Modified:lang/src/java/org/apache/commons/lang Notifier.java Log: Bugfix, classic this.foo = this.foo error. Noticed by Andy Freeman. Revision ChangesPath 1.4 +1 -1

Re: [general] Killing projects (Was: [pattern] Proposed removalof project)

2002-11-25 Thread Janek Bogucki
From: Morgan Delagrange [EMAIL PROTECTED] Reply-To: Jakarta Commons Developers List [EMAIL PROTECTED] Date: Mon, 25 Nov 2002 08:11:47 -0800 (PST) To: Jakarta Commons Developers List [EMAIL PROTECTED] Subject: Re: [general] Killing projects (Was: [pattern] Proposed removal of project)

Re: [Collections] SoftRefHashMap.purge throws ConcurrentModificationException

2002-11-25 Thread Eduardo Francos
In article 009b01c293df$aea47a00$9e2529d9@oemcomputer, Stephen Colebourne wrote: I have applied the suggested fix, as it appears to be sensible, thanks. However, we now advise using ReferenceMap instead of SoftRefHashMap, as the latter is severly broken. Stephen Thanks, I got the new

cvs commit: jakarta-commons-sandbox/jelly project.xml

2002-11-25 Thread jstrachan
jstrachan2002/11/25 10:40:44 Modified:jelly/src/java/org/apache/commons/jelly/tags/jetty ResponseBodyTag.java jellyproject.xml Log: Patch to use the latest version of Jetty which should hopefully fix the GUMP build problems. Revision

cvs commit: jakarta-commons-sandbox/dbutils STATUS.html

2002-11-25 Thread bayard
bayard 2002/11/25 11:59:59 Modified:dbutils STATUS.html Log: Added Juozas' Handler stuff to the todo Revision ChangesPath 1.14 +2 -1 jakarta-commons-sandbox/dbutils/STATUS.html Index: STATUS.html

[beanutils] PropertyUtils.setProperty on classes which extend Map

2002-11-25 Thread robert burrell donkin
this one is in bugzilla http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14440 i've got a test case which shows that classes which extend map don't have the setter called, instead the value is place into the map. i'm also willing to take a look at creating a fix. just wanted to check that:

RE: runtime attributes

2002-11-25 Thread Jon Tirsén
Ok, I admit it, I sidetracked a bit about the ClassMetaData thing. God, I wish I could develop open-source with pair-programming. Your opinions made me snap out of it and I had another go today. So I had the Extractor - ant task - Writer model which required the ClassMetaData containing all

cvs commit: jakarta-commons-sandbox/vfs project.xml

2002-11-25 Thread adammurdoch
adammurdoch2002/11/25 13:34:16 Modified:vfs project.xml Log: Add Junit as a dependency again. Revision ChangesPath 1.13 +5 -0 jakarta-commons-sandbox/vfs/project.xml Index: project.xml

cvs commit: jakarta-commons-sandbox/vfs build.xml

2002-11-25 Thread adammurdoch
adammurdoch2002/11/25 13:36:21 Modified:vfs build.xml Log: Removed absolute paths from build file. Revision ChangesPath 1.8 +74 -74jakarta-commons-sandbox/vfs/build.xml Index: build.xml

Re: [beanutils] PropertyUtils.setProperty on classes which extendMap

2002-11-25 Thread Craig R. McClanahan
On Mon, 25 Nov 2002, robert burrell donkin wrote: Date: Mon, 25 Nov 2002 20:01:15 + From: robert burrell donkin [EMAIL PROTECTED] Reply-To: Jakarta Commons Developers List [EMAIL PROTECTED] To: Jakarta Commons Developers [EMAIL PROTECTED] Subject: [beanutils] PropertyUtils.setProperty

cvs commit: jakarta-commons/xdocs lang.xml

2002-11-25 Thread bayard
bayard 2002/11/25 15:37:04 Modified:docs lang.html xdocslang.xml Log: Added bug report links. Revision ChangesPath 1.22 +2 -1 jakarta-commons/docs/lang.html Index: lang.html

Re: cvs commit: jakarta-commons-sandbox/vfs build.xml

2002-11-25 Thread dion
Adam, were these paths generated by Maven's descriptor-generation? -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au [EMAIL PROTECTED] wrote on 26/11/2002 08:36:21 AM: adammurdoch2002/11/25 13:36:21

cvs commit: jakarta-commons-sandbox/configuration .cvsignore

2002-11-25 Thread dion
dion2002/11/25 16:29:36 Modified:configuration .cvsignore Log: Added maven log Revision ChangesPath 1.2 +1 -0 jakarta-commons-sandbox/configuration/.cvsignore Index: .cvsignore ===

[ANN] Apache Jakarta Commons Lang 1.0.1

2002-11-25 Thread Henri Yandell
The Commons Lang team would like to announce the release of version 1.0.1. This version solves eight implementation bugs that have been found, most notably that NumberRange.getMaximum returns the minimum [how we blushed]. No methods was added and no methods were deprecated. More information on

Re: cvs commit: jakarta-commons-sandbox/vfs build.xml

2002-11-25 Thread dion
What did you do to get them to turn up? -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au Adam Murdoch [EMAIL PROTECTED] wrote on 26/11/2002 11:15:36 AM: On Tue, 26 Nov 2002 10:15 am, [EMAIL PROTECTED] wrote:

Re: cvs commit: jakarta-commons-sandbox/vfs build.xml

2002-11-25 Thread dion
With the following change to vfs/build.properties maven.jarResources.basedir=${basedir}/src/java to maven.jarResources.basedir=src/java It looks ok on my end. Mind If I commit it? -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work:

Re: cvs commit: jakarta-commons-sandbox/vfs build.xml

2002-11-25 Thread Adam Murdoch
On Tue, 26 Nov 2002 02:09 pm, [EMAIL PROTECTED] wrote: With the following change to vfs/build.properties maven.jarResources.basedir=${basedir}/src/java to maven.jarResources.basedir=src/java It looks ok on my end. Mind If I commit it? Not at all. Thanks for sorting it out. -- Adam --

cvs commit: jakarta-commons/digester .cvsignore

2002-11-25 Thread dion
dion2002/11/25 20:05:22 Modified:digester .cvsignore Added: digester/xdocs .cvsignore Log: Ignore various maven files Revision ChangesPath 1.1 jakarta-commons/digester/xdocs/.cvsignore Index: .cvsignore

cvs commit: jakarta-commons-sandbox/vfs project.properties

2002-11-25 Thread dion
dion2002/11/25 20:10:35 Modified:vfs project.properties Log: Fix for badly generated ant build file Revision ChangesPath 1.8 +1 -1 jakarta-commons-sandbox/vfs/project.properties Index: project.properties