Make links to mobile API references for notification and shortcut
authorKyuho Jo <kyuho.jo@samsung.com>
Tue, 29 Dec 2015 05:45:46 +0000 (14:45 +0900)
committerKyuho Jo <kyuho.jo@samsung.com>
Tue, 29 Dec 2015 05:45:46 +0000 (14:45 +0900)
Change-Id: I08b0d151145f5d923abc8f84efd5c4414bc4a7d1
Signed-off-by: Kyuho Jo <kyuho.jo@samsung.com>
org.tizen.tutorials/html/native/app_framework/notification_tutorial_n.htm
org.tizen.tutorials/html/native/app_framework/shortcut_tutorial_n.htm

index 2bc0bed..0f3c5ab 100644 (file)
@@ -93,7 +93,7 @@
 
                        
 <p>To initialize notifications:</p>
-<ol><li>To use the functions and data types of the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html">Notification</a> API, include the <span style="font-family: Courier New,Courier,monospace">&lt;notification.h&gt;</span> header file in your application:
+<ol><li>To use the functions and data types of the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html">Notification API</a>, include the <span style="font-family: Courier New,Courier,monospace">&lt;notification.h&gt;</span> header file in your application:
 <pre class="prettyprint">
 #include &lt;notification.h&gt;
 </pre>
@@ -113,7 +113,7 @@ free(shared_path);
  <h2 id="create" name="create">Creating a Notification</h2>
 
 <p>Initialize a notification handle by calling the <span style="font-family: Courier New,Courier,monospace">notification_create()</span> function.</p>
-<p>The parameter is the notification type, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga0809cf2728f6e60d54ba8ddf9aa7db20">_notification_type</a> enumeration.</p>
+<p>The parameter is the notification type, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga0809cf2728f6e60d54ba8ddf9115aa7db20"><span style="font -family: Courier New,Courier,monospace">_notification_type</span></a> enumeration.</p>
 <pre class="prettyprint">
 notification = notification_create(NOTIFICATION_TYPE_ONGOING);
 if (notification != NULL)
@@ -132,7 +132,7 @@ if (notification != NULL)
 <li id="text">Notification text:
 
 <p>To set the text (title and content string) to display in the notification view, use the <span style="font-family: Courier New,Courier,monospace">notification_set_text()</span> function.</p>
