Re: [daemon] making a release

2004-02-09 Thread Bill Barker
+1
- Original Message - 
From: "jean-frederic clere" <[EMAIL PROTECTED]>
To: "Jakarta Commons Developers List" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Monday, February 09, 2004 9:33 AM
Subject: [daemon] making a release


> Hi,
> 
> I am thinking of releasing daemon this week. (Friday).
> 
> Any comments?
> 
> Cheers
> 
> Jean-Frederic
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication in 
error, please notify us immediately by e-mail and then delete all copies of this 
message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through the 
Internet is not secure. Do not send confidential or sensitive information, such as 
social security numbers, account numbers, personal identification numbers and 
passwords, to us via ordinary (unencrypted) e-mail.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-commons/io/xdocs tasks.xml

2004-02-09 Thread bayard
bayard  2004/02/09 22:10:09

  Modified:io/xdocs tasks.xml
  Log:
  input done except for SwappedDataInputStream
  
  Revision  ChangesPath
  1.19  +1 -1  jakarta-commons/io/xdocs/tasks.xml
  
  Index: tasks.xml
  ===
  RCS file: /home/cvs/jakarta-commons/io/xdocs/tasks.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- tasks.xml 10 Feb 2004 06:03:43 -  1.18
  +++ tasks.xml 10 Feb 2004 06:10:09 -  1.19
  @@ -21,7 +21,7 @@
 Javadoc status:
 
   io.*
  -io.input
  +io.input [SwappedDataInputStream might need work]
   io.output
 
 
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/io/src/java/org/apache/commons/io/input ProxyReader.java

2004-02-09 Thread bayard
bayard  2004/02/09 22:07:08

  Modified:io/src/java/org/apache/commons/io/input ProxyReader.java
  Log:
  slight paragraph change
  
  Revision  ChangesPath
  1.2   +3 -1  
jakarta-commons/io/src/java/org/apache/commons/io/input/ProxyReader.java
  
  Index: ProxyReader.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/input/ProxyReader.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ProxyReader.java  29 Dec 2003 06:18:08 -  1.1
  +++ ProxyReader.java  10 Feb 2004 06:07:08 -  1.2
  @@ -60,7 +60,9 @@
   /**
* A Proxy stream which acts as expected, that is it passes the method 
* calls on to the proxied stream and doesn't change which methods are 
  - * being called. It is an alternative base class to FilterReader
  + * being called. 
  + * 
  + * It is an alternative base class to FilterReader
* to increase reusability, because FilterReader changes the 
* methods being called, such as read(char[]) to read(char[], int, int).
*/
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/io/src/java/org/apache/commons/io/input ProxyInputStream.java

2004-02-09 Thread bayard
bayard  2004/02/09 22:06:48

  Modified:io/src/java/org/apache/commons/io/input
ProxyInputStream.java
  Log:
  slight paragraph change
  
  Revision  ChangesPath
  1.4   +3 -1  
jakarta-commons/io/src/java/org/apache/commons/io/input/ProxyInputStream.java
  
  Index: ProxyInputStream.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/input/ProxyInputStream.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ProxyInputStream.java 23 Nov 2003 08:34:34 -  1.3
  +++ ProxyInputStream.java 10 Feb 2004 06:06:48 -  1.4
  @@ -60,7 +60,9 @@
   /**
* A Proxy stream which acts as expected, that is it passes the method 
* calls on to the proxied stream and doesn't change which methods are 
  - * being called. It is an alternative base class to FilterInputStream
  + * being called. 
  + * 
  + * It is an alternative base class to FilterInputStream
* to increase reusability, because FilterInputStream changes the 
* methods being called, such as read(byte[]) to read(byte[], int, int).
*/
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/io/src/java/org/apache/commons/io/input CountingInputStream.java

2004-02-09 Thread bayard
bayard  2004/02/09 22:06:05

  Modified:io/src/java/org/apache/commons/io/input
CountingInputStream.java
  Log:
  improved javadoc
  
  Revision  ChangesPath
  1.7   +17 -4 
jakarta-commons/io/src/java/org/apache/commons/io/input/CountingInputStream.java
  
  Index: CountingInputStream.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/input/CountingInputStream.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- CountingInputStream.java  30 Dec 2003 15:19:00 -  1.6
  +++ CountingInputStream.java  10 Feb 2004 06:06:05 -  1.7
  @@ -75,21 +75,33 @@
   super(in);
   }
   
  -/** @see java.io.InputStream#read(byte[]) */
  +/**
  + * Increases the count by super.read(b)'s return count
  + * 
  + * @see java.io.InputStream#read(byte[]) 
  + */
   public int read(byte[] b) throws IOException {
   int found = super.read(b);
   this.count += found;
   return found;
   }
   
  -/** @see java.io.InputStream#read(byte[], int, int) */
  +/**
  + * Increases the count by super.read(b, off, len)'s return count
  + *
  + * @see java.io.InputStream#read(byte[], int, int)
  + */
   public int read(byte[] b, int off, int len) throws IOException {
   int found = super.read(b, off, len);
   this.count += found;
   return found;
   }
   
  -/** @see java.io.InputStream#read() */
  +/**
  + * Increases the count by 1. 
  + *
  + * @see java.io.InputStream#read()
  + */
   public int read() throws IOException {
   this.count++;
   return super.read();
  @@ -97,6 +109,7 @@
   
   /**
* The number of bytes that have passed through this stream.
  + *
* @return the number of bytes accumulated
*/
   public int getCount() {
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/io/xdocs tasks.xml

2004-02-09 Thread bayard
bayard  2004/02/09 22:03:43

  Modified:io/xdocs tasks.xml
  Log:
  filefilter subpackage is ready for release javadoc wise
  
  Revision  ChangesPath
  1.18  +0 -1  jakarta-commons/io/xdocs/tasks.xml
  
  Index: tasks.xml
  ===
  RCS file: /home/cvs/jakarta-commons/io/xdocs/tasks.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- tasks.xml 10 Feb 2004 06:03:18 -  1.17
  +++ tasks.xml 10 Feb 2004 06:03:43 -  1.18
  @@ -21,7 +21,6 @@
 Javadoc status:
 
   io.*
  -io.filefilter
   io.input
   io.output
 
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/io/xdocs tasks.xml

2004-02-09 Thread bayard
bayard  2004/02/09 22:03:18

  Modified:io/xdocs tasks.xml
  Log:
  pushed the ClassLoaderObjectStream to a later release [unless a unit test is 
written] and added tasks for javadocs
  
  Revision  ChangesPath
  1.17  +8 -2  jakarta-commons/io/xdocs/tasks.xml
  
  Index: tasks.xml
  ===
  RCS file: /home/cvs/jakarta-commons/io/xdocs/tasks.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- tasks.xml 16 Jan 2004 17:05:03 -  1.16
  +++ tasks.xml 10 Feb 2004 06:03:18 -  1.17
  @@ -12,19 +12,25 @@
   
 EndianUtils - InputStream/OutputStream methods
 LockableFileWriter
  -  ClassLoaderObjectInputStream
 SwappedDataInputStream - [half done]
   
   though they may not affect an initial beta release. 
   
  -More Javadocs!!!
   Improve site!!!
 
  +  Javadoc status:
  +  
  +io.*
  +io.filefilter
  +io.input
  +io.output
  +  
 
   The following classes will be excluded from the initial release:
 
 
   FilenameUtils: This class is still a big mess with many methods not 
working properly.
  +ClassLoaderObjectInputStream: Unless a unit test is written for it in 
time. 
 
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/io/src/java/org/apache/commons/io/filefilter FileFilterUtils.java

2004-02-09 Thread bayard
bayard  2004/02/09 22:00:03

  Modified:io/src/java/org/apache/commons/io/filefilter
FileFilterUtils.java
  Log:
  fixed grammar
  
  Revision  ChangesPath
  1.7   +2 -2  
jakarta-commons/io/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java
  
  Index: FileFilterUtils.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/FileFilterUtils.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- FileFilterUtils.java  22 Nov 2003 20:03:52 -  1.6
  +++ FileFilterUtils.java  10 Feb 2004 06:00:03 -  1.7
  @@ -59,7 +59,7 @@
   /**
* Useful utilities for working with file filters. It provides access to all
* file filter implementations in this package so you don't have to import
  - * every classes you use.
  + * every class you use.
* 
* @since Commons IO 1.0
* @version $Revision$ $Date$
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/io/src/java overview.html

2004-02-09 Thread bayard
bayard  2004/02/09 21:58:19

  Added:   io/src/java overview.html
  Log:
  added a simple overview to the javadoc based on the maven project.xml.
  
  Revision  ChangesPath
  1.1  jakarta-commons/io/src/java/overview.html
  
  Index: overview.html
  ===
  
  
  Overview Documentation for COMMONS-IO
  
  
  Commons.IO is a package of Java utility classes for java.io's hierarchy.  Classes 
in this package are considered to be so standard and of such high reuse as to justify 
existence in java.io. 
  
  
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 26772] - [math][patch] addition of load(double[]) initialization to the EmpiricalDistribution

2004-02-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26772

[math][patch] addition of load(double[]) initialization to the EmpiricalDistribution





--- Additional Comments From [EMAIL PROTECTED]  2004-02-10 05:49 ---
Because of line wrapping and some other problems that I can't fix easily, the
second patch below is corrupted.  Can you please regenerate the patches and
submit them as file attachments?  thx

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 26802] New: - The Log4JCategoryLog class does not get Serialized in WLS 8.1. Given below is the stackTrace

2004-02-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26802

The Log4JCategoryLog class does not get Serialized in WLS 8.1. Given below is the 
stackTrace

   Summary: The Log4JCategoryLog class does not get Serialized in
WLS 8.1. Given below is the stackTrace
   Product: Commons
   Version: 1.1 Final
  Platform: Other
OS/Version: Solaris
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Logging
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


ava.io.NotSerializableException: org.apache.commons.logging.impl.Log4JCategoryL
og
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1054)
at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java
:1330)
at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:13
02)
at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav
a:1245)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java
:1330)
at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:13
02)
at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav
a:1245)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
at java.util.ArrayList.writeObject(ArrayList.java:530)
at sun.reflect.GeneratedMethodAccessor278.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:79
5)
at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:12
94)
at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav
a:1245)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java
:1330)
at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:13
02)
at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav
a:1245)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java
:1330)
at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:13
02)
at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav
a:1245)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java
:1330)
at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:13
02)
at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.jav
a:1245)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
at weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.jav
a:78)
at weblogic.rmi.internal.ServerRequest.unmarshalThrowable(ServerRequest.
java:327)
at weblogic.rmi.internal.ServerRequest.getThrowable(ServerRequest.java:5
9)
at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:18
4)
at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
ef.java:284)
at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
ef.java:244)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[HiveMind] Bug in ThreadEventNotifierImpl?

2004-02-09 Thread Harish Krishnaswamy
Howard,

Seems like ThreadEventNotifierImpl has a bug. ThreadLocalStorage is 
notified only once in the very first thread that creates and registers 
it with the notifier. All subsequent threads have no knowledge of the 
registered ThreadLocalStorage. Looking at the docs for ThreadLocal, it 
looks like ThreadLocal variables are initialized to null at the 
beginning of each thread and hence our listener registrations are lost. 
I changed the _storage variable in the ThreadEventNotifierImpl to be an 
EventListenerList instead of ThreadLocal and everything seems to be 
working fine. When EventListenerList is thread safe why did you choose 
ThreadLocal, am I missing something?

-Harish
PS. Sending this to your account directly just so you don't miss it.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


cvs commit: jakarta-commons/httpclient/src/test/org/apache/commons/httpclient/server ProxyAuthRequestHandler.java SimpleHttpServer.java

2004-02-09 Thread olegk
olegk   2004/02/09 10:16:28

  Modified:httpclient/src/java/org/apache/commons/httpclient
MultiThreadedHttpConnectionManager.java
   httpclient/src/java/org/apache/commons/httpclient/auth
BasicScheme.java
   httpclient/src/test/org/apache/commons/httpclient
TestBadContentLength.java TestProxy.java
   httpclient/src/test/org/apache/commons/httpclient/server
ProxyAuthRequestHandler.java SimpleHttpServer.java
  Log:
  Minor corrections to SimpleHttpServer related code
  
  Contributed by Oleg Kalnichevski
  
  Revision  ChangesPath
  1.32  +3 -4  
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/MultiThreadedHttpConnectionManager.java
  
  Index: MultiThreadedHttpConnectionManager.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/MultiThreadedHttpConnectionManager.java,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- MultiThreadedHttpConnectionManager.java   13 Jan 2004 18:47:25 -  1.31
  +++ MultiThreadedHttpConnectionManager.java   9 Feb 2004 18:16:28 -   1.32
  @@ -1404,7 +1404,6 @@
* @see org.apache.commons.httpclient.HttpConnection#setSocketTimeout(int)
*/
   public void setSocketTimeout(int timeout) throws SocketException, 
IllegalStateException {
  -// TODO Auto-generated method stub
   if (hasConnection()) {
   wrappedConnection.setSocketTimeout(timeout);
   } else {
  
  
  
  1.14  +6 -4  
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth/BasicScheme.java
  
  Index: BasicScheme.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth/BasicScheme.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- BasicScheme.java  14 Jan 2004 20:48:43 -  1.13
  +++ BasicScheme.java  9 Feb 2004 18:16:28 -   1.14
  @@ -210,6 +210,9 @@
   
   LOG.trace("enter BasicScheme.authenticate(Credentials, HttpMethod)");
   
  +if (method == null) {
  +throw new IllegalArgumentException("Method may not be null");
  +}
   UsernamePasswordCredentials usernamepassword = null;
   try {
   usernamepassword = (UsernamePasswordCredentials) credentials;
  @@ -218,7 +221,6 @@
   "Credentials cannot be used for basic authentication: " 
   + credentials.getClass().getName());
   }
  -
   return BasicScheme.authenticate(
   usernamepassword, 
   method.getParams().getCredentialCharset());
  
  
  
  1.4   +4 -23 
jakarta-commons/httpclient/src/test/org/apache/commons/httpclient/TestBadContentLength.java
  
  Index: TestBadContentLength.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/test/org/apache/commons/httpclient/TestBadContentLength.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TestBadContentLength.java 6 Jan 2004 20:08:56 -   1.3
  +++ TestBadContentLength.java 9 Feb 2004 18:16:28 -   1.4
  @@ -109,26 +109,7 @@
   // --- Test Methods
   
   public void setUp() throws IOException {
  -/*
  - * uncomment to enable wire log
  - */
  -/*   
  -System.setProperty(
  -"org.apache.commons.logging.Log",
  -"org.apache.commons.logging.impl.SimpleLog");
  -System.setProperty(
  -"org.apache.commons.logging.simplelog.showdatetime",
  -"true");
  -System.setProperty(
  -"org.apache.commons.logging.simplelog.log.httpclient.wire",
  -"debug");
  -System.setProperty(
  -
"org.apache.commons.logging.simplelog.log.org.apache.commons.httpclient",
  -"debug");
  -*/
  -
   client = new HttpClient();
  -
   server = new SimpleHttpServer(); // use arbitrary port
   server.setRequestHandler(new MyHttpRequestHandler());
   }
  
  
  
  1.4   +12 -21
jakarta-commons/httpclient/src/test/org/apache/commons/httpclient/TestProxy.java
  
  Index: TestProxy.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/test/org/apache/commons/httpclient/TestProxy.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TestProxy.java11 Dec 2003 09:19:19 -  1.3
  +++ TestProxy.java9 Feb 2004

RE: [daemon] making a release

2004-02-09 Thread Shapira, Yoav

Howdy,
+1, willing to help if you need it.

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: jean-frederic clere [mailto:[EMAIL PROTECTED]
>Sent: Monday, February 09, 2004 12:33 PM
>To: Jakarta Commons Developers List
>Cc: [EMAIL PROTECTED]
>Subject: [daemon] making a release
>
>Hi,
>
>I am thinking of releasing daemon this week. (Friday).
>
>Any comments?
>
>Cheers
>
>Jean-Frederic
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2004-02-09 Thread olegk
olegk   2004/02/09 10:01:07

  Modified:httpclient/src/java/org/apache/commons/httpclient
HttpMethodDirector.java
  Log:
  PR #26500 (New socket timeout value wont have effect if connection is reused)
  
  Contributed by Oleg Kalnichevski
  
  Revision  ChangesPath
  1.17  +6 -3  
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodDirector.java
  
  Index: HttpMethodDirector.java
  ===
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodDirector.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- HttpMethodDirector.java   4 Feb 2004 20:52:33 -   1.16
  +++ HttpMethodDirector.java   9 Feb 2004 18:01:07 -   1.17
  @@ -369,6 +369,9 @@
   }
   }
   }
  +
  +this.conn.setSocketTimeout(this.conn.getParams().getSoTimeout());
  +
   try {
   method.execute(state, this.conn);
   break;
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[daemon] making a release

2004-02-09 Thread jean-frederic clere
Hi,

I am thinking of releasing daemon this week. (Friday).

Any comments?

Cheers

Jean-Frederic

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [general] Maven 'LATEST-RELEASE' tag suggestion

2004-02-09 Thread Gus Heck
Sounds like you want something called "date space" directories... where 
you have /var/www/html/site/2004/02/09/foo and symlinks are used to 
point to the correct date so that the world can find the current version 
at http://example.org/foo or a specific version at 
http://example.org/2004/02/09/foo. (somewhat like w3c recs). One of the 
issues with this is that over time if you have a site where various 
sections update at different intervals, and some sections have one or 
more un-released incomplete next-versions, the symlinks begin to 
represent fairly valuable information, which is not backed up anywhere.

Since this describes the site I work on, I wrote an ant task that will 
record and re-create symlinks using properties files. So if you go this 
route you may (or may not) want to check it out ant's  task and 
set up some scripts or targets to maintain this information. However, 
this may not be as neccessary because in your case, there are one or 
more people for each sub-section that can probably manually maintain a 
few such links each. In my case I have over a dozen sections and there 
is just one of me so I automate it :).

-Gus

robert burrell donkin wrote:

On 7 Feb 2004, at 21:32, Mark R. Diggory wrote:

robert burrell donkin wrote:

On 7 Feb 2004, at 20:53, Mark R. Diggory wrote:

It also gives developers some room to work. If there is a global 
nightly/weekly process for generating the commons site and its 
sub-projects then in reality they probibly don't want the site 
xref/xdocs generated off of thier bleeding edge all the time.
hmmm...
i'd probably want the best of both worlds - the latest and greatest 
version but also versions of the site for each release. i suppose 
that it'd be possible to do something with directories so 
commons/kool/current would contain the latest version but 
commons/kool/7.12.89/ would contain the documentation which was 
current when 7.12.89 was released.
just a suggestion (rather than a criticism)...
- robert


No, thats a really good point about versioned javadoc. Javadoc for 
version 1.0, 2.0, ..., Current of a subproject.

This would require maintaining the content of previous release site 
generations, pushing into a special directory reserved for its 
archiving.


craig advocated something similar in the original commons release 
documents (but only kept the last release). it shouldn't be too great 
a burden to copy the current website into a specially numbered 
directory when a release is cut.

- robert

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


DO NOT REPLY [Bug 23368] - documentation contribution

2004-02-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23368

documentation contribution

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||LATER

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 23365] - DaemonController.reload() has restart() semantics

