cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient HeaderElement.java

2003-03-08 Thread olegk
olegk 2003/03/08 13:30:02 Modified:httpclient/src/java/org/apache/commons/httpclient HeaderElement.java Log: Fixes the problem with the HTTP header element parser using case-sensitive string matching Contributed by Padraig O'hIceadha <[EMAIL PROTECTED]

cvs commit: jakarta-commons-sandbox/dbutils/src/test/org/apache/commons/dbutils Demo.java ProcedureUtilsTest.java

2003-03-08 Thread baliuka
baliuka 2003/03/08 12:35:05 Modified:dbutils/src/java/org/apache/commons/dbutils DbUtils.java ProcedureUtils.java Added: dbutils/src/java/org/apache/commons/dbutils ResultSetHandler.java ScalarHandler.java dbutils/src

Re: [collections] Faster than HashMap?

2003-03-08 Thread Juozas Baliuka
No file is attached. It will be faster on "small" maps, but method code size is limited, 65535 bytes or something like this and it needs some workaround. - Original Message - From: "Stephen Colebourne" <[EMAIL PROTECTED]> To: "Jakarta Commons Developers List" <[EMAIL PROTECTED]> Sent: Sa

cvs commit: jakarta-commons/fileupload/src/test/org/apache/commons/fileupload FileUploadTest.java

2003-03-08 Thread sullis
sullis 2003/03/08 10:30:03 Modified:fileupload/src/test/org/apache/commons/fileupload FileUploadTest.java Log: updated copyright year for 2003 added test code CVS: -- CVS: PR: CVS:

cvs commit: jakarta-commons/fileupload/src/test/org/apache/commons/fileupload HttpServletRequestFactory.java

2003-03-08 Thread sullis
sullis 2003/03/08 10:29:17 Modified:fileupload/src/test/org/apache/commons/fileupload HttpServletRequestFactory.java Log: updated test code CVS: -- CVS: PR: CVS: If this change addres

[collections] Faster than HashMap?

2003-03-08 Thread Stephen Colebourne
I'd had an idea for a way to create a map thats faster to read than a HashMap... The idea was to bytecode generate the mapping from the hashcode to the index: public int lookupIndex(Object key) { switch (key.hashCode()) { case -1682: // hashcode return 2; // index of Map.Entry case

Re: [PATCH] AdaptorRegistry

2003-03-08 Thread robert burrell donkin
On Friday, March 7, 2003, at 03:55 PM, Howard M. Lewis Ship wrote: Since I'm a Jakarta committer, I can be a Commons committer by default (from what I've read). Still I'd prefer to be "invited" to move code from Tapestry to commons. hi howard i'm sure what you've read where but IMHO it's easy t

Re: [Jelly] jelly script in an Object's String attribute / FROM user list

2003-03-08 Thread Raphaël Piéroni
Hello list it is working (on a little test). in attached files JellyContext.java (with the two methods written at start of the class) and a test case (the script is the same as test_args.jelly) I may have made mistakes using the context. so feel free to change all that don't fill the style guide

[dbutils]Dependancy on QDox was Re: [dbutils] Proxies

2003-03-08 Thread Juozas Baliuka
I have started implementation for this stuff, it depends on QDox ( javadoc parser ), I need some metada to implement sql procedure call, java sourse file is used as metadata itself: interface MyDAO{ /** * @sql SELECT * FROM MY_TABLE * @handler com.maycompany.MyHandler */

Re: [collections] Desirability of typed and othervalidatedCollections

2003-03-08 Thread Stephen Colebourne
I agree with your logic. However this is what predicatedCollection does, see validate(). Stephen - Original Message - From: "grumpoxl" <[EMAIL PROTECTED]> To: "Jakarta Commons Developers List" <[EMAIL PROTECTED]> Sent: Friday, March 07, 2003 8:01 PM Subject: Re: [collections] Desirability

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

2003-03-08 Thread Morgan Delagrange
This email is autogenerated from the output from: Buildfile: build.xml init: [mkdir] Created dir: /home/rubys/ja

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

2003-03-08 Thread Morgan Delagrange
This email is autogenerated from the output from: Buildfile: build.xml init: [mkdir] Created dir: /home/rubys/j

cvs commit: jakarta-commons/jelly/src/java/org/apache/commons/jelly/util SafeContentHandler.java

2003-03-08 Thread jstrachan
jstrachan2003/03/08 02:13:34 Modified:jelly/src/java/org/apache/commons/jelly/tags/core FileTag.java Added: jelly/src/java/org/apache/commons/jelly/util SafeContentHandler.java Log: Patch to avoid multiple start/end document eve