[E-devel] [PATCH][EDJE] 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-19 Thread Rajeev Ranjan
Hi,
   First of all, thanks for your feedbacks about the previous implementation at 
eet level. 

Attached to the mail is a patch to set the alpha information for an image 
header to 0 with alpha present but all the texels being opaque.
Continuing to our discussion, as suggested by many people in the community it 
has been implemented at edje_cc level.

Change description:
While compiling the edc file, image data for image files is scanned to find 
out whether the alpha value in header is set to 1 and is not being used in the 
image.
  If this is the case, while writing to eet the alpha is set to 0 to avoid 
blending for such images in the graphics pipeline when used by evas.

Thank You.
Regards,
Rajeev



--- Original Message ---
Sender : Carsten Haitzlerras...@rasterman.com
Date : Apr 16, 2012 12:43 (GMT+05:30)
Title : 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

On Mon, 16 Apr 2012 07:05:14 + (GMT) Rajeev Ranjan 
said:

 Hi Gustavo,
Thanks for your information on evas_image_loader when pixels are being
 scanned and sparse_alpha flag is being set. But this common function
 evas_common_image_set_alpha_sparse is being called only for loaders of svg
 and tiff files, not for other formats.
 
 Besides in this function, we are already scanning image data texels in order
 to determine alpha_sparse. So if we do similar stuff for determining opacity
 of image in some other function, then scanning will happen twice for any
 image while loading which will affect the performance(load time). Then the
 option we are left with is to set the apha flag here itself in this function
 while scanning the image data and call this function from loaders for all
 image formats. Whether this option in your opinion is good as this function
 name suggests for setting the alpha_sparse, not the alpha value.
 
 And this change will affect the image loading performance every time it gets
 loaded where as if we do it in edje_cc code, then this will affect only the
 eet creation flow using edje_cc, not the normal operation.
 
 Others including Raster has suggested for scanning the image data in edje_cc
 saving flow which in my opinion should be good as it will not affect the
 normal flow performance.
 
 I would like to know whether this should be default behavior of edje_cc or
 shall I add it as an option to the compiler. If it should be an option, then
 what option flag do you suggest! I think -o should be good.

default in edje_cc sounds just fine to me. it's an optimization.

 Please let me know your opinion on this.
 Thank You.
 Regards,
 Rajeev
 
 --- Original Message ---
 Sender : Gustavo Sverzut Barbieri 
 Date : Fri, 13 Apr 2012 11:24:29 -0300
 Title : 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
 
 On 04/13/12 22:55, Gustavo Sverzut Barbieri  wrote:
  On Fri, 13 Apr 2012 13:54:50 + (GMT) Rajeev Ranjan
  said:
 
  Hi Rajeev,
 
  As far as I remember there is already an alpha analysis being done by
  Evas image loaders to set sparse alpha flag. I believe the same
  analysis can be used to detect no-alpha situation.
 
  If so, doing in Evas is a best fit as it will work with images loaded
  from internet or disk.
 
  BR,
  -- Gustavo
 
 
  Hi,
  Attached to the mail is a patch to set the alpha information for an
  image header to 0 with alpha present but all the texels being opaque.
 
  The objective of this patch is to avoid the alpha blending for the images
  which don't use alpha but while creating, the alpha channel has been added
  by the creator. In order to do so, the image individual texels are scanned
  to find if alpha is used in the image for any texel and the image is fully
  opaque, while saving the alpha is set to 0. If the alpha information in
  image header is set to 0 already, then this stage is skipped.
 
  This implementation can be done at either eet level or edje level.
  Currently in this patch it has been done in eet.
 
  If required, it can be implemented in edje_cc itself rather than in eet
  image data saving. One more option can be to make this scanning optional
  which can be done in edje_cc through an option provided this is implementd
  at edje_cc level rather than at eet level.
 
  Change Description:
 
  While writing the image to eet file, the image data is scanned to find
  out whether the alpha value in header is set to 1 and is not being used in
  the image. If that is the case while writing, we set the alpha to 0 to
  avoid blending for such images in the graphics pipeline.
 
  This will be an optimization for rendering once the image is loaded from
  eet file as alpha blending can be avoided for such images.
 
  Signed-Off-By: RAJEEV RANJAN
 
  Please review the same and provide your feedbacks.
  Thank You.
  Regards,
  Rajeev
 

-- 
- Codito, ergo sum - 

Re: [E-devel] [Patch][elementary_test] test_list

2012-04-19 Thread Daniel Juyung Seo
Belated review.
I have some comments. I just committed the fixed version but it'll be
good for you to know.

1) two spaces between bt, and 4!!.
 elm_grid_pack(gd, bt,  4,  80, 20, 10);
There were more than 10 instances of this. I fixed it.

2) internal function position
I moved _first/prev/next/last_bt_clicked() callback functions to the
right before test_list6() function.
They are used for test_list6().

3) casting
 Evas_Object *li = (Evas_Object *) data;
You don't need to cast void pointer.
Just do
Evas_Object *li = data;

Otherwise, it is a good patch!
Here is the link of my fix.
http://trac.enlightenment.org/e/changeset/70317

Thanks.

Daniel Juyung Seo (SeoZ)