-<p>The second parameter defines the notification type, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga1b932c18e0430b4cd3a09da98d1fb41b">_notification_text_type</a> enumeration.</p>
+<p>The second parameter defines the notification type, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga1b932c18e0430b4cd3a09da98d1fb41b"><span style="font-family: Courier New,Courier,monospace">_notification_text_type</span></a> enumeration.</p>
 <pre class="prettyprint">
 int ret =0;
 ret = notification_set_text(notification, NOTIFICATION_TEXT_TYPE_TITLE, &quot;text&quot;,
@@ -161,7 +161,7 @@ if (ret != NOTIFICATION_ERROR_NONE)
 <li id="image">Notification image:
 
 <p>To set the image to display in the notification view, use the <span style="font-family: Courier New,Courier,monospace">notification_set_image()</span> function.</p>
-<p>The second parameter defines the notification image type, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#gaa285a3f74abc58d1cb0b78f0bfd09ed5">_notification_image_type</a> enumeration.</p>
+<p>The second parameter defines the notification image type, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#gaa285a3f74abc58d1cb0b78f0bfd09ed5"><span style="font-family: Courier New,Courier,monospace">_notification_image_type</span></a> enumeration.</p>
 <pre class="prettyprint">
 ret = notification_set_image(notification, NOTIFICATION_IMAGE_TYPE_ICON, image_path);
 if (ret != NOTIFICATION_ERROR_NONE)
@@ -174,7 +174,7 @@ if (ret != NOTIFICATION_ERROR_NONE)
 <li id="display">Notification display options:
 
 <p>To set how applications display the notification, use the <span style="font-family: Courier New,Courier,monospace">notification_set_display_applist()</span> function.</p>
-<p>The second parameter defines the notification display option, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#gaf7944456661e023a3bac1f430eb680a2">_notification_display_applist</a> enumeration. You can set multiple options with the &quot;|&quot; pipe operation.</p>
+<p>The second parameter defines the notification display option, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#gaf7944456661e023a3bac1f430eb680a2"><span style="font-family: Courier New,Courier,monospace">_notification_display_applist</span></a> enumeration. You can set multiple options with the &quot;|&quot; pipe operation.</p>
 <pre class="prettyprint">
 ret = notification_set_display_applist(notification,
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY | NOTIFICATION_DISPLAY_APP_TICKER);
@@ -190,7 +190,7 @@ if (ret != NOTIFICATION_ERROR_NONE)
 <p>To set the LED options for a notification, use the <span style="font-family: Courier New,Courier,monospace">notification_set_led()</span> and <span style="font-family: Courier New,Courier,monospace">notification_set_led_time_period()</span> functions:</p>
 <ul>
 <li>
-<p>The <span style="font-family: Courier New,Courier,monospace">notification_set_led()</span> function sets the LED operation. The second parameter defines the LED notification, whose values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#gaa96099d9bff211107f6b200eeb92e1d9">_notification_led_op</a> enumeration.</p>
+<p>The <span style="font-family: Courier New,Courier,monospace">notification_set_led()</span> function sets the LED operation. The second parameter defines the LED notification, whose values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#gaa96099d9bff211107f6b200eeb92e1d9"><span style="font-family: Courier New,Courier,monospace">_notification_led_op</span></a> enumeration.</p>
 </li>
 <li>
 
@@ -214,7 +214,7 @@ if (ret != NOTIFICATION_ERROR_NONE)
 <li id="prop">Notification properties:
 
 <p>To set a notification property, use the <span style="font-family: Courier New,Courier,monospace">notification_set_property()</span> function.</p>
-<p>The second parameter defines the notification property, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga70f1e4c6f3d36e09d0a9bdff7d6807c3">_notification_property</a> enumeration. You can set multiple properties with the &quot;|&quot; pipe operation.</p>
+<p>The second parameter defines the notification property, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga70f1e4c6f3d36e09d0a9bdff7d6807c3"><span style="font-family: Courier New,Courier,monospace">_notification_property</span></a> enumeration. You can set multiple properties with the &quot;|&quot; pipe operation.</p>
 <pre class="prettyprint">
 ret = notification_set_property(notification, NOTIFICATION_PROP_DISABLE_APP_LAUNCH);
 if (ret != NOTIFICATION_ERROR_NONE)
@@ -228,10 +228,10 @@ if (ret != NOTIFICATION_ERROR_NONE)
 <p>To add a button on the active notification, use the <span style="font-family: Courier New,Courier,monospace">notification_add_button()</span> and <span style="font-family: Courier New,Courier,monospace">notification_set_event_handler()</span> functions:</p>
 <ul>
 <li>
-<p>The <span style="font-family: Courier New,Courier,monospace">notification_add_button()</span> adds the button. The second parameter defines the button index, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga2b8eaa47c666ec055def59c32eab419b">_notification_button_index</a> enumeration.</p>
+<p>The <span style="font-family: Courier New,Courier,monospace">notification_add_button()</span> adds the button. The second parameter defines the button index, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga2b8eaa47c666ec055def59c32eab419b"><span style="font-family: Courier New,Courier,monospace">_notification_button_index</span></a> enumeration.</p>
 </li>
 <li>
-<p>The <span style="font-family: Courier New,Courier,monospace">notification_set_event_handler()</span> function defines the application control that launches the application at the button click. The third parameter defines the app control handle, whose possible values are listed in the <a href="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga38d5cdc16c56dbe88d821995f82b0799">_notification_event_type</a> enumeration.</p>
+<p>The <span style="font-family: Courier New,Courier,monospace">notification_set_event_handler()</span> function defines the application control that launches the application at the button click. The third parameter defines the app control handle, whose possible values are listed in the <a href ="../../../../org.tizen.native.mobile.apireference/group__NOTIFICATION__MODULE.html#ga38d5cdc16c56dbe88d821995f82b0799"><span style="font-family: Courier New,Courier,monospace">_notification_event_type</span></a> enumeration.</p>
 
 <pre class="prettyprint">
 noti_err = notification_add_button(noti, NOTIFICATION_BUTTON_1);
index 3370fd1..9f18f44 100644 (file)
@@ -57,7 +57,7 @@
 
 <ol>
 
-<li><p>To use the functions and data types of the <a href="../../../../org.tizen.native.mobile.apireference/group__SHORTCUT__MODULE.html">Shortcut</a> API, include the <span style="font-family: Courier New,Courier,monospace">&lt;shortcut_manager.h&gt;</span> header file in your application:</p>
+<li><p>To use the functions and data types of the <a href="../../../../org.tizen.native.mobile.apireference/group__SHORTCUT__MODULE.html">Shortcut API</a>, include the <span style="font-family: Courier New,Courier,monospace">&lt;shortcut_manager.h&gt;</span> header file in your application:</p>
 <pre class="prettyprint">
 #include &lt;shortcut_manager.h&gt;
 </pre>