Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Christopher Michael
On 05/09/12 07:49, Tom Hacohen wrote: > On 05/09/12 09:43, Christopher Michael wrote: >> On 05/09/12 07:32, Tom Hacohen wrote: >>> Another idea: >>> Make evas_object_move move stuff within the framespace (i.e default >>> framespace already taken into account) >> >> Maybe I am not understanding you

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Tom Hacohen
On 05/09/12 09:58, Christopher Michael wrote: > On 05/09/12 07:49, Tom Hacohen wrote: >> On 05/09/12 09:43, Christopher Michael wrote: >>> On 05/09/12 07:32, Tom Hacohen wrote: Another idea: Make evas_object_move move stuff within the framespace (i.e default framespace already taken

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread The Rasterman
On Wed, 05 Sep 2012 07:58:44 +0100 Christopher Michael said: > On 05/09/12 07:49, Tom Hacohen wrote: > > On 05/09/12 09:43, Christopher Michael wrote: > >> On 05/09/12 07:32, Tom Hacohen wrote: > >>> Another idea: > >>> Make evas_object_move move stuff within the framespace (i.e default > >>> fra

Re: [E-devel] E SVN: hermet trunk/evas/src/lib/canvas

2012-09-05 Thread Vincent Torri
On Wed, Sep 5, 2012 at 5:47 AM, Lucas De Marchi wrote: > On Tue, Sep 4, 2012 at 5:56 AM, Enlightenment SVN > wrote: >> Log: >> evas/evas_object_image - use Eina_Bool > > > every time I see a commit like this I remember C99 is 13 years old and > we are not using it. Sad. no compiler is full C99 c

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Christopher Michael
On 05/09/12 08:19, Carsten Haitzler (The Rasterman) wrote: > On Wed, 05 Sep 2012 07:58:44 +0100 Christopher Michael > > said: > >> On 05/09/12 07:49, Tom Hacohen wrote: >>> On 05/09/12 09:43, Christopher Michael wrote: On 05/09/12 07:32, Tom Hacohen wrote: > Another idea: > Make evas

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Tom Hacohen
On 05/09/12 10:34, Christopher Michael wrote: > Ok, after a short talk w/ raster, apparently I did break evas somewhere > in this process. Will have to look into it and get that sorted out. Rasta powa. -- Tom. -- Live S

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Christopher Michael
On 05/09/12 08:36, Tom Hacohen wrote: > On 05/09/12 10:34, Christopher Michael wrote: >> Ok, after a short talk w/ raster, apparently I did break evas somewhere >> in this process. Will have to look into it and get that sorted out. > > Rasta powa. > > -- > Tom. > Indeed. Well, his approach is much

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread David Seikel
On Wed, 05 Sep 2012 08:45:44 +0100 Christopher Michael wrote: > On 05/09/12 08:36, Tom Hacohen wrote: > > On 05/09/12 10:34, Christopher Michael wrote: > >> Ok, after a short talk w/ raster, apparently I did break evas > >> somewhere in this process. Will have to look into it and get that > >> so

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Christopher Michael
On 05/09/12 08:55, David Seikel wrote: > On Wed, 05 Sep 2012 08:45:44 +0100 Christopher Michael > wrote: > >> On 05/09/12 08:36, Tom Hacohen wrote: >>> On 05/09/12 10:34, Christopher Michael wrote: Ok, after a short talk w/ raster, apparently I did break evas somewhere in this process. W

[E-devel] Add Null checking routine

2012-09-05 Thread Sungho Kwak
Hi, I always come with NULL Checking routine these days. :( I found that *eet_data_image_encode_cipher*, *eet_data_image_encode* can be crashed by passing null value to *eet_data_image_lossless_compressed_convert* in each function. Thanks. Sincerely, Sungho Kwak eet_image.diff Description: Bin

Re: [E-devel] edje: lua >= 5.2

2012-09-05 Thread David Seikel
On Tue, 4 Sep 2012 15:59:20 +0200 Leif Middelschulte wrote: > Am 04.09.2012 um 14:35 schrieb David Seikel : > > > On Tue, 4 Sep 2012 13:24:27 +0200 Leif Middelschulte > > wrote: > > > >> as some distributions and Mac OS' (home)brew package manager > >> already ship lua >=5.2, it might be time

[E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Sungho Kwak
Hi, I still have 10 more null chekcing patches :( This patch is for eet_lib.c. eet_identity_x509, eet_identity_signature, eet_identity_sha1 can be crushed when fucntion tries to if(!ef->sugnature) when ef is null. Thanks. Sincerely, Sungho Kwak. eet_lib.diff Description: Binary data --

Re: [E-devel] edje: lua >= 5.2

2012-09-05 Thread Vincent Torri
On Wed, Sep 5, 2012 at 10:07 AM, David Seikel wrote: > On Tue, 4 Sep 2012 15:59:20 +0200 Leif Middelschulte > wrote: > >> Am 04.09.2012 um 14:35 schrieb David Seikel : >> >> > On Tue, 4 Sep 2012 13:24:27 +0200 Leif Middelschulte >> > wrote: >> > >> >> as some distributions and Mac OS' (home)brew

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Tom Hacohen
I'm not sure we really want to add NULL checks everywhere. If the docs say (or should say) passing NULL is not supported, we just shouldn't pass NULL. We can't possibly do such sanity cases everywhere, as they'd just slow us and the apps down, and bloat the code. -- Tom. On 05/09/12 11:19, Sun

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Cedric BAIL
On Wed, Sep 5, 2012 at 10:21 AM, Tom Hacohen wrote: > I'm not sure we really want to add NULL checks everywhere. If the docs > say (or should say) passing NULL is not supported, we just shouldn't > pass NULL. We can't possibly do such sanity cases everywhere, as they'd > just slow us and the apps

Re: [E-devel] edje: lua >= 5.2

2012-09-05 Thread David Seikel
On Wed, 5 Sep 2012 10:21:43 +0200 Vincent Torri wrote: > On Wed, Sep 5, 2012 at 10:07 AM, David Seikel > wrote: > > On Tue, 4 Sep 2012 15:59:20 +0200 Leif Middelschulte > > wrote: > > > >> Am 04.09.2012 um 14:35 schrieb David Seikel : > >> > >> > On Tue, 4 Sep 2012 13:24:27 +0200 Leif Middelsch

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

2012-09-05 Thread ChunEon Park
oopss thank you. i missed it. -Regards, Hermet- -Original Message- From: "Enlightenment SVN" To: ; Cc: Sent: 2012-09-05 (수) 18:56:24 Subject: E SVN: cedric trunk/evas/src/lib Log: evas: don't change the value of event. That break ABI ! Author:

Re: [E-devel] Call for Packagers

2012-09-05 Thread Leif Middelschulte
Am 05.09.2012 um 04:24 schrieb Simon Lees : >> Date: Tue, 4 Sep 2012 20:48:45 +0200 >> From: Leif Middelschulte >> Subject: Re: [E-devel] Call for Packagers >> To: Enlightenment developer list >> >> Message-ID: <53a14c37-bdec-485d-ae8f-29f092368...@gmail.com> >> Content-Type: text/plain;

Re: [E-devel] Function e_dbus_request_name

2012-09-05 Thread The Rasterman
On Wed, 05 Sep 2012 05:39:08 + (GMT) Zbigniew Kosinski said: what are you doing asking for a NULL name? that's non-sensical. it's definitely an error in your code. libdbus itself is aborting. nb - have u tested strdup(NULL); ? it segv's . glibc people won't likely accept patches to "check fo

Re: [E-devel] edje: lua >= 5.2

2012-09-05 Thread Leif Middelschulte
Am 05.09.2012 um 10:33 schrieb David Seikel : > On Wed, 5 Sep 2012 10:21:43 +0200 Vincent Torri > wrote: > >> On Wed, Sep 5, 2012 at 10:07 AM, David Seikel >> wrote: >>> On Tue, 4 Sep 2012 15:59:20 +0200 Leif Middelschulte >>> wrote: >>> Am 04.09.2012 um 14:35 schrieb David Seikel :

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread The Rasterman
On Wed, 5 Sep 2012 17:19:38 +0900 Sungho Kwak said: > Hi, > > I still have 10 more null chekcing patches :( > This patch is for eet_lib.c. eet_identity_x509, eet_identity_signature, > eet_identity_sha1 can be crushed > when fucntion tries to if(!ef->sugnature) when ef is null. this should use e

Re: [E-devel] edje: lua >= 5.2

2012-09-05 Thread David Seikel
On Wed, 5 Sep 2012 12:39:14 +0200 Leif Middelschulte wrote: > Am 05.09.2012 um 10:33 schrieb David Seikel : > > > On Wed, 5 Sep 2012 10:21:43 +0200 Vincent Torri > > wrote: > > > >> On Wed, Sep 5, 2012 at 10:07 AM, David Seikel > >> wrote: > >>> On Tue, 4 Sep 2012 15:59:20 +0200 Leif Middelsc

[E-devel] EFL Dev day planning

2012-09-05 Thread Cedric BAIL
Hello every one, As you may know on November 5, 2012 in Barcelona, Spain, during LinuxCon Europe, we will have our first developer meeting. This meeting is the first time, we try to gather as much as possible people of our community to share idea and project. We did come with this preliminary plan

Re: [E-devel] EFL Dev day planning

2012-09-05 Thread David Seikel
On Wed, 5 Sep 2012 12:56:04 +0200 Cedric BAIL wrote: > As you may know on November 5, 2012 in Barcelona, Spain, during > LinuxCon Europe, we will have our first developer meeting. This > meeting is the first time, we try to gather as much as possible people > of our community to share idea and pr

Re: [E-devel] EFL Dev day planning

2012-09-05 Thread Christopher Michael
On 05/09/12 12:07, David Seikel wrote: > On Wed, 5 Sep 2012 12:56:04 +0200 Cedric BAIL > wrote: > >> As you may know on November 5, 2012 in Barcelona, Spain, during >> LinuxCon Europe, we will have our first developer meeting. This >> meeting is the first time, we try to gather as much as possible

Re: [E-devel] Function e_dbus_request_name

2012-09-05 Thread Vincent Torri
On Wed, Sep 5, 2012 at 12:28 PM, Carsten Haitzler wrote: > On Wed, 05 Sep 2012 05:39:08 + (GMT) Zbigniew Kosinski > said: > > what are you doing asking for a NULL name? that's non-sensical. it's > definitely > an error in your code. libdbus itself is aborting. > > nb - have u tested strdup(N

Re: [E-devel] EFL Dev day planning

2012-09-05 Thread Pau Espin Pedrol
Hi everybody, is it free to attend this event? Or is there some kind of fee similar to the linuxcon? I'll probably come as I live in Barcelona :) 2012/9/5 David Seikel > On Wed, 5 Sep 2012 12:56:04 +0200 Cedric BAIL > wrote: > > > As you may know on November 5, 2012 in Barcelona, Spain, during

Re: [E-devel] [PATCH] Add context clip for Wayland framespace

2012-09-05 Thread Paulo Alcantara
Hi Christopher, From: Christopher Michael Date: Wed, 05 Sep 2012 07:38:57 +0100 > Well, in theory this looks & sounds good. I applied the patch and ran > some tests, but it still does not fix the non-smart > objectsessentially with this applied, the results are still the > same, so I don't s

Re: [E-devel] e_malloc ?

2012-09-05 Thread rustyBSD
Le 04/09/2012 01:54, Carsten Haitzler (The Rasterman) a écrit : > agreed. if u abort() or segv() it makes little difference. for small data > structs (linked list nodes for example) its VERY hard to recover sensibly from > such an out-of-memory situation. but for large allocs its perfectly possible

Re: [E-devel] elm: repair check for clearenv

2012-09-05 Thread Leif Middelschulte
Am 04.09.2012 um 22:59 schrieb Vincent Torri : > On Tue, Sep 4, 2012 at 8:34 PM, Leif Middelschulte > wrote: >> Am 04.09.2012 um 19:55 schrieb Vincent Torri : >> >>> On Tue, Sep 4, 2012 at 7:26 PM, Leif Middelschulte >>> wrote: Am 04.09.2012 um 19:12 schrieb Vincent Torri : > On

Re: [E-devel] EFL Dev day planning

2012-09-05 Thread Leif Middelschulte
Am 05.09.2012 um 13:16 schrieb Pau Espin Pedrol : > Hi everybody, > is it free to attend this event? Or is there some kind of fee similar to > the linuxcon? No, the developer day is free :) > I'll probably come as I live in Barcelona :) Cool, do you have a couch one could possibly crush on/surf? I

Re: [E-devel] e_malloc ?

2012-09-05 Thread Michael Blumenkrantz
in applications? nothing. On Wed, Sep 5, 2012 at 12:52 PM, rustyBSD wrote: > Le 04/09/2012 01:54, Carsten Haitzler (The Rasterman) a écrit : > > agreed. if u abort() or segv() it makes little difference. for small data > > structs (linked list nodes for example) its VERY hard to recover > sensib

Re: [E-devel] EFL Dev day planning

2012-09-05 Thread Pau Espin Pedrol
2012/9/5 Leif Middelschulte > Am 05.09.2012 um 13:16 schrieb Pau Espin Pedrol : > > > Hi everybody, > > is it free to attend this event? Or is there some kind of fee similar to > > the linuxcon? > No, the developer day is free :) > > I'll probably come as I live in Barcelona :) > Cool, do you hav

Re: [E-devel] Call for Packagers

2012-09-05 Thread Gustavo Sverzut Barbieri
On Wednesday, September 5, 2012, Dennis.Yxun wrote: > HI Juyung: > Actually I made one ebuild (gentoo) for webkit-efl, and it just stay > in my own overlay > But for my understanding webkit-efl is just a library, currently is > there any package/application depend on it? Also seems that I can'

Re: [E-devel] e_malloc ?

2012-09-05 Thread The Rasterman
On Wed, 5 Sep 2012 13:09:42 +0100 Michael Blumenkrantz said: > in applications? nothing. and in e - same. nothing. checking every single one is a lot of work and abort is unacceptable for a wm. > On Wed, Sep 5, 2012 at 12:52 PM, rustyBSD wrote: > > > Le 04/09/2012 01:54, Carsten Haitzler (The

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Gustavo Sverzut Barbieri
On Wednesday, September 5, 2012, Enlightenment SVN wrote: > Log: > Elementary: Revert all framespace changes. > > NB: This means elm will be broken in wayland for a while while I sort > out what went wrong in evas. What if you do these in a branch, or GIT, and leave us with some stable Evas

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Daniel Juyung Seo
we should check null at least for public apis. Daniel Juyung Seo (SeoZ) On Sep 5, 2012 5:23 PM, "Tom Hacohen" wrote: > I'm not sure we really want to add NULL checks everywhere. If the docs > say (or should say) passing NULL is not supported, we just shouldn't > pass NULL. We can't possibly do s

Re: [E-devel] E SVN: discomfitor IN trunk/e/src: bin modules/fileman

2012-09-05 Thread Gustavo Sverzut Barbieri
How about if we make this clear in the window title? It would be nice to have either this or as a overlay to fileman. --Gustavo Sent from my iPhone On 05/09/2012, at 03:41, "Enlightenment SVN" wrote: > Log: > another user suggestion: efm sorting by mtime > > > Author: discomfitor > Da

Re: [E-devel] [E-Devel] Evas Textblock Bug

2012-09-05 Thread Tom Hacohen
Fixed, r76195. I'm sorry it took so long. -- Tom. On 31/08/12 11:05, Bluezery wrote: > Hello, > > I have a problem when using TEXTBLOCK part in edje. > Some tags are not seems to be applied when textblock style is chaned. > I attach a simple test edc file for testing & debugging. > When mouse is

Re: [E-devel] EFL Dev day planning

2012-09-05 Thread Eduardo Lima (Etrunko)
On Wed, Sep 5, 2012 at 7:56 AM, Cedric BAIL wrote: > Hello every one, > > As you may know on November 5, 2012 in Barcelona, Spain, during > LinuxCon Europe, we will have our first developer meeting. This > meeting is the first time, we try to gather as much as possible people > of our community to

Re: [E-devel] EFL Gentoo Packages

2012-09-05 Thread Gustavo Sverzut Barbieri
What build issues with python ebuilds? I use official with our svn and they do build fine --Gustavo Sent from my iPhone On 05/09/2012, at 03:18, "Dennis.Yxun" wrote: > HI Barbieri: > Thanks for pushing this! I'd really appreciate > I'm not member of gentoo official EFL team, but would lik

Re: [E-devel] E SVN: discomfitor IN trunk/e/src: bin modules/fileman

2012-09-05 Thread Michael Blumenkrantz
because window titles in fileman can already be quite long. Sent from my sToaster On Wed, Sep 5, 2012 at 2:06 PM, Gustavo Sverzut Barbieri < barbi...@profusion.mobi> wrote: > How about if we make this clear in the window title? > > It would be nice to have either this or as a overlay to fileman.

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Tom Hacohen
Why should we? It makes really no sense. And if you want to rely on "past experience" i.e what people do, instead of sense, take a look at libc: free, strlen and strcpy are just a few of the many examples that don't accept NULL. Having sanity checks everywhere is not "safer", it just hides bugs

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Daniel Willmann
Hi, On 09/05/2012 02:12 PM, Tom Hacohen wrote: > free, strlen and strcpy are just a few of the many examples that don't > accept NULL. Having sanity checks everywhere is not "safer", it just I agree with most things you said, just one note from the free() man page: "Otherwise, or if free(ptr) h

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Christopher Michael
On 05/09/12 13:56, Gustavo Sverzut Barbieri wrote: > On Wednesday, September 5, 2012, Enlightenment SVN wrote: > >> Log: >> Elementary: Revert all framespace changes. >> >>NB: This means elm will be broken in wayland for a while while I sort >>out what went wrong in evas. > > > What if you

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Tom Hacohen
On 05/09/12 16:26, Daniel Willmann wrote: > Hi, > > On 09/05/2012 02:12 PM, Tom Hacohen wrote: >> free, strlen and strcpy are just a few of the many examples that don't >> accept NULL. Having sanity checks everywhere is not "safer", it just > > I agree with most things you said, just one note from

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread ChunEon Park
So we use EINA_ MACROS? what should be removed in release version simply. -Regards, Hermet- -Original Message- From: "Tom Hacohen" To: "Enlightenment developer list"; Cc: Sent: 2012-09-05 (수) 22:12:42 Subject: Re: [E-devel] Add Null Chekc

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Cedric BAIL
On Wed, Sep 5, 2012 at 3:37 PM, Christopher Michael wrote: > On 05/09/12 13:56, Gustavo Sverzut Barbieri wrote: >> On Wednesday, September 5, 2012, Enlightenment SVN wrote: >>> Log: >>> Elementary: Revert all framespace changes. >>> >>>NB: This means elm will be broken in wayland for a while w

Re: [E-devel] E SVN: discomfitor IN trunk/e: config/mobile config/standard src/bin src/modules/conf_keybindings

2012-09-05 Thread Eduardo Lima (Etrunko)
HERO On Wed, Sep 5, 2012 at 10:46 AM, Enlightenment SVN wrote: > Log: > add two new maximize modes: left and right > these will maximize a window to either the left or the right half of the > screen, respectively > work started by etrunko in ticket #1422 > > > Author: discomfitor > Dat

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Christopher Michael
On 05/09/12 14:52, Cedric BAIL wrote: > On Wed, Sep 5, 2012 at 3:37 PM, Christopher Michael > wrote: >> On 05/09/12 13:56, Gustavo Sverzut Barbieri wrote: >>> On Wednesday, September 5, 2012, Enlightenment SVN wrote: Log: Elementary: Revert all framespace changes. NB: This

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Michael Blumenkrantz
if you do, we can create a custom natural disaster warning for you much like the tsunami alerts that we use for acidx On Wed, Sep 5, 2012 at 2:56 PM, Christopher Michael wrote: > On 05/09/12 14:52, Cedric BAIL wrote: > > On Wed, Sep 5, 2012 at 3:37 PM, Christopher Michael > > wrote: > >> On 05/0

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Daniel Juyung Seo
On Wed, Sep 5, 2012 at 10:12 PM, Tom Hacohen wrote: > Why should we? It makes really no sense. And if you want to rely on "past > experience" i.e what people do, instead of sense, take a look at libc: > free, strlen and strcpy are just a few of the many examples that don't > accept NULL. Having sa

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Daniel Juyung Seo
I think EFL is younger than them and we still have a chance to avoid crashing. Daniel Juyung Seo (SeoZ) On Wed, Sep 5, 2012 at 10:39 PM, Tom Hacohen wrote: > On 05/09/12 16:26, Daniel Willmann wrote: >> Hi, >> >> On 09/05/2012 02:12 PM, Tom Hacohen wrote: >>> free, strlen and strcpy are just a f

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Daniel Juyung Seo
Do you mean EINA_ARG_NONNULL? As far as I know, they don't do anything. They are just warning from header documentation. That's why they are not used that much and removed from some EFL libs several months ago. Daniel Juyung Seo (SeoZ) On Wed, Sep 5, 2012 at 5:29 PM, Cedric BAIL wrote: > On Wed,

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Tom Hacohen
On 05/09/12 17:18, Daniel Juyung Seo wrote: > On Wed, Sep 5, 2012 at 10:12 PM, Tom Hacohen wrote: >> Why should we? It makes really no sense. And if you want to rely on "past >> experience" i.e what people do, instead of sense, take a look at libc: >> free, strlen and strcpy are just a few of the

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Tom Hacohen
On 05/09/12 17:22, Daniel Juyung Seo wrote: > Do you mean EINA_ARG_NONNULL? > As far as I know, they don't do anything. > They are just warning from header documentation. > That's why they are not used that much and removed from some EFL libs > several months ago. They were removed because raster

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Tom Hacohen
They can change it whenever they want, they can change strlen not to crash now if they want to, but they don't, and there's a good reason for that. -- Tom. On 05/09/12 17:20, Daniel Juyung Seo wrote: > I think EFL is younger than them and we still have a chance to avoid crashing. > > Daniel Juy

[E-devel] [patch][elementary] calendar - add access feature, access - add _elm_access_edje_object_part_object_unregister();

2012-09-05 Thread Kim Shinwoo
dear all, hello. the attachment has accessibility feature which is for the elm_calendar. and moreover.. it would be better to keep one more api for the access which name is _elm_access_edje_object_part_object_unregister(); in the case of calendar item, its text part could be set with empty value i

Re: [E-devel] E SVN: discomfitor IN trunk/e/src: bin modules/fileman

2012-09-05 Thread Gustavo Sverzut Barbieri
On Wed, Sep 5, 2012 at 10:12 AM, Michael Blumenkrantz < michael.blumenkra...@gmail.com> wrote: > because window titles in fileman can already be quite long. > > then an edje part that overlays, at least for a while, showing the current sort method in use? Alternatively it could be a button somewh

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Gustavo Sverzut Barbieri
On Wed, Sep 5, 2012 at 10:52 AM, Cedric BAIL wrote: > On Wed, Sep 5, 2012 at 3:37 PM, Christopher Michael > wrote: > > On 05/09/12 13:56, Gustavo Sverzut Barbieri wrote: > >> On Wednesday, September 5, 2012, Enlightenment SVN wrote: > >>> Log: > >>> Elementary: Revert all framespace changes. > >

Re: [E-devel] E SVN: devilhorns trunk/elementary/src/lib

2012-09-05 Thread Gustavo Sverzut Barbieri
On Wed, Sep 5, 2012 at 10:37 AM, Christopher Michael wrote: > On 05/09/12 13:56, Gustavo Sverzut Barbieri wrote: > >> On Wednesday, September 5, 2012, Enlightenment SVN wrote: >> >> Log: >>> Elementary: Revert all framespace changes. >>> >>>NB: This means elm will be broken in wayland for a

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Vincent Torri
On Wed, Sep 5, 2012 at 4:31 PM, Tom Hacohen wrote: > On 05/09/12 17:18, Daniel Juyung Seo wrote: >> On Wed, Sep 5, 2012 at 10:12 PM, Tom Hacohen wrote: >>> Why should we? It makes really no sense. And if you want to rely on "past >>> experience" i.e what people do, instead of sense, take a look a

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Daniel Juyung Seo
On Wed, Sep 5, 2012 at 11:31 PM, Tom Hacohen wrote: > On 05/09/12 17:18, Daniel Juyung Seo wrote: >> >> On Wed, Sep 5, 2012 at 10:12 PM, Tom Hacohen >> wrote: >>> >>> Why should we? It makes really no sense. And if you want to rely on "past >>> experience" i.e what people do, instead of sense, ta

Re: [E-devel] [E-Devel] Evas Textblock Bug

2012-09-05 Thread Hwanny Kim
2012. 9. 5. 오후 10:07 Tom Hacohen 작성: > Fixed, r76195. I'm sorry it took so long. > > -- > Tom. > Thanks! I'll test it :) > On 31/08/12 11:05, Bluezery wrote: >> Hello, >> >> I have a problem when using TEXTBLOCK part in edje. >> Some tags are not seems to be applied when textblock style is chane

Re: [E-devel] Function e_dbus_request_name

2012-09-05 Thread Lucas De Marchi
On Wed, Sep 5, 2012 at 8:14 AM, Vincent Torri wrote: > On Wed, Sep 5, 2012 at 12:28 PM, Carsten Haitzler > wrote: >> On Wed, 05 Sep 2012 05:39:08 + (GMT) Zbigniew Kosinski >> said: >> >> what are you doing asking for a NULL name? that's non-sensical. it's >> definitely >> an error in your

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Hwanny Kim
I think that maintain issue is more important than performance. (except kernel or etc..) and there are so many dumb developers like me :) 2012. 9. 6. 오전 1:15 Daniel Juyung Seo 작성: > On Wed, Sep 5, 2012 at 11:31 PM, Tom Hacohen wrote: >> On 05/09/12 17:18, Daniel Juyung Seo wrote: >>> >>> On Wed

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Tom Hacohen
On 05/09/12 19:14, Daniel Juyung Seo wrote: > I am sick and tired of hearing that "EFL code sucks" because of those > missing exception handlings. > I'm out, so I'll give you a full reply tomorrow, but just regarding this sentence: maybe you need to start talking to other people, i.e not the peop

Re: [E-devel] E SVN: discomfitor trunk/e/src/bin

2012-09-05 Thread Daniel Juyung Seo
arggg E17 still shows popup whenever it restarts. http://imagebin.org/227291 It's too late today, I will figure it out why tomorrow. Daniel Juyung Seo (SeoZ) On Thu, Sep 6, 2012 at 1:47 AM, Enlightenment SVN wrote: > Log: > revert gadcon event thingy, this causes a stupid gadman bug crash which

Re: [E-devel] E SVN: discomfitor trunk/e/src/bin

2012-09-05 Thread Michael Blumenkrantz
On Thu, 6 Sep 2012 02:04:31 +0900 Daniel Juyung Seo wrote: > arggg E17 still shows popup whenever it restarts. > http://imagebin.org/227291 > It's too late today, I will figure it out why tomorrow. > > Daniel Juyung Seo (SeoZ) run in xephyr with gdb attached. working fine here

Re: [E-devel] EFL Gentoo Packages

2012-09-05 Thread Thomas Sachau
Gustavo Sverzut Barbieri schrieb: > Hi all, > > I'd like to ask the official Gentoo maintainer of EFL packages to > please update the portage to include the following: >- EFL 1.7 (as per Rasterman's announcement, none of 1.7 are there, > some released are missing) This would require some more

Re: [E-devel] Function e_dbus_request_name

2012-09-05 Thread Vincent Torri
On Wed, Sep 5, 2012 at 6:31 PM, Lucas De Marchi wrote: > On Wed, Sep 5, 2012 at 8:14 AM, Vincent Torri wrote: >> On Wed, Sep 5, 2012 at 12:28 PM, Carsten Haitzler >> wrote: >>> On Wed, 05 Sep 2012 05:39:08 + (GMT) Zbigniew Kosinski >>> said: >>> >>> what are you doing asking for a NULL nam

Re: [E-devel] [PATCH] Add context clip for Wayland framespace

2012-09-05 Thread Paulo Alcantara
Hi Christopher, From: Christopher Michael Date: Wed, 05 Sep 2012 07:38:57 +0100 > Well, in theory this looks & sounds good. I applied the patch and ran > some tests, but it still does not fix the non-smart > objectsessentially with this applied, the results are still the > same, so I don't s

Re: [E-devel] Function e_dbus_request_name

2012-09-05 Thread Eduardo Lima (Etrunko)
On Wed, Sep 5, 2012 at 3:42 PM, Vincent Torri wrote: > On Wed, Sep 5, 2012 at 6:31 PM, Lucas De Marchi > wrote: >> On Wed, Sep 5, 2012 at 8:14 AM, Vincent Torri >> wrote: >>> On Wed, Sep 5, 2012 at 12:28 PM, Carsten Haitzler >>> wrote: On Wed, 05 Sep 2012 05:39:08 + (GMT) Zbigniew Ko

[E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread Michael Blumenkrantz
Hi, [announcement] I've just received acceptance for a presentation about the road to and release of E17 at Linuxcon EU (Barcelona, November 5-7). [request] In order to not ruin the impact of this presentation and the publicity building up to it, I am hereby requesting that anyone who has any ide

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread Eduardo Lima (Etrunko)
On Wed, Sep 5, 2012 at 4:24 PM, Michael Blumenkrantz wrote: > Hi, > > [announcement] > I've just received acceptance for a presentation about the road to and release > of E17 at Linuxcon EU (Barcelona, November 5-7). > > [request] > In order to not ruin the impact of this presentation and the publ

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread Iván Briano
2012/9/5 Eduardo Lima (Etrunko) : > On Wed, Sep 5, 2012 at 4:24 PM, Michael Blumenkrantz > wrote: >> Hi, >> >> [announcement] >> I've just received acceptance for a presentation about the road to and >> release >> of E17 at Linuxcon EU (Barcelona, November 5-7). >> >> [request] >> In order to not

Re: [E-devel] E SVN: glima trunk/elementary/src/lib

2012-09-05 Thread Vincent Torri
On Wed, Sep 5, 2012 at 9:43 PM, Enlightenment SVN wrote: > Log: > [elm] It won't hurt to have it here. wrong assumption : on Windows, including the headers here and there can break compilation. I don't know if that commit breaks compilation, but remember that for the future Vincent > > Less i

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread Tom Hacohen
On 05/09/12 22:36, Iván Briano wrote: > 2012/9/5 Eduardo Lima (Etrunko) : >> On Wed, Sep 5, 2012 at 4:24 PM, Michael Blumenkrantz >> wrote: >>> Hi, >>> >>> [announcement] >>> I've just received acceptance for a presentation about the road to and >>> release >>> of E17 at Linuxcon EU (Barcelona, N

Re: [E-devel] Function e_dbus_request_name

2012-09-05 Thread Vincent Torri
On Wed, Sep 5, 2012 at 9:18 PM, Eduardo Lima (Etrunko) wrote: > On Wed, Sep 5, 2012 at 3:42 PM, Vincent Torri wrote: >> On Wed, Sep 5, 2012 at 6:31 PM, Lucas De Marchi >> wrote: >>> On Wed, Sep 5, 2012 at 8:14 AM, Vincent Torri >>> wrote: On Wed, Sep 5, 2012 at 12:28 PM, Carsten Haitzler

Re: [E-devel] E SVN: glima trunk/elementary/src/lib

2012-09-05 Thread Gustavo Lima Chaves
* Vincent Torri [2012-09-05 22:04:01 +0200]: > On Wed, Sep 5, 2012 at 9:43 PM, Enlightenment SVN > wrote: > > Log: > > [elm] It won't hurt to have it here. > > wrong assumption : on Windows, including the headers here and there > can break compilation. I don't know if that commit breaks compila

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread Steven Le Roux
It could be great to announce it in live from the presentation... but some of the guys waiting with confetti and horn :), capturing that on tape :) an other date could be the 25th of december, but this is not the best timeslot to have a maximum audience. (many vacations). So as suggested previous

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread Vincent Torri
i would prefer next 13th on a Wednesday, to improve our chances to release e17. 13th september 2013 (see the year ?) ;) On Wed, Sep 5, 2012 at 9:54 PM, Steven Le Roux wrote: > It could be great to announce it in live from the presentation... but > some of the guys waiting with confetti and horn

Re: [E-devel] E SVN: glima trunk/elementary/src/lib

2012-09-05 Thread Vincent Torri
On Wed, Sep 5, 2012 at 10:43 PM, Gustavo Lima Chaves wrote: > * Vincent Torri [2012-09-05 22:04:01 +0200]: > >> On Wed, Sep 5, 2012 at 9:43 PM, Enlightenment SVN >> wrote: >> > Log: >> > [elm] It won't hurt to have it here. >> >> wrong assumption : on Windows, including the headers here and ther

Re: [E-devel] E SVN: bdilly IN trunk/GAMES: . efbb efbb/data efbb/data/images efbb/data/levels efbb/data/sound efbb/data/theme efbb/data/theme/fonts efbb/data/theme/images efbb/m4 efbb/src efbb/src/bi

2012-09-05 Thread Bruno Dilly
Hey guys, I've just sent to svn a new game based on EFL, using EPhysics. If you have some time, please test it and send some feedback. As usual, bug reports, new features (patches or requests) and levels are very welcome. I've worked with Ricardo Almeida and Marina Proni on it. I'm going to writ

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread The Rasterman
On Thu, 6 Sep 2012 01:14:34 +0900 Daniel Juyung Seo said: > I am sick and tired of hearing that "EFL code sucks" because of those > missing exception handlings. and do these people bitch about libc too? checking the programmers bad and non-sensical input is a nicety we do in some places. it is

Re: [E-devel] EFL Gentoo Packages

2012-09-05 Thread Gustavo Sverzut Barbieri
On Wed, Sep 5, 2012 at 3:09 PM, Thomas Sachau wrote: > Gustavo Sverzut Barbieri schrieb: >> Hi all, >> >> I'd like to ask the official Gentoo maintainer of EFL packages to >> please update the portage to include the following: >>- EFL 1.7 (as per Rasterman's announcement, none of 1.7 are there

Re: [E-devel] EFL Gentoo Packages

2012-09-05 Thread Dennis.Yxun
Hi Barbieri: On Thu, Sep 6, 2012 at 9:00 AM, Gustavo Sverzut Barbieri wrote: > On Wed, Sep 5, 2012 at 3:09 PM, Thomas Sachau wrote: >> Gustavo Sverzut Barbieri schrieb: >>> Hi all, >>> >>> I'd like to ask the official Gentoo maintainer of EFL packages to >>> please update the portage to include

Re: [E-devel] EFL Gentoo Packages

2012-09-05 Thread Gustavo Sverzut Barbieri
On Wed, Sep 5, 2012 at 10:34 PM, Dennis.Yxun wrote: > > Hi Barbieri: > > On Thu, Sep 6, 2012 at 9:00 AM, Gustavo Sverzut Barbieri > wrote: > > On Wed, Sep 5, 2012 at 3:09 PM, Thomas Sachau wrote: > >> Gustavo Sverzut Barbieri schrieb: > >>> Hi all, > >>> > >>> I'd like to ask the official Gentoo

Re: [E-devel] EFL Gentoo Packages

2012-09-05 Thread Dennis.Yxun
On Thu, Sep 6, 2012 at 9:34 AM, Dennis.Yxun wrote: > Hi Barbieri: > > On Thu, Sep 6, 2012 at 9:00 AM, Gustavo Sverzut Barbieri > wrote: >> On Wed, Sep 5, 2012 at 3:09 PM, Thomas Sachau wrote: >>> Gustavo Sverzut Barbieri schrieb: Hi all, I'd like to ask the official Gentoo maintai

Re: [E-devel] EFL Gentoo Packages

2012-09-05 Thread Dennis.Yxun
On Thu, Sep 6, 2012 at 9:39 AM, Gustavo Sverzut Barbieri wrote: > On Wed, Sep 5, 2012 at 10:34 PM, Dennis.Yxun wrote: >> >> Hi Barbieri: >> >> On Thu, Sep 6, 2012 at 9:00 AM, Gustavo Sverzut Barbieri >> wrote: >> > On Wed, Sep 5, 2012 at 3:09 PM, Thomas Sachau wrote: >> >> Gustavo Sverzut Barbi

Re: [E-devel] EFL Gentoo Packages

2012-09-05 Thread David Seikel
On Wed, 5 Sep 2012 22:00:33 -0300 Gustavo Sverzut Barbieri wrote: > On Wed, Sep 5, 2012 at 3:09 PM, Thomas Sachau > wrote: > > Gustavo Sverzut Barbieri schrieb: > >> Hi all, > >> > >> I'd like to ask the official Gentoo maintainer of EFL packages to > >> please update the portage to include the

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread David Seikel
On Wed, 5 Sep 2012 16:36:33 -0300 Iván Briano wrote: > 2012/9/5 Eduardo Lima (Etrunko) : > > On Wed, Sep 5, 2012 at 4:24 PM, Michael Blumenkrantz > > wrote: > >> Hi, > >> > >> [announcement] > >> I've just received acceptance for a presentation about the road to > >> and release of E17 at Linuxc

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread Lucas De Marchi
On Wed, Sep 5, 2012 at 4:24 PM, Michael Blumenkrantz wrote: > Hi, > > [announcement] > I've just received acceptance for a presentation about the road to and release > of E17 at Linuxcon EU (Barcelona, November 5-7). > > [request] > In order to not ruin the impact of this presentation and the publ

Re: [E-devel] [e-users] EFL Dev day planning

2012-09-05 Thread The Rasterman
On Wed, 5 Sep 2012 12:56:04 +0200 Cedric BAIL said: May i add that there may be further ad-hoc events thrown in during the Linuxcon and EFL dev-day period. like some tapas, beer, or whatever else people get up to evenings in barcelona! :) > Hello every one, > > As you may know on November 5, 20

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread Iván Briano
2012/9/5 Lucas De Marchi : > On Wed, Sep 5, 2012 at 4:24 PM, Michael Blumenkrantz > wrote: >> Hi, >> >> [announcement] >> I've just received acceptance for a presentation about the road to and >> release >> of E17 at Linuxcon EU (Barcelona, November 5-7). >> >> [request] >> In order to not ruin t

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread The Rasterman
On Wed, 5 Sep 2012 23:38:39 -0300 Lucas De Marchi said: > On Wed, Sep 5, 2012 at 4:24 PM, Michael Blumenkrantz > wrote: > > Hi, > > > > [announcement] > > I've just received acceptance for a presentation about the road to and > > release of E17 at Linuxcon EU (Barcelona, November 5-7). > > > > [

