Re: [lang] what about mutable BigInteger etc.

2002-12-27 Thread Ola Berg
On 2002-12-23 at 19:05 Stephen Colebourne wrote: However, I would not be averse to adding mutable versions of the Number classes to math. I would want to see the complete set however, MutableBigDecimal, MutableBigInteger, MutableInteger, MutableLong, MutableDouble, MutableFloat and

nullFileFilter vs getNullFileFilter

2002-12-27 Thread Henri Yandell
Sorry, lost this email, so unable to reply in-thread. Collections.synchronisedMap, unmodifiableList etc and the various classes of these type in Commons [lots in Collections and Lang, for example ComparatorUtils.reversedComparator()] all seem to use the nullFileFilter style. I dunno if

Re: [lang] what about mutable BigInteger etc.

2002-12-27 Thread Henri Yandell
On Fri, 27 Dec 2002, Ola Berg wrote: On 2002-12-23 at 19:05 Stephen Colebourne wrote: However, I would not be averse to adding mutable versions of the Number classes to math. I would want to see the complete set however, MutableBigDecimal, MutableBigInteger, MutableInteger,

Re: [lang] what about mutable BigInteger etc.

2002-12-27 Thread Ola Berg
On 2002-12-27 at 03:59 Henri Yandell wrote: On Fri, 27 Dec 2002, Ola Berg wrote: I think the word mutable leads wrong. The number in itself isn't mutable, it is the object that is told to hold a completely different number. Doesn't this depend on the implementation? Why wouldn't they be

Re: [jelly] JellySWT library available

2002-12-27 Thread Neeme Praks
Hi James! Is there any plan of making JellySwing and JellySWT to support XUL style markup? So XUL would be used to describe the UI and switching between XUL implementations would be easier...? Or are there some serious issues with this idea? Rgds, Neeme James Strachan :: I've just committed

Re: [VOTE][PROPOSAL] commons-functor

2002-12-27 Thread Scott Sanders
Why couldn't this just be in the next version of lang? -- Scott Sanders - [EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [VOTE][PROPOSAL] commons-functor

2002-12-27 Thread Henri Yandell
Vote +1 to the vote for that and it could be ;) .. sorry. hard to resist :) On Thu, 26 Dec 2002, Scott Sanders wrote: Why couldn't this just be in the next version of lang? -- Scott Sanders - [EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

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

2002-12-27 Thread craigmcc
craigmcc2002/12/27 10:30:23 Modified:resources build.xml Log: Add commons-logging.jar to the compile classpath. Add options so that you can run the unit tests under Tomcat 4.1 using the manager webapp's install and remove commands (much faster than starting and stopping

[Jelly] Release Issue 1 - dependencies

2002-12-27 Thread Morgan Delagrange
Hey all, So far only Bob has voiced a concern with preparing to release a Jelly beta, and I believe his only concern is whether or not to release it under the Commons umbrella. So I'm going to start raising some release issues, and I'll steer clear of anything relating to packaging for now, just

cvs commit: jakarta-commons-sandbox/resources/src/test/org/apache/commons/resources/tests FileResourcesTest.java

2002-12-27 Thread craigmcc
craigmcc2002/12/27 11:18:04 Modified:resources build.xml resources/src/java/org/apache/commons/resources XMLConfigurationReader.java resources/src/test/org/apache/commons/resources/tests FileResourcesTest.java

Commons is ready for mirroring

2002-12-27 Thread Scott Sanders
All, I took some time last night and set up the commons releases according to the new mirroring scheme. Have a look. I can see from the work that Stefan did that it is already starting to mirror itself. This is great. Let me know if you see any issues. The only thing that I did was create a

Re: [VOTE][PROPOSAL] commons-functor

2002-12-27 Thread Scott Sanders
On Fri, Dec 27, 2002 at 01:27:01PM -0500, Henri Yandell wrote: Vote +1 to the vote for that and it could be ;) .. sorry. hard to resist :) +1 for functors in lang. I think this is part of the 'missing link' that got left out +of java.lang. -- Scott Sanders - [EMAIL PROTECTED] -- To

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

2002-12-27 Thread craigmcc
craigmcc2002/12/27 11:33:05 Modified:resources build.xml Log: Clean up exectuion classpath. Revision ChangesPath 1.14 +9 -12 jakarta-commons-sandbox/resources/build.xml Index: build.xml ===

[Jelly] Classpath not passed into jelly.bat

2002-12-27 Thread Mark R. Diggory
I've noticed that in the unix shell script file the classpath is gotten from the environment like this: -classpath ${CLASSPATH}:${JELLY_HOME}/lib/forehead.jar while in the jelly.bat file it looks like this: -classpath %JELLY_HOME%\lib\forehead.jar It'd be good to have it like the shell script

cvs commit: jakarta-commons-sandbox/jelly/src/bin jelly.bat

2002-12-27 Thread morgand
morgand 2002/12/27 13:12:36 Modified:jelly/src/bin jelly.bat Log: added user classpath to windows batch script Revision ChangesPath 1.4 +1 -1 jakarta-commons-sandbox/jelly/src/bin/jelly.bat Index: jelly.bat

cvs commit: jakarta-commons-sandbox/resources/src/test/org/apache/commons/resources/junit - New directory

2002-12-27 Thread craigmcc
craigmcc2002/12/27 13:14:05 jakarta-commons-sandbox/resources/src/test/org/apache/commons/resources/junit - New directory -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

[Jelly] Making jelly.bat a little smarter

2002-12-27 Thread Mark R. Diggory
Making jelly.bat support alternate sources for forehead.conf would good as well. This allows for addition of jars to the classpath when its unfeasable to place them into the jelly/custom directory. @echo off if %FOREHEAD_CONF%== set FOREHEAD_CONF=%JELLY_HOME%\bin\forehead.conf

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

2002-12-27 Thread craigmcc
craigmcc2002/12/27 13:54:33 Modified:resources/src/java/org/apache/commons/resources Resources.java Log: Clean up the Javadocs and formatting of the o.a.c.r.Resources interface. Add a (currently commented-out) getObject() method that will support

Re: [Jelly] Making jelly.bat a little smarter

2002-12-27 Thread Morgan Delagrange
Sounds platform-specific. Didn't you point out that the Windows script was missing a feature of the unix script? Show me some unix syntax too and I'll make it happen. Just don't make a patch. I hate patches. ;) - Morgan --- Mark R. Diggory [EMAIL PROTECTED] wrote: Making jelly.bat support

cvs commit: jakarta-commons-sandbox/resources/src/test/org/apache/commons/resources/tests FileResourcesExposerFactory.java

2002-12-27 Thread craigmcc
craigmcc2002/12/27 15:27:12 Modified:resources/src/java/org/apache/commons/resources ResourcesFactory.java XMLConfigurationReader.java resources/src/java/org/apache/commons/resources/file FileResourcesFactory.java

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

2002-12-27 Thread craigmcc
craigmcc2002/12/27 16:04:07 Modified:resources/src/java/org/apache/commons/resources Resources.java ResourcesFactory.java XMLConfigurationReader.java resources/src/java/org/apache/commons/resources/file

cvs commit: jakarta-commons-sandbox/resources/src/java/org/apache/commons/resources/base ResourceBundleResources.java ResourceBundleResourcesFactory.java ResourcesBase.java ResourcesFactoryBase.java

2002-12-27 Thread craigmcc
craigmcc2002/12/27 16:51:17 Added: resources/src/java/org/apache/commons/resources/base ResourceBundleResources.java ResourceBundleResourcesFactory.java ResourcesBase.java ResourcesFactoryBase.java Log:

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

2002-12-27 Thread craigmcc
craigmcc2002/12/27 16:51:46 Modified:resources/src/java/org/apache/commons/resources ResourcesException.java ResourcesFactory.java Log: Update ResourcesException to have a constructor with just a Throwable. Update ResourcesFactory to allow release() to

cvs commit: jakarta-commons-sandbox/resources/src/java/org/apache/commons/resources/base ResourceBundleResources.java ResourceBundleResourcesFactory.java ResourcesBase.java ResourcesFactoryBase.java

2002-12-27 Thread craigmcc
craigmcc2002/12/27 16:54:18 Removed: resources/src/java/org/apache/commons/resources/base ResourceBundleResources.java ResourceBundleResourcesFactory.java ResourcesBase.java ResourcesFactoryBase.java Log: Remove

cvs commit: jakarta-commons-sandbox/resources/src/java/org/apache/commons/resources/impl - New directory

2002-12-27 Thread craigmcc
craigmcc2002/12/27 16:55:47 jakarta-commons-sandbox/resources/src/java/org/apache/commons/resources/impl - New directory -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

cvs commit: jakarta-commons-sandbox/resources/src/java/org/apache/commons/resources/impl ResourceBundleResources.java ResourceBundleResourcesFactory.java ResourcesBase.java ResourcesFactoryBase.java

2002-12-27 Thread craigmcc
craigmcc2002/12/27 16:56:24 Added: resources/src/java/org/apache/commons/resources/impl ResourceBundleResources.java ResourceBundleResourcesFactory.java ResourcesBase.java ResourcesFactoryBase.java Log:

cvs commit: jakarta-commons-sandbox/resources/src/test/org/apache/commons/resources/impl - New directory

2002-12-27 Thread craigmcc
craigmcc2002/12/27 18:18:53 jakarta-commons-sandbox/resources/src/test/org/apache/commons/resources/impl - New directory -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

cvs commit: jakarta-commons-sandbox/resources/src/test/org/apache/commons/resources/tests ConfigurationReaderTest.java FileResourcesExposerFactory.java FileResourcesTest.java

2002-12-27 Thread craigmcc
craigmcc2002/12/27 19:56:30 Modified:resources build.xml resources/src/java/org/apache/commons/resources/impl ResourceBundleResources.java ResourceBundleResourcesFactory.java

cvs commit: jakarta-commons-sandbox/resources/src/test/org/apache/commons/resources/tests FileResourcesExposerFactory.java

2002-12-27 Thread craigmcc
craigmcc2002/12/27 20:40:56 Modified:resources/src/java/org/apache/commons/resources Resources.java ResourcesBase.java ResourcesException.java ResourcesFactory.java resources/src/java/org/apache/commons/resources/file