Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread David Seikel
On Tue, 19 Apr 2016 00:37:20 -0700 Carsten Haitzler wrote: > raster pushed a commit to branch master. > > http://git.enlightenment.org/core/efl.git/commit/?id=86e7d642d595e242137f1c1387f5969e47d9f166 > > commit 86e7d642d595e242137f1c1387f5969e47d9f166 > Author: Carsten Haitzler (Rasterman) > D

Re: [E-devel] [EGIT] [core/efl] master 01/01: eo base - clean up base data struct formatting

2016-04-19 Thread Tom Hacohen
The commit message is a bit misleading. You didn't clean up the formatting, you made it horrible. -- Tom On 19/04/16 09:40, Carsten Haitzler wrote: > raster pushed a commit to branch master. > > http://git.enlightenment.org/core/efl.git/commit/?id=1b266ff1e45f965ddab03a1179084810632305e1 > > com

Re: [E-devel] [EGIT] [core/efl] master 01/01: eo base - clean up base data struct formatting

2016-04-19 Thread The Rasterman
On Tue, 19 Apr 2016 10:09:22 +0100 Tom Hacohen said: > The commit message is a bit misleading. You didn't clean up the > formatting, you made it horrible. all the vars are aligned at the same column... i think its far nicer to read :) > -- > Tom > > On 19/04/16 09:40, Carsten Haitzler wrote:

Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread The Rasterman
On Tue, 19 Apr 2016 18:12:27 +1000 David Seikel said: > On Tue, 19 Apr 2016 00:37:20 -0700 Carsten Haitzler > wrote: > > > raster pushed a commit to branch master. > > > > http://git.enlightenment.org/core/efl.git/commit/?id=86e7d642d595e242137f1c1387f5969e47d9f166 > > > > commit 86e7d642d595

Re: [E-devel] [EGIT] [core/efl] master 01/01: eo base - clean up base data struct formatting

2016-04-19 Thread Tom Hacohen
On 19/04/16 13:04, Carsten Haitzler wrote: > On Tue, 19 Apr 2016 10:09:22 +0100 Tom Hacohen said: > >> The commit message is a bit misleading. You didn't clean up the >> formatting, you made it horrible. > > all the vars are aligned at the same column... i think its far nicer to read > :) I coul

Re: [E-devel] RFC: eo events.... add Eo *src ?

2016-04-19 Thread Tom Hacohen
On 19/04/16 06:52, Carsten Haitzler wrote: > On Mon, 18 Apr 2016 14:18:06 +0100 Tom Hacohen said: > >> On 12/04/16 12:36, Carsten Haitzler wrote: >>> On Tue, 12 Apr 2016 12:27:02 +0100 Tom Hacohen said: >>> On 12/04/16 10:57, Carsten Haitzler wrote: > just realized... Eo_Event *

Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread Andrew Williams
Can we again look at a use case for this? After all a name is just a fancy, harder to compare pointer no? What does this enable that can't be done otherwise and how do we avoid more text IDs that need to be documented etc? Andrew On Tue, 19 Apr 2016 at 13:06, Carsten Haitzler wrote: > On Tue, 19

Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread David Seikel
On Tue, 19 Apr 2016 14:39:00 + Andrew Williams wrote: > Can we again look at a use case for this? After all a name is just a > fancy, harder to compare pointer no? > What does this enable that can't be done otherwise and how do we > avoid more text IDs that need to be documented etc? Shared

Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread Mike Blumenkrantz
I use object names in many places in Enlightenment. It makes debugging a breeze. On Tue, Apr 19, 2016 at 10:41 AM Andrew Williams wrote: > Can we again look at a use case for this? After all a name is just a fancy, > harder to compare pointer no? > What does this enable that can't be done otherw

[E-devel] Eolian strict type checking

2016-04-19 Thread Tom Hacohen
Hey everyone, I just pushed a patch into the efl that enables strict type checking for all .eo files. What this essentially does, is that it errors if the eolian file is referring to a type that it is not familiar with. There are a few possible reasons to why this would happen: 1. The type is d

Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread Davide Andreoli
2016-04-19 17:33 GMT+02:00 Mike Blumenkrantz : > I use object names in many places in Enlightenment. It makes debugging a > breeze. > Same for me, I use names a lot! For debugging and also to match a particular object from 2 different part of code that cannot communicate in other ways, for exampl

Re: [E-devel] [EGIT] [core/efl] master 01/01: genlist: recalc item size after item content field updated

