platform/core/uifw/isf.git
7 years agoMerge "Change filter_event to return true even read_from_socket fails" into tizen_3.0
Jihoon Kim [Wed, 1 Feb 2017 00:37:27 +0000 (16:37 -0800)]
Merge "Change filter_event to return true even read_from_socket fails" into tizen_3.0

7 years agoChange filter_event to return true even read_from_socket fails 08/112308/1
Ji-hoon Lee [Tue, 31 Jan 2017 06:29:46 +0000 (15:29 +0900)]
Change filter_event to return true even read_from_socket fails

If the filter_event returns false, the ISE will terminate itself.
So modified filter_event to return false only when the connection
is lost, and keep alive in other abnormal cases such as timeout.

Change-Id: I96f15fede012789cb74d2a72aef6f78c145e8230

7 years agoUpdate package version to 3.0.165 73/112273/1 accepted/tizen/3.0/common/20170131.161827 accepted/tizen/3.0/ivi/20170131.090514 accepted/tizen/3.0/mobile/20170131.090428 accepted/tizen/3.0/tv/20170131.090442 accepted/tizen/3.0/wearable/20170131.090457 submit/tizen_3.0/20170131.023722
InHong Han [Tue, 31 Jan 2017 02:13:13 +0000 (11:13 +0900)]
Update package version to 3.0.165

Change-Id: I0449b62c18bdd71ddc07eb11bcf6447e0fdda5b3

7 years agoUsing secure log 72/112272/1
InHong Han [Tue, 31 Jan 2017 02:12:14 +0000 (11:12 +0900)]
Using secure log

Change-Id: I0a48bc911bcfcfe6188dc19362bc1fbe178056fb

7 years agoFix URL layout issue in remote input #2 20/112120/1
Sungmin Kwak [Thu, 26 Jan 2017 06:21:45 +0000 (15:21 +0900)]
Fix URL layout issue in remote input #2

Delete all surrounding texts before commit string when URL layout

Change-Id: I6d3e7f77c0b12de8d3d28d0251ff982c988faf69

7 years agoFix build error due to undefined reference to eina_str_split 20/112020/2
Jihoon Kim [Wed, 25 Jan 2017 10:37:36 +0000 (19:37 +0900)]
Fix build error due to undefined reference to eina_str_split

Change-Id: I4d5f8b51acb10a3c906c0f091c3e1aeaa23d1739
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFix issue when focused_context is greater than 0x7FFF 76/111876/2
Ji-hoon Lee [Tue, 24 Jan 2017 11:17:35 +0000 (20:17 +0900)]
Fix issue when focused_context is greater than 0x7FFF

Since opensource SCIM generates helper_ic using the formula
helper_ic = (uint32)(client&0xFFFF)|((context&0x7FFF)<<16);
, if the context is greater than 0x7FFF the operator "="
is not appropriate for comparing two contexts properly.
Thus added compare function for contexts and modified to use
focused_context variable that is not being truncated by the
helper_ic generation formula.
But still, helper_ic related code seems to need a refinement.

Change-Id: Iecf2c72788b7d3acebb4b119ad0fe4ea78a6b881

7 years agoReplace Ecore_Fd_handler with GIOChannel in remote input. 77/111877/3
InHong Han [Tue, 24 Jan 2017 11:38:59 +0000 (20:38 +0900)]
Replace Ecore_Fd_handler with GIOChannel in remote input.

Use GIOChannel to support g_main_loop instead of ecore_main_loop from remote input
Change-Id: I31ff0653038c2be37d1b1ae54d6281710c1f64aa

7 years agoUpdate package version to 3.0.164 18/111818/1 accepted/tizen/3.0/common/20170125.121738 accepted/tizen/3.0/ivi/20170125.084018 accepted/tizen/3.0/mobile/20170125.084005 accepted/tizen/3.0/tv/20170125.084009 accepted/tizen/3.0/wearable/20170125.084014 submit/tizen_3.0/20170124.114159
InHong Han [Tue, 24 Jan 2017 06:59:21 +0000 (15:59 +0900)]
Update package version to 3.0.164

Change-Id: I084afcb3a15b205ab0a5ae25b43f074fe703ccc0

7 years agoModified to receive both remote_surrounding_text and cursor_position 76/111676/1
InHong Han [Mon, 23 Jan 2017 10:08:01 +0000 (19:08 +0900)]
Modified to receive both remote_surrounding_text and cursor_position

Change-Id: Idb77e9704368bc687c54b1dcfdca0a55cbfbb1c1

7 years agoUpdate package version to 3.0.163 54/111554/1 accepted/tizen/3.0/common/20170123.173445 accepted/tizen/3.0/ivi/20170123.022817 accepted/tizen/3.0/mobile/20170123.022704 accepted/tizen/3.0/tv/20170123.022724 accepted/tizen/3.0/wearable/20170123.022753 submit/tizen_3.0/20170121.235335
InHong Han [Sun, 22 Jan 2017 01:07:14 +0000 (10:07 +0900)]
Update package version to 3.0.163

Change-Id: Ica828e2e32dafba01bb8097859c398b2bc470352

7 years agoRemove cynara session in privilege_checker 53/111553/1
InHong Han [Fri, 20 Jan 2017 07:45:30 +0000 (16:45 +0900)]
Remove cynara session in privilege_checker

