DO NOT REPLY [Bug 29140] - NPE in FileUtils.listFiles(dir, extensions, recursive)

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

cvs commit: jakarta-commons/math/src/java/org/apache/commons/math/stat/regression SimpleRegression.java

2004-10-24 Thread psteitz
psteitz 2004/10/23 23:27:14 Modified:math/src/java/org/apache/commons/math/stat/regression SimpleRegression.java Log: Fixed error in slope parameter significance estimate Pr #31860 Reported by: Kim van der Linde Revision ChangesPath 1.2

cvs commit: jakarta-commons/math/src/test/org/apache/commons/math/stat/regression SimpleRegressionTest.java

2004-10-24 Thread psteitz
psteitz 2004/10/23 23:30:01 Modified:math/src/test/org/apache/commons/math/stat/regression SimpleRegressionTest.java Log: Fixed bugged test (pr #31860), added more R certified tests Revision ChangesPath 1.2 +31 -14

DO NOT REPLY [Bug 31860] - Wrong p-value in SimpleRegression (factor 2 difference)

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

cvs commit: jakarta-commons/math/xdocs changes.xml

2004-10-24 Thread psteitz
psteitz 2004/10/23 23:40:55 Modified:math/xdocs changes.xml Log: Pr #31860 fix. Revision ChangesPath 1.6 +4 -0 jakarta-commons/math/xdocs/changes.xml Index: changes.xml === RCS file:

Re: [MATH] simple regression implementation

2004-10-24 Thread Phil Steitz
Kim van der Linde wrote: Hi, Small question. Implementation like TTest, RealMatrix etc do have the structure of an interface with an implementation. SimpleRegression does not? Any particular reason? No compelling reason. This was part of the initial code base and has never been refactored.

Re: [MATH] regression classes

2004-10-24 Thread Phil Steitz
Kim van der Linde wrote: Hi All, I have made three regression classes based on the Bivariateregression class. The base class is an abstract LinearRegression class, with two derived classes, LSRegression and RMARegression. Is there interest to include these in the math package? I have changed

[math] R-based tests

2004-10-24 Thread Phil Steitz
I have used R to compute target values for statistics (and other things) in test cases where certified data tests are not available. To make these tests repeatable, I have been saving scripts that can be executed in R using the source() function. I would like to add these scripts to CVS

Re: Fwd: RE: feedparser

2004-10-24 Thread Kevin A. Burton
Brad Neuberg wrote: Kevin, do you know of a good answer to his question? Hope all is well, Brad Check out org.apache.commons.feedparser.output. It was designed for exactly what you want. You give it an output stream and then call feed events on it. For example: FileOutputStream fos = new

DO NOT REPLY [Bug 31762] - Unit tests and some minor code improvements to [email] project

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

DO NOT REPLY [Bug 18971] - [email] HTML email uses wrong MIME type?

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

DO NOT REPLY [Bug 18971] - [email] HTML email uses wrong MIME type?

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

DO NOT REPLY [Bug 30973] - [email] [patch] HTML email with plain text alternative and attachments

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

DO NOT REPLY [Bug 18971] - [email] HTML email uses wrong MIME type?

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

DO NOT REPLY [Bug 18971] - [email] HTML email uses wrong MIME type?

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

Bug report for Commons [2004/10/24]

2004-10-24 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Re: [IO] Intent with respect to path separators

2004-10-24 Thread Jeremias Maerki
As the various filename handling routines came from various sources, you probably can't expect that all had the same intent behind them. It's good that you look into this aspect. I haven't had the time lately. I'd like to have IO handle filenames similar to how java.io.File handles them.

Re: [MATH] regression classes

2004-10-24 Thread Kim van der Linde
+1 for after version 1.0 No issue wtith that. I think the whole (miltiple)(non-linear)regression/ANOVA/GLM area needs to be dealt with in a consistent manner, and that will ask a lot of work and thinking. Cheers, Kim Phil Steitz wrote: Kim van der Linde wrote: Hi All, I have made three

Re: [IO] Intent with respect to path separators

2004-10-24 Thread Stephen Colebourne
From: Jeremias Maerki [EMAIL PROTECTED] I'd like to have IO handle filenames similar to how java.io.File handles them. Internally, the separators are all normalized to a / and after processing converted back to the platform dependant separators as necessary. On Windows you can write

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

2004-10-24 Thread martinc
martinc 2004/10/24 09:50:23 Modified:io/src/java/org/apache/commons/io/filefilter AbstractFileFilter.java Log: Let java.io.File join the directory and the filename for us. Revision ChangesPath 1.10 +2 -3

cvs commit: jakarta-commons-sandbox/email/src/test/org/apache/commons/mail/settings - New directory

2004-10-24 Thread epugh
epugh 2004/10/24 10:06:15 jakarta-commons-sandbox/email/src/test/org/apache/commons/mail/settings - New directory - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-commons-sandbox/email/src/test/org/apache/commons/mail/settings EmailConfiguration.java

2004-10-24 Thread epugh
epugh 2004/10/24 10:06:53 Modified:email/src/test/org/apache/commons/mail EmailTest.java EmailAttachmentTest.java MultiPartEmailTest.java HtmlEmailTest.java DefaultAuthenticatorTest.java email.cvsignore project.xml

DO NOT REPLY [Bug 31762] - Unit tests and some minor code improvements to [email] project

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

cvs commit: jakarta-commons-sandbox/email/xdocs changes.xml

2004-10-24 Thread epugh
epugh 2004/10/24 10:10:09 Modified:email/xdocs changes.xml Log: forgot bug id. Revision ChangesPath 1.3 +1 -1 jakarta-commons-sandbox/email/xdocs/changes.xml Index: changes.xml === RCS

DO NOT REPLY [Bug 30973] - [email] [patch] HTML email with plain text alternative and attachments

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

DO NOT REPLY [Bug 18971] - [email] HTML email uses wrong MIME type?

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

DO NOT REPLY [Bug 18971] - [email] HTML email uses wrong MIME type?

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

cvs commit: jakarta-commons-sandbox/email/xdocs changes.xml

2004-10-24 Thread epugh
epugh 2004/10/24 10:27:21 Modified:email/src/java/org/apache/commons/mail MultiPartEmail.java email/xdocs changes.xml Log: Bug 30973 HTML email with plain text alternative and attachments Revision ChangesPath 1.7 +85 -18

DO NOT REPLY [Bug 27699] - [email] HtmlEmail chopping off the end of the document

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

DO NOT REPLY [Bug 16859] - [email] Can't supply a javax.mail.Session to Commons Email componenet

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

cvs commit: jakarta-commons-sandbox/email/xdocs changes.xml

2004-10-24 Thread epugh
epugh 2004/10/24 10:41:21 Modified:email/src/java/org/apache/commons/mail Email.java email/xdocs changes.xml Log: 16859 Can't supply a javax.mail.Session to Commons Email componenet Revision ChangesPath 1.19 +31 -19

DO NOT REPLY [Bug 16859] - [email] Can't supply a javax.mail.Session to Commons Email componenet

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

[email] Dumbster failing

2004-10-24 Thread Eric Pugh
Hi all, I am getting some java security issues with the current unit tests and dumbster. Can any one else (corey ;-) ) verify that they work properly? I thought it was my SMTP server, but I stopped that. Eric - To

