platform/framework/web/data-provider-slave.git
9 years agoSync with the latest private code. 85/20185/1 accepted/tizen_mobile tizen accepted/tizen/mobile/20140702.100559 submit/tizen/20140430.015959
Sung-jae Park [Tue, 29 Apr 2014 07:24:25 +0000 (16:24 +0900)]
Sync with the latest private code.

commit faed5745e11faec2a6107eda7b036b8682c4e952
Author: Sung-jae Park <nicesj.park@samsung.com>
Date:   Fri Apr 18 14:03:53 2014 +0900
    Change the app-name

commit 2735c957022c72d376ea885d8dcb187781bb0fd2
Author: Sung-jae Park <nicesj.park@samsung.com>
Date:   Fri Apr 18 11:36:27 2014 +0900
    Update the deleted/updated callback call routine.

    While processing the updated/deleted callback, any item can be deleted.
    Using in_use flag, if there is deleting request while processing callback list,
    don't delete item directly just toggle the deleted flag.
    After callback call, check the deleted flag. if the deleted flag is toggled,
    Then delete it from the list safely.

Change-Id: I01fcbecb11aa6147c57a47143753a6f9d65f78f1

10 years agoParse the "Premultiplied alpha" flag.
Sung-jae Park [Mon, 14 Apr 2014 11:44:23 +0000 (20:44 +0900)]
Parse the "Premultiplied alpha" flag.

If it is turned on, livebox should do unpremultiplying it.

Change-Id: I773665c69c8cb2b1aefc6ec6238a9e7dbef188ac

10 years agoFix pointer cast incompatible with 64 bit architectures 66/19266/2
Ilya Palachev [Wed, 9 Apr 2014 13:40:03 +0000 (17:40 +0400)]
Fix pointer cast incompatible with 64 bit architectures

Tizen toolchain team in Samsung company is planning to build Tizen
for new arm 64 bit architecture - Aarch64. But package
"org.tizen.data-provider-slave" cannot be built for this architecture
because of the following build error:

error: cast from pointer to integer of different size

The reason that there is cast from type (int*) to type (int) in the
current implementation of function util_get_current_module. This cast
is correct for 32-bit architectures, since on them both (int*) and
(int) have the same size - 32 bits. But on 64-bit architectures
(int*) has size 64 bit and (int) has size 32 bit, and cast from one
to another can provide incorrect results.

This problem can be fixed just by simple replacement of (int)
variables with (size_t) variables, since it does not change the logic
of code and provide additional compatibility with 64-bit
architectures. This fix does not affect other functions, since only
types of local variables are changed.

The patch has been checked for build compatibility under armv7l, i586
and aarch64 architectures and build results are available at
https://build.tizen.org/package/show?package=org.tizen.data-provider-slave&project=devel%3Aarm_toolchain%3AMobile%3AMain

Change-Id: I21c47349f7d41f5b10a33f3772775cc208a43f75
Signed-off-by: Ilya Palachev <i.palachev@samsung.com>
10 years agoSync with latest private code 05/17805/1
Sung-jae Park [Tue, 11 Mar 2014 05:02:56 +0000 (14:02 +0900)]
Sync with latest private code

Recover the signal handler for managing the crash information.

Change-Id: I30a2286e9e05551ef9c7a68ba3ec3f336cc4cd69

10 years agoExport new API for updating extra information. 10/15710/1 accepted/tizen/generic accepted/tizen/generic/20140226.073944 accepted/tizen/mobile/20140227.072316 submit/tizen/20140226.000818
Sung-jae Park [Mon, 27 Jan 2014 12:19:06 +0000 (21:19 +0900)]
Export new API for updating extra information.

Alternative icon/name information.
content & title information.

Change-Id: I7743a7843edcd6628e5aa31b3540a3afb5c8d0e9

10 years agoReplace json_parser_new with g_XXX_type_get 73/15673/1
Sung-jae Park [Sat, 25 Jan 2014 05:40:00 +0000 (14:40 +0900)]
Replace json_parser_new with g_XXX_type_get

to intialize the glib type system for each objects.

Change-Id: Icda6164f180844f0c24cbcad087dac16a379130d

10 years agoLink with json-glib 95/15595/1
Sung-jae Park [Fri, 24 Jan 2014 02:19:24 +0000 (11:19 +0900)]
Link with json-glib

To initialize the json-glib object.

Change-Id: I8c97ce368e6d18b8b39138deecf731fb92f9a43c

10 years agoExplicitly casts the enumeration value to ineteger 88/15488/1
Sung-jae Park [Wed, 22 Jan 2014 02:15:20 +0000 (11:15 +0900)]
Explicitly casts the enumeration value to ineteger