Session information is unnecessary in cynara checker
Change-Id: Id39809225e5d4ccb3493ba5ba0e586e1b3fe0674

7 years agoUpdate package version to 3.0.162 72/111272/1 submit/tizen/20170120.050913
InHong Han [Fri, 20 Jan 2017 05:10:30 +0000 (14:10 +0900)]
Update package version to 3.0.162

Change-Id: I7d2ad4ca88ed86d5c27902d9c0e69b485d8ef634

7 years agoCheck preedit_text first before analyzing surrounding_text 32/111032/2
Ji-hoon Lee [Thu, 19 Jan 2017 07:50:52 +0000 (16:50 +0900)]
Check preedit_text first before analyzing surrounding_text

Since the "cursor_position==0" condition is evaluated first,
the immodule considers autocapitalization is required even
when imcontext has preedit_text. Thus modified to check the
existence of preedit_text first.

Change-Id: Ibaa73a68617eaf08b8de6cade0ab8e28c2d83ea4

7 years agoFixed the deadlock issue during the wl_interface. 72/111072/1
Wonkeun Oh [Thu, 19 Jan 2017 09:38:23 +0000 (18:38 +0900)]
Fixed the deadlock issue during the wl_interface.

Do not send the filter_key_event if there is no _focused_ctx

Change-Id: I4934af371222155edfe51284d25185ece633844a

7 years agoRemoved the unnecessary code 81/110981/4
Wonkeun Oh [Thu, 19 Jan 2017 05:05:12 +0000 (14:05 +0900)]
Removed the unnecessary code

The same logic which check the keyboard mode before showing IME was added in the e-mod-tizen-wl-textinput.
And this logic makes the issue which IME can't be shown because the asynchronous communication between immodule and e-mod-tizen-wl-textinput module.

Immodule get the vconf changed callback function later than show_input_panel function because of the asynchronous interface of the vconf and wl_text_input api.

Change-Id: Ie0dcdf1d204ff19a56b2bc5fad98c5f1fbcdbbb4

7 years agoRemove unnecessary NULL check code 95/110895/1
Jihoon Kim [Wed, 18 Jan 2017 12:07:10 +0000 (21:07 +0900)]
Remove unnecessary NULL check code

Change-Id: Ie88ad2d58d3652b999a544b36603462fa7a80c78
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoUpdate package version to 3.0.161 93/110893/1 accepted/tizen/3.0/common/20170119.105945 accepted/tizen/3.0/ivi/20170119.020929 accepted/tizen/3.0/mobile/20170119.020842 accepted/tizen/3.0/tv/20170119.020859 accepted/tizen/3.0/wearable/20170119.020915 submit/tizen_3.0/20170118.115831
Jihoon Kim [Wed, 18 Jan 2017 11:55:36 +0000 (20:55 +0900)]
Update package version to 3.0.161

Change-Id: Iecb61dcc9e4dfb60b6afc5e66773a255c51604d8
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoCheck conformant reset state together with reset_conformant() success 26/110826/2
Ji-hoon Lee [Wed, 18 Jan 2017 01:12:35 +0000 (10:12 +0900)]
Check conformant reset state together with reset_conformant() success

Since the conformant is reset right after _input_panel_hide() call,
at the time that immodule receives conformant_reset request from
wl_textinput module, reset_conformant_area() function might return
false since the keyboard geometry is already set to 0x0.
So, even the keyboard geometry is set to 0x0, check the conformant
reset state to ensure there is no preceding conformant reset request
being processed.

Change-Id: I26f7062c52d3f3763167d4cfa87b3437ee7e8ad4

7 years agoCheck if preedit string is empty before sending cursor_pos 66/110566/5
Ji-hoon Lee [Tue, 17 Jan 2017 05:03:20 +0000 (14:03 +0900)]
Check if preedit string is empty before sending cursor_pos

Currently we are not sending cursor_pos if we have preedit string,
but since the routine only checks whether the preedit_text is NULL,
so if the preedit_string is empty "" string, the ISE / IMEngine
will not get cursor_pos information properly. Thus added 'strlen()'
condition at the NULL checking 'if()' statement.

Change-Id: Ia2444d59f736b3474da02ca56bf55b0c8c1f53a3

7 years agoFix issue not to launch 3rd party IME application in 64bit architecture 81/110681/2
Jihoon Kim [Tue, 17 Jan 2017 11:14:55 +0000 (20:14 +0900)]
Fix issue not to launch 3rd party IME application in 64bit architecture

In 64bit architecture, /usr/lib64 prefix should be used instead of /usr/lib

Change-Id: Ic016fa0a4a910f2bcc5203813848affe396e9368
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoUpdate package version to 3.0.160 12/110612/1 accepted/tizen/3.0/common/20170118.131113 accepted/tizen/3.0/ivi/20170118.043239 accepted/tizen/3.0/mobile/20170118.043152 accepted/tizen/3.0/tv/20170118.043203 accepted/tizen/3.0/wearable/20170118.043222 submit/tizen_3.0/20170117.072955
InHong Han [Tue, 17 Jan 2017 07:19:31 +0000 (16:19 +0900)]
Update package version to 3.0.160

Change-Id: I1f22c11dba51d7f74b7d937fc57f36adf09e7162

