Fwd: wayland.freedesktop.org website problems

2015-05-08 Thread scsijon
It was still playing up this morning so I started to work it through. After a little runthrough I have found the problem relates to http://wayland.freedesktop.org vs https://wayland.freedesktop.org . The http://wayland.freedesktop.org shows the correct page and stays there, https://wayland.free

Re: [weston, v2, 17/17] configure: add an option to allow building only the libraries

2015-05-08 Thread Bryce Harrington
On Thu, Dec 04, 2014 at 11:01:23PM +0200, Giulio Camuffo wrote: > the --enable/disable-weston-binaries emable or disable the creation > of the 'weston', 'weston-launch' and all the binaries that are > installed in $prefix/lib/libexec. This allows, together with > --enable-clients, to only build the

Re: [weston, v2, 20/20] compositor-drm: use weston_view_to_output_matrix() to test plane viability

2015-05-08 Thread Bryce Harrington
On Thu, Oct 16, 2014 at 10:55:38AM -0500, Derek Foreman wrote: > Instead of comparing buffer transforms to output transforms we now > use weston_view_to_output_matrix() and weston_matrix_to_transform() to > test if we can use a drm plane. > > We no longer test scaling, since the drm plane api supp

Re: [PATCH weston v3 0/2] Some old text fixes

2015-05-08 Thread Bryce Harrington
On Fri, May 08, 2015 at 05:08:39PM -0500, Derek Foreman wrote: > These ones have been around since January, so I'm rebasing and resending. > No changes made other than rebasing on master. > > Fixes a segfault when two seats interact with the same text input > Cosmetic changes to some names. Sound

[PATCH weston v3 2/2] text-input: Replace model with input

2015-05-08 Thread Derek Foreman
commit 78d00e45cc renamed text_model to text_input This cleans up remaining uses of the word "model" Reviewed-by: Jan Arne Petersen Reviewed-by: Bryce Harrington Signed-off-by: Derek Foreman --- protocol/input-method.xml | 18 ++-- src/text-backend.c| 70 ++

[PATCH weston v3 1/2] text: Fix text-input for multi-seat

2015-05-08 Thread Derek Foreman
Multi-seat configurations currently break the text-backend, crashing weston. This is an attempt to clean up any crashes and have somewhat sensible input panel behavior with multi-seat. Store a link to the manager that created a text_input, use this to ensure that only a single panel gets popped u

[PATCH weston v3 0/2] Some old text fixes

2015-05-08 Thread Derek Foreman
These ones have been around since January, so I'm rebasing and resending. No changes made other than rebasing on master. Fixes a segfault when two seats interact with the same text input Cosmetic changes to some names. Derek Foreman (2): text: Fix text-input for multi-seat text-input: Replace

Re: [PATCH weston] xwm: make X windows of type 'utility' inactive

2015-05-08 Thread Bryce Harrington
On Wed, Apr 29, 2015 at 07:00:48PM +0300, Giulio Camuffo wrote: > Skype's popup notifications use this type. Pushed: 79954ec..84787ea master -> master > --- > xwayland/window-manager.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/xwayland/window-manager.c b/xw

Re: [PATCH wayland] scanner: simplify the getopt logic

2015-05-08 Thread Bryce Harrington
On Thu, Apr 30, 2015 at 03:28:35PM +0300, Pekka Paalanen wrote: > From: Pekka Paalanen > > Use the same retvals for both short and long options. > > Whitespace fixes. > > Signed-off-by: Pekka Paalanen Reviewed-by: Bryce Harrington Pushed: 8877a34..d08c079 master -> master > --- > src/

Re: [PATCH weston] desktop-shell: set the current size in the first 'resizing' configure event

2015-05-08 Thread Bryce Harrington
On Sat, May 02, 2015 at 09:44:04PM +0900, Ryo Munakata wrote: > Weston has sent the first 'resizing' configure event with width=height=0. > But resizing to that size doesn't make sense. > Instead, we now send the current width and height of the surface at the > beginning > of resizing. > > Signed

Re: [PATCH weston v2] compositor: send the output_created signal after inserting it in the list

2015-05-08 Thread Bryce Harrington
On Wed, May 06, 2015 at 09:41:57PM +0300, Giulio Camuffo wrote: > The compositor's output_created signal used to be sent in weston_output_init() > which the backend call before putting the output in the output_list. > This caused problems when creating a new view in a listener to that signal, > bec

Re: [PATCH v2] weston-launch: Fixed TTY switching

2015-05-08 Thread Bill Spitzak
On 05/07/2015 06:15 PM, Bryce Harrington wrote: Extra call to strcpy here: wl->tty = open(tty, O_RDWR | O_NOCTTY); + strcpy(wl->tty_path, tty); + if (snprintf(wl->tty_path, PATH_MAX, "%s", tty) >= PATH_MAX) +