Re: [E-devel] elev8 commit tsunami

2012-04-12 Thread Gustavo Sverzut Barbieri
in V8 as well, they have a great networking library, with helpers for most webservices like google+, twitter and facebook. They have a bold user base, with big companies as well. And they still do not have any UI toolkit... we'd be the first! -- Gustavo

Re: [E-devel] [PATCH][EET] Patch to remove the alpha from image header while saving if the alpha is set to 1 but the image is fully opaque

2012-04-13 Thread Gustavo Sverzut Barbieri
___ > enlightenment-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -

Re: [E-devel] eina_str_split an order of magnitude slower than clojure.string.split

2012-04-16 Thread Gustavo Sverzut Barbieri
27;s quite space efficient for the return value, a single allocation is done to contain it all. But is it really useful? Does it matter? -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19

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

2012-04-18 Thread Gustavo Sverzut Barbieri
; end: > #endif > @@ -1991,3 +2043,4 @@ >(void) args; > #endif > } > + > > > > -- > Better than sec? Nothing is better than sec when it comes to > monit

Re: [E-devel] [Query][E-Notify] Enotification sending does not work if sender and receiver(running the notification daemon) run under different user

2012-04-18 Thread Gustavo Sverzut Barbieri
g list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 92

Re: [E-devel] E SVN: cedric IN trunk: eina/src/examples eina/src/include eina/src/lib eina/src/tests evas/src/modules/engines/buffer

2012-04-20 Thread Gustavo Sverzut Barbieri
e pushed at head or at tail. Also, push() is not present in lists, for instance. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 --

Re: [E-devel] E SVN: glima IN trunk/THEMES: darkness/elm/widgets detourious/elm/widgets efenniht/elm

2012-05-02 Thread Gustavo Sverzut Barbieri
gt; > -- > Cedric BAIL > > -- > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Dis

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

2012-05-13 Thread Gustavo Sverzut Barbieri
ticipated. The problem is that some internals are completely upside down given the "unplanned organic growth" of elementary. If we started to create Elementary from scratch like that, we'd have less code and by far less inconsistencies. For instance, the theme API breakage is due that,

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

2012-05-14 Thread Gustavo Sverzut Barbieri
On Mon, May 14, 2012 at 6:19 AM, Daniel Juyung Seo wrote: > On Mon, May 14, 2012 at 12:14 AM, Gustavo Sverzut Barbieri > wrote: >> On Thu, May 10, 2012 at 5:10 AM, Daniel Juyung Seo >> wrote: >>> Thanks for the great effort. >>> But I have a question abo

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

2012-05-21 Thread Gustavo Sverzut Barbieri
___ > enlightenment-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: barbi...

Re: [E-devel] E SVN: jaehwan IN trunk/elementary: . data/themes/widgets src/bin src/lib