On Tue, Apr 17, 2012 at 8:20 PM, Kim Shinwoo kimcinoo@gmail.com wrote:
 hehe~ I like grid!
 hmm.. If you want... I will be back with the box!

 2012/4/17 Carsten Haitzler ras...@rasterman.com:
 On Tue, 17 Apr 2012 13:35:19 +0900 cnook kimci...@gmail.com said:

 Dear All, Hello.

 I had added test code for the elementary. but I made a pause it because of
 some reasons and just started again.
 Today I have attached a patch for the elm_list which does not have test
 code for the API elm_list_item_prev();
 Please review the attached patch and give any feedbacks. I'll be back with
 other patches. Thanks!

 in - with null item fetch changes in as chuneon was mentioning.

 also.. just style-wise.. WHY a grid? why? why why why? its really a widget u
 DONT want to go using... much.. ever!

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


 --
 Better than sec? Nothing is better than sec when it comes to
 monitoring Big Data applications. Try Boundary one-second
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

 --
 Better than sec? Nothing is better than sec when it comes to
 monitoring Big Data applications. Try Boundary one-second
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2012-04-19 Thread Tom Hacohen
On 19/04/12 03:25, Cedric BAIL wrote:
 Having a log post callback could be interesting, but I am wondering
 what else use it could have than current eina_log don't have. Do you
 have any use case in mind ?

Yeah, that's why I said no comment I can't find a use case for it... 
The purpose of the backtrace is to help people find the place that 
triggered the error in their code, and I don't see how that'll help there.

--
Tom.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Introducing EFL Korean User Group

2012-04-19 Thread Daniel Juyung Seo
Dear all, this is Daniel Juyung Seo.
I introduce EFL Korean User Group,
http://efl.or.kr

This group is not a big community or whatever as of now. It's a place
to hold all Korean EFL materials together.
The reason why we created this is that it is very hard to find Korean
information for EFL and all the information is spread.
And I've been asked about Korean EFL material from many people.

I and Hermet created this group and Woohyun will join us soon :)
\I encourage any Korean to join this group and share your EFL blog
posts with us.
Basically many of the contents are linked to my blog now and Hermet's
blog is also linked.

Thank you very much.

ps1. Special thanks to Hermet for paying for the domain.
ps2. We also have 'Enlightenment Korea' facebook page.
http://www.facebook.com/enlightenment.or.kr
ps3. And twitter which is based on a automatic forward of facebook
posts. https://twitter.com/EnlightenmentKo

Daniel Juyung Seo (SeoZ)

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2012-04-19 Thread Michael Blumenkrantz
On Thu, 19 Apr 2012 09:57:01 +0300
Tom Hacohen tom.haco...@samsung.com wrote:

 On 19/04/12 03:25, Cedric BAIL wrote:
  Having a log post callback could be interesting, but I am wondering
  what else use it could have than current eina_log don't have. Do you
  have any use case in mind ?
 
 Yeah, that's why I said no comment I can't find a use case for it... 
 The purpose of the backtrace is to help people find the place that 
 triggered the error in their code, and I don't see how that'll help there.
 
 --
 Tom.
 

bottom line: this is a feature; we are in a feature freeze, and we have been
for a month. it must be removed immediately.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2012-04-19 Thread Daniel Juyung Seo
Oh unset feature? This might be useful.

Daniel Juyung Seo (SeoZ)

On Thu, Apr 19, 2012 at 12:35 PM, Enlightenment SVN
no-re...@enlightenment.org wrote:
 Log:
 small improvement - allow part names of - to mean remove part name
  itd and reset back to -1 - ie none. useful for to/to_x/to_y etc.



 Author:       raster
 Date:         2012-04-18 20:35:29 -0700 (Wed, 18 Apr 2012)
 New Revision: 70315
 Trac:         http://trac.enlightenment.org/e/changeset/70315

 Modified:
  trunk/edje/src/bin/edje_cc_out.c

 Modified: trunk/edje/src/bin/edje_cc_out.c
 ===
 --- trunk/edje/src/bin/edje_cc_out.c    2012-04-19 00:44:07 UTC (rev 70314)
 +++ trunk/edje/src/bin/edje_cc_out.c    2012-04-19 03:35:29 UTC (rev 70315)
 @@ -1707,25 +1707,32 @@
        Edje_Part *ep;
        unsigned int i;

 -       for (i = 0; i  part-pc-parts_count; ++i)
 -         {
 -            ep = part-pc-parts[i];
 +        if (!strcmp(part-name, -))
 +          {
 +             *(part-dest) = -1;
 +          }
 +        else
 +          {
 +             for (i = 0; i  part-pc-parts_count; ++i)
 +               {
 +                  ep = part-pc-parts[i];
 +
 +                  if ((ep-name)  (!strcmp(ep-name, part-name)))
 +                    {
 +                       handle_slave_lookup(part_slave_lookups, part-dest, 
 ep-id);
 +                       *(part-dest) = ep-id;
 +                       break;
 +                    }
 +               }

 -            if ((ep-name)  (!strcmp(ep-name, part-name)))
 -              {
 -                 handle_slave_lookup(part_slave_lookups, part-dest, ep-id);
 -                 *(part-dest) = ep-id;
 -                 break;
 -              }
 -         }
 +             if (i == part-pc-parts_count)
 +               {
 +                  ERR(%s: Error. Unable to find part name \%s\.,
 +                      progname, part-name);
 +                  exit(-1);
 +               }
 +          }

 -       if (i == part-pc-parts_count)
 -         {
 -            ERR(%s: Error. Unable to find part name \%s\.,
 -                progname, part-name);
 -            exit(-1);
 -         }
 -
        free(part-name);
        free(part);
      }


 --
 For Developers, A Lot Can Happen In A Second.
 Boundary is the first to Know...and Tell You.
 Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
 http://p.sf.net/sfu/Boundary-d2dvs2
 ___
 enlightenment-svn mailing list
 enlightenment-...@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2012-04-19 Thread Vincent Torri
