turkey-users Mailing List for turkey
Brought to you by:
znamenacek
You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
| 2007 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From:
<tom...@gm...> - 2007-08-19 09:42:41
|
On Aug 19, 2007, at 11:22, Cesare Tirabassi wrote:
> Any idea of what it can cause this behaviours? Perhaps some problem =20=
> with
> the runtime linking of libraries?
I do not understand this much, but I would guess it has to do with =20
class loaders. There is a method called getIcon in the GUI.java file =20
that does the icon loading:
protected ImageIcon getIcon(String id) {
return new ImageIcon(getClass().getResource(id));
}
My guess is that this is the place where the exception occurs, =20
because the icon does not get loaded properly. Can You try to =20
recompile the code with debugging turned on, so that we are sure? It =20
has been a long time since I last fiddled with this code, but I =20
remember having some problems with the icon loading myself. I=92ll try =20=
and look into the code if I have enough time.
T.
--=20
Q: What is purple and commutes?
A: A boolean grape.
|
|
From: Cesare T. <nor...@al...> - 2007-08-19 09:22:57
|
Hello Tom=E1=B9, thanks for coming back to me on this. I have (kind of) solved the problem by changing from the gcj jvm to the sun one. Indeed with the latter everything works as it should. Any idea of what it can cause this behaviours? Perhaps some problem with the runtime linking of libraries? If I can get this to work with the free jvm it would be much better. We had to move the package to our non-free archive, while debian do not solve the problem and keep it in the free one, and we are now out of sync. Cheers, Cesare On Sun, 2007-08-19 at 10:46 +0200, Tom=E1=B9 Znamen=E1=E8ek wrote: > On Aug 1, 2007, at 21:06, Cesare Tirabassi wrote: >=20 > > During GUI execution the program fails with the following exception: > > > > Exception during event dispatch: > > java.lang.NullPointerException > > at gnu.java.awt.peer.gtk.GtkImage.<init>(libgcj.so.80) > > at gnu.java.awt.peer.gtk.GtkFramePeer.setIconImage(libgcj.so.80) > > at gnu.java.awt.peer.gtk.GtkFramePeer.create(libgcj.so.80) > > at gnu.java.awt.peer.gtk.GtkComponentPeer.<init>(libgcj.so.80) > > at gnu.java.awt.peer.gtk.GtkContainerPeer.<init>(libgcj.so.80) > > at gnu.java.awt.peer.gtk.GtkWindowPeer.<init>(libgcj.so.80) > > at gnu.java.awt.peer.gtk.GtkFramePeer.<init>(libgcj.so.80) > > at gnu.java.awt.peer.gtk.GtkToolkit.createFrame(libgcj.so.80) > > at java.awt.Frame.addNotify(libgcj.so.80) > > at java.awt.Window.show(libgcj.so.80) > > at java.awt.Component.show(libgcj.so.80) > > at java.awt.Component.setVisible(libgcj.so.80) > > at net.sf.turkey.GUI$5.run(Unknown Source) > > at java.awt.event.InvocationEvent.dispatch(libgcj.so.80) > > at java.awt.EventQueue.dispatchEvent(libgcj.so.80) > > at java.awt.EventDispatchThread.run(libgcj.so.80) > > > > I'm using java-1.5.0-gcj-4.2-1.5.0.0 with the gcj7-1-awt library. > > Any hint on what can be wrong? >=20 > Hello, >=20 > and sorry for the delay, I have been away for the summer. This looks =20 > like some problem with the application icon or other interface icons, =20 > see the first exception mentioning GtkImage. Maybe You could compile =20 > Turkey with the debugging turned on and see, which line exactly =20 > triggers the exception? >=20 > T. "We'll strategically withdraw to previously prepared position." "Who prepared them?" "we'll prepare them when we get there..." (Reaper Man) |
|
From:
<tom...@gm...> - 2007-08-19 08:46:24
|
On Aug 1, 2007, at 21:06, Cesare Tirabassi wrote: > During GUI execution the program fails with the following exception: > > Exception during event dispatch: > java.lang.NullPointerException > at gnu.java.awt.peer.gtk.GtkImage.<init>(libgcj.so.80) > at gnu.java.awt.peer.gtk.GtkFramePeer.setIconImage(libgcj.so.80) > at gnu.java.awt.peer.gtk.GtkFramePeer.create(libgcj.so.80) > at gnu.java.awt.peer.gtk.GtkComponentPeer.<init>(libgcj.so.80) > at gnu.java.awt.peer.gtk.GtkContainerPeer.<init>(libgcj.so.80) > at gnu.java.awt.peer.gtk.GtkWindowPeer.<init>(libgcj.so.80) > at gnu.java.awt.peer.gtk.GtkFramePeer.<init>(libgcj.so.80) > at gnu.java.awt.peer.gtk.GtkToolkit.createFrame(libgcj.so.80) > at java.awt.Frame.addNotify(libgcj.so.80) > at java.awt.Window.show(libgcj.so.80) > at java.awt.Component.show(libgcj.so.80) > at java.awt.Component.setVisible(libgcj.so.80) > at net.sf.turkey.GUI$5.run(Unknown Source) > at java.awt.event.InvocationEvent.dispatch(libgcj.so.80) > at java.awt.EventQueue.dispatchEvent(libgcj.so.80) > at java.awt.EventDispatchThread.run(libgcj.so.80) > > I'm using java-1.5.0-gcj-4.2-1.5.0.0 with the gcj7-1-awt library. > Any hint on what can be wrong? Hello, and sorry for the delay, I have been away for the summer. This looks =20 like some problem with the application icon or other interface icons, =20= see the first exception mentioning GtkImage. Maybe You could compile =20 Turkey with the debugging turned on and see, which line exactly =20 triggers the exception? T. --=20 Dr. Gonzo: It=92s okay. He=92s just admiring the shape of your skull. |
|
From: Cesare T. <nor...@al...> - 2007-08-01 19:06:06
|
Hello, I'm trying to build turkey for the Ubuntu gutsy official repositories, and have a runtime problem (which I don't know if relates to the way the package is built). During GUI execution the program fails with the following exception: Exception during event dispatch: java.lang.NullPointerException at gnu.java.awt.peer.gtk.GtkImage.<init>(libgcj.so.80) at gnu.java.awt.peer.gtk.GtkFramePeer.setIconImage(libgcj.so.80) at gnu.java.awt.peer.gtk.GtkFramePeer.create(libgcj.so.80) at gnu.java.awt.peer.gtk.GtkComponentPeer.<init>(libgcj.so.80) at gnu.java.awt.peer.gtk.GtkContainerPeer.<init>(libgcj.so.80) at gnu.java.awt.peer.gtk.GtkWindowPeer.<init>(libgcj.so.80) at gnu.java.awt.peer.gtk.GtkFramePeer.<init>(libgcj.so.80) at gnu.java.awt.peer.gtk.GtkToolkit.createFrame(libgcj.so.80) at java.awt.Frame.addNotify(libgcj.so.80) at java.awt.Window.show(libgcj.so.80) at java.awt.Component.show(libgcj.so.80) at java.awt.Component.setVisible(libgcj.so.80) at net.sf.turkey.GUI$5.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(libgcj.so.80) at java.awt.EventQueue.dispatchEvent(libgcj.so.80) at java.awt.EventDispatchThread.run(libgcj.so.80) I'm using java-1.5.0-gcj-4.2-1.5.0.0 with the gcj7-1-awt library. Any hint on what can be wrong? Many thanks, Cesare Tirabassi |
|
From: Syndrome f. <frz...@pa...> - 2006-12-04 21:55:49
|
80560 |
|
From: <tom...@ce...> - 2005-06-04 20:58:48
|
> I speak Bass. Is there a way to remove the obscenities from the Bass > dictionary? Well if this is not funny then I do not know what is :) This thing is, I am a beginning electric bass player and the Bass Turkey dictionary is made of a post to a bassist usenet group. I am not aware of any language named Bass (I am not a native English speaker, I might know the name of language in Czech), a brief google query shows nothing because of the high music noise ratio in the results. If there really is a language named Bass (sorry! I am ignorant and I know it, educate me!), we can either drop the current Bass dictionary or we can replace it with some nicer Bass dictionary, just send me some text in Bass (an URL would do). By the bye, this is the first politically incorrect behaving computer program I've ever written :) T. |
|
From: <tom...@ce...> - 2005-06-04 17:07:27
|
On Jun 3, 2005, at 14:31, Jerrad Pierce wrote: > What about generating lorem ipsum? You mean the infamous pseudo-latin text? The 'default' dictionary looks like the Lorem Ipsum if you're interested: Semporcurabitae intesque aliquam felit mauris nunc donec vel temper nequam intesque. Ata urna tincidunt elis habitur morbi orna ames intesque proin convallis. Diculisant nisl inte tincidunt quisque et quisque eu nam eu vestas. T. |
|
From: Keith G. <kr...@ya...> - 2005-06-03 15:24:45
|
Hello, I speak Bass. Is there a way to remove the obscenities from the Bass dictionary? Thanks for the release. Keith __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Jerrad P. <Jer...@sh...> - 2005-06-03 12:32:05
|
Checked the arcives (nada, btw maybe there should be a FAQ?)... What about generating lorem ipsum? |
|
From: <tom...@ce...> - 2005-06-03 07:47:46
|
Hello, Turkey 1.34 has been released. It features a native OS X build and new dictionaries (Danish, German and Spanish), go check it out! http://sourceforge.net/project/showfiles.php?group_id=120887 http://turkey.sf.net/ Nuncquis libero sem netur pendrerit felit phasellus felit quis ametus nibh! T. |
|
From: Tomas Z. <tom...@ce...> - 2004-10-21 13:59:02
|
Hello, Turkey 1.31 is available for download. Changelog: - Command line interface usable both on UNIX-like and Windows systems. - The Copy button now copies only the selected portion of the text in case there's some selection available. - New application icon. (Thanks to David Brezina, <da...@da...>). http://prdownloads.sourceforge.net/turkey/turkey-1.31.jar?download http://turkey.sf.net/ T. -- Dr. Gonzo: Are you ready for that? Checking into a Las Vegas hotel under a phony name with intent to commit capital fraud on a head full of acid? I sure hope so. |