Change-Id: If658ba589c45f58bd1d93266c54740458bd97801

10 years agoSync with the latest code 72/14472/1
Sung-jae Park [Sun, 5 Jan 2014 09:00:35 +0000 (18:00 +0900)]
Sync with the latest code

* Sung-jae Park [Fri, 3 Jan 2014 09:28:33 +0000]
- Update font style for shadow effect

* Sung-jae Park [Fri, 3 Jan 2014 00:50:16 +0000]
- Assign floor(_) label to signature files

* Sung-jae Park [Tue, 31 Dec 2013 07:02:46 +0000]
- Add two more edje file for font effect.

* Sung-jae Park [Wed, 18 Dec 2013 12:05:50 +0000]
- Add new ABI for livebox plugin.
- livebox_get_alt_info
- To get the alternative icon and name, the provider will call this.
- then the livebox should fill the 3rd, 4th arguments with icon and name.
- and those strings are allocated in heap.

* Sung-jae Park [Fri, 13 Dec 2013 12:50:27 +0000]
- Update configuration initiate sequence

* Sung-jae Park [Tue, 10 Dec 2013 13:06:27 +0000]
- Do not grab the sig fault.
- Need to core dump

* Sung-jae Park [Sat, 7 Dec 2013 06:53:04 +0000]
- Remove tizen engineering mode featuring code

* Sung-jae Park [Sat, 7 Dec 2013 05:51:36 +0000]
- Move down 2 more pixels

Change-Id: I31ef50bcdf0caac66c8e4157e1c3e4ae63384191

10 years agoApply force update option 66/13366/1
Sung-jae Park [Wed, 4 Dec 2013 07:45:39 +0000 (16:45 +0900)]
Apply force update option

Change-Id: I7a54b3daac2f9204cdc1d7f0915af8251acf0f7e

10 years agoUpdate image effect 23/12623/1
Sung-jae Park [Wed, 20 Nov 2013 08:11:06 +0000 (17:11 +0900)]
Update image effect

Change-Id: I25e48ad37f6950acc68067d9fd1a72be7f7671f7

10 years agoBox can update their content even if it is in pause state 86/12586/1
Sung-jae Park [Tue, 19 Nov 2013 09:24:08 +0000 (18:24 +0900)]
Box can update their content even if it is in pause state

Change-Id: Id65168ff9f1de6b5d9a2b05cc7a58f6873c59716

10 years agoDo not update twice even if it exceed update period in pause. 25/12525/1
Sung-jae Park [Mon, 18 Nov 2013 05:10:14 +0000 (14:10 +0900)]
Do not update twice even if it exceed update period in pause.

When it gets resume event, check the update period, and update it only once.
even if it exceed update period.

Change-Id: I6f3030a4819c9c30f88ca7ebabe3631aaf4cf3c3

10 years agoUpdate pending list management code 88/12488/1
Sung-jae Park [Fri, 15 Nov 2013 13:31:40 +0000 (22:31 +0900)]
Update pending list management code

if the dbox is not shown yet (not the pause,resume event).
do not append it to pending list.

instead of pending list, add it to hidden list.
so if it is shown (render buffer is ready to draw something one it, in case of script type),
move it to the pending list from hidden list.

so while creating a render buffer from master,
the livebox will not do busy waiting now.

just it will do update again when it gets shown.
(move from hidden_list to pending_list)

Change-Id: I880dba72602dd287e3814d28e7113aba8708519b

10 years agoClose the PD when a box is deleted. 22/12022/1
Sung-jae Park [Mon, 11 Nov 2013 08:11:54 +0000 (17:11 +0900)]
Close the PD when a box is deleted.

Change-Id: I4ece984d3717d214db33a3d93f20d929bf7702aa

10 years agoAdd missing arguments 72/11972/1
Sung-jae Park [Fri, 8 Nov 2013 13:25:48 +0000 (22:25 +0900)]
Add missing arguments

Change-Id: I00f2cffaaaf8552efe6053d284e663fcd6247e9a

10 years agoReload font list. 44/11944/1
Sung-jae Park [Fri, 8 Nov 2013 05:52:20 +0000 (14:52 +0900)]
Reload font list.

To rearrange the fallback list of registered fonts.

Change-Id: If3d3c130033133938e1e20036d85efb210adf3e5

10 years agoIcon provider. do not sucide. 02/11402/1
Sung-jae Park [Fri, 25 Oct 2013 08:34:22 +0000 (17:34 +0900)]
Icon provider. do not sucide.

Its lifecycle will be managed by master.