DO NOT REPLY [Bug 18968] - [email] Support SMTP Envelope From (bounce address)

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

DO NOT REPLY [Bug 27699] - [email] HtmlEmail chopping off the end of the document

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

cvs commit: jakarta-commons/math/xdocs changes.xml

2004-10-24 Thread psteitz
psteitz 2004/10/24 10:52:16 Modified:math/xdocs changes.xml Log: Fixed typo. Revision ChangesPath 1.7 +1 -1 jakarta-commons/math/xdocs/changes.xml Index: changes.xml === RCS file:

cvs commit: jakarta-commons-sandbox/email project.xml

2004-10-24 Thread epugh
epugh 2004/10/24 11:02:00 Modified:emailproject.xml Log: Fix dependency refrences Revision ChangesPath 1.17 +10 -5 jakarta-commons-sandbox/email/project.xml Index: project.xml === RCS

cvs commit: jakarta-commons/io/src/test/org/apache/commons/io FilenameUtilsTestCase.java

2004-10-24 Thread martinc
martinc 2004/10/24 11:44:51 Modified:io/src/test/org/apache/commons/io FilenameUtilsTestCase.java Log: Whoops - missed some tests that needed reinstating in their original form. Revision ChangesPath 1.12 +7 -7

Re: [IO] Intent with respect to path separators

