Re: [cp-patches] [generics] FYI: New Instrumentation parameter to VMInstrumentationImpl.redefineClasses

2006-01-13 Thread Nicolas Geoffray
Hi Andrew, Andrew John Hughes wrote: On Sun, 2005-12-04 at 14:11 +0100, Nicolas Geoffray wrote: Here's a fix that eases implementation of the VMInstrumentationImpl.redefineClasses method. The VM might not want to keep the Instrument object, therefore it must be given explicitely to the VM

[cp-patches] RFC: gnu.regexp: support embedded flags

2006-01-13 Thread Ito Kazumitsu
This fixes the bug #22884. ChangeLog: 2006-01-14 Ito Kazumitsu <[EMAIL PROTECTED]> Fixes bug #22884 * gnu/regexp/RE.java(initialize): Parse embedded flags. * gnu/regexp/RESyntax.java(RE_EMBEDDED_FLAGS): New syntax bit. Index: classpath/gnu/regexp/RE.java ===

[cp-patches] FYI: Swing based AWT peers.

2006-01-13 Thread Roman Kennke
Here comes a first prototypical implementation of AWT peers based on Swing. This is not a complete AWT toolkit implementation and cannot be. It only provides a couple of AWT widgets (only the very basic ATM). The following screenshot is a small AWT program that runs with these peers: http://kennke

Re: [cp-patches] [generics] FYI: New Instrumentation parameter to VMInstrumentationImpl.redefineClasses

2006-01-13 Thread Andrew John Hughes
On Sun, 2005-12-04 at 14:11 +0100, Nicolas Geoffray wrote: > Here's a fix that eases implementation of the > VMInstrumentationImpl.redefineClasses > method. The VM might not want to keep the Instrument object, therefore > it must > be given explicitely to the VMInstrumentationImpl.redefineClasses

Re: [cp-patches] [FYI]: Patch for javax.print.attribute.standard package

2006-01-13 Thread Wolfgang Baer
Hi Mark, sorry for the late response. Mark Wielaard wrote: Hi Wolfgang, On Fri, 2005-12-30 at 14:07 +0100, Wolfgang Baer wrote: 2005-12-30 Wolfgang Baer <[EMAIL PROTECTED]> * javax/print/attribute/standard/package.html: Added description. * javax/print/attribute/standard/M

[cp-patches] FYI: ComponentPeer documented

2006-01-13 Thread Roman Kennke
While working on my peer set, I thought it would be nice to have the ComponentPeer interface a little better documented. So I did it. 2006-01-13 Roman Kennke <[EMAIL PROTECTED]> * java/awt/peer/ComponentPeer.java: Added API docs all over. /Roman Index: java/awt/peer/ComponentPeer.java

[cp-patches] FYI: reformatted Frame

2006-01-13 Thread Roman Kennke
I also reformatted java.awt.Frame to match our coding style. 2006-01-13 Roman Kennke <[EMAIL PROTECTED]> * java/awt/Frame.java: Reformatted to better match our coding style. /Roman Index: java/awt/Frame.java === RC

[cp-patches] FYI: MenuBar reformatting

2006-01-13 Thread Roman Kennke
I reformatted the java.awt.MenuBar to better match our coding style. 2006-01-13 Roman Kennke <[EMAIL PROTECTED]> * java/awt/MenuBar.java: Reformatted to better match our coding style. /Roman Index: java/awt/MenuBar.java ==

[cp-patches] FYI: fix MenuBar warnings

2006-01-13 Thread Roman Kennke
This fixes some warnings that were pointed out by Eclipse in java.awt.MenuBar. 2006-01-13 Roman Kennke <[EMAIL PROTECTED]> * java/awt/MenuBar.java (accessibleContext): Removed unnecessary field. This is already defined in MenuComponent. (setHelpMenu): Renamed the

[cp-patches] FYI: Old style event fixes, part 2

