Re: [cp-patches] [patch] add rule to install the sample html files

2006-11-06 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Mon, 2006-11-06 at 22:11 +0100, Andreas Tobler wrote: this patchlet installs the necessary html files in the example directory. Ok? Looks good to me. I think we also need the html files in the example.zip file itself like the icons to make it self-contained.

Re: [cp-patches] [patch] add rule to install the sample html files

2006-11-06 Thread Mark Wielaard
Hi Andreas, On Mon, 2006-11-06 at 22:11 +0100, Andreas Tobler wrote: > this patchlet installs the necessary html files in the example directory. > > Ok? Looks good to me. I think we also need the html files in the example.zip file itself like the icons to make it self-contained. I extended your

[cp-patches] FYI: Custom composites - the last one!

2006-11-06 Thread Francis Kung
Hi, This patch implements custom composites for the last of the graphics peers, ComponentGraphics. With this, we should now have custom composite support across all the GTK peers. Cheers, Francis 2006-11-06 Francis Kung <[EMAIL PROTECTED]> * gnu/java/awt/peer/gtk/ComponentGraphics.j

[cp-patches] [patch] add rule to install the sample html files

2006-11-06 Thread Andreas Tobler
Hi all, this patchlet installs the necessary html files in the example directory. Ok? Thanks, Andreas 2006-11-06 Andreas <[EMAIL PROTECTED]> * examples/Makefile.am: Add rule to install the *.html files we use in the Swing Demo. Index: examples/Makefile.am ===

[cp-patches] FYI: HtmlDemo fixlets

2006-11-06 Thread Roman Kennke
This gives the HtmlDemo a reasonable initial size and loads the correct welcome page. 2006-11-06 Roman Kennke <[EMAIL PROTECTED]> * examples/gnu/classpath/examples/swing/HtmlDemo.java: Fixed initial window size and start document. /Roman Index: examples/gnu/classpath/examples/

[cp-patches] FYI: HTML parser fixes

2006-11-06 Thread Roman Kennke
This fixes the issues that I already reported about. It does two things: - Prevent the htmlAttributeSet to slip into user/application-visible code - Don't set the resolving parent (this actually solves my problem) I decided to not remove the htmlAttributeSet altogether because that would've caused

[cp-patches] Re: FYI: TextComponent fix

2006-11-06 Thread Tania Bento
Sorry... Forgot to attach the patch. On Mon, 2006-11-06 at 15:15 -0500, Tania Bento wrote: > Hey, > > This patch fixes a bug in java.awt.TextComponent.setSelectionStart(int) > that was exposed by Harmony's testsuites. I have committed a mauve test > for this change. > > Cheers, > Tania > > 200

[cp-patches] FYI: TextComponent fix

2006-11-06 Thread Tania Bento
Hey, This patch fixes a bug in java.awt.TextComponent.setSelectionStart(int) that was exposed by Harmony's testsuites. I have committed a mauve test for this change. Cheers, Tania 2006-11-06 Tania Bento <[EMAIL PROTECTED]> * java/awt/TextComponent.java (setSelectionStart): Ad

[cp-patches] FYI: TextField fixes

2006-11-06 Thread Tania Bento
Hey, This patch fixes a bug that was exposed by Harmony's testsuites. I have also committed a mauve test. The bugs were in the minimizeSize(int) and preferredSize(int) methods. Cheers, Tania 2006-11-06 Tania Bento <[EMAIL PROTECTED]> * java/awt/TextField.java (minimumSize(

[cp-patches] FYI: java.util.regex.Matcher fix

2006-11-06 Thread Ito Kazumitsu
I'm checking this in. 2006-11-06 Ito Kazumitsu <[EMAIL PROTECTED]> Fixes bug #29703 * java/util/regex/Matcher.java(reset): Reset inputCharIndexed. Index: classpath/java/util/regex/Matcher.java === RCS file: /cvsr

[cp-patches] FYI: JTree, finally

2006-11-06 Thread Francis Kung
Hi, We continue (but don't conclude) the JTree memory leak story... This commit implements a temporary fix for the memory leak, as well as a patch from Roman that starts fixing the root problem (however our javax.swing.tree.DefaultTreeModel isn't firing events properly yet). Cheers, Francis 20

[cp-patches] FYI: Example HTML browser

2006-11-06 Thread Roman Kennke
This changes the HtmlDemo to be a minimalistic web browser. I also added a view example pages to look at. Of course, nothing is preventing you from typing in http:// addresses in the location bar. Don't expect too much from it though :-/ 2006-11-06 Roman Kennke <[EMAIL PROTECTED]> * exa

[cp-patches] FYI: javax.swing.text fixes

2006-11-06 Thread Roman Kennke
Here come a couple of fixes for javax.swing.text that have been necessary to get the new HTML stuff to work properly. 2006-11-06 Roman Kennke <[EMAIL PROTECTED]> * javax/swing/text/ComponentView.java (setParent): Lock the document and repaint the hosting container.

Re: [cp-patches] RFC: JTree memory leak

2006-11-06 Thread Roman Kennke
Hi Francis, You sync the nodeState table on each call of the setSelectionPath() method. However, this would not cover the case where an application calls the selection model directly. If I understand the problem correctly, we don't have a problem here when the selection changes, but when the actu

[Chinese-hackers] A simple and safe way to weigh less

2006-11-06 Thread Emory Jean
Even if getting thin ner is not immediately necessary for you, Ana`trim can help you optimize your eating and feel better than any time before! This advanced blend of nat^ural ingredients puts your body in real control over what you eat, suppressing excessive ap`petite and giving you plenty of nat

Re: [cp-patches] RFC: JTree memory leak

2006-11-06 Thread Francis Kung
Hi, OK, slightly more elegant fix for the JTree leak. I'm not sure if this covers *all* possible cases where we'd need to remove an entry out of nodeStates, but it seems to cover the ones that I was testing for. How's this look? Thanks, Francis On Thu, 2006-11-02 at 22:29 +0100, Roman Kennke w