cvs commit: jakarta-commons/daemon LICENSE LICENSE.txt

2003-10-09 Thread jfclere
jfclere 2003/10/09 01:41:42 Modified:daemon LICENSE LICENSE.txt Log: Arrange licence. Submitted by: robert burrell donkin at blueyonder.co.uk Revision ChangesPath 1.2 +1 -1 jakarta-commons/daemon/LICENSE Index: LICENSE

[configuration]HierarchicalConfiguration

2003-10-09 Thread Oliver Heger
Hello, I am working on a special Configuration implementation called HierarchicalConfiguration that avoids the problems I have outlined in my last posting (messing up structure of hierarchical XML documents). Therefor I use my own scheme of storing data. My class extends AbstractConfiguration.

[GUMP] Build Failure - commons-jelly-tags-ant

2003-10-09 Thread Stefan Bodewig
http://gump.covalent.net/log/commons-jelly-tags-ant.html Buildfile: build.xml init: [mkdir] Created dir: /javastuff/gump/jelly-tags/ant/target/lib get-deps: compile: [mkdir]

[GUMP] Build Failure - commons-attributes

2003-10-09 Thread Stefan Bodewig
This email is autogenerated from the output from: http://gump.covalent.net/log/commons-attributes.html Buildfile: build.xml init: [mkdir] Created dir:

Re: [HiveMind] extending BuilderFactory

2003-10-09 Thread Eric Yung
Hi, After the testing I have built the newest version from the CVS. When I re-run the test today, it shows the following error. [junit] Unable to construct service js.util.testA: Unable to construct service hivemind.BuilderFactory: Unable to construct service hivemind.LoggingInterceptor: A

Re: [VOTE] New commons proper component - pcollections - REMINDER

2003-10-09 Thread Rodney Waldhoff
Why state The API will mimic as closely as possible the object-based API? This isn't true of the current codebase (consider InputStreamCharIterator or RandomAccess*List for example, neither of which have direct correlation to anything in java.util) and as a design decision, not an scope one,

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/primitives AbstractLongList.java

2003-10-09 Thread rwaldhoff
rwaldhoff2003/10/09 02:52:56 Modified:collections/src/java/org/apache/commons/collections/primitives AbstractLongList.java Log: deprecate Revision ChangesPath 1.8 +4 -3

Re: cvs commit: jakarta-commons/daemon/xdocs navigation.xml

2003-10-09 Thread jean-frederic clere
[EMAIL PROTECTED] wrote: tobrien 2003/09/27 11:16:16 Modified:daemon/xdocs navigation.xml Log: Fixed the maven site generation. Commons Maven sites are generated from jakarta-commons/project directories, and ../incl_nav.xml references jakarta-commons/incl_nav.xml. If we try to reference

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

2003-10-09 Thread rwaldhoff
rwaldhoff2003/10/09 03:33:45 Modified:collections/src/test/org/apache/commons/collections/iterators AbstractTestListIterator.java Log: extract methods testRemoveThenSet and testAddThenSet, so we don't assume the full iterator contains more than one element

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

2003-10-09 Thread rwaldhoff
rwaldhoff2003/10/09 03:39:16 Modified:collections/src/test/org/apache/commons/collections TestCollectionUtils.java Log: convert assertTrue(a.equals(b)) to the equivalent but better reported assertEquals(a,b) Revision ChangesPath 1.26 +20 -19

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

2003-10-09 Thread rwaldhoff
rwaldhoff2003/10/09 03:48:19 Modified:collections/src/test/org/apache/commons/collections TestCollectionUtils.java Log: fix test so that it doesn't assume the order in which elements are returned from a HashMap.iterator Revision ChangesPath 1.27

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

2003-10-09 Thread rwaldhoff
rwaldhoff2003/10/09 04:00:09 Modified:collections/src/test/org/apache/commons/collections TestCollectionUtils.java Log: scope variables, group assertions into blocks Revision ChangesPath 1.28 +96 -92

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

2003-10-09 Thread rwaldhoff
rwaldhoff2003/10/09 04:03:55 Modified:collections/src/test/org/apache/commons/collections TestCollectionUtils.java Log: rename _a/_b to collectionA/collectionB Revision ChangesPath 1.29 +109 -109

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/iterators SingletonListIterator.java SingletonIterator.java

2003-10-09 Thread rwaldhoff
rwaldhoff2003/10/09 04:05:27 Modified:collections/src/test/org/apache/commons/collections/iterators TestSingletonListIterator.java TestSingletonIterator.java collections/src/java/org/apache/commons/collections/iterators

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