On Thu, Apr 19, 2012 at 9:34 AM, Michael Blumenkrantz
michael.blumenkra...@gmail.com wrote:
 On Thu, 19 Apr 2012 09:57:01 +0300
 Tom Hacohen tom.haco...@samsung.com wrote:

 On 19/04/12 03:25, Cedric BAIL wrote:
  Having a log post callback could be interesting, but I am wondering
  what else use it could have than current eina_log don't have. Do you
  have any use case in mind ?

 Yeah, that's why I said no comment I can't find a use case for it...
 The purpose of the backtrace is to help people find the place that
 triggered the error in their code, and I don't see how that'll help there.

 --
 Tom.


 bottom line: this is a feature; we are in a feature freeze, and we have been
 for a month. it must be removed immediately.

+1

Vincent

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2012-04-19 Thread Tom Hacohen
On 19/04/12 10:34, Michael Blumenkrantz wrote:
 bottom line: this is a feature; we are in a feature freeze, and we have been
 for a month. it must be removed immediately.


It seems you are correct.

--
Tom.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2012-04-19 Thread Michael Blumenkrantz
On Thu, 19 Apr 2012 11:09:59 +0300
Tom Hacohen tom.haco...@samsung.com wrote:

 On 19/04/12 10:34, Michael Blumenkrantz wrote:
  bottom line: this is a feature; we are in a feature freeze, and we have been
  for a month. it must be removed immediately.
 
 
 It seems you are correct.
 
 --
 Tom.

there's a number of other commits which also have broken the freeze, but I'm
still hopeful that, for the non-essential ones, the authors will acknowledge
their fault and revert the commits.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2012-04-19 Thread Tom Hacohen
On 19/04/12 11:17, Michael Blumenkrantz wrote:
 there's a number of other commits which also have broken the freeze, but I'm
 still hopeful that, for the non-essential ones, the authors will acknowledge
 their fault and revert the commits.


To be honest, I forgot about the freeze.

--
Tom.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] How to use evas_object_layer_set() feature in EDC ?

2012-04-19 Thread The Rasterman
On Thu, 19 Apr 2012 04:47:42 + (GMT) Sumanth Krishna Mannam
sumant...@samsung.com said:

 Samsung Enterprise Portal mySingle
 
 Hi Raster,
 
  
 
 Are you suggesting that all the objects of a group should be placed in a
 single layer, otherwise it will be a voilation of edje object encapsulation  ?

not even a single layer - WITHIN the same object. smart objects effectively
make a tree. its the same as windows in x or win32 or osx. things inside that
window cannot be stacked OUTSIDE of the window above/below without making
another window and stacking it on top. it violates the encapsulation.

 Thanks,
 
 Sumanth
 
  
 
  --- Original Message ---
  Sender : Carsten Haitzlerras...@rasterman.com
 
   Date : Apr 18, 2012 18:17 (GMT+05:30)
 
  Title : Re: [E-devel] How to use evas_object_layer_set() feature in EDC ?
 
   On Wed, 18 Apr 2012 11:30:05 + (GMT) Sumanth Krishna Mannam
  said:
  
  no - you can't as this violates the encapsulation of the edje object - all
  objects are INSIDE the edje object.
  
 
   Dear All,
  
   Is there any option to utilize  evas_object_layer_set()  feature in EDC?
   This may be a desirable feature like, Slider widget can display zoom
   indicator may be few pixels above the actual indicator where many higher
   layer objects present. Whenever the zoom indicator is displayed (in drag
   state), it should be moved to higher level layer to avoid clippings.
  
   To support these kind of features completely controlled by EDC without
   widget code intervention, I am proposing to add a layer/level property to
   EDC Part for each state.
  
  
   Your suggestions are welcome :)
  
   Thanks,
   Sumanth Krishna
   --
   Better than sec? Nothing is better than sec when it comes to
   monitoring Big Data applications. Try Boundary one-second
   resolution app monitoring today. Free.
   http://p.sf.net/sfu/Boundary-dev2dev
   ___
   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
 
 
  
 
  
 
 ---
 
 Sumanth Krishna Mannam
 
 Software Engineer
 
 Samsung India Software Operations
 
 Bangalore, India
 
  
 
 


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


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] How to use evas_object_layer_set() feature in EDC ?

2012-04-19 Thread GOVINDARAJU SM
Hi Raster,
I think, Sumanth's question is about having EDC group with different 
Parts in different layer ( with in same canvas, Window ).  In General  
EDC Group parts are layered based on the order its declared.  Can we add 
one more property in EDC  part description for Layer level ( similar to 
EDC part source2...source6, which is placed above layer of  the TEXTBLOCK )

His question is about with in one window/canvas, and Edje object itself 
gets a user defined layer level from EDC and placing a part on that 
layer.  Do you consider this as violation of encapsulation?  EDC part 
source2 does almost the same... :)

Regards,
Govind

