Re: [E-devel] [Patch][elm_config]check if input value, cache_flush_poll_interval is greater than zero

2012-05-21 Thread ChunEon Park
I think... your comment is ambiguous.. User may expect the false when they call the elm_config_cache_flush_enabled_get. I just added comment by myself. * @note The @p size must greater than 0. if not, the cache flush will be ignored. Anyway, thank you for reporting. -

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

2012-05-21 Thread Hyoyoung Chang
Yeah. u'r right. I added some checking routines. thanks PS: could you change your default mail mode to txt? or just set to not convert ">" as ">"? On Tue, May 22, 2012 at 1:22 PM, ChunEon Park wrote: > It missed simple null checking after malloc. > > > + char *stripstr = malloc(sizeof(char) * (d

Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread Vincent Torri
On Tue, May 22, 2012 at 3:24 AM, 강도연 wrote: > I added ChangeLog, NEWS, document. :) > And this will be used for error handling. i really would prefer a patch with error handling in ecore_x (xcb and xlib) + ecore_evas_x, to see how you deal with such error codes. Especially if you break API or not

Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread ChunEon Park
It would be better if the return type of ecore_x_error_code_get is changed to Ecore_X_Error_Code also. -Regards, Hermet- -Original Message- From: "Doyoun Kang" To: "Enlightenment developer list"

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

2012-05-21 Thread ChunEon Park
It missed simple null checking after malloc. + char *stripstr = malloc(sizeof(char) * (data->length + 1));+ strncpy(stripstr, (char *)data->data, data->length); -Regards, Hermet- -Original Message- From: "Enlightenment SVN"

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

2012-05-21 Thread Gustavo Lima Chaves
* Carsten Haitzler [2012-05-22 08:42:00 +0900]: > On Mon, 21 May 2012 11:17:32 -0300 Gustavo Lima Chaves > said: > > > * Enlightenment SVN [2012-05-20 21:17:11 > > -0700]: > > > > > Log: > > > due to use obj structure if sd->api is null.. we have crashes - eg if > > > webkit not supported.

Re: [E-devel] [Patch][elm_config]check if input value, cache_flush_poll_interval is greater than zero

2012-05-21 Thread Bluezery
2012/5/21 ChunEon Park : > > Actually, both cases  almost same. > But your patch would not be able to prevent the invalid flush value when it > is loaded from the config file. Yes, right.. ! It is better to change the documentation. Please review again. And it would be better to change the inp

Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread Doyoun Kang
This enum can be used for error handling by apps or e's modules which want to handle x-error. :) Doyoun --- Original Message --- Sender : Christopher Michael Date : 2012-05-22 06:09 (GMT+09:00) Title : Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration Doyoun, As this looks to be

Re: [E-devel] [Patch][elc_ctxpopup] Remove

