[cp-patches] RFC: a simple 1-line logging formatter

2006-02-27 Thread Raif S. Naffah
hello all, the default java.util.logging.SimpleFormatter, used by default with the java.util.logging.ConsoleHandler, outputs one or two lines for logging messages plus the optional stack-trace if an exception is logged. the proposed formatter, always uses one line plus the optional stack-trace.

[cp-patches] FYI: JComponent fixes

2006-02-27 Thread Roman Kennke
This fixes some smaller issues in JComponent. The visibleRect check from repaint() is now moved to the RepaintManager.addDirtyRegion (just in case, somebody calls this method directly instead of repaint()). Also, I changed the getVisibleRect() method back to creating a new Rectangle object instead

[cp-patches] FYI: JViewport fix

2006-02-27 Thread Roman Kennke
Together with the last RepaintManager fix, we are now finally able to do the BLIT scroll mode in JViewport, which is more efficient and less memory hungry than the BACKINGSTORE scroll mode. I also had to do some clipping to avoid painting problems. This time I think I have thoroughly tested the

[cp-patches] FYI: SwingUtilities fixes

2006-02-27 Thread Roman Kennke
I already have changed lots of Rectangle.union() and Rectangle.intersection() calls in Swing to use SwingUtilities.computeUnion() and SwingUtilities.computeIntersection() instead. The whole point of these utility methods is avoiding the creation of new Rectangle objects. Really useful, except that

Re: [cp-patches] FYI: JViewport fix

2006-02-27 Thread Mark Wielaard
Hi, On Mon, 2006-02-27 at 14:05 +0100, Roman Kennke wrote: 2006-02-27 Roman Kennke [EMAIL PROTECTED] * javax/swing/JViewport.java (static_init): Changed default scrollmode to BLIT. (paintSimple): Added some clipping to avoid painting problems. (paintBlit):

Re: [cp-patches] Patch: GtkFileDialogPeer fix

2006-02-27 Thread Lillian Angel
Some calls in setDirectory were wrong. Fixed this. 2006-02-27 Lillian Angel [EMAIL PROTECTED] * gnu/java/awt/peer/gtk/GtkFileDialogPeer.java: Removed unneeded imports. (setDirectory): Fixed call to nativeSetFile, should be nativeSetDirectory. Also, should not

Re: [cp-patches] RFC: a simple 1-line logging formatter

2006-02-27 Thread Casey Marshall
On Feb 27, 2006, at 3:54 AM, Raif S. Naffah wrote: hello all, the default java.util.logging.SimpleFormatter, used by default with the java.util.logging.ConsoleHandler, outputs one or two lines for logging messages plus the optional stack-trace if an exception is logged. the proposed

[cp-patches] [generics] BigDecimal stuff again

2006-02-27 Thread Anthony Balkissoon
Some more missing stuff from the BigDecimal class. This spans 2 commits because the first time I forgot the ChangeLog entry. 2006-02-27 Anthony Balkissoon [EMAIL PROTECTED] * java/math/BigDecimal.java: Added @throws clause to constructors. (mathContext): Removed this unneeded

[cp-patches] [generics] some BigDecimal fixes and new methods

2006-02-27 Thread Anthony Balkissoon
More stuff. Sorry for not sending this BigDecimal stuff all at once but my test cases are small and I prefer to get the stuff committed once its been tested. Also helps me use JAPI to determine what needs to be done. 2006-02-27 Anthony Balkissoon [EMAIL PROTECTED] *

[cp-patches] FYI: Fix PR 25851, HTTPURLConnection.getRequestProperties()

2006-02-27 Thread David Daney
As per the PR, HTTPURLConnection.getRequestProperties() was returning a Map with Strings as values instead a Map of Lists of Strings as values. I just committed this patch: 2006-02-27 David Daney [EMAIL PROTECTED] PR classpath/25851 *

Re: RFC: jessie-nio branch, keytool