On 4/19/2012 2:28 PM, Carsten Haitzler (The Rasterman) wrote:
 On Thu, 19 Apr 2012 04:47:42 + (GMT) Sumanth Krishna Mannam
 sumant...@samsung.com  said:

 Samsung Enterprise Portal mySingle

 Hi Raster,



 Are you suggesting that all the objects of a group should be placed in a
 single layer, otherwise it will be a voilation of edje object encapsulation  
 ?
 not even a single layer - WITHIN the same object. smart objects effectively
 make a tree. its the same as windows in x or win32 or osx. things inside that
 window cannot be stacked OUTSIDE of the window above/below without making
 another window and stacking it on top. it violates the encapsulation.

 Thanks,

 Sumanth



 --- Original Message ---
 Sender : Carsten Haitzlerras...@rasterman.com
   Date : Apr 18, 2012 18:17 (GMT+05:30)
 Title : Re: [E-devel] How to use evas_object_layer_set() feature in EDC ?
 On Wed, 18 Apr 2012 11:30:05 + (GMT) Sumanth Krishna Mannam
 said:

 no - you can't as this violates the encapsulation of the edje object - all
 objects are INSIDE the edje object.


 Dear All,

 Is there any option to utilize  evas_object_layer_set()  feature in EDC?
 This may be a desirable feature like, Slider widget can display zoom
 indicator may be few pixels above the actual indicator where many higher
 layer objects present. Whenever the zoom indicator is displayed (in drag
 state), it should be moved to higher level layer to avoid clippings.

 To support these kind of features completely controlled by EDC without
 widget code intervention, I am proposing to add a layer/level property to
 EDC Part for each state.


 Your suggestions are welcome :)

 Thanks,
 Sumanth Krishna
 --
 Better than sec? Nothing is better than sec when it comes to
 monitoring Big Data applications. Try Boundary one-second
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 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





 ---

 Sumanth Krishna Mannam

 Software Engineer

 Samsung India Software Operations

 Bangalore, India







--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH] python-elementary: Add callbacks for Slider drag start/stop

2012-04-19 Thread Kai Huuhko
---
 .../elementary/elementary.c_elementary_slider.pxi  |   12 
 1 file changed, 12 insertions(+)

diff --git a/python-elementary/elementary/elementary.c_elementary_slider.pxi b/python-elementary/elementary/elementary.c_elementary_slider.pxi
index 71cdf36..2804cfd 100644
--- a/python-elementary/elementary/elementary.c_elementary_slider.pxi
+++ b/python-elementary/elementary/elementary.c_elementary_slider.pxi
@@ -54,6 +54,18 @@ cdef class Slider(Object):
 def callback_changed_del(self, func):
 self._callback_del(changed, func)
 
+def callback_slider_drag_start_add(self, func, *args, **kwargs):
+self._callback_add(slider,drag,start, func, *args, **kwargs)
+
+def callback_slider_drag_start_del(self, func):
+self._callback_del(slider,drag,start, func)
+
+def callback_slider_drag_stop_add(self, func, *args, **kwargs):
+self._callback_add(slider,drag,stop, func, *args, **kwargs)
+
+def callback_slider_drag_stop_del(self, func):
+self._callback_del(slider,drag,stop, func)
+
 def callback_delay_changed_add(self, func, *args, **kwargs):
 self._callback_add(delay,changed, func, *args, **kwargs)
 
--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] How to use evas_object_layer_set() feature in EDC ?

2012-04-19 Thread The Rasterman
On Thu, 19 Apr 2012 15:08:30 +0530 GOVINDARAJU SM govi...@samsung.com said:

 Hi Raster,
 I think, Sumanth's question is about having EDC group with different 
 Parts in different layer ( with in same canvas, Window ).  In General  
 EDC Group parts are layered based on the order its declared.  Can we add 
 one more property in EDC  part description for Layer level ( similar to 
 EDC part source2...source6, which is placed above layer of  the TEXTBLOCK )

i know. you can't all the objects are stacked WITHIN the edje object. an object
can only exist in 1 layer. thus the layer the edje object is in. otherwise you
break the encapsulation and stacking - so no u can't. if ytou want this it has
to be done outside the edje object itself and things have to be broken into
multiple objects  at the top level.

 His question is about with in one window/canvas, and Edje object itself 
 gets a user defined layer level from EDC and placing a part on that 
 layer.  Do you consider this as violation of encapsulation?  EDC part 
 source2 does almost the same... :)
 
 Regards,
 Govind
 
 On 4/19/2012 2:28 PM, Carsten Haitzler (The Rasterman) wrote:
  On Thu, 19 Apr 2012 04:47:42 + (GMT) Sumanth Krishna Mannam
  sumant...@samsung.com  said:
 
  Samsung Enterprise Portal mySingle
 
  Hi Raster,
 
 
 
  Are you suggesting that all the objects of a group should be placed in a
  single layer, otherwise it will be a voilation of edje object
  encapsulation  ?
  not even a single layer - WITHIN the same object. smart objects effectively
  make a tree. its the same as windows in x or win32 or osx. things inside
  that window cannot be stacked OUTSIDE of the window above/below without
  making another window and stacking it on top. it violates the encapsulation.
 
  Thanks,
 
  Sumanth
 
 
 
  --- Original Message ---
  Sender : Carsten Haitzlerras...@rasterman.com
Date : Apr 18, 2012 18:17 (GMT+05:30)
  Title : Re: [E-devel] How to use evas_object_layer_set() feature in EDC ?
  On Wed, 18 Apr 2012 11:30:05 + (GMT) Sumanth Krishna Mannam
  said:
 
  no - you can't as this violates the encapsulation of the edje object - all
  objects are INSIDE the edje object.
 
 
  Dear All,
 
  Is there any option to utilize  evas_object_layer_set()  feature in EDC?
  This may be a desirable feature like, Slider widget can display zoom
  indicator may be few pixels above the actual indicator where many higher
  layer objects present. Whenever the zoom indicator is displayed (in drag
  state), it should be moved to higher level layer to avoid clippings.
 
  To support these kind of features completely controlled by EDC without
  widget code intervention, I am proposing to add a layer/level property to
  EDC Part for each state.
 
 
  Your suggestions are welcome :)
 
  Thanks,
  Sumanth Krishna
  --
  Better than sec? Nothing is better than sec when it comes to
  monitoring Big Data applications. Try Boundary one-second
  resolution app monitoring today. Free.
  http://p.sf.net/sfu/Boundary-dev2dev
  ___
  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
 
 
 
 
 
  ---
 
  Sumanth Krishna Mannam
 
  Software Engineer
 
  Samsung India Software Operations
 
  Bangalore, India
 
 
 
 
 
 
 
 --
 For Developers, A Lot Can Happen In A Second.
 Boundary is the first to Know...and Tell You.
 Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
 http://p.sf.net/sfu/Boundary-d2dvs2
 ___
 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


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] How to use evas_object_layer_set() feature in EDC ?

2012-04-19 Thread The Rasterman
On Thu, 19 Apr 2012 22:50:51 +0900 Carsten Haitzler (The Rasterman)
ras...@rasterman.com said:

 On Thu, 19 Apr 2012 15:08:30 +0530 GOVINDARAJU SM govi...@samsung.com said:
 
  Hi Raster,
  I think, Sumanth's question is about having EDC group with different 
  Parts in different layer ( with in same canvas, Window ).  In General  
  EDC Group parts are layered based on the order its declared.  Can we add 
  one more property in EDC  part description for Layer level ( similar to 
  EDC part source2...source6, which is placed above layer of  the TEXTBLOCK )
 
 i know. you can't all the objects are stacked WITHIN the edje object. an

errr missed a . after all. :)

 object can only exist in 1 layer. thus the layer the edje object is in.
 otherwise you break the encapsulation and stacking - so no u can't. if ytou
 want this it has to be done outside the edje object itself and things have to
 be broken into multiple objects  at the top level.
 
  His question is about with in one window/canvas, and Edje object itself 
  gets a user defined layer level from EDC and placing a part on that 
  layer.  Do you consider this as violation of encapsulation?  EDC part 
  source2 does almost the same... :)
  
  Regards,
  Govind
  
  On 4/19/2012 2:28 PM, Carsten Haitzler (The Rasterman) wrote:
   On Thu, 19 Apr 2012 04:47:42 + (GMT) Sumanth Krishna Mannam
   sumant...@samsung.com  said:
  
   Samsung Enterprise Portal mySingle
  
   Hi Raster,
  
  
  
   Are you suggesting that all the objects of a group should be placed in a
   single layer, otherwise it will be a voilation of edje object
   encapsulation  ?
   not even a single layer - WITHIN the same object. smart objects
   effectively make a tree. its the same as windows in x or win32 or osx.
   things inside that window cannot be stacked OUTSIDE of the window
   above/below without making another window and stacking it on top. it
   violates the encapsulation.
  
   Thanks,
  
   Sumanth
  
  
  
   --- Original Message ---
   Sender : Carsten Haitzlerras...@rasterman.com
 Date : Apr 18, 2012 18:17 (GMT+05:30)
   Title : Re: [E-devel] How to use evas_object_layer_set() feature in
   EDC ?
   On Wed, 18 Apr 2012 11:30:05 + (GMT) Sumanth Krishna Mannam
   said:
  
   no - you can't as this violates the encapsulation of the edje object -
   all objects are INSIDE the edje object.
  
  
   Dear All,
  
   Is there any option to utilize  evas_object_layer_set()  feature in
   EDC? This may be a desirable feature like, Slider widget can display
   zoom indicator may be few pixels above the actual indicator where many
   higher layer objects present. Whenever the zoom indicator is displayed
   (in drag state), it should be moved to higher level layer to avoid
   clippings.
  
   To support these kind of features completely controlled by EDC without
   widget code intervention, I am proposing to add a layer/level property
   to EDC Part for each state.
  
  
   Your suggestions are welcome :)
  
   Thanks,
   Sumanth Krishna
   --
   Better than sec? Nothing is better than sec when it comes to
   monitoring Big Data applications. Try Boundary one-second
   resolution app monitoring today. Free.
   http://p.sf.net/sfu/Boundary-dev2dev
   ___
   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
  
  
  
  
  
   ---
  
   Sumanth Krishna Mannam
  
   Software Engineer
  
   Samsung India Software Operations
  
   Bangalore, India
  
  
  
  
  
  
  
  --
  For Developers, A Lot Can Happen In A Second.
  Boundary is the first to Know...and Tell You.
  Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
  http://p.sf.net/sfu/Boundary-d2dvs2
  ___
  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
 
 
 --
 For Developers, A Lot Can Happen In A Second.
 Boundary is the first to Know...and Tell You.
 Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
 http://p.sf.net/sfu/Boundary-d2dvs2
 ___
 enlightenment-devel mailing list
 

[E-devel] beta time

2012-04-19 Thread The Rasterman
it's time for beta. i want everyone to hold back on svn for the next 24hrs to
give it settling time until i mark out the beta tomorrow. don't make any
changes that are anything but minor typos in documentation or readme's etc. in
the next 12-18hrs or so can u look over NEWS, Changelog, README and other doc
files to checks its all good. the plan as of now is this. we put out this beta,
and next tuesday evening (my time) we put out a release and svn trunk goes back
to devel mode, patches to releases go into the branches. etc.

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


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] beta time

