search for: morozhnikov

Displaying 6 results from an estimated 6 matches for "morozhnikov".

2005 Apr 27
6
does anyone have success with wxruby with wxwidgets 2.6?
Hello, All. I`m trying to compile wxruby with wxwidgets 2.6 under windows with latest mingw, but have lot of troubles. wxwidgets and ruby 1.8.2 compiles just fine, examples work pretty well. To make wxruby compile (non-swig, from cvs) i was made some minor changes like explicit cast ("IN2NUM(...)" to "INT2NUM((long) ...)"), removed some constant definitions from const.cpp
2005 May 03
4
Wx::HtmlWindow.on_link_clicked
Hello, wxruby-users. This is an addition which implement wrapper for overloading wxHtmlWindow::OnLinkClicked method. Unfortunately, it was impossible to make it correctly without ugly hack to wxpp.rb, but i`m hope it does not broke it. Please look at attachment for a patch for htmlwindow.t and wxpp.rb and additional file htmllinkinfo.t (need to be added to $objs array in extconf.rb). Sample
2005 May 02
3
where is destructors?
Hello, wxruby-users. I`m noticed huge GDI resources leakage when working with my programs (on windows). Fortunately, i simple fix this by calling ''delete'' on wxBitmap object (patch bellow). But i`m wondering -- why there are no calls to destructors of wrapped wxwidgets objects in wxruby? Is there some problems? This is a patch:
2012 May 18
0
4. Re: domU backup strategy (Simon Hobson)
...bell) 9. Alpine Linux Xen Dom0 LiveCD (Roger Pau Monne) 10. Re: Alpine Linux Xen Dom0 LiveCD (Mark Schneider) ---------------------------------------------------------------------- Message: 1 Date: Thu, 17 May 2012 17:52:07 +0100 From: Ian Campbell <Ian.Campbell@citrix.com> To: Dmitry Morozhnikov <dmiceman@mail.ru> Cc: "xen-users@lists.xen.org" <xen-users@lists.xen.org>, xen-devel <xen-devel@lists.xen.org> Subject: Re: [Xen-users] libxl vs pygrub in 4.1.2 on rebooting domU Message-ID: <1337273527.7781.109.camel@zakaz.uk.xensource.com> Content-Type: text/pl...
2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...r/run/xen/bootloader.*/ to the user. This is problematic because it means that the user cannot re-use the struct as is. This does not effect xl in Xen 4.2+ since it always reparses the guest config and reinitialises the build info, however it did cause issues with reboot in 4.1 (reported by Dmitry Morozhnikov) and may cause issues for other users of libxl. Instead make the libxl bootloader infrastructure provide output to its caller which is slurped into the internal libxl__domain_build_state datastructure. If no bootloader is configured then the bootloader instead propagates the user supplied b_info c...
2005 May 02
0
Wx::StringInputBuffer/Wx::StringOutputBuffer
Hello, wxruby-users. This is two files which wrap wxStringInputStream and wxStringOutputStream for ruby. I need this to implement in-memory image io. ''stringio.rbw'' -- small sample for it. Short usage: stream = Wx::StringInputStream.new image_data image = Wx::Image.new stream stream = Wx::StringOutputStream.new image.save_file stream, ''image/jpeg'' image_data