2006-01-13 Thread Roman Kennke
This is the second part for the old (1.0) style AWT event handling. The problem that is fixed here is that events that are targetted at menu components (like ActionEvents) must be forwarded along the parent chain and finally must end up in the frame that holds the menu bar (I have an application he

[cp-patches] FYI: Component event handling fix

2006-01-13 Thread Roman Kennke
Hi, this is the first patch that I commit to make our AWT more compatible with the 1.0-style event handling. It moves some code from dispatchEventImpl to dispatchEvent and fixes translateEvent() to also be usable for MenuComponent events. 2006-01-13 Roman Kennke <[EMAIL PROTECTED]> * j

[cp-patches] Re: FYI: Another DefaultStyledDocument fix

2006-01-13 Thread Lillian Angel
Another small fix. 2006-01-13 Lillian Angel <[EMAIL PROTECTED]> * javax/swing/text/DefaultStyledDocument.java (createDefaultRoot): Removed FIXME. (setLogicalStyle): Added fireUndoableEditUpdate call and removed FIXME. On Fri, 2006-01-13 at 14:34 -0500, Lillian

Re: [cp-patches] GNU Crypto and Jessie merge

2006-01-13 Thread Tom Tromey
> "Tom" == Thomas Fitzsimmons <[EMAIL PROTECTED]> writes: >> sounds like your VM is not installing the additional Providers: >> GnuSecurity and GnuCrypto. the patch includes a modification to the >> classpath.security resource file to add the above. Tom> Ugh, I thought the patch contained

[cp-patches] Patch: Another DefaultStyledDocument fix

2006-01-13 Thread Lillian Angel
I changed the class so all the addEdit calls are all done after insertUpdate is called. This fixes some mauve regressions. 2006-01-13 Lillian Angel <[EMAIL PROTECTED]> * javax/swing/text/DefaultStyledDocument.java (Edit): New inner class. (changeUpdate): Changed addEdit

Re: [cp-patches] GNU Crypto and Jessie merge

2006-01-13 Thread Tom Tromey
> "Raif" == Raif S Naffah <[EMAIL PROTECTED]> writes: Raif> Tom Tromey, some time ago, worked on Jalopy, to customize it to suit GNU Raif> formatting standard purposes. he may be able to shed some light on the Raif> tool's fitness for this purpose. if it works that can solve this issue Ra

Re: [cp-patches] [generics] Modifier.toString()

2006-01-13 Thread Tom Tromey
> "Mark" == Mark Wielaard <[EMAIL PROTECTED]> writes: Mark> there is a somewhat unfortunate situation on the generics branch with Mark> Modifier.toString() which takes a StringBuffer on the trunk, but a Mark> StringBuilder on the branch. Officially this isn't part of the Vm Mark> interface, bu

[cp-patches] FYI: Add 0.20 release announcement

2006-01-13 Thread Mark Wielaard
And now it is official! 2006-01-13 Mark Wielaard <[EMAIL PROTECTED]> * doc/www.gnu.org/announce/20060113.wml: New file. * doc/www.gnu.org/newsitems.txt: Add 0.20 release announcement. * doc/www.gnu.org/downloads/downloads.wml: Add 0.20. Committed, Mark Inde

[cp-patches] Re: Patch: DefaultStyledDocument clean-up

2006-01-13 Thread Lillian Angel
Ugh! Attached wrong patch.. here is the correct one. Lillian On Fri, 2006-01-13 at 11:21 -0500, Lillian Angel wrote: > Cleaned up the code in DefaultStyledDocument. > > 2006-01-13 Lillian Angel <[EMAIL PROTECTED]> > > * javax/swing/text/DefaultStyledDocument.java: > Removed

[cp-patches] Patch: DefaultStyledDocument clean-up

2006-01-13 Thread Lillian Angel
Cleaned up the code in DefaultStyledDocument. 2006-01-13 Lillian Angel <[EMAIL PROTECTED]> * javax/swing/text/DefaultStyledDocument.java: Removed unused fields. (insert): Removed unused fields. (endEdit): Removed, not needed. (insertUpdate): Removed call

[cp-patches] [generics] Modifier.toString()

2006-01-13 Thread Mark Wielaard
Hi, there is a somewhat unfortunate situation on the generics branch with Modifier.toString() which takes a StringBuffer on the trunk, but a StringBuilder on the branch. Officially this isn't part of the Vm interface, but there are runtimes that override the Method, Constructor and Field classes a

Re: [cp-patches] RFC: gnu.regexp fix to allow "([(])"

2006-01-13 Thread Mark Wielaard
Hi Ito, On Wed, 2006-01-11 at 01:08 +0900, Ito Kazumitsu wrote: > This fixes the bug #22802. > > ChangeLog: > 2006-01-10 Ito Kazumitsu <[EMAIL PROTECTED]> > > Fixes bug #22802 > * gnu/regexp/RE.java(initialize): Fixed the parsing of > character classes within a subexpression.

[cp-patches] FYI: Set version number and add NEWS entries

2006-01-13 Thread Mark Wielaard
Hi, 2005-01-13 Mark Wielaard <[EMAIL PROTECTED]> * configure.ac: Set version to 0.20. * NEWS: Add entries for all the new work done. We are almost done. Sorry for all the omissions in the NEWS file. Obviously a lot more has happened then what I summarized. Please do add your ow

[cp-patches] FYI: Chain assertions in DefaultCaret

2006-01-13 Thread Mark Wielaard
Hi, BeanShell is throwing some nasty AssertionErrors in DefaultCaret. I am not investigating this further or fixing it since BeanShell wasn't really working that well before with 0.19. Although we seem pretty close now (try the BeanShell Class Browser!). This is just to give us better exceptions i

[cp-patches] Patchlet

2006-01-13 Thread Chris Burdess
This removes some debugging output I forgot to remove before. Sorry about that. 2006-01-13 Chris Burdess <[EMAIL PROTECTED]> * gnu/xml/xpath/NameTest.java: Removed debugging output. -- 犬 Chris Burdess "They that can give up essential liberty to obtain a little safety deserve neither

[cp-patches] FYI: java/security/Security fix for infinite recursion problem

2006-01-13 Thread Jeroen Frijters
Hi, I checked in the attached patch. Regards, Jeroen 2005-01-13 Jeroen Frijters <[EMAIL PROTECTED]> * java/security/Security.java (getProperty): Added hack to skip security check when trusted code is direct caller. Index: java/security/Security.java ===