Re: [math] contributing Levenberg-Marquardt, Gauss-Newton, ODE, Brendt solver and more

2006-05-22 Thread luc . maisonobe
Selon Phil Steitz [EMAIL PROTECTED]: First, thanks for your interest in joining forces. You're welcome. So if your interest is in bringing in code and maybe more contributors and working on it here, then that will be great. This is what I want, contributing. Mantissa is one of my pet

Re: commons-daemon with JVM included in Fedora?

2006-05-22 Thread Bernard
Hi Bill Thanks for your reply. I think the JVM that comes with fedora 4 is a bit different. # eche $JAVA_HOME returns nothing From the jsvc output below I understand that jsvc has a problem finding the JVM. However it appears to be ok otherwise because I can run tomcat without problems. I used

[EMAIL PROTECTED]: Project commons-jelly-tags-jsl-test (in module commons-jelly) failed

2006-05-22 Thread commons-jelly-tags-jsl development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-jsl-test has an issue affecting its community integration.

[EMAIL PROTECTED]: Project commons-jelly-tags-jsl-test (in module commons-jelly) failed

2006-05-22 Thread commons-jelly-tags-jsl development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-jsl-test has an issue affecting its community integration.

[EMAIL PROTECTED]: Project commons-jelly-tags-define-test (in module commons-jelly) failed

2006-05-22 Thread commons-jelly-tags-define development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-define-test has an issue affecting its community

[EMAIL PROTECTED]: Project commons-jelly-tags-define-test (in module commons-jelly) failed

2006-05-22 Thread commons-jelly-tags-define development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-define-test has an issue affecting its community

Re: [csv] j2se1.3 compatibility / header line writer

2006-05-22 Thread Martin van den Bemt
urs hardegger wrote: netcetera suggests the following changes to commons csv: 1) CSVPartser.java: StringBuffer.append(StringBuffer) is no supported in JDK 1.3. It would be a pitty to have an incompatibility because of this issue. In case this is performance critical,

[EMAIL PROTECTED]: Project commons-jelly-tags-html (in module commons-jelly) failed

2006-05-22 Thread commons-jelly-tags-html development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-html has an issue affecting its community integration. This

[EMAIL PROTECTED]: Project commons-jelly-tags-html (in module commons-jelly) failed

2006-05-22 Thread commons-jelly-tags-html development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-html has an issue affecting its community integration. This

Re: [csv] j2se1.3 compatibility / header line writer

2006-05-22 Thread Nicolas De Loof
It is supported in jdk1.3.. Just cast the stringbuffer passed in to an object, so like StringBuffer.append((Object) StringBuffer)). Much more efficient than an if... Surely a StringBuffer is already an Object? Or am I missing something here? StringBuffer has a new method in Java 1.4 to

[jira] Updated: (FILEUPLOAD-109) MultipartStream.discardBodyData() implementation is redundant.