2012-05-22 Thread Gustavo Sverzut Barbieri
) NULL; > + Widget_Data *wd = elm_widget_data_get(obj); > + if (!wd) return NULL; > + return (Elm_Object_Item *) wd->more_item; > +} > + > EAPI void > elm_toolbar_item_icon_set(Elm_Object_Item *it, const char *icon) > { > @@ -1665,6 +1846,12 @@ >

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

2012-05-23 Thread Gustavo Sverzut Barbieri
CHECKS_DISABLE. But really, the check is pretty irrelevant... if you consider the cost of a comparison instruction it's way smaller than a function call, that we do a lot. Usually these checks exist only on function entrance and not on hot-paths. Then leave the safety checks and the benefit

Re: [E-devel] E SVN: jaehwan IN trunk/elementary: . data/themes/widgets src/bin src/lib

2012-05-23 Thread Gustavo Sverzut Barbieri
ey will change their mind, then the code is unused by everyone :-/ And being a hack, I'd leave the hack to other places instead of Elementary. In your case, you can place the toolbar inside a box, and add padding rectangles to sides. Then you calculate the toolbar item size, the amount needed, resiz

Re: [E-devel] About ecore_pipe_add/del pair

2012-05-23 Thread Gustavo Sverzut Barbieri
o not RECOMMEND it to people :-) [if you don't call any ecore_evas_*, then there is no need to ecore_evas_init()...] -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: barbi...@gm

Re: [E-devel] About ecore_pipe_add/del pair

2012-05-23 Thread Gustavo Sverzut Barbieri
13:03:42 -0300 Gustavo Sverzut Barbieri > said: > >> On Wed, May 23, 2012 at 7:49 AM, Carsten Haitzler >> wrote: >>> On Mon, 7 May 2012 19:09:45 +0900 (KST) Jiyoun Park >>> said: >>> >>> hmm realistically ecore_init and shutdown (same reall

Re: [E-devel] About ecore_pipe_add/del pair

2012-05-23 Thread Gustavo Sverzut Barbieri
12 22:50:10 -0300 Gustavo Sverzut Barbieri > said: > >> As I tried to explain you save lines of code, adds inconsistencies since >> elementary will not be able to cover everything. Unfortunately we disagree on >> the best approach. > > it already covers all of cor

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

2012-05-24 Thread Gustavo Sverzut Barbieri
> +   elm_hoversel_hover_parent_set((Evas_Object *)data, NULL); >  } If you're fixing indent, then remove this ugly (Evas_Object*) cast. It's not required in C. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems ---

Re: [E-devel] Signal hooks on elm_icon

2012-05-24 Thread Gustavo Sverzut Barbieri
know about this? Or it's a code-only feature that we can consider as a bug and remove soon (do a deprecation warning in the next release, then may remove in further) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: b

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

2012-05-24 Thread Gustavo Sverzut Barbieri
t shouldn't be required in WebKit-EFL in any way. At least I need to alert the webkit-efl reviewers to consider that. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Sk

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

2012-05-24 Thread Gustavo Sverzut Barbieri
On Thu, May 24, 2012 at 11:09 AM, Carsten Haitzler wrote: > On Thu, 24 May 2012 16:51:07 +0300 Tom Hacohen said: > >> On 24/05/12 16:46, Gustavo Sverzut Barbieri wrote: >> > On Wed, May 23, 2012 at 11:38 PM, Enlightenment SVN >> >  wrote: >> >> >&g

Re: [E-devel] [Patch] Elementary : Elm_slider widget enhancements – modular design to display indicator text at the top of slider.

2012-05-24 Thread Gustavo Sverzut Barbieri
r. It > is up to the profile to decide the customized UI. > > Can someone review the code and merge it in the svn elementary. I'm not too sure it should be a module. Why a simple style is not enough? -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems

Re: [E-devel] [Patch] Elementary : Elm_slider widget enhancements – modular design to display indicator text at the top of slider.

2012-05-24 Thread Gustavo Sverzut Barbieri
it's used as the popup. The old themes should still work as they do... and no extra module is needed. If you agree with that, then please provide a new patch. Again, thanks for your explanation of the problem :-) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems

Re: [E-devel] About ecore_pipe_add/del pair

2012-05-26 Thread Gustavo Sverzut Barbieri
Ouch, this got a bit out of hand. Bluezery confirm your suggestion so far is: - in every _shutdown() function, check if counter is already 0 and call EINA_LOG_CRITICAL("module MODNAME already shutdown") and do not make counter negative (<0). [maybe not eina_log_critical() as m

Re: [E-devel] [Patch] Elementary : Elm_slider widget enhancements – modular design to display indicator text at the top of slider.

2012-05-28 Thread Gustavo Sverzut Barbieri
he top of > touch area. IMO they are not mandatory now. The positioning can be easily solved by overlay/indicator geometry. Remember that in Edje/Evas objects can overflow as they wish and they will be visible. anyway. The window one can be done later, if needed. --

Re: [E-devel] eina_simple_xml patch

2012-05-28 Thread Gustavo Sverzut Barbieri
                } > > and I'm wondering if it is needed or not (i don't think so, as my > patch does already that) but I prefer to ask in case i missed > something Vincent, it shouldn't be needed as you spotted! But it is worth to test as I can't right now. -- Gustavo

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

2012-05-28 Thread Gustavo Sverzut Barbieri
does, before emitting a 'clicked' signal -- we > gotta track if the mouse down was also done inside the object and > so. Please prove me wrong, if it's the case. Yes, blindly issuing "clicked" on mouse up is bad :-/ -- Gustavo Sverzut Barbieri http://profusion.mobi