7 years agoCheck focus event flag in wl_input_method_listener 72/110572/1
InHong Han [Tue, 17 Jan 2017 00:59:43 +0000 (09:59 +0900)]
Check focus event flag in wl_input_method_listener

Unnecessary focus event occurred when calling the hide_input_panel() after
the focus_out event is called.
Change-Id: I2323d81d25ef870c0a87ae6b5e53af25f1576f4b

7 years agoUpdate package version to 3.0.159 18/110418/1 accepted/tizen/3.0/common/20170117.075746 accepted/tizen/3.0/ivi/20170117.005808 accepted/tizen/3.0/mobile/20170117.005720 accepted/tizen/3.0/tv/20170117.005733 accepted/tizen/3.0/wearable/20170117.005749 submit/tizen_3.0/20170116.102249
Jihoon Kim [Mon, 16 Jan 2017 10:14:13 +0000 (19:14 +0900)]
Update package version to 3.0.159

Change-Id: I9cd736d78a33b2972e635228123b33c12e70ec87
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoAdd isf_debug.h header file inclusion 07/110407/1
Sungmin Kwak [Mon, 16 Jan 2017 09:16:33 +0000 (18:16 +0900)]
Add isf_debug.h header file inclusion

Change-Id: Ie9e07064f269b7c825a6cd4d2324f85163f5852f

7 years agoAdded to send fail_reply message in the panel_agent's socket communication. 65/110165/1
Wonkeun Oh [Fri, 13 Jan 2017 05:41:58 +0000 (14:41 +0900)]
Added to send fail_reply message in the panel_agent's socket communication.

Because there was a missing reply message in the socket communication.
Even if there is no reply data or fail case in the socket, It should send the reply message to prevent the client side's timeout.
This patch fixed the 5 sec delay of helper_agent when the helper_agent(IME) is relaunched

Change-Id: I0bab779ea508bd108005e7707de98e9105484d3e

7 years agoUpdate package version to 3.0.158 80/109980/1 accepted/tizen/3.0/common/20170113.182208 accepted/tizen/3.0/common/20170116.122054 accepted/tizen/3.0/ivi/20170113.080706 accepted/tizen/3.0/ivi/20170113.235622 accepted/tizen/3.0/mobile/20170113.080619 accepted/tizen/3.0/mobile/20170113.235535 accepted/tizen/3.0/tv/20170113.080632 accepted/tizen/3.0/tv/20170113.235553 accepted/tizen/3.0/wearable/20170113.080650 accepted/tizen/3.0/wearable/20170113.235604 submit/tizen_3.0/20170112.091741 submit/tizen_3.0/20170113.013300
Ji-hoon Lee [Thu, 12 Jan 2017 10:35:06 +0000 (19:35 +0900)]
Update package version to 3.0.158

Change-Id: I20b1462dcfb4b07fa565cdbb98918d6a9d875900

7 years agoDisable unnecessary hide_permission query 82/109882/3
Ji-hoon Lee [Thu, 12 Jan 2017 06:32:27 +0000 (15:32 +0900)]
Disable unnecessary hide_permission query

Change-Id: I4b75479071d44fcd53c276e1d7c2d8bcd0536421

7 years agoReturn empty surrounding text when no focused client available 56/109856/3
Ji-hoon Lee [Thu, 12 Jan 2017 04:48:49 +0000 (13:48 +0900)]
Return empty surrounding text when no focused client available

Change-Id: I13b6c30bbf1a1d2e671ef583ab29f44fd8420a8a

7 years agoReduce binary size of wayland immodule to use hidden visibility 77/109477/1
Jihoon Kim [Tue, 10 Jan 2017 07:09:44 +0000 (16:09 +0900)]
Reduce binary size of wayland immodule to use hidden visibility

size : 39740 -> 36560

Change-Id: I25e4e99ff585b3cf04026d97660c63b39703227a
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoUpdate package version to 3.0.157 70/109070/2 accepted/tizen/3.0/common/20170110.125753 accepted/tizen/3.0/ivi/20170110.044315 accepted/tizen/3.0/mobile/20170110.044217 accepted/tizen/3.0/tv/20170110.044239 accepted/tizen/3.0/wearable/20170110.044256 submit/tizen_3.0/20170109.104857
Jihoon Kim [Sat, 7 Jan 2017 09:00:18 +0000 (18:00 +0900)]
Update package version to 3.0.157

Change-Id: I07b132c6000a8f8cb4a3c2ca9c1a0da3add43537
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoRemove unnecessary exported symbols in immodule 59/108959/5
Jihoon Kim [Fri, 6 Jan 2017 09:11:44 +0000 (18:11 +0900)]
Remove unnecessary exported symbols in immodule

Change-Id: I4ab7d9a2834c50ee1d0b6e4bac66b2dc709d8559
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFix blink issue when reset is called 69/109069/1
Jihoon Kim [Sat, 7 Jan 2017 08:48:00 +0000 (17:48 +0900)]
Fix blink issue when reset is called

Consecutive empty preedit and commit occurs blink.

Change-Id: I35e271dc4ccdc6f7223cf2c3ce016e4ecc1ef4fd
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoUpdate package version to 3.0.156 62/108962/2 accepted/tizen/3.0/common/20170109.195938 accepted/tizen/3.0/ivi/20170109.073436 accepted/tizen/3.0/tv/20170110.055312 accepted/tizen/3.0/wearable/20170109.073240 submit/tizen_3.0/20170106.102334 submit/tizen_3.0/20170107.035043
Jihoon Kim [Fri, 6 Jan 2017 09:22:47 +0000 (18:22 +0900)]
Update package version to 3.0.156