2012-04-19 Thread Vincent Torri
On Thu, Apr 19, 2012 at 4:07 PM, Carsten Haitzler ras...@rasterman.com wrote:
 it's time for beta. i want everyone to hold back on svn for the next 24hrs to
 give it settling time until i mark out the beta tomorrow. don't make any
 changes that are anything but minor typos in documentation or readme's etc. in
 the next 12-18hrs or so can u look over NEWS, Changelog, README and other doc
 files to checks its all good. the plan as of now is this. we put out this 
 beta,
 and next tuesday evening (my time) we put out a release and svn trunk goes 
 back
 to devel mode, patches to releases go into the branches. etc.

ticket #995 : libeina.so.1: undefined symbol: eina_model_init

Vincent

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH] python-elementary: Add Fileselector folder_only_get/set

2012-04-19 Thread Kai Huuhko
---
 .../elementary/elementary.c_elementary_fileselector.pxi  |   10 ++
 python-elementary/include/elementary/c_elementary.pxd|   10 ++
 2 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/python-elementary/elementary/elementary.c_elementary_fileselector.pxi b/python-elementary/elementary/elementary.c_elementary_fileselector.pxi
index 2499496..633146e 100644
--- a/python-elementary/elementary/elementary.c_elementary_fileselector.pxi
+++ b/python-elementary/elementary/elementary.c_elementary_fileselector.pxi
@@ -38,6 +38,16 @@ cdef class Fileselector(Object):
 return None
 return p
 
+def folder_only_set(self, folder_only):
+elm_fileselector_folder_only_set(self.obj, folder_only)
+
+def folder_only_get(self):
+cdef unsigned char r
+r = elm_fileselector_folder_only_get(self.obj)
+if r == 0:
+return False
+return True
+
 def path_set(self, path):
 elm_fileselector_path_set(self.obj, path)
 
diff --git a/python-elementary/include/elementary/c_elementary.pxd b/python-elementary/include/elementary/c_elementary.pxd
index ec9c92b..0d4631d 100644
--- a/python-elementary/include/elementary/c_elementary.pxd
+++ b/python-elementary/include/elementary/c_elementary.pxd
@@ -107,7 +107,7 @@ cdef extern from Elementary.h:
 ctypedef enum Elm_Object_Select_Mode:
 ELM_OBJECT_SELECT_MODE_DEFAULT# default select mode
 ELM_OBJECT_SELECT_MODE_ALWAYS # always select mode
-ELM_OBJECT_SELECT_MODE_NONE   # no select mode 
+ELM_OBJECT_SELECT_MODE_NONE   # no select mode
 ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY   # no select mode with no finger size rule
 ELM_OBJECT_SELECT_MODE_MAX
 
@@ -120,7 +120,7 @@ cdef extern from Elementary.h:
 ctypedef enum Elm_Web_Zoom_Mode:
 ELM_WEB_ZOOM_MODE_MANUAL 	#Zoom controlled normally by elm_web_zoom_set.
 ELM_WEB_ZOOM_MODE_AUTO_FIT 	#Zoom until content fits in web object
-ELM_WEB_ZOOM_MODE_AUTO_FILL	#Zoom until content fills web object. 
+ELM_WEB_ZOOM_MODE_AUTO_FILL	#Zoom until content fills web object.
 
 ctypedef enum Elm_Flip_Mode:
 ELM_FLIP_ROTATE_Y_CENTER_AXIS
@@ -143,8 +143,8 @@ cdef extern from Elementary.h:
 ELM_GENLIST_ITEM_FIELD_STATE
 
 ctypedef enum Elm_Genlist_Item_Scrollto_Type:
-ELM_GENLIST_ITEM_SCROLLTO_NONE  # no scrollto 
-ELM_GENLIST_ITEM_SCROLLTO_IN# to the nearest viewport 
+ELM_GENLIST_ITEM_SCROLLTO_NONE  # no scrollto
+ELM_GENLIST_ITEM_SCROLLTO_IN# to the nearest viewport
 ELM_GENLIST_ITEM_SCROLLTO_TOP   # to the top of viewport
 ELM_GENLIST_ITEM_SCROLLTO_MIDDLE# to the middle of viewport
 
@@ -866,6 +866,8 @@ cdef extern from Elementary.h:
 void elm_fileselector_is_save_set(evas.c_evas.Evas_Object *obj, evas.c_evas.Eina_Bool is_save)
 evas.c_evas.Eina_Bool elm_fileselector_is_save_get(evas.c_evas.Evas_Object *obj)
 char*elm_fileselector_selected_get(evas.c_evas.Evas_Object *obj)
+void elm_fileselector_folder_only_set(evas.c_evas.Evas_Object *obj, evas.c_evas.Eina_Bool value)
+evas.c_evas.Eina_Bool elm_fileselector_folder_only_get(evas.c_evas.Evas_Object *obj)
 void elm_fileselector_path_set(evas.c_evas.Evas_Object *obj, char *path)
 char*elm_fileselector_path_get(evas.c_evas.Evas_Object *obj)
 void elm_fileselector_expandable_set(evas.c_evas.Evas_Object *obj, evas.c_evas.Eina_Bool expand)
--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Bug in Elementary File Selector with ampersand in filename

2012-04-19 Thread Kai Huuhko
Elementary File Selector does not handle correctly file/foldernames
with ampersands in them. This is not only cosmetic, in that everything
after the ampersand is cut of, but also functional; the file or folder
path is not properly passed to the callback function.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


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