Re: [E-devel] [Patch][Ecore] ecore_shutdown never return below zero

2012-05-29 Thread Gustavo Sverzut Barbieri
Looks good to me! On Tuesday, May 29, 2012, Bluezery wrote: > Dear EFL developers, > > This patch checks the internal value of ecore_shutdown() as Gustavo > Sverzut Barbieri suggested in > > http://www.mail-archive.com/[email protected]/msg4

Re: [E-devel] E SVN: jaehwan IN trunk/elementary: . data/themes/widgets src/bin src/lib

2012-05-29 Thread Gustavo Sverzut Barbieri
s feature. > > > > I totally agree on Seoz points. First have them to prove why this is > > the case, otherwise you introduce new code that is unneeded and people > > have to maintain it... and if I know designers well

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

2012-05-29 Thread Gustavo Sverzut Barbieri
On Tue, May 29, 2012 at 1:26 AM, Vincent Torri wrote: > On Tue, May 29, 2012 at 4:07 AM, Daniel Juyung Seo > wrote: >> Hello, >> >> On Tue, May 29, 2012 at 6:03 AM, Gustavo Sverzut Barbieri >> wrote: >>> On Mon, May 28, 2012 at 5:41 PM, Gustavo Lima Chave

Re: [E-devel] eina_simple_xml patch

2012-05-29 Thread Gustavo Sverzut Barbieri
On Tue, May 29, 2012 at 1:50 AM, Vincent Torri wrote: > On Mon, May 28, 2012 at 8:30 PM, Gustavo Sverzut Barbieri > wrote: >> On Mon, May 28, 2012 at 3:12 PM, Vincent Torri >> wrote: >>> Hey >>> >>> here is a patch that fix a bug in eina_simple_x

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

2012-05-29 Thread Gustavo Sverzut Barbieri
t_data_get(obj); >    if (!wd) return; > +   if (count < 1) return; If so, then EINA_SAFETY_ON_TRUE_RETURN(count < 1); it will play nice and warn the user. I know the line before !wd is checked without such, but in that case ELM_CHECK_WIDTYPE would have complained anyway, making th

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

2012-05-29 Thread Gustavo Sverzut Barbieri
case it's quite simple to apply a sed and fix files. Actually that's what Glima did. I'm truly thinking that this behavior of not introducing a warning is bad as it will get more code being hurt in the future. -- Gustavo Sve

Re: [E-devel] E SVN: jaehwan IN trunk/elementary: . data/themes/widgets src/bin src/lib

2012-05-29 Thread Gustavo Sverzut Barbieri
; > > >> > > > > >> In current toolbar, there are more item. If the more item is > > clicked, > > > > the > > > > >> menu widget is shown the below of toolbar. > > > > >> It is shown not available space, too. >

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Gustavo Sverzut Barbieri
latest in malware > > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > > ___ > > enlightenment-devel mailing list > > [email protected] > > https://lists.sourceforg

Re: [E-devel] E SVN: gastal trunk/eina/doc/img

2012-05-31 Thread Gustavo Sverzut Barbieri
polluting the list and can be of harm as svn may decide to reformat the document (native end of line, etc) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 ---

Re: [E-devel] E SVN: cedric IN trunk/edje: . src/bin src/lib

2012-06-04 Thread Gustavo Sverzut Barbieri
It would be amazing if we could detect and warn user that his theme could be improved by moving some rectangles to this new type (rects with all states with transparent colors). -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: barbi...@gm

Re: [E-devel] E SVN: cedric IN trunk/edje: . src/bin src/lib

2012-06-04 Thread Gustavo Sverzut Barbieri
On Mon, Jun 4, 2012 at 9:50 AM, Gustavo Sverzut Barbieri wrote: > On Sun, Jun 3, 2012 at 11:57 PM, Enlightenment SVN > wrote: >> >> Log: >> edje: morning speed of edje. Theme can now be a little bit lighter and >> faster. >> >>  NOTE: VIRTUAL part a

Re: [E-devel] E SVN: cedric IN trunk/edje: . src/bin src/lib

