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

2003-01-09 Thread jstrachan
jstrachan2003/01/09 00:14:51 Modified:jellymaven.xml Log: Removed some old cruft from the maven.xml file. Revision ChangesPath 1.54 +40 -108 jakarta-commons-sandbox/jelly/maven.xml Index: maven.xml

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/primitives/adapters - New directory

2003-01-09 Thread rwaldhoff
rwaldhoff2003/01/09 05:38:33 jakarta-commons/collections/src/java/org/apache/commons/collections/primitives/adapters - New directory -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/primitives TestArrayIntList.java TestArrayUnsignedShortList.java

2003-01-09 Thread rwaldhoff
rwaldhoff2003/01/09 05:40:11 Modified:collections/src/java/org/apache/commons/collections/primitives AbstractRandomAccessIntList.java IntList.java package.html collections/src/test/org/apache/commons/collections/primitives

Re: [clazz] has a new website

2003-01-09 Thread Dmitri Plotnikov
Oops. Thank you, Craig, for fixing this. - Dmitri - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Jakarta Commons Developers List [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 10:40 PM Subject: Re: [clazz] has a new website On Wed, 8 Jan 2003, Dmitri

[GUMP] Build Failure - commons-graph

2003-01-09 Thread commons-graph development
This email is autogenerated from the output from: http://cvs.apache.org/builds/gump/2003-01-09/commons-graph.html Buildfile: build.xml init: [mkdir] Created dir:

[GUMP] Build Failure - commons-latka

2003-01-09 Thread Ted Husted
This email is autogenerated from the output from: http://cvs.apache.org/builds/gump/2003-01-09/commons-latka.html Buildfile: build.xml init: [echo] latka 1.0-dev

[configuration] My thoughts on subsets and defaults

2003-01-09 Thread Herve Quiroz
Hi all, I used to use my own Configuration package, as well as my own logging and command-line arguments handling libraries. Recently I switched to log4j and jakarta-commons-cli. I was planing to migrate my current projects to jakarta-commons-configuration when I discovered some differences in

Re: [collections] ComparableComparator executes all comparisonstwice!?

2003-01-09 Thread Henri Yandell
On Wed, 8 Jan 2003, Stephen Colebourne wrote: If we do go to 3.0, then could we delete the deprecated iterators and comparators in the main package? And if this gets chosen as a fine way to do things, could we document it in the DEV-GUIDE? ie) Unwanted code is deprecated for the next major

Re: [lang][patch] StopWatch: Proposed Patch

2003-01-09 Thread Sean Schofield
Stephen Colebourne wrote: Actually, none of the current methods in DateUtils are suitable for a class named DateUtils or StopWatch. They are all to do with formatting. The ISO patterns should be additional styles in FastDateFormat Ditto SMTP format There was some discussion earlier about

Re: [lang] FastDateFormat Update

2003-01-09 Thread Sean Schofield
Any reason why we can't just delegate the parse() method to the SimpleDateFormat? Wouldn't there be some thread-safety issues there? If not, then this is a possibility. If we don't extend Format, I think it should be called FastDateFormatter. How about we call it FastDateFormatter?

DO NOT REPLY [Bug 15925] New: - [resources] use java 1.4

2003-01-09 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=15925. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [configuration] My thoughts on subsets and defaults

2003-01-09 Thread Henning P. Schmiedehausen
Herve Quiroz [EMAIL PROTECTED] writes: Hi all, ReHi, * First, the defaults. Why is it a protected field in BaseConfiguration ? Well. Because the first one to write this code did it like this? If you think, this should be changed, send me a patch. I'll review it and if it does not change user

DO NOT REPLY [Bug 15925] - [resources] use java 1.4

2003-01-09 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=15925. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [collections][PROPOSAL] MapIterator and IterableMap