2004-02-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23365

DaemonController.reload() has restart() semantics

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: jakarta-commons/daemon/src/native/unix/native Makefile.in Tomcat.sh Tomcat5.sh arguments.c arguments.h debug.c debug.h dso-dlfcn.c dso-dyld.c dso.h help.c help.h home.c home.h java.c java.h jsvc-unix.c jsvc.h location.c location.h replace.c replace.h signals.c

2004-02-09 Thread jfclere
jfclere 2004/02/09 07:55:22

  Modified:daemon/src/native/unix/native Makefile.in Tomcat.sh
Tomcat5.sh arguments.c arguments.h debug.c debug.h
dso-dlfcn.c dso-dyld.c dso.h help.c help.h home.c
home.h java.c java.h jsvc-unix.c jsvc.h location.c
location.h replace.c replace.h signals.c
  Log:
  Arrange the licence text.
  The first commit was in jakarta-tomcat-service/java the 2001/07/26.
  So the first date can't be 1999.
  
  Revision  ChangesPath
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/Makefile.in
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/Makefile.in.diff?r1=1.1&r2=1.2
  
  
  1.4   +17 -0 jakarta-commons/daemon/src/native/unix/native/Tomcat.sh
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/Tomcat.sh.diff?r1=1.3&r2=1.4
  
  
  1.2   +16 -0 jakarta-commons/daemon/src/native/unix/native/Tomcat5.sh
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/Tomcat5.sh.diff?r1=1.1&r2=1.2
  
  
  1.4   +16 -58jakarta-commons/daemon/src/native/unix/native/arguments.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/arguments.c.diff?r1=1.3&r2=1.4
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/arguments.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/arguments.h.diff?r1=1.1&r2=1.2
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/debug.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/debug.c.diff?r1=1.1&r2=1.2
  
  
  1.3   +16 -58jakarta-commons/daemon/src/native/unix/native/debug.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/debug.h.diff?r1=1.2&r2=1.3
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/dso-dlfcn.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/dso-dlfcn.c.diff?r1=1.1&r2=1.2
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/dso-dyld.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/dso-dyld.c.diff?r1=1.1&r2=1.2
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/dso.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/dso.h.diff?r1=1.1&r2=1.2
  
  
  1.4   +15 -57jakarta-commons/daemon/src/native/unix/native/help.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/help.c.diff?r1=1.3&r2=1.4
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/help.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/help.h.diff?r1=1.1&r2=1.2
  
  
  1.7   +16 -58jakarta-commons/daemon/src/native/unix/native/home.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/home.c.diff?r1=1.6&r2=1.7
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/home.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/home.h.diff?r1=1.1&r2=1.2
  
  
  1.3   +16 -58jakarta-commons/daemon/src/native/unix/native/java.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/java.c.diff?r1=1.2&r2=1.3
  
  
  1.3   +16 -58jakarta-commons/daemon/src/native/unix/native/java.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/java.h.diff?r1=1.2&r2=1.3
  
  
  1.9   +16 -58jakarta-commons/daemon/src/native/unix/native/jsvc-unix.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/jsvc-unix.c.diff?r1=1.8&r2=1.9
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/jsvc.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/jsvc.h.diff?r1=1.1&r2=1.2
  
  
  1.3   +16 -58jakarta-commons/daemon/src/native/unix/native/location.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/location.c.diff?r1=1.2&r2=1.3
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/location.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/location.h.diff?r1=1.1&r2=1.2
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/replace.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/replace.c.diff?r1=1.1&r2=1.2
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/replace.h
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/native/replace.h.diff?r1=1.1&r2=1.2
  
  
  1.2   +16 -58jakarta-commons/daemon/src/native/unix/native/signals.c
  
  
http://cvs.apache.org/viewcvs/jakarta-commons/daemon/src/native/unix/nat

cvs commit: jakarta-commons/daemon/src/native/unix/native help.c home.c

2004-02-09 Thread jfclere
jfclere 2004/02/09 07:14:04

  Modified:daemon/src/native/unix/native help.c home.c
  Log:
  Prevent core when jvm.cfg is missing and add traces.
  
  Revision  ChangesPath
  1.3   +4 -2  jakarta-commons/daemon/src/native/unix/native/help.c
  
  Index: help.c
  ===
  RCS file: /home/cvs/jakarta-commons/daemon/src/native/unix/native/help.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- help.c16 Sep 2003 11:50:16 -  1.2
  +++ help.c9 Feb 2004 15:14:04 -   1.3
  @@ -69,7 +69,9 @@
   printf("-jvm \n");
   printf("use a specific Java Virtual Machine. Available JVMs:\n");
   printf("   ");
  -for (x=0; xjnum; x++) printf(" '%s'",data->jvms[x]->name);
  +for (x=0; xjnum; x++) {
  +  printf(" '%s'",PRINT_NULL(data->jvms[x]->name));
  +}
   printf("\n");
   
   printf("-cp / -classpath \n");
  
  
  
  1.6   +5 -2  jakarta-commons/daemon/src/native/unix/native/home.c
  
  Index: home.c
  ===
  RCS file: /home/cvs/jakarta-commons/daemon/src/native/unix/native/home.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- home.c19 Jan 2004 02:21:19 -  1.5
  +++ home.c9 Feb 2004 15:14:04 -   1.6
  @@ -84,7 +84,10 @@
   char *ret=NULL, *sp;
   char buf[1024];
   
  -if (cfgf==NULL) return(false);
  +if (cfgf==NULL) {
  +  log_debug("Can't open %s\n",data->cfgf);
  +  return(false);
  +}
   
   data->jvms=(home_jvm **)malloc(256*sizeof(home_jvm *));
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 23723] - jsvc does not compile due to missing headers

2004-02-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23723

jsvc does not compile due to missing headers

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 26772] - [math][patch] addition of load(double[]) initialization to the EmpiricalDistribution

2004-02-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26772

[math][patch] addition of load(double[]) initialization to the EmpiricalDistribution

[EMAIL PROTECTED] changed:

   What|Removed |Added

Summary|[patch] addition of |[math][patch] addition of
   |load(double[])  |load(double[])
   |initialization to the   |initialization to the
   |EmpiricalDistribution   |EmpiricalDistribution

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Relicensing to the Apache License 2.0 ?

2004-02-09 Thread Emmanuel Bourg
robert burrell donkin wrote:

What's the legal matter to be decided?


(as i understand it) emmanuel bourg suspects that the ASF has only a 
license to use from contributors (rather than a copyright transfer) and 
that it would be wise if jakarta commons contacted all contributors and 
sort their approval before changing to the 2.0 license.

- robert
Yes, essentially the contributors who haven't signed the CLA.

Emmanuel

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: [configuration] referencing properties across files bug/feature?

2004-02-09 Thread Eric Pugh
Could you post a bug and attach your testcase?  Boil the testcase down to
the simplest possible, and we'll add it to the c-configuration test suite..

Eric

> -Original Message-
> From: Charles Crouch [mailto:[EMAIL PROTECTED]
> Sent: Monday, February 09, 2004 12:06 AM
> To: [EMAIL PROTECTED]
> Subject: [configuration] referencing properties across files
> bug/feature?
>
>
> Thanks for the reply Eric.
> I read through
> http://jakarta.apache.org/commons/configuration/examples.html?
> but it didn't seem to address the variable interpolation/substitution
> issue that I described in my post below. I definitely need
> some sort of
> override behaviour but the examples say that the  tags are
> optional, so I think the syntax of my propertiesConfiguration.xml is
> correct.
>
> I also got HEAD from cvs on Friday and ran my testcase again, still
> behaves as I described below.
>
> Any further thoughts about what I can do/look at?
> Thanks
> Charles
>
> --
> -
>
> From: Eric Pugh <[EMAIL PROTECTED]>
> Subject: [configuration] referencing properties across files
> bug/feature?
> Date: Fri, 30 Jan 2004 19:31:38 +0100
> Content-Type: text/plain;
> charset="iso-8859-1"
>
> Did you read the section here:
> http://jakarta.apache.org/commons/configuration/examples.html?
>
> The latest version has been reworked to make overrides
> simpler to do.  Here
> is the guts:
>
> 
>   
> 
> 
>   
>
>   
>  className="org.apache.commons.configuration.HierarchicalDOM4JC
> onfiguration"
>  fileName="tables.xml"/>
>  className="org.apache.commons.configuration.HierarchicalDOM4JC
> onfiguration"
>  fileName="tasktables.xml" at="tables"/>
>   
> 
>
> Notice the  versus ?
>
> Also, check out one of the nightly builds from here:
> http://cvs.apache.org/builds/jakarta-commons/nightly/commons-c
onfiguration/.

Eric

 > -Original Message-
 > From: Charles Crouch [mailto:[EMAIL PROTECTED]
 > Sent: Friday, January 30, 2004 6:49 PM
 > To: [EMAIL PROTECTED]
 > Subject: [configuration] referencing properties across files
 > bug/feature?
 >
 >
 > Hello,
 > I have a question regarding referencing properties across different
 > property files. I've tried using both
 > commons-configuration-20030706.202021.jar and
 > commons-configuration-20040121.140929.jar. The setup I have is the
 > following:
 >
 > config-override.properties
 > baseURL=http://localhost:9080
 >
 > config-default.properties
 > baseURL=http://localhost:80
 > servletURL=${baseURL}/servlet
 >
 > propertiesConfiguration.xml
 > 
 >className="org.apache.commons.configuration.PropertiesConfiguration"
 > fileName="config-override.properties"/>
 >className="org.apache.commons.configuration.PropertiesConfiguration"
 > fileName="config-default.properties"/>
 > 
 >
 >
 > When I call configuration.getString("servletURL") I get
 > http://localhost:80/servlet, but what I want is
 > http://localhost:9080/servlet.
 > Is this a bug or a feature? Is there anyway I can achieve the
 > behavior
 > I'm after?
 >
 > Thanks very much.
 > Charles
 >
 > -
 > To unsubscribe, e-mail: [EMAIL PROTECTED]
 > For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: cvs commit: jakarta-commons/configuration build.xml

2004-02-09 Thread Eric Pugh
Thanks..  I'll check on my request to get simple-jndi.jar uploaded..  Has
anyone though about hosting a repo on Apache hardware for dependencies like
simple-jndi.jar etc that haven't made it to ibiblio?  Or is it just better
to work through the ibiblio processes to get things uploaded...?

Eric

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Saturday, February 07, 2004 2:43 PM
> To: [EMAIL PROTECTED]
> Subject: cvs commit: jakarta-commons/configuration build.xml
>
>
> dirkv   2004/02/07 05:42:38
>
>   Modified:configuration build.xml
>   Log:
>   regenerate ant build file for nightly build
>   remark: simple-jndi.jar is not available on the ibiblio site
>
>   Revision  ChangesPath
>   1.2   +26 -4 jakarta-commons/configuration/build.xml
>
>   Index: build.xml
>   ===
>   RCS file: /home/cvs/jakarta-commons/configuration/build.xml,v
>   retrieving revision 1.1
>   retrieving revision 1.2
>   diff -u -r1.1 -r1.2
>   --- build.xml   23 Dec 2003 15:09:05 -  1.1
>   +++ build.xml   7 Feb 2004 13:42:38 -   1.2
>   @@ -1,7 +1,7 @@
>
>
>
>   +  on date February 6 2004, time 1407-->
>
>
>  
>   @@ -49,10 +49,12 @@
>
>  
>
>   - todir="${testclassesdir}/org/apache/commons/configuration">
>   +
>  
>
>
>   +
>   +
>  
>
> todir="${testclassesdir}/org/apache/commons/configuration">
>   @@ -63,6 +65,14 @@
>
>  
>
>   +
>   +  
>   +
>   +
>   +
>   +
>   +  
>   +
>  
>   depends="compile,test">
> excludes="**/package.html" basedir="${classesdir}">
>   @@ -173,11 +183,23 @@
>
> usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/commons-beanutils/jars/commo
> ns-beanutils-1.7-dev.jar">
>
>   - usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar";>
>   -
> usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/xerces/jars/xerces-2.2.1.jar";>
>
> usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/xml-apis/jars/xml-apis-2.0.2.jar";>
>   +
>   + usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar";>
>   +
>   + usetimestamp="true" ignoreerrors="true"
> src="http://www.osjava.org/maven/simple-jndi/jars/simple-jndi-
> 0.8.jar">
>   +
>   + usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/commons-dbcp/jars/commons-db
> cp-1.1.jar">
>   +
>   + usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/commons-pool/jars/commons-po
> ol-1.1.jar">
>   +
>   + usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/hsqldb/jars/hsqldb-1.7.1.jar";>
>   +
>   + usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/dbunit/jars/dbunit-1.5.5.jar";>
>   +
>   + usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/exml/jars/exml-dbunit1.5.1.jar";>
>
> usetimestamp="true" ignoreerrors="true"
> src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar";>
>
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]