Re: [Jelly] [GUMP] vanilla Ant build.xml has gone

2003-10-02 Thread Stefan Bodewig
dIon, the build file contains some hard-coded paths, that I can't override via Ant properties from the outside. Could you please have another look? Buildfile: build.xml init: [mkdir] Created dir: /javastuff/gump/jakarta-commons/jelly/target/lib get-deps: compile: [mkdir] Created dir:

[attributes][GUMP] compilation error

2003-10-02 Thread Stefan Bodewig
Not-automated as Sam is having some trouble with his system setup ... [javac] /javastuff/gump/jakarta-commons-sandbox/attributes/api/src/java/org/apache/commons/attributes/EmptyCachedRepository.java:68: org.apache.commons.attributes.EmptyCachedRepository should be declared abstract; it

cvs commit: jakarta-commons/daemon/src/native/nt/procrun procgui.c

2003-10-02 Thread mturk
mturk 2003/10/02 00:21:29 Modified:daemon/src/native/nt/procrun procgui.c Log: Improve listview parsing and display. Make sure that the console window popups to foreground on try dblclick Revision ChangesPath 1.7 +70 -34

cvs commit: jakarta-commons/daemon/src/native/nt/procrun procrun.c procrun.h procrun.rc

2003-10-02 Thread mturk
mturk 2003/10/02 00:22:16 Modified:daemon/src/native/nt/procrun procrun.c procrun.h procrun.rc Log: Add the Registry key for selecting the console display type. Revision ChangesPath 1.7 +11 -3 jakarta-commons/daemon/src/native/nt/procrun/procrun.c Index:

[HiveMind] Testing Interceptors ...

2003-10-02 Thread Johan Lindquist
A general question: What do you all consider best practices for testing interceptors? Currently involves a lot of manual testing, but would like to move to junit testing for it. Johan -- you too? - To unsubscribe, e-mail:

Re: [Jelly] [GUMP] vanilla Ant build.xml has gone

2003-10-02 Thread dion
Ok, will do later tonight (4 hours or so). -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Stefan Bodewig [EMAIL PROTECTED] wrote on 02/10/2003 04:41:24 PM: dIon, the build file contains some hard-coded paths, that I can't override via Ant properties

DO NOT REPLY [Bug 23557] New: - WordUtils.capitalizeFully(String str) should take a delimiter

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

DO NOT REPLY [Bug 23558] New: - Problem with BeanUtils.setProperty when the name of property of Bean have on second caracter a uppercase

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

DO NOT REPLY [Bug 23560] New: - FTPClient.storeFile(...) should return status information

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

I have a project I'd like to contribute to Jakarta Commons.

2003-10-02 Thread Wickus Martin
A while back I wrote a generic comparator for Java objects and called it GComp. We’ve been using it internally at the company where I work, but I was wondering if it might not be of value to the commons project. Typically Java programmers create a custom Comparator implementation for every

Re: FTPClient listFiles command failing

2003-10-02 Thread Jeffrey D. Brekke
Maybe related to being behind a firewall? Can you use regular ftp tools and are you using a passive connection? On Wed, 01 Oct 2003 12:26:34 -0600, Kris Nuttycombe [EMAIL PROTECTED] said: Hello, all - any help is appreciated. I'm having difficulty using the commons.net.ftp.FTPClient when

RE: [HiveMind] extend BuildFactory to use static fields/methods

2003-10-02 Thread Howard M. Lewis Ship
This looks pretty darn good. Just a few thoughts/observations: 1) Could we just merge ConstructorFactory into BuilderFactory, to provide both sets of options (using constructors, then optionally setting properties). 2) Could we use

Re: [HiveMind] extend BuildFactory to use static fields/methods

2003-10-02 Thread Harish Krishnaswamy
Howard M. Lewis Ship wrote: This looks pretty darn good. Just a few thoughts/observations: 1) Could we just merge ConstructorFactory into BuilderFactory, to provide both sets of options (using constructors, then optionally setting properties). I really like the idea as long as we have both

RE: [HiveMind] Testing Interceptors ...

2003-10-02 Thread Howard M. Lewis Ship
The framework jar includes a base class for tests with many utility methods. You can read a module descriptor and convert it into a registry. Create a test service and extend the implemention with the interceptor. Invoke the methods of the service to see if the interceptor does its job. For

RE: [HiveMind] extend BuildFactory to use static fields/methods

2003-10-02 Thread Howard M. Lewis Ship
I just didn't list out the other primitive types (boolean, long, double, etc.) service-id/ would be the constructed service's id, as a string, alternative to construct service-id-property=.../ service service-id=.../ would be a reference to some other service, analagous to set-service

Re: [HiveMind] extend BuildFactory to use static fields/methods

2003-10-02 Thread Harish Krishnaswamy
Ah, I see. Should we stick with our convention of passing values via attributes, may be? But if you are planning on allowing OGNL expressions, the other form may be convenient, but I am not sure if we need to allow expressions in the descriptor though. -Harish Howard M. Lewis Ship wrote: I

