[cp-patches] FYI: Guard GJDOC invocation

2006-11-25 Thread Mark Wielaard
Hi, This fixes a small bug detected in gcc when trying to create html when gjdoc isn't installed. 2006-11-25 Mark Wielaard [EMAIL PROTECTED] Fixes bug #28822 * doc/api/Makefile.am (create_html): Guard GJDOC invocation with CREATE_API_DOCS Committed, Mark diff -u -r1.19

[cp-patches] FYI: EventQueue.pop check whether dispatchThread is still there before termination

2006-11-25 Thread Mark Wielaard
Hi, Small buglet found while playing with NetBeans (no we are still not completely able to start it fully, but it feels we are almost there). 2006-11-25 Mark Wielaard [EMAIL PROTECTED] * java/awt/EventQueue.java (pop): Only terminate dispatchThread when it is still running.

Re: [cp-patches] RFC: DecimalFormat Fix

2006-11-25 Thread Mark Wielaard
Hi Mario, On Fri, 2006-11-24 at 19:50 +0100, Mario Torre wrote: The class is now complete for 1.5 and I would like to take it into the next classpath version, even though it misses a couple of little things in functionality. Yes, it looks good. Thanks for your hard work on this. It passes

[cp-patches] FYI: Fix typo in css/Selector.java

2006-11-25 Thread Mark Wielaard
Hi, This fixes a small typo I found in css/Selector.java as discussed with Roman on irc. 2006-11-25 Mark Wielaard [EMAIL PROTECTED] * gnu/javax/swing/text/html/css/Selector.java (calculateSpecificity): Use clazzIndex for id substring. This helped with rendering planet.gnome.org a

[cp-patches] FYI: DecimalFormat

2006-11-25 Thread Mario Torre
I've committed the changes with the following Changelog: 2006-11-25 Mario Torre [EMAIL PROTECTED] PR28462 * java/text/DecimalFormat.java: Almost new rewrite, and update to 1.5. * java/text/NumberFormat.java (format): all format methods, fixed FieldPosition

[cp-patches] FYI: StyleSheet.java - Guard against BoxView.getChildAllocation() returning null

2006-11-25 Thread Mark Wielaard
Hi, This fixes a small issue where StyleSheet would generate NullPointerException because it wasn't checking that BoxView.getChildAllocation() could return null. 2006-11-25 Mark Wielaard [EMAIL PROTECTED] * javax/swing/text/html/StyleSheet.java (paint): Guard against

[cp-patches] FYI: TableView vs RowView

2006-11-25 Thread Mark Wielaard
Hi, In a couple of places TableView does already check whether the rowView used is actually an instance of RowView, but not in all places. This patches fixes that: 2006-11-25 Mark Wielaard [EMAIL PROTECTED] * javax/swing/text/html/TableView.java (calculateColumnRequirements): Check

[cp-patches] FYI: CompositeView.modelToView() shouldn't return null

2006-11-25 Thread Mark Wielaard
Hi, It looks like the check in CompositeView.modelToView() for throwing a BadLocationException was slightly to high. It looks like this method should never return null if the position doesn't map. This patch makes it so. 2006-11-25 Mark Wielaard [EMAIL PROTECTED] *

[cp-patches] Re: FYI: CompositeView.modelToView() shouldn't return null

2006-11-25 Thread Roman Kennke
It looks like the check in CompositeView.modelToView() for throwing a BadLocationException was slightly to high. It looks like this method should never return null if the position doesn't map. This patch makes it so. Ok, I found my little test program and transformed it into a Mauve test. I'm

[cp-patches] Re: FYI: CompositeView.modelToView() shouldn't return null

2006-11-25 Thread Mark Wielaard
Hi Roman, On Sat, 2006-11-25 at 22:05 +0100, Roman Kennke wrote: Ok, I found my little test program and transformed it into a Mauve test. I'm not sure if I should actually check this test in as it's a weird corner case that at least stretches the spec. CompositeView.modelToView() returns null

[cp-testresults] FAIL: regressions for mauve-cacao on Sat Nov 25 10:49:20 UTC 2006

2006-11-25 Thread cpdev
Baseline from: Fri Nov 24 15:49:31 UTC 2006 Regressions: FAIL: gnu.javax.crypto.key.srp6.TestOfSRPKeyGeneration Improvements: PASS: java.awt.Component.keyPressTest PASS: java.net.Socket.SocketTest PASS: javax.swing.JFileChooser.removeChoosableFileFilter PASS: javax.swing.JFrame.SetSize PASS:

[cp-testresults] FAIL: regressions for mauve-cacao on Sat Nov 25 23:52:41 UTC 2006