Change-Id: I05f2b6c989b605f642acc74c8d585428a37f4e0f
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoRequire libtzplatform-config explicitly 14/109014/1
Kunhoon Baik [Fri, 6 Jan 2017 12:25:36 +0000 (21:25 +0900)]
Require libtzplatform-config explicitly

Until now, this package has been built using symbols in other packages indirectly.
As static library is removed, it should require libtzplatform-config library in itself.

Change-Id: I1b82f91ecbebf01b2cb64f5d2dc58196b8e6f108

7 years agoCheck focus before sending wayland text input protocol 26/108826/3
Jihoon Kim [Fri, 6 Jan 2017 02:37:38 +0000 (11:37 +0900)]
Check focus before sending wayland text input protocol

wl_text_input_set APIs should be used when it has focus.

Change-Id: I16566c86353e0fa04dfec1bccdd10d7b099f8e4f

7 years agoRemove unused scim process 38/107638/2
Jihoon Kim [Thu, 29 Dec 2016 04:25:26 +0000 (13:25 +0900)]
Remove unused scim process

Change-Id: I6367d930130782db96fdd41a83001a73571bb4f1
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoUpdate package version to 3.0.155 34/108634/1 accepted/tizen/3.0/common/20170109.200225 accepted/tizen/3.0/ivi/20170106.094514 accepted/tizen/3.0/mobile/20170106.094422 accepted/tizen/3.0/tv/20170106.094440 accepted/tizen/3.0/wearable/20170106.094458 submit/tizen_3.0/20170105.095152
Ji-hoon Lee [Thu, 5 Jan 2017 08:47:52 +0000 (17:47 +0900)]
Update package version to 3.0.155

Change-Id: Ie42e56913749605a2a6b1d72b27699ae8cedfb00

7 years agoCache has_conformant info for preventing app crash 28/108628/1
Ji-hoon Lee [Thu, 5 Jan 2017 07:57:40 +0000 (16:57 +0900)]
Cache has_conformant info for preventing app crash

ecore_wl_window_conformant_get() invokes ecore_wl_sync(),
and when this function gets called inside class destructor,
sometimes causes abort() when no connection is available.
Need to enhance this piece of code, to check if there is a
valid wl connection available before querying conformant info.

Change-Id: Iefec96095eaca1e2faa99b3c7186ce2a98808a10

7 years agoUpdate package version to 3.0.154 77/108277/1 submit/tizen_3.0/20170104.021409
Ji-hoon Lee [Wed, 4 Jan 2017 01:56:52 +0000 (10:56 +0900)]
Update package version to 3.0.154

Change-Id: I9f9a2a1e45357c3bbdcdd3ae7028915802e70c53

7 years agoRename (un)initialize functions for prevent confusion 01/108001/2
Ji-hoon Lee [Mon, 2 Jan 2017 08:43:27 +0000 (17:43 +0900)]
Rename (un)initialize functions for prevent confusion

Change-Id: I8eeae66de109fbcbde37775552775498f065cc9b

7 years agoWake up IME application before using it 49/108249/1
Ji-hoon Lee [Tue, 3 Jan 2017 11:38:54 +0000 (20:38 +0900)]
Wake up IME application before using it

Change-Id: Iccfabc06ac3b0df1f368d801836a1095f330c1f8

7 years agoUpdate package version to 3.0.152 92/107392/2 accepted/tizen/3.0.m2/mobile/20170104.143002 accepted/tizen/3.0.m2/tv/20170104.143447 accepted/tizen/3.0.m2/wearable/20170104.143848 accepted/tizen/3.0/common/20161228.162429 accepted/tizen/3.0/ivi/20161228.092335 accepted/tizen/3.0/mobile/20161228.092255 accepted/tizen/3.0/tv/20161228.092313 accepted/tizen/3.0/wearable/20161228.092324 submit/tizen_3.0.m2/20170104.093752 submit/tizen_3.0/20161228.025249
Jihoon Kim [Wed, 28 Dec 2016 01:37:29 +0000 (10:37 +0900)]
Update package version to 3.0.152

Change-Id: I5ab6e0703ae656f5901494a9e51052fbe55207b5
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFix dereference of NULL assign issue 90/107390/2
Jihoon Kim [Wed, 28 Dec 2016 01:36:26 +0000 (10:36 +0900)]
Fix dereference of NULL assign issue

Pointer 'pkgtype', which is dereferenced at ime_parser.c:77 by calling function 'strcmp', may have NULL value.

Change-Id: I27099b5bfc5b952d37ada7a07906969d5b2e3604
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoRemoved remote input functions excluding the TV profile 04/107204/3
InHong Han [Tue, 27 Dec 2016 06:47:56 +0000 (15:47 +0900)]
Removed remote input functions excluding the TV profile

Change-Id: Ie4fd23e93341cdc40001df51d1009fabf68c3743

7 years agoUpdate package version to 3.0.152 36/107336/2 submit/tizen_3.0/20161227.130048
Jihoon Kim [Tue, 27 Dec 2016 12:50:56 +0000 (21:50 +0900)]
Update package version to 3.0.152