2012-05-21 Thread Bluezery
2012/5/21 Daniel Juyung Seo : > Yes, Hermet is right. > Btw, bluezery, is there any problem with this code? > Daniel Juyung Seo (SeoZ) No problem actually :) But elm_win holds NULL sub-object after ctx_popup is deleted. This is a potential problem. And error message is unpleasant to me :( > On

Re: [E-devel] fix non-NULL-terminated string bug when performing copy/paste using ELM_SEL_FORMAT_HTML

2012-05-21 Thread Hyoyoung Chang
in svn, thanks On Tue, May 22, 2012 at 12:30 AM, Michal Pakula vel Rutka wrote: > Dear EFL Developers, > > I have found a bug which occurs when using elm_selection_set and > elm_selection_get with ELM_SEL_FORMAT_HTML for non elm-entry. If copied > string has i.e. 4 character ("TEST") Elm_Select

Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread Doyoun Kang
I attached file. :) --- Original Message --- Sender : doyoun.k...@samsung.com Date : 2012-05-22 10:24 (GMT+09:00) Title : Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration I added ChangeLog, NEWS, document. :) And this will be used for error handling. -

Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread 강도연
I added ChangeLog, NEWS, document. :) And this will be used for error handling. -- Ecore_X_Error_Code err_code; err_code = ecore_x_error_code_get(); if (err_code == ECORE_X_ERROR_CODE_SUCCESS) { // Do something } else if (err_code == ECORE_X_ERROR_C

Re: [E-devel] [PATCH] python-elementary: Add missing callbacks and AnchorInfo for AnchorHoverInfo in Entry widget.

2012-05-21 Thread Daniel Juyung Seo
+1 here. i also thought the same thing. i just hope he continues contributing on this stuff. anyhow great! On May 22, 2012 8:42 AM, "Carsten Haitzler" wrote: > On Mon, 21 May 2012 19:09:56 +0200 Boris Faure said: > > > On Mon, May 21, 2012 at 7:07 PM, David Seikel wrote: > > > On Mon, 21 May 20

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

2012-05-21 Thread Sung W. Park
yeah.. i don't like that kind of stuff either. but as Carsten said, it was out of necessity. :-( Sung On Tue, May 22, 2012 at 8:39 AM, Carsten Haitzler wrote: > On Mon, 21 May 2012 14:36:17 +0200 Vincent Torri > said: > > > On Mon, May 21, 2012 at 1:51 PM, Carsten Haitzler > > wrote: > > > O

[E-devel] edje_cc is lazy.

2012-05-21 Thread David Seikel
Just a reminder to Cedric to fix up what he broke in edje_cc. It falls asleep quite often, never stopping. He said last night in IRC that disabling glib integration will fix that, but it made no difference. Trying to compile latest SVN I have to "killall -TERM edje_cc" all the damn time. Seems

Re: [E-devel] [PATCH] python-elementary: Add missing callbacks and AnchorInfo for AnchorHoverInfo in Entry widget.

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 19:09:56 +0200 Boris Faure said: > On Mon, May 21, 2012 at 7:07 PM, David Seikel wrote: > > On Mon, 21 May 2012 18:56:18 +0200 Boris Faure > > wrote: > > > >> On Mon, May 21, 2012 at 5:21 PM, Kai Huuhko > >> wrote: > >> > --- > >> >  .../elementary/elementary.c_elementary_e

Re: [E-devel] Bug report - keybindings don't work while Everything is open

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 15:13:34 +0300 Tom Hacohen said: > On 21/05/12 14:56, Carsten Haitzler (The Rasterman) wrote: > > not here - they fail miserably setting multiple kbd layouts > > Just with jp for some reason we still don't understand... :) i tested with all of the country codes supported and

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

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 11:17:32 -0300 Gustavo Lima Chaves said: > * Enlightenment SVN [2012-05-20 21:17:11 -0700]: > > > Log: > > due to use obj structure if sd->api is null.. we have crashes - eg if > > webkit not supported. fix this. (no no changelog as ita part of the > > whole new structur

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

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 14:36:17 +0200 Vincent Torri said: > On Mon, May 21, 2012 at 1:51 PM, Carsten Haitzler > wrote: > > On Mon, 21 May 2012 10:04:06 +0200 Vincent Torri > > said: > > > > this code is actually right. > > i didn't say that it was wrong. I just said that i don't like that > kind

Re: [E-devel] using LZ4 compression tool in eet ?

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 20:47:46 +0200 thomas.kuel...@gmail.com said: > Sounds Great ! > > If i do understand properly, > LZ4 is supposed to improve eet user experience thanks to better > responsiveness, due to faster ressource loading time and/or less memory > usage ? > > If that's correct, will

Re: [E-devel] MinGW packages of the newest EFL

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 14:44:26 +0200 Vincent Torri said: > On Mon, May 21, 2012 at 12:29 PM, Carsten Haitzler > wrote: > > On Sat, 5 May 2012 13:02:07 +0200 Vincent Torri > > said: > > > > and for the bizarre and wonderful - i tried this under wine... and it WORKS. > > amazingly. well window goes

Re: [E-devel] [Patch][Efreet] Add parameter checking to exported API (efreet_desktop)

2012-05-21 Thread Christopher Michael
On 05/21/12 16:34, Sebastian Dransfeld wrote: > On 05/21/2012 08:24 AM, Bluezery wrote: >> Hello, >> >> Some efreet APIs do not check input parameters. So I add checking by >> using EINA_SAFETY_ON_XXX(). >> ISO/IEC statndards says that "If an argument to a function has an >> invalid value, behavio

Re: [E-devel] [Patch][Efreet] Add parameter checking to exported API (efreet_desktop)

2012-05-21 Thread Sebastian Dransfeld
On 05/21/2012 08:24 AM, Bluezery wrote: > Hello, > > Some efreet APIs do not check input parameters. So I add checking by > using EINA_SAFETY_ON_XXX(). > ISO/IEC statndards says that "If an argument to a function has an > invalid value, behavior is undefined" . But this is just for the > primitiv

Re: [E-devel] Fwd: [PATCH] Wayland: Port ecore to the wl_seat

2012-05-21 Thread Christopher Michael
After actually reading this patch, It is generally acceptable :) Thanks for that !! :) Tho be aware that I am going to modify it slightly to fir EFL formatting better. Other than that, I see no actual CODE changes that need to be made for this patch. Good Work All Around !! ;) Expect it to hit

