[cp-patches] Re: [commit-cp] classpath ./ChangeLog lib/Makefile.am m4/acincl...

2005-12-13 Thread Mark Wielaard
Hi Dalibor, On Tue, 2005-12-13 at 01:20 +, Dalibor Topic wrote: Log message: Build breakage fix for jikes 1.19 2005-12-12 Dalibor Topic [EMAIL PROTECTED] Fixes bug #25353 * m4/acinclude.m4: Added JIKESWARNINGS makefile variable. Only add

Re: [cp-patches] FYI: Allow Security.setProperty(foo, null)

2005-12-13 Thread Gary Benson
Tom Tromey wrote: Gary == Gary Benson [EMAIL PROTECTED] writes: Gary At the moment Security.setProperty() will not allow the Gary setting of null property values. Since Security.getProperty() Gary returns null for unset properties this means that the Gary following will fail: When you

[cp-patches] FYI: Update hacking Branches rules

2005-12-13 Thread Mark Wielaard
Hi, I installed this documentation update that we discussed on the main list. 2005-12-13 Mark Wielaard [EMAIL PROTECTED] * doc/hacking.texinfo (Branches): Explain broken branches a bit more. Committed, Mark Index: doc/hacking.texinfo

Re: [cp-patches] FYI: Update hacking Branches rules

2005-12-13 Thread Mark Wielaard
Hi, One small change that makes the HTML version nicer to read: 2005-12-13 Mark Wielaard [EMAIL PROTECTED] * doc/hacking.texinfo: Add @bullet to all @itemize lists. As soon as it update (should be every hour) you can see the result on

Re: [cp-patches] RFC: HTMLDocument.HTMLReader partial implementation

2005-12-13 Thread Anthony Balkissoon
No objections were raised, and I got a couple of go-aheads, so this is committed as follows (same as before plus 1 more stubbed method that Lillian needed). 2005-12-12 Anthony Balkissoon [EMAIL PROTECTED] * javax/swing/text/html/HTMLDocument.java: (tokenThreshold): New field.

[cp-patches] Patch: HTMLEditorKit partial implementation

2005-12-13 Thread Lillian Angel
Implemented some more functions in HTMLEditorKit. Still not complete. I am still working on finishing this class. 2005-12-13 Lillian Angel [EMAIL PROTECTED] * javax/swing/text/html/HTMLEditorKit.java (getHTMLDocument): Fixed implementation to catch exception.

Mailinglist troubles/archives (Was: [cp-patches] FYI: Allow Security.setProperty(foo, null))

2005-12-13 Thread Mark Wielaard
Hi, Moved from classpath-patches to the mainlist. On Tue, 2005-12-13 at 09:39 +, Gary Benson wrote: Tom Tromey wrote: When you sent this last week I replied to it... did you not see that? No, I did not. I certainly wouldn't have committed without replying. I seem to have missed a

[cp-patches] Patch: HTMLDocument addition

2005-12-13 Thread Lillian Angel
Added and implemented an inner class in HTMLDocument. 2005-12-13 Lillian Angel [EMAIL PROTECTED] * javax/swing/text/html/HTMLDocument.java (BlockElement.getName): Should use getAttribute because the API says that this function can return null. (RunElement): New

[cp-patches] Patch: HTMLDocument fix.

2005-12-13 Thread Lillian Angel
Implemented the getReader functions in HTMLDocument according to the API. They return an instance of HTMLDocument.HTMLReader. 2005-12-13 Lillian Angel [EMAIL PROTECTED] * javax/swing/text/html/HTMLDocument.java (getReader): Implemented. (getReader): Implemented. Index:

[cp-patches] XInclude filter

2005-12-13 Thread Chris Burdess
This patch provides a very rough and ready XInclude filter to provide XInclude-aware XML processing in the StAX implementation. Extensions to the XPath implementation will be required in order to be conformant. 2005-12-13 Chris Burdess [EMAIL PROTECTED] * gnu/xml/stream/SAXParser.java,

[cp-patches] Patch: HTMLDocument addition

2005-12-13 Thread Lillian Angel
Added in the missing methods for HTMLDocument. I was only able to implement 2 so far. The others are just stubs for now. 2005-12-13 Lillian Angel [EMAIL PROTECTED] * javax/swing/text/html/HTMLDocument.java (getElement): Implemented. (getElement): Implemented.

Re: [cp-patches] Patch: HTMLEditorKit partial implementation