Change-Id: I2827a24c30cb40c70836907b1b7ecfa50369d3ff
Signed-off-by: Sung-jae Park <nicesj.park@samsung.com>
10 years agoMove manifest file to packaging folder 28/11328/1
Sung-jae Park [Thu, 24 Oct 2013 11:28:02 +0000 (20:28 +0900)]
Move manifest file to packaging folder

Change-Id: I0ee016c484b430b80abfef20791b10c6140e14a0
Signed-off-by: Sung-jae Park <nicesj.park@samsung.com>
10 years agoIgnore invalid LDFLAGS accepted/tizen/ivi/release accepted/tizen/ivi/stable accepted/tizen_ivi accepted/tizen/20131022.083506 accepted/tizen/20131022.162847 accepted/tizen/20131112.015320 accepted/tizen/ivi/20140308.005428 accepted/tizen_ivi_stable/20131116.111522 submit/tizen/20131022.070634 submit/tizen/20140307.080732 submit/tizen_ivi_stable/20131116.101024
Sung-jae Park [Tue, 22 Oct 2013 07:06:14 +0000 (16:06 +0900)]
Ignore invalid LDFLAGS

Change-Id: Idb16a1fcd3d8b62a2c7dcb3fd2efdaf223303777

10 years agoFix build error. submit/tizen/20131022.061447
Sung-jae Park [Tue, 22 Oct 2013 06:14:25 +0000 (15:14 +0900)]
Fix build error.

Change-Id: I07f86e71deb2f31893d466e5fe71556cda8b59bb

10 years agoAdd missing dependencies submit/tizen/20131022.055632
Sung-jae Park [Tue, 22 Oct 2013 05:56:14 +0000 (14:56 +0900)]
Add missing dependencies

Change-Id: I684b5cd3a45d8c1d141a74ab49477f2b7130d3dc

10 years agoBuild again submit/tizen/20131022.055124
Sung-jae Park [Tue, 22 Oct 2013 05:51:07 +0000 (14:51 +0900)]
Build again

Change-Id: Ib5e750f01aa494b1abad9fb4df98fb6c6dbbddf1

10 years agoFix build error submit/tizen/20131022.054520
Sung-jae Park [Tue, 22 Oct 2013 05:45:00 +0000 (14:45 +0900)]
Fix build error

Change-Id: I14bb0ab474684189f4acda30e2422ed0a40022d5

10 years agoFix build error submit/tizen/20131022.052504
Sung-jae Park [Tue, 22 Oct 2013 05:24:47 +0000 (14:24 +0900)]
Fix build error

Change-Id: I3bd9616b9bf3b269b990be541e64eaf2cce614dc

10 years agoMerge branch 'tizen_2.2' of ssh://review.tizendev.org:29418/apps/livebox/data-provide... submit/tizen/20131022.035939
Sung-jae Park [Tue, 22 Oct 2013 03:43:10 +0000 (12:43 +0900)]
Merge branch 'tizen_2.2' of ssh://review.tizendev.org:29418/apps/livebox/data-provider-slave into work

Sync with the latest tizen 2.2 implementations

Conflicts:
src/main.c

Change-Id: Icd431d2b9d12006a33e70ee0056542a534d1e5ff

10 years agoUpdate smack rule
Sung-jae Park [Wed, 2 Oct 2013 03:55:45 +0000 (12:55 +0900)]
Update smack rule

Change-Id: Ibacfa0e7af05532abbf4d66b4921d3dd609f2c3a

10 years agoDo not use the clock_gettime for compensating period
Sung-jae Park [Tue, 1 Oct 2013 01:03:05 +0000 (10:03 +0900)]
Do not use the clock_gettime for compensating period

Change-Id: Ib7295782bea879b5379e199635b5eec2247cb280

10 years agoReplace gettimeofday with clock_get_time
Sung-jae Park [Thu, 26 Sep 2013 02:02:43 +0000 (11:02 +0900)]
Replace gettimeofday with clock_get_time

Change-Id: Ic7bdcd5b139aa2a43b56f02f205d3603a05eb000

10 years agoSupporting non-serialized content updating.
Sung-jae Park [Mon, 9 Sep 2013 10:58:16 +0000 (19:58 +0900)]
Supporting non-serialized content updating.

Change-Id: I1f8816b52425d49b9f7ac0a182b2f4ca2d8b8590

10 years agoUpdate coding convention
Sung-jae Park [Tue, 3 Sep 2013 02:30:14 +0000 (11:30 +0900)]
Update coding convention

Change-Id: I2be9047834cae335b463dac93a418cededaaa4f5

10 years agoUpdate heap-monitor
Sung-jae Park [Fri, 23 Aug 2013 08:38:38 +0000 (17:38 +0900)]
Update heap-monitor

