Re: [Vala] Blitzen: A Vala Application Server

2010-11-15 Thread Abderrahim KITOUNI
Hello, 2010/11/15 Samuel CUELLA : >>I have noticed that widgets in Stk are using different reference counting >>rules >>than Gtk. So you have to explicitly define the variables as class fields, else >>all widgets gets destroyed. > Vala compiler always generate a g_object_unref() call just after w

Re: [Vala] Blitzen: A Vala Application Server

2010-11-15 Thread Samuel CUELLA
Hi, >I have noticed that widgets in Stk are using different reference counting rules >than Gtk. So you have to explicitly define the variables as class fields, else >all widgets gets destroyed. Vala compiler always generate a g_object_unref() call just after widget creation. That's why objects are

Re: [Vala] Blitzen: A Vala Application Server

2010-11-15 Thread Samuel CUELLA
Hi, >My idea is to write a widget that extends GtkWebkit widget >and uses embeds a blitzen >query server only accessible for this webkit instance. >I dont want to use it via HTTP, >just want to hook the query signals of webkit to the >query handler methods of >blitzen. Blitzen works with GIOCha

Re: [Vala] Blitzen: A Vala Application Server

2010-11-14 Thread pancake
Hi! I have written a "hello world" application for blitzen using gtkon. you may find the source here: http://code.google.com/p/gtkaml/source/browse/trunk/examples/blitzen/ I have noticed that widgets in Stk are using different reference counting rules than Gtk. So you have to explicitly define

Re: [Vala] Blitzen: A Vala Application Server

2010-11-14 Thread Jan Hudec
On Sun, Nov 14, 2010 at 15:30:29 +0100, pancake wrote: > On Sun, 14 Nov 2010 11:22:37 + (UTC) > Samuel CUELLA wrote: > > For the moment, the repository is not accessible from the internet. I'll > > import > > it into the sourceforge subversion service when I have time. [...] > > Why non use

Re: [Vala] Blitzen: A Vala Application Server

2010-11-14 Thread Vlad Grecescu
On Sun, Nov 14, 2010 at 4:30 PM, pancake wrote: >> > Vlad and me are planing to add support for Stk in GtkON I can confirm that we are planning to test gtkaml with every widget composition based library out there. We started with Gtk, added some initial Clutter support, and there are even more o

Re: [Vala] Blitzen: A Vala Application Server

2010-11-14 Thread Nicolas Joseph
Hi, Le 14/11/2010 15:30, pancake a écrit : > On Sun, 14 Nov 2010 11:22:37 + (UTC) > Samuel CUELLA wrote: > >> Hi, >> >>> Where's the source repository? I can't find any svn/git/.. >> For the moment, the repository is not accessible from the internet. I'll >> import >> it into the sourceforg

Re: [Vala] Blitzen: A Vala Application Server

2010-11-14 Thread pancake
On Sun, 14 Nov 2010 11:31:37 + (UTC) Samuel CUELLA wrote: > Hi, > > > > > btw.. another question. it is possible to embed blitzen as a gtk widget? > > > If you mean create a GtkWidget that will startup the Blitzen server at > creation, > it's possible. But Blitzen doesn't have code to ren

Re: [Vala] Blitzen: A Vala Application Server

2010-11-14 Thread pancake
On Sun, 14 Nov 2010 11:22:37 + (UTC) Samuel CUELLA wrote: > Hi, > > > Where's the source repository? I can't find any svn/git/.. > For the moment, the repository is not accessible from the internet. I'll > import > it into the sourceforge subversion service when I have time. That means I'll

Re: [Vala] Blitzen: A Vala Application Server

2010-11-14 Thread Samuel CUELLA
Hi, > > btw.. another question. it is possible to embed blitzen as a gtk widget? > If you mean create a GtkWidget that will startup the Blitzen server at creation, it's possible. But Blitzen doesn't have code to render anything, therefore this would be a GObject rather than a GtkWidget (GtkWidge

Re: [Vala] Blitzen: A Vala Application Server

2010-11-14 Thread Samuel CUELLA
Hi, > Where's the source repository? I can't find any svn/git/.. For the moment, the repository is not accessible from the internet. I'll import it into the sourceforge subversion service when I have time. That means I'll do it, but I can't tell you when. If you want to work on the source code or

Re: [Vala] Blitzen: A Vala Application Server

2010-11-13 Thread Samuel CUELLA
Hi, Just saw your post right now. I'll post a more complete answer tomorrow. For now, I just wanted to say that your example code works fine on my machine. I didn't tried your Makefile, I used the example Makefile that you can grab at: http://blitzen.sourceforge.net/tutorial/part1/Makefile Using

Re: [Vala] Blitzen: A Vala Application Server

2010-11-12 Thread pancake
btw.. another question. it is possible to embed blitzen as a gtk widget? my idea is to wake up a blitzen for a specific webkit widget in a gtk app, so you can write a full app using stk and render it in webkit. Let me know On Fri, 12 Nov 2010 19:07:56 +0100 pancake wrote: > Wow! > > Impress

Re: [Vala] Blitzen: A Vala Application Server

2010-11-12 Thread pancake
Wow! Impressive advances on this side :D Having a javascript compiler (maja) and an application server (blitzen) we get a good starting point to develop web stuff and html based desktop applications. Where's the source repository? I can't find any svn/git/.. I tried to write a simple webapp but

[Vala] Blitzen: A Vala Application Server

2010-11-11 Thread Samuel CUELLA
Hi Everyone, I'm currently writing an application server in C/GObject with a Vala binding. It's component-oriented and loosely modeled on GTK+ It's currently still in alpha version (the last version is 0.0.8) but already works and can run basic websites. It already have the complete standar