Re: [E-devel] [PATCH] python-elementary: Add missing callbacks and AnchorInfo for AnchorHoverInfo in Entry widget.

2012-05-21 Thread Boris Faure
On Mon, May 21, 2012 at 7:07 PM, David Seikel wrote: > On Mon, 21 May 2012 18:56:18 +0200 Boris Faure > wrote: > >> On Mon, May 21, 2012 at 5:21 PM, Kai Huuhko >> wrote: >> > --- >> >  .../elementary/elementary.c_elementary_entry.pxi   |  295 >> > .../include/elementary/c_el

Re: [E-devel] [PATCH] python-elementary: Add missing callbacks and AnchorInfo for AnchorHoverInfo in Entry widget.

2012-05-21 Thread David Seikel
On Mon, 21 May 2012 18:56:18 +0200 Boris Faure wrote: > On Mon, May 21, 2012 at 5:21 PM, Kai Huuhko > wrote: > > --- > >  .../elementary/elementary.c_elementary_entry.pxi   |  295 > > .../include/elementary/c_elementary.pxd > >      |    1 + 2 files changed, 179 insertions(+

Re: [E-devel] [PATCH] python-elementary: Add missing callbacks and AnchorInfo for AnchorHoverInfo in Entry widget.

2012-05-21 Thread Boris Faure
On Mon, May 21, 2012 at 5:21 PM, Kai Huuhko wrote: > --- >  .../elementary/elementary.c_elementary_entry.pxi   |  295 > >  .../include/elementary/c_elementary.pxd            |    1 + >  2 files changed, 179 insertions(+), 117 deletions(-) In svn like the previous ones :) --

Re: [E-devel] [patch] allow copy and paste operations for non-widget evas objects

2012-05-21 Thread Gustavo Sverzut Barbieri
Hi Michal, I don't fully understand your approach. Yes, WebKit-EFL should never use anything from Elementary, however it should provide hooks, virtuals or something to extend WebKit-EFL to provide the required functions. That was the case with Menu and ComboBox/Selection or creating new windows in

Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread Christopher Michael
Doyoun, As this looks to be just an added enum to the header, I would say that it is OK to go in. Nothing in the current API is using it, so no breakage :) However, this begs the question ... What point is adding an Enum if NO CODE is using it ?? dh On 05/21/12 04:20, Doyoun Kang wrote: > Dea

[E-devel] fix non-NULL-terminated string bug when performing copy/paste using ELM_SEL_FORMAT_HTML

2012-05-21 Thread Michal Pakula vel Rutka
Dear EFL Developers, I have found a bug which occurs when using elm_selection_set and elm_selection_get with ELM_SEL_FORMAT_HTML for non elm-entry. If copied string has i.e. 4 character ("TEST") Elm_Selection_Data returns 4 instead of returning 5 in case of using ELM_SEL_FORMAT_TEXT, and pasted

[E-devel] [PATCH] python-elementary: Add missing callbacks and AnchorInfo for AnchorHoverInfo in Entry widget.