2006-11-25 Thread cpdev
Baseline from: Sat Nov 25 17:18:39 UTC 2006 Regressions: FAIL: gnu.javax.crypto.key.srp6.TestOfSRPKeyGeneration FAIL: java.awt.Graphics.TestPaintGraphics FAIL: java.sql.Timestamp.TimestampTest FAIL: java.text.MessageFormat.format FAIL: java.text.MessageFormat.parse FAIL: java.text.NumberFormat.UK

[cp-testresults] FAIL: regressions for mauve-cacao on Sun Nov 26 06:21:02 UTC 2006

2006-11-25 Thread cpdev
Baseline from: Sat Nov 25 17:18:39 UTC 2006 Regressions: FAIL: java.sql.Timestamp.TimestampTest FAIL: java.text.MessageFormat.format FAIL: java.text.MessageFormat.parse FAIL: java.text.NumberFormat.UK FAIL: java.text.SimpleDateFormat.getDateFormatSymbols FAIL: java.text.SimpleDateFormat.regress

[cp-testresults] classpath daily snapshot 20061126 FAILED

2006-11-25 Thread Michael Koch
ranlib .libs/libclasspath.a creating libclasspath.la (cd .libs rm -f libclasspath.la ln -s ../libclasspath.la libclasspath.la) make[3]: Leaving directory `/home/mkoch/src/classpath/build/native/jni/classpath' Making all in native-lib make[3]: Entering directory

newbie question: compiling the examples

2006-11-25 Thread Alexander Samad
Hi I have just come across classpath, I am using debian amd64. I have downloaded the current version 0.92 When I try the examples I get gcj -o swingdemo --main=gnu.classpath.examples.swing.Demo gnu/classpath/examples/swing/GNULookAndFeel.java gcj:

Re: newbie question: compiling the examples

2006-11-25 Thread Alexander Samad
On Sun, Nov 26, 2006 at 05:03:33PM +1100, Alexander Samad wrote: Hi I have just come across classpath, I am using debian amd64. I have downloaded the current version 0.92 When I try the examples I get gcj -o swingdemo --main=gnu.classpath.examples.swing.Demo

[commit-cp] classpath ChangeLog doc/api/Makefile.am

2006-11-25 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mark Wielaard mark06/11/25 14:55:43 Modified files: . : ChangeLog doc/api: Makefile.am Log message: Fixes bug #28822 * doc/api/Makefile.am

[commit-cp] classpath ChangeLog java/awt/EventQueue.java

2006-11-25 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mark Wielaard mark06/11/25 15:10:55 Modified files: . : ChangeLog java/awt : EventQueue.java Log message: * java/awt/EventQueue.java (pop): Only terminate

[commit-cp] classpath ChangeLog gnu/javax/swing/text/html/c...

2006-11-25 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mark Wielaard mark06/11/25 18:12:46 Modified files: . : ChangeLog gnu/javax/swing/text/html/css: Selector.java Log message: * gnu/javax/swing/text/html/css/Selector.java

[commit-cp] classpath java/text/DecimalFormat.java java/tex...

2006-11-25 Thread Mario Torre
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mario Torre neugens 06/11/25 18:20:54 Modified files: java/text : DecimalFormat.java NumberFormat.java DecimalFormatSymbols.java . : AUTHORS ChangeLog Log

[commit-cp] classpath ChangeLog javax/swing/text/html/Style...

2006-11-25 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mark Wielaard mark06/11/25 18:25:53 Modified files: . : ChangeLog javax/swing/text/html: StyleSheet.java Log message: * javax/swing/text/html/StyleSheet.java (paint):

[commit-cp] classpath ChangeLog javax/swing/text/html/Table...

2006-11-25 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mark Wielaard mark06/11/25 18:45:06 Modified files: . : ChangeLog javax/swing/text/html: TableView.java Log message: * javax/swing/text/html/TableView.java

[commit-cp] classpath ChangeLog javax/swing/text/CompositeV...

2006-11-25 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mark Wielaard mark06/11/25 19:28:42 Modified files: . : ChangeLog javax/swing/text: CompositeView.java Log message: * javax/swing/text/CompositeView.java (modelToView):

[commit-cp] classpath javax/swing/text/GapContent.java Chan...

2006-11-25 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Roman Kennke rabbit78 06/11/25 20:31:09 Modified files: javax/swing/text: GapContent.java . : ChangeLog Log message: 2006-11-25 Roman Kennke [EMAIL PROTECTED]

[commit-cp] classpath ChangeLog gnu/java/awt/peer/gtk/Cairo...

2006-11-25 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Mark Wielaard mark06/11/25 22:19:39 Modified files: . : ChangeLog gnu/java/awt/peer/gtk: CairoGraphics2D.java GdkFontPeer.java Log message: 2006-11-25 Mark Wielaard [EMAIL