2012-04-19 Thread Lucas De Marchi
On Thu, Apr 19, 2012 at 6:24 AM, Enlightenment SVN
no-re...@enlightenment.org wrote:
 Log:
 eina: disable log backtracking.


 Author:       cedric
 Date:         2012-04-19 02:24:04 -0700 (Thu, 19 Apr 2012)
 New Revision: 70327
 Trac:         http://trac.enlightenment.org/e/changeset/70327

 Modified:
  trunk/eina/ChangeLog trunk/eina/NEWS trunk/eina/src/lib/eina_log.c

 Modified: trunk/eina/ChangeLog
 ===
 --- trunk/eina/ChangeLog        2012-04-19 09:03:59 UTC (rev 70326)
 +++ trunk/eina/ChangeLog        2012-04-19 09:24:04 UTC (rev 70327)
 @@ -250,8 +250,3 @@

        * Add missing API eina_file_map_faulted() on Windows. Does nothing
        for now.
 -
 -2012-03-31  Cedric Bail
 -
 -       * Add environment variable EINA_LOG_BACKTRACE to trigger the display 
 of a backtraced attached
 -       to a log event.

 Modified: trunk/eina/NEWS
 ===
 --- trunk/eina/NEWS     2012-04-19 09:03:59 UTC (rev 70326)
 +++ trunk/eina/NEWS     2012-04-19 09:24:04 UTC (rev 70327)
 @@ -20,7 +20,6 @@
     * EINA_C_ARRAY_LENGTH macro.
     * Eina_Stringshare typedef.
     * add eina_file_map_faulted() for windows port (was missing).
 -    * Environment variable EINA_LOG_BACKTRACE trigger the display of 
 backtrace attached to a log event.

  Fixes:


 Modified: trunk/eina/src/lib/eina_log.c
 ===
 --- trunk/eina/src/lib/eina_log.c       2012-04-19 09:03:59 UTC (rev 70326)
 +++ trunk/eina/src/lib/eina_log.c       2012-04-19 09:24:04 UTC (rev 70327)
 @@ -28,10 +28,12 @@
  #include assert.h
  #include errno.h

 +#if 0
  #if defined HAVE_EXECINFO_H  defined HAVE_BACKTRACE  defined 
 HAVE_BACKTRACE_SYMBOLS
  # include execinfo.h
  # define EINA_LOG_BACKTRACE
  #endif
 +#endif

Why don't you just disable it in autofoo?

Lucas De Marchi

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] beta time

2012-04-19 Thread The Rasterman
On Thu, 19 Apr 2012 16:56:43 +0200 Vincent Torri vincent.to...@gmail.com said:

 On Thu, Apr 19, 2012 at 4:07 PM, Carsten Haitzler ras...@rasterman.com
 wrote:
  it's time for beta. i want everyone to hold back on svn for the next 24hrs
  to give it settling time until i mark out the beta tomorrow. don't make any
  changes that are anything but minor typos in documentation or readme's etc.
  in the next 12-18hrs or so can u look over NEWS, Changelog, README and
  other doc files to checks its all good. the plan as of now is this. we put
  out this beta, and next tuesday evening (my time) we put out a release and
  svn trunk goes back to devel mode, patches to releases go into the
  branches. etc.
 
 ticket #995 : libeina.so.1: undefined symbol: eina_model_init

WFM. that was temporary in svn for about 10 mins.


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


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch][elementary_test] test_list

2012-04-19 Thread Kim Shinwoo
Thanks for your response. Your review is always great. :)

2012/4/19 Daniel Juyung Seo seojuyu...@gmail.com:
 Belated review.
 I have some comments. I just committed the fixed version but it'll be
 good for you to know.

 1) two spaces between bt, and 4!!.
 elm_grid_pack(gd, bt,  4,  80, 20, 10);
 There were more than 10 instances of this. I fixed it.

 2) internal function position
 I moved _first/prev/next/last_bt_clicked() callback functions to the
 right before test_list6() function.
 They are used for test_list6().

 3) casting
 Evas_Object *li = (Evas_Object *) data;
 You don't need to cast void pointer.
 Just do
 Evas_Object *li = data;

 Otherwise, it is a good patch!
 Here is the link of my fix.
 http://trac.enlightenment.org/e/changeset/70317

 Thanks.

 Daniel Juyung Seo (SeoZ)

 On Tue, Apr 17, 2012 at 8:20 PM, Kim Shinwoo kimcinoo@gmail.com wrote:
 hehe~ I like grid!
 hmm.. If you want... I will be back with the box!

 2012/4/17 Carsten Haitzler ras...@rasterman.com:
 On Tue, 17 Apr 2012 13:35:19 +0900 cnook kimci...@gmail.com said:

 Dear All, Hello.

 I had added test code for the elementary. but I made a pause it because of
 some reasons and just started again.
 Today I have attached a patch for the elm_list which does not have test
 code for the API elm_list_item_prev();
 Please review the attached patch and give any feedbacks. I'll be back with
 other patches. Thanks!

 in - with null item fetch changes in as chuneon was mentioning.

 also.. just style-wise.. WHY a grid? why? why why why? its really a widget u
 DONT want to go using... much.. ever!

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


 --
 Better than sec? Nothing is better than sec when it comes to
 monitoring Big Data applications. Try Boundary one-second
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

 --
 Better than sec? Nothing is better than sec when it comes to
 monitoring Big Data applications. Try Boundary one-second
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

 --
 For Developers, A Lot Can Happen In A Second.
 Boundary is the first to Know...and Tell You.
 Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
 http://p.sf.net/sfu/Boundary-d2dvs2
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Introducing EFL Korean User Group