Change-Id: I05494a52f250b7d2de24ecf56d43d970cf91a981
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFix issue 3rd party shared object IME can't be launched 24/107324/2
Jihoon Kim [Tue, 27 Dec 2016 12:08:49 +0000 (21:08 +0900)]
Fix issue 3rd party shared object IME can't be launched

Change-Id: If5291bc7ac805a2fcf2add7729aba3f6aab05d0b
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoUpdate package version to 3.0.151 91/106991/2 accepted/tizen/3.0/common/20161227.102116 accepted/tizen/3.0/ivi/20161227.010809 accepted/tizen/3.0/mobile/20161227.010715 accepted/tizen/3.0/tv/20161227.010733 accepted/tizen/3.0/wearable/20161227.010750 submit/tizen_3.0/20161226.100512
InHong Han [Mon, 26 Dec 2016 05:29:54 +0000 (14:29 +0900)]
Update package version to 3.0.151

Change-Id: Ic91accb2f5986b7e2931cacfe0e315bdb404fc5a

7 years agoRemove unnecessary imdata query request 01/107001/2
Ji-hoon Lee [Mon, 26 Dec 2016 05:50:47 +0000 (14:50 +0900)]
Remove unnecessary imdata query request

Change-Id: Ifecc706cc069e21a4dc42697389d987684f750a7

7 years agoRemove unnecessary sleep() when waiting for reply 00/107000/2
Ji-hoon Lee [Mon, 26 Dec 2016 05:36:02 +0000 (14:36 +0900)]
Remove unnecessary sleep() when waiting for reply

Change-Id: I24b65e927e8f30c8715d006f5cc7511573903fc0

7 years agoRemove unnecessary update_cursor_position message transmission 37/106837/2
Ji-hoon Lee [Fri, 23 Dec 2016 07:36:48 +0000 (16:36 +0900)]
Remove unnecessary update_cursor_position message transmission

Change-Id: I3a769786b18d6d28dccfbda2d444c8de4359a8cb

7 years agoRevert "Remove set_prediction_allow() in TV profile temporarily" 13/106813/1
InHong Han [Fri, 23 Dec 2016 06:38:43 +0000 (15:38 +0900)]
Revert "Remove set_prediction_allow() in TV profile temporarily"

This reverts commit 0e754f7555f29e62f538acbd8cb826bc3fa16a8e.

Change-Id: Ic6f75af5539455db4af510f7e876a96dfab3c89f

7 years agoUpdate package version to 3.0.150 13/106413/1 accepted/tizen/3.0/common/20161222.181509 accepted/tizen/3.0/ivi/20161222.024914 accepted/tizen/3.0/mobile/20161222.024847 accepted/tizen/3.0/tv/20161222.024856 accepted/tizen/3.0/wearable/20161222.024905 submit/tizen_3.0/20161221.132031
InHong Han [Wed, 21 Dec 2016 12:28:48 +0000 (21:28 +0900)]
Update package version to 3.0.150

Change-Id: I3b42fd5e2d35c7fb5f06d9bdbcebd490fd4a7fd7

7 years agoFix issue detected by static analysis tool 06/106406/2
InHong Han [Wed, 21 Dec 2016 12:07:29 +0000 (21:07 +0900)]
Fix issue detected by static analysis tool

Change-Id: Ia5b0dff4f0faa727fdf14595fb012dc8603104c7

7 years agoAdd geometry log in immodule 20/106320/2
Jihoon Kim [Wed, 21 Dec 2016 09:19:36 +0000 (18:19 +0900)]
Add geometry log in immodule

Change-Id: Ic5700f13a53a2a59fedd56523644260732785fd9
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoModified open_connection logic when the helper_active connection is failed 33/106033/3
InHong Han [Tue, 20 Dec 2016 08:22:13 +0000 (17:22 +0900)]
Modified open_connection logic when the helper_active connection is failed

Change-Id: I2f6585c8de65939af5907c26b0600612e86bf181

7 years agoSend additional message for triggering ISE's filter_event 81/106081/1
Ji-hoon Lee [Tue, 20 Dec 2016 08:35:38 +0000 (17:35 +0900)]
Send additional message for triggering ISE's filter_event

Since the filter_event() function would not be called for the
messages that were retrieved while waiting for the
get_surrounding_text or get_selection reply,
temporarily added update_cursor_position message transmission
to guarantee the filter_event() gets called afterward.
Need to find a proper way to fix this problem.

Change-Id: I38ea9c2e8954858e70a581bf92b3683f7b2424ec

7 years agoUpdate package version to 3.0.149 43/105943/1 accepted/tizen/3.0/common/20161221.181107 accepted/tizen/3.0/ivi/20161221.010503 accepted/tizen/3.0/mobile/20161221.010646 accepted/tizen/3.0/tv/20161221.010408 accepted/tizen/3.0/wearable/20161221.010527 submit/tizen_3.0/20161220.061556
Jihoon Kim [Tue, 20 Dec 2016 05:56:49 +0000 (14:56 +0900)]
Update package version to 3.0.149

Change-Id: I0553191edfcffcc8289e8bd143555a424cbf2f73
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFix bug IME does not show in case of no window focus 66/105766/2
Jihoon Kim [Mon, 19 Dec 2016 11:19:17 +0000 (20:19 +0900)]
Fix bug IME does not show in case of no window focus

