Re: [Vala] getting the valadoc.org documentation on a local server

2013-12-14 Thread Tal Hadad
Wget can clone an entire HTTP website(even convert links and images to off-line addresses). Read: http://www.linuxjournal.com/content/downloading-entire-web-site-wget The alternative is to build all packages with vapi-gen, doesn't really recommended for you :-) Tal > Date: Sat, 14 Dec 2013 10:

[Vala] getting the valadoc.org documentation on a local server

2013-12-14 Thread jezra
Hello, Quite often, I travel to an area with no internet and do a bit of code hacking and I would really like to be able to have the valadoc.org documentation available on my development machine. Is there an easy way to get the documentation? Jezra Web: http://www.jezra.net Status: http://status.

Re: [Vala] delegate variable "feature" or vala bug

2013-12-14 Thread Evan Nemerson
On Sat, 2013-12-14 at 15:25 +0800, Nor Jaidi Tuah wrote: > Dear all, > > I had a memory leak in my app that I traced to > a delegate variable. Something like this: > >class X { > delegate void Delegate (); > Delegate d; > > public void xx () { > d = () => { do_stuf