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
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
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>
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
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
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
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
Sung-jae Park [Wed, 22 Jan 2014 02:15:20 +0000 (11:15 +0900)]
Explicitly casts the enumeration value to ineteger
Change-Id: If658ba589c45f58bd1d93266c54740458bd97801
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
Sung-jae Park [Wed, 4 Dec 2013 07:45:39 +0000 (16:45 +0900)]
Apply force update option
Change-Id: I7a54b3daac2f9204cdc1d7f0915af8251acf0f7e
Sung-jae Park [Wed, 20 Nov 2013 08:11:06 +0000 (17:11 +0900)]
Update image effect
Change-Id: I25e48ad37f6950acc68067d9fd1a72be7f7671f7
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
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
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
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
Sung-jae Park [Fri, 8 Nov 2013 13:25:48 +0000 (22:25 +0900)]
Add missing arguments
Change-Id: I00f2cffaaaf8552efe6053d284e663fcd6247e9a
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
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>
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>
Sung-jae Park [Tue, 22 Oct 2013 07:06:14 +0000 (16:06 +0900)]
Ignore invalid LDFLAGS
Change-Id: Idb16a1fcd3d8b62a2c7dcb3fd2efdaf223303777
Sung-jae Park [Tue, 22 Oct 2013 06:14:25 +0000 (15:14 +0900)]
Fix build error.
Change-Id: I07f86e71deb2f31893d466e5fe71556cda8b59bb
Sung-jae Park [Tue, 22 Oct 2013 05:56:14 +0000 (14:56 +0900)]
Add missing dependencies
Change-Id: I684b5cd3a45d8c1d141a74ab49477f2b7130d3dc
Sung-jae Park [Tue, 22 Oct 2013 05:51:07 +0000 (14:51 +0900)]
Build again
Change-Id: Ib5e750f01aa494b1abad9fb4df98fb6c6dbbddf1
Sung-jae Park [Tue, 22 Oct 2013 05:45:00 +0000 (14:45 +0900)]
Fix build error
Change-Id: I14bb0ab474684189f4acda30e2422ed0a40022d5
Sung-jae Park [Tue, 22 Oct 2013 05:24:47 +0000 (14:24 +0900)]
Fix build error
Change-Id: I3bd9616b9bf3b269b990be541e64eaf2cce614dc
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
Sung-jae Park [Wed, 2 Oct 2013 03:55:45 +0000 (12:55 +0900)]
Update smack rule
Change-Id: Ibacfa0e7af05532abbf4d66b4921d3dd609f2c3a
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
Sung-jae Park [Thu, 26 Sep 2013 02:02:43 +0000 (11:02 +0900)]
Replace gettimeofday with clock_get_time
Change-Id: Ic7bdcd5b139aa2a43b56f02f205d3603a05eb000
Sung-jae Park [Mon, 9 Sep 2013 10:58:16 +0000 (19:58 +0900)]
Supporting non-serialized content updating.
Change-Id: I1f8816b52425d49b9f7ac0a182b2f4ca2d8b8590
Sung-jae Park [Tue, 3 Sep 2013 02:30:14 +0000 (11:30 +0900)]
Update coding convention
Change-Id: I2be9047834cae335b463dac93a418cededaaa4f5
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
Sung-jae Park [Fri, 16 Aug 2013 12:28:16 +0000 (21:28 +0900)]
Release needless heap resource.
Change-Id: Iec36ece91eb83689a8dc899c31b931778a893d02
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
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
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
Sung-jae Park [Thu, 4 Jul 2013 07:51:43 +0000 (16:51 +0900)]
Update SMACK rule
Change-Id: Ife2ab4f7b85f117655103526ded377c69739e946
Sung-jae Park [Wed, 3 Jul 2013 23:40:48 +0000 (08:40 +0900)]
Remove last trailing comma
Change-Id: Ia3a766f88c87fb057f67b29629a3be69e2b4d8b9
Sung-jae Park [Wed, 3 Jul 2013 04:26:39 +0000 (13:26 +0900)]
Apply GCC 4.8 patch
Change-Id: I2e21ffedf83e96d82e55716471bf9376f51798b0
Sung-jae Park [Tue, 2 Jul 2013 13:23:55 +0000 (22:23 +0900)]
Add missing function declaration.
Change-Id: I93857a8f1bff20586d8d743f36a38c2e6e9ce0ad
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
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
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
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>
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
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
Sung-jae Park [Thu, 27 Jun 2013 05:11:02 +0000 (14:11 +0900)]
Update Log
Change-Id: I6ebd40af97b563c3e1e281b1d025f821867f4e77
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
Sung-jae Park [Thu, 27 Jun 2013 00:03:57 +0000 (09:03 +0900)]
Fix the update code. Reduce logging message
Change-Id: Ida2cebdcce4f8ce5dc36ef1a3e3b9a40c2c3086b
Sung-jae Park [Wed, 26 Jun 2013 04:35:43 +0000 (13:35 +0900)]
Update initial font setting code.
Change-Id: I0839915fc340612a16269da748448d83841f4365
Sung-jae Park [Wed, 26 Jun 2013 00:27:26 +0000 (09:27 +0900)]
Update icon provider
Alpha option enabled.
Change-Id: I5070adffaece2e9c1a6f29cc714f77159aae7c7e
Sung-jae Park [Mon, 24 Jun 2013 10:45:09 +0000 (19:45 +0900)]
Reduce log message
Change-Id: I4afafd990f72a7ba0e5744ac44153cc029d233f3
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
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
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
Sung-jae Park [Wed, 29 May 2013 07:04:58 +0000 (16:04 +0900)]
Fix the prevent issue.
Change-Id: Id2c9770b6c4af5808373c8948c871e05920e9f16
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
Youngjoo Park [Wed, 29 May 2013 00:16:27 +0000 (09:16 +0900)]
Merge "Update Icon layout file." 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
Youngjoo Park [Wed, 29 May 2013 00:16:01 +0000 (09:16 +0900)]
Merge "Use the ECORE_ERROR_ABORT env." 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
Youngjoo Park [Wed, 29 May 2013 00:14:38 +0000 (09:14 +0900)]
Merge "Update return value." into tizen_2.1
Sung-jae Park [Thu, 23 May 2013 05:10:58 +0000 (14:10 +0900)]
Update Icon layout file.
Change-Id: Ie3437e3c1190206c6d21a8c2c0dfd8607e7bc013
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
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
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
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>
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
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
Sung-jae Park [Wed, 15 May 2013 07:13:31 +0000 (16:13 +0900)]
Add boilerplate.
Change-Id: I8d7e2312cd5745951d6c7f7b34f7a6c61788c508
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
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
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
Kidong Kim [Tue, 7 May 2013 13:29:33 +0000 (22:29 +0900)]
fix manifest
Change-Id: I20e849d7ee69da1f769c2cb4814e6aacab237472
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
Sung-jae Park [Mon, 6 May 2013 07:41:29 +0000 (16:41 +0900)]
Remove smack rule file.
Change-Id: I289cb4431dc6d0477ba19e5dcb2ec09a14f65e3e
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
Sung-jae Park [Fri, 19 Apr 2013 11:40:27 +0000 (20:40 +0900)]
Update License
Change-Id: I89bb320e4470a980b56a2650d26b8151d5a9931a
Sung-jae Park [Thu, 18 Apr 2013 09:34:43 +0000 (18:34 +0900)]
Update License
Change-Id: Ibc40636142337bc19b75bb34081053f873a7336f
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
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
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
Sung-jae Park [Mon, 25 Mar 2013 04:04:40 +0000 (04:04 +0000)]
Update License
2012 -> 2013
Change-Id: If051c015dafd8319932f35cd675220b5ab964362
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
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
Jinkun Jang [Sat, 16 Mar 2013 12:39:40 +0000 (21:39 +0900)]
sycn with master
Sung-jae Park [Wed, 13 Mar 2013 01:55:26 +0000 (01:55 +0000)]
Add missing smack rule
Change-Id: Ia070e023fc4325c632dce7f2aa0d0c32c1658ddc
Sung-jae Park [Fri, 8 Mar 2013 06:49:07 +0000 (06:49 +0000)]
Fix the invalid smack label
Change-Id: If39e8fe5158ae76e563082ee394fdc3e07dbe354
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
Sung-jae Park [Wed, 27 Feb 2013 06:51:21 +0000 (06:51 +0000)]
Update the smack rule
Change-Id: Ief0989cdac1f553c6527d898c07e97ca60420d52
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
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
Sung-jae Park [Thu, 21 Feb 2013 10:56:14 +0000 (10:56 +0000)]
Sync with the latest code
Change-Id: I09347df0a6e78cb4e40df32c5c7f3afb7dc0d5fb
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
Sung-jae Park [Thu, 14 Feb 2013 07:14:13 +0000 (07:14 +0000)]
Update the smack manifest file.
Change-Id: Ia6206e13e4d44b186f35a915d54f2787573ac1c2
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
Sung-jae Park [Tue, 5 Feb 2013 06:56:30 +0000 (06:56 +0000)]
Update the smack rule
Change-Id: Ib174c7b33c833db99c7ade2a61e3bb04bdbaf616
Sung-jae Park [Mon, 4 Feb 2013 06:01:02 +0000 (06:01 +0000)]
Update smack rule & create a data folder
Change-Id: I6c51f8a80779517d288a95242c673ff37971e960
Sung-jae Park [Fri, 1 Feb 2013 05:57:15 +0000 (05:57 +0000)]
Update the smack rule and debug mode.
Change-Id: I37852fada0320297b9d2360cbca9523cdb8130b5
Sung-jae Park [Thu, 31 Jan 2013 01:49:06 +0000 (01:49 +0000)]
Remove some rule
Change-Id: I962534aeaa4544a25d7e700d6958e8cdd0908c68