Re: [E-devel] elm: repair check for clearenv

2012-09-05 Thread The Rasterman
On Wed, 5 Sep 2012 13:57:41 +0200 Leif Middelschulte said: > Am 04.09.2012 um 22:59 schrieb Vincent Torri : > > > On Tue, Sep 4, 2012 at 8:34 PM, Leif Middelschulte > > wrote: > >> Am 04.09.2012 um 19:55 schrieb Vincent Torri : > >> > >>> On Tue, Sep 4, 2012 at 7:26 PM, Leif Middelschulte > >>

Re: [E-devel] ANNOUNCEMENT: REGARDING E17 RELEASE

2012-09-05 Thread David Seikel
On Thu, 6 Sep 2012 11:41:26 +0900 Carsten Haitzler (The Rasterman) wrote: > On Wed, 5 Sep 2012 23:38:39 -0300 Lucas De Marchi > said: > > > On Wed, Sep 5, 2012 at 4:24 PM, Michael Blumenkrantz > > wrote: > > > Hi, > > > > > > [announcement] > > > I've just received acceptance for a presentatio

Re: [E-devel] E SVN: bdilly IN trunk/GAMES: . efbb efbb/data efbb/data/images efbb/data/levels efbb/data/sound efbb/data/theme efbb/data/theme/fonts efbb/data/theme/images efbb/m4 efbb/src efbb/src/bi

2012-09-05 Thread Cedric BAIL
Yo man ! On Thu, Sep 6, 2012 at 6:54 AM, Bruno Dilly wrote: > Hey guys, > > I've just sent to svn a new game based on EFL, using EPhysics. > If you have some time, please test it and send some feedback. > > As usual, bug reports, new features (patches or requests) and levels > are very welcome. >

Re: [E-devel] Add Null Chekcing Routine in eet_lib

2012-09-05 Thread Daniel Juyung Seo
On Thu, Sep 6, 2012 at 8:54 AM, Carsten Haitzler wrote: > On Thu, 6 Sep 2012 01:14:34 +0900 Daniel Juyung Seo > said: > >> I am sick and tired of hearing that "EFL code sucks" because of those >> missing exception handlings. > > and do these people bitch about libc too? checking the programmers

  1   2   >