2003-01-09 Thread Rodney Waldhoff
On Thu, 9 Jan 2003, Stephen Colebourne wrote: Combination of the proposals: public interface MapIterator extends Iterator { /** Is there another key to iterate to */ boolean hasNext(); /** Get the next key */ Object next(); /** Get the value associated with the last key

Re: [collections] ComparableComparator executes all comparisons twice!?

2003-01-09 Thread Ola Berg
ie) Unwanted code is deprecated for the next major or minor release, and removed in the major release following that. so: 1.0 - 2.0, Foo.foo is deprecated 2.0 - 2.1, Foo.bar is deprecated 2.1 - 3.0, Foo.foo and Foo.bar are both removed or if it is such that we just need to do N releases

[collections] deprecation policty (was Re: [collections]ComparableComparator executes all comparisons twice!?)

2003-01-09 Thread Rodney Waldhoff
Please change the subject line when thread veers off the original topic like this one has. On Thu, 9 Jan 2003, Ola Berg wrote: ie) Unwanted code is deprecated for the next major or minor release, and removed in the major release following that. so: 1.0 - 2.0, Foo.foo is deprecated

Re: [collections] ComparableComparator executes all comparisonstwice!?

2003-01-09 Thread Rodney Waldhoff
While we're at it, I wonder if it might be better to remove a lot of the checking going on inside ComparableComparator.compare. I'm thinking something as simple as: public int compare(Object o1, Object o2) { return ((Comparable)o1).compareTo(o2); } and letting Java and/or the underlying

cvs commit: jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/expression ConstantExpression.java EmptyExpression.java Expression.java IteratorExpression.java Updater.java

2003-01-09 Thread rdonkin
rdonkin 2003/01/09 14:34:08 Modified:betwixt/src/java/org/apache/commons/betwixt XMLBeanInfo.java XMLIntrospector.java betwixt/src/java/org/apache/commons/betwixt/expression ConstantExpression.java EmptyExpression.java

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/expression/xpath - New directory

2003-01-09 Thread morgand
morgand 2003/01/09 14:59:05 jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/expression/xpath - New directory -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [RESOURCES] Units tests rely on JDK 1.4

2003-01-09 Thread Robert Leland
on JDK 1.4 Same as before but for Units tests. Locale(language), doesn't exist under JDK 1.3, only under 1.4. As with the cases in the mainline code, this was fixed in the 20030109 nightly build (i.e. last night's). I just did a CVS update ~4:45 P.M. EST, so it was fixed after that time

Re: [RESOURCES] Units tests rely on JDK 1.4

2003-01-09 Thread Robert Leland
Robert Leland wrote: As with the cases in the mainline code, this was fixed in the 20030109 nightly build (i.e. last night's). I just did a CVS update ~4:45 P.M. EST, so it was fixed after that time ? Nope, not there. I just did another CVS update and ResourceBundleTestCase.java still

Re: [RESOURCES] Units tests rely on JDK 1.4

2003-01-09 Thread Craig R. McClanahan
. As with the cases in the mainline code, this was fixed in the 20030109 nightly build (i.e. last night's). I just did a CVS update ~4:45 P.M. EST, so it was fixed after that time ? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections TestObject.java

2003-01-09 Thread rwaldhoff
rwaldhoff2003/01/09 16:15:09 Modified:collections/src/test/org/apache/commons/collections TestObject.java Log: add test ensuring makeObject.equals(null) doesn't fail Revision ChangesPath 1.18 +7 -5

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/comparators TestBooleanComparator.java TestAll.java

2003-01-09 Thread rwaldhoff
rwaldhoff2003/01/09 16:21:09 Modified:collections/src/test/org/apache/commons/collections/comparators TestAll.java Added: collections/src/java/org/apache/commons/collections/comparators BooleanComparator.java

cvs commit: jakarta-commons-sandbox/el/src/java/org/apache/commons/el PropertySuffix.java

2003-01-09 Thread luehe
luehe 2003/01/09 16:50:57 Modified:el/src/java/org/apache/commons/el PropertySuffix.java Log: Adjusted PropertySuffix.evaluateIndex() to new signature of superclass, by removing the pContext parameter and changing the type of the functions parameter from Map to FunctionMapper.

cvs commit: jakarta-commons/jxpath/src/test/org/apache/commons/jxpath/ri/model MixedModelTest.java BeanModelTestCase.java

2003-01-09 Thread dmitri
dmitri 2003/01/09 18:11:29 Modified:jxpath/src/test/org/apache/commons/jxpath TestMixedModelBean.java jxpath/src/java/org/apache/commons/jxpath/ri/model/beans PropertyOwnerPointer.java NullElementPointer.java

Re: [clazz] has a new website

2003-01-09 Thread Dmitri Plotnikov
Stephen, - Original Message - From: Stephen Colebourne [EMAIL PROTECTED] To: Jakarta Commons Developers List [EMAIL PROTECTED] Sent: Thursday, January 09, 2003 7:59 PM Subject: Re: [clazz] has a new website There's a good lot of documentation here. Good work. Any idea how clazz can

cvs commit: jakarta-commons-sandbox/resources/src/java/org/apache/commons/resources Resources.java

2003-01-09 Thread jmitchell
jmitchell2003/01/09 18:18:33 Modified:resources/src/java/org/apache/commons/resources Resources.java Log: Typo Revision ChangesPath 1.8 +5 -5 jakarta-commons-sandbox/resources/src/java/org/apache/commons/resources/Resources.java

RE: [RESOURCES] Units tests rely on JDK 1.4

2003-01-09 Thread James Mitchell
1.3, only under 1.4. As with the cases in the mainline code, this was fixed in the 20030109 nightly build (i.e. last night's). I just did a CVS update ~4:45 P.M. EST, so it was fixed after that time ? -- To unsubscribe, e-mail: mailto:commons-dev- [EMAIL

Re: [clazz] has a new website

2003-01-09 Thread Henri Yandell
On Thu, 9 Jan 2003, Dmitri Plotnikov wrote: appear on under sandbox on the main commons pages leftbar? The pages in question are owned (in the unix sense) by James Strachan, but I don't know if he actually is the one maintaining them. The Jakarta Commons site is created using Anakia. See

cvs commit: jakarta-commons/lang/src/test/org/apache/commons/lang/time TimeTestSuite.java

2003-01-09 Thread bayard
bayard 2003/01/09 19:55:01 Modified:lang/src/test/org/apache/commons/lang/time TimeTestSuite.java Log: Oops. Meant to check this in a day or so ago. Hooked the FastDateFormat test up. Revision ChangesPath 1.3 +2 -1

Re: cvs commit: jakarta-commons/xdocs/stylesheets project.xml

2003-01-09 Thread dion
[EMAIL PROTECTED] wrote on 10/01/2003 02:48:53 PM: bayard 2003/01/09 19:48:52 Modified:docs beanutils.html charter.html collections.html commons.html components.html contributors.html dbcp.html digester.html directory.html

Re: cvs commit: jakarta-commons/xdocs/stylesheets project.xml

2003-01-09 Thread Henri Yandell
On Fri, 10 Jan 2003 [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote on 10/01/2003 02:48:53 PM: bayard 2003/01/09 19:48:52 Modified:docs beanutils.html charter.html collections.html commons.html components.html contributors.html

cvs commit: jakarta-commons-sandbox/messenger/src/conf MessengerWebLogic.xml

2003-01-09 Thread jstrachan
jstrachan2003/01/09 23:26:34 Added: messenger/src/conf MessengerWebLogic.xml Log: Added the WebLogic configuration file provided by Jukka Nikki Revision ChangesPath 1.1 jakarta-commons-sandbox/messenger/src/conf/MessengerWebLogic.xml Index:

[RESOURCES] Units tests rely on JDK 1.4

2003-01-09 Thread Robert Leland
Same as before but for Units tests. Locale(language), doesn't exist under JDK 1.3, only under 1.4. -Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [RESOURCES] Units tests rely on JDK 1.4

2003-01-09 Thread Craig R. McClanahan
as before but for Units tests. Locale(language), doesn't exist under JDK 1.3, only under 1.4. As with the cases in the mainline code, this was fixed in the 20030109 nightly build (i.e. last night's). -Rob Craig -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail