summaryrefslogtreecommitdiff
path: root/packaging
AgeCommit message (Collapse)AuthorFilesLines
2013-06-21Update Easymode DBox size.Sung-jae Park1-1/+1
Change-Id: Ia7a900a5829a6b66e90dc642b80562ab8c3b7c45
2013-06-21User level smack permission check is applied.Sung-jae Park1-1/+1
User level smack permission check code is implemented. But in this patch, even if it fails to check the permission, service will be going on. After two weeks later, it will be rejected if it has no permission to get service. Change-Id: I6ea53665dd3f4ceb27edf90f56b7c368c8f6b31e
2013-06-20Fix various bugs.Sung-jae Park1-1/+1
If the service_trigger_update fails, return its status. [issue#] N/A [problem] User wants to know how many instances are affected by update trigger request. [cause] Docomo requires this. [solution] Check the created instances and return NOT_EXISTS if there are no instances. [team] HomeTF [request] [horizontal_expansion] -------------------------------------------- Remove unnecessary storage space check code [issue#] P130607-6207 [problem] PD open/close is not related with storage space. [cause] Even if a user tries to open a PD, master checks disk space for openning it. [solution] PD open is not necessary to check the free disk space. So remove it. [team] HomeTF [request] [horizontal_expansion] -------------------------------------------- Apply GCC 4.8 patch [issue#] N/A [problem] GCC 4.8 complier complains about unused variables. [cause] Unused variables are declared. [solution] Remove it. [team] HomeTF [request] [horizontal_expansion] -------------------------------------------- Change-Id: Id861b50f65a00c3c9a25b1c01be7068e897f74e2
2013-06-14Check the PD owner.Sung-jae Park1-1/+1
[model] Tizen [binary_type] AP [customer] Tizen Developer [issue#] N/A [problem] No one can open or close the PD if it is not owned by requestor. [cause] N/A [solution] N/A [team] HomeTF [request] [horizontal_expansion] Change-Id: If4bbe6917507392fed21d3bca8bb791b379c24ef
2013-06-13Add missing package dependencies for smack.Sung-jae Park1-0/+1
[model] Tizen [binary_type] AP [customer] Tizen Developer [issue#] N/A [problem] Insatllation failed [cause] Unresolvable smack label found. [solution] Add Requires to spec file. [team] HomeTF [request] [horizontal_expansion] Change-Id: I7cbbf86f4660b1d77b2dc43aa384f2f48299e827
2013-06-13Update SMACK, Fix a crash of terminating sequence, etc, ...Sung-jae Park1-7/+6
[model] Tizen [binary_type] AP [customer] Tizen Developer [issue#] N/A [problem] SMACK label is separated, Crash of terminating sequence [cause] Terminating sequence is not valid when the edje plugin is loaded. SMACK should be separated by each service module. [solution] Update SMACK label. Fix the crash of terminating sequence [team] HomeTF [request] [horizontal_expansion] Change-Id: I8aa7c4773a6548685e63bd3e822d83cbbb01db98
2013-05-29New patches are appliedSung-jae Park1-1/+1
Patch 2/2 Update pd,show/pd,hide & lb,show/lb,hide event Patch 1/2 review code. extract duplicated code to a function Change-Id: If9fc018a145b2b779762a02e76b017271487ef1e
2013-05-28Add timer for monitoring opertaion of PD.Sung-jae Park1-1/+1
[model] Redwood [binary_type] AP [customer] Docomo/Orange/Open [issue#] N/A [problem] If the slave doesn't request the PD buffer, client waiting it forever. [cause] There is no management code for exceptional cases. [solution] Add the monitor, so the PD buffer is not created in N(5.0) secs, master destroy it automatically. [team] HomeTF [request] [horizontal_expansion] Change-Id: I2a83060b7218b2deb2dcc4d9040a47decfe06238
2013-05-20Logging the critical message to a file.Sung-jae Park1-1/+1
The file will be unlinked every boot. So the log must has to be captured before reboot the device Change-Id: I1c2bc06b61cd7c429426b04bebbd499d267c1061
2013-05-16Use the default environment file for systemdsubmit/tizen_2.1/20130516.133703accepted/tizen_2.1/20130520.093246Sung-jae Park1-5/+4
Change-Id: Id04977488c4a2599f95e16107e0d808f57901973
2013-05-15Various patches are applied.submit/tizen_2.1/20130516.041934accepted/tizen_2.1/20130520.093034Sung-jae Park1-6/+7
Patch 8/8 Update language change event handling code. Change the env value too. Region & Language is handles separately. So I separate them using VCONFKEY like app-core. Region & Lang. Patch 7/8 Care the language change notification. Patch 6/8 Handling the reply packet correctly. Patch 5/8 Define smack rule for vconf key. Patch 4/8 Don't terminate the provider even if it gets SIGTERM. Patch 3/8 Remove printf and update systemd service file. Patch 2/8 Update systemd service file. Patch 1/8 Implement the utility service. 1. Service routine updated. If a client is disconnected, service routine will be called with packet NULL. 2. Utility service is implemented. For generating the shortcut icon image, this utility service is prepared. Master just route the request & event for generating shortcut icon. Then the service daemon will be launched. and it will start generating icon image file. The image file is created in specified folder & name by client. So the client has to manage the created image file. 3. service_common_timer API is implemented. Using timerfd. Now the timer event can be handled in a separated thread. Change-Id: I9ce2546aea86c324ea9846d9dc673d6475b706c3
2013-05-03Fix the build errorSung-jae Park1-5/+0
Clear the invalid package dependencies. Change-Id: Iab47e6e656210f82ef73969b5566281bee88b8eb
2013-05-01Various patches are appliedSung-jae Park1-1/+8
Patch 9/9 Fix the bug of ignoring updated content info. Even if the box tries to update its content info, in case of script type box, the provider ignores it. This patch will fix it. Patch 8/9 Use the break after handling the service request (badge/noti) Patch 7/9 Using EINA_LIST_FREE instead of EINA_LIST_FOREACH_SAFE. To release the svc_ctx->packet_list. Patch 6/9 Keep the desc block even if the buffer of lb is not ready. Keep the desc blocks even if the buffer of livebox is not created. The provider will send the created event to the slave. Then the slave will start to generate the desc file. (script data) But the provider cannot apply desc to its buffer. Because there is no created object. To resolve this issue, This patch will create a cache. It will be used for keeping the blocks which are parsed before creating a buffer of livebox (or PD). Patch 5/9 Update License Patch 4/9 Enable Badge/Notification service. Patch 3/9 Don't set the "default" to content as default value. Client can use "" for its content value. So the provider has not to touch the "content". Patch 2/9 Update period compensation timer. Patch 1/9 Fix the storage size calculation bug. Change-Id: Ia6f0d5e0fe06ed9a348082d324b09cc7732041e7
2013-04-23Implement the service threads.Sung-jae Park1-1/+2
Shortcut service thread is enabled. Service connection method is updated (using vconf to notify running state of the master.) Change-Id: I92af0e2e693c4516b407263bfb1fae9a8925f83e
2013-04-18Various patchset applied.Sung-jae Park1-1/+1
Clear the pixmap right after allocate it. If the slave is faulted, Every package in that slave should be faulted too. Then the user can re-activate it. Supporting the 4x5,4x6 liveboxes Update accessibility scroll event Add more log for fs free size calculation. Change-Id: I8b5ecfffca79e4f0cd17e11bda201e36a16ffe10
2013-04-12Add new accessibilty events & fixed prevent issuesSung-jae Park1-1/+1
Fix the issues which are reported from the prevent Update update_text handler Update version Accessiblity unhighlight event is added Update Version Change-Id: I9ca6bea8cfa6eecc4fbba36b9302535c2e500002
2013-04-10Merged with private repository.Sung-jae Park1-1/+1
Update accessibility. Accessibility event is defined for script type livebox & pd. Update touch_effect & need_frame. These attributes should be described for each size type. Update parser for getting accessibility text TYPE="access" is added. "need_frame" attribute is added For handling the frame decoration of boxes. If a box set "true" for this need_frame attribute, The viewer will draw the border for it. Active/Passive update mode is added. Add update_mode. Active & Passive update mode. These two words are used for viewer. If a viewer wants to update the content of boxes without any updated events, it can use the active mode. or it can update by the updated event. passive mode is default. So every viewer will get updated event then they should to update the content of boxes. Change-Id: I928f5cdf1c99fa428a05e84f5605cdd60724a555
2013-03-31Sync to I865165b974aa32a35a58b7260cb1c046ed8f1413Sung-jae Park1-1/+1
Add new event path & Change pixmap 24 to 32. Fix the bug of size_changed event. It has to send the fbid to the client to update its buffer info from viewer side. Separating slaves(using net option), 0x0 size box 1. Separate the slave process using network option. If a box requires network connection to update their contents, Load it from specific slave which designed to use the network. Currently, we use only one package for loading boxes. So we just launch another slave process for separating boxes using network attributes. 2. 0x0 box size is added. 0x0 is supported for inhouse/commercialization version only. Its size is defined 720x1280 (depends on the screen size) Add new event path for holding scroller of viewer Viewer should holds the scroller when it gets this event. This hold scroll event is used for get request of boxes. Change-Id: I3a8b8c75e5a5229aef5f15394308d9bb3f1d770e
2013-03-28Care the case for failing open a PD.Sung-jae Park1-1/+1
If a provider fails to load script for PD, It should notice to slave provider. Currently, the slave will prevent other boxes update if the PD is opened of a box. So, if the master doesn't send the failed event to the slave, and only client notice it, the slave cannot get any failed or close PD event. then it will block all other boxes update. This patch will fix it. Now if the master fails to load the EDJE for PD, the slave will notice it via close,pd event. then the other box can be updated normally. Change-Id: I44f7bf6378e07adc29656db94993f9af38a71d34
2013-03-28Fix unresolvable errorSung-jae Park1-5/+0
Remove product feature dependency Change-Id: Ic0dbf6ab34eb12123c0fe69c8a4babfebd12851f
2013-03-27Use the 32 Bits pixmap & add missing client_unrefSung-jae Park1-1/+1
Change-Id: I465a682ccced81e96f7eacb9ecba7a553d2e5d94
2013-03-25Update LicenseSung-jae Park1-2/+8
2012 -> 2013 Fix the bug of resized box event. After the provider get the resized event from the box, need to check the current size of a box. If is same with requested size, send it to the client that the request is already finished. Apply the livebox errno (status code) instead of system errno. Make easy to understand what happens in the API. Use the util_uri_to_path to unlink image files of liveboxes(image type) Change-Id: Ide9281da21700f4e1d9c0eb480daeff891258ccd
2013-03-21Fix the invalid arrow position handling code.Sung-jae Park1-1/+1
Issue is followed by reducing IPC patch patch. Change-Id: I33d1b3e6e8eb58c8e29e4df01998902148ad583d
2013-03-19Bugs are fixed and new features are introducedSung-jae Park1-1/+1
1. Focus based event sending. (mouse event & master) Optimize the input event routing code. Input event can be gathered by event device directly. To save the resource for mouse event handling. If the viewer select a box using content_event(SET), the provider will send all mouse event to the selected box without any concerning of viewer. Currently the viewer sends all mouse event via master to boxes. But this new concept will reduce the IPC overhead by sending them to the box directly. If the viewer unselect a box using content_event(UNSET), the provider will stop to send events to box. 2. Fixed bugs of code for handling the case of failed to launch a slave provider. If the slave provider didn't answers after launch it to the master, The master will handles it as faulted box. In that case, the master didn't care the resources of slave provider in core. So it could make the resource leak. This patch will fix it. Even if the slave didn't send hello message, so it would be faulted, the master will clear the resources correctly. 3. Initiate script bug is fixed (for the F/W developer) When the developer tries to start the master daemon twice, a new process will be launched. This is not to be happens, so this patch will fix it. When the developer tries to launch daemon again via data-provider-master script (init.d), It will check the running process first. If it find one, the scrip will be finished with error code, to prevent multiple daemon running. 4. Event device path is added to conf. We have the configuration file. Which includes many variable informations for making adaptable dameon. This patch will add new entry "input". It will be used to monitor the input device for case 1. Change-Id: Iaf07a3c7ff5aab077ac244d2f3d8ac39db2145b2
2013-03-05Replace the NULL with SQLITE_TRANSIENT.Sung-jae Park1-1/+1
NULL is defined as SQLITE_STATIC. But I intend to use the SQLITE_TRANSIENT, so I set it correctly. Change-Id: I1d94a8ebdfbd9bb9e773f036b81cc64ac95fa5b5
2013-03-04Add pd_move event is addedSung-jae Park1-1/+1
pd create / lb create & pd,show / lb,show sequence is updated Change-Id: If0e1ec3c8f4434fad5698e0e7cb6557a22667b1f
2013-03-04Replace the package name to data-provider-masterSung-jae Park1-4/+4
remove prefix "org.tizen." Change-Id: Iece033f79fd5d7793a477ad4f7944f60ba16055f
2013-02-27Fix the prevent issueSung-jae Park1-1/+1
Change-Id: I0a59afd51ea50aa69660bd119b49348c9bd6d86a
2013-02-27Add change_period interface, update trigger_updateSung-jae Park1-1/+1
Change-Id: Ieface9222fbb20200c6196fbcf938ad4a44db335
2013-02-25Set the UID/GID from the post script.Sung-jae Park1-6/+18
While installing this package, build system doesn't guarantees the "app" So we have to use the digit instead of its string. Forcely set the UID/GID even if it doesn't exists in the passwd file. FOR TRATS build environment. Change-Id: Ica56257a6da52b2e1c1bfba62700ded593cfc6ab
2013-02-23Update resize event send functionSung-jae Park1-1/+1
Change-Id: Ic32ca986584c64e8db094cf7183e363f22971cb8
2013-02-21Replace the drm_slp with the tbmSung-jae Park1-2/+2
Change-Id: I61564dbc2f3efa5e7196c3d01df553bd3ea44848
2013-02-21Sync with the latest codeSung-jae Park1-2/+2
Change-Id: I3950d362f4eb8d0396c18c41db958f21a4e3f64e
2013-02-17Update the liveinfo(Supporting the pixmap capture)Sung-jae Park1-1/+1
Change-Id: Id2afb9060f278b529f1c94cc4188a96746ac935f
2013-02-16Update the manifest.Sung-jae Park1-1/+1
Add a new attrbiute "mode" for "size" tag. mode="easy" will defines the easy mode livebox. Change-Id: If0850695c6b15dede575971cefe36cd9f7b4ffa4
2013-02-15Update the provider launching code.Sung-jae Park1-1/+1
Waiting its response in CONSTANT time. (default 30 secs) Change-Id: Ie0e8228834c93092c8edd8daffbc58676306ebc0
2013-02-15Update the upgrade featureSung-jae Park1-1/+1
Change-Id: Ibd2ebd56c3a2dcaf36155c9efcfd4b65571f431d
2013-02-14Revise the code.Sung-jae Park1-1/+1
1. Update the liveinfo tool Add more functions. Make easy to use the tool 2. Time compensator is updated. 3. Code is revised by myself. Change-Id: Ib4b64da80727edb394a12e50398ed6f10e97b6e1
2013-02-07handling the return value of replace_stringSung-jae Park1-1/+1
Change-Id: Ia9c8987d76e86d7bbedf52a1f0f333bbf7985776
2013-02-07Optimize the string replacement function.Sung-jae Park1-1/+1
Change-Id: I6352941e972cc05b62018a4b5984b9bc29398d67
2013-02-06Separte gem & pixmap create function.Sung-jae Park1-1/+1
Script updated. (for image, group is changed to optoin) Add the update request interface Change-Id: I9102fabe40b055df41b170e31dc83a858e10a7b1
2013-02-05Update the data provider masterSung-jae Park1-1/+1
Fix the liveinfo bug (Command line parser is updated) Manifest file is updated for rule of daemon type package. Change-Id: I61ce630765c936d6a11dc6094ec3598b5da47d83
2013-02-01Update the liveinfo.Sung-jae Park1-1/+1
Change-Id: I04814f6cd4b8539c2ea3f6a6ab0ed03f139f03ce
2013-02-01Update the liveinfoSung-jae Park1-1/+1
Change-Id: Id3f3685514578cc67f3510c8727f84d6b52a8ca1
2013-02-01Update the debug modeSung-jae Park1-1/+1
Change-Id: Id01802e17e3929473aca8358e4a3bd2534afcb0f
2013-01-31Add exec_label for booting scriptSung-jae Park1-1/+1
Change-Id: Ic12b2e2f08279011b0bdef3b5e3b7d4970bbeccf
2013-01-31Add the touch effectSung-jae Park1-1/+1
Change-Id: Ib91ffbde1f7153ca6d8da59d34a32c202670014b
2013-01-30Add new script handler for updating colorSung-jae Park1-1/+1
Update smack label & domain name to "data-provider-master" Change-Id: I233eb3425e80df1f15b0c1b19c7de9e681c56227
2013-01-27Add new size typeSung-jae Park1-1/+1
For easy home 1x1 = 207x207 3x1 = 645x207 3x3 = 645x645 Change-Id: Ie2af0f0dca6588b6869fbf75486b27994d04d5df
2013-01-27Update liveinfo utility.Sung-jae Park1-3/+4
Working like a common shell. More command should be implemented. such as "rm", "cat" Update spec file Change-Id: Ib5f62b52b0e84b420a0f712805c60d00be604351