2012-06-04 Thread Gustavo Sverzut Barbieri
On Mon, Jun 4, 2012 at 10:10 AM, Cedric BAIL wrote: > On Mon, Jun 4, 2012 at 2:53 PM, Gustavo Sverzut Barbieri > wrote: >> On Mon, Jun 4, 2012 at 9:50 AM, Gustavo Sverzut Barbieri >> wrote: >>> On Sun, Jun 3, 2012 at 11:57 PM, Enlightenment SVN >>> wrot

Re: [E-devel] [Patch] emotion-gstreamer : add fimcconvert element on device

2012-06-05 Thread Gustavo Sverzut Barbieri
odebin would use it automatically, improving all the users of such helper, including emotion. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 ---

Re: [E-devel] Wiki logins

2012-06-05 Thread Gustavo Sverzut Barbieri
e culprit here. :) That was the whole point > of this thread! Glima, that's why he said to check with monospaced font: it's g1ima, with a number one instead of letter "L" -- Gustavo Sverzut Barbieri http:

Re: [E-devel] New blog about Elev8

2012-06-05 Thread Gustavo Sverzut Barbieri
! Jonas Gastal already added it to our planet. Let's people know how to write less and produce more with Elev8 and then Easy UI (posts to come about it as well) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems ---

Re: [E-devel] [Patch] emotion-gstreamer : add fimcconvert element on device

2012-06-06 Thread Gustavo Sverzut Barbieri
On Wed, Jun 6, 2012 at 12:14 AM, Cedric BAIL wrote: > > On Tue, Jun 5, 2012 at 4:39 PM, Gustavo Sverzut Barbieri > wrote: > > On Tue, Jun 5, 2012 at 4:22 AM, Sohyun Kim > > wrote: > >> I've made a patch for emotion-gstreamer. > >> When I tested vi

Re: [E-devel] E SVN: discomfitor trunk/devs/mike_m

2012-06-06 Thread Gustavo Sverzut Barbieri
t that's something we can add to a secondary generated makefile that the compile one calls (or includes) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 --

Re: [E-devel] Widget inheritance images

2012-06-06 Thread Gustavo Sverzut Barbieri
ist". But then it would be nice to check python and graphviz :-/ -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 -

Re: [E-devel] E SVN: discomfitor trunk/devs/mike_m

2012-06-06 Thread Gustavo Sverzut Barbieri
system. but I was lazy and hand installed them all as needed :-P -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19

[E-devel] Eio: why Eio_Filter_Direct_Cb x Eio_Filter_Dir_Cb?

2012-06-12 Thread Gustavo Sverzut Barbieri
27;s a mistake, then just add the missing const and let's be happy :-) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 --

Re: [E-devel] Keep or remove HAL support in E and EFM for the release?

2012-06-14 Thread Gustavo Sverzut Barbieri
rity and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > ___ > enlightenment-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- Gustavo Sverzut

Re: [E-devel] Eio: why Eio_Filter_Direct_Cb x Eio_Filter_Dir_Cb?

2012-06-14 Thread Gustavo Sverzut Barbieri
On Tue, Jun 12, 2012 at 9:37 PM, Cedric BAIL wrote: > Yop, > > On Wed, Jun 13, 2012 at 5:27 AM, Gustavo Sverzut Barbieri > wrote: >> Any reason why Eio_Filter_Direct_Cb and Eio_Filter_Dir_Cb are >> different given a 'const' on the last argument? It see

Re: [E-devel] E SVN: acidx IN trunk/PROTO/elev8: . data/javascript src/bin

2012-06-14 Thread Gustavo Sverzut Barbieri
pps using it! -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 -- Live Security Virtual Conferen

Re: [E-devel] Terminology - time to talk.

2012-06-17 Thread Gustavo Sverzut Barbieri
here > to have a terminal finally that uses the libs we go around making. :) It went a good amount since the first days, but basic terminal stuff as the ncurses boxes break, and I still can't get áé to be composed by it. It's basically unusable to do "make menuconfig" for kern

Re: [E-devel] [e-users] Terminology - time to talk.

2012-06-17 Thread Gustavo Sverzut Barbieri
idget. you'll have to change the license... as it's gpl-2 now. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 --

[E-devel] Terminology changes

2012-06-17 Thread Gustavo Sverzut Barbieri
d and save to multiple keys... however right now we're saving a single "config" key as before. * added "mild.edj" theme that is bit more legible as it does have a plain background instead of highlight. -- Gustavo Sverzut Barbieri http://p

Re: [E-devel] [e-users] Terminology - time to talk.

2012-06-17 Thread Gustavo Sverzut Barbieri
On Sun, Jun 17, 2012 at 8:37 PM, Carsten Haitzler wrote: > On Sun, 17 Jun 2012 11:57:15 -0300 Gustavo Sverzut Barbieri > said: > >> On Sun, Jun 17, 2012 at 7:21 AM, Carsten Haitzler >> wrote: >> > So I got a little bit of stuff done while on holiday the week b

[E-devel] Ecore_X and deadkeys support (wrt Terminology and Elementary)

2012-06-18 Thread Gustavo Sverzut Barbieri
t; "us" Option "XkbVariant" "intl" EndSection Your keyboard will remain in american standard, but whenever you type composited keys it should wait (type ' and it won't show, then you must type space to get it plain as I

Re: [E-devel] [e-users] Terminology - time to talk.

2012-06-18 Thread Gustavo Sverzut Barbieri
On Sun, Jun 17, 2012 at 10:27 PM, Carsten Haitzler wrote: > On Sun, 17 Jun 2012 21:43:05 -0300 Gustavo Sverzut Barbieri > said: > >> On Sun, Jun 17, 2012 at 8:37 PM, Carsten Haitzler >> wrote: >> > On Sun, 17 Jun 2012 11:57:15 -0300 Gustavo Sverzut Barbieri >>

Re: [E-devel] Ecore_X and deadkeys support (wrt Terminology and Elementary)

2012-06-18 Thread Gustavo Sverzut Barbieri
On Mon, Jun 18, 2012 at 6:51 PM, Gustavo Sverzut Barbieri wrote: > Hi there, > > While investigating for terminology so it would accept composed keys > used in Brazil (acute/' + a = á, acute/' + space = '), I just realized > Elementary's elm_entry is also broke

Re: [E-devel] E SVN: raster IN trunk/terminology: data/themes data/themes/images src/bin

2012-06-19 Thread Gustavo Sverzut Barbieri
cursor as well? -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 -- Live Security Virtual Conference

Re: [E-devel] [e-users] Terminology - time to talk.

2012-06-19 Thread Gustavo Sverzut Barbieri
other > terminal.  I'm fine with that being done in this wp2 style.  The other > is to provide useful information at a glance, without having to do > anything other than look.  That's the useful functionality that will be >

Re: [E-devel] [e-users] Terminology - time to talk.

2012-06-19 Thread Gustavo Sverzut Barbieri
t fit into your idea of what a flash > program should look like.  Most people are not expecting flash from a > terminal program. > > You can make it flash all you want, but if it's only doing half the > job, you can't call it "better&quo

Re: [E-devel] E SVN: jihoon trunk/ecore/src/modules/immodules/xim

2012-06-19 Thread Gustavo Sverzut Barbieri
o convert other existing checks to this. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 --

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

2012-06-19 Thread Gustavo Sverzut Barbieri
, but it's not. That would mean some callbacks are still pending and were not deleted. If that was the case, then if the callback is called it would access the now-deleted memory. Maybe investigate why the callbacks were not deleted? Alternatively you should check how to delete the call

Re: [E-devel] [e-users] Terminology - time to talk.

2012-06-19 Thread Gustavo Sverzut Barbieri
when you > run top from gnome-terminal for instance. check with the mild theme: terminology -t mild.edj maybe it's that glare on top of text. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbar

Re: [E-devel] E SVN: jihoon trunk/ecore/src/modules/immodules/xim

2012-06-19 Thread Gustavo Sverzut Barbieri
On 19/06/2012, at 23:21, Jihoon Kim wrote: > Thanks for your comment. > I've fixed and committed according to your comment. I saw, thanks! > > On Wednesday, June 20, 2012, Gustavo Sverzut Barbieri wrote: > >> On Tue, Jun 19, 2012 at 12:18 PM, Enlightenment SVN &g

Re: [E-devel] E17 BUG CALL

2012-06-20 Thread Gustavo Sverzut Barbieri
as changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______ > enlightenment-devel mailing list > [email protected]

Re: [E-devel] E17 BUG CALL

2012-06-20 Thread Gustavo Sverzut Barbieri
On Wed, Jun 20, 2012 at 7:18 PM, Vincent Torri wrote: > On Wed, Jun 20, 2012 at 3:58 PM, Gustavo Sverzut Barbieri > wrote: >> On Wednesday, June 20, 2012, Stefan Schmidt wrote: >> >>> Hello. >>> >>> On 06/20/2012 02:11 PM, Lucas De Marchi wrote: &

Re: [E-devel] [Patch] elm_toolbar add signals patch.

2012-06-21 Thread Gustavo Sverzut Barbieri
Added signals for new style of toolbar (align icon > and text to center of item). > > You must handle the case when these are unset, sending the "hide" signals -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: barbi.

Re: [E-devel] [Patch] [Edje] Added: Pulseaudio remix plug-in for edje multisense module

2012-06-21 Thread Gustavo Sverzut Barbieri
nnecessary multisense framework initialization during EDC > compilation/decompilation mode. > So, during EDC compilation, _on_edjecc=EINA_TRUE in edje_cc.c and hence, > _edje_multisense_init() is being ignored in edje_main.c. No, never do this. One should have a global setter and maybe a

Re: [E-devel] [Patch] [Edje] Added: Pulseaudio remix plug-in for edje multisense module

2012-06-21 Thread Gustavo Sverzut Barbieri
fine to keep it on. It's like a lazy-loaded singleton. As edje_cc will never edje_object_file_set() it will never hit the path to load multisense. Then we're fine for it and every other software that does not use it. -- Gustavo Sverzut Barbieri http://profusion.mobi embedd

Re: [E-devel] enlightenment-devel Digest, Vol 74, Issue 116

2012-06-21 Thread Gustavo Sverzut Barbieri
ovide the haptics feedback, and that used by Edje. Getting things right from the beginning are way less painful than fix it later ;-) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarb

Re: [E-devel] E SVN: raster trunk/evas/src/lib/engines/common

2012-06-21 Thread Gustavo Sverzut Barbieri
20a4, 0xa3, >> +        0x, 0x0 >> +     }; >>    Font_Char_Index result; >>    //FT_UInt ret; >> >> @@ -498,6 +533,22 @@ >>  #ifdef HAVE_PTHREAD >>  //   pthread_mutex_unlock(&fi->ft_mutex); >>  #endif > > are you sure that you don't h

Re: [E-devel] E SVN: raster trunk/terminology/src/bin

2012-06-23 Thread Gustavo Sverzut Barbieri
he ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _________

Re: [E-devel] E SVN: raster trunk/terminology/src/bin

2012-06-23 Thread Gustavo Sverzut Barbieri
On Sat, Jun 23, 2012 at 12:47 PM, Carsten Haitzler wrote: > On Sat, 23 Jun 2012 12:41:34 -0300 Gustavo Sverzut Barbieri > said: > >> There should be a better way to do this. >> >> I noticed it because Alt-f/b doesn't work as well, so are other letters. >> &g

Re: [E-devel] E SVN: raster IN trunk/terminology: . data/themes src/bin

2012-06-24 Thread Gustavo Sverzut Barbieri
ou see a commit of mine with lots of comments of elm_cnp? I was trying to implement drop from other apps to terminology and got crazy with the amount of errors it have :-( Even if you do not get the commit, see the source file. -- Gustavo Sverzut Barbieri http://profusion.mob

Re: [E-devel] E SVN: stefan IN trunk: . SCRIPTS/buildbot

2012-06-26 Thread Gustavo Sverzut Barbieri
On Tue, Jun 26, 2012 at 11:01 AM, Enlightenment SVN wrote: > Log: > SCRIPTS/buildbot: Enable coverage for edje. > >  It works fine here locally lets hope its the same on buildbot YAY! More people to help with that! :-) -- Gustavo Sverzut Barbieri http://profusion.mobi embe

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

2012-06-26 Thread Gustavo Sverzut Barbieri
e benefit at the end is that we could deprecate/remove all the elm_*_scroll_policy_set() and similar, having a single one that operates on such interface. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype:

Re: [E-devel] systemd user sessions support e17

2012-06-26 Thread Gustavo Sverzut Barbieri
works on systemd for Tizen :-) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 -- Live

Re: [E-devel] E SVN: bdilly IN trunk: . ephysics ephysics/data ephysics/data/logo_images ephysics/data/themes ephysics/data/themes/images ephysics/doc ephysics/doc/img ephysics/m4 ephysics/src ephysic

2012-06-26 Thread Gustavo Sverzut Barbieri
alpha), integrate with Edje and so on. Check out the video, it's pretty neat: http://www.youtube.com/watch?v=v_R6mgNnORc -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN:

Re: [E-devel] Magic checks before NULL checks in Eina

2012-06-28 Thread Gustavo Sverzut Barbieri
will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > ___ > enlightenment-devel mailing list > [email protected]

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

2012-06-28 Thread Gustavo Sverzut Barbieri
m/jaw/sfrnl04242012/114/50122263/ > ___________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > -- Gustavo Sverzut Barbieri http://profusion.mobi em

Re: [E-devel] E SVN: cedric IN trunk/PROTO: . edi edi/src edi/src/bin

2012-06-29 Thread Gustavo Sverzut Barbieri
but nothing for efl... as there are other front-ends I believe it should not be an impossible task, and you benefit people that already use emacs :-) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: barbi...@gmail.

Re: [E-devel] E SVN: acidx trunk/PROTO/elev8/src/bin

2012-06-29 Thread Gustavo Sverzut Barbieri
rtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/s

[E-devel] crazy suspend on idle?!

2012-06-29 Thread Gustavo Sverzut Barbieri
;t stop to track the reason of such, I did not change any e17 settings recently then it's something that was introduced these days... does someone know what could be that VERY ANNOYING issue? -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems --

Re: [E-devel] crazy suspend on idle?!

2012-06-30 Thread Gustavo Sverzut Barbieri
On Sat, Jun 30, 2012 at 2:45 AM, Carsten Haitzler wrote: > On Fri, 29 Jun 2012 18:58:54 -0300 Gustavo Sverzut Barbieri > said: > >> Hi there, >> >> Since some week (or 2) my laptop started to suspend when idle for no >> specific reason. As I had updated other c

Re: [E-devel] E SVN: barbieri IN trunk/e: . data data/desktop src/bin

2012-06-30 Thread Gustavo Sverzut Barbieri
his? whenever I need to open the file manager (gui) from my current working directory. secondly is to be able to choose efm to open directories from mime handlers. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gs

Re: [E-devel] E SVN: bdilly trunk/ephysics

2012-07-01 Thread Gustavo Sverzut Barbieri
On Sun, Jul 1, 2012 at 4:35 AM, Tom Hacohen wrote: > I guess that Samsung paid for the development... Yes, they paid and that's why we changed :-) -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gs

Re: [E-devel] E SVN: caro IN trunk/eina: . m4/common src/tests

2012-07-01 Thread Gustavo Sverzut Barbieri
er) n... this is bad, coverage is annoying and I just enable it when I really want to do coverage check. yet I always have the coverage tools in my sys. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: g

Re: [E-devel] E SVN: caro IN trunk/eina: . m4/common src/tests

2012-07-01 Thread Gustavo Sverzut Barbieri
. then a bit of > coverage is probably what you also want to test too. the coverage will complain loud about changes to files, common with incremental builds. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] S

Re: [E-devel] E SVN: barbieri IN trunk: . econnman econnman/data econnman/data/desktop

2012-07-01 Thread Gustavo Sverzut Barbieri
ry if it exists. Note3: eventually (as my time allows or people help) we will convert this to native/C and make people happy. Until then we have it in Python. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded sys

Re: [E-devel] [PATCH] eina: Do not always perform magic checks on _free() and _del() (was Re: Magic checks before NULL checks in Eina)

2012-07-02 Thread Gustavo Sverzut Barbieri
One could argue that passing NULL should be equivalent to an empty >loop. For example, right now >eina_iterator_foreach(NULL, ..., ...) >generates a magic check error message, while >EINA_ITERATOR_FOREACH(NULL, ...) >does not. > > -- Gustavo Sverzut

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

2012-07-03 Thread Gustavo Sverzut Barbieri
f (first_map_bug < 0) > { > char *bug = NULL; > @@ -1671,14 +1717,41 @@ > } > } > > +#define _USE_WIN_ROT_EFFECT 1 > + > +#if _USE_WIN_ROT_EFFECT > +static void _ecore_evas_x_flush_pre(void *data, Evas *e __UNUSED__, void > *event_info __UNUSED__); > + > +typedef struct _Ecore_Evas_X

Re: [E-devel] [SOLVED] Problem with indicator space in conformant

2012-07-03 Thread Gustavo Sverzut Barbieri
xcessive...) to Tizen and blogpost about the results. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 -

Re: [E-devel] E SVN: raster IN trunk/terminology: . src/bin

2012-07-03 Thread Gustavo Sverzut Barbieri
n so configured applications will work and no need to have a specific setting for "browser" and "mail client" everywhere. actually xdg-open and similar tools are bit unaware of EFL specific things, maybe something to look as well. -- Gustavo Sverzut Barbieri htt

Re: [E-devel] E SVN: devilhorns trunk/evas

2012-07-03 Thread Gustavo Sverzut Barbieri
th an open source > project instead of just dumping code and expecting them to merge it > themselves. > I don't see that happening if we are always cleaning up their mess. +1 and having to maintain these patches out-of-tre

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

2012-07-03 Thread Gustavo Sverzut Barbieri
split the cosmetic/whitespace/reindent/rewrap into different patches than the actual changes. It was super annoying to review this, and maybe something passed unnoticed because of this mess. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN:

Re: [E-devel] [SOLVED] Problem with indicator space in conformant

2012-07-03 Thread Gustavo Sverzut Barbieri
On Tue, Jul 3, 2012 at 2:33 PM, Carsten Haitzler wrote: > On Tue, 3 Jul 2012 13:45:59 -0300 Gustavo Sverzut Barbieri > said: > >> On Tue, Jul 3, 2012 at 11:56 AM, ChunEon Park wrote: >> >> > Even the raser is correct, >> > Unfortunately, you don'

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

2012-07-03 Thread Gustavo Sverzut Barbieri
o->engine_data, data); + } which may impact something. If it was clear that the first one was just cosmetic and split into another patch, we could ignore it and just look at the relevant changes. -- Gustavo Sverzut Barbieri http://profusio

Re: [E-devel] E SVN: raster IN trunk/terminology: . src/bin

2012-07-03 Thread Gustavo Sverzut Barbieri
wrote: >> >> > On Tue, 3 Jul 2012 13:47:49 -0300 Gustavo Sverzut Barbieri >> > mailto:[email protected])> said: >> > >> > > On Tue, Jul 3, 2012 at 12:25 PM, Enlightenment SVN < >> > > [email protected] (mailto:no-re...@enlig

Re: [E-devel] E SVN: bdilly trunk/ephysics/src/bin

2012-07-03 Thread Gustavo Sverzut Barbieri
dje, "restart", "test-theme", >> _restart, >> - test_data); >> + elm_layout_signal_callback_add(test_data->layout, "restart", >> "test-theme", >> +

[E-devel] Corinthians campeão da libertadores 2012

2012-07-04 Thread Gustavo Sverzut Barbieri
See Twitter trending topics! No more, --the Champion! PS: Chupa Argentina! Chupa Boca Juniors! PS2: Chelsea, you're the next! -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -- MSN: [email protected] Skype: gsbarbieri Mobile: +5

Re: [E-devel] E SVN: raster trunk/terminology/src/bin

2012-07-05 Thread Gustavo Sverzut Barbieri
in_icon_name_set(win, icon_name); > + if (role) elm_win_role_set(win, role); > + > elm_win_autodel_set(win, EINA_TRUE); > - > - elm_win_title_set(win, "Terminology"); > - elm_win_icon_name_set(win, "Terminology"); > - > + > o = eva

  1   2   3   4   5   6   7   8   9   10   >