2012-05-21 Thread Kai Huuhko
--- .../elementary/elementary.c_elementary_entry.pxi | 295 .../include/elementary/c_elementary.pxd|1 + 2 files changed, 179 insertions(+), 117 deletions(-) diff --git a/python-elementary/elementary/elementary.c_elementary_entry.pxi b/python-elementary/ele

[E-devel] [patch] allow copy and paste operations for non-widget evas objects

2012-05-21 Thread Michal Pakula vel Rutka
Dear EFL developers, I am currently implementing a clipboard for WebKit-EFL. When using elm_cnp_selection_get and set function an evas object passed has to be a widget. Currently in WebKit-EFL we are using an view which is an Evas_Object, but not a widget. Sample WebKit applications like EWebL

[E-devel] Fwd: [PATCH] Wayland: Port ecore to the wl_seat

2012-05-21 Thread Christopher Michael
Alex, Thank you for the patch :-) I am out of the office today as i am relocating to a new apartment but I will be back in the office tomorrow morning and I will have a looj at this patch first thing in the morning. Cheers and Thanks again :-) devilhorns Sent from Samsung mobile Or

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

2012-05-21 Thread Gustavo Lima Chaves
* Enlightenment SVN [2012-05-20 21:17:11 -0700]: > Log: > due to use obj structure if sd->api is null.. we have crashes - eg if > webkit not supported. fix this. (no no changelog as ita part of the > whole new structure changes) I wonder how is this code path where sd->api does not exist...

[E-devel] [PATCH] Wayland: Port ecore to the wl_seat

2012-05-21 Thread zhiwen . wu
From: Alex Wu This commit tracks the changes in wayland input protocol from wl_input_device to wl_seat. --- src/lib/ecore_wayland/Ecore_Wayland.h |6 +- src/lib/ecore_wayland/ecore_wl_input.c | 133 +-- src/lib/ecore_wayland/ecore_wl_window.c | 14 ++-- 3 fi

Re: [E-devel] E SVN: tasn trunk/PROTO/eobj

2012-05-21 Thread Tom Hacohen
On 21/05/12 12:20, Vincent Torri wrote: > On Mon, May 21, 2012 at 11:11 AM, Tom Hacohen wrote: >> On 21/05/12 12:07, Vincent Torri wrote: >>> Cflags must add dirs where the exported headers of Eo are located. You >>> have only one such header (Eo.h), so you do not need 2 locations, >>> here. You s

Re: [E-devel] MinGW packages of the newest EFL

2012-05-21 Thread Vincent Torri
On Mon, May 21, 2012 at 12:29 PM, Carsten Haitzler wrote: > On Sat, 5 May 2012 13:02:07 +0200 Vincent Torri > said: > > and for the bizarre and wonderful - i tried this under wine... and it WORKS. > amazingly. well window goes moving all around the screen by itself, but hey... > it WORKS gdammnn

Re: [E-devel] GnuGettext problems and ticket #951

2012-05-21 Thread Vincent Torri
On Mon, May 21, 2012 at 1:46 PM, Carsten Haitzler wrote: > On Fri, 18 May 2012 22:48:25 +0300 "Alex-P. Natsios" > said: > >> People seem to have some problems with the version of gnu_gettext in >> ecore and e as reported in the ticket[1]. >> This very tiny and trivial patch changes the Hard-code

Re: [E-devel] [Patch][elc_ctxpopup] Remove

2012-05-21 Thread Daniel Juyung Seo
Yes, Hermet is right. Btw, bluezery, is there any problem with this code? Daniel Juyung Seo (SeoZ) On Mon, May 21, 2012 at 7:13 PM, ChunEon Park wrote: > No. It should be called when parent is changed with > elm_ctxpopup_hover_parent_set. > In this case, parent wouldn't be deleted. > > > --

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

2012-05-21 Thread Vincent Torri
On Mon, May 21, 2012 at 1:51 PM, Carsten Haitzler wrote: > On Mon, 21 May 2012 10:04:06 +0200 Vincent Torri > said: > > this code is actually right. i didn't say that it was wrong. I just said that i don't like that kind of stuff. Vincent > evas_gl.h conflicts with gl headers - they are > mut

Re: [E-devel] GnuGettext problems and ticket #951

