Re: [E-devel] Problem with framebuffer

2011-11-21 Thread The Rasterman
On Mon, 21 Nov 2011 16:28:06 -0200 Gustavo Sverzut Barbieri
 said:

> On Mon, Nov 21, 2011 at 1:51 PM, Guilherme Silveira  wrote:
> > Hi all,
> >
> > I'm using framebuffer and I'm trying to use an entry, but i can't edit it,
> > after call
> > elm_entry_editable_setthe
> > same problem occurs.. I was looking for this problem in the code, and i
> > found something.. In elementary, file elm_widget.c, function _parent_focus
> > has follow condition:
> > if (sd->top_win_focused)
> > I debug and saw this value is false, so the focus can't setted..
> > Why this variable is false? I found in ecore a function that emit some
> > signals and make this variable true!
> > In elm_win.c is connected to focus event using
> > ecore_evas_callback_focus_in_set function, but the callback function is
> > never called in ecore_evas_fb..
> >
> > Do you have some ideia to fix this problem?
> 
> Should be a bug as evas_focus_in() is never called... likely the
> single-window displays are not calling it... but they should.
> 
> I can't look it now, but likely ecore_evas_fb_new() implementation is
> the way to place it.

fixed now in svn - not just for fb engine but for others too.

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] evas_ojbect_textblock, ellipsis handling

2011-11-21 Thread Kim Shinwoo
Dear Tom,

I have resolved by using "fixed: 1 1;"
It will be better than patch what I sent.
Thanks a lot!

Sincerely,
Shinwoo Kim.

2011/11/21 Tom Hacohen 

> On 21/11/11 16:04, cnook wrote:
> > Dear Mr. Tom,
> >
> > The issue comes again with different example.
> > So I have attached previous patch for resolving. (Actually I have made
> > from the latest version)
>
>
> Dear Shinwoo,
>
> As I said in a previous email to the list, a compilable example or an
> edje I can run with edje_player would be very appreciated. I currently
> can't reproduce the issue and thus I can't even check you solution works
> (I trust you that it works, but still...), nor can I verify the problem.
>
> As for your patch:
>
> c->w will be smaller than c->wmax in A LOT of cases, that's actually
> intentional, setting c->wmax to c->w makes no sense in textblock, as
> it'll break a lot of code.
>
> c->wmax is used to determine the actual *used* width, and c->w is the
> width of the textblock object.
>
> So for example, if we have a textblock with a size of 300x300 and
> assuming the string "a" * 100 (100 'a's in a row) have a width of 1000
> and that the textblock contains that string:
> c->w = 300;
> c->wmax = 1000;
>
> Making edje know that 300 is just not enough to show this string. That's
> how the min size calculation actually works.
>
> You can try adding "fixed: 1 1;" to the textblock part if you wish to
> implement your behaviour, that's exactly what it does.
>
>
> With that being said, there might be a bug there, as your condition
> should always be false in that place (or at least in the cases that
> matter), and for that, I need the example I asked for. :)
>
> --
> Tom.
>
>
>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch][Ecore][Win] Changing key name and composer for Shift, Control, Alt

2011-11-21 Thread Hyoyoung Chang
yay, i'm watching you. hehe.

keyboard is one of confusing systems.

anyway you did good job


On Tue, Nov 22, 2011 at 11:41 AM, Kim Shinwoo  wrote:
> Sorry for inconvenience.
> The Keyboard type affected.
> I have used 101 keyboard type.
> I need to change my keyboard type to 103/106.
> Eagle-eyed Hyoyoung informed. Thanks!
>
> Sincerely,
> Shinwoo Km.
>
> 2011/11/22 Kim Shinwoo 
>
>> Dear Vincent, Hello~
>>
>> Right side control and alt key does not work.
>> It does not work on the Ubuntu also.
>> So I have removed for control and alt. Please check the attached file.
>>
>> Sincerely,
>> Shinwoo Kim.
>>
>>
>> 2011/11/21 Vincent Torri 
>>
>>>
>>>
>>> On Mon, 21 Nov 2011, Kim Shinwoo wrote:
>>>
>>> > Dear Mr. Vincent, Hello!
>>> >
>>> > I have verified. It works properly.
>>> > When I press the left (or right) shift key, it gives Shift_L (or
>>> Shift_R).
>>> > When I release the left (or right) shift key, it gives Shift_L (or
>>> > Shift_R). :)
>>>
>>> check control key too
>>>
>>> Vincent
>>>
>>> >
>>> > Sincerely,
>>> > Shinwoo Kim.
>>> >
>>> >
>>> >
>>> > 2011/11/20 Vincent Torri 
>>> >
>>> >>
>>> >>
>>> >> On Thu, 17 Nov 2011, Kim Shinwoo wrote:
>>> >>
>>> >>> Dear All, Hello~
>>> >>>
>>> >>> This is Shinwoo Kim (Previously I have used cnook,
>>> kimcinoo@gmail.comfor
>>> >>> contribution)
>>> >>>
>>> >>> The key compose and name have been different with xlib. So I have
>>> changed
>>> >>> the value of Shift, Control, and Alt.
>>> >>> Moreover, the attached patch is able to distinguish between Shift_L
>>> and
>>> >>> Shift_R as xlib.
>>> >>> Please review this and give any feedbacks, Thanks!
>>> >>
>>> >> the patch was not entirely correct. I think that I have fixed it in
>>> svn.
>>> >> Could you verify, please ?
>>> >>
>>> >> Vincent
>>> >>
>>> >>
>>> >>
>>> --
>>> >> All the data continuously generated in your IT infrastructure
>>> >> contains a definitive record of customers, application performance,
>>> >> security threats, fraudulent activity, and more. Splunk takes this
>>> >> data and makes sense of it. IT sense. And common sense.
>>> >> http://p.sf.net/sfu/splunk-novd2d
>>> >> ___
>>> >> enlightenment-devel mailing list
>>> >> enlightenment-devel@lists.sourceforge.net
>>> >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>> >>
>>> >
>>> --
>>> > All the data continuously generated in your IT infrastructure
>>> > contains a definitive record of customers, application performance,
>>> > security threats, fraudulent activity, and more. Splunk takes this
>>> > data and makes sense of it. IT sense. And common sense.
>>> > http://p.sf.net/sfu/splunk-novd2d
>>> > ___
>>> > enlightenment-devel mailing list
>>> > enlightenment-devel@lists.sourceforge.net
>>> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>> >
>>> >
>>>
>>>
>>> --
>>> All the data continuously generated in your IT infrastructure
>>> contains a definitive record of customers, application performance,
>>> security threats, fraudulent activity, and more. Splunk takes this
>>> data and makes sense of it. IT sense. And common sense.
>>> http://p.sf.net/sfu/splunk-novd2d
>>> ___
>>> enlightenment-devel mailing list
>>> enlightenment-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>>
>>
>>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch][Ecore][Win] Changing key name and composer for Shift, Control, Alt

2011-11-21 Thread Kim Shinwoo
And, Control and Alt work properly!!

When I press the left (or right) control/alt key, it gives Control_L/Alt_L
(or Control_R/Alt_R).
When I release the left (or right) control/alt key, it gives
Control_L/Alt_L (or Control_R/Alt_R). :)

2011/11/22 Kim Shinwoo 

> Sorry for inconvenience.
> The Keyboard type affected.
> I have used 101 keyboard type.
> I need to change my keyboard type to 103/106.
> Eagle-eyed Hyoyoung informed. Thanks!
>
> Sincerely,
> Shinwoo Km.
>
>
> 2011/11/22 Kim Shinwoo 
>
>> Dear Vincent, Hello~
>>
>> Right side control and alt key does not work.
>> It does not work on the Ubuntu also.
>> So I have removed for control and alt. Please check the attached file.
>>
>> Sincerely,
>> Shinwoo Kim.
>>
>>
>> 2011/11/21 Vincent Torri 
>>
>>>
>>>
>>> On Mon, 21 Nov 2011, Kim Shinwoo wrote:
>>>
>>> > Dear Mr. Vincent, Hello!
>>> >
>>> > I have verified. It works properly.
>>> > When I press the left (or right) shift key, it gives Shift_L (or
>>> Shift_R).
>>> > When I release the left (or right) shift key, it gives Shift_L (or
>>> > Shift_R). :)
>>>
>>> check control key too
>>>
>>> Vincent
>>>
>>> >
>>> > Sincerely,
>>> > Shinwoo Kim.
>>> >
>>> >
>>> >
>>> > 2011/11/20 Vincent Torri 
>>> >
>>> >>
>>> >>
>>> >> On Thu, 17 Nov 2011, Kim Shinwoo wrote:
>>> >>
>>> >>> Dear All, Hello~
>>> >>>
>>> >>> This is Shinwoo Kim (Previously I have used cnook,
>>> kimcinoo@gmail.comfor
>>> >>> contribution)
>>> >>>
>>> >>> The key compose and name have been different with xlib. So I have
>>> changed
>>> >>> the value of Shift, Control, and Alt.
>>> >>> Moreover, the attached patch is able to distinguish between Shift_L
>>> and
>>> >>> Shift_R as xlib.
>>> >>> Please review this and give any feedbacks, Thanks!
>>> >>
>>> >> the patch was not entirely correct. I think that I have fixed it in
>>> svn.
>>> >> Could you verify, please ?
>>> >>
>>> >> Vincent
>>> >>
>>> >>
>>> >>
>>> --
>>> >> All the data continuously generated in your IT infrastructure
>>> >> contains a definitive record of customers, application performance,
>>> >> security threats, fraudulent activity, and more. Splunk takes this
>>> >> data and makes sense of it. IT sense. And common sense.
>>> >> http://p.sf.net/sfu/splunk-novd2d
>>> >> ___
>>> >> enlightenment-devel mailing list
>>> >> enlightenment-devel@lists.sourceforge.net
>>> >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>> >>
>>> >
>>> --
>>> > All the data continuously generated in your IT infrastructure
>>> > contains a definitive record of customers, application performance,
>>> > security threats, fraudulent activity, and more. Splunk takes this
>>> > data and makes sense of it. IT sense. And common sense.
>>> > http://p.sf.net/sfu/splunk-novd2d
>>> > ___
>>> > enlightenment-devel mailing list
>>> > enlightenment-devel@lists.sourceforge.net
>>> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>> >
>>> >
>>>
>>>
>>> --
>>> All the data continuously generated in your IT infrastructure
>>> contains a definitive record of customers, application performance,
>>> security threats, fraudulent activity, and more. Splunk takes this
>>> data and makes sense of it. IT sense. And common sense.
>>> http://p.sf.net/sfu/splunk-novd2d
>>> ___
>>> enlightenment-devel mailing list
>>> enlightenment-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>>
>>
>>
>
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread Gustavo Sverzut Barbieri
I'm fine with dir or E_Connman0_7x.h :-)

On Tuesday, November 22, 2011, Carsten Haitzler 
wrote:
> On Mon, 21 Nov 2011 18:59:16 -0200 Gustavo Sverzut Barbieri
>  said:
>
>> On Sat, Nov 19, 2011 at 7:27 AM, Carsten Haitzler 
>> wrote:
>> >
>> > On Sat, 19 Nov 2011 04:12:46 -0500 Mike Blumenkrantz 
>> > said:
>> >
>> >
>> > > imo we should always attempt to provide backwards compatibility for
as
>> > > long as possible. I recently updated the notification stuff to use
the
>> > > new spec while still checking for old-style messages, and my e17
>> > > pulseaudio code supports all versions back to 0.9.16 (I think, maybe
even
>> > > older).
>> >
>> > agreed. in fact the situation is much worse. the e connman api and abi
have
>> > been quite badly broken. see my email about it.
>>
>> ACK! Fixed the problem by removing econnman and creating new
econnman0.7x.
>>
>> Now go fix your connman-0.77 so you can benefit from nice stuff we'll
>> introduce later such as proxy, static ip, hidden network, configurable
>> nameservers/domains, etc
>
> actually... includes.. thats an issue.. should we mayeb require apps to
> include:
>
> #include 
>
> ? the problem is we add the edbus-1 dir to include path and now i also
added
> the edbus-1/connman0_7x so the econnman header doesnt conflict with the
older
> econnman one... but... we now have 2 headers with the same names and both
in
> the include path - order of include path will determine which gets used
and
> thats going to be problematic. sham we just make this a requirement
(include
> line above) then we dont have any ambiguity. the old edbus 1.0 connman can
> still be installed and used by older apps and even compiled against.
>
>
> --
> - Codito, ergo sum - "I code, therefore I am" --
> The Rasterman (Carsten Haitzler)ras...@rasterman.com
>
>

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread The Rasterman
On Mon, 21 Nov 2011 18:59:16 -0200 Gustavo Sverzut Barbieri
 said:

> On Sat, Nov 19, 2011 at 7:27 AM, Carsten Haitzler 
> wrote:
> >
> > On Sat, 19 Nov 2011 04:12:46 -0500 Mike Blumenkrantz 
> > said:
> >
> >
> > > imo we should always attempt to provide backwards compatibility for as
> > > long as possible. I recently updated the notification stuff to use the
> > > new spec while still checking for old-style messages, and my e17
> > > pulseaudio code supports all versions back to 0.9.16 (I think, maybe even
> > > older).
> >
> > agreed. in fact the situation is much worse. the e connman api and abi have
> > been quite badly broken. see my email about it.
> 
> ACK! Fixed the problem by removing econnman and creating new econnman0.7x.
> 
> Now go fix your connman-0.77 so you can benefit from nice stuff we'll
> introduce later such as proxy, static ip, hidden network, configurable
> nameservers/domains, etc

actually... includes.. thats an issue.. should we mayeb require apps to
include:

#include 

? the problem is we add the edbus-1 dir to include path and now i also added
the edbus-1/connman0_7x so the econnman header doesnt conflict with the older
econnman one... but... we now have 2 headers with the same names and both in
the include path - order of include path will determine which gets used and
thats going to be problematic. sham we just make this a requirement (include
line above) then we dont have any ambiguity. the old edbus 1.0 connman can
still be installed and used by older apps and even compiled against.


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread The Rasterman
On Mon, 21 Nov 2011 18:59:16 -0200 Gustavo Sverzut Barbieri
 said:

> On Sat, Nov 19, 2011 at 7:27 AM, Carsten Haitzler 
> wrote:
> >
> > On Sat, 19 Nov 2011 04:12:46 -0500 Mike Blumenkrantz 
> > said:
> >
> >
> > > imo we should always attempt to provide backwards compatibility for as
> > > long as possible. I recently updated the notification stuff to use the
> > > new spec while still checking for old-style messages, and my e17
> > > pulseaudio code supports all versions back to 0.9.16 (I think, maybe even
> > > older).
> >
> > agreed. in fact the situation is much worse. the e connman api and abi have
> > been quite badly broken. see my email about it.
> 
> ACK! Fixed the problem by removing econnman and creating new econnman0.7x.
> 
> Now go fix your connman-0.77 so you can benefit from nice stuff we'll
> introduce later such as proxy, static ip, hidden network, configurable
> nameservers/domains, etc

slight things to fix - include shouldnt conflict with edbus1.0 includes. fixed
in svn.


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch][Ecore][Win] Changing key name and composer for Shift, Control, Alt

2011-11-21 Thread Kim Shinwoo
Sorry for inconvenience.
The Keyboard type affected.
I have used 101 keyboard type.
I need to change my keyboard type to 103/106.
Eagle-eyed Hyoyoung informed. Thanks!

Sincerely,
Shinwoo Km.

2011/11/22 Kim Shinwoo 

> Dear Vincent, Hello~
>
> Right side control and alt key does not work.
> It does not work on the Ubuntu also.
> So I have removed for control and alt. Please check the attached file.
>
> Sincerely,
> Shinwoo Kim.
>
>
> 2011/11/21 Vincent Torri 
>
>>
>>
>> On Mon, 21 Nov 2011, Kim Shinwoo wrote:
>>
>> > Dear Mr. Vincent, Hello!
>> >
>> > I have verified. It works properly.
>> > When I press the left (or right) shift key, it gives Shift_L (or
>> Shift_R).
>> > When I release the left (or right) shift key, it gives Shift_L (or
>> > Shift_R). :)
>>
>> check control key too
>>
>> Vincent
>>
>> >
>> > Sincerely,
>> > Shinwoo Kim.
>> >
>> >
>> >
>> > 2011/11/20 Vincent Torri 
>> >
>> >>
>> >>
>> >> On Thu, 17 Nov 2011, Kim Shinwoo wrote:
>> >>
>> >>> Dear All, Hello~
>> >>>
>> >>> This is Shinwoo Kim (Previously I have used cnook,
>> kimcinoo@gmail.comfor
>> >>> contribution)
>> >>>
>> >>> The key compose and name have been different with xlib. So I have
>> changed
>> >>> the value of Shift, Control, and Alt.
>> >>> Moreover, the attached patch is able to distinguish between Shift_L
>> and
>> >>> Shift_R as xlib.
>> >>> Please review this and give any feedbacks, Thanks!
>> >>
>> >> the patch was not entirely correct. I think that I have fixed it in
>> svn.
>> >> Could you verify, please ?
>> >>
>> >> Vincent
>> >>
>> >>
>> >>
>> --
>> >> All the data continuously generated in your IT infrastructure
>> >> contains a definitive record of customers, application performance,
>> >> security threats, fraudulent activity, and more. Splunk takes this
>> >> data and makes sense of it. IT sense. And common sense.
>> >> http://p.sf.net/sfu/splunk-novd2d
>> >> ___
>> >> enlightenment-devel mailing list
>> >> enlightenment-devel@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>> >>
>> >
>> --
>> > All the data continuously generated in your IT infrastructure
>> > contains a definitive record of customers, application performance,
>> > security threats, fraudulent activity, and more. Splunk takes this
>> > data and makes sense of it. IT sense. And common sense.
>> > http://p.sf.net/sfu/splunk-novd2d
>> > ___
>> > enlightenment-devel mailing list
>> > enlightenment-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>> >
>> >
>>
>>
>> --
>> All the data continuously generated in your IT infrastructure
>> contains a definitive record of customers, application performance,
>> security threats, fraudulent activity, and more. Splunk takes this
>> data and makes sense of it. IT sense. And common sense.
>> http://p.sf.net/sfu/splunk-novd2d
>> ___
>> enlightenment-devel mailing list
>> enlightenment-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>
>
>
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch][Ecore][Win] Changing key name and composer for Shift, Control, Alt

2011-11-21 Thread Kim Shinwoo
Dear Vincent, Hello~

Right side control and alt key does not work.
It does not work on the Ubuntu also.
So I have removed for control and alt. Please check the attached file.

Sincerely,
Shinwoo Kim.

2011/11/21 Vincent Torri 

>
>
> On Mon, 21 Nov 2011, Kim Shinwoo wrote:
>
> > Dear Mr. Vincent, Hello!
> >
> > I have verified. It works properly.
> > When I press the left (or right) shift key, it gives Shift_L (or
> Shift_R).
> > When I release the left (or right) shift key, it gives Shift_L (or
> > Shift_R). :)
>
> check control key too
>
> Vincent
>
> >
> > Sincerely,
> > Shinwoo Kim.
> >
> >
> >
> > 2011/11/20 Vincent Torri 
> >
> >>
> >>
> >> On Thu, 17 Nov 2011, Kim Shinwoo wrote:
> >>
> >>> Dear All, Hello~
> >>>
> >>> This is Shinwoo Kim (Previously I have used cnook,
> kimcinoo@gmail.comfor
> >>> contribution)
> >>>
> >>> The key compose and name have been different with xlib. So I have
> changed
> >>> the value of Shift, Control, and Alt.
> >>> Moreover, the attached patch is able to distinguish between Shift_L and
> >>> Shift_R as xlib.
> >>> Please review this and give any feedbacks, Thanks!
> >>
> >> the patch was not entirely correct. I think that I have fixed it in svn.
> >> Could you verify, please ?
> >>
> >> Vincent
> >>
> >>
> >>
> --
> >> All the data continuously generated in your IT infrastructure
> >> contains a definitive record of customers, application performance,
> >> security threats, fraudulent activity, and more. Splunk takes this
> >> data and makes sense of it. IT sense. And common sense.
> >> http://p.sf.net/sfu/splunk-novd2d
> >> ___
> >> enlightenment-devel mailing list
> >> enlightenment-devel@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >>
> >
> --
> > All the data continuously generated in your IT infrastructure
> > contains a definitive record of customers, application performance,
> > security threats, fraudulent activity, and more. Splunk takes this
> > data and makes sense of it. IT sense. And common sense.
> > http://p.sf.net/sfu/splunk-novd2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> >
>
>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
Index: src/lib/ecore_win32/ecore_win32_event.c
===
--- src/lib/ecore_win32/ecore_win32_event.c	(revision 65466)
+++ src/lib/ecore_win32/ecore_win32_event.c	(working copy)
@@ -22,10 +22,6 @@
 {
ECORE_WIN32_KEY_MASK_LSHIFT = 1 << 0,
ECORE_WIN32_KEY_MASK_RSHIFT = 1 << 1,
-   ECORE_WIN32_KEY_MASK_LCONTROL = 1 << 2,
-   ECORE_WIN32_KEY_MASK_RCONTROL = 1 << 3,
-   ECORE_WIN32_KEY_MASK_LMENU = 1 << 4,
-   ECORE_WIN32_KEY_MASK_RMENU = 1 << 5
 } Ecore_Win32_Key_Mask;
 
 /* Private declarations */
@@ -858,101 +854,15 @@
   break;
}
  case VK_CONTROL:
