java-gnome-hackers Mailing List for The java-gnome language bindings project (Page 107)
Brought to you by:
afcowie
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(102) |
Sep
(43) |
Oct
(32) |
Nov
(43) |
Dec
(51) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(6) |
Feb
(19) |
Mar
(39) |
Apr
(22) |
May
|
Jun
(11) |
Jul
(2) |
Aug
(4) |
Sep
|
Oct
(3) |
Nov
(9) |
Dec
(73) |
2004 |
Jan
(88) |
Feb
(141) |
Mar
(116) |
Apr
(69) |
May
(199) |
Jun
(53) |
Jul
(90) |
Aug
(23) |
Sep
(11) |
Oct
(212) |
Nov
(57) |
Dec
(61) |
2005 |
Jan
(88) |
Feb
(17) |
Mar
(21) |
Apr
(50) |
May
(44) |
Jun
(33) |
Jul
(21) |
Aug
(37) |
Sep
(39) |
Oct
(43) |
Nov
(40) |
Dec
(15) |
2006 |
Jan
(21) |
Feb
(69) |
Mar
(23) |
Apr
(6) |
May
(29) |
Jun
(19) |
Jul
(17) |
Aug
(15) |
Sep
(13) |
Oct
(16) |
Nov
(9) |
Dec
(7) |
2007 |
Jan
(30) |
Feb
(39) |
Mar
(1) |
Apr
(12) |
May
(53) |
Jun
(30) |
Jul
(39) |
Aug
(75) |
Sep
(16) |
Oct
(13) |
Nov
(20) |
Dec
(5) |
2008 |
Jan
(8) |
Feb
(14) |
Mar
(33) |
Apr
(7) |
May
(22) |
Jun
(23) |
Jul
(17) |
Aug
(9) |
Sep
(9) |
Oct
(25) |
Nov
(9) |
Dec
(1) |
2009 |
Jan
(20) |
Feb
(38) |
Mar
(9) |
Apr
(15) |
May
(30) |
Jun
(35) |
Jul
(22) |
Aug
(10) |
Sep
(7) |
Oct
(23) |
Nov
(6) |
Dec
(8) |
2010 |
Jan
(5) |
Feb
(10) |
Mar
(17) |
Apr
(10) |
May
(16) |
Jun
(8) |
Jul
(3) |
Aug
(15) |
Sep
(14) |
Oct
(26) |
Nov
(11) |
Dec
(14) |
2011 |
Jan
(10) |
Feb
(8) |
Mar
(6) |
Apr
(7) |
May
(18) |
Jun
(17) |
Jul
(6) |
Aug
(1) |
Sep
(2) |
Oct
(6) |
Nov
(2) |
Dec
(10) |
2012 |
Jan
(6) |
Feb
(9) |
Mar
|
Apr
(3) |
May
(1) |
Jun
|
Jul
(5) |
Aug
(14) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2013 |
Jan
|
Feb
(8) |
Mar
(6) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(2) |
2014 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: 'Mark H. <mh...@ca...> - 2004-02-20 15:43:59
|
On Fri, Feb 20, 2004 at 10:23:48AM -0500, Jeffrey Morgan wrote: > 2) The tree control and related classes are a critical component > of the bindings. Since Mark is busy I plan to spend next week > working on these classes. Mark, you could really help by sending > an email that would provide an overview of these classes, how they > work together, what you were able to complete and what remains. I'll try but I'm not sure when. > During my review I added that we should change a couple of the > classes to Interfaces since they are implemented this way in gtk. > I did this for FileChooser and implemented a FileChooserHelper > class to actually implement those methods so there was no > duplication of code. Does this make sence for the Tree widgets? I guess. We should probably do the same for the sortable interface for trees. > Also, I am not real happy with the class name DataBlock. What these > really represent are column types. I know this would break > a lot of code but we should discuss this before our API freeze. > Could we change this to something like ColumnType? Also, could > these be stored as members of the store so calls to setValue > would not need to pass them as a parameter. setValue could then > just pass a 0 based column number. 1) Having two things called columns related to the same widget is confusing. TreeViews have columns (things you see) and treemodels have columns (for storing a particular type of data). Perhaps DataColumn or DataStoreColumn would be better? It is not merely a ColumnType since the integer value refers to a particular column; however, it is not an object which stores the data of a column, just acts like a pointer to the data. DataBlock might not be the best name, but I still think it's better than ColumnType. 2) By using these rather than integers, we can enforce that the correct type of object is being passed to setValue/getValue and so can overload them. I think this is the most important point. 3) Having named object rather than integers is far more intuitive when programming. What do you think? -- .''`. Mark Howard : :' : `. `' http://www.tildemh.com `- mh...@de... | mh...@ti... | mh...@ca... |
From: Jeffrey M. <Jef...@Br...> - 2004-02-20 15:30:00
|
> On Tue, Feb 17, 2004 at 01:58:19PM -0800, Jeffrey S. Morgan wrote: > > Added another GTK review > > That's an awful lot of work to do. Jeff - I'm really > struggling for time > at the moment - my uni work is now quite far behind and is > just getting > worse at the moment, so I've not been able to spend much time on > java-gnome. The situation will not improve before the release > unfortunately. This is a lot to accomplish and I am not sure all of it can be completed prior to the beta. I plan to focus on the following: 1) Over the weekend I hope to focus on the critical miscellaneous items listed in the TODO.gtk file. 2) The tree control and related classes are a critical component of the bindings. Since Mark is busy I plan to spend next week working on these classes. Mark, you could really help by sending an email that would provide an overview of these classes, how they work together, what you were able to complete and what remains. During my review I added that we should change a couple of the classes to Interfaces since they are implemented this way in gtk. I did this for FileChooser and implemented a FileChooserHelper class to actually implement those methods so there was no duplication of code. Does this make sence for the Tree widgets? Also, I am not real happy with the class name DataBlock. What these really represent are column types. I know this would break a lot of code but we should discuss this before our API freeze. Could we change this to something like ColumnType? Also, could these be stored as members of the store so calls to setValue would not need to pass them as a parameter. setValue could then just pass a 0 based column number. Let me know what you think. -Jeff NOTE: THIS IS A CONFIDENTIAL COMMUNICATION. This transmission is intended only for the use of the individuals or entity to which it is addressed. If you are not the intended recipient, or the person responsible for delivering the message to the intended recipient, please return or delete it immediately. Although this e-mail and any attachments are believed to be free of any virus or other defect, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by us for any loss or damage arising in any way from its unauthorized modification or use. |
From: Mark H. <mh...@ca...> - 2004-02-20 13:51:47
|
On Tue, Feb 17, 2004 at 01:58:19PM -0800, Jeffrey S. Morgan wrote: > Added another GTK review That's an awful lot of work to do. Jeff - I'm really struggling for time at the moment - my uni work is now quite far behind and is just getting worse at the moment, so I've not been able to spend much time on java-gnome. The situation will not improve before the release unfortunately. I have one question about your comments from this code review: why do you want treemodel to be an interface that liststore and treestore implements rather than having them simply extend treemodel. You would have to duplicate basically everything from treemodel to the two store classes to make this change. Is it really worth it? -- .''`. Mark Howard : :' : `. `' http://www.tildemh.com `- mh...@de... | mh...@ti... | mh...@ca... |
From: Luca De R. <pie...@li...> - 2004-02-16 22:19:43
|
Il lun, 2004-02-16 alle 23:06, Jeffrey Morgan ha scritto: > Over time I think we need some more comprehensive changes > to our build process. I have been looking at other projects > and have some ideas but I do know that I am not the person > to make these changes. Hopefully we can find a build > expert to help in this area. I hope too, but for the moment, do we need a quick patch for it? -- Luca De Rugeriis <pie...@li...> |
From: Jeffrey M. <Jef...@Br...> - 2004-02-16 22:10:17
|
Over time I think we need some more comprehensive changes to our build process. I have been looking at other projects and have some ideas but I do know that I am not the person to make these changes. Hopefully we can find a build expert to help in this area. -Jeff > Il lun, 2004-02-16 alle 22:47, Mark Howard ha scritto: > > be careful about getting multiple results though: > > > > pathfinderii:~$ find /usr/share/java/ -name libgcj*jar > > /usr/share/java/libgcj.jar > > /usr/share/java/libgcj-3.3.3.jar > > pathfinderii:~$ > Got it, thanks for the tip. > -- > Luca De Rugeriis <pie...@li...> > > > > ------------------------------------------------------- > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > Build and deploy apps & Web services for Linux with > a free DVD software kit from IBM. Click Now! > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers > NOTE: THIS IS A CONFIDENTIAL COMMUNICATION. This transmission is intended only for the use of the individuals or entity to which it is addressed. If you are not the intended recipient, or the person responsible for delivering the message to the intended recipient, please return or delete it immediately. Although this e-mail and any attachments are believed to be free of any virus or other defect, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by us for any loss or damage arising in any way from its unauthorized modification or use. |
From: Luca De R. <pie...@li...> - 2004-02-16 22:05:42
|
Il lun, 2004-02-16 alle 22:47, Mark Howard ha scritto: > be careful about getting multiple results though: > > pathfinderii:~$ find /usr/share/java/ -name libgcj*jar > /usr/share/java/libgcj.jar > /usr/share/java/libgcj-3.3.3.jar > pathfinderii:~$ Got it, thanks for the tip. -- Luca De Rugeriis <pie...@li...> |
From: Mark H. <mh...@ca...> - 2004-02-16 21:51:46
|
be careful about getting multiple results though: pathfinderii:~$ find /usr/share/java/ -name libgcj*jar /usr/share/java/libgcj.jar /usr/share/java/libgcj-3.3.3.jar pathfinderii:~$ On Mon, Feb 16, 2004 at 10:17:47PM +0100, Luca De Rugeriis wrote: > Il lun, 2004-02-16 alle 22:11, Mark Howard ha scritto: > > I think it's terribly inefficient to just use locate like that. Many > > people disable the indexing for locate - it will certainly not work for > > them. could we possibly look in common locations first, e.g. with > > find /usr/share/java/ -name libgcj*jar > Totally agreed, I'm one of them. > Are you agree if in the meanwhile I end up with seeking in > > ${GCJ_HOME}/share > ${GCJ_HOME}/share/java > > (as we did before) > but with > > find -name 'libgcj*jar' ? > > It think it could be a solution for the moment. > > Is there any other common path where libgcj.jar could be found? > > -- > Luca De Rugeriis <pie...@li...> > > > > ------------------------------------------------------- > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > Build and deploy apps & Web services for Linux with > a free DVD software kit from IBM. Click Now! > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers > -- .''`. Mark Howard : :' : `. `' http://www.tildemh.com `- mh...@de... | mh...@ti... | mh...@ca... |
From: Luca De R. <pie...@li...> - 2004-02-16 21:25:15
|
Il lun, 2004-02-16 alle 22:11, Mark Howard ha scritto: > I think it's terribly inefficient to just use locate like that. Many > people disable the indexing for locate - it will certainly not work for > them. could we possibly look in common locations first, e.g. with > find /usr/share/java/ -name libgcj*jar Totally agreed, I'm one of them. Are you agree if in the meanwhile I end up with seeking in ${GCJ_HOME}/share ${GCJ_HOME}/share/java (as we did before) but with find -name 'libgcj*jar' ? It think it could be a solution for the moment. Is there any other common path where libgcj.jar could be found? -- Luca De Rugeriis <pie...@li...> |
From: Mark H. <mh...@ca...> - 2004-02-16 21:15:36
|
I think it's terribly inefficient to just use locate like that. Many people disable the indexing for locate - it will certainly not work for them. could we possibly look in common locations first, e.g. with find /usr/share/java/ -name libgcj*jar On Mon, Feb 16, 2004 at 09:54:23PM +0100, Luca De Rugeriis wrote: > Il sab, 2004-02-14 alle 14:05, Jeffrey Morgan ha scritto: > > We need to make a final sprint for the finish line. > > Our Beta1 release is due on Monday and we need to be > > realistic about what we can accomplish between now and > > Monday. These are the items that I would like to see > > completed for the beta: > > > > 1) Fix ActionGroup bug - I have been working on this but > > haven't found the problem yet. I will continue to work > > here > > > > 2) Problems with the build process - There was a patch > > submitted but the build works as is on my system. When > > I applied the patch it didn't work on my system. > Are you talking about the discovering of libgcj? > The submitted patch doesn't work for me too. > > > We really > > need to get this worked out. We have requested outside help > > but really cannot rely on that at this time. Do one of you > > want to work on this? > If the matter was the discovery of lbgcj, I've found that a simple > > grep -w > > solves the problem for me. > > If you are agree, I will commit a patch for stable and head branches, > but please, if you have a chance, could you test if typing a > > locate libgcj | grep -w jar > > on your Debian and Gentoo boxen returns the relevant line? > > On my Fedora box it returns: > /usr/share/java/libgcj-3.3.2.jar > > If it's ok, we know it is working on 3 different systems, at least > (although it's not bulletproof ;)). > Let me know. > > -- > Luca De Rugeriis <pie...@li...> > > > > ------------------------------------------------------- > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > Build and deploy apps & Web services for Linux with > a free DVD software kit from IBM. Click Now! > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers > -- .''`. Mark Howard : :' : `. `' http://www.tildemh.com `- mh...@de... | mh...@ti... | mh...@ca... |
From: Luca De R. <pie...@li...> - 2004-02-16 21:01:53
|
Il sab, 2004-02-14 alle 14:05, Jeffrey Morgan ha scritto: > We need to make a final sprint for the finish line. > Our Beta1 release is due on Monday and we need to be > realistic about what we can accomplish between now and > Monday. These are the items that I would like to see > completed for the beta: > > 1) Fix ActionGroup bug - I have been working on this but > haven't found the problem yet. I will continue to work > here > > 2) Problems with the build process - There was a patch > submitted but the build works as is on my system. When > I applied the patch it didn't work on my system. Are you talking about the discovering of libgcj? The submitted patch doesn't work for me too. > We really > need to get this worked out. We have requested outside help > but really cannot rely on that at this time. Do one of you > want to work on this? If the matter was the discovery of lbgcj, I've found that a simple grep -w solves the problem for me. If you are agree, I will commit a patch for stable and head branches, but please, if you have a chance, could you test if typing a locate libgcj | grep -w jar on your Debian and Gentoo boxen returns the relevant line? On my Fedora box it returns: /usr/share/java/libgcj-3.3.2.jar If it's ok, we know it is working on 3 different systems, at least (although it's not bulletproof ;)). Let me know. -- Luca De Rugeriis <pie...@li...> |
From: Mark H. <mh...@ca...> - 2004-02-16 17:33:34
|
On Sat, Feb 14, 2004 at 08:46:53AM -0500, Jeffrey Morgan wrote: > It looks like we still have two weeks prior to our > 2.6 Beta1 release. This is good news since there is > still much I would like to see completed. One area Phew. > also adding support for drag-and-drop; I did do some work in the past on this, probably not complete though. > that has been missing in java-gnome. Mark Howard > is busy enhancing the tree control and related classes. I'll hopefully fine a few minutes to work on this either Wednesday or (/and?) Saturday. I'll send out a status report at the weekend. I've finally got the latest gnome on my system - using jhbuild. It was actually fairly painless, once I discovered that installing all the bootstrap packages is essential even when you already have them installed (I think Debian must make some fairly huge changes to some of them). For the new build scripts, they don't work on Debian based systems either unfortunately. Jeff, did you post my request for help email as a sourceforge job posting? If not, perhaps you would consider it? -- .''`. Mark Howard : :' : `. `' http://www.tildemh.com `- mh...@de... | mh...@ti... | mh...@ca... |
From: Mark H. <mh...@ca...> - 2004-02-16 17:27:45
|
On Sat, Feb 14, 2004 at 08:05:39AM -0500, Jeffrey Morgan wrote: > 2) Problems with the build process - There was a patch I don't think this is essential for the api freeze, but certainly high priority. I really don't know enough about it and don't have time at the moment though. > 3) A group of small changes to the gtk libs - listed > below. Who wants to work on these? Unfortunately I'm struggling to get the tree widgets sorted. I'm hoping to have api designed by the api freeze, but doubt that much jni code will be written - perhaps not even for 2.6.0 > 4) Drag and Drop - I have been working on this and have > much of it completed. At the same time I don't want to > release a half baked implementation. If I can complete this > I will include it. I'd say include it if the API is unlikely to change. It's a long time before the next API freeze. -- .''`. Mark Howard : :' : `. `' http://www.tildemh.com `- mh...@de... | mh...@ti... | mh...@ca... |
From: Jeffrey M. <ku...@zo...> - 2004-02-15 01:02:35
|
The translators are not on the hackers list. You could possibly go through the developers mailing list to see who they are or perhaps ask Alberto. As far as the difference in the main page, index.html (the page I get when I go to the site) is different than index.en.html (the page I get when I select the home link. -Jeff On Fri, 2004-02-13 at 17:19, Rafael George wrote: > On Sat, 14 Feb 2004 08:20:42 -0500 > Jeffrey Morgan <ku...@zo...> wrote: > > I already fix, the downloads, roadmap problems, can the translators send me some email, so i can know who they are, another thing Jeff i can't see the bug with the first page and the Home link, its looks fine in here, what is the problem there? and can you re-sendme all the info for the news site, from now on i will make updates every Friday so try to send me the info you want me to update before that.. > > Cheers. > > > Rafael, > > > > We are going to have a beta1 release on Monday. We need > > to start a dialog about what we should say concerning this > > release on the site. Also, we need to complete the updating > > of the site. Here are a few items for the updating: > > > > 1) There still remains the problem with the first page > > not containing the paragraph about the platform bindings > > unless you access it via the "home" link. > > > > 2) The Roadmap page is not completely current. The > > releases at the bottom do not reflect the current roadmap > > and should be removed. > > > > 3) The download page still states that 0.8.1 is our current > > release. 0.8.2 and 0.8.3 have been released. Please update the > > page to reflect this. We should also update this page to state > > that 0.8.3 is our most current stable release and that 2.5.3 is > > our most current development release. > > > > 4) The news page contains the news item about the 0.8 release. > > What happened to the info about the 0.8.1, 0.8.2, and 0.8.3 > > releases? Please add them to the site. > > > > 5) It looks like the translations are out of sync with the > > English edition. Please work with the translators to update each > > translation. > > > > 6) I believe there was an Italian translation submitted. Can > > we get this on the site? > > > > Thanks > > -Jeff > > > > > > > > ------------------------------------------------------- > > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > > Build and deploy apps & Web services for Linux with > > a free DVD software kit from IBM. Click Now! > > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > > _______________________________________________ > > java-gnome-hackers mailing list > > jav...@li... > > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers > > > |
From: Rafael G. <rg...@ya...> - 2004-02-14 22:28:36
|
On Sat, 14 Feb 2004 08:20:42 -0500 Jeffrey Morgan <ku...@zo...> wrote: I already fix, the downloads, roadmap problems, can the translators send me some email, so i can know who they are, another thing Jeff i can't see the bug with the first page and the Home link, its looks fine in here, what is the problem there? and can you re-sendme all the info for the news site, from now on i will make updates every Friday so try to send me the info you want me to update before that.. Cheers. > Rafael, > > We are going to have a beta1 release on Monday. We need > to start a dialog about what we should say concerning this > release on the site. Also, we need to complete the updating > of the site. Here are a few items for the updating: > > 1) There still remains the problem with the first page > not containing the paragraph about the platform bindings > unless you access it via the "home" link. > > 2) The Roadmap page is not completely current. The > releases at the bottom do not reflect the current roadmap > and should be removed. > > 3) The download page still states that 0.8.1 is our current > release. 0.8.2 and 0.8.3 have been released. Please update the > page to reflect this. We should also update this page to state > that 0.8.3 is our most current stable release and that 2.5.3 is > our most current development release. > > 4) The news page contains the news item about the 0.8 release. > What happened to the info about the 0.8.1, 0.8.2, and 0.8.3 > releases? Please add them to the site. > > 5) It looks like the translations are out of sync with the > English edition. Please work with the translators to update each > translation. > > 6) I believe there was an Italian translation submitted. Can > we get this on the site? > > Thanks > -Jeff > > > > ------------------------------------------------------- > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > Build and deploy apps & Web services for Linux with > a free DVD software kit from IBM. Click Now! > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers > -- .-. /'v'\ (/ \) ='==="="===== |_| Rafael George Cauldron Team Source Mage GNU /Linux Java-Gnome Webmaster |
From: Luca De R. <pie...@li...> - 2004-02-14 16:20:25
|
Il sab, 2004-02-14 alle 14:20, Jeffrey Morgan ha scritto: > Rafael, > > We are going to have a beta1 release on Monday. We need > to start a dialog about what we should say concerning this > release on the site. Also, we need to complete the updating > of the site. Here are a few items for the updating: > > 1) There still remains the problem with the first page > not containing the paragraph about the platform bindings > unless you access it via the "home" link. > > 2) The Roadmap page is not completely current. The > releases at the bottom do not reflect the current roadmap > and should be removed. > > 3) The download page still states that 0.8.1 is our current > release. 0.8.2 and 0.8.3 have been released. Please update the > page to reflect this. We should also update this page to state > that 0.8.3 is our most current stable release and that 2.5.3 is > our most current development release. > > 4) The news page contains the news item about the 0.8 release. > What happened to the info about the 0.8.1, 0.8.2, and 0.8.3 > releases? Please add them to the site. > > 5) It looks like the translations are out of sync with the > English edition. Please work with the translators to update each > translation. > > 6) I believe there was an Italian translation submitted. Can > we get this on the site? Yes it was submitted few weeks ago. Also the links to the translated versions make the whole page menu on the left taller: on my screen (768 pixel tall) it isn't entirely visible, so, if you add the link to the Italian version, the menu will become even taller (that's because you can't scroll the left side menu). A smart solution could be redirecting the browser to the system language version. Could it be done? 7) The "last updated" footer on the main page doesn't reflect the last update time, and on the other pages the time field is empty. -- Luca De Rugeriis <pie...@li...> |
From: Jeffrey M. <ku...@zo...> - 2004-02-14 14:04:23
|
It looks like we still have two weeks prior to our 2.6 Beta1 release. This is good news since there is still much I would like to see completed. One area that needs a lot of work is the build process. I am also adding support for drag-and-drop; a feature that has been missing in java-gnome. Mark Howard is busy enhancing the tree control and related classes. Finally there are numerous little updates that need to be made to the current gtk bindings to bring them up-to-date with the gtk library. We will be making a development release 2.5.5 on Monday followed two weeks later with the 2.6 beta (unless the gnome schedule slips again). If you have the latest gnome (2.5.3 or cvs head) on you system we would appreciate any testing help you would be able to provide. A lot of work has gone into this new release. To get an idea (and to keep up-to-date on the development) you can look here: http://cvs.sourceforge.net/viewcvs.py/java-gnome/java-gnome/common/NEWS?view=markup We got a patch from Nicolas Mommaerts (thanks for the help!!) but I didn't apply it yet. The problem is that the 0.8.3 and head compile on my system and several others that I am in contact with. When I applied the patch it didn't work on my system any longer. This only reinforces our need to get some outside help that really understands the GNU build tools. If there is anybody on this list that can help in this area it would be greatly appreciated. -Jeff |
From: Jeffrey M. <ku...@zo...> - 2004-02-14 13:38:10
|
Rafael, We are going to have a beta1 release on Monday. We need to start a dialog about what we should say concerning this release on the site. Also, we need to complete the updating of the site. Here are a few items for the updating: 1) There still remains the problem with the first page not containing the paragraph about the platform bindings unless you access it via the "home" link. 2) The Roadmap page is not completely current. The releases at the bottom do not reflect the current roadmap and should be removed. 3) The download page still states that 0.8.1 is our current release. 0.8.2 and 0.8.3 have been released. Please update the page to reflect this. We should also update this page to state that 0.8.3 is our most current stable release and that 2.5.3 is our most current development release. 4) The news page contains the news item about the 0.8 release. What happened to the info about the 0.8.1, 0.8.2, and 0.8.3 releases? Please add them to the site. 5) It looks like the translations are out of sync with the English edition. Please work with the translators to update each translation. 6) I believe there was an Italian translation submitted. Can we get this on the site? Thanks -Jeff |
From: Jeffrey M. <ku...@zo...> - 2004-02-14 13:23:06
|
We need to make a final sprint for the finish line. Our Beta1 release is due on Monday and we need to be realistic about what we can accomplish between now and Monday. These are the items that I would like to see completed for the beta: 1) Fix ActionGroup bug - I have been working on this but haven't found the problem yet. I will continue to work here 2) Problems with the build process - There was a patch submitted but the build works as is on my system. When I applied the patch it didn't work on my system. We really need to get this worked out. We have requested outside help but really cannot rely on that at this time. Do one of you want to work on this? 3) A group of small changes to the gtk libs - listed below. Who wants to work on these? 4) Drag and Drop - I have been working on this and have much of it completed. At the same time I don't want to release a half baked implementation. If I can complete this I will include it. Let me know what you think? -Jeff On Sun, 2004-02-08 at 17:23, Jeffrey Morgan wrote: > Here is the latest update. I have listed the items I > am working on. > > On Wed, 2004-02-04 at 17:53, Mark Howard wrote: > > [Please keep everyone in the To field - java-gnome is far too unreliable > > at the moment] > > > > I was just checking what the current status is. This is my view, please > > add anything I've missed: > > > > API freeze: Feb 16th, possibly +20 days > > 2.6.0 release: March 22nd, possibly +xx days > > These dates are probably going to change since the gnome > project is missing their dates. > > > re-review tree widgets. I'll do it, but don't know exactly what I'm > > doing so some of it might be wrong. Will hopefully mostly work though > > - a few new events for treeModel and treeview > > - TreeModelFilter (? not sure) > > - CellRenderer property handling work > > > > GtkCellLayout ? - do we need it? > > > > CellEditable - new class, not started > > - editing-done signal > > > > Clipboard - many methods > > Not started - looking for a volunteer. > > > > > Many classes with small number of new methods (see todo.gtk) > > > > Implementation of many tree methods (I've just been designing the api so > > far). grep -i -r todo * > > > > (copied from old list - are these mostly done now?) > > complete/debug *Action* and UIManager classes (2.5.3) > nearly complete - I am working on this > > implement the new FileChooser class (2.5.4) > completed > > update the Menu* classes to reflect the latest gtk (2.5.4) > completed > > update of gnome and gnomeui classes to current (beta1) > not started - looking for a volunteer > > update all remaining gtk classes to current (2.5.4 through beta1) > in progress - I am working on this but feel free to help out > > fix remaining gconf issues (2.5.4) > completed > > update all examples to latest api (release candidate) > > update all documentation to latest api (release candidate) > > New item > add full drag-and-drop support - I will work on this > > -Jeff > > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers > |
From: Jeffrey M. <Jef...@Br...> - 2004-02-13 13:14:22
|
I just sent an email to a member of the gettext project asking if we might get a little assistance on build issues. I'll let you know if I hear back. -Jeff > I found a project that has great support for java and > gcj detection and compilation via the gnu build tools. > gettext 0.11.5 has several m4 scripts that we can use > for our build process. Mark, take a quick look and > let me know what you think. > > -Jeff NOTE: THIS IS A CONFIDENTIAL COMMUNICATION. This transmission is intended only for the use of the individuals or entity to which it is addressed. If you are not the intended recipient, or the person responsible for delivering the message to the intended recipient, please return or delete it immediately. Although this e-mail and any attachments are believed to be free of any virus or other defect, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by us for any loss or damage arising in any way from its unauthorized modification or use. |
From: Jeffrey M. <Jef...@Br...> - 2004-02-13 12:50:46
|
I am still having a problem with the ActionGroup class. I just checked in updated ActionGroup.java and org_gnu_gtk_ActionGroup.c files that have print statements around the problem. If you look in the ActionGroup.c file you will see the last method. From what I can see all parameters are correct but when I call gtk_action_group_add_radio_actions the application crashes. I have tried to find the problem but I am asking if you might take a look and see if I am missing something. You can test this by running the doc-core/examples/uimanager/UIManagerExample example. -Jeff NOTE: THIS IS A CONFIDENTIAL COMMUNICATION. This transmission is intended only for the use of the individuals or entity to which it is addressed. If you are not the intended recipient, or the person responsible for delivering the message to the intended recipient, please return or delete it immediately. Although this e-mail and any attachments are believed to be free of any virus or other defect, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by us for any loss or damage arising in any way from its unauthorized modification or use. |
From: Jeffrey M. <ku...@zo...> - 2004-02-13 02:44:31
|
I found a project that has great support for java and gcj detection and compilation via the gnu build tools. gettext 0.11.5 has several m4 scripts that we can use for our build process. Mark, take a quick look and let me know what you think. -Jeff |
From: Luca De R. <pie...@li...> - 2004-02-12 02:24:32
|
Il mar, 2004-02-10 alle 21:44, Luca De Rugeriis ha scritto: > Il mar, 2004-02-10 alle 15:35, Jeffrey Morgan ha scritto: > > Luca, > > > > What is the status on your system? If you are set there > > are several items you can begin working on. They are: > Just finished transferring 15 GB of data... > I have java, eclipse, & co. Ehr...I've spoken too early ;( I was finishing compiling gnome when I've found that my java installer doesn't work. So I'm downloading it again right now. (It takes a couple of hours). -- Luca De Rugeriis <pie...@li...> |
From: Luca De R. <pie...@li...> - 2004-02-11 04:48:35
|
Il mar, 2004-02-10 alle 17:38, Jeffrey Morgan ha scritto: > The real secret for pango and ORBit is to have the > latest version of fontconfig and freetype2 compiled > in the destination directory prior to starting the > script. You should also make a destination.bak directory. > For librsvg I needed to manually compile this providing > my own CFLAGS. > > -Jeff > > > I don't have time now, so I'm just commenting gtk-doc out. I > > think it's > > actually a bigger problem with Debian xml in general. Can you > > give info > > on how to fix the other problems please? > > > > I'm stuck on pango at the moment: > > > > /bin/sh ../libtool --mode=link gcc -O2 -w -pipe > > -fomit-frame-pointer -march=athlon -mcpu=athlon -Wall -o > > pango-querymodules querymodules.o libpangox-1.0.la > > libpangoxft-1.0.la libpangoft2-1.0.la libpango-1.0.la > > -Wl,--export-dynamic -L/home/howama/cvsgnome-built/lib > > -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 > > gcc -O2 -w -pipe -fomit-frame-pointer -march=athlon > > -mcpu=athlon -Wall -o .libs/pango-querymodules querymodules.o > > -Wl,--export-dynamic ./.libs/libpangox-1.0.so > > -L/home/howama/cvsgnome-built/lib -L/usr/X11R6/lib > > ./.libs/libpangoxft-1.0.so > > /home/howama/tmp/gnome/pango-1.3.2/pango/.libs/libpangoft2-1.0 > > .so /usr/lib/libXft.so /usr/lib/libXrender.so -lX11 > > ./.libs/libpangoft2-1.0.so > > /home/howama/tmp/gnome/pango-1.3.2/pango/.libs/libpango-1.0.so > > -lfontconfig /usr/lib/libfreetype.so -lz > > /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so > > /usr/lib/libglib-2.0.so ./.libs/libpango-1.0.so > > /home/howama/cvsgnome-built/lib/libgobject-2.0.so > > /home/howama/cvsgnome-built/lib/libgmodule-2.0.so -ldl > > /home/howama/cvsgnome-built/lib/libglib-2.0.so -Wl,--rpath > > -Wl,/home/howama/cvsgnome-built/lib > > /home/howama/tmp/gnome/pango-1.3.2/pango/.libs/libpango-1.0.so > > : undefined reference to `g_unichar_get_mirror_char' I was experiencing the same problem, even if I've the latest fontconfig and freetype installed, (thanks for the tip Jeff ;)). Then I've installed glib...and pango compiled fine. -- Luca De Rugeriis <pie...@li...> |
From: Luca De R. <pie...@li...> - 2004-02-10 20:44:10
|
Il mar, 2004-02-10 alle 16:05, Mark Howard ha scritto: > does anyone have thoughts about this? can I send it? It's fine for me. -- Luca De Rugeriis <pie...@li...> |
From: Luca De R. <pie...@li...> - 2004-02-10 20:42:57
|
Il mar, 2004-02-10 alle 15:35, Jeffrey Morgan ha scritto: > Luca, > > What is the status on your system? If you are set there > are several items you can begin working on. They are: Just finished transferring 15 GB of data... I have java, eclipse, & co. I've just read the issues you've experienced with cvs-gnome. The latest version of gnome I have is 2.5.1. I can't download cvsgnome because of my lack of bandwidth (this will change in a couple of weeks). So, in order to be able to work on the latest j-g I still have to download this minimal set of packages (gtk, atk...), and install them. I hope to complete this task tonight. > 1) Adding events to gnome.IconTextItem - I just receintly > added events to gnome.IconEntry so you can look at those > changes. It would be a good chance for you to learn how > events are handled in the java layer. > > 2) InputDialog - again, just needs the events added to the > java layer. > > 3) Button - needs a couple of simple methods. I can help you > write the JNI layer. > > 4) Paned - needs a couple of simple methods. I can help you > write the JNI layer. > > Let me know if you are able to perform these tasks. Yes, as said above, I hope to have the latest gtk installed tonight. I think tomorrow I'll begin to ask for help on these classes ;) -- Luca De Rugeriis <pie...@li...> |