2012-05-21 Thread David Seikel
On Mon, 21 May 2012 20:46:30 +0900 Carsten Haitzler (The Rasterman) wrote: > On Fri, 18 May 2012 22:48:25 +0300 "Alex-P. Natsios" > said: > > > People seem to have some problems with the version of gnu_gettext in > > ecore and e as reported in the ticket[1]. > > This very tiny and trivial patch

Re: [E-devel] Bug report - keybindings don't work while Everything is open

2012-05-21 Thread Tom Hacohen
On 21/05/12 14:56, Carsten Haitzler (The Rasterman) wrote: > not here - they fail miserably setting multiple kbd layouts Just with jp for some reason we still don't understand... :) But it would have worked just fine with X calls, maybe we should do that? -- Tom. ---

Re: [E-devel] Bug report - keybindings don't work while Everything is open

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 14:45:49 +0300 Tom Hacohen said: > On 21/05/12 13:28, Carsten Haitzler (The Rasterman) wrote: > > On Fri, 04 May 2012 22:09:57 +0300 Tom Hacohen said: > > > >> Hey, > >> > >> I can't seem to be able to change keyboard layouts with my keybindings > >> (Ctrl + Space) while Ever

Re: [E-devel] E SVN: raster IN trunk/evas/src: bin lib/cserve2

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 10:53:02 +0200 Vincent Torri said: it already doesn't work on windows. it's not gotten any worse. :) it's a feature that is in the middle of being made - it's pretty much unix (even linux) specific as it relies on shm_open totally and unix socket ipc right now and later may re

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

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 10:04:06 +0200 Vincent Torri said: this code is actually right. evas_gl.h conflicts with gl headers - they are mutually exclusive since evas_gl is a one-stop shop for gl stuff when using it with evas1 - that includes all gl defines and so on. > i don't like that kind of stuff

Re: [E-devel] New evas image cache server

2012-05-21 Thread The Rasterman
On Mon, 21 May 2012 10:51:38 +0200 Vincent Torri said: > On Mon, May 21, 2012 at 10:45 AM, Carsten Haitzler > wrote: > > On Tue, 24 Apr 2012 18:53:01 -0300 Rafael Antognolli > > said: > > > > one thing... socket name selection... try /tmp/.evas-cserve2-%x.socket > > first... well after EVAS_CSE

Re: [E-devel] Bug report - keybindings don't work while Everything is open

2012-05-21 Thread Tom Hacohen
On 21/05/12 13:28, Carsten Haitzler (The Rasterman) wrote: > On Fri, 04 May 2012 22:09:57 +0300 Tom Hacohen said: > >> Hey, >> >> I can't seem to be able to change keyboard layouts with my keybindings >> (Ctrl + Space) while Everything is open. > > thats a bit of a doosey as everything grabs the k

Re: [E-devel] GnuGettext problems and ticket #951

2012-05-21 Thread The Rasterman
On Fri, 18 May 2012 22:48:25 +0300 "Alex-P. Natsios" said: > People seem to have some problems with the version of gnu_gettext in > ecore and e as reported in the ticket[1]. > This very tiny and trivial patch changes the Hard-coded version from > 0.17 to 0.18. > > [1]http://trac.enlightenment.or

Re: [E-devel] using LZ4 compression tool in eet ?

2012-05-21 Thread The Rasterman
On Sun, 13 May 2012 18:27:05 + (UTC) Thomas Kueling said: > > Torri gmail.com> said: > > > > actually forget lz4hc... lgpl3. > > > > Well, apparently no longer : > LZ4 HC just went BSD. > > http://code.google.com/p/lz4/ eet now supports both lz4 and lz4hc :) in svn only tho. -- --

Re: [E-devel] Issue with xkbswitch

2012-05-21 Thread The Rasterman
On Thu, 10 May 2012 18:15:24 +0300 Tom Hacohen said: > Hey, > > I have an issue with a certain slowness in xkbswitch's responsiveness. > > How to reproduce: > 1. Use at least 2 layouts. > 2. Assign a key to switch to the next layout. > 3. Press the combination fast twice in a row. > > Expected

Re: [E-devel] [Patch][elementary] elm_diskselector, align of icon only item