Change-Id: Ia33fb2e60e2b3951fe1ae7332f7b368c55000ed8
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoAdded interface for restoring ISE option window 95/105695/3
Ji-hoon Lee [Mon, 19 Dec 2016 08:45:10 +0000 (17:45 +0900)]
Added interface for restoring ISE option window

Change-Id: I1025105933d1c75bde828ed9a7d0d10c6a6721e8

7 years agoFix build warning 06/105706/1
Jihoon Kim [Mon, 19 Dec 2016 09:49:49 +0000 (18:49 +0900)]
Fix build warning

Change-Id: Ib51fc350863ada1ab5c635159ca5818567827f66
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoModified to send null key event when preedit, commit event is called 49/104349/5
InHong Han [Tue, 13 Dec 2016 06:52:58 +0000 (15:52 +0900)]
Modified to send null key event when preedit, commit event is called

Change-Id: Id9a3242f93ae8c4d6bbf818cd942a972b4db0aa0

7 years agoUpdate package version to 3.0.148 03/105403/2 accepted/tizen/3.0/common/20161219.113616 accepted/tizen/3.0/ivi/20161219.013010 accepted/tizen/3.0/mobile/20161219.012908 accepted/tizen/3.0/tv/20161219.012926 accepted/tizen/3.0/wearable/20161219.012943 submit/tizen_3.0/20161216.115547
InHong Han [Fri, 16 Dec 2016 10:45:56 +0000 (19:45 +0900)]
Update package version to 3.0.148

Change-Id: Ie9d01a69bc45ecdfd8ed0d5366e304ca2de3b3e9

7 years agoRemove set_prediction_allow() in TV profile temporarily 01/105401/3
InHong Han [Fri, 16 Dec 2016 10:42:27 +0000 (19:42 +0900)]
Remove set_prediction_allow() in TV profile temporarily

Change-Id: I133bc8bf462dd98c036a7acb289fd2bcd9e3500e

7 years agoFix buffer overflow issue detected by static analysis tool 77/105377/1
Jihoon Kim [Fri, 16 Dec 2016 09:59:50 +0000 (18:59 +0900)]
Fix buffer overflow issue detected by static analysis tool

Change-Id: I40354d7df587f9659e22431045e350e5330d1dcc
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFix build error 07/105307/1
Jihoon Kim [Fri, 16 Dec 2016 08:00:58 +0000 (17:00 +0900)]
Fix build error

Change-Id: Ibfada75719f4740f9a48561dd75b5c67667bc23b
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFix issue detected by static analysis tool for 64bit architecture 64/104764/2
InHong Han [Tue, 13 Dec 2016 11:39:06 +0000 (20:39 +0900)]
Fix issue detected by static analysis tool for 64bit architecture

Change-Id: Iad5bc44ef41a33d4d1053493bb06a40217202b8a

7 years agoFix indentation 06/104606/1
Jihoon Kim [Tue, 13 Dec 2016 23:56:40 +0000 (08:56 +0900)]
Fix indentation

Change-Id: Ie7bd7cd926c1c1263a67eb1f0aeb4092025736be
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoUpdate package version to 3.0.147 03/104503/2 accepted/tizen/3.0/common/20161215.163203 accepted/tizen/3.0/ivi/20161215.044316 accepted/tizen/3.0/mobile/20161215.043955 accepted/tizen/3.0/tv/20161215.044122 accepted/tizen/3.0/wearable/20161215.044254 submit/tizen_3.0/20161213.101516 submit/tizen_3.0/20161214.085003
InHong Han [Tue, 13 Dec 2016 11:23:46 +0000 (20:23 +0900)]
Update package version to 3.0.147

Change-Id: I4fea9eabe79972dc3b76ef8a9a5fc49062e67994

7 years agoFix build warning on 64bit architecture 00/104500/2
InHong Han [Tue, 13 Dec 2016 11:20:00 +0000 (20:20 +0900)]
Fix build warning on 64bit architecture

Change-Id: I89faaa240fde54e20588f004e53e20362334dd54

7 years agoFix build error in remote input 06/104406/2
InHong Han [Tue, 13 Dec 2016 08:26:42 +0000 (17:26 +0900)]
Fix build error in remote input

Change-Id: I8d3a1e5ca806c4588f79a437c954d2009ad9ecb1

7 years agoModified to send cursor position together with surrounding_text 82/104382/1
Ji-hoon Lee [Tue, 13 Dec 2016 08:16:16 +0000 (17:16 +0900)]
Modified to send cursor position together with surrounding_text

Change-Id: I1a771c3cbf8427de55f7dbfb602a4718194148f3

7 years agoSupport recent IME geometry in wayland environment 21/103921/3
Jihoon Kim [Sat, 10 Dec 2016 13:42:22 +0000 (22:42 +0900)]
Support recent IME geometry in wayland environment

Change-Id: I9e6daf385ed520ff5753a1635b2ea8b9b632b0c7
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFix remote_control_text_updated_cb() is not called after remote_control_entry_metadat... 00/104100/1
InHong Han [Mon, 12 Dec 2016 08:39:04 +0000 (17:39 +0900)]
Fix remote_control_text_updated_cb() is not called after remote_control_entry_metadata_cb()

Change-Id: Ife38b847bba142deb0f957c83829a12a82a85890

