change service app descriptions.
authorDaehyeon Jung <darrenh.jung@samsung.com>
Tue, 18 Aug 2015 07:00:20 +0000 (16:00 +0900)
committerDaehyeon Jung <darrenh.jung@samsung.com>
Tue, 18 Aug 2015 09:12:46 +0000 (18:12 +0900)
Change-Id: I957214dd151c6f9b96d21f3fb9e84877b00b2b65
Signed-off-by: Daehyeon Jung <darrenh.jung@samsung.com>
org.tizen.gettingstarted/html/native/process/setting_properties_n.htm
org.tizen.guides/html/native/app/application_n.htm
org.tizen.guides/html/native/app/service_app_n.htm
org.tizen.tutorials/html/native/app_framework/application_tutorial_n.htm

index ddbb33c..d97b517 100644 (file)
      <th class="note">Note</th> 
     </tr> 
     <tr> 
-     <td class="note">The auto-restart and on-boot attributes are not supported in Tizen wearable devices. Since Tizen 2.4, both attributes are not supported in all Tizen devices.</td> 
+     <td class="note">The auto-restart and on-boot attributes are not supported in Tizen wearable devices. Since Tizen 2.4, both attributes are not supported in all Tizen devices. Hence, the auto-restart or on-boot attributes used on the lower than 2.4 API version package shall ignored on the devices with Tizen platform version 2.4 or higher.</td>
     </tr> 
    </tbody> 
   </table>     
index d18193e..2887bde 100644 (file)
      <td><span style="font-family: Courier New,Courier,monospace">APP_EVENT_REGION_FORMAT_CHANGED</span></td> \r
      <td>Event type for the callback function that is responsible for refreshing the display into the new time zone.</td> \r
     </tr> \r
+    <tr> \r
+     <td><span style="font-family: Courier New,Courier,monospace">APP_EVENT_SUSPENDED_STATE_CHANGED</span></td> \r
+     <td>Event type for the callback function that is responsible for taking necessary actions before enter to the suspended state or after exit from the state. (Since Tizen 2.4)</td> \r
+    </tr> \r
    </tbody> \r
   </table>  \r
   \r
@@ -232,6 +236,18 @@ int main(int argc, char *argv[])
 \r
 <p>You can take advantage of the Tizen <a href="#platform_appcontrol">base application functionalities</a> through the app control feature. You can also <a href="#export_appcontrol">export your application functionality</a> to allow other applications to launch your application.</p>\r
 \r
+<table class="note"> \r
+<tbody> \r
+    <tr> \r
+        <th class="note">Note</th> \r
+    </tr> \r
+    <tr> \r
+        <td class="note">Since Tizen 2.4, application controls of service applications over out of packages are not supported; hence the service application is only allowed to be launched explicitly by the application in the same package.</td> \r
+    </tr> \r
+</tbody> \r
+</table>\r
+\r
+\r
 <h4 id="explicit" name="explicit">Explicit Launch</h4>\r
 \r
 <p>When you request an explicit launch:</p>\r
@@ -329,6 +345,17 @@ else
 app_control_destroy(app_control);\r
 </pre>\r
 \r
+<table class="note"> \r
+<tbody> \r
+    <tr> \r
+        <th class="note">Note</th> \r
+    </tr> \r
+    <tr> \r
+        <td class="note">Since Tizen 2.4, service applications are only allowed to be launched explicitly. Any service applications are excluded from matches of implicit launch requests.</td>\r
+    </tr> \r
+</tbody> \r
+</table>\r
+\r
 <h4 id="results" name="results">Getting the App Control Results</h4>\r
 <p>The app control result from the requested application is delivered to the caller application in the <span style="font-family: Courier New,Courier,monospace">app_control</span> handle with extra data. For some cases, the App control API provides pre-defined extra data keys.</p>\r
 <p>If you cannot find a proper key, you can define your own key. However, the customized key must be shared between the caller and callee applications.</p>\r
index aaa60db..d7aad3e 100644 (file)
      <th class="note">Note</th> \r
     </tr> \r
     <tr> \r
-     <td class="note">This attribute is not supported in Tizen wearable devices. Since Tizen 2.4, this attribute is not supported in all Tizen devices.</td> \r
+     <td class="note">This attribute is not supported in Tizen wearable devices. Since Tizen 2.4, this attribute is not supported in all Tizen devices. Hence, the auto-restart attribute used on the lower than 2.4 API version package shall ignored on the devices with Tizen platform version 2.4 or higher.</td> \r
     </tr> \r
    </tbody> \r
   </table>  </li>\r
      <th class="note">Note</th> \r
     </tr> \r
     <tr> \r
-     <td class="note">This attribute is not supported in Tizen wearable devices. Since Tizen 2.4, this attribute is not supported in all Tizen devices.</td> \r
+     <td class="note">This attribute is not supported in Tizen wearable devices. Since Tizen 2.4, this attribute is not supported in all Tizen devices. Hence, the on-boot attribute used on the lower than 2.4 API version package shall ignored on the devices with Tizen platform version 2.4 or higher.</td> \r
     </tr> \r
    </tbody> \r
   </table>  </li></ul>\r
@@ -254,4 +254,4 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga
 </script>\r
 \r
 </body>\r
-</html>        
\ No newline at end of file
+</html>        \r
index 450019f..fc6eef2 100644 (file)
@@ -359,7 +359,16 @@ ret = app_control_send_launch_request(app, NULL, NULL);
 if (ret != APP_CONTROL_ERROR_NONE)
 &nbsp;&nbsp;&nbsp;dlog_print(DLOG_ERROR, LOG_TAG, &quot;app_control_send_launch_request() is failed. err = %d&quot;, ret);
 </pre>
+ <table class="note">
+<tbody>
+    <tr>
+        <th class="note">Note</th>
+    </tr>
+    <tr>
+        <td class="note">Since Tizen 2.4, service applications are only allowed to be launched explicitly and the caller must be an application with the same package. Otherwise, the app_control will return error.</td>
+    </tr>
+</tbody>
+</table>
 </li>
 
 <li>