2012-05-21 Thread ChunEon Park
ok. in svn 71279. But i fixed indentations for 3 lines in your patch. We usually have 2 spaces for this case but not 3 spaces. if () x++; -Regards, Hermet- -Original Message- From: "Kim Shinwoo" To: "Enlightenmen

Re: [E-devel] MinGW packages of the newest EFL

2012-05-21 Thread The Rasterman
On Sat, 5 May 2012 13:02:07 +0200 Vincent Torri said: and for the bizarre and wonderful - i tried this under wine... and it WORKS. amazingly. well window goes moving all around the screen by itself, but hey... it WORKS gdammnnnit! well done! > Hey > > I've uploaded the MinGW packages of the lat

Re: [E-devel] Bug report - keybindings don't work while Everything is open

2012-05-21 Thread The Rasterman
On Fri, 04 May 2012 22:09:57 +0300 Tom Hacohen said: > Hey, > > I can't seem to be able to change keyboard layouts with my keybindings > (Ctrl + Space) while Everything is open. thats a bit of a doosey as everything grabs the kbd away from the action event handling core... :) we'd need multiple

Re: [E-devel] New evas image cache server

2012-05-21 Thread The Rasterman
On Thu, 3 May 2012 18:55:08 -0300 Iván Briano said: aaah here. i figured this out by now. i also fixed all tools to think/work/look at the same socket name in /tmp :) > O HAI > > We took a little bit more time than expected, but > CServe2 is now in SVN for everyone to use, test and enjoy. > >

Re: [E-devel] [Patch][elm_config]check if input value, cache_flush_poll_interval is greater than zero

2012-05-21 Thread ChunEon Park
Actually, both cases almost same. But your patch would not be able to prevent the invalid flush value when it is loaded from the config file. -Regards, Hermet- -Original Message- From: "Bluezery" To: "Enlightenment developer

Re: [E-devel] [Patch][elc_ctxpopup] Remove

2012-05-21 Thread ChunEon Park
No. It should be called when parent is changed with elm_ctxpopup_hover_parent_set. In this case, parent wouldn't be deleted. -Regards, Hermet- -Original Message- From: "Bluezery" To: "Enlightenment developer list"

Re: [E-devel] [Edje]: Bug Fix: Edje draggable jumps when external events is used.

2012-05-21 Thread The Rasterman
On Thu, 03 May 2012 07:06:24 + (GMT) SHILPA ONKAR SINGH said: looked at the patch, issue, thought about it, read the code... and... in svn! tnx! > Hi All, > > Please find attached bug fix patch for edje draggable jump issue when > external event area is used. > > Bug: When an external even

Re: [E-devel] E SVN: tasn trunk/PROTO/eobj

2012-05-21 Thread Vincent Torri
On Mon, May 21, 2012 at 11:11 AM, Tom Hacohen wrote: > On 21/05/12 12:07, Vincent Torri wrote: >> Cflags must add dirs where the exported headers of Eo are located. You >> have only one such header (Eo.h), so you do not need 2 locations, >> here. You should revert that commit > > If you look close

Re: [E-devel] E SVN: tasn trunk/PROTO/eobj

2012-05-21 Thread Tom Hacohen
On 21/05/12 12:07, Vincent Torri wrote: > Cflags must add dirs where the exported headers of Eo are located. You > have only one such header (Eo.h), so you do not need 2 locations, > here. You should revert that commit If you look closely, you'll see I put my header in ${includedir} that is, I ad

Re: [E-devel] E SVN: tasn trunk/PROTO/eobj

2012-05-21 Thread Vincent Torri
On Mon, May 21, 2012 at 10:58 AM, Enlightenment SVN wrote: > Log: > Eo: Fix pkg-config cflags. > > Author:       tasn > Date:         2012-05-21 01:58:18 -0700 (Mon, 21 May 2012) > New Revision: 71275 > Trac:         http://trac.enlightenment.org/e/changeset/71275 > > Modified: >  trunk/PROTO/eobj

Re: [E-devel] [Elementary]: Test case fail fixes. - hover, flipselector, genlist, multibuttonentry