2005-12-13 Thread Mark Wielaard
Hi Lillian, On Tue, 2005-12-13 at 11:28 -0500, Lillian Angel wrote: @@ -338,7 +340,14 @@ */ protected HTMLDocument getHTMLDocument(JEditorPane e) { -return (HTMLDocument) e.getDocument(); +try +{ + return (HTMLDocument)

Re: [cp-patches] FYI: HTMLEditorKit partial implementation

2005-12-13 Thread Lillian Angel
Try catching a more specific Exception (like ClassCastException) or first trying if (e instanceof HTMLEditor). And when catching an exception and throwing a new one it often makes sense to chain the exceptions with initCause(). You are right. Thanks for catching that. It is now fixed.

Re: [cp-patches] FYI: HTMLEditorKit partial implementation

2005-12-13 Thread Lillian Angel
Fixed a small typo 2005-12-13 Lillian Angel [EMAIL PROTECTED] * javax/swing/text/html/HTMLEditorKit.java (getHTMLEditorKit): Fixed typo. On Tue, 2005-12-13 at 17:49 -0500, Lillian Angel wrote: Try catching a more specific Exception (like ClassCastException) or first

[cp-patches] [generics] Patch: FYI: java.lang.instrument fixlet

2005-12-13 Thread Tom Tromey
I'm checking this in on the generics branch. Japi pointed out a missing 'public'. Tom 2005-12-13 Tom Tromey [EMAIL PROTECTED] * java/lang/instrument/ClassDefinition.java (ClassDefinition): Now public. Index: java/lang/instrument/ClassDefinition.java

[cp-patches] [generics] Patch: FYI: indentation in java.lang.instrument

2005-12-13 Thread Tom Tromey
I'm checking this in on the generics branch. I happened to notice some indentation errors in java.lang.instrument. Fixed as appended. Tom 2005-12-13 Tom Tromey [EMAIL PROTECTED] * java/lang/instrument/ClassDefinition.java: Reformatted. *

Re: lists.gnu.org and savannah.gnu.org (CVS) updates

2005-12-13 Thread Andrew Pinski
Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark Or the fact Mark that you really need to setup an external diff command since the Mark built-in one is not capable enough. ? I haven't noticed this one. Mark Also importing an old CVS repository like all of GCC seems possible

Fosdem 2005 reminder (Feb 25/26)

2005-12-13 Thread Mark Wielaard
Hi all, Please do tell us if you are planning to come to the GNU Classpath hacker room in Brussels, Belgium Februari 25 and 26, 2006 (mailto:[EMAIL PROTECTED]) Yes, you will be allowed in even if you didn't tell us in advance :) We just want to see how many people are interested so we can better

Re: Security manager problem

2005-12-13 Thread Mark Wielaard
Hi Gary, On Mon, 2005-12-12 at 17:55 +, Gary Benson wrote: Gary Benson wrote: Robert Lougher wrote: Do you have a testcase? If you build and run the attached testcase you ought to see only one checkPermission() between Calling checkRead() and Done. ... In reality, JamVM chokes

[commit-cp] classpath ./ChangeLog doc/hacking.texinfo

2005-12-13 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 05/12/13 10:17:48 Modified files: . : ChangeLog doc: hacking.texinfo Log message: * doc/hacking.texinfo

[commit-cp] classpath ./ChangeLog doc/hacking.texinfo

2005-12-13 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 05/12/13 10:56:03 Modified files: . : ChangeLog doc: hacking.texinfo Log message: * doc/hacking.texinfo: Add

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

2005-12-13 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Anthony Balkissoon [EMAIL PROTECTED] 05/12/13 16:13:08 Modified files: . : ChangeLog javax/swing/text/html: HTMLDocument.java HTMLEditorKit.java Log message:

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

2005-12-13 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/12/13 17:14:29 Modified files: . : ChangeLog javax/swing/text/html: HTMLDocument.java Log message: 2005-12-13 Lillian

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

2005-12-13 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/12/13 19:51:58 Modified files: . : ChangeLog javax/swing/text/html: HTMLDocument.java Log message: 2005-12-13 Lillian

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

2005-12-13 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Anthony Balkissoon [EMAIL PROTECTED] 05/12/13 21:52:12 Modified files: . : ChangeLog javax/swing/text/html: HTMLDocument.java Log message: 2005-12-13 Anthony

[commit-cp] classpath ./ChangeLog gnu/xml/stream/XIncludeFi...

2005-12-13 Thread Chris Burdess
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Chris Burdess [EMAIL PROTECTED] 05/12/13 22:13:32 Modified files: . : ChangeLog gnu/xml/stream : XIncludeFilter.java XMLParser.java

[commit-cp] classpath ./ChangeLog javax/swing/AbstractActio...

2005-12-13 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/12/13 22:15:16 Modified files: . : ChangeLog javax/swing: AbstractAction.java javax/swing/text: StyledEditorKit.java

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

2005-12-13 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/12/13 22:49:21 Modified files: . : ChangeLog javax/swing/text/html: HTMLEditorKit.java Log message: 2005-12-13 Lillian

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

2005-12-13 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/12/13 22:51:54 Modified files: . : ChangeLog javax/swing/text/html: HTMLEditorKit.java Log message: 2005-12-13 Lillian

[commit-cp] classpath/javax/swing/text/html HTMLEditorKit.java

2005-12-13 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 05/12/13 22:53:55 Modified files: javax/swing/text/html: HTMLEditorKit.java Log message: 2005-12-13 Lillian Angel [EMAIL PROTECTED]

[commit-cp] classpath java/lang/instrument/ClassDefinition.... [generics-branch]

2005-12-13 Thread Tom Tromey
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Tom Tromey [EMAIL PROTECTED] 05/12/14 03:13:23 Modified files: java/lang/instrument: ClassDefinition.java . : ChangeLog Log message: *

[commit-cp] classpath java/lang/instrument/ClassDefinition.... [generics-branch]

2005-12-13 Thread Tom Tromey
CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Tom Tromey [EMAIL PROTECTED] 05/12/14 03:25:14 Modified files: java/lang/instrument: ClassDefinition.java UnmodifiableClassException.java