2003-10-09 Thread rwaldhoff
rwaldhoff2003/10/09 04:09:10 Modified:collections/src/test/org/apache/commons/collections/primitives TestAbstractLongArrayList.java Log: deprecate Revision ChangesPath 1.9 +3 -2

RE: [HiveMind] extending BuilderFactory

2003-10-09 Thread Howard M. Lewis Ship
Did you add a logging interceptor to BuilderFactory? -- Howard M. Lewis Ship Creator, Tapestry: Java Web Components http://jakarta.apache.org/tapestry http://jakarta.apache.org/commons/sandbox/hivemind/ http://javatapestry.blogspot.com -Original Message- From: news [mailto:[EMAIL

Re: [VOTE] New commons proper component - pcollections - REMINDER

2003-10-09 Thread scolebourne
I'm happy to make changes along these lines. You are right about Iterator and RandomAccess classes. Stephen from:Rodney Waldhoff [EMAIL PROTECTED] Why state The API will mimic as closely as possible the object-based API? This isn't true of the current codebase (consider

RE: [HiveMind] more on BuilderFactory

2003-10-09 Thread Howard M. Lewis Ship
Been running around a lot, but found a few minutes to think about this in more detail. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Knut Wannheden Sent: Tuesday, October 07, 2003 6:28 AM To: [EMAIL PROTECTED] Subject: Re: [HiveMind] more on BuilderFactory

[HiveMind] Initializable

2003-10-09 Thread Howard M. Lewis Ship
Was thinking about this as well; currently, the instantiated service is passed as a parameter to the initializeService() method. I'm thinking of stripping this out. It makes a kind of sense for the singleton and deferred service models ... in case they want to, say, register with some other

Re: [HiveMind] extending BuilderFactory

2003-10-09 Thread Eric Yung
Since I would like to record the ids of the services created by the BuilderFactory, I want to use an interceptor to do the job. Before I implements that solution, I take the logging interceptor as a test to check if HiveMind allows such setup. And the result is that I cannot take this approach

cvs commit: jakarta-commons/daemon/xdocs binaries.xml navigation.xml

2003-10-09 Thread jfclere
jfclere 2003/10/09 07:21:23 Modified:daemon/xdocs navigation.xml Added: daemon/xdocs binaries.xml Log: Arrange the description of the binaries subdirectories. Revision ChangesPath 1.4 +9 -1 jakarta-commons/daemon/xdocs/navigation.xml Index:

RE: HiveMind junit testfailure

2003-10-09 Thread Howard M. Lewis Ship
It's a lot of work to make the tests run for JDK 1.3; for example, the Ant task unit tests fail because the XML attributes are output in a different order (String.hashCode() must have changed between releases). Although code compatibility with JDK 1.3 is desirable, its low on my priorities for

Re: [validator] Password fields [WAS] Re: cvs commit: jakarta-commons/validator/src/javascript/org/apache/commons/validator/javascript validateMaxLength.js validateMinLength.js

2003-10-09 Thread David Graham
--- Robert Leland [EMAIL PROTECTED] wrote: David Graham wrote: My point is not that you shouldn't tell your users the rules; it's that you shouldn't expose the validation algorithm to hackers. The less they know about the password system, the better. David That's Microsofts method

Re: [HiveMind] extending BuilderFactory

2003-10-09 Thread Christian Essl
Have you tried to use create-instance or defining your own ServiceImplementationFactory which creates the Interceptor? I think this way you don't need the BuilderFactory to create the ServiceInterceptorFactory service. On Thu, 09 Oct 2003 20:52:39 +0800, Eric Yung [EMAIL PROTECTED] wrote:

Re: [HiveMind] extending BuilderFactory

2003-10-09 Thread Eric Yung
Great to hear that. I am now trying to use HiveMind as the kernel of my server (to replace some home-built code). I use it to register all the services and manage their lifecycle as needed. This allows me to separate the actual service definition and implementation from the core server code.

Re: commons-logging classloading

2003-10-09 Thread Will Jaynes
Why does LogFactoryImpl in commons-logging try to load the Log implementation class first from thread classloader and then loader that loaded this class? Is there some kind of design pattern behind this? One very common :-) use case for commons-logging is inside web applications, where the

cvs commit: jakarta-commons/daemon KEYS

2003-10-09 Thread jfclere
jfclere 2003/10/09 08:05:41 Added: daemon KEYS Log: Add my pub key to allow to check the files I am going to sign. Revision ChangesPath 1.1 jakarta-commons/daemon/KEYS Index: KEYS

Re: [HiveMind] more on BuilderFactory