2012-05-21 Thread The Rasterman
On Thu, 03 May 2012 06:01:21 + (GMT) SHILPA ONKAR SINGH said: at least some of these are already in svn in one way or another. i took a look, so i think no need to worry about this anymore. :) > Hi All, > > Please check the attached patch for elementary test case fail fixes. > > Genlist -

Re: [E-devel] [patch] winlist-ng make install

2012-05-21 Thread The Rasterman
On Tue, 1 May 2012 18:56:50 +0900 Jérôme Pinot said: hmm - dont need to remove the xgettext.. just add the -I m4 to aclocal :) seems someone already did this in svn :) > Hi, > > winlist-ng make install fails with this error: > > Making install in po > make[1]: Entering directory `/tmp/e_module

Re: [E-devel] E SVN: raster IN trunk/evas/src: bin lib/cserve2

2012-05-21 Thread Vincent Torri
this will not work on windows (even compilation will fail) Vincent On Mon, May 21, 2012 at 10:44 AM, Enlightenment SVN wrote: > Log: > let's make server work out of the box if u set: > >   export EVAS_CSERVE2=1 > >  (and run cserve2) > > > > Author:       raster > Date:         2012-05-21 01:44:

Re: [E-devel] New evas image cache server

2012-05-21 Thread Vincent Torri
On Mon, May 21, 2012 at 10:45 AM, Carsten Haitzler wrote: > On Tue, 24 Apr 2012 18:53:01 -0300 Rafael Antognolli > said: > > one thing... socket name selection... try /tmp/.evas-cserve2-%x.socket > first... > well after EVAS_CSERVE2_SOCKET. :) in fact i just fixed it for u in svn to at > least i

Re: [E-devel] [PATCH v2] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-21 Thread Vincent Torri
On Mon, May 21, 2012 at 10:28 AM, Joerg Sonnenberger wrote: > On Mon, May 21, 2012 at 12:15:10AM -0300, Raphael Kubo da Costa wrote: >> After talking about the previous version of the patch with raster on >> IRC, I'm sending a more conservative version that does not change the >> Linux behavior --

Re: [E-devel] New evas image cache server

2012-05-21 Thread The Rasterman
On Tue, 24 Apr 2012 18:53:01 -0300 Rafael Antognolli said: one thing... socket name selection... try /tmp/.evas-cserve2-%x.socket first... well after EVAS_CSERVE2_SOCKET. :) in fact i just fixed it for u in svn to at least it works out of the box. :) > Hello guys, > > Besides the issues raised

[E-devel] [Patch][elc_ctxpopup] Remove

2012-05-21 Thread Bluezery
Hello, When ctx_popup is deleted, it calls "elm_widget_sub_object_del(parent, popup)" so that ctx_popup's parent can delete it's sub_ojbect, "ctx_popup". But this is not needed because parent already deletes it's sub-object in elm_widget.c Thanks -- BRs, Kim. ctxpopup@remove_unnecessary_code.

Re: [E-devel] [PATCH v2] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-21 Thread Joerg Sonnenberger
On Mon, May 21, 2012 at 12:15:10AM -0300, Raphael Kubo da Costa wrote: > After talking about the previous version of the patch with raster on > IRC, I'm sending a more conservative version that does not change the > Linux behavior -- /dev/shm is expected to work on Linux, and the > non-Linux case w

Re: [E-devel] [PATCH] python-elementary: Remove traces of the Carousel widget.

2012-05-21 Thread Boris Faure
On Mon, May 21, 2012 at 7:21 AM, Kai Huuhko wrote: > --- >  python-elementary/include/elementary/c_elementary.pxd |    9 - >  1 file changed, 9 deletions(-) in svn :) -- Boris Faure -- Live Security Virtual Conf

Re: [E-devel] New evas image cache server

2012-05-21 Thread The Rasterman
On Tue, 24 Apr 2012 18:53:01 -0300 Rafael Antognolli said: is there a readme/doc/something saying how this is meant to work? > Hello guys, > > Besides the issues raised about the code, we are proud to announce > that e17 can work with the cache server already! > > We would like to ask you to t

Re: [E-devel] [PATCH] python-elementary: Align Button to C api.

2012-05-21 Thread Boris Faure
On Mon, May 21, 2012 at 7:15 AM, Kai Huuhko wrote: > --- >  .../elementary/elementary.c_elementary_button.pxi  |   98 > >  .../include/elementary/c_elementary.pxd            |    6 ++ >  2 files changed, 87 insertions(+), 17 deletions(-) in svn :) -- Boris Faure --

Re: [E-devel] [PATCH] python-elementary: Align InnerWindow to C api.

2012-05-21 Thread Boris Faure
On Sun, May 20, 2012 at 8:06 PM, Kai Huuhko wrote: > --- >  .../elementary.c_elementary_innerwindow.pxi        |   44 > +--- >  .../include/elementary/c_elementary.pxd            |    6 ++- >  2 files changed, 43 insertions(+), 7 deletions(-) in svn :) -- Boris Faure -

Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread Vincent Torri
and where are these error codes used in the xlib and xcb code ? Vincent On Mon, May 21, 2012 at 10:23 AM, Vincent Torri wrote: > missing ChangeLog entry > missing NEWS entry > missing doc (don't forget @since) > > Vincent > > On Mon, May 21, 2012 at 10:20 AM, Doyoun Kang wrote: >> Dear All, >>

Re: [E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread Vincent Torri
missing ChangeLog entry missing NEWS entry missing doc (don't forget @since) Vincent On Mon, May 21, 2012 at 10:20 AM, Doyoun Kang wrote: > Dear All, > > I added the Ecore_X_Error_Code enumeration which wraps X error codes. > I think this will be useful when the X error occurs. > Please check th

[E-devel] [Patch] Add Ecore_X_Error_Code enumeration

2012-05-21 Thread Doyoun Kang
Dear All, I added the Ecore_X_Error_Code enumeration which wraps X error codes. I think this will be useful when the X error occurs. Please check the attached patch file. Thanks. -- Doyoun Kang ecore_x.diff Description: Binary data

Re: [E-devel] [Patch][elementary] elm_diskselector, align of icon only item

2012-05-21 Thread Kim Shinwoo
Hey dear, I have revised and attached the patch based on your comments. Thanks. 2012/5/18 Kim Shinwoo : > hmm.. setting up the icon does not affect the label. signal emit functions > in the check_string() take care of label positioning. if the check_string() > is not called (or before check_string

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

2012-05-21 Thread Vincent Torri
i don't like that kind of stuff at all (not only your commit, but the inclusion of specific gl headers). Vincent On Mon, May 21, 2012 at 10:01 AM, Enlightenment SVN wrote: > Log: > Separated checks for gl2.h defines and gl2ext.h defines in Evas_GL.h. > > > Author:       sung > Date:         2012

Re: [E-devel] GnuGettext problems and ticket #951

2012-05-21 Thread Vincent Torri
On Mon, May 21, 2012 at 9:05 AM, Carsten Haitzler wrote: > On Sun, 20 May 2012 16:44:08 +0200 Vincent Torri > said: > >> On Sun, May 20, 2012 at 3:07 PM, Carsten Haitzler >> wrote: >> > On Sun, 20 May 2012 09:33:15 +0200 Vincent Torri >> > said: >> > >> >> On Sat, May 19, 2012 at 12:28 AM, Ale

Re: [E-devel] E SVN: tasn IN trunk/elementary: config/default config/illume config/standard src/lib

2012-05-21 Thread Tom Hacohen
Fixed in svn, thanks a lot for your comment. On 21/05/12 03:56, ChunEon Park wrote: > How about set the default time to 0.25? > > Currently ecore double_click_time is 0.25. > > > > > -Regards, Hermet- > > > > -Original Message- > From: "Enlightenment S

[E-devel] [Patch][elm_config]check if input value, cache_flush_poll_interval is greater than zero

2012-05-21 Thread Bluezery
Hello, "_elm_config->cache_flush_poll_interval" is used for flushing cache by ecore poller. If this value is not greater than 0, poller is disabled. But, I think that this value should be greater than 0 because there already exists "cache_flush_enable" for enable/disable cache poller. Please revi