2006-05-22 Thread Jochen Wiedmann (JIRA)
[ http://issues.apache.org/jira/browse/FILEUPLOAD-109?page=all ] Jochen Wiedmann updated FILEUPLOAD-109: --- Attachment: commons-fileupload-1.patch Funny, but I came to the same conclusion just yesterday. In case someone's interested, here's my

[jira] Created: (FILEUPLOAD-112) Support for iterative parsing

2006-05-22 Thread Jochen Wiedmann (JIRA)
Support for iterative parsing - Key: FILEUPLOAD-112 URL: http://issues.apache.org/jira/browse/FILEUPLOAD-112 Project: Commons FileUpload Type: New Feature Reporter: Jochen Wiedmann Currently parsing is all or nothing. This is

[jira] Commented: (FILEUPLOAD-87) [fileupload] Show progress bar when uploading

2006-05-22 Thread Jochen Wiedmann (JIRA)
[ http://issues.apache.org/jira/browse/FILEUPLOAD-87?page=comments#action_12412762 ] Jochen Wiedmann commented on FILEUPLOAD-87: --- See also FILEUPLOAD-112: A progress bar would possible want to listen for the number of files as well.

[jira] Commented: (FILEUPLOAD-97) [fileupload] Upload Progress Reporting

2006-05-22 Thread Jochen Wiedmann (JIRA)
[ http://issues.apache.org/jira/browse/FILEUPLOAD-97?page=comments#action_12412764 ] Jochen Wiedmann commented on FILEUPLOAD-97: --- Isn't this a duplicate of FILEUPLOAD-87? (Or vice versa, depending on how you look at it.) [fileupload] Upload

[jira] Updated: (FILEUPLOAD-112) Support for iterative parsing

2006-05-22 Thread Jochen Wiedmann (JIRA)
[ http://issues.apache.org/jira/browse/FILEUPLOAD-112?page=all ] Jochen Wiedmann updated FILEUPLOAD-112: --- Attachment: commons-fileupload-3.patch The attached patch adds a method Iterator FileUploadBase.getRequestIterator(RequestContext ctx)

[jira] Created: (VFS-50) Threading issue with AbstractFileSystem.fireEvent

2006-05-22 Thread Chris DiGiano (JIRA)
Threading issue with AbstractFileSystem.fireEvent - Key: VFS-50 URL: http://issues.apache.org/jira/browse/VFS-50 Project: Commons VFS Type: Bug Reporter: Chris DiGiano Priority: Minor I make heavy use of

[jira] Commented: (VFS-50) Threading issue with AbstractFileSystem.fireEvent

2006-05-22 Thread Chris DiGiano (JIRA)
[ http://issues.apache.org/jira/browse/VFS-50?page=comments#action_12412770 ] Chris DiGiano commented on VFS-50: -- Here's a patch that makes a copy of the listener list to avoid race conditions: Index:

[jira] Commented: (VFS-50) Threading issue with AbstractFileSystem.fireEvent

2006-05-22 Thread Chris DiGiano (JIRA)
[ http://issues.apache.org/jira/browse/VFS-50?page=comments#action_12412771 ] Chris DiGiano commented on VFS-50: -- By the way, it's not clear to me that the existing synchronization on listenerMap provides any real threading protection. The references

Re: [csv] j2se1.3 compatibility / header line writer

2006-05-22 Thread sebb
On 22/05/06, Nicolas De Loof [EMAIL PROTECTED] wrote: It is supported in jdk1.3.. Just cast the stringbuffer passed in to an object, so like StringBuffer.append((Object) StringBuffer)). Much more efficient than an if... Surely a StringBuffer is already an Object? Or am I missing

Re: [csv] j2se1.3 compatibility / header line writer

2006-05-22 Thread Martin van den Bemt
Nicolas De Loof wrote: It is supported in jdk1.3.. Just cast the stringbuffer passed in to an object, so like StringBuffer.append((Object) StringBuffer)). Much more efficient than an if... Surely a StringBuffer is already an Object? Or am I missing something here? StringBuffer has a

Re: [csv] j2se1.3 compatibility / header line writer

2006-05-22 Thread Nicolas De Loof
compiled on a JDK 1.4, sb1.append(sb2) will not work on java 1.3 JRE : it requires append(StringBuffer). compiled on a JDK 1.3, it is equivalent to a toString() call as append(Object) method is used by compiler. It will work on all JRE but will be non-optimal on JDK 1.4 Only two versions

Re: [csv] j2se1.3 compatibility / header line writer

2006-05-22 Thread Martin van den Bemt
That just works when compiling on jdk1.3 and will not work on jdk1.3 when compiled on jdk1.4 To prevent this, you specifically have to cast it to object to say use the append which takes an object or as Nicolas suggested a toString(), but the last one is not my favorite solution.. Mvgr,

JAR files for Beanutils, logging and coolections

2006-05-22 Thread Shantharam lal
Hello I am new to java development and learnig. When can i get the JAR files for Beanutils, logging and coolections. I am unable to create the executable out of the souce code. Please provide me links for the above three jars. Regards Lal -

[jira] Created: (LANG-259) ValuedEnum.compareTo(Object other) not typesafe - it easily could be...

2006-05-22 Thread Ralf Hauser (JIRA)
ValuedEnum.compareTo(Object other) not typesafe - it easily could be... --- Key: LANG-259 URL: http://issues.apache.org/jira/browse/LANG-259 Project: Commons Lang Type: Bug Versions: 2.1

Re: JAR files for Beanutils, logging and coolections

2006-05-22 Thread Craig McClanahan
On 5/22/06, Shantharam lal [EMAIL PROTECTED] wrote: Hello I am new to java development and learnig. When can i get the JAR files for Beanutils, logging and coolections. I am unable to create the executable out of the souce code. Please provide me links for the above three jars. Start at the

Re: [csv] j2se1.3 compatibility / header line writer

2006-05-22 Thread sebb
OK, I see. Whatever method is chosen, it's worth documenting the reasons for the strange coding... If a release is being built to support 1.3 and above, it might be worth using the 1.3 compiler - or at least using the 1.3 jars. S. On 22/05/06, Martin van den Bemt [EMAIL PROTECTED] wrote: That

[jira] Commented: (LANG-259) ValuedEnum.compareTo(Object other) not typesafe - it easily could be...

2006-05-22 Thread Ralf Hauser (JIRA)
[ http://issues.apache.org/jira/browse/LANG-259?page=comments#action_12412798 ] Ralf Hauser commented on LANG-259: -- Before just comparing the iValue - ((ValuedEnum) other).iValue it should be checked that the classes are the same! Enum

[jira] Commented: (LANG-259) ValuedEnum.compareTo(Object other) not typesafe - it easily could be...

2006-05-22 Thread Ralf Hauser (JIRA)
[ http://issues.apache.org/jira/browse/LANG-259?page=comments#action_12412801 ] Ralf Hauser commented on LANG-259: -- furthermore, it would be great if the classe's init would also detect if multiple int values are the same: e.g. public static final

[jira] Commented: (LANG-259) ValuedEnum.compareTo(Object other) not typesafe - it easily could be...

2006-05-22 Thread Ralf Hauser (JIRA)
[ http://issues.apache.org/jira/browse/LANG-259?page=comments#action_12412802 ] Ralf Hauser commented on LANG-259: -- similarly, it should detect double entries of this kind... public static final int JAVA1_0_VALUE = 100; public static final int

svn commit: r408709 - /jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml

2006-05-22 Thread dennisl
Author: dennisl Date: Mon May 22 10:34:24 2006 New Revision: 408709 URL: http://svn.apache.org/viewvc?rev=408709view=rev Log: [MODELER-16] Fix broken download links. Modified: jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml Modified:

[jira] Resolved: (MODELER-16) [modeler] download links broken

2006-05-22 Thread Dennis Lundberg (JIRA)
[ http://issues.apache.org/jira/browse/MODELER-16?page=all ] Dennis Lundberg resolved MODELER-16: Resolution: Fixed Fixed in revision 408709. Site also needs to be deployed. [modeler] download links broken ---

svn commit: r408713 - /jakarta/commons/proper/modeler/trunk/project.xml

2006-05-22 Thread dennisl
Author: dennisl Date: Mon May 22 10:45:27 2006 New Revision: 408713 URL: http://svn.apache.org/viewvc?rev=408713view=rev Log: Add missing artifactId. Modified: jakarta/commons/proper/modeler/trunk/project.xml Modified: jakarta/commons/proper/modeler/trunk/project.xml URL:

[jira] Commented: (MODELER-3) [modeler] maven build fails on os x with test failure.

2006-05-22 Thread Dennis Lundberg (JIRA)
[ http://issues.apache.org/jira/browse/MODELER-3?page=comments#action_12412810 ] Dennis Lundberg commented on MODELER-3: --- This can be resolved by upgrading mx4j from 1.1 to 2.1.1 in project.xml. Note that the new version of mx4j requires Java 1.3,

[site]Sites for snapshots published

2006-05-22 Thread Oliver Heger
Hi, I just noticed that recently the sites of some components have been deployed directly from their svn trunk. So the sites refer to snapshot versions (e.g. BeanUtils, Configuration, Math, ...). Was this done by intension? It might be confusing for users if the sites describe features that

svn commit: r408724 - /jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml

2006-05-22 Thread dennisl
Author: dennisl Date: Mon May 22 11:35:27 2006 New Revision: 408724 URL: http://svn.apache.org/viewvc?rev=408724view=rev Log: Corrected host name for nightly builds. Modified: jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml Modified:

Re: [site]Sites for snapshots published

2006-05-22 Thread robert burrell donkin
On Mon, 2006-05-22 at 20:45 +0200, Oliver Heger wrote: Hi, I just noticed that recently the sites of some components have been deployed directly from their svn trunk. So the sites refer to snapshot versions (e.g. BeanUtils, Configuration, Math, ...). Was this done by intension? yep - i

Re: [site]Sites for snapshots published

2006-05-22 Thread Phil Steitz
On 5/22/06, robert burrell donkin [EMAIL PROTECTED] wrote: On Mon, 2006-05-22 at 20:45 +0200, Oliver Heger wrote: Hi, I just noticed that recently the sites of some components have been deployed directly from their svn trunk. So the sites refer to snapshot versions (e.g. BeanUtils,

DO NOT REPLY [Bug 39538] - [collections] Support parametized classes with commons.collections.

2006-05-22 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=39538. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

svn commit: r408725 - /jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/package.html

2006-05-22 Thread dennisl
Author: dennisl Date: Mon May 22 11:36:18 2006 New Revision: 408725 URL: http://svn.apache.org/viewvc?rev=408725view=rev Log: Corrected link to ant. Modified: jakarta/commons/proper/modeler/trunk/src/java/org/apache/commons/modeler/ant/package.html Modified:

Re: commons-daemon with JVM included in Fedora?

2006-05-22 Thread Bill Barker
The jsvc program requires to load the JVM .so file in order to launch the JVM. With Sun's JVM, the file is called 'libjvm.so'. What I need to know is what is the equivalent .so file called with GNU Java. Of course, I *could* download and install it and look around, but since you've already

DO NOT REPLY [Bug 39538] - [collections] Support parametized classes with commons.collections.

2006-05-22 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=39538. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: [all] Unifying maven reports?

2006-05-22 Thread Henri Yandell
On 5/21/06, Dion Gillard [EMAIL PROTECTED] wrote: Guys, this sounds like bike shed paint discussion. It's more of a water cooler discussion - and I think it's pretty good community stuff. For example, I wrote the FAQ report off (never having used it), but given that Martin has positive