Re: [HiveMind] extend BuildFactory to use static fields/methods

2003-10-02 Thread Knut Wannheden
1) Could we just merge ConstructorFactory into BuilderFactory, to provide both sets of options (using constructors, then optionally setting properties). Certainly. I made some sacrifices to make this eventual step as painless as possible. 2) Could we use

cvs commit: jakarta-commons/logging/src/java/org/apache/commons/logging/impl Jdk13LumberjackLogger.java Jdk14Logger.java Log4JLogger.java LogKitLogger.java NoOpLog.java

2003-10-02 Thread craigmcc
craigmcc2003/10/02 09:17:57 Modified:logging/src/java/org/apache/commons/logging/impl Jdk13LumberjackLogger.java Jdk14Logger.java Log4JLogger.java LogKitLogger.java NoOpLog.java Log: Remove final declaration on the Log implementations

Re: [collections] testing

2003-10-02 Thread Janek Bogucki
On Thu, 2003-10-02 at 02:12, Henri Yandell wrote: I'm a bit confused with Collections atm. 'ant test' calls src/test/org/apache/commons/collections/TestAll.java. However this does not list tests in sub-packages that I can see [though I imagine things like the iterators package could be

Re: [HiveMind] extend BuildFactory to use static fields/methods

2003-10-02 Thread Knut Wannheden
Here's a patch adressing all your points, except 4 ;-). Also there is more testing required. I'll try to find out what the best way is to test this service. Of course this is a new patch not adding to the previous one. So to take a look at it patch it to a fresh grab from HEAD. --knut Howard M.

Re: [HiveMind] extend BuildFactory to use static fields/methods

2003-10-02 Thread Knut Wannheden
Same patch with a quite obvious small tweak (how could I miss that?), which should also make it more readable... --knut Knut Wannheden [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Here's a patch adressing all your points, except 4 ;-). Also there is more testing required. I'll try

Re: [collections] testing

2003-10-02 Thread Janek Bogucki
On Thu, 2003-10-02 at 16:42, Henri Yandell wrote: On 2 Oct 2003, Janek Bogucki wrote: On Thu, 2003-10-02 at 02:12, Henri Yandell wrote: I'm a bit confused with Collections atm. 'ant test' calls src/test/org/apache/commons/collections/TestAll.java. However this does not list

DO NOT REPLY [Bug 23491] - Can't configure PerUserPoolDataSource for use with tomcat

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

DO NOT REPLY [Bug 23560] - FTPClient.storeFile(...) should return status information

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

DO NOT REPLY [Bug 23560] - FTPClient.storeFile(...) should return status information

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

Re: [collections] testing

2003-10-02 Thread Henri Yandell
On 2 Oct 2003, Janek Bogucki wrote: On Thu, 2003-10-02 at 16:42, Henri Yandell wrote: Why should both not do the same? When I type 'ant test' and 'maven test', they should be equivalent. Unless we decide to drop ant or maven support. The outcome of my suggested changes was meant

[general] Maven-generated pages don't point to mailing list page

2003-10-02 Thread Daniel F. Savarese
I just noticed that Maven-generated Commons (sub)project pages don't point to: http://jakarta.apache.org/site/mail.html for mailing lists and instead allow you to directly subscribe or unsubscribe without reading the mailing list guidelines. If I've accidentally dredged up an old topic, just

cvs commit: jakarta-commons-sandbox/hivemind/xdocs services.xml

2003-10-02 Thread hlship
hlship 2003/10/02 11:42:06 Modified:hivemind/framework/src/test/hivemind/test/services/impl RunnableImpl.java hivemind/framework/src/test/hivemind/test/services TestThreadedModel.java

[digester][patch] xml schema support. removal

2003-10-02 Thread Jean-Francois Arcand
Hi, the current XML schema supports doesn't work with Xerces 2.3/2.4/2.5 (only 2.1 finaly) (at least that's the case with Tomcat 5). The attached patch remove the current implementation. People interested to use the digester with schema/dtd should use instead:

Re: [beanutils] GenericComparator -I have a project I'd like to contribute to Jakarta Commons.

2003-10-02 Thread Stephen Colebourne
Tagged to the right commons project. You might want to look at how beanutils accesses bean properties - its slightly different to how you do it. Stephen - Original Message - From: Wickus Martin [EMAIL PROTECTED] A while back I wrote a generic comparator for Java objects and called it

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/decorators TestSetList.java TestAll.java

2003-10-02 Thread matth
matth 2003/10/02 15:34:44 Modified:collections/src/test/org/apache/commons/collections/decorators TestAll.java Added: collections/src/java/org/apache/commons/collections/decorators SetList.java

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/observed TestObservableSortedBag.java TestObservableBag.java

2003-10-02 Thread scolebourne
scolebourne2003/10/02 15:35:31 Modified:collections/src/test/org/apache/commons/collections/decorators TestTypedBag.java TestTransformedSortedBag.java TestPredicatedSortedBag.java TestPredicatedBag.java