-   {
-  SHORT res;
-
-  if (is_down)
-{
-   res = GetKeyState(VK_LCONTROL);
-   if (res & 0x8000)
- {
-_ecore_win32_key_mask |= ECORE_WIN32_KEY_MASK_LCONTROL;
-kn = "Control_L";
-ks = "Control_L";
-kc = "";
-break;
- }
-   res = GetKeyState(VK_RCONTROL);
-   if (res & 0x8000)
- {
-_ecore_win32_key_mask |= ECORE_WIN32_KEY_MASK_RCONTROL;
-kn = "Control_R";
-ks = "Control_R";
-kc = "";
-break;
- }
-}
-  else /* is_up */
-{
-   res = GetKeyState(VK_LCONTROL);
-   if (!(res & 0x8000) &&
-   (_ecore_win32_key_mask & ECORE_WIN32_KEY_MASK_LCONTROL))
- {
-kn = "Control_L";
-ks = "Control_L";
-kc = "";
-_ecore_win32_key_mask &= ~ECORE_WIN32_KEY_MASK_LCONTROL;
-break;
- }
-   res = GetKeyState(VK_RCONTROL);
-   if (!(res 

Re: [E-devel] Possible lua excess code?

2011-11-21 Thread David Seikel
On Mon, 21 Nov 2011 03:04:14 +1000 David Seikel 
wrote:

> On Mon, 21 Nov 2011 00:17:26 +1000 David Seikel 
> wrote:
> 
> > On Sun, 20 Nov 2011 01:21:48 +1000 David Seikel 
> > wrote:
> > 
> > > I'm not sure what you where thinking, perhaps that the user
> > > could pass in a table to be filled in?  Seems odd.
> > > 
> > > There's a few of these, I'll just leave a FIXME comment for now,
> > > but I'll probably remove the check before the release.
> > 
> > On a related note, I'm not so sure about this business of reusing
> > tables that are passed in as parameters for the results to be
> > returned.  I don't think that sort of thing is used anywhere else in
> > lua, AND we are returning the result table anyway.
> > 
> > It's quite nice that things like colour and coords can be passed
> > back and forth as a table.  Even better is that excess stuff in
> > these tables is ignored if passed in as arguments.  Better still
> > that they can be passed in as separate values.
> > 
> > map:lighting() accepts one set of 3D coords, and two sets of
> > colours.
> > 
> > map:rotate3d() accepts two sets of 3D coords.
> > 
> > map:zoom() accepts two sets of 2D coords.
> > 
> > The problem with these, if using the generic argument scanner I
> > wrote, based on the several specialized argument scanners you
> > wrote, is that it tries to reuse the table passed in to return
> > results, but A) which table?  B) it does a reset of the stack, that
> > causes problems for the next scanner call that tries to get the
> > next set of arguments.
> > 
> > Well, OK, those three don't return any values, so A is moot.  And B
> > is moot for those three anyway, since the stack reset is bypassed.
> > I still think it might be a problem for future API additions.
> > 
> > I still think it would be much cleaner to NOT reuse passed in
> > tables, and to not pass values back in optional passed in tables.
> > This solves both problems mentioned in this thread, and makes
> > things cleaner all around.
> > 
> > So that would mean that we remove the bool that tells the argument
> > scanner to reuse or create a table, and have the generic "return
> > results in a table" function create it's own table.  And remove that
> > lua_istable check mentioned in the last email.
> > 
> > I'll double check if the example is using that sort of thing, then
> > make these changes and commit.  You can revert if you disagree.
> > 
> 
> Just as an example to make my point -
> 
> colour_red = {255, 0, 0, 255}
> colour_green = {0, 255, 0, 255}
> 
> -- some time later
> 
>if (some_bool) then
>   some_evas_object:color(colour_red)
>else
>   some_evas_object:color(colour_green)
> 
> And the scripter wonders why odd things happen to his colours.

OK, so the example is silly and does not actually prove anything. lol

My argument still stands though, C functions meddling with passed in
tables is not the way lua does things.

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread Gustavo Sverzut Barbieri
On Sat, Nov 19, 2011 at 7:27 AM, Carsten Haitzler  wrote:
>
> On Sat, 19 Nov 2011 04:12:46 -0500 Mike Blumenkrantz  said:
>
>
> > imo we should always attempt to provide backwards compatibility for as long 
> > as
> > possible. I recently updated the notification stuff to use the new spec 
> > while
> > still checking for old-style messages, and my e17 pulseaudio code supports 
> > all
> > versions back to 0.9.16 (I think, maybe even older).
>
> agreed. in fact the situation is much worse. the e connman api and abi have
> been quite badly broken. see my email about it.

ACK! Fixed the problem by removing econnman and creating new econnman0.7x.

Now go fix your connman-0.77 so you can benefit from nice stuff we'll
introduce later such as proxy, static ip, hidden network, configurable
nameservers/domains, etc

--
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread Mike Blumenkrantz
On Tue, 22 Nov 2011 01:17:42 +0900
ChunEon Park wrote:

>  
> it's for you discomfitor
>  
> 
> -Regards, Hermet-
>  
> -Original Message-
> From: "Enlightenment SVN" 
> To: enlightenment-...@lists.sourceforge.net
> Cc: 
> Sent: 11-11-22(화) 01:14:52
> Subject: E SVN: hermet trunk/elementary/src/lib
> Log:
> elementary/naviframe - fixed to calc item size according to content size
> changed. Author: hermet
> Date: 2011-11-21 08:14:52 -0800 (Mon, 21 Nov 2011)
> New Revision: 65487
> Trac: http://trac.enlightenment.org/e/changeset/65487
> Modified:
> trunk/elementary/src/lib/elc_naviframe.c 
> Modified: trunk/elementary/src/lib/elc_naviframe.c
hooray! it works!

-- 
Mike Blumenkrantz
Zentific: Doctor recommended, mother approved.

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Problem with framebuffer

2011-11-21 Thread Gustavo Sverzut Barbieri
On Mon, Nov 21, 2011 at 1:51 PM, Guilherme Silveira  wrote:
> Hi all,
>
> I'm using framebuffer and I'm trying to use an entry, but i can't edit it,
> after call 
> elm_entry_editable_setthe
> same problem occurs..
> I was looking for this problem in the code, and i found something..
> In elementary, file elm_widget.c, function _parent_focus has follow
> condition:
> if (sd->top_win_focused)
> I debug and saw this value is false, so the focus can't setted..
> Why this variable is false? I found in ecore a function that emit some
> signals and make this variable true!
> In elm_win.c is connected to focus event using
> ecore_evas_callback_focus_in_set function, but the callback function is
> never called in ecore_evas_fb..
>
> Do you have some ideia to fix this problem?

Should be a bug as evas_focus_in() is never called... likely the
single-window displays are not calling it... but they should.

I can't look it now, but likely ecore_evas_fb_new() implementation is
the way to place it.



-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread ChunEon Park
 
it's for you discomfitor
 

-Regards, Hermet-
 
-Original Message-
From: "Enlightenment SVN" 
To: enlightenment-...@lists.sourceforge.net
Cc: 
Sent: 11-11-22(화) 01:14:52
Subject: E SVN: hermet trunk/elementary/src/lib
Log:
elementary/naviframe - fixed to calc item size according to content size 
changed.
Author: hermet
Date: 2011-11-21 08:14:52 -0800 (Mon, 21 Nov 2011)
New Revision: 65487
Trac: http://trac.enlightenment.org/e/changeset/65487
Modified:
trunk/elementary/src/lib/elc_naviframe.c 
Modified: trunk/elementary/src/lib/elc_naviframe.c
===
--- trunk/elementary/src/lib/elc_naviframe.c 2011-11-21 15:46:21 UTC (rev 65486)
+++ trunk/elementary/src/lib/elc_naviframe.c 2011-11-21 16:14:52 UTC (rev 65487)
@@ -84,7 +84,6 @@
const char *source);
static void _item_title_visible_update(Elm_Naviframe_Item *navi_it);
static void _sizing_eval(Evas_Object *obj);
-static void _item_sizing_eval(Elm_Naviframe_Item *it);
static void _move(void *data, Evas *e, Evas_Object *obj, void *event_info);
static void _resize(void *data,
Evas *e,
@@ -139,6 +138,10 @@
Evas_Object *obj,
const char *emission,
const char *source);
+static void _changed_size_hints(void *data,
+ Evas *e,
+ Evas_Object *obj,
+ void *event_info);
static void _item_content_set(Elm_Naviframe_Item *navi_it,
Evas_Object *content);
static void _item_style_set(Elm_Naviframe_Item *navi_it,
@@ -279,7 +282,7 @@
edje_object_signal_emit(VIEW(navi_it), buf, "elm");
}
- _item_sizing_eval(navi_it);
+ _sizing_eval(WIDGET(navi_it));
}
static const char *
@@ -412,7 +415,10 @@
evas_object_event_callback_del(content,
EVAS_CALLBACK_DEL,
_title_content_del);
- _item_sizing_eval(navi_it);
+ evas_object_event_callback_del(content,
+ EVAS_CALLBACK_CHANGED_SIZE_HINTS,
+ _changed_size_hints);
+ _sizing_eval(WIDGET(navi_it));
return content;
}
@@ -441,13 +447,18 @@
{
Widget_Data *wd;
Elm_Naviframe_Item *it;
+ Evas_Coord x, y, w, h;
Evas_Coord minw = -1, minh = -1;
- wd = elm_widget_data_get(obj);
+
+ wd = elm_widget_data_get(obj);
if (!wd) return;
EINA_INLIST_FOREACH(wd->stack, it)
{
- _item_sizing_eval(it);
+ evas_object_geometry_get(WIDGET(it), &x, &y, &w, &h);
+ evas_object_move(VIEW(it), x, y);
+ evas_object_resize(VIEW(it), w, h);
+ edje_object_size_min_calc(VIEW(it), &it->minw, &it->minh);
if (it->minw > minw) minw = it->minw;
if (it->minh > minh) minh = it->minh;
}
@@ -456,22 +467,6 @@
}
static void
-_item_sizing_eval(Elm_Naviframe_Item *it)
-{
- Widget_Data *wd;
- Evas_Coord x, y, w, h;
- if (!it) return;
-
- wd = elm_widget_data_get(WIDGET(it));
- if (!wd) return;
-
- evas_object_geometry_get(WIDGET(it), &x, &y, &w, &h);
- evas_object_move(VIEW(it), x, y);
- evas_object_resize(VIEW(it), w, h);
- edje_object_size_min_calc(VIEW(it), &it->minw, &it->minh);
-}
-
-static void
_move(void *data __UNUSED__,
Evas *e __UNUSED__,
Evas_Object *obj,
@@ -616,12 +611,19 @@
evas_object_event_callback_del(pair->content,
EVAS_CALLBACK_DEL,
_title_content_del);
+ evas_object_event_callback_del(pair->content,
+ EVAS_CALLBACK_CHANGED_SIZE_HINTS,
+ _changed_size_hints);
evas_object_del(pair->content);
elm_widget_sub_object_add(WIDGET(it), content);
evas_object_event_callback_add(content,
EVAS_CALLBACK_DEL,
_title_content_del,
pair);
+ evas_object_event_callback_add(content,
+ EVAS_CALLBACK_CHANGED_SIZE_HINTS,
+ _changed_size_hints,
+ WIDGET(it));
}
if (content)
{
@@ -629,7 +631,7 @@
snprintf(buf, sizeof(buf), "elm,state,%s,show", part);
edje_object_signal_emit(VIEW(it), buf, "elm");
pair->content = content;
- _item_sizing_eval(it);
+ _sizing_eval(WIDGET(it));
}
else
{
@@ -668,7 +670,7 @@
edje_object_signal_emit(VIEW(it), "elm,state,prev_btn,show", "elm");
it->back_btn = back_btn;
- _item_sizing_eval(it);
+ _sizing_eval(WIDGET(it));
}
static void
@@ -697,7 +699,7 @@
edje_object_part_swallow(VIEW(it), "elm.swallow.next_btn", btn);
edje_object_signal_emit(VIEW(it), "elm,state,next_btn,show", "elm");
- _item_sizing_eval(it);
+ _sizing_eval(WIDGET(it));
}
static void
@@ -726,7 +728,7 @@
edje_object_part_swallow(VIEW(it), "elm.swallow.icon", icon);
edje_object_signal_emit(VIEW(it), "elm,state,icon,show", "elm");
- _item_sizing_eval(it);
+ _sizing_eval(WIDGET(it));
}
@@ -758,6 +760,9 @@
evas_object_event_callback_del(content_pair->content,
EVAS_CALLBACK_DEL,
_title_content_del);
+ evas_object_event_callback_del(content_pair->content,
+ EVAS_CALLBACK_CHANGED_SIZE_HINTS,
+ _changed_size_hints);
evas_object_del(content_pair->content);
eina_stringshare_del(content_pair->part);
it->content_list = eina_inlist_remove(it->content_list,
@@ -838,6 +843,15 @@
}
static void
+_changed_size_hints(void *data,
+ Evas *e __UNUSED__,
+ Evas_Object *obj __UNUSED__,
+ void *event_info __UNUSED__)
+{
+ _sizing_eval(data);
+}
+
+static void
_item_content_set(Elm_Naviframe_Item *navi_it, Evas_Object *content)
{
if (navi_it->content == content) return;
@@ -858,8 +872,12 @@
EVAS_CALLBACK_

[E-devel] Problem with framebuffer

2011-11-21 Thread Guilherme Silveira
Hi all,

I'm using framebuffer and I'm trying to use an entry, but i can't edit it,
after call 
elm_entry_editable_setthe
same problem occurs..
I was looking for this problem in the code, and i found something..
In elementary, file elm_widget.c, function _parent_focus has follow
condition:
if (sd->top_win_focused)
I debug and saw this value is false, so the focus can't setted..
Why this variable is false? I found in ecore a function that emit some
signals and make this variable true!
In elm_win.c is connected to focus event using
ecore_evas_callback_focus_in_set function, but the callback function is
never called in ecore_evas_fb..

Do you have some ideia to fix this problem?

Regards,

-- 
Guilherme Silveira
E-mail: xgu...@gmail.com
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] evas_ojbect_textblock, ellipsis handling

