From 7e056b67818a2fbff0b9035273ef4f26f3edbcf8 Mon Sep 17 00:00:00 2001 From: Ickhee Woo Date: Wed, 16 Dec 2015 09:35:08 +0900 Subject: [PATCH] fixed guide for notification about calendar/contacts service are not supported on TV profile. Change-Id: Ib57d92b0a2320abd701eb12c3a8fd022bce2215e Signed-off-by: Ickhee Woo --- .../html/native/account/sync_manager_n.htm | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/org.tizen.guides/html/native/account/sync_manager_n.htm b/org.tizen.guides/html/native/account/sync_manager_n.htm index 0355893..13b4a05 100644 --- a/org.tizen.guides/html/native/account/sync_manager_n.htm +++ b/org.tizen.guides/html/native/account/sync_manager_n.htm @@ -62,8 +62,7 @@ Data changes on the device A subscribed callback function is invoked whenever a database change occurs for a registered capability. The data change listener notices the changes by using the Calendar, Contacts, and Media Content APIs. If there are any changes in the corresponding data, the sync manager notices the changes and schedules a sync job. -

Changing data in the Calendar database includes adding, updating, and deleting books, events, and todos. Changing data in the Contacts database includes adding, removing, and modifying contacts.

-

The media content provides notifications for changes in media types, such as image, music, sound, and video.

+

Changing data in the Calendar database includes adding, updating, and deleting books, events, and todos. Changing data in the Contacts database includes adding, removing, and modifying contacts. Data change for the Calendar / Contacts capabilities are supported only on Tizen Mobile. The media content provides notifications for changes in media types, such as image, music, sound, and video.

Network availability @@ -75,7 +74,7 @@ Periodic sync - The periodic sync means that you can schedule a sync job to be performed regularly. You can use this feature with the sync_manager_add_periodic_sync_job() function. You can also use the sync intervals through various enumerators provided through the Sync Manager API. + The periodic sync means that you can schedule a sync job to be performed regularly. You can use this feature with the sync_manager_add_periodic_sync_job() function. You can also use the sync intervals through various enumerators provided through the Sync Manager API.

When using the Sync Manager API, you can set an alarm indirectly. Consequently, the http://tizen.org/privilege/alarm.set privilege is required.

@@ -85,7 +84,7 @@ - + @@ -109,10 +108,10 @@
Table: Sync manager variables
Variable Data type Mandatoryconst char* Yes Capability for a data change sync job. -

A data change sync job can provide a notification whenever a corresponding data change occurs. If the sync_manager_add_data_change_sync_job() function is used with a capability, it is operated for the related capability only. In the case of using the calendar or contact capability, the respective http://tizen.org/privilege/calendar.read or http://tizen.org/privilege/contact.read privilege is required.

+

A data change sync job can provide a notification whenever a corresponding data change occurs. If the sync_manager_add_data_change_sync_job() function is used with a capability, it is operated for the related capability only. In the case of using the calendar or contact capability, the respective http://tizen.org/privilege/calendar.read or http://tizen.org/privilege/contact.read privilege is required. Data change for the Calendar / Contacts capabilities are supported only on Tizen Mobile.

The following capabilities are available:

-#define SYNC_SUPPORTS_CAPABILITY_CALENDAR "http://tizen.org/sync/capability/calendar" 
+#define SYNC_SUPPORTS_CAPABILITY_CALENDAR "http://tizen.org/sync/capability/calendar"
 #define SYNC_SUPPORTS_CAPABILITY_CONTACT "http://tizen.org/sync/capability/contact"
 #define SYNC_SUPPORTS_CAPABILITY_IMAGE "http://tizen.org/sync/capability/image"
 #define SYNC_SUPPORTS_CAPABILITY_MUSIC "http://tizen.org/sync/capability/music"
@@ -162,8 +161,8 @@
        
- - + +

Sync Adapter

@@ -186,8 +185,8 @@ - - + + -- 2.7.4