2004-10-24 Thread Martin Cooper
On Sun, 24 Oct 2004 16:43:58 +0100, Stephen Colebourne [EMAIL PROTECTED] wrote: From: Jeremias Maerki [EMAIL PROTECTED] I'd like to have IO handle filenames similar to how java.io.File handles them. Internally, the separators are all normalized to a / and after processing converted back to

[math] Changes to distribution package

2004-10-24 Thread Phil Steitz
Frank has pointed out some limitations in the distribution package. Unfortunately, the problems require interface changes to fix, so we need to solve them now (i.e., before 1.0 final). There are basically two problems that we need to deal with: 1) There is no way to represent a mixed

[email] tests configuartion

2004-10-24 Thread Mark Lowe
I've been working on a patch but I cant get the existing tests to run, I've changed the configuration details in the email configuration class. But compiling the tests fail as nothing is known about this mock dumpster smtp server. The patch I'm working on provides an option to set a resolve

Re: [email] tests configuartion

2004-10-24 Thread Mark Lowe
Ah fixed .. I just cvs updated. On 24 Oct 2004, at 22:38, Mark Lowe wrote: I've been working on a patch but I cant get the existing tests to run, I've changed the configuration details in the email configuration class. But compiling the tests fail as nothing is known about this mock dumpster

cvs commit: jakarta-commons/math/src/test/org/apache/commons/math/stat/regression SimpleRegressionTest.java

2004-10-24 Thread psteitz
psteitz 2004/10/24 14:47:16 Modified:math/src/test/org/apache/commons/math/stat/regression SimpleRegressionTest.java Log: Fixed test compile bug introduced in last commit. Revision ChangesPath 1.3 +2 -2

cvs commit: jakarta-commons/io/src/test/org/apache/commons/io/filefilter AndFileFilterTestCase.java ConditionalFileFilterAbstractTestCase.java IOFileFilterAbstractTestCase.java OrFileFilterTestCase.java

2004-10-24 Thread martinc
martinc 2004/10/24 14:58:44 Modified:io build.xml project.xml io/src/java/org/apache/commons/io/filefilter AndFileFilter.java OrFileFilter.java Added: io/src/java/org/apache/commons/io/filefilter

DO NOT REPLY [Bug 30705] - Add conditional file filters

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

DO NOT REPLY [Bug 30973] - [email] [patch] HTML email with plain text alternative and attachments

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

DO NOT REPLY [Bug 30992] - DirectoryFileFilter does not work, the AbstractFileFilter bug

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

RE: [email] tests configuartion

2004-10-24 Thread Eric Pugh
You probably where caught between my first commit and my last one! -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Sunday, October 24, 2004 10:43 PM To: Jakarta Commons Developers List Subject: Re: [email] tests configuartion Ah fixed .. I just cvs updated.

[GUMP@brutus]: Project commons-jxpath (in module jakarta-commons) success

2004-10-24 Thread Ted Husted
To whom it may satisfy... 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-jxpath *no longer* has an issue. The current state of this project is

[GUMP@brutus]: Project commons-jelly-tags-avalon (in module jelly-tags) success

2004-10-24 Thread Morgan Delagrange
To whom it may satisfy... 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-avalon *no longer* has an issue. The current state of this

[GUMP@brutus]: Project commons-jelly-tags-velocity (in module jelly-tags) success

2004-10-24 Thread Morgan Delagrange
To whom it may satisfy... 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-velocity *no longer* has an issue. The current state of this

Re: commons-id Using ClassLoader.getSystemResourceAsStream()

2004-10-24 Thread Tim Reilly
On Thu, 21 Oct 2004 11:58:51 -0500, Gregg, John E. wrote: Hi all, I'm having a little trouble with the fact that commons-id's ReadOnlyResourceStateImpl uses ClassLoader.getSystemResourceAsStream to load the config file containing MAC addresses. Is that intentional? It was intentional

cvs commit: jakarta-commons/math/src/java/org/apache/commons/math/linear RealMatrixImpl.java

2004-10-24 Thread psteitz
psteitz 2004/10/24 19:13:22 Modified:math/src/java/org/apache/commons/math/linear RealMatrixImpl.java Log: Fixed hashcode computation so elements in first row, col contribute. Revision ChangesPath 1.34 +3 -3

cvs commit: jakarta-commons/math/src/java/org/apache/commons/math/linear BigMatrix.java BigMatrixImpl.java

2004-10-24 Thread psteitz
psteitz 2004/10/24 19:21:20 Modified:math/src/java/org/apache/commons/math/linear BigMatrix.java BigMatrixImpl.java Log: Added Matrix-valued row, column, and subMatrix accessors as suggested by Kim van der Linde (Pr #30897). Implemented equals and

cvs commit: jakarta-commons/math/src/test/org/apache/commons/math/linear BigMatrixImplTest.java

2004-10-24 Thread psteitz
psteitz 2004/10/24 19:23:29 Modified:math/src/test/org/apache/commons/math/linear BigMatrixImplTest.java Log: Added tests for row, column, subMatrix accessors, equals and hashcode, toString. Revision ChangesPath 1.4 +202 -26

Re: [email] Dumbster failing

2004-10-24 Thread Corey Scott
Ok, I will switch my build to maven from Ant (although Maven seemed not to like dumbster too much last time I tried it). I will get the get the tests going and resubmit. I think I'm going to have to start again from the cvs, cause my code tree is becoming too different from the committed one. I

[IO] Almost ready for a 1.1 release?

2004-10-24 Thread Martin Cooper
There have been a lot of changes since IO 1.0 was released, and I'm thinking we're in pretty good shape for a 1.1 release in the near future. I've worked through the bug reports, and got us down to four outstanding change requests, as follows: Bugs: #29140 - NPE in FileUtils.listFiles(dir,

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

2004-10-24 Thread martinc
martinc 2004/10/24 21:18:51 Modified:fileupload/src/test/org/apache/commons/fileupload TestAll.java Removed: fileupload/src/test/org/apache/commons/fileupload DeferredFileOutputStreamTest.java Log: DeferredFileOutputStream moved

DO NOT REPLY [Bug 27328] - tie content length of form fields posted with struts-validator maxlength attribute or alike

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

DO NOT REPLY [Bug 20838] - Add a new property maxFileSize to control a size of separate uploaded file but not a whole request

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

cvs commit: jakarta-commons/math/src/java/org/apache/commons/math/linear BigMatrixImpl.java

2004-10-24 Thread psteitz
psteitz 2004/10/24 22:33:24 Modified:math/src/java/org/apache/commons/math/linear BigMatrixImpl.java Log: Added checks for validity of arrays supplied to constructors. Revision ChangesPath 1.9 +58 -1

cvs commit: jakarta-commons/math/src/test/org/apache/commons/math/linear MatrixUtilsTest.java

2004-10-24 Thread psteitz
psteitz 2004/10/24 22:36:15 Modified:math/src/java/org/apache/commons/math/linear MatrixUtils.java math/src/test/org/apache/commons/math/linear MatrixUtilsTest.java Log: Added methods to create BigMatrix instances.

cvs commit: jakarta-commons/math/xdocs changes.xml

2004-10-24 Thread psteitz
psteitz 2004/10/24 22:37:32 Modified:math/xdocs changes.xml Log: Updated to reflect BigMatrix changes. Revision ChangesPath 1.8 +8 -7 jakarta-commons/math/xdocs/changes.xml Index: changes.xml

DO NOT REPLY [Bug 30897] - New methods in RealMatrixImpl and changing indexing

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