Thread: [java-gnome-hackers] Source code moved to Git
Brought to you by:
afcowie
From: Andrew C. <an...@op...> - 2013-02-22 07:36:46
Attachments:
signature.asc
|
Been away for a while, and the entire time I've been gone I've been using Git. So, I've finally buckled and ported my branch of java-gnome to Git and put it up on GitHub. https://github.com/afcowie/java-gnome Along the way I've attempted to catch up a few patches, notably the libunique breakage. That alone is long overdue for a release, so 4.1.3 is imminent; if anyone has anything else they'd like in shout. AfC Sydney P.S. There's a test crash right now, something to do with an image? |
From: Niranjan R. <nh...@gm...> - 2013-02-22 18:41:18
|
Not sure if this is already implemented and I am not aware of the syntax. I am looking for a way to specify in defs file that is null value is legal value for a given parameter. I have generator for webkit that generates the defs file from "gir" file. Some webkit functions do accept null values legitimately, but generated code throws exception about value can not be null. So far my (BAD) solution is to change the generated file and remove the offending lines. On 02/21/2013 11:36 PM, Andrew Cowie wrote: > Been away for a while, and the entire time I've been gone I've been > using Git. So, I've finally buckled and ported my branch of java-gnome > to Git and put it up on GitHub. > > https://github.com/afcowie/java-gnome > > Along the way I've attempted to catch up a few patches, notably the > libunique breakage. That alone is long overdue for a release, so 4.1.3 > is imminent; if anyone has anything else they'd like in shout. > > AfC > Sydney > > P.S. There's a test crash right now, something to do with an image? > > > ------------------------------------------------------------------------------ > Everyone hates slow websites. So do we. > Make your web apps faster with AppDynamics > Download AppDynamics Lite for free today: > http://p.sf.net/sfu/appdyn_d2d_feb > > > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers |
From: Andrew C. <an...@op...> - 2013-02-23 00:57:23
Attachments:
signature.asc
|
On Fri, 2013-02-22 at 10:40 -0800, Niranjan Rao wrote: > Not sure if this is already implemented and I am not aware of the > syntax. Hi Niranjan. Please start a new thread for new topics, eh? > I am looking for a way to specify in defs file that is null value is > legal value for a given parameter. Add (null-ok) to the parameter line. From GtkButton (define-method set_image (of-object "GtkButton") (c-name "gtk_button_set_image") (return-type "none") (parameters '("GtkWidget*" "image" (null-ok)) ) ) AfC Sydney |
From: Niranjan R. <nh...@gm...> - 2013-02-23 02:25:41
|
But this was my reply to your query if anyone else like to have anything in :) I wanted to this feature in if possible in the next release. Thanks for the information. I'll modify my generator accordingly. Regards, Niranjan On 02/22/2013 04:57 PM, Andrew Cowie wrote: > On Fri, 2013-02-22 at 10:40 -0800, Niranjan Rao wrote: >> Not sure if this is already implemented and I am not aware of the >> syntax. > Hi Niranjan. Please start a new thread for new topics, eh? > >> I am looking for a way to specify in defs file that is null value is >> legal value for a given parameter. > Add (null-ok) to the parameter line. From GtkButton > > (define-method set_image > (of-object "GtkButton") > (c-name "gtk_button_set_image") > (return-type "none") > (parameters > '("GtkWidget*" "image" (null-ok)) > ) > ) > > AfC > Sydney > > > > > ------------------------------------------------------------------------------ > Everyone hates slow websites. So do we. > Make your web apps faster with AppDynamics > Download AppDynamics Lite for free today: > http://p.sf.net/sfu/appdyn_d2d_feb > > > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers |
From: Andrew C. <an...@op...> - 2013-02-23 12:00:39
Attachments:
signature.asc
|
On Fri, 2013-02-22 at 18:36 +1100, Andrew Cowie wrote: > P.S. There's a test crash right now, something to do with an image? Fixed :) AfC Sydney |
From: Andrew C. <an...@op...> - 2013-02-23 12:04:17
Attachments:
signature.asc
|
On Fri, 2013-02-22 at 18:25 -0800, Niranjan Rao wrote: > But this was my reply to your query if anyone else like to have > anything in :) That's ok. My query was more "if you have a branch you've written that you'd like to be merged..." kind of question. Glad to hear (null-ok) was what you needed. I didn't invent the .defs format, by the way; it is what it is. I was hoping we'd be adding a GIR based data source by now, but the person who was going to do it as a summer of code project pulled out. It sounds like you're working on something along those lines; perhaps you'll be the one to take this on in the future. AfC Sydney |
From: Niranjan R. <nh...@gm...> - 2013-03-01 00:13:20
|
Sorry for the late reply, but here is the tool I wrote. It's not perfect, but will get you started. At least I am able to use webkit libraries reasonably well with little manual tinkering. This null value was one of the problems I was facing. https://github.com/nhrdl/GirToGnomeJava Regards, Niranjan On 02/23/2013 04:04 AM, Andrew Cowie wrote: > On Fri, 2013-02-22 at 18:25 -0800, Niranjan Rao wrote: >> But this was my reply to your query if anyone else like to have >> anything in :) > That's ok. My query was more "if you have a branch you've written that > you'd like to be merged..." kind of question. > > Glad to hear (null-ok) was what you needed. > > I didn't invent the .defs format, by the way; it is what it is. I was > hoping we'd be adding a GIR based data source by now, but the person who > was going to do it as a summer of code project pulled out. It sounds > like you're working on something along those lines; perhaps you'll be > the one to take this on in the future. > > AfC > Sydney > > > > > ------------------------------------------------------------------------------ > Everyone hates slow websites. So do we. > Make your web apps faster with AppDynamics > Download AppDynamics Lite for free today: > http://p.sf.net/sfu/appdyn_d2d_feb > > > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers |
From: Guillaume M. <res...@gm...> - 2013-02-23 18:07:54
|
Hi, 2013/2/23 Andrew Cowie <an...@op...> > I didn't invent the .defs format, by the way; it is what it is. I was > hoping we'd be adding a GIR based data source by now, but the person who > was going to do it as a summer of code project pulled out. It sounds > like you're working on something along those lines; perhaps you'll be > the one to take this on in the future. > I was going to re-submit my proposal (the only one) for this year GSoC (which will be the last one for me). But if something is done already that cool, if I can help in anyway don't hesitate to tell me. I an very interested in those GIR things. -- Guillaume Mazoyer - http://respawner.fr/ |
From: Serkan K. <se...@ge...> - 2013-02-24 11:28:23
|
Hi, If you want to pick up this year. I'm more than happy to mentor. (This means I need to revamp myself a bit as well) On 02/23/2013 07:07 PM, Guillaume Mazoyer wrote: > Hi, > > 2013/2/23 Andrew Cowie <an...@op... > <mailto:an...@op...>> > > I didn't invent the .defs format, by the way; it is what it is. I > was hoping we'd be adding a GIR based data source by now, but the > person who was going to do it as a summer of code project pulled > out. It sounds like you're working on something along those lines; > perhaps you'll be the one to take this on in the future. > > I was going to re-submit my proposal (the only one) for this year > GSoC (which will be the last one for me). But if something is done > already that cool, if I can help in anyway don't hesitate to tell > me. I an very interested in those GIR things. > > > -- Guillaume Mazoyer - http://respawner.fr/ > > > ------------------------------------------------------------------------------ > > Everyone hates slow websites. So do we. > Make your web apps faster with AppDynamics Download AppDynamics > Lite for free today: http://p.sf.net/sfu/appdyn_d2d_feb > > > > _______________________________________________ java-gnome-hackers > mailing list jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers > |
From: Sarah L. <xa...@gm...> - 2013-03-14 09:58:59
|
So out of curiosity, since I have a few things to commit. Should i post the patch through bazaar or git now? Either way is fine with me. There is a fix in a def file and some exposed methods that I need. Kind regards, Sarah On Sat, Feb 23, 2013 at 1:00 PM, Andrew Cowie < an...@op...> wrote: > On Fri, 2013-02-22 at 18:36 +1100, Andrew Cowie wrote: > > > P.S. There's a test crash right now, something to do with an image? > > Fixed :) > > AfC > Sydney > > > > ------------------------------------------------------------------------------ > Everyone hates slow websites. So do we. > Make your web apps faster with AppDynamics > Download AppDynamics Lite for free today: > http://p.sf.net/sfu/appdyn_d2d_feb > _______________________________________________ > java-gnome-hackers mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-hackers > > |
From: Andrew C. <an...@op...> - 2013-03-14 10:25:37
Attachments:
signature.asc
|
On Thu, 2013-03-14 at 10:58 +0100, Sarah Leibbrand wrote: > So out of curiosity, since I have a few things to commit. Should i > post the patch through bazaar or git now? Either way is fine with me. > There is a fix in a def file and some exposed methods that I need. A a pull request via GitHub would be best, if you don't mind. AfC Sydney |