[model] Redwood
[binary_type] AP
[customer] Docomo/Orange/Open
[issue#] N/A
[problem]
[cause]
[solution]
[team] HomeTF
[request]
[horizontal_expansion]

Change-Id: Iedf45c461392575fa6340508b1a3b94816fe6095

10 years agoRelease needless heap resource.
Sung-jae Park [Fri, 16 Aug 2013 12:28:16 +0000 (21:28 +0900)]
Release needless heap resource.

Change-Id: Iec36ece91eb83689a8dc899c31b931778a893d02

10 years agoUpdate Coding conention.
Sung-jae Park [Tue, 13 Aug 2013 01:11:45 +0000 (10:11 +0900)]
Update Coding conention.

Care the exceptional cases more.

Change-Id: I945fd74a6581b030f2046c4c401ff9bd334f45d2

10 years agoSupporting the easy mode livebox icon generating service.
Sung-jae Park [Mon, 5 Aug 2013 12:44:28 +0000 (21:44 +0900)]
Supporting the easy mode livebox icon generating service.

Fix the auto-deletion bug.

Change-Id: I2dff199c2ddfc4453d29493f0b80a514dfeea973

10 years agoFix the crash bug of slave.
Sung-jae Park [Wed, 17 Jul 2013 01:04:29 +0000 (10:04 +0900)]
Fix the crash bug of slave.

When a box is deleted automatically, the slave tries to delete a timer twice.

Change-Id: I0e45ad20d4086928bdbff2d9cf6250b8df4c5bff

10 years agoUpdate SMACK rule
Sung-jae Park [Thu, 4 Jul 2013 07:51:43 +0000 (16:51 +0900)]
Update SMACK rule

Change-Id: Ife2ab4f7b85f117655103526ded377c69739e946

10 years agoRemove last trailing comma
Sung-jae Park [Wed, 3 Jul 2013 23:40:48 +0000 (08:40 +0900)]
Remove last trailing comma

Change-Id: Ia3a766f88c87fb057f67b29629a3be69e2b4d8b9

10 years agoApply GCC 4.8 patch
Sung-jae Park [Wed, 3 Jul 2013 04:26:39 +0000 (13:26 +0900)]
Apply GCC 4.8 patch

Change-Id: I2e21ffedf83e96d82e55716471bf9376f51798b0

10 years agoAdd missing function declaration.
Sung-jae Park [Tue, 2 Jul 2013 13:23:55 +0000 (22:23 +0900)]
Add missing function declaration.

Change-Id: I93857a8f1bff20586d8d743f36a38c2e6e9ce0ad

10 years agoAdd new smack rule for syncing with private.
Sung-jae Park [Tue, 2 Jul 2013 08:38:30 +0000 (17:38 +0900)]
Add new smack rule for syncing with private.

Change-Id: Icd81efae083eebdcc9cc3a2711b449719d909daf

10 years agoDon't try to update if a box is paused even though it is triggered by the 3rd process.
Sung-jae Park [Tue, 2 Jul 2013 04:48:22 +0000 (13:48 +0900)]
Don't try to update if a box is paused even though it is triggered by the 3rd process.

Even though the box is paused, its content is updated when it is triggered from the 3rd process.
There is no logic to prevent from updating.
Check the state before update box. if it is paused, Increase the pending count and trigger it when the box is resumed.

Change-Id: I1406e66f98140b55bd30cc3d7a7c1e01b7ff661f

10 years agoMerge the delayed updated content with updated_content.
Sung-jae Park [Fri, 28 Jun 2013 02:36:38 +0000 (11:36 +0900)]
Merge the delayed updated content with updated_content.

Change-Id: Ic02182c291f3a84b1e96f1b19e6739fa75e826c8

10 years agoFix build error 22/4322/2 accepted/tizen/20130627.135138 accepted/tizen/20130912.082628 accepted/tizen/20130912.085546 accepted/tizen/20130912.093400 accepted/tizen/20130912.142004 accepted/tizen/20130912.192208 accepted/tizen/20130912.200310 submit/tizen/20130627.143008 submit/tizen/20130912.075655 submit/tizen/20130912.090101
Junfeng Dong [Thu, 27 Jun 2013 10:49:59 +0000 (18:49 +0800)]
Fix build error

    Fixed conflict type qualifiers for __malloc_initialize_hook.
    Removed Werror.

Change-Id: I34138cca08d5280d5b9de81896e25e78b1f9d957
Signed-off-by: Junfeng Dong <junfeng.dong@intel.com>
10 years agoPrepare the guard to prevent from calling specific functions.
Sung-jae Park [Thu, 27 Jun 2013 12:12:10 +0000 (21:12 +0900)]
Prepare the guard to prevent from calling specific functions.

Change-Id: Ic12b845af38951d03b743332848e9714aa0a4f22

10 years agoAdd new internal API
Sung-jae Park [Thu, 27 Jun 2013 07:50:50 +0000 (16:50 +0900)]
Add new internal API

Detecting updated file is not completed handled by inotify.
So add new API for explictly notify updated cotnent to the provider.

Change-Id: Ie7febc177aec73a570242f9e8efa2cbc97a75bf8

10 years agoUpdate Log
Sung-jae Park [Thu, 27 Jun 2013 05:11:02 +0000 (14:11 +0900)]
Update Log

Change-Id: I6ebd40af97b563c3e1e281b1d025f821867f4e77

10 years agoFix the prevent issue.
Sung-jae Park [Thu, 27 Jun 2013 01:06:41 +0000 (10:06 +0900)]
Fix the prevent issue.

Use after free bug.

Change-Id: I64c0b5ba5eb72f588777a5d434a4a5e525b7ac0a

10 years agoFix the update code. Reduce logging message
Sung-jae Park [Thu, 27 Jun 2013 00:03:57 +0000 (09:03 +0900)]
Fix the update code. Reduce logging message

Change-Id: Ida2cebdcce4f8ce5dc36ef1a3e3b9a40c2c3086b

10 years agoUpdate initial font setting code.
Sung-jae Park [Wed, 26 Jun 2013 04:35:43 +0000 (13:35 +0900)]
Update initial font setting code.

Change-Id: I0839915fc340612a16269da748448d83841f4365

10 years agoUpdate icon provider
Sung-jae Park [Wed, 26 Jun 2013 00:27:26 +0000 (09:27 +0900)]
Update icon provider

Alpha option enabled.

Change-Id: I5070adffaece2e9c1a6f29cc714f77159aae7c7e

10 years agoReduce log message
Sung-jae Park [Mon, 24 Jun 2013 10:45:09 +0000 (19:45 +0900)]
Reduce log message

Change-Id: I4afafd990f72a7ba0e5744ac44153cc029d233f3

10 years agoPackage signing
Sung-jae Park [Fri, 14 Jun 2013 00:59:29 +0000 (09:59 +0900)]
Package signing

[model] Tizen
[binary_type] AP
[customer] Tizen Developer
[issue#] N/A
[problem] N/A
[cause] Package signing is required.
[solution] Update spec file
[team] HomeTF
[request]
[horizontal_expansion]

Change-Id: I63c921ae49b2db897528c5ba52c3ec086bf74c10

10 years agoMerge branch 'tizen_2.1' into tizen_2.2
Sung-jae Park [Thu, 13 Jun 2013 02:05:31 +0000 (11:05 +0900)]
Merge branch 'tizen_2.1' into tizen_2.2

Change-Id: I81528bb46496844da09c0b531ade3c208f311731

10 years agoUpdate icon layout and font change event handler for utility service.
Sung-jae Park [Thu, 13 Jun 2013 01:01:22 +0000 (10:01 +0900)]
Update icon layout and font change event handler for utility service.

[model] Tizen
[binary_type] AP
[customer] Tizen Developer
[issue#] N/A
[problem] Icon text style is not changed. Layout is updated.
[cause] UX is changed. Font change event handler is not registered.
[solution] Update Icon layout. register the font change event handler.
[team] HomeTF
[request]
[horizontal_expansion]

Change-Id: If59c67b250170de9e24be8d2b394a8982af92bbe

10 years agoFix the prevent issue.
Sung-jae Park [Wed, 29 May 2013 07:04:58 +0000 (16:04 +0900)]
Fix the prevent issue.

Change-Id: Id2c9770b6c4af5808373c8948c871e05920e9f16

10 years agoUpdate SMACK rule & logging system.
Sung-jae Park [Tue, 28 May 2013 00:45:23 +0000 (09:45 +0900)]
Update SMACK rule & logging system.

[model] Tizen
[binary_type] AP
[customer] Tizen Developers
[issue#] N/A
[problem] Overwriting log file.
[cause] Every slave provider uses same filename for logging.
[solution] Use different filename for each provider using their PID.
[team] HomeTF
[request]
[horizontal_expansion]

Change-Id: I1cf127e2485cb584c46bc2a5474237c78b58aeb6

10 years agoMerge "Update Icon layout file." into tizen_2.1
Youngjoo Park [Wed, 29 May 2013 00:16:27 +0000 (09:16 +0900)]
Merge "Update Icon layout file." into tizen_2.1

10 years agoMerge "Use the SIGALRM & SIGUSR1 even if the ECORE_ERROR_ABORT is set." into tizen_2.1
Youngjoo Park [Wed, 29 May 2013 00:16:08 +0000 (09:16 +0900)]
Merge "Use the SIGALRM & SIGUSR1 even if the ECORE_ERROR_ABORT is set." into tizen_2.1

10 years agoMerge "Use the ECORE_ERROR_ABORT env." into tizen_2.1
Youngjoo Park [Wed, 29 May 2013 00:16:01 +0000 (09:16 +0900)]
Merge "Use the ECORE_ERROR_ABORT env." into tizen_2.1

10 years agoMerge "Guarantees the destroy event of a livebox." into tizen_2.1
Youngjoo Park [Wed, 29 May 2013 00:15:13 +0000 (09:15 +0900)]
Merge "Guarantees the destroy event of a livebox." into tizen_2.1

10 years agoMerge "Update return value." into tizen_2.1
Youngjoo Park [Wed, 29 May 2013 00:14:38 +0000 (09:14 +0900)]
Merge "Update return value." into tizen_2.1

10 years agoUpdate Icon layout file.
Sung-jae Park [Thu, 23 May 2013 05:10:58 +0000 (14:10 +0900)]
Update Icon layout file.

Change-Id: Ie3437e3c1190206c6d21a8c2c0dfd8607e7bc013

10 years agoUse the SIGALRM & SIGUSR1 even if the ECORE_ERROR_ABORT is set.
Sung-jae Park [Thu, 23 May 2013 01:35:50 +0000 (10:35 +0900)]
Use the SIGALRM & SIGUSR1 even if the ECORE_ERROR_ABORT is set.

Change-Id: I1a252222b49766942c5a0f0963f2b0df92673616

10 years agoUse the ECORE_ERROR_ABORT env.
Sung-jae Park [Thu, 23 May 2013 01:22:46 +0000 (10:22 +0900)]
Use the ECORE_ERROR_ABORT env.

If it is turned on, don't enable the signal handler.
Just make the crash-worker do its job.

Change-Id: I8055f506095376d898a42f1313b47ea43aa0eb31

10 years agoGuarantees the destroy event of a livebox.
Sung-jae Park [Mon, 20 May 2013 11:24:33 +0000 (20:24 +0900)]
Guarantees the destroy event of a livebox.

If there is only one loaded box in the slave,
The slave will be terminated when the last box is deleted.
But the box couldn't get the destroy event, if it is in updating status.

So while terminating the slave,
the process will forcely call the destroy & fainalize function.
Even if it is in updating status.

And then terminate the process.

So now the livebox can gets the destroy event correctly.

Change-Id: Ifd8544fb3be889b696c6ff87b8f60bd577b666fb

10 years agoAdd smack rule tizen_2.1 accepted/tizen/20130530.164858 accepted/tizen_2.1/20130520.093417 submit/tizen/20130528.213958 submit/tizen/20130528.214214 submit/tizen_2.1/20130516.232347
Jinmook Lim [Thu, 16 May 2013 16:55:33 +0000 (01:55 +0900)]
Add smack rule

Change-Id: Ie9a8041a1cc9b53cd65be3d4d304ac4f37deade9
Signed-off-by: Jinmook Lim <jinmook.lim@samsung.com>
10 years agoUpdate return value.
Sung-jae Park [Wed, 15 May 2013 08:31:57 +0000 (17:31 +0900)]
Update return value.

But it is not called by anyone.

Change-Id: Ia2f36edc57f28092d6932adaf78908cbe7bc9b7d

10 years agoAdd missing functions. accepted/tizen_2.1/20130520.093057 submit/tizen_2.1/20130516.045520
Sung-jae Park [Wed, 15 May 2013 08:20:44 +0000 (17:20 +0900)]
Add missing functions.

Which are used by liblivebox.

Change-Id: I560e27b3fd9e768d0a3f2b7eada0fdad51dd9f21

10 years agoAdd boilerplate.
Sung-jae Park [Wed, 15 May 2013 07:13:31 +0000 (16:13 +0900)]
Add boilerplate.

Change-Id: I8d7e2312cd5745951d6c7f7b34f7a6c61788c508

10 years agoVarious patches are applied.
Sung-jae Park [Wed, 15 May 2013 02:11:04 +0000 (11:11 +0900)]
Various patches are applied.

Patch 8
    Ignore font size change event

Patch 7
    Update visible state when it is created.

Patch 6
    If the provider is paused, newly create box should be paused too.
    After creating a new box instance, check the status of current provider.
    And update the status of newly created box too.

Patch 5
    Add CLCICKED log for estimating launch time.

Patch 4
    Add shadow image and remove text shadow

Patch 3
    Update icon edc file.

Patch 2
    Change the color of text shadow.

Patch 1
    Implement the icon service provider.

    Patch #1
       Icon service provider will generate the requested image file.
       Using given edje & descfile.

       After load the edje file, the provider will start parse the desc file
       to fill the content of loaded edje object.

    Patch #2
       Add edje layout file for creating icon image using it.

    Patch #3
       Add 2x1, 2x2, 4x1, 4x2, 4x3, 4x4, 4x5, 4x6 icon layout

    Patch #4
       Fix bugs.

Change-Id: Ieac9854fcf49f0dbaed378a564782673ff1fd974

10 years agoMerge branch 'tizen_2.1_smack' into tizen_2.1 submit/tizen_2.1/20130514.053709
Sung-jae Park [Fri, 10 May 2013 11:41:15 +0000 (20:41 +0900)]
Merge branch 'tizen_2.1_smack' into tizen_2.1

Change-Id: Ic9cdd691426db9dc2f73035202318f250d319a84

10 years agoUse the rule file again instead of manifest file.
Sung-jae Park [Tue, 7 May 2013 13:54:13 +0000 (22:54 +0900)]
Use the rule file again instead of manifest file.

Change-Id: I895924f293363abb83bd16c317ec5d4c2b996fd3

10 years agofix manifest
Kidong Kim [Tue, 7 May 2013 13:29:33 +0000 (22:29 +0900)]
fix manifest

Change-Id: I20e849d7ee69da1f769c2cb4814e6aacab237472

10 years agoMerge rule into manifest file.
Sung-jae Park [Tue, 7 May 2013 07:33:07 +0000 (16:33 +0900)]
Merge rule into manifest file.

Remove rule file

Change-Id: Ic7731c51d2c3b06900f42d213f7eab210644d263

10 years agoRemove smack rule file.
Sung-jae Park [Mon, 6 May 2013 07:41:29 +0000 (16:41 +0900)]
Remove smack rule file.

Change-Id: I289cb4431dc6d0477ba19e5dcb2ec09a14f65e3e

10 years agoManage the updated status.
Sung-jae Park [Tue, 30 Apr 2013 12:34:27 +0000 (21:34 +0900)]
Manage the updated status.

For the script type,
If the livebox is not shown, try to merge the desc data.
And then send updated event to the provider when the provider prepare the buffer of a livebox.
Then we can prevent from lost of desc data.

For the PD.
If the PD is not opened, do not send updated event to the provider.
Just ignore it.

Change-Id: If346e84938fb5d59536f34ca7e3f308c6536ebca

11 years agoUpdate License 2.1b_release accepted/tizen_2.1/20130425.023237 submit/tizen_2.1/20130424.223854
Sung-jae Park [Fri, 19 Apr 2013 11:40:27 +0000 (20:40 +0900)]
Update License

Change-Id: I89bb320e4470a980b56a2650d26b8151d5a9931a

11 years agoUpdate License
Sung-jae Park [Thu, 18 Apr 2013 09:34:43 +0000 (18:34 +0900)]
Update License

Change-Id: Ibc40636142337bc19b75bb34081053f873a7336f

11 years agoMMC status check & font,size changed events added
Sung-jae Park [Thu, 18 Apr 2013 04:58:46 +0000 (13:58 +0900)]
MMC status check & font,size changed events added

Update font (name & size) changed event handler.

Add MMC status chage event handler

Change-Id: I26d72234b24ec108abd5b13126aeec2f5838484a

11 years agoSync with the private repository
Sung-jae Park [Wed, 10 Apr 2013 11:43:58 +0000 (20:43 +0900)]
Sync with the private repository

Sent back to requested size of created livebox.
to make the correct size buffer.

Change-Id: I3a96c6d6ae0bd7b2f726b8c48883ffb94bba524a

11 years agoAdd more message to make easy to debug.
Sung-jae Park [Thu, 28 Mar 2013 12:36:25 +0000 (12:36 +0000)]
Add more message to make easy to debug.

No comments. ;)

Change-Id: If06bfe1c1708efa3611f1828d0306bb0310dee97

11 years agoUpdate License
Sung-jae Park [Mon, 25 Mar 2013 04:04:40 +0000 (04:04 +0000)]
Update License

2012 -> 2013

Change-Id: If051c015dafd8319932f35cd675220b5ab964362

11 years agoMerge branch 'master' into tizen_2.1
Sung-jae Park [Thu, 21 Mar 2013 12:56:03 +0000 (12:56 +0000)]
Merge branch 'master' into tizen_2.1

Conflicts:
include/conf.h
packaging/org.tizen.data-provider-slave.spec
src/conf.c

Change-Id: I9463462acc0442cafabb038a016b4ac8c7bf1d6f

11 years agoAdd new conf key for accessing input device
Sung-jae Park [Tue, 19 Mar 2013 10:21:18 +0000 (10:21 +0000)]
Add new conf key for accessing input device

Just for keeping the compatibility with master.

Change-Id: I2e3f262c4137edd954bb2b418cd8b8e8dbf9c9da

11 years agosycn with master
Jinkun Jang [Sat, 16 Mar 2013 12:39:40 +0000 (21:39 +0900)]
sycn with master

11 years agoAdd missing smack rule
Sung-jae Park [Wed, 13 Mar 2013 01:55:26 +0000 (01:55 +0000)]
Add missing smack rule

Change-Id: Ia070e023fc4325c632dce7f2aa0d0c32c1658ddc

11 years agoFix the invalid smack label
Sung-jae Park [Fri, 8 Mar 2013 06:49:07 +0000 (06:49 +0000)]
Fix the invalid smack label

Change-Id: If39e8fe5158ae76e563082ee394fdc3e07dbe354

11 years agoAdd pd_move event & region changed system event
Sung-jae Park [Mon, 4 Mar 2013 10:47:56 +0000 (10:47 +0000)]
Add pd_move event & region changed system event

Change-Id: If5ffdfd2c44787e3c92c16db91de44f7b5d0eb5f

11 years agoUpdate the smack rule
Sung-jae Park [Wed, 27 Feb 2013 06:51:21 +0000 (06:51 +0000)]
Update the smack rule

Change-Id: Ief0989cdac1f553c6527d898c07e97ca60420d52

11 years agoSync with private repo.
Sung-jae Park [Wed, 27 Feb 2013 03:02:52 +0000 (03:02 +0000)]
Sync with private repo.

Just Version up
Add few more debugging message

Change-Id: If692b43017d64ea9f42f30beba3e9659951b3d62

11 years agoUpdate %files & %post section.
Sung-jae Park [Mon, 25 Feb 2013 14:20:33 +0000 (14:20 +0000)]
Update %files & %post section.

for installing files with proper owner & permissions.

Change-Id: I3d4d5941dad29872bcf14f290b41b2f0bbecba29

11 years agoSync with the latest code
Sung-jae Park [Thu, 21 Feb 2013 10:56:14 +0000 (10:56 +0000)]
Sync with the latest code

Change-Id: I09347df0a6e78cb4e40df32c5c7f3afb7dc0d5fb

11 years agoUpdate the conf file.
Sung-jae Park [Fri, 15 Feb 2013 08:51:14 +0000 (08:51 +0000)]
Update the conf file.

Add the slave_waiting_time.
But the slave doesn't need it. just for the master.

Change-Id: I8def8f4aa32843b165f3ef672d75d2fb5557755d

11 years agoUpdate the smack manifest file.
Sung-jae Park [Thu, 14 Feb 2013 07:14:13 +0000 (07:14 +0000)]
Update the smack manifest file.

Change-Id: Ia6206e13e4d44b186f35a915d54f2787573ac1c2

11 years agoUpdate the update period comepensation code.
Sung-jae Park [Thu, 14 Feb 2013 05:19:19 +0000 (05:19 +0000)]
Update the update period comepensation code.

Check the updated file size.
if the filesize is ZERO, just prints some log.
Update the smack rule.

Change-Id: If6f24f9f840d443e3efd81b78a76603e953b4bc4

11 years agoUpdate the smack rule
Sung-jae Park [Tue, 5 Feb 2013 06:56:30 +0000 (06:56 +0000)]
Update the smack rule

Change-Id: Ib174c7b33c833db99c7ade2a61e3bb04bdbaf616

11 years agoUpdate smack rule & create a data folder
Sung-jae Park [Mon, 4 Feb 2013 06:01:02 +0000 (06:01 +0000)]
Update smack rule & create a data folder

Change-Id: I6c51f8a80779517d288a95242c673ff37971e960

11 years agoUpdate the smack rule and debug mode.
Sung-jae Park [Fri, 1 Feb 2013 05:57:15 +0000 (05:57 +0000)]
Update the smack rule and debug mode.

Change-Id: I37852fada0320297b9d2360cbca9523cdb8130b5

11 years agoRemove some rule
Sung-jae Park [Thu, 31 Jan 2013 01:49:06 +0000 (01:49 +0000)]
Remove some rule

Change-Id: I962534aeaa4544a25d7e700d6958e8cdd0908c68