Re: [E-devel] E SVN: raster IN trunk/evas: . src/lib src/lib/canvas src/lib/include

2011-12-16 Thread The Rasterman
On Fri, 16 Dec 2011 16:25:27 +0100 Vincent Torri said: no. i don't intend to touch news until the next release. i also need to backport some fixes, but i was busy enough getting this up and going and i'll do the backports this weekend. > no NEWS update ? (same for ecore_evas extn) > > Vincent >

Re: [E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Jihoon Kim
yes, I'll try to be fair on xim and this module. I know someone can choose other input method framework not scim. 2011. 12. 17. 오전 12:13에 "Iván Briano (Sachiel)" 님이 작성: > 2011/12/16 Jihoon Kim : > > scim panel process shows the candidate list itself. These candidate data > is > > provided by scim

Re: [E-devel] E SVN: raster IN trunk/evas: . src/lib src/lib/canvas src/lib/include

2011-12-16 Thread Vincent Torri
no NEWS update ? (same for ecore_evas extn) Vincent On Fri, Dec 16, 2011 at 10:24 AM, Enlightenment SVN wrote: > Log: > Add new api to set and get default event flags. > > > > Author:       raster > Date:         2011-12-16 01:24:18 -0800 (Fri, 16 Dec 2011) > New Revision: 66275 > Trac:        

Re: [E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Sachiel
2011/12/16 Jihoon Kim : > scim panel process shows the candidate list itself. These candidate data is > provided by scim imengines. Those engine is running in scim-laucher > process. In ecore_imf or gtk_imcotext, there is no API to fetch the > cadidate. Thought so, didn't see anything like it when

Re: [E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Jihoon Kim
scim panel process shows the candidate list itself. These candidate data is provided by scim imengines. Those engine is running in scim-laucher process. In ecore_imf or gtk_imcotext, there is no API to fetch the cadidate. 2011. 12. 16. 오후 11:01에 "Iván Briano (Sachiel)" 님이 작성: > 2011/12/16 Jihoon K

Re: [E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Sachiel
2011/12/16 Jihoon Kim : > yes, it connects with scim daemon through unix domain socket directly. Ah, fine then. Changing subject, the candidate list is still done by SCIM or it's possible to fetch the candidate to show ourselves? --

Re: [E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Jihoon Kim
yes, it connects with scim daemon through unix domain socket directly. 2011. 12. 16. 오후 10:21에 "Iván Briano (Sachiel)" 님이 작성: > 2011/12/16 Jihoon Kim : > > According to scim official site ( > > > http://www.scim-im.org/wiki/documentation/installation_and_configuration/all/system_configuration > >

Re: [E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Sachiel
2011/12/16 Jihoon Kim : > According to scim official site ( > http://www.scim-im.org/wiki/documentation/installation_and_configuration/all/system_configuration > ), > it describes the disadvantages of XIM like below : > > "Because the XIM protocol has a lot of limitations (for example, it may > fre

[E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Jihoon Kim
According to scim official site ( http://www.scim-im.org/wiki/documentation/installation_and_configuration/all/system_configuration ), it describes the disadvantages of XIM like below : "Because the XIM protocol has a lot of limitations (for example, it may freeze your entire X when something goes

[E-devel] Little patch for E_Connman.h

2011-12-16 Thread Guillaume Friloux
Hello e people, There is two missing declarations in E_Connman.h : - e_connman_service_nameservers_configuration_get() - e_connman_service_nameservers_configuration_set() Without e_connman_service_nameservers_configuration_set() you cant specify any nameserver in “manual” method I attached a pat

Re: [E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Sachiel
2011/12/16 Jihoon Kim : > Hi, EFL developers. > > I'd like to contribute EFL-scim immodule. > > It will be useful to users who wants to input Chinese, Japanese, Korean, > and a variety of languages that SCIM provides. > > You can build this module according to the below steps: > > # sudo apt-get in

Re: [E-devel] [Patch][ecore_con_url] Add proxy & timeout set API

2011-12-16 Thread Bluezery
I fixed doc & ChangeLog & News. 2011/12/16 Carsten Haitzler : > > if they want to dynamically adjust the feature should be in ecore_con to track > the changes and adjust automatically :) -- BRs, Kim. Index: src/lib/ecore_con/ecore_con_url.c ===

Re: [E-devel] [Patch][ecore_con_url] Add proxy & timeout set API

2011-12-16 Thread The Rasterman
On Fri, 16 Dec 2011 19:41:21 +0900 Bluezery said: > 2011/12/16 Carsten Haitzler : > > why do we need to set proxy - curl inherits $http_proxy and $https_proxy env > > vars so it will use the system proxy settings... ? > > > > Yes, environment value can do that in normal environment. > But each a

Re: [E-devel] [Patch][ecore_con_url] Add proxy & timeout set API

2011-12-16 Thread Bluezery
2011/12/16 Carsten Haitzler : > why do we need to set proxy - curl inherits $http_proxy and $https_proxy env > vars so it will use the system proxy settings... ? > Yes, environment value can do that in normal environment. But each application may want to use it's own proxy. For example, proxy byp

[E-devel] [PATCH] scim-EFL immodule

2011-12-16 Thread Jihoon Kim
Hi, EFL developers. I'd like to contribute EFL-scim immodule. It will be useful to users who wants to input Chinese, Japanese, Korean, and a variety of languages that SCIM provides. You can build this module according to the below steps: # sudo apt-get install scim-dev # tar xvfz escim_immodule

[E-devel] how about to move elm_selection_{set/get} to public header?

2011-12-16 Thread Hyoyoung Chang
Dear all, Elementary has facility of copying&pasting. Its name is elm_cnp_helper. elm_cnp_helper supports all C&P functionality. But sadly, elm_selection_{set/get} live in private header (elm_widget.h) So apps can't use elm selection api directly. Some application use ecore selection api. 1. I th

Re: [E-devel] [Patch][ecore_con_url] Add proxy & timeout set API

2011-12-16 Thread The Rasterman
On Fri, 16 Dec 2011 17:48:42 +0900 Bluezery said: > Dear all, why do we need to set proxy - curl inherits $http_proxy and $https_proxy env vars so it will use the system proxy settings... ? > > There existed two problems when using ecore_con_url. We cannot set > proxy and set timeout. > So, I

Re: [E-devel] [Patch][ecore_con_url] Add proxy & timeout set API

2011-12-16 Thread Vincent Torri
On Fri, Dec 16, 2011 at 9:48 AM, Bluezery wrote: > Dear all, > > > There existed two problems when using ecore_con_url. We cannot set > proxy and set timeout. > So, I added two APIs for solving these problems. > Proxy can be set by setting libcurl option. > Timeout also can be set but It need to a

[E-devel] [Patch][ecore_con_url] Add proxy & timeout set API

2011-12-16 Thread Bluezery
Dear all, There existed two problems when using ecore_con_url. We cannot set proxy and set timeout. So, I added two APIs for solving these problems. Proxy can be set by setting libcurl option. Timeout also can be set but It need to add handler for Linux alarm signal. (Please refer: http://curl.ha

Re: [E-devel] [Patch][elm_config] Add pinch zoom enable configuration

2011-12-16 Thread Daniel Juyung Seo
On Thu, Dec 15, 2011 at 11:59 PM, Tom Hacohen wrote: > On 15/12/11 16:34, Bluezery wrote: >> >> I reflected Daniel's comments.  I added setter/getter APIs for all >> gesture configuration. :D >> Please review again. > > > I have a couple of more suggestions: > 1. I'm very very sorry, I just saw so

Re: [E-devel] [patch] elm_cnp_helper - add type checking for non-elm cnp datas

2011-12-16 Thread Hyoyoung Chang
Oops i omitted file attaching. sorry. On Fri, Dec 16, 2011 at 5:09 PM, Hyoyoung Chang wrote: > Dear developers > > elm_cnp_helper supports rich types for copying & pasting. > but it doesn't extend like x11 way. > this patch introduces to reduce mismatch for checking selection type format. > now e

[E-devel] [patch] elm_cnp_helper - add type checking for non-elm cnp datas

2011-12-16 Thread Hyoyoung Chang
Dear developers elm_cnp_helper supports rich types for copying & pasting. but it doesn't extend like x11 way. this patch introduces to reduce mismatch for checking selection type format. now elm can live in harmony with non-elm cnp datas Thanks ---