7 years agoFix URL layout issue in remote input 99/102499/3
InHong Han [Tue, 6 Dec 2016 04:31:21 +0000 (13:31 +0900)]
Fix URL layout issue in remote input

Change-Id: I096bce47441600456ebd84d3c7b0627ed9fadd49

7 years agoUpdate package version to 3.0.146 81/103381/1 accepted/tizen/3.0/common/20161209.094837 accepted/tizen/3.0/ivi/20161209.002404 accepted/tizen/3.0/mobile/20161209.002337 accepted/tizen/3.0/tv/20161209.002343 accepted/tizen/3.0/wearable/20161209.002352 submit/tizen_3.0/20161208.073539
Ji-hoon Lee [Thu, 8 Dec 2016 07:30:43 +0000 (16:30 +0900)]
Update package version to 3.0.146

Change-Id: I238c53f8b4a39b99e2ec29aca1ebec4b5a60357c

7 years agoFix bug auto period worked following carriage return 21/103321/2
Jihoon Kim [Thu, 8 Dec 2016 05:16:00 +0000 (14:16 +0900)]
Fix bug auto period worked following carriage return

Change-Id: I2d533f06bfe632241f07ba3cd67081654cff54c4
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoFixed that IME was not hidden when the show and hide request are sent rapidly at... 62/101862/5
Wonkeun Oh [Fri, 2 Dec 2016 07:25:48 +0000 (16:25 +0900)]
Fixed that IME was not hidden when the show and hide request are sent rapidly at the same time

Added null check code to fix crash

Change-Id: Ic746e8bec1eda7378c8452c33328715efb975a7f

7 years agoMerge "Add return_key_disabled in remote_control_entry_metadata structure" into tizen_3.0
InHong Han [Thu, 8 Dec 2016 00:47:17 +0000 (16:47 -0800)]
Merge "Add return_key_disabled in remote_control_entry_metadata structure" into tizen_3.0

7 years agoSet focus out immediately even when asking for hide permission 94/103094/2
Ji-hoon Lee [Wed, 7 Dec 2016 07:48:27 +0000 (16:48 +0900)]
Set focus out immediately even when asking for hide permission

Change-Id: I88151faed90177b51e0cdd07c660e795f4a1d22b

7 years agoUpdate package version to 3.0.145 88/103088/1 accepted/tizen/3.0/common/20161207.195809 accepted/tizen/3.0/ivi/20161207.135922 accepted/tizen/3.0/mobile/20161207.135915 accepted/tizen/3.0/tv/20161207.135551 accepted/tizen/3.0/wearable/20161207.140119 submit/tizen_3.0/20161207.091949
InHong Han [Wed, 7 Dec 2016 07:52:11 +0000 (16:52 +0900)]
Update package version to 3.0.145

Change-Id: I2fca50ebc7188547afbd31642d4014457f10c712

7 years agoAdd return_key_disabled in remote_control_entry_metadata structure 83/103083/1
InHong Han [Wed, 7 Dec 2016 02:06:09 +0000 (11:06 +0900)]
Add return_key_disabled in remote_control_entry_metadata structure

Change-Id: I1a080afb82e89fdcaef43fc74c96c1f074312b05

7 years agoAdd executable permission for 3.0 upgrade script 35/102935/1
Jihoon Kim [Wed, 7 Dec 2016 00:39:14 +0000 (09:39 +0900)]
Add executable permission for 3.0 upgrade script

Change-Id: I9dff8ba1ad6db3fef20da194b44a975d7fa02fc3
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agowayland imf: move ecore_wl_init to context creation 58/102558/4
Julien Isorce [Mon, 24 Oct 2016 12:49:14 +0000 (13:49 +0100)]
wayland imf: move ecore_wl_init to context creation

If wl_display_connect fails then ecore_imf_init still returns true.
It can happen if the wayland server is still loading while one call
el_init. Problem is that further call to ecore_imf_init will be ignored
since it thinks it has succeeded the first time.

But in the first place there is no real advantage to call ecore_wl_init
at module initialization time so let's just move the call to context
creation function.

Change-Id: Ia731c74273f863d951ec3f0e1e088cce679e0d6f
Signed-off-by: Julien Isorce <j.isorce@samsung.com>
7 years agoUpdate package version to 3.0.144 26/102326/1 accepted/tizen/3.0/common/20161206.125745 accepted/tizen/3.0/ivi/20161205.235929 accepted/tizen/3.0/mobile/20161205.235850 accepted/tizen/3.0/tv/20161205.235901 accepted/tizen/3.0/wearable/20161205.235908 submit/tizen_3.0/20161205.102200
sungwook79.park [Mon, 5 Dec 2016 10:20:15 +0000 (19:20 +0900)]
Update package version to 3.0.144

Change-Id: I11e158b64f20700570ba2fc0bb0055fd59e1e719
Signed-off-by: sungwook79.park <sungwook79.park@samsung.com>
7 years agoFix build error about tizen 3.0 upgrade 22/102322/1
sungwook79.park [Mon, 5 Dec 2016 10:17:27 +0000 (19:17 +0900)]
Fix build error about tizen 3.0 upgrade

Change-Id: I21097b616225beb1ad3565d04f7f406313020a99
Signed-off-by: sungwook79.park <sungwook79.park@samsung.com>
7 years agoImplementing set_prediction_allow for IMEngine 20/102220/4
Li Zhang [Mon, 5 Dec 2016 07:38:06 +0000 (15:38 +0800)]
Implementing set_prediction_allow for IMEngine