2003-10-09 Thread Christian Essl
I am personally quite happy with the digester/translator aproach HiveMind uses currently. I like Knut's suggestion to split up the validating schema from the processing. Maybe in a later release of HiveMind it could be possible to use a something like this: configuration-point

Re: [HiveMind] more on BuilderFactory

2003-10-09 Thread Harish Krishnaswamy
Yeah, I like this idea. Options are good. Christian Essl wrote: I am personally quite happy with the digester/translator aproach HiveMind uses currently. I like Knut's suggestion to split up the validating schema from the processing. Maybe in a later release of HiveMind it could be possible

Re: [HiveMind] more on BuilderFactory

2003-10-09 Thread Christian Essl
I think this way we could also solve that chicken-egg problem with rules and translators: The HiveMind build in processing is kept. This build in processing is used by the ProcessingServices to have their rules, translators, xsl-functions etc defined/added. (ProcessingServices are only allowed

[HttpClient] Freezes w/ MultiThreadedHttpConnectionManager

2003-10-09 Thread Adam R. B. Jack
My single threaded user of VFS (an HttpClient user, that uses MultiThreadedHttpConnectionManager) hangs [I suspect indefinitely] on minor activity. I've turned on HttpClient debug and I see this, the last line being the last thing I get... 2003/10/09 09:34:26:482 MDT [DEBUG] wire - -

Re: cvs commit: jakarta-commons/dbcp build.xml

2003-10-09 Thread John McNally
Was there discussion on removing support for building with pre-jdk1.4? Why do this now? I see a benefit in building the source from its cvs location without pre-processing, but could we postpone the change till after the release? john mcnally On Sat, 2003-10-04 at 11:12, [EMAIL PROTECTED]

Re: [HiveMind] Initializable

2003-10-09 Thread Christian Essl
I would strongly encourage using the proxy. For my taste a Service should nearly never give out this. That's because in my mind a Service is not just the implementation but the implementation plus the Interceptors (and ServiceModel proxies) and the implementation does not know about the other.

Re: commons-logging classloading

2003-10-09 Thread Todd Jonker
Will, I recently ran into a variant of this, only worse. We solved the problem by placing log4j in the system classpath, so it's shared by all applications, and by all server-level components. We are using an oldish version of WebLogic, with ColdFusion MX running inside of it. ColdFusion has

Re: [HiveMind] more on BuilderFactory

2003-10-09 Thread Knut Wannheden
Read the comments further down... What if this were written in a more declarative way (resembling a pipeline as in Cocoon or Jelly) using XPath navigations to access attribute values: element name=task attribute name=order required=true/ attribute name=title required=true/

[PATCH] beanutils - logging in PropertyUtils

2003-10-09 Thread Jonathan Fuerth
Hi. I just spent more time than I would have liked tracking down an IllegalArgumentException with a useless message from java.lang.reflect.Method.invoke(). I added some trace-level logging to PropertyUtils (everywhere it calls a write method) and discovered the source of my troubles right away.

RE: [HiveMind] Initializable

2003-10-09 Thread Howard M. Lewis Ship
I would strongly encourage using the proxy. For my taste a Service should nearly never give out this. That's because in my mind a Service is not just the implementation but the implementation plus the Interceptors (and ServiceModel proxies) and the implementation does not know

Re: [HiveMind] Initializable

2003-10-09 Thread Christian Essl
On Thu, 9 Oct 2003 13:45:32 -0400, Howard M. Lewis Ship [EMAIL PROTECTED] wrote: I agree, which means nothing needs to be passed; if the core implementation needs to vend out the proxy, it can use the BuilderFactory to assign the proxy to a property. Perhaps another attribute of contruct to

cvs commit: jakarta-commons-sandbox/attributes/api/src/java/org/apache/commons/attributes EmptyCachedRepository.java

2003-10-09 Thread leosutic
leosutic2003/10/09 12:23:30 Modified:attributes project.xml attributes/api/src/java/org/apache/commons/attributes EmptyCachedRepository.java Log: Fixed bug in EmptyCachedRepository (didn't implement the interface CachedRepository properly)

cvs commit: jakarta-commons/discovery/src/java/org/apache/commons/discovery/tools ClassUtils.java DefaultClassHolder.java DiscoverClass.java DiscoverSingleton.java EnvironmentCache.java PropertiesHolder.java ResourceUtils.java SPInterface.java Service.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 12:37:08 Modified:discovery/src/java/org/apache/commons/discovery/tools ClassUtils.java DefaultClassHolder.java DiscoverClass.java DiscoverSingleton.java EnvironmentCache.java

cvs commit: jakarta-commons/discovery/sandbox/java/org/apache/commons/discovery/resource/names DiscoverNamesInDictionary.java DiscoverNamesInFile.java DiscoverNamesInManagedProperties.java DiscoverNamesInSystemProperties.java DiscoverServiceNames.java NameDiscoverers.java ResourceNameDiscoverImpl.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:10:33 Modified:discovery/sandbox/java/org/apache/commons/discovery/resource ClassLoaders.java DiscoverResources.java ResourceDiscoverImpl.java

cvs commit: jakarta-commons/discovery/sandbox/java/org/apache/commons/discovery/ant ServiceDiscoveryTask.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:10:52 Modified:discovery/sandbox/java/org/apache/commons/discovery/ant ServiceDiscoveryTask.java Log: Fixed typos in apache licenses Revision ChangesPath 1.2 +4 -4

cvs commit: jakarta-commons/discovery/sandbox/java/org/apache/commons/discovery/jdk JDK11Hooks.java JDK12Hooks.java JDKHooks.java PsuedoSystemClassLoader.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:11:02 Modified:discovery/sandbox/java/org/apache/commons/discovery/jdk JDK11Hooks.java JDK12Hooks.java JDKHooks.java PsuedoSystemClassLoader.java Log: Fixed typos in apache licenses Revision ChangesPath

cvs commit: jakarta-commons/discovery/sandbox/java/org/apache/commons/discovery DiscoveryException.java Resource.java ResourceClass.java ResourceClassDiscover.java ResourceClassListener.java ResourceDiscover.java ResourceListener.java ResourceNameDiscover.java ResourceNameListener.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:12:05 Modified:discovery/sandbox/java/org/apache/commons/discovery DiscoveryException.java Resource.java ResourceClass.java ResourceClassDiscover.java ResourceClassListener.java

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

2003-10-09 Thread scolebourne
scolebourne2003/10/09 13:18:25 Modified:collections/src/test/org/apache/commons/collections/iterators AbstractTestListIterator.java Log: Rename testRemoveAfterAdd for consistency Revision ChangesPath 1.3 +3 -3

Re: [codec][collections][dbcp] incorrect license for some source files

2003-10-09 Thread robert burrell donkin
FWIW here's the script i'm using. (no sniggering at the back at my v poor scripting skills.) i'll leave collections to you (unless you let me know otherwise). - robert On Monday, October 6, 2003, at 12:32 AM, Stephen Colebourne wrote: I believe the [lang] one is the best. The [collections]

[pcollections] Name change?

2003-10-09 Thread Stephen Colebourne
Should we name it [pcollections]? Or is [primitives] better? (The sandbox primitives is then a sandbox for the proper component for experimentation). I had forgotten about the special io input stream stuff, which might lead to the name [primitives]. I don't think that this affects the vote, but

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

2003-10-09 Thread scolebourne
scolebourne2003/10/09 13:20:23 Modified:collections/src/test/org/apache/commons/collections AbstractTestMap.java Log: Improve test error messages Revision ChangesPath 1.6 +6 -6

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections DualHashBidiMap.java AbstractDualBidiMap.java

2003-10-09 Thread scolebourne
scolebourne2003/10/09 13:21:32 Modified:collections/src/test/org/apache/commons/collections TestBidiMap.java collections/src/java/org/apache/commons/collections DualHashBidiMap.java AbstractDualBidiMap.java Log: Make

Re: [pcollections] Name change?

2003-10-09 Thread Henri Yandell
+1 to primitives. It has superb logo potential :) On Thu, 9 Oct 2003, Stephen Colebourne wrote: Should we name it [pcollections]? Or is [primitives] better? (The sandbox primitives is then a sandbox for the proper component for experimentation). I had forgotten about the special io input

Re: [pcollections] Proposal amendment

2003-10-09 Thread Rodney Waldhoff
+1 one to the amended proposal. On Thu, 9 Oct 2003, Stephen Colebourne wrote: (0) Rationale The Java Collection Framework defines a well-known and widely used API for collections. This framework is object-based, but the Java language also contains primitive types. The framework requires

Re: [pcollections] Name change?

2003-10-09 Thread Rodney Waldhoff
+1 to the name primitives over pcollections On Thu, 9 Oct 2003, Stephen Colebourne wrote: Should we name it [pcollections]? Or is [primitives] better? (The sandbox primitives is then a sandbox for the proper component for experimentation). I had forgotten about the special io input stream

cvs commit: jakarta-commons/beanutils/src/test/org/apache/commons/beanutils/priv PackageBean.java PrivateBean.java PrivateBeanFactory.java PrivateBeanSubclass.java PrivateDirect.java PrivateIndirect.java PublicSubBean.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:38:48 Modified:beanutils/src/test/org/apache/commons/beanutils/priv PackageBean.java PrivateBean.java PrivateBeanFactory.java PrivateBeanSubclass.java PrivateDirect.java PrivateIndirect.java

cvs commit: jakarta-commons/beanutils/src/test/org/apache/commons/beanutils/locale/converters DateLocaleConverterTestCase.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:39:04 Modified:beanutils/src/test/org/apache/commons/beanutils/locale LocaleConvertTestSuite.java LocaleConvertUtilsTestCase.java beanutils/src/test/org/apache/commons/beanutils/locale/converters

cvs commit: jakarta-commons/beanutils/src/test/org/apache/commons/beanutils/converters ByteConverterTestCase.java ConverterTestSuite.java DoubleConverterTestCase.java FileConverterTestCase.java FloatConverterTestCase.java IntegerConverterTestCase.java LongConverterTestCase.java NumberConverterTestBase.java ShortConverterTestCase.java StringArrayConverterTestCase.java URLConverterTestCase.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:39:16 Modified:beanutils/src/test/org/apache/commons/beanutils/converters ByteConverterTestCase.java ConverterTestSuite.java DoubleConverterTestCase.java FileConverterTestCase.java

cvs commit: jakarta-commons/beanutils/src/test/org/apache/commons/beanutils A.java AbstractChild.java AbstractParent.java AlphaBean.java BasicDynaBeanTestCase.java BeanCollectionsTestSuite.java BeanComparatorTestCase.java BeanPropertyValueChangeClosureTest.java BeanPropertyValueEqualsPredicateTest.java BeanToPropertyValueTransformerTest.java BeanUtilsBenchCase.java BeanUtilsTestCase.java BeanWithInnerBean.java BeanificationTestCase.java BenchBean.java BetaBean.java Child.java ConstructorUtilsTestCase.java ConvertUtilsTestCase.java DynaBeanUtilsTestCase.java DynaPropertyUtilsTestCase.java DynaResultSetTestCase.java DynaRowSetTestCase.java ExtendMapBean.java MappedPropertyTestBean.java MethodUtilsTestCase.java NestedTestBean.java PassTestException.java PrimitiveBean.java PropertyUtilsBenchCase.java PropertyUtilsTestCase.java SonOfAlphaBean.java TestBean.java TestBeanPackageSubclass.java TestBeanPublicSubclass.java TestResultSet.java TestResultSetMetaData.java ThrowExceptionConverter.java WrapDynaBeanTestCase.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:40:09 Modified:beanutils/src/test/org/apache/commons/beanutils A.java AbstractChild.java AbstractParent.java AlphaBean.java BasicDynaBeanTestCase.java BeanCollectionsTestSuite.java

cvs commit: jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/locale/converters BigDecimalLocaleConverter.java BigIntegerLocaleConverter.java ByteLocaleConverter.java DateLocaleConverter.java DecimalLocaleConverter.java DoubleLocaleConverter.java FloatLocaleConverter.java IntegerLocaleConverter.java LongLocaleConverter.java ShortLocaleConverter.java SqlDateLocaleConverter.java SqlTimeLocaleConverter.java SqlTimestampLocaleConverter.java StringLocaleConverter.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:41:41 Modified:beanutils/src/java/org/apache/commons/beanutils/locale BaseLocaleConverter.java LocaleBeanUtils.java LocaleBeanUtilsBean.java LocaleConvertUtils.java LocaleConvertUtilsBean.java

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/decorators SetList.java

2003-10-09 Thread scolebourne
scolebourne2003/10/09 13:44:32 Modified:collections/src/java/org/apache/commons/collections/comparators NullComparator.java collections/src/java/org/apache/commons/collections/iterators ObjectArrayListIterator.java

Re: [codec][collections][dbcp] incorrect license for some source files

2003-10-09 Thread robert burrell donkin
i've inlined it this time. it takes a directory as the parameter. - robert #!/bin/sh fix_license() { if [ -f $file ] then echo processing $file cat $file | perl -e 'while (STDIN) { if (/^ \*any, must include the following acknowlegement:/) { print

Fileupload: fails for forms with a large number of inputs with OurOfMemoryError

2003-10-09 Thread Mike Samuel
The fileupload package is well-architected, and a pleasure to use, but I ran into a problem. Attached is a test case servlet which repeats the problem with the Jun 24, 2003 fileupload-1.0 release. FileUploadBase.parseRequest runs out of memory when parsing a form with a large number of inputs.

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/observed/standard StandardModificationHandler.java

2003-10-09 Thread scolebourne
scolebourne2003/10/09 13:50:04 Modified:collections/src/java/org/apache/commons/collections/observed ObservableSortedBag.java ObservableSortedSet.java ObservableList.java ObservableCollection.java

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/primitives IntCollections.java ArrayUnsignedIntList.java CharList.java

2003-10-09 Thread scolebourne
scolebourne2003/10/09 13:51:15 Modified:collections/src/java/org/apache/commons/collections/primitives IntCollections.java ArrayUnsignedIntList.java CharList.java Log: Fix various javadoc link warnings bug 23680, from Eric Johnson

cvs commit: jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/xmlunit TestXmlTestCase.java XmlTestCase.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:52:11 Modified:betwixt LICENSE.txt betwixt/src/java/org/apache/commons/betwixt AttributeDescriptor.java BeanProperty.java BindingConfiguration.java Descriptor.java

cvs commit: jakarta-commons/cli/src/java/org/apache/commons/cli AlreadySelectedException.java BasicParser.java CommandLine.java CommandLineParser.java GnuParser.java HelpFormatter.java MissingArgumentException.java MissingOptionException.java Option.java OptionBuilder.java OptionGroup.java OptionValidator.java Options.java ParseException.java Parser.java PatternOptionBuilder.java PosixParser.java TypeHandler.java UnrecognizedOptionException.java Util.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:57:02 Modified:cli/src/java/org/apache/commons/cli AlreadySelectedException.java BasicParser.java CommandLine.java CommandLineParser.java GnuParser.java HelpFormatter.java

cvs commit: jakarta-commons/cli/src/test/org/apache/commons/cli OptionsTest.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 13:57:20 Modified:cli/src/test/org/apache/commons/cli OptionsTest.java Log: Fixed typos in apache licenses Revision ChangesPath 1.2 +7 -7 jakarta-commons/cli/src/test/org/apache/commons/cli/OptionsTest.java Index: OptionsTest.java

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections CommonsLinkedList.java NodeCachingLinkedList.java BufferOverflowException.java TransformerUtils.java MultiMap.java ReferenceMap.java BufferUnderflowException.java UnboundedFifoBuffer.java MultiHashMap.java ExtendedProperties.java

2003-10-09 Thread scolebourne
scolebourne2003/10/09 13:58:53 Modified:collections/src/java/org/apache/commons/collections CommonsLinkedList.java NodeCachingLinkedList.java BufferOverflowException.java TransformerUtils.java MultiMap.java

cvs commit: jakarta-commons/collections build.xml

2003-10-09 Thread scolebourne
scolebourne2003/10/09 14:00:05 Modified:collections build.xml Log: Change javadoc produced from public only to protected as well Revision ChangesPath 1.46 +2 -2 jakarta-commons/collections/build.xml Index: build.xml

DO NOT REPLY [Bug 23680] - Collections Javadoc warnings with JDK 1.4.2

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

cvs commit: jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/cpdsadapter ConnectionImpl.java DriverAdapterCPDS.java PoolablePreparedStatementStub.java PooledConnectionImpl.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:03:36 Modified:dbcp/src/java/org/apache/commons/dbcp/cpdsadapter ConnectionImpl.java DriverAdapterCPDS.java PoolablePreparedStatementStub.java PooledConnectionImpl.java Log: Fixed typos in

cvs commit: jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/datasources CPDSConnectionFactory.java InstanceKeyDataSource.java InstanceKeyObjectFactory.java KeyedCPDSConnectionFactory.java PerUserPoolDataSource.java PoolKey.java PooledConnectionAndInfo.java SharedPoolDataSource.java UserPassKey.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:03:57 Modified:dbcp/src/java/org/apache/commons/dbcp/datasources CPDSConnectionFactory.java InstanceKeyDataSource.java InstanceKeyObjectFactory.java

cvs commit: jakarta-commons/dbcp/src/java/org/apache/commons/dbcp AbandonedConfig.java AbandonedObjectPool.java AbandonedTrace.java BasicDataSource.java BasicDataSourceFactory.java ConnectionFactory.java DataSourceConnectionFactory.java DbcpException.java DelegatingCallableStatement.java DelegatingConnection.java DelegatingPreparedStatement.java DelegatingResultSet.java DelegatingStatement.java DriverConnectionFactory.java DriverManagerConnectionFactory.java PoolableConnection.java PoolableConnectionFactory.java PoolablePreparedStatement.java PoolingConnection.java PoolingDataSource.java PoolingDriver.java SQLNestedException.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:04:45 Modified:dbcp/src/java/org/apache/commons/dbcp AbandonedConfig.java AbandonedObjectPool.java AbandonedTrace.java BasicDataSource.java BasicDataSourceFactory.java ConnectionFactory.java

cvs commit: jakarta-commons/dbcp/src/test/org/apache/commons/jocl TestAll.java TestJOCLContentHandler.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:05:30 Modified:dbcp LICENSE.txt dbcp/doc JOCLPoolingDriverExample.java ManualPoolingDataSourceExample.java ManualPoolingDriverExample.java dbcp/src/java/org/apache/commons/jocl

cvs commit: jakarta-commons/el LICENSE.txt

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:13:44 Modified:el LICENSE.txt Log: Fixed typos in apache licenses Revision ChangesPath 1.2 +6 -6 jakarta-commons/el/LICENSE.txt Index: LICENSE.txt === RCS

cvs commit: jakarta-commons/fileupload/src/java/org/apache/commons/fileupload DefaultFileItem.java DefaultFileItemFactory.java DeferredFileOutputStream.java DiskFileUpload.java FileItem.java FileItemFactory.java FileUpload.java FileUploadBase.java FileUploadException.java MultipartStream.java ThresholdingOutputStream.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:15:48 Modified:fileupload/src/java/org/apache/commons/fileupload DefaultFileItem.java DefaultFileItemFactory.java DeferredFileOutputStream.java DiskFileUpload.java FileItem.java

cvs commit: jakarta-commons/fileupload/src/test/org/apache/commons/fileupload DefaultFileItemTest.java DeferredFileOutputStreamTest.java MultipartStreamTest.java TestAll.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:16:47 Modified:fileupload LICENSE.txt fileupload/src/test/org/apache/commons/fileupload DefaultFileItemTest.java DeferredFileOutputStreamTest.java MultipartStreamTest.java

Re: [pcollections] Name change?

2003-10-09 Thread Stephen Colebourne
I've adapted the proposal slightly for the name change, with an extra descriptive paragraph, and less emphasis on collections. Any changes needed? I'll include the final text in the vote result and give people a chance to object. Stephen -- (0) Rationale The Java language has a fundamental

RE: [HttpClient] Freezes w/ MultiThreadedHttpConnectionManager

2003-10-09 Thread Adrian Sutton
Hi Adam, This looks like a bug in VFS that I think has been mentioned on this list before - it doesn't always release the connection when it's done with it and as such, HttpClient reaches the limit for concurrent connections and sits waiting for an old one to be released. I would suggest trying

cvs commit: jakarta-commons/jexl/src/test/org/apache/commons/jexl/junit AsserterTest.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:28:57 Modified:jexl LICENSE.txt jexl/examples ArrayExample.java MethodPropertyExample.java jexl/src/java/org/apache/commons/jexl Expression.java ExpressionFactory.java ExpressionImpl.java

[collections] package observed -- observable

2003-10-09 Thread Michael Heuer
While I'm at giving my thoughts on names for things, I would also like to see the package o.a.c.collections.observed change to observable to match the class names. I can submit a patch if desired, but most of the change is in cvs, not in the source code. michael On Thu, 9 Oct 2003, Michael

cvs commit: jakarta-commons/jxpath/src/test/org/apache/commons/jxpath/util BasicTypeConverterTest.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:31:44 Modified:jxpath LICENSE.txt jxpath/src/java/org/apache/commons/jxpath AbstractFactory.java BasicNodeSet.java BasicVariables.java ClassFunctions.java

cvs commit: jakarta-commons/latka/src/test/org/apache/commons/latka/junit TestAll.java TestJUnitEventReporter.java TestJUnitTestAdapter.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:34:54 Modified:latkaLICENSE.txt latka/src/java/org/apache/commons/latka AbstractReporter.java DefaultLatkaEventInfo.java HtmlPrettyPrintWriter.java Latka.java

cvs commit: jakarta-commons/launcher/src/java/org/apache/commons/launcher/types ArgumentSet.java ConditionalArgument.java ConditionalArgumentSet.java ConditionalVariable.java ConditionalVariableSet.java JVMArgumentSet.java SysPropertySet.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:36:34 Modified:launcher LICENSE.txt launcher/src/java LauncherBootstrap.java launcher/src/java/org/apache/commons/launcher ChildMain.java ExitOnErrorThreadGroup.java LaunchCommand.java

cvs commit: jakarta-commons/logging/src/test/org/apache/commons/logging/simple CustomConfigTestCase.java DecoratedSimpleLog.java DefaultConfigTestCase.java LogRecord.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:37:48 Modified:logging LICENSE.txt logging/src/java/org/apache/commons/logging Log.java LogConfigurationException.java LogFactory.java LogSource.java

cvs commit: jakarta-commons/net/src/test/org/apache/commons/net/telnet EchoOptionHandlerTest.java InvalidTelnetOptionExceptionTest.java SimpleOptionHandlerTest.java SuppressGAOptionHandlerTest.java TelnetClientFunctionalTest.java TelnetClientTest.java TelnetOptionHandlerTestAbstract.java TelnetOptionTest.java TelnetTestResponder.java TelnetTestSimpleServer.java TerminalTypeOptionHandlerTest.java

2003-10-09 Thread rdonkin
rdonkin 2003/10/09 14:42:27 Modified:net/src/test/org/apache/commons/net/telnet EchoOptionHandlerTest.java InvalidTelnetOptionExceptionTest.java SimpleOptionHandlerTest.java

Re: [pcollections] Name change?

2003-10-09 Thread Dirk Verbeeck
+1 to primitives Stephen Colebourne wrote: Should we name it [pcollections]? Or is [primitives] better? (The sandbox primitives is then a sandbox for the proper component for experimentation). I had forgotten about the special io input stream stuff, which might lead to the name [primitives]. I

cvs commit: jakarta-commons-sandbox/hivemind/framework/src/java/org/apache/commons/hivemind/service/impl DefaultsSymbolSource.java ThreadLocalStorageImpl.java

2003-10-09 Thread hlship
hlship 2003/10/09 15:58:17 Modified:hivemind/framework project.xml maven.xml hivemind/framework/src/test/hivemind/test/services TestThreadLocalStorage.java hivemind/framework/xdocs ThreadEventNotifier.xml

cvs commit: jakarta-commons-sandbox/hivemind/library project.properties project.xml

2003-10-09 Thread hlship
hlship 2003/10/09 16:16:24 Modified:hivemind/framework project.xml project.properties hivemind/framework/src/java/org/apache/commons/hivemind/impl ServiceExtensionPointImpl.java ElementsProxyList.java

RE: [pcollections] Name change?

2003-10-09 Thread Gary Gregory
+1 to [primitives] Gary -Original Message- From: Stephen Colebourne [mailto:[EMAIL PROTECTED] Sent: Thursday, October 09, 2003 13:12 To: Jakarta Commons Developers List Subject: [pcollections] Name change? Should we name it [pcollections]? Or is [primitives] better? (The sandbox

cvs commit: jakarta-commons-sandbox/chain/src/java/org/apache/commons/chain/web/servlet ChainProcessor.java

2003-10-09 Thread craigmcc
craigmcc2003/10/09 20:55:51 Added: chain/src/java/org/apache/commons/chain/web/servlet ChainProcessor.java Log: Add a simple servlet that lets you dispatch incoming requests to an appropriate chain. Three sample mapping commands (by path info,

DO NOT REPLY [Bug 23703] New: - Freezes w/ MultiThreadedHttpConnectionManager

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

DO NOT REPLY [Bug 23703] - Freezes w/ MultiThreadedHttpConnectionManager

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

DO NOT REPLY [Bug 23703] - Freezes w/ MultiThreadedHttpConnectionManager

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

DO NOT REPLY [Bug 23703] - Freezes w/ MultiThreadedHttpConnectionManager

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

DO NOT REPLY [Bug 23708] New: - DefaultHttpParamsFactory violates applet sandbox

2003-10-09 Thread bugzilla
: Normal Priority: Other Component: HttpClient AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The DefaultHttpParamsFactory in nightly build 20031009 makes two calls to System.getProperties(). This is by default verboten in an applet. I have patched

DO NOT REPLY [Bug 23708] - DefaultHttpParamsFactory violates applet sandbox

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

DO NOT REPLY [Bug 23703] - Freezes w/ MultiThreadedHttpConnectionManager

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

DO NOT REPLY [Bug 23703] - Freezes w/ MultiThreadedHttpConnectionManager

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

Re: MultiThreadedHttpConnectionManager question

2003-10-09 Thread Michael Becke
This definitely looks like the problem. I think it's a little late to add this as a config option for 2.0, but should definitely be possible in head. What do people think? Mike On Thursday, October 9, 2003, at 04:56 AM, Andrea Fabris wrote: I took a look on the httpclient sourcecode and i

DO NOT REPLY [Bug 23708] - DefaultHttpParamsFactory violates applet sandbox

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

[VOTE][RESULT] 2.0 RC2 release

2003-10-09 Thread Michael Becke
The final vote was +3 with no negatives. Let's plan on tagging the branch once the pending changes to fix System property access are applied (assuming they are going into 2.0). Mike - To unsubscribe, e-mail: [EMAIL

  1   2   >