2012-04-19 Thread Jérôme Pinot
On 04/19/12 16:21, Daniel Juyung Seo wrote:
 Dear all, this is Daniel Juyung Seo.
 I introduce EFL Korean User Group,
 http://efl.or.kr
 
 This group is not a big community or whatever as of now. It's a place
 to hold all Korean EFL materials together.
 The reason why we created this is that it is very hard to find Korean
 information for EFL and all the information is spread.
 And I've been asked about Korean EFL material from many people.
 
 I and Hermet created this group and Woohyun will join us soon :)
 \I encourage any Korean to join this group and share your EFL blog
 posts with us.
 Basically many of the contents are linked to my blog now and Hermet's
 blog is also linked.
 
 Thank you very much.

Is this group only for korean people?
I'm not korean but after 10 years living in South Korea, maybe a little
bit :-)
BTW, one of my efl project, ePeriodique, is translated into korean.

-- 
Jérôme Pinot
http://ngc891.blogdns.net/


signature.asc
Description: Digital signature
--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Introducing EFL Korean User Group

2012-04-19 Thread Hyoyoung Chang
I think it's not about nationality. just language. isn't it, guys?

On Fri, Apr 20, 2012 at 11:29 AM, Jérôme Pinot ngc...@gmail.com wrote:
 On 04/19/12 16:21, Daniel Juyung Seo wrote:
 Dear all, this is Daniel Juyung Seo.
 I introduce EFL Korean User Group,
 http://efl.or.kr

 This group is not a big community or whatever as of now. It's a place
 to hold all Korean EFL materials together.
 The reason why we created this is that it is very hard to find Korean
 information for EFL and all the information is spread.
 And I've been asked about Korean EFL material from many people.

 I and Hermet created this group and Woohyun will join us soon :)
 \I encourage any Korean to join this group and share your EFL blog
 posts with us.
 Basically many of the contents are linked to my blog now and Hermet's
 blog is also linked.

 Thank you very much.

 Is this group only for korean people?
 I'm not korean but after 10 years living in South Korea, maybe a little
 bit :-)
 BTW, one of my efl project, ePeriodique, is translated into korean.

 --
 Jérôme Pinot
 http://ngc891.blogdns.net/

 --
 For Developers, A Lot Can Happen In A Second.
 Boundary is the first to Know...and Tell You.
 Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
 http://p.sf.net/sfu/Boundary-d2dvs2
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Introducing EFL Korean User Group

2012-04-19 Thread Daniel Juyung Seo
Wow.. 10 years in Korea! That's great.
I've tried ePeriodique before :) But I didn't notice it supports Korean though.
Interesting. Did you translate that by yourself?

Btw, the Korean User Group is not limited to foreigners.
It is just a blob of links about EFL information written in Korean.
We may open up a forum later but as of now we have links only.

Anyhow, it's great to know that you lived in Korean for 10 years.

Daniel Juyung Seo (SeoZ)


On Fri, Apr 20, 2012 at 11:29 AM, Jérôme Pinot ngc...@gmail.com wrote:
 On 04/19/12 16:21, Daniel Juyung Seo wrote:
 Dear all, this is Daniel Juyung Seo.
 I introduce EFL Korean User Group,
 http://efl.or.kr

 This group is not a big community or whatever as of now. It's a place
 to hold all Korean EFL materials together.
 The reason why we created this is that it is very hard to find Korean
 information for EFL and all the information is spread.
 And I've been asked about Korean EFL material from many people.

 I and Hermet created this group and Woohyun will join us soon :)
 \I encourage any Korean to join this group and share your EFL blog
 posts with us.
 Basically many of the contents are linked to my blog now and Hermet's
 blog is also linked.

 Thank you very much.

 Is this group only for korean people?
 I'm not korean but after 10 years living in South Korea, maybe a little
 bit :-)
 BTW, one of my efl project, ePeriodique, is translated into korean.

 --
 Jérôme Pinot
 http://ngc891.blogdns.net/

 --
 For Developers, A Lot Can Happen In A Second.
 Boundary is the first to Know...and Tell You.
 Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
 http://p.sf.net/sfu/Boundary-d2dvs2
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Introducing EFL Korean User Group

2012-04-19 Thread Daniel Juyung Seo
Yes right. It's about the language not the nationality.

Daniel Juyung Seo (SeoZ)

On Fri, Apr 20, 2012 at 11:38 AM, Hyoyoung Chang hyoyo...@gmail.com wrote:
 I think it's not about nationality. just language. isn't it, guys?

 On Fri, Apr 20, 2012 at 11:29 AM, Jérôme Pinot ngc...@gmail.com wrote:
 On 04/19/12 16:21, Daniel Juyung Seo wrote:
 Dear all, this is Daniel Juyung Seo.
 I introduce EFL Korean User Group,
 http://efl.or.kr

 This group is not a big community or whatever as of now. It's a place
 to hold all Korean EFL materials together.
 The reason why we created this is that it is very hard to find Korean
 information for EFL and all the information is spread.
 And I've been asked about Korean EFL material from many people.

 I and Hermet created this group and Woohyun will join us soon :)
 \I encourage any Korean to join this group and share your EFL blog
 posts with us.
 Basically many of the contents are linked to my blog now and Hermet's
 blog is also linked.

 Thank you very much.

 Is this group only for korean people?
 I'm not korean but after 10 years living in South Korea, maybe a little
 bit :-)
 BTW, one of my efl project, ePeriodique, is translated into korean.

 --
 Jérôme Pinot
 http://ngc891.blogdns.net/

 --
 For Developers, A Lot Can Happen In A Second.
 Boundary is the first to Know...and Tell You.
 Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
 http://p.sf.net/sfu/Boundary-d2dvs2
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


 --
 For Developers, A Lot Can Happen In A Second.
 Boundary is the first to Know...and Tell You.
 Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
 http://p.sf.net/sfu/Boundary-d2dvs2
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel