Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Sebastian Dransfeld
On 12/17/2010 05:30 AM, Mike McCormack wrote: > On 12/17/2010 05:41 AM, Sebastian Dransfeld wrote: > >>> num = read(svr->fd, buf, sizeof(buf)); >>> -if ((num>0) || (errno == EAGAIN)) >>> +if ((num>= 0) || (errno == EAGAIN)) >>> lost_server = EINA_FALSE;

Re: [E-devel] [Patch] elm_genlist multi-touch smart callbacks added

2010-12-17 Thread Jeonghyun Yun
Dear SeoZ, Yes. I agree about using up & down instead of top & bottom. And I'm also not sure but 'sweep' is not bad. Also 'move' is a good name. Then how about 'dragged'? I don't know well. Anybody please suggest a good name. Thanks. -Original Message- From: Daniel Juyung Seo [mailto:s

[E-devel] Using bold fonts in Edje

2010-12-17 Thread Olivier Duclos
Hi there, In an edc file, I defined a font style as follow : style { name: "cool_button"; base: "font=TomsonTalks:style=Bold font_size=40"; } The font TomsonTalks.ttf is embedded in the .edj file. The problem is, when I run my application, the te

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Sebastian Dransfeld
On 12/17/2010 09:06 AM, Sebastian Dransfeld wrote: On 12/17/2010 05:30 AM, Mike McCormack wrote: On 12/17/2010 05:41 AM, Sebastian Dransfeld wrote: num = read(svr->fd, buf, sizeof(buf)); -if ((num> 0) || (errno == EAGAIN)) +if ((num>= 0) || (errno == EAGAIN))

[E-devel] [Patch] els_scroller momentum_animator and bounce animator disabled set/get added

2010-12-17 Thread Seunggyun Kim
Deal all, This is a patch for momentum_animator and bounce animator enabling/disabling in els_scroller. I added below api for disabling when the scroller's momentum or bounce animator need to be disabled in some case. Eina_Bool elm_smart_scroller_momentum_animator_disabled_get (Evas_Object *ob

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Mike Blumenkrantz
On Fri, 17 Dec 2010 09:41:06 +0100 Sebastian Dransfeld wrote: > On 12/17/2010 09:06 AM, Sebastian Dransfeld wrote: > > On 12/17/2010 05:30 AM, Mike McCormack wrote: > >> On 12/17/2010 05:41 AM, Sebastian Dransfeld wrote: > >> > num = read(svr->fd, buf, sizeof(buf)); > -

Re: [E-devel] Alignment trap on armv5tel

2010-12-17 Thread Pierre Cassimans
On 12/17/2010 07:06 AM, Carsten Haitzler (The Rasterman) wrote: > On Thu, 16 Dec 2010 20:29:58 +0100 Pierre Cassimans said: > > huh? that looks like this is doing unaligned stuff: > >params->y = TO_INT(ADD(want_y, > MUL(SUB(want_h, FROM_INT(params->h)), >

Re: [E-devel] Alignment trap on armv5tel

2010-12-17 Thread The Rasterman
On Fri, 17 Dec 2010 10:38:06 +0100 Pierre Cassimans said: > On 12/17/2010 07:06 AM, Carsten Haitzler (The Rasterman) wrote: > > On Thu, 16 Dec 2010 20:29:58 +0100 Pierre Cassimans > > said: > > > > huh? that looks like this is doing unaligned stuff: > > > >params->y = TO_INT(ADD(want_y, >

Re: [E-devel] E SVN: englebass trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Cedric BAIL
On Fri, Dec 17, 2010 at 9:44 AM, Enlightenment SVN wrote: > Log: > don't accept 0 return You should not look at errno in the case of num == 0. It's not defined. When read == 0, that means that the connection is now closed and next read will return < 0. But read == 0 is not an error case and errno

Re: [E-devel] Alignment trap on armv5tel

2010-12-17 Thread Pierre Cassimans
On 12/17/2010 10:40 AM, Carsten Haitzler (The Rasterman) wrote: > On Fri, 17 Dec 2010 10:38:06 +0100 Pierre Cassimans said: > >> On 12/17/2010 07:06 AM, Carsten Haitzler (The Rasterman) wrote: >>> On Thu, 16 Dec 2010 20:29:58 +0100 Pierre Cassimans >>> said: >>> >>> huh? that looks like this is

Re: [E-devel] Alignment trap on armv5tel

2010-12-17 Thread Cedric BAIL
On Fri, Dec 17, 2010 at 11:04 AM, Pierre Cassimans wrote: > On 12/17/2010 10:40 AM, Carsten Haitzler (The Rasterman) wrote: >> ooh.. wait.. you could be catching it at any point. no - you want to DISABLE >> alignment fixups in your kernel to make sure elementary_test segv's on >> unaligned access

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Mike McCormack
On 12/17/2010 05:41 PM, Sebastian Dransfeld wrote: On 12/17/2010 09:06 AM, Sebastian Dransfeld wrote: On 12/17/2010 05:30 AM, Mike McCormack wrote: On 12/17/2010 05:41 AM, Sebastian Dransfeld wrote: num = read(svr->fd, buf, sizeof(buf)); - if ((num> 0) || (errno == EAGAIN)) + if ((num>= 0) ||

Re: [E-devel] [PATCH] elm scroller, scrolled entry: events propagation, min size

2010-12-17 Thread The Rasterman
On Wed, 15 Dec 2010 19:22:16 +0900 Myungjae Lee said: looks good - some mistakes you made. you forgot the patch that adds elm_scroller_propagate_events_set() to Elementary.h.in i added it for you. but remember to include it in your patch next time. Also the documentation could be a LOT bett

Re: [E-devel] Alignment trap on armv5tel

2010-12-17 Thread Pierre Cassimans
On 12/17/2010 11:12 AM, Cedric BAIL wrote: > On Fri, Dec 17, 2010 at 11:04 AM, Pierre Cassimans wrote: >> On 12/17/2010 10:40 AM, Carsten Haitzler (The Rasterman) wrote: >>> ooh.. wait.. you could be catching it at any point. no - you want to DISABLE >>> alignment fixups in your kernel to make sur

Re: [E-devel] [PATCH] Patch for elm_slider.c (if you click the bar of the slider, the button will be at there.)

2010-12-17 Thread The Rasterman
On Wed, 15 Dec 2010 20:03:09 +0900 WooHyun Jung said: > Hello ~ I'm WooHyun Jung. > > I made one patch for elm_slider.c file. > > If you click the bar of the slider, the button will be located at there. > > (If you keep your "mouse_down" after moving of the button, you can > continuously move

Re: [E-devel] Enlightenment web site - please review

2010-12-17 Thread Gustavo Sverzut Barbieri
On Fri, Dec 17, 2010 at 5:51 AM, Vincent Torri wrote: > On Fri, 17 Dec 2010, Vincent Torri wrote: >> On Fri, 17 Dec 2010, Jesse Charbneau wrote: >>> Hello, >>>  I?ve been working off list with Gustavo, and we?d like to get some >>> feedback on the design thats been worked out. >>> >>> http://e-ww

Re: [E-devel] E SVN: englebass trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Sebastian Dransfeld
On 12/17/2010 10:59 AM, Cedric BAIL wrote: > On Fri, Dec 17, 2010 at 9:44 AM, Enlightenment SVN > wrote: >> Log: >> don't accept 0 return > > You should not look at errno in the case of num == 0. It's not > defined. When read == 0, that means that the connection is now closed > and next read will

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Sebastian Dransfeld
On 12/17/2010 11:31 AM, Mike McCormack wrote: > On 12/17/2010 05:41 PM, Sebastian Dransfeld wrote: >> On 12/17/2010 09:06 AM, Sebastian Dransfeld wrote: >>> On 12/17/2010 05:30 AM, Mike McCormack wrote: On 12/17/2010 05:41 AM, Sebastian Dransfeld wrote: >> num = read(svr->fd, buf, siz

Re: [E-devel] Enlightenment web site - please review

2010-12-17 Thread Andres Blanc
On Viernes 17 Diciembre 2010 04:15:40 Jesse Charbneau escribió: > Hello, > I’ve been working off list with Gustavo, and we’d like to get some > feedback on the design thats been worked out. > > http://e-www.thecharbneaus.com/p.php?p=about&l=en I like it. It might have too much text for my perso

Re: [E-devel] E SVN: englebass trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Fabiano Fidêncio
On Fri, Dec 17, 2010 at 10:09 AM, Enlightenment SVN wrote: > Log: > only check errno if num < 0 > > Author:       englebass > Date:         2010-12-17 04:09:14 -0800 (Fri, 17 Dec 2010) > New Revision: 55611 > Trac:         http://trac.enlightenment.org/e/changeset/55611 > > Modified: >  trunk/ecor

Re: [E-devel] E SVN: englebass trunk/ecore/src/lib/ecore_con

2010-12-17 Thread Sebastian Dransfeld
On 12/17/2010 03:30 PM, Fabiano Fidêncio wrote: > On Fri, Dec 17, 2010 at 10:09 AM, Enlightenment SVN > wrote: >> Log: >> only check errno if num< 0 >> >> Author: englebass >> Date: 2010-12-17 04:09:14 -0800 (Fri, 17 Dec 2010) >> New Revision: 55611 >> Trac: http://trac.enl

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-17 Thread Raphael Kubo da Costa
On Friday 17 December 2010 03:49:30 Carsten Haitzler wrote: > On Thu, 16 Dec 2010 12:15:26 -0200 Raphael Kubo da Costa > > > said: > > On Thursday 16 December 2010 06:34:29 Carsten Haitzler wrote: > > > On Wed, 15 Dec 2010 01:34:33 -0200 Raphael Kubo da Costa > > > > > > > > > > Quoting libcurl

Re: [E-devel] Proposed new EFL Manual (and some wiki updates)

2010-12-17 Thread Mike Blumenkrantz
On Sat, 18 Dec 2010 04:11:28 +1100 Kim Lester wrote: > All, > > A few notes and two requests (marked *** ) > > 1) > Attached is a 0th order draft of a proposed EFL manual to replace all the > other "manuals". Or more accurately here is a half written manual to replace > the other half written m

Re: [E-devel] Proposed new EFL Manual (and some wiki updates)

2010-12-17 Thread Lionel Orry
Kim Lester dfusion.com.au> writes: > > All, > > A few notes and two requests (marked *** ) > > [...] > Incidentally I wrote this in OO simply because writing either doxygen or xml > is not a good way to evolve a > large complex document. I've written large docs in TeX with vi before and > whil

[E-devel] Failed to add poll on fd 18 (errno = 17)!

2010-12-17 Thread Andreas Volz
Hello, I wrote some code in dbus-c++ with ecore integration that works since a long time. Now since some days I get this error at starting my application and the dbus communication doesn't work: ERR<14518>:ecore ecore_main.c:758 ecore_main_fd_handler_add() Failed to add poll on fd 18 (errno =

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-17 Thread Rui Miguel Silva Seabra
Em 17-12-2010 15:51, Raphael Kubo da Costa escreveu: > Yes, I think so. My concern now is how you're going to decide whether to send > a GET or a POST depending only on data's value. It's a bad assumption all around. GET and POST should be separate calls. I can do a POST without body content, but

Re: [E-devel] Failed to add poll on fd 18 (errno = 17)!

2010-12-17 Thread The Rasterman
On Fri, 17 Dec 2010 23:32:21 +0100 Andreas Volz said: can you narrow down the svn revision it broke in? i'm beginning to get a bit unhappy about all the futzing with ecore's inner guts and it continually being argued over AND breaking shit that has worked for years and years. i'm just going to re

Re: [E-devel] Failed to add poll on fd 18 (errno = 17)!

2010-12-17 Thread Mike Blumenkrantz
On Sat, 18 Dec 2010 10:44:00 +0900 Carsten Haitzler (The Rasterman) wrote: > main_fd_handler_add() Failed to add > > poll on fd 18 (errno = 17)! ERR<14518>:ecore ecore.c:227 > > _ecore_magic_fail() *** ECORE ERROR: Ecore Magic Check Failed!!! > > *** IN FUNCTION: ecore_main_fd_handler_active_set(

Re: [E-devel] Proposed new EFL Manual (and some wiki updates)

2010-12-17 Thread Issa
héhé that's cool 2010/12/17 Lionel Orry > Kim Lester dfusion.com.au> writes: > > > > > All, > > > > A few notes and two requests (marked *** ) > > > > [...] > > Incidentally I wrote this in OO simply because writing either doxygen or > xml > > is not a good way to evolve a > > large comple