remove wearable related link (event-system is not supported in tizen 2.3.1)
authorjongmyeongko <jongmyeong.ko@samsung.com>
Thu, 10 Dec 2015 08:20:38 +0000 (17:20 +0900)
committerjongmyeongko <jongmyeong.ko@samsung.com>
Thu, 10 Dec 2015 08:20:38 +0000 (17:20 +0900)
Change-Id: I87749f8572f2a0b99c9f062a6b308fd6d87cd9ff
Signed-off-by: jongmyeongko <jongmyeong.ko@samsung.com>
org.tizen.guides/html/native/app/event_n.htm
org.tizen.guides/html/native/migration_guide_n.htm
org.tizen.tutorials/html/native/app_framework/event_tutorial_n.htm

index b849532..8d2bcb4 100644 (file)
@@ -16,7 +16,7 @@
  
  <div id="toc-navigation">
        <div id="profile">
-               <p><img alt="Mobile native" src="../../images/mobile_s_n.png"/> <img alt="Wearable native" src="../../images/wearable_s_n.png"/></p>
+               <p><img alt="Mobile native" src="../../images/mobile_s_n.png"/></p>
        </div>
 
        <div id="toc_border"><div id="toc">
@@ -24,7 +24,6 @@
                <ul class="toc">
                        <li><a href="../../../../org.tizen.tutorials/html/native/app_framework/event_tutorial_n.htm">Event Tutorial</a></li>
                        <li><a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__EVENT__MODULE.html">Event API for Mobile Native</a></li>
-                       <li><a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__EVENT__MODULE.html">Event API for Wearable Native</a></li>
 
                        </ul>
        </div></div>
@@ -535,4 +534,4 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga
 </script>
 
 </body>
-</html>        
\ No newline at end of file
+</html>        
index 6408176..3417888 100644 (file)
 
 <h2 id="event" name="event">Tizen Application Event System</h2>
 <p>Tizen 2.4 introduces new Tizen Application Event APIs for subscribing system events and publishing and subscribing application events to other applications.</p>
-<p>Using the Tizen Application Event APIs, you can register your service application to be launched when a specified event is published. You can specify the event name through the <span style="font-family: Courier New,Courier,monospace;">&lt;app-control&gt;</span> element in the application manifest file. This launch-on-event allows your service application to only run after receiving an event from the platform or other application. Note that UI applications cannot be launched using the launch-on-event mechanism. For more information, see the Event API (in <a href="../../../org.tizen.native.mobile.apireference/group__CAPI__EVENT__MODULE.html">mobile</a> and <a href="../../../org.tizen.native.wearable.apireference/group__CAPI__EVENT__MODULE.html">wearable</a> applications).</p>
+<p>Using the Tizen Application Event APIs, you can register your service application to be launched when a specified event is published. You can specify the event name through the <span style="font-family: Courier New,Courier,monospace;">&lt;app-control&gt;</span> element in the application manifest file. This launch-on-event allows your service application to only run after receiving an event from the platform or other application. Note that UI applications cannot be launched using the launch-on-event mechanism. For more information, see the Event API (in <a href="../../../org.tizen.native.mobile.apireference/group__CAPI__EVENT__MODULE.html">mobile</a> application).</p>
 
 <h2 id="group_launch" name="group_launch">Application Group Launching Management</h2>
 <p>When you launch an application using the <span style="font-family: Courier New,Courier,monospace;">app_control_send_launch_request()</span> function, you can treat the launched application as a sub-view of your application. For example, when your application launches the message composer application to send a message, you can treat the message composer as a member of your application group. Tizen 2.4 introduces the application group feature to supports this requirement.</p>
@@ -142,4 +142,4 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga
 </script>
 
 </body>
-</html>
\ No newline at end of file
+</html>
index 4c90fa0..1cc4560 100644 (file)
@@ -18,7 +18,7 @@
 
 <div id="toc-navigation">
        <div id="profile">
-               <p><img alt="Mobile native" src="../../images/mobile_s_n.png"/> <img alt="Wearable native" src="../../images/wearable_s_n.png"/></p>
+               <p><img alt="Mobile native" src="../../images/mobile_s_n.png"/></p>
        </div>
        <div id="toc_border"><div id="toc">
                <p class="toc-title">Content</p>
@@ -31,7 +31,6 @@
                <ul class="toc">
                        <li><a href="../../../../org.tizen.guides/html/native/app/event_n.htm">Event Guide</a></li>
                        <li><a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__EVENT__MODULE.html">Event API for Mobile Native</a></li>
-                       <li><a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__EVENT__MODULE.html">Event API for Wearable Native</a></li>
                </ul>
        </div></div>
 </div> 
@@ -60,7 +59,7 @@
 
 <p>To subscribe to a predefined system event or user-defined event:</p>
 <ol>
-<li>To use the functions and data types of the Event API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__EVENT__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__EVENT__MODULE.html">wearable</a> applications), include the <span style="font-family: Courier New,Courier,monospace">&lt;app_event.h&gt;</span> header file in your application:
+<li>To use the functions and data types of the Event API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__EVENT__MODULE.html">mobile</a> application), include the <span style="font-family: Courier New,Courier,monospace">&lt;app_event.h&gt;</span> header file in your application:
 <pre class="prettyprint">
 #include &lt;app_event.h&gt; 
 </pre> 
@@ -129,7 +128,7 @@ if (ret != EVENT_ERROR_NONE)
 <p>To publish an event to all listeners:</p>
 
 <ol>
-<li>To use the functions and data types of the Event API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__EVENT__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__EVENT__MODULE.html">wearable</a> applications), include the <span style="font-family: Courier New,Courier,monospace">&lt;app_event.h&gt;</span> header file in your application:
+<li>To use the functions and data types of the Event API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__EVENT__MODULE.html">mobile</a> application), include the <span style="font-family: Courier New,Courier,monospace">&lt;app_event.h&gt;</span> header file in your application:
 <pre class="prettyprint">
 #include &lt;app_event.h&gt; 
 </pre>