DO NOT REPLY [Bug 22826] - [collections] List/Set implementation.

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

cvs commit: jakarta-commons/collections/src/test/org/apache/commons/collections/decorators TestTransformedSortedSet.java TestOrderedSet.java TestPredicatedSet.java TestTransformedSet.java

2003-10-02 Thread scolebourne
scolebourne2003/10/02 15:48:41 Modified:collections/src/test/org/apache/commons/collections/observed TestObservableSet.java TestObservableSortedSet.java collections/src/test/org/apache/commons/collections TestMap.java

Re: [HiveMind] Re: Tapestry exception report incomplete?

2003-10-02 Thread Harish Krishnaswamy
That would work. I had another idea on my way home. What if the constructRegistry threw an exception if there was any problem in the construction, that is after the registry is built? That way the application can decide what to do. What do you think about that? -Harish Howard M. Lewis Ship

cvs commit: jakarta-commons-sandbox/primitives PROPOSAL.html

2003-10-02 Thread scolebourne
scolebourne2003/10/02 16:43:22 Modified:primitives PROPOSAL.html Log: Fix typo Revision ChangesPath 1.2 +1 -1 jakarta-commons-sandbox/primitives/PROPOSAL.html Index: PROPOSAL.html === RCS

cvs commit: jakarta-commons/collections build.xml

2003-10-02 Thread scolebourne
scolebourne2003/10/02 16:46:54 Modified:collections build.xml Log: Add ability to create testframework jar Revision ChangesPath 1.44 +40 -5 jakarta-commons/collections/build.xml Index: build.xml

Re: [collections] general problem with decorators

2003-10-02 Thread Stephen Colebourne
This sounds OK, but what would the method be called? OrderedSet.decorate() OrderedSet.decorateHashSet() ? Stephen - Original Message - From: Henri Yandell [EMAIL PROTECTED] Basically, the lack of empty constructors with default decoration decisions. Example I'm looking at: I want

Re: [HiveMind] Re: Tapestry exception report incomplete?

2003-10-02 Thread Bill Lear
On Thursday, October 2, 2003 at 19:21:46 (-0400) Harish Krishnaswamy writes: That would work. I had another idea on my way home. What if the constructRegistry threw an exception if there was any problem in the construction, that is after the registry is built? That way the application can

Re: [collections] general problem with decorators

2003-10-02 Thread __matthewHawthorne
I would prefer something like: OrderedSet.defaultInstance() or OrderedSet.newInstance() It seems more standard... what do you think? Stephen Colebourne wrote: This sounds OK, but what would the method be called? OrderedSet.decorate() OrderedSet.decorateHashSet() ? Stephen - Original

[Apache Newsletter Draft] News as to Jakarta Commons Project from Aug. to Sep.

2003-10-02 Thread Tetsuya Kitahata
Dear Jakarta Commons Development Team, (http://jakarta.apache.org/commons/) Hello, Apache newsletter is in progress of preparing the second all-Apache newsletter, news from August to September 2003, which will be published in the middle of October 2003. === What is The Apache Newsletter? ===

[collections] TestMap is sweet

2003-10-02 Thread Henri Yandell
I love coding against this class, in that it catches so many things. I hate just how painful Maps are to code fully :) I half think this should form part of some kind of JUnit-Collections-compliancy jar or application. Hen -

RE: PR #22654. Any progress?

2003-10-02 Thread Kalnichevski, Oleg
Odi, No worries. Take your time to polish it. I just wanted to know what was going on, as PR #22654 is the only thing that blocks 2.0rc2 release. Oleg -Original Message- From: Ortwin Glück [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2003 09:35 To: Commons HttpClient Project

Re: PR #22654. Any progress?

2003-10-02 Thread Ortwin Glück
Kalnichevski, Oleg wrote: No worries. Take your time to polish it. I just wanted to know what was going on, as PR #22654 is the only thing that blocks 2.0rc2 release. Okay, I hope to have it ready until next week. It shouldn't be that hard to do as the documentation on Checkstyle is quite good.

DO NOT REPLY [Bug 23431] - Add the ability to disable the content-type and transfer encoding headers for Parts

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

DO NOT REPLY [Bug 15435] - New Preferences Architecture

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

DO NOT REPLY [Bug 22654] - [Maven] Migrate checkstyle.properties to XML

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

DO NOT REPLY [Bug 22654] - [Maven] Migrate checkstyle.properties to XML

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

DO NOT REPLY [Bug 15435] - New Preferences Architecture

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

[Apache Newsletter Draft] News as to Jakarta Commons-HttpClient Project from Aug. to Sep.

2003-10-02 Thread Tetsuya Kitahata
Dear Jakarta Commons-HttpClient Development Team, (http://jakarta.apache.org/commons/httpclient/) Hello, Apache newsletter is in progress of preparing the second all-Apache newsletter, news from August to September 2003, which will be published in the middle of October 2003. === What is The