2006-02-27 Thread Raif S. Naffah
hello Casey, On Monday 27 February 2006 08:42, Casey Marshall wrote: ... Also, in GNU Crypto we were working on a replacement for `keytool;' do we want to merge that into Classpath, too? i personally think it should be added to the gnu.classpath.tools. there are also two other tools that

Re: regressions in floating point

2006-02-27 Thread Mark Wielaard
Hi David, On Thu, 2006-02-23 at 21:29 -0500, David P Grove wrote: Some change(s) to GNU classpath committed in the last 24 hours caused regression test failures on a number of Jikes RVM tests targeting floating point. The same cvs checkout of Jikes RVM passes the tests using

FOSDEM slides

2006-02-27 Thread Roman Kennke
Hi there, I have added my slides from FOSDEM2006 to the Wiki at: http://developer.classpath.org/mediation/Fosdem2006 I simply have dropped in into the schedule. I had to make some slight corrections: JTable and JTree editing seems to work quite well now, and - what surprises me even more -

Re: FOSDEM slides

2006-02-27 Thread Mark Wielaard
Hi all, Also returned home from Fosdem. It was great! Still catching up on email and all the new patches. Please be patient if you are expecting a reply on some message from me. But feel free to ping me in case I missed something important. Again everybody that didn't come to drink and talk did a

Re: FOSDEM slides

2006-02-27 Thread David Gilbert
Roman Kennke wrote: Hi there, I have added my slides from FOSDEM2006 to the Wiki at: http://developer.classpath.org/mediation/Fosdem2006 I simply have dropped in into the schedule. I had to make some slight corrections: JTable and JTree editing seems to work quite well now, and - what

Re: RFC: jessie-nio branch, keytool

2006-02-27 Thread Thomas Fitzsimmons
On Sun, 2006-02-26 at 13:42 -0800, Casey Marshall wrote: Hi. I had been doing a little work on rewriting Jessie to support the new JSSE API in J2SE 1.5, which adds support for SSL-over-NIO. A rewrite is probably the only way to support this; I looked at the current code to see if I

Re: FOSDEM slides

2006-02-27 Thread Christian Thalinger
On Mon, Feb 27, 2006 at 02:53:09PM +0100, Mark Wielaard wrote: Yes please! If you have slides (or pictures from the event) please post them somewhere. I would love to reread some of the presentations. Done. And here are some links i talked about: http://www.cacaojvm.org/tgolem/ (kind of

Next release

2006-02-27 Thread Mark Wielaard
Hi all, As some people have been saying already there were some impressive showcases at Fosdem of things that just work now. So I feel it is time to do a new snapshot this week to share all this great work with our users. Both awt and swing made some very nice improvements, we have all the new

Re: Next release

2006-02-27 Thread Archie Cobbs
Mark Wielaard wrote: - Decide on the version number. We had a very small/brief discussion about this during Fosdem. Everybody seems to agree 0.x really doesn't do justice to the maturity we have reached over the years. And it is really hard to define when we hit 1.0. So the proposal is

Re: Next release

2006-02-27 Thread Stuart Ballard
On 2/27/06, Mark Wielaard [EMAIL PROTECTED] wrote: Everybody seems to agree 0.x really doesn't do justice to the maturity we have reached over the years. And it is really hard to define when we hit 1.0. So the proposal is to keep using a sequence version number. Either just drop the 0.

Re: Next release

2006-02-27 Thread Michael Koch
On Mon, Feb 27, 2006 at 05:54:41PM +0100, Mark Wielaard wrote: - Decide on the version number. We had a very small/brief discussion about this during Fosdem. Everybody seems to agree 0.x really doesn't do justice to the maturity we have reached over the years. And it is really hard to

Re: regressions in floating point

2006-02-27 Thread David P Grove
the patch resolves all the problems; sanity running clean again with classpath cvs as of an hour ago. thanks, --dave Mark Wielaard [EMAIL PROTECTED] wrote on 02/27/2006 07:07:01 AM: Hi David, On Thu, 2006-02-23 at 21:29 -0500, David P Grove wrote: Some change(s) to GNU

implementing javax.security.auth.kerberos

2006-02-27 Thread Raif S. Naffah
hello all, looking at the latest JAPI comparisons with JDK 1.4, i noticed we're missing the above. if anyone is already working on them let me know, otherwise i'll start implementing these missing classes. cheers; rsn pgp7xVamJfHyi.pgp Description: PGP signature

Re: Next release

2006-02-27 Thread Roman Kennke
Hi Mark, As some people have been saying already there were some impressive showcases at Fosdem of things that just work now. So I feel it is time to do a new snapshot this week to share all this great work with our users. Both awt and swing made some very nice improvements, we have all the

Re: implementing javax.security.auth.kerberos

2006-02-27 Thread Mark Wielaard
Hi Raif, On Tue, 2006-02-28 at 07:04 +1100, Raif S. Naffah wrote: if anyone is already working on them let me know, otherwise i'll start implementing these missing classes. Jeff started on this. See: http://lists.gnu.org/archive/html/classpath/2005-11/msg00150.html Please coordinate with him.

Re: implementing javax.security.auth.kerberos

2006-02-27 Thread Casey Marshall
On Feb 27, 2006, at 12:04 PM, Raif S. Naffah wrote: hello all, looking at the latest JAPI comparisons with JDK 1.4, i noticed we're missing the above. if anyone is already working on them let me know, otherwise i'll start implementing these missing classes. There was a patch to provide

Re: Next release

2006-02-27 Thread Roman Kennke
Am Montag, den 27.02.2006, 12:23 -0500 schrieb Stuart Ballard: On 2/27/06, Mark Wielaard [EMAIL PROTECTED] wrote: Everybody seems to agree 0.x really doesn't do justice to the maturity we have reached over the years. And it is really hard to define when we hit 1.0. So the proposal is

Re: Next release

2006-02-27 Thread Chris Burdess
Archie Cobbs wrote: - Decide on the version number. We had a very small/brief discussion about this during Fosdem. Everybody seems to agree 0.x really doesn't do justice to the maturity we have reached over the years. And it is really hard to define when we hit 1.0. So the proposal

Re: Next release

2006-02-27 Thread Michael Koch
On Mon, Feb 27, 2006 at 08:36:37PM +, Chris Burdess wrote: Changes in version number format, etc. have a cost in that can confuse (or at least complicate) packaging and versioning software like RPM, FreeBSD ports, etc. not to mention consumers (i.e., users). If all we want is a sequence

Re: Next release

2006-02-27 Thread Andrew John Hughes
On Mon, 2006-02-27 at 17:54 +0100, Mark Wielaard wrote: Hi all, As some people have been saying already there were some impressive showcases at Fosdem of things that just work now. So I feel it is time to do a new snapshot this week to share all this great work with our users. Both awt and

Re: Next release

2006-02-27 Thread Mark Wielaard
Hi Andrew, On Mon, 2006-02-27 at 21:42 +, Andrew John Hughes wrote: On Mon, 2006-02-27 at 17:54 +0100, Mark Wielaard wrote: - Remerge CVS trunk with the generics branch (I don't know whether Andrew has had time for that since his Math work. Please yell and scream if you need help

Re: Next release

2006-02-27 Thread Roman Kennke
Hi Mark, It then just needs to be brought up to date with the patches inbetween Saturday and the point where the release is called. Roman wanted some more time to stabilize so lets just pick Saturday as the day we freeze (meaning, when the release branch is created). Then only patches

Re: Next release

2006-02-27 Thread Brian Jones
Michael Koch wrote: On Mon, Feb 27, 2006 at 08:36:37PM +, Chris Burdess wrote: Changes in version number format, etc. have a cost in that can confuse (or at least complicate) packaging and versioning software like RPM, FreeBSD ports, etc. not to mention consumers (i.e., users). If all

[commit-cp] classpath ./ChangeLog native/fdlibm/e_acos.c na...

2006-02-27 Thread Andrew John Hughes
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Andrew John Hughes [EMAIL PROTECTED] 06/02/27 02:09:55 Modified files: . : ChangeLog native/fdlibm : e_acos.c e_asin.c e_atan2.c e_cosh.c e_exp.c