2011-11-21 Thread Tom Hacohen
On 21/11/11 16:04, cnook wrote:
> Dear Mr. Tom,
>
> The issue comes again with different example.
> So I have attached previous patch for resolving. (Actually I have made
> from the latest version)


Dear Shinwoo,

As I said in a previous email to the list, a compilable example or an 
edje I can run with edje_player would be very appreciated. I currently 
can't reproduce the issue and thus I can't even check you solution works 
(I trust you that it works, but still...), nor can I verify the problem.

As for your patch:

c->w will be smaller than c->wmax in A LOT of cases, that's actually 
intentional, setting c->wmax to c->w makes no sense in textblock, as 
it'll break a lot of code.

c->wmax is used to determine the actual *used* width, and c->w is the 
width of the textblock object.

So for example, if we have a textblock with a size of 300x300 and
assuming the string "a" * 100 (100 'a's in a row) have a width of 1000 
and that the textblock contains that string:
c->w = 300;
c->wmax = 1000;

Making edje know that 300 is just not enough to show this string. That's 
how the min size calculation actually works.

You can try adding "fixed: 1 1;" to the textblock part if you wish to 
implement your behaviour, that's exactly what it does.


With that being said, there might be a bug there, as your condition 
should always be false in that place (or at least in the cases that 
matter), and for that, I need the example I asked for. :)