2016-04-19 Thread Davide Andreoli
2016-04-19 8:01 GMT+02:00 SangHyeon Lee : > sanghyeonlee pushed a commit to branch master. > > > http://git.enlightenment.org/core/efl.git/commit/?id=b48d3eb04e4475cf160deedaa3791834fa67ac9f > > commit b48d3eb04e4475cf160deedaa3791834fa67ac9f > Author: SangHyeon Lee > Date: Tue Apr 19 14:57:41

Re: [E-devel] Eolian strict type checking

2016-04-19 Thread Cedric BAIL
On Tue, Apr 19, 2016 at 9:25 AM, Tom Hacohen wrote: > Hey everyone, > > I just pushed a patch into the efl that enables strict type checking for > all .eo files. What this essentially does, is that it errors if the > eolian file is referring to a type that it is not familiar with. KABOOM ! :-) --

Re: [E-devel] Eolian strict type checking

2016-04-19 Thread Tom Hacohen
On Tue, Apr 19, 2016 at 7:31 PM, Cedric BAIL wrote: > On Tue, Apr 19, 2016 at 9:25 AM, Tom Hacohen wrote: > > Hey everyone, > > > > I just pushed a patch into the efl that enables strict type checking for > > all .eo files. What this essentially does, is that it errors if the > > eolian file is

Re: [E-devel] RFC: eo events.... add Eo *src ?

2016-04-19 Thread The Rasterman
On Tue, 19 Apr 2016 15:10:59 +0100 Tom Hacohen said: > On 19/04/16 06:52, Carsten Haitzler wrote: > > On Mon, 18 Apr 2016 14:18:06 +0100 Tom Hacohen said: > > > >> On 12/04/16 12:36, Carsten Haitzler wrote: > >>> On Tue, 12 Apr 2016 12:27:02 +0100 Tom Hacohen > >>> said: > >>> > On 12/04/

Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread The Rasterman
On Tue, 19 Apr 2016 14:39:00 + Andrew Williams said: > Can we again look at a use case for this? After all a name is just a fancy, > harder to compare pointer no? > What does this enable that can't be done otherwise and how do we avoid more > text IDs that need to be documented etc? efl itse

Re: [E-devel] [EGIT] [core/efl] master 01/01: eo base - clean up base data struct formatting

2016-04-19 Thread The Rasterman
On Tue, 19 Apr 2016 14:51:12 +0100 Tom Hacohen said: > On 19/04/16 13:04, Carsten Haitzler wrote: > > On Tue, 19 Apr 2016 10:09:22 +0100 Tom Hacohen said: > > > >> The commit message is a bit misleading. You didn't clean up the > >> formatting, you made it horrible. > > > > all the vars are alig

Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread David Seikel
Another possible use case, all those horribly spammy error messages you get every now and then after updating your EFL, rebuilding your app, and running it to see what breaks this time. It's entirely useless to get pages of error messages telling you something is wrong with some random widget, but

Re: [E-devel] [EGIT] [core/efl] master 02/02: eo - add object names/ids esp useful for erigo as it wants object names

2016-04-19 Thread The Rasterman
On Wed, 20 Apr 2016 11:07:43 +1000 David Seikel said: > Another possible use case, all those horribly spammy error messages you > get every now and then after updating your EFL, rebuilding your app, > and running it to see what breaks this time. It's entirely useless to > get pages of error mess

Re: [E-devel] Building Elementary Example

2016-04-19 Thread Simon Lees
On 04/15/2016 09:30 AM, Cedric BAIL wrote: > On Tue, Apr 12, 2016 at 7:33 PM, Simon Lees wrote: >> On 04/12/2016 03:59 AM, Cedric BAIL wrote: >>> Damn, you have quite some trick up your sleeve. So with >>> 21ee8b83370f0878591106e5625fa2c0a18b4226 it should be fixed. I can't >>> really fix this p

Re: [E-devel] Something looks broken in e

2016-04-19 Thread Hermet Park
wonderful! thanks! -Original Message- From: "Mike Blumenkrantz" To: "Enlightenment developer list"; Cc: Sent: 2016-04-19 (화) 01:58:57 Subject: Re: [E-devel] Something looks broken in e This is now resolved. On Mon, Apr 18, 2016 at 9:27 AM Stephen Houston wrote: > I can confirm thi

Re: [E-devel] Fwd: eo + eo base class + threads

2016-04-19 Thread Jean-Philippe André
On 19 April 2016 at 07:13, Cedric BAIL wrote: > On Fri, Apr 15, 2016 at 6:17 PM, Carsten Haitzler > wrote: > > On Fri, 15 Apr 2016 13:40:41 -0700 Cedric BAIL > said: > >> On Wed, Apr 13, 2016 at 4:37 PM, Carsten Haitzler > > >> wrote: > >> > On Wed, 13 Apr 2016 11:16:58 -0700 Cedric BAIL > sa