Change-Id: I412cee7d55d04aa52383499a5524230b5f49258b

7 years agoAdopt script numbering policy for tizen 3.0 upgrade 34/102234/1
sungwook79.park [Mon, 5 Dec 2016 08:18:25 +0000 (17:18 +0900)]
Adopt script numbering policy for tizen 3.0 upgrade

Change-Id: I20d9ff04bd625ac6cf65b4f9edb66b4256529ef5
Signed-off-by: sungwook79.park <sungwook79.park@samsung.com>
7 years agoModified to commit preedit_commit strings in remote input 50/102050/2
InHong Han [Mon, 5 Dec 2016 00:54:49 +0000 (09:54 +0900)]
Modified to commit preedit_commit strings in remote input

Change-Id: I19974a9df4b0efb7357ff2fd88510503415a725a

7 years agoDo not send cursor position in the preedit status 26/102126/1
Jihoon Kim [Mon, 5 Dec 2016 05:03:29 +0000 (14:03 +0900)]
Do not send cursor position in the preedit status

Change-Id: Ieb89155280817dd2932e572ae6513359038f1dd8
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoDo not request to show IME in H/W keyboard mode 79/101679/1
Jihoon Kim [Fri, 2 Dec 2016 02:46:53 +0000 (11:46 +0900)]
Do not request to show IME in H/W keyboard mode

Change-Id: Iab16a56d64a840d552e7e60b3003550f1e7857cf
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoUpdate package version to 3.0.143 41/101541/1 accepted/tizen/3.0/common/20161203.012230 accepted/tizen/3.0/ivi/20161202.005847 accepted/tizen/3.0/mobile/20161202.005756 accepted/tizen/3.0/tv/20161202.005808 accepted/tizen/3.0/wearable/20161202.005826 submit/tizen_3.0/20161201.065323
Jihoon Kim [Thu, 1 Dec 2016 10:44:33 +0000 (19:44 +0900)]
Update package version to 3.0.143

Change-Id: I658c129a0dd6e00322034e6b7acd5cba15555e1c
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoCancels running thread of config server in a proper way 15/101515/1
Li Zhang [Thu, 1 Dec 2016 09:39:32 +0000 (17:39 +0800)]
Cancels running thread of config server in a proper way

Change-Id: Ifb44d1b1bd977be1a0cff277294e58b415fa0b88

7 years agoUpdate package version to 3.0.142 19/101419/1
Jihoon Kim [Thu, 1 Dec 2016 06:42:37 +0000 (15:42 +0900)]
Update package version to 3.0.142

Change-Id: I6f8c65a7c7a44f6bd02912b6dfe6a7772bde12b1
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoRelease memory before unloading PanelAgent module 67/101367/1
Li Zhang [Thu, 1 Dec 2016 04:39:55 +0000 (12:39 +0800)]
Release memory before unloading PanelAgent module

Change-Id: I27c76eeabe4746cadbf331d6416139ce41354f3a

7 years agoModified not to ignore hide permission response when app window loses focus 35/101235/2
Ji-hoon Lee [Wed, 30 Nov 2016 12:19:03 +0000 (21:19 +0900)]
Modified not to ignore hide permission response when app window loses focus

Change-Id: Ia2c93a94b911ad5ff611c78f673b54337ffd04ff

7 years agoUpdate package version to 3.0.141 18/101118/1 accepted/tizen/3.0/common/20161201.135053 accepted/tizen/3.0/ivi/20161201.031317 accepted/tizen/3.0/mobile/20161201.031226 accepted/tizen/3.0/tv/20161201.031243 accepted/tizen/3.0/wearable/20161201.031300 submit/tizen_3.0/20161130.093701
Jihoon Kim [Wed, 30 Nov 2016 09:28:54 +0000 (18:28 +0900)]
Update package version to 3.0.141

Change-Id: I3377ae078acc2cd067b9d33da675a6770da76f3b
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
7 years agoModified not to send unnecessary reset request 51/101051/2
Ji-hoon Lee [Wed, 30 Nov 2016 06:47:02 +0000 (15:47 +0900)]
Modified not to send unnecessary reset request

Change-Id: I20f76896dbd305ea6c4c8bb68c5e0a5120c7be02

7 years agoUpdate package version to 3.0.140 79/100979/1 accepted/tizen/3.0/common/20161130.133724 accepted/tizen/3.0/ivi/20161130.091724 accepted/tizen/3.0/mobile/20161130.091631 accepted/tizen/3.0/tv/20161130.091648 accepted/tizen/3.0/wearable/20161130.091705 submit/tizen_3.0/20161130.050653
InHong Han [Wed, 30 Nov 2016 04:50:29 +0000 (13:50 +0900)]
Update package version to 3.0.140

Change-Id: Ib260b0f2563d587cc256e3cb07b044419d09b1bb

7 years agoFix issue ReleaseMask doesn't work in remote_control_send_key_event() 31/100931/1
InHong Han [Wed, 30 Nov 2016 00:51:06 +0000 (09:51 +0900)]
Fix issue ReleaseMask doesn't work in remote_control_send_key_event()

Change-Id: I3d32a406dc8ddc5a20b3d2f2807bb8d4293c7133