--
Tom.


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread ChunEon Park
 
I was crazy. revert it. 
 
 
 

-Regards, Hermet-
 
-Original Message-
From: "Daniel Juyung Seo" 
To: "Enlightenment developer 
list"
Cc: enlightenment-...@lists.sourceforge.net
Sent: 11-11-21(월) 22:58:33
Subject: Re: [E-devel] E SVN: hermet trunk/evas/src/lib/canvas
On Mon, Nov 21, 2011 at 8:21 PM, Iván Briano (Sachiel)
 wrote:
> 2011/11/21 Enlightenment SVN :
>> Log:
>> evas/evas_object_smart - don't need compare each layer
>>
>>
>>
>> Author: hermet
>> Date: 2011-11-21 02:16:25 -0800 (Mon, 21 Nov 2011)
>> New Revision: 65482
>> Trac: http://trac.enlightenment.org/e/changeset/65482
>>
>> Modified:
>> trunk/evas/src/lib/canvas/evas_object_smart.c
>>
>> Modified: trunk/evas/src/lib/canvas/evas_object_smart.c
>> ===
>> --- trunk/evas/src/lib/canvas/evas_object_smart.c 2011-11-21 09:47:42 UTC 
>> (rev 65481)
>> +++ trunk/evas/src/lib/canvas/evas_object_smart.c 2011-11-21 10:16:25 UTC 
>> (rev 65482)
>> @@ -146,8 +146,7 @@
>> abort();
>> return;
>> }
>> - if (obj->layer && smart_obj->layer
>> - && obj->layer->evas != smart_obj->layer->evas)
>> + if (obj->layer->evas != smart_obj->layer->evas)
>> {
>> CRIT("Adding object %p from Evas (%p) from another Evas (%p)", obj, 
>> obj->layer->evas, smart_obj->layer->evas);
>> abort();
>
> Are you sure this is right?
if obj->layer can be NULL, this is wrong.
>
>>
>>
>> --
>> All the data continuously generated in your IT infrastructure
>> contains a definitive record of customers, application performance,
>> security threats, fraudulent activity, and more. Splunk takes this
>> data and makes sense of it. IT sense. And common sense.
>> http://p.sf.net/sfu/splunk-novd2d
>> ___
>> enlightenment-svn mailing list
>> enlightenment-...@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>>
>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
Daniel Juyung Seo (SeoZ)
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] evas_ojbect_textblock, ellipsis handling

2011-11-21 Thread cnook
Dear Mr. Tom,

The issue comes again with different example.
So I have attached previous patch for resolving. (Actually I have made
from the latest version)

   c->wmax would be ellipsis calculated width
   c->w would be Edje_Real_Part->req.w

I think.. c->w should be bigger than c->wmax. (It is strange semantically.. ;-])
Anyhow sometimes c->wmax is bigger than c->w. so
edje_object_size_min_restricted_calc() takes loop again.
(tb_mw: 406, ep->req.w: 395, the difference 11.. then 363 times)

As before, If this patch is reasonable, please take it before we find
more proper way.

Sincerely,
Shinwoo Kim.



2011년 8월 18일 오후 2:40, Tom Hacohen 님의 말:
> On 18/08/11 08:09, cnook wrote:
>> Dear Mr. Tom,
>>
>> I have checked with latest evas (evas_object_textblock, and some dependent
>> files evas_font_dir and so on)
>> The problem never comes again. Thanks.
>
> Glad to hear. :)
>
> --
> Tom.
>
>
Index: src/lib/canvas/evas_object_textblock.c
===
--- src/lib/canvas/evas_object_textblock.c	(revision 65482)
+++ src/lib/canvas/evas_object_textblock.c	(working copy)
@@ -3486,6 +3486,7 @@ _layout_handle_ellipsis(Ctxt *c, Evas_Object_Textb
   eina_inlist_append(EINA_INLIST_GET(c->ln->items),
 EINA_INLIST_GET(_ITEM(ellip_ti)));
_layout_line_finalize(c, ellip_ti->parent.format);
+   if (c->w < c->wmax) c->wmax = c->w;
 }
 
 #ifdef BIDI_SUPPORT
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread Daniel Juyung Seo
On Mon, Nov 21, 2011 at 8:21 PM, Iván Briano (Sachiel)
 wrote:
> 2011/11/21 Enlightenment SVN :
>> Log:
>> evas/evas_object_smart - don't need compare each layer
>>
>>
>>
>> Author:       hermet
>> Date:         2011-11-21 02:16:25 -0800 (Mon, 21 Nov 2011)
>> New Revision: 65482
>> Trac:         http://trac.enlightenment.org/e/changeset/65482
>>
>> Modified:
>>  trunk/evas/src/lib/canvas/evas_object_smart.c
>>
>> Modified: trunk/evas/src/lib/canvas/evas_object_smart.c
>> ===
>> --- trunk/evas/src/lib/canvas/evas_object_smart.c       2011-11-21 09:47:42 
>> UTC (rev 65481)
>> +++ trunk/evas/src/lib/canvas/evas_object_smart.c       2011-11-21 10:16:25 
>> UTC (rev 65482)
>> @@ -146,8 +146,7 @@
>>         abort();
>>         return;
>>      }
>> -   if (obj->layer && smart_obj->layer
>> -       && obj->layer->evas != smart_obj->layer->evas)
>> +   if (obj->layer->evas != smart_obj->layer->evas)
>>      {
>>         CRIT("Adding object %p from Evas (%p) from another Evas (%p)", obj, 
>> obj->layer->evas, smart_obj->layer->evas);
>>         abort();
>
> Are you sure this is right?

if obj->layer can be NULL, this is wrong.

>
>>
>>
>> --
>> All the data continuously generated in your IT infrastructure
>> contains a definitive record of customers, application performance,
>> security threats, fraudulent activity, and more. Splunk takes this
>> data and makes sense of it. IT sense. And common sense.
>> http://p.sf.net/sfu/splunk-novd2d
>> ___
>> enlightenment-svn mailing list
>> enlightenment-...@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>>
>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>

Daniel Juyung Seo (SeoZ)

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread Sachiel
2011/11/21 Enlightenment SVN :
> Log:
> evas/evas_object_smart - don't need compare each layer
>
>
>
> Author:       hermet
> Date:         2011-11-21 02:16:25 -0800 (Mon, 21 Nov 2011)
> New Revision: 65482
> Trac:         http://trac.enlightenment.org/e/changeset/65482
>
> Modified:
>  trunk/evas/src/lib/canvas/evas_object_smart.c
>
> Modified: trunk/evas/src/lib/canvas/evas_object_smart.c
> ===
> --- trunk/evas/src/lib/canvas/evas_object_smart.c       2011-11-21 09:47:42 
> UTC (rev 65481)
> +++ trunk/evas/src/lib/canvas/evas_object_smart.c       2011-11-21 10:16:25 
> UTC (rev 65482)
> @@ -146,8 +146,7 @@
>         abort();
>         return;
>      }
> -   if (obj->layer && smart_obj->layer
> -       && obj->layer->evas != smart_obj->layer->evas)
> +   if (obj->layer->evas != smart_obj->layer->evas)
>      {
>         CRIT("Adding object %p from Evas (%p) from another Evas (%p)", obj, 
> obj->layer->evas, smart_obj->layer->evas);
>         abort();

Are you sure this is right?

>
>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] paypal account

2011-11-21 Thread The Rasterman
On Sat, 19 Nov 2011 09:32:49 +0100 (CET) Vincent Torri 
said:

> 
> 
> On Sat, 19 Nov 2011, Carsten Haitzler (The Rasterman) wrote:
> 
> > On Fri, 18 Nov 2011 23:53:51 +0100 (CET) Vincent Torri 
> > said:
> >
> >>
> >> Hey
> >>
> >> I have created a paypal account, which is linked to the french association
> >> bank account Enlightenment.fr [1] [2]
> >>
> >> I plan to add 2 boutons, one for the donations in euros, the other one in
> >> USD. These buttons will go to the donate french page [2], but it is
> >> necessary to have an english page. Do you think that is it sufficient to
> >> add these buttons on the main page e.org, or another page ? What we can do
> >> is just translating [2] and adding a link on e.org main page to that page.
> >>
> >> ideas and remarks are welcome
> >>
> >> Vincent
> >
> > put it up on the e.fr pages and we can add an english page right in the
> > enlightenment.org main pages. we should add a new page - this should not be
> > in the wiki. add a donate link on the top of every page maybe next to the
> > "social" icons that takes u to the donate page with all the info u need
> > (paypal, bank acct direct, flattr or whatever else we end up having).
> 
> here it is (in french):
> 
> http://enlightenment.fr/dons/

i've added an english donate page on e.org now :) it might be a good idea for
the flatter info to have english too.. :)

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: seoz trunk/web/www/i

2011-11-21 Thread Gustavo Sverzut Barbieri
On Mon, Nov 21, 2011 at 2:19 AM, Daniel Juyung Seo  wrote:
> Welll, this is a facebook question. But what is the main reason you
> prefer page not group?
> I'm familiar with group not page. And where can I see the list of
> pages that I marked 'like'?
> I'm trying to be social :)

groups are for smaller groups that want to communicate, it's the old,
original way.

pages are the new way to represent larger groups, associations,
companies and entities. They have many more features, like the easy
name to reach, you can do paid advertisement, you can even use it to
create applications. It's a way to have an official position and not
just to communicate with others in the group.

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: seoz trunk/web/www/i

2011-11-21 Thread Gustavo Sverzut Barbieri
On Mon, Nov 21, 2011 at 2:03 AM, Daniel Juyung Seo  wrote:
> Hello, I created Enlightenment Korea page.
> http://www.facebook.com/enlightenment.or.kr
>
> But I can't register enlightenment.kr by mistake :) I registered that
> to my personal username and it's not usable even I changed my personal
> user name to another one.

HIT TO EVERYONE: READ PAGES WITH FORMS YOU SUBMIT :-)


> Anyhow, I have no "Use Facebook as Enlightenment Foundation Libraries"
> menu in  http://www.facebook.com/enlightenment.org.
> Maybe admin only can do that job. Are you registered as an admin?
> If so, please like Enlightenment Korea page.

you're an admin of http://facebook.com/enlightenment.org now

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread The Rasterman
On Sun, 20 Nov 2011 16:38:56 -0200 Lucas De Marchi
 said:

> On Sun, Nov 20, 2011 at 5:12 AM, Carsten Haitzler 
> wrote:
> > On Sat, 19 Nov 2011 15:59:43 -0200 Lucas De Marchi
> >  said:
> >
> >> On Sat, Nov 19, 2011 at 7:08 AM, Enlightenment SVN
> >>  wrote:
> >> > Log:
> >> > gustavo - i know you don't like this, but putting back old connman api
> >> >  support.
> >> >
> >> >  1. you broke connman legacy support during feature freeze. this isn't
> >> >  a bug fix. it's a break.
> >> >  2. newer connmans are broken for me - my netwoork basically barely
> >> >  works. i can't make new connections reliably to anywhere outside my
> >> >  lan, and even on my lan  ssh connectiosn justdrop all the time. i'm
> >> >  sticking to a fdowngraded (0.55) connman exactly because of this.
> >>
> >> Not talking about the API break, but just about your issue with newer
> >> versions: could you please run connman with debug info (connman -nd
> >> would be sufficient), and send the log with the description of the
> >> problem to connman mailing list?
> >>
> >> Otherwise the problem might never be fixed.
> >
> > i've spotted 1 thing. later connmans put my card into 130Mb speeds (802.11N
> > land) but 0.55 stays at 802.11g (54Mb)...
> 
> Please, run connman with "-nd" parameter and send the log.

http://yourpaste.net/9752/

passphrase censored :) (it's not X)

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread The Rasterman
On Mon, 21 Nov 2011 19:26:47 +0900 Daniel Juyung Seo 
said:

you have a space before your tweet: :)

> it looks like comit hook for twit does not work.
> 
> Daniel Juyung Seo (SeoZ)
> On Nov 21, 2011 2:01 PM, "Enlightenment SVN" 
> wrote:
> 
> > Log:
> > add direct link to header file in api docs
> >  tweet: hey, SeoZ here, I really like Microsoft. I mean REALLY like them.
> > I think they're a fantastic company and I hope everyone uses winmo!
> >
> >
> > Author:   discomfitor
> > Date: 2011-11-20 21:01:23 -0800 (Sun, 20 Nov 2011)
> > New Revision: 65469
> > Trac: http://trac.enlightenment.org/e/changeset/65469
> >
> > Modified:
> >  trunk/evas/src/lib/Evas.h
> >
> > Modified: trunk/evas/src/lib/Evas.h
> > ===
> > --- trunk/evas/src/lib/Evas.h   2011-11-21 04:48:13 UTC (rev 65468)
> > +++ trunk/evas/src/lib/Evas.h   2011-11-21 05:01:23 UTC (rev 65469)
> > @@ -5,6 +5,7 @@
> >  @date 2000-2011
> >
> >  Please see the @ref authors page for contact details.
> > +@link Evas.h Evas API @endlink
> >
> >  @section toc Table of Contents
> >
> >
> >
> >
> > --
> > All the data continuously generated in your IT infrastructure
> > contains a definitive record of customers, application performance,
> > security threats, fraudulent activity, and more. Splunk takes this
> > data and makes sense of it. IT sense. And common sense.
> > http://p.sf.net/sfu/splunk-novd2d
> > ___
> > enlightenment-svn mailing list
> > enlightenment-...@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
> >
> --
> All the data continuously generated in your IT infrastructure 
> contains a definitive record of customers, application performance, 
> security threats, fraudulent activity, and more. Splunk takes this 
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread Cedric BAIL
In that case, it's sounds like a good news to me !

On Mon, Nov 21, 2011 at 11:26 AM, Daniel Juyung Seo
 wrote:
> it looks like comit hook for twit does not work.
>
> Daniel Juyung Seo (SeoZ)
> On Nov 21, 2011 2:01 PM, "Enlightenment SVN" 
> wrote:
>
>> Log:
>> add direct link to header file in api docs
>>  tweet: hey, SeoZ here, I really like Microsoft. I mean REALLY like them.
>> I think they're a fantastic company and I hope everyone uses winmo!
>>
>>
>> Author:       discomfitor
>> Date:         2011-11-20 21:01:23 -0800 (Sun, 20 Nov 2011)
>> New Revision: 65469
>> Trac:         http://trac.enlightenment.org/e/changeset/65469
>>
>> Modified:
>>  trunk/evas/src/lib/Evas.h
>>
>> Modified: trunk/evas/src/lib/Evas.h
>> ===
>> --- trunk/evas/src/lib/Evas.h   2011-11-21 04:48:13 UTC (rev 65468)
>> +++ trunk/evas/src/lib/Evas.h   2011-11-21 05:01:23 UTC (rev 65469)
>> @@ -5,6 +5,7 @@
>>  @date 2000-2011
>>
>>  Please see the @ref authors page for contact details.
>> +@link Evas.h Evas API @endlink
>>
>>  @section toc Table of Contents
>>
>>
>>
>>
>> --
>> All the data continuously generated in your IT infrastructure
>> contains a definitive record of customers, application performance,
>> security threats, fraudulent activity, and more. Splunk takes this
>> data and makes sense of it. IT sense. And common sense.
>> http://p.sf.net/sfu/splunk-novd2d
>> ___
>> enlightenment-svn mailing list
>> enlightenment-...@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>



-- 
Cedric BAIL

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2011-11-21 Thread Daniel Juyung Seo
it looks like comit hook for twit does not work.

Daniel Juyung Seo (SeoZ)
On Nov 21, 2011 2:01 PM, "Enlightenment SVN" 
wrote:

> Log:
> add direct link to header file in api docs
>  tweet: hey, SeoZ here, I really like Microsoft. I mean REALLY like them.
> I think they're a fantastic company and I hope everyone uses winmo!
>
>
> Author:   discomfitor
> Date: 2011-11-20 21:01:23 -0800 (Sun, 20 Nov 2011)
> New Revision: 65469
> Trac: http://trac.enlightenment.org/e/changeset/65469
>
> Modified:
>  trunk/evas/src/lib/Evas.h
>
> Modified: trunk/evas/src/lib/Evas.h
> ===
> --- trunk/evas/src/lib/Evas.h   2011-11-21 04:48:13 UTC (rev 65468)
> +++ trunk/evas/src/lib/Evas.h   2011-11-21 05:01:23 UTC (rev 65469)
> @@ -5,6 +5,7 @@
>  @date 2000-2011
>
>  Please see the @ref authors page for contact details.
> +@link Evas.h Evas API @endlink
>
>  @section toc Table of Contents
>
>
>
>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] suid bit for enlightenment_sys

2011-11-21 Thread Lucas De Marchi
On Sun, Nov 20, 2011 at 7:50 AM, Tomas Cech  wrote:
> Hi,
>
> On Sat, Nov 19, 2011 at 10:31:21PM -0200, Gustavo Sverzut Barbieri wrote:
>>
>> On Sat, Nov 19, 2011 at 10:15 PM, Tomas Cech  wrote:
>>>
>>> Hi,
>>>
>>> as I'm trying to get E17 into openSUSE, I'm trying to tune
>>> sysactions.conf. I'm trying to get rid of suid bit for
>>> /usr/lib64/enlightenment/utils/enlightenment_sys
>>>
>>> All my actions use DBUS messages so suid bit is useless (ok, I haven't
>>> done mount/unmount yet). When I remove suid bit from this binary,
>>> suspend fails and in log I have:
>>>
>>> ERROR: UNABLE TO ASSUME ROOT PRIVILEGES
>>>
>>> Running
>>> /usr/lib64/enlightenment/utils/enlightenment_sys suspend
>>> works fine, so my question is - is really needed check for root
>>> privileges there?
>>>
>>> Thanks.
>>>
>>> Best regards,
>>>
>>> Tomas Cech
>>> Sleep_Walker
>>>
>>>
>>> --
>>> All the data continuously generated in your IT infrastructure
>>> contains a definitive record of customers, application performance,
>>> security threats, fraudulent activity, and more. Splunk takes this
>>> data and makes sense of it. IT sense. And common sense.
>>
>> yes we do. But there is a better way we could do, patches accepted (no
>> time to do it myself):
>>  - have hibernate/suspend/... using upower
>>  - have other actions using proper daemons using dbus + polkit
>> (udisks, timedated...)
>>  - whatever else use polkit's features such as pkexec.
>>
>
> That's probably what I want to have there:
>
> action:   halt      dbus-send --system --dest=org.freedesktop.ConsoleKit
> /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Stop
> action:   reboot    dbus-send --system --dest=org.freedesktop.ConsoleKit
> /org/freedesktop/ConsoleKit/Manager
> org.freedesktop.ConsoleKit.Manager.Restart

Note that ConsoleKit is deprecated now
(http://www.freedesktop.org/wiki/Software/ConsoleKit) and I hope it
will soon be removed from distro (maybe in a faster pace than hal
was).


Lucas De Marchi

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] yet another edje group inherit bug

2011-11-21 Thread Jaehwan Kim
Dear discomfitor

Sachiel is right. The type of the part cannot be override.
Can you explain more detail about your first question?
Or do you have any simple test edc?

Thanks.
--
Jaehwan Kim.

2011년 11월 19일 토요일에 Iván Briano (Sachiel)님이 작성:

> 2011/11/19 Mike Blumenkrantz >:
> > On Fri, 18 Nov 2011 16:17:54 -0500
> > Mike Blumenkrantz > wrote:
> >
> >> programs don't inherit properly. if you make a program with the same
> name as
> >> an inherited program that targets the same part as the inherited
> program,
> >> edje_cc will not compile the edc.
> >>
> > Related note: if you set the type of a part with the same name as an
> inherited
> > part, you get an error. That's a bug.
> >
>
> Explain please, from what I understand, you can't change the type of
> inherited parts,
> so getting an error would be right.
>
> > --
> > Mike Blumenkrantz
> > Zentific: Doctor recommended, mother approved.
> >
> >
> --
> > All the data continuously generated in your IT infrastructure
> > contains a definitive record of customers, application performance,
> > security threats, fraudulent activity, and more. Splunk takes this
> > data and makes sense of it. IT sense. And common sense.
> > http://p.sf.net/sfu/splunk-novd2d
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net 
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
>
>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net 
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch][Ecore][Win] Changing key name and composer for Shift, Control, Alt

2011-11-21 Thread Vincent Torri


On Mon, 21 Nov 2011, Kim Shinwoo wrote:

> Dear Mr. Vincent, Hello!
>
> I have verified. It works properly.
> When I press the left (or right) shift key, it gives Shift_L (or Shift_R).
> When I release the left (or right) shift key, it gives Shift_L (or
> Shift_R). :)

check control key too

Vincent

>
> Sincerely,
> Shinwoo Kim.
>
>
>
> 2011/11/20 Vincent Torri 
>
>>
>>
>> On Thu, 17 Nov 2011, Kim Shinwoo wrote:
>>
>>> Dear All, Hello~
>>>
>>> This is Shinwoo Kim (Previously I have used cnook, kimcinoo@gmail.comfor
>>> contribution)
>>>
>>> The key compose and name have been different with xlib. So I have changed
>>> the value of Shift, Control, and Alt.
>>> Moreover, the attached patch is able to distinguish between Shift_L and
>>> Shift_R as xlib.
>>> Please review this and give any feedbacks, Thanks!
>>
>> the patch was not entirely correct. I think that I have fixed it in svn.
>> Could you verify, please ?
>>
>> Vincent
>>
>>
>> --
>> All the data continuously generated in your IT infrastructure
>> contains a definitive record of customers, application performance,
>> security threats, fraudulent activity, and more. Splunk takes this
>> data and makes sense of it. IT sense. And common sense.
>> http://p.sf.net/sfu/splunk-novd2d
>> ___
>> enlightenment-devel mailing list
>> enlightenment-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>
> --
> All the data continuously generated in your IT infrastructure
> contains a definitive record of customers, application performance,
> security threats, fraudulent activity, and more. Splunk takes this
> data and makes sense of it. IT sense. And common sense.
> http://p.sf.net/sfu/splunk-novd2d
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>

--
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel