Re: server side callback

2013-03-12 Thread Giulio Camuffo
2013/3/12 Jason Ekstrand ja...@jlekstrand.net: Guilio, The big problem here is that, unlike the server, events client-side are handled in multiple event loops. Server-side, everything is handled in a single event loop and events (at least on a per-client basis) are handled in order (I think

Re: server side callback

2013-03-12 Thread Pekka Paalanen
On Tue, 12 Mar 2013 11:22:00 +0100 Giulio Camuffo giuliocamu...@gmail.com wrote: 2013/3/12 Jason Ekstrand ja...@jlekstrand.net: I'd love to offer some thoughts on the more general drag-and-drop problem if you want to give a more detailed description. Specifically, I read some of the

Re: server side callback

2013-03-12 Thread Giulio Camuffo
2013/3/12 Pekka Paalanen ppaala...@gmail.com: On Tue, 12 Mar 2013 11:22:00 +0100 Giulio Camuffo giuliocamu...@gmail.com wrote: 2013/3/12 Jason Ekstrand ja...@jlekstrand.net: I'd love to offer some thoughts on the more general drag-and-drop problem if you want to give a more detailed

Re: server side callback

2013-03-12 Thread Pekka Paalanen
On Tue, 12 Mar 2013 12:00:57 +0100 Giulio Camuffo giuliocamu...@gmail.com wrote: 2013/3/12 Pekka Paalanen ppaala...@gmail.com: On Tue, 12 Mar 2013 11:22:00 +0100 Giulio Camuffo giuliocamu...@gmail.com wrote: 2013/3/12 Jason Ekstrand ja...@jlekstrand.net: I'd love to offer some

Re: server side callback

2013-03-12 Thread Giulio Camuffo
2013/3/12 Pekka Paalanen ppaala...@gmail.com: On Tue, 12 Mar 2013 12:00:57 +0100 Giulio Camuffo giuliocamu...@gmail.com wrote: 2013/3/12 Pekka Paalanen ppaala...@gmail.com: On Tue, 12 Mar 2013 11:22:00 +0100 Giulio Camuffo giuliocamu...@gmail.com wrote: 2013/3/12 Jason Ekstrand

Re: server side callback

2013-03-12 Thread Giulio Camuffo
Given it seems to me it's not clear how the additions in the spec would work i'll write an example here: we have two apps, S (source) and T (target). S creates the wl_data_source, calls wl_data_source_offer with the supported mime types and calls wl_data_source_set_actions with one or more

Re: server side callback

2013-03-11 Thread Jason Ekstrand
Guilio, The big problem here is that, unlike the server, events client-side are handled in multiple event loops. Server-side, everything is handled in a single event loop and events (at least on a per-client basis) are handled in order (I think this is even in the spec). On the client-side,