Re: [PATCH 0/4] documentation move from .tex to docbook

2012-03-28 Thread Kristian Hoegsberg
On Thu, Mar 29, 2012 at 10:50:09AM +1000, Peter Hutterer wrote: > > This moves the documentation into the docbook sources, removing the need for > the .tex file. Because the current docbook also includes some parts copied > from the website, the first three chapters are somewhat redundant. Nice,

Re: [PATCH 2/2] tty: Improve error handling in tty_create()

2012-03-28 Thread Kristian Høgsberg
On Wed, Mar 28, 2012 at 10:36:10PM +0200, Jonas Ådahl wrote: > Signed-off-by: Jonas Ådahl Thanks, looks good. Kristian > --- > src/tty.c | 28 +--- > 1 files changed, 25 insertions(+), 3 deletions(-) > > diff --git a/src/tty.c b/src/tty.c > index c5e9e8a..85c16d8 10064

Re: [PATCH 1/2] Properly dispose event sources and event loops

2012-03-28 Thread Kristian Hoegsberg
On Wed, Mar 28, 2012 at 10:36:09PM +0200, Jonas Ådahl wrote: > Signed-off-by: Jonas Ådahl Very nice clean up, thanks. I moved the inline variable declaration in evdev_add_devices() (const char *sysname) up alongside const char *path; Other than that, applied as is Kristian > --- > src/compos

[PATCH 4/4] doc: consistently indent the xml files by 2 spaces

2012-03-28 Thread Peter Hutterer
2 spaces is enough for xml, otherwise we end up with too little room for the actual text. Signed-off-by: Peter Hutterer --- doc/Wayland/en_US/Architecture.xml | 616 ++-- doc/Wayland/en_US/Author_Group.xml | 16 +- doc/Wayland/en_US/Book_Info.xml| 54 ++--

[PATCH 3/4] doc: rename Procotol to ProtocolSpec and WaylandProtocol to Protocol

2012-03-28 Thread Peter Hutterer
The former is the actual specification, the latter notes about the protocol. Signed-off-by: Peter Hutterer --- doc/Wayland/Makefile.am | 12 +- doc/Wayland/en_US/Protocol.xml| 684 + doc/Wayland/en_US/Wayland.xml |4 +- doc/Way

[PATCH 2/4] doc: remove unused example files

2012-03-28 Thread Peter Hutterer
These files were left in as examples, we have real-world examples now. Signed-off-by: Peter Hutterer --- doc/Wayland/Makefile.am|3 --- doc/Wayland/en_US/Chapter.xml | 32 doc/Wayland/en_US/Preface.xml | 12

[PATCH 0/4] documentation move from .tex to docbook

2012-03-28 Thread Peter Hutterer
This moves the documentation into the docbook sources, removing the need for the .tex file. Because the current docbook also includes some parts copied from the website, the first three chapters are somewhat redundant. Cheers, Peter ___ wayland-devel

[PATCH 2/2] tty: Improve error handling in tty_create()

2012-03-28 Thread Jonas Ådahl
Signed-off-by: Jonas Ådahl --- src/tty.c | 28 +--- 1 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/tty.c b/src/tty.c index c5e9e8a..85c16d8 100644 --- a/src/tty.c +++ b/src/tty.c @@ -152,12 +152,13 @@ tty_create(struct weston_compositor *compositor,

[PATCH 1/2] Properly dispose event sources and event loops

2012-03-28 Thread Jonas Ådahl
Signed-off-by: Jonas Ådahl --- src/compositor-drm.c | 10 +++--- src/compositor.c |4 src/evdev.c | 22 +++--- src/tty.c|3 +++ 4 files changed, 33 insertions(+), 6 deletions(-) diff --git a/src/compositor-drm.c b/src/compositor-drm.c

Re: Why the GTK+ wayland backend can't be enabled in linux distros, at all

2012-03-28 Thread Neil Roberts
On Sun, 18 Mar 2012 17:07:11 -0400, dar...@chaosreigns.com wrote: > A) Get cairo-gl to only load libGL when an application requests it: >https://bugs.freedesktop.org/show_bug.cgi?id=47480 I've hacked up a patch¹ to implement this because I think it's a good idea regardless of the problem with

Re: [PATCH 2/2] Terminate grabs when the client that initiated them exits

2012-03-28 Thread Kristian Høgsberg
Sorry, Ander, I dropped this one. What I wanted to say was that I'd like to handle it a little different. Instead of dropping the grab, I'd like the server to maintain the grab but just not send out events. When the button is released, we drop the grab and enter whatever surface is below the poi

[PATCH 1/2] client: tablet-shell: fallback in the lack of lockscreen icon

2012-03-28 Thread Tiago Vignatti
lockscreen, homescreen and shell launchers are falling back okay already and only lockscreen icon was missing some way to keep the shell client running in the absence of images. This patch fix it. Signed-off-by: Tiago Vignatti --- clients/tablet-shell.c | 16 +++- 1 files changed,

[PATCH 2/2] window: make window_create_surface static

2012-03-28 Thread Tiago Vignatti
Signed-off-by: Tiago Vignatti --- clients/window.c |2 +- clients/window.h |3 --- 2 files changed, 1 insertions(+), 4 deletions(-) diff --git a/clients/window.c b/clients/window.c index 75e3b84..ef76cf3 100644 --- a/clients/window.c +++ b/clients/window.c @@ -825,7 +825,7 @@ window_get_

Re: [PATCH 0/8] surface_attach() vfuncs

2012-03-28 Thread Ander Conselvan de Oliveira
On 03/27/2012 08:39 PM, Pekka Paalanen wrote: On Tue, 27 Mar 2012 17:36:34 +0300 Ander Conselvan de Oliveira wrote: wayland changes: Ander Conselvan de Oliveira (1): data-device: notify the compositor about new drag icons weston changes: Ander Conselvan de Oliveira (7): compositor: add

[PATCH rebased] tablet-shell: come back to life

2012-03-28 Thread Tiago Vignatti
A couple of fixes were made: Weston tablet-shell needed to use weston_layer, so the compositor could rebuild the surface list correctly when repainting; homescreen and locking are using the widget + window abstration of toytoolkit; and widget_set_redraw_handler are being set for widgets redraw. Al