[LB]: General quality fixes for Guides 04/94404/2
authorEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Fri, 28 Oct 2016 14:37:15 +0000 (17:37 +0300)
committerEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Wed, 2 Nov 2016 07:57:51 +0000 (09:57 +0200)
- Small consistency checks and minor changes

PS2: [LB] Ambient mode pixel size fixed from 20% to 15%

Change-Id: I8fe0d5d8fab10393aba45bf8f65d4e2837f4e4b2

org.tizen.guides/html/native/app_management/app_controls_n.htm
org.tizen.guides/html/native/internationalization/i18n_n.htm
org.tizen.guides/html/native/media/media_key_n.htm
org.tizen.guides/html/web/sensors/task_sensorball_w.htm
org.tizen.guides/html/web/ui/tau/tau_porting_w.htm
org.tizen.guides/html/web/ui/tau/tau_w.htm
org.tizen.guides/html/web/w3c/media/task_selfcamera_w.htm

index 559ecb7..381447a 100644 (file)
@@ -220,7 +220,7 @@ app_control_destroy(app_control);
         <th class="note">Note</th>
     </tr>
     <tr>
-        <td class="note">Be careful when using the explicit launch because the target application does not exist in the device, and you need to handle the <span style="font-family: Courier New,Courier,monospace">APP_CONTROL_ERROR_NOT_FOUND</span> error. If you want to launch an application that supports a certain operation, use implicit launch.</td>
+        <td class="note">Be careful when using the explicit launch, because if the target application does not exist in the device, you need to handle the <span style="font-family: Courier New,Courier,monospace">APP_CONTROL_ERROR_NOT_FOUND</span> error. If you want to launch any application that supports a certain operation, use the implicit launch.</td>
     </tr>
 </tbody>
 </table>
index 2948959..04a2d8c 100644 (file)
                        <li><a href="#dates">Managing Dates and Calendar</a></li>
                        <li><a href="#locales">Managing Locales</a></li>
                        <li><a href="#numbers">Managing Numbers</a></li>
-                       <li><a href="#ubrk">Managing Iteration Using Ubrk</a></li>
+                       <li><a href="#manage_ubrk">Managing Iteration Using Ubrk</a></li>
                        <li><a href="#uenum">Managing Enumerations</a></li>
                        <li><a href="#tmz">Managing Time Zones</a></li>
-                       <li><a href="#uset">Managing Sets</a></li>                      
+                       <li><a href="#manage_uset">Managing Sets</a></li>                       
                </ul>
                <p class="toc-title">Related Info</p>
                <ul class="toc">
@@ -69,7 +69,7 @@
 <p>Before you start, remember to <a href="#prerequisites">prepare your application to use the i18n functionality</a>.</p>
 
 <h2 id="ubrk" name="ubrk">Ubrk</h2>
-<p>The Ubrk API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__BASE__UTILS__I18N__UBRK__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__BASE__UTILS__I18N__UBRK__MODULE.html">wearable</a> applications) is used to <a href="#ubrk">find the location of boundaries in text</a>. The <span style="font-family: Courier New,Courier,monospace">i18n_ubreak_iterator_h</span> handle maintains a current position and scans over the text returning the index of characters where the boundaries occur.</p>
+<p>The Ubrk API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__BASE__UTILS__I18N__UBRK__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__BASE__UTILS__I18N__UBRK__MODULE.html">wearable</a> applications) is used to <a href="#manage_ubrk">find the location of boundaries in text</a>. The <span style="font-family: Courier New,Courier,monospace">i18n_ubreak_iterator_h</span> handle maintains a current position and scans over the text returning the index of characters where the boundaries occur.</p>
 <p>The following boundary analyzing methods are available:</p>
 <ul>
        <li>Line boundary analysis determines where a text string can be broken when line-wrapping. The mechanism correctly handles punctuation and hyphenated words.</li>
 <p>The Usearch API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__BASE__UTILS__I18N__USEARCH__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__BASE__UTILS__I18N__USEARCH__MODULE.html">wearable</a> applications) provides language-sensitive text searching based on the comparison rules defined in a Ucollator data struct. This ensures that language eccentricity can be handled. For example, for the German collator, characters ß and SS are matched if case is chosen to be ignored. That is why it can be important to pass a locale when creating the usearch with the <span style="font-family: Courier New,Courier,monospace">i18n_usearch_create_new()</span> function.</p>
 
 <h2 id="uset" name="uset">Uset</h2>
-<p>Uset is a mutable <a href="#uset">set of Unicode characters and multicharacter strings that you can manage</a>. The sets represent character classes used in regular expressions. A character specifies a subset of the Unicode code points. The legal code points are U+0000 to U+10FFFF, inclusive.</p>
+<p>Uset is a mutable <a href="#manage_uset">set of Unicode characters and multicharacter strings that you can manage</a>. The sets represent character classes used in regular expressions. A character specifies a subset of the Unicode code points. The legal code points are U+0000 to U+10FFFF, inclusive.</p>
 <p>The set supports 2 functions:</p>
 <ul><li>The operand function allows the caller to modify the value of the set. The operand function works similarly to the boolean logic: a boolean OR is implemented by add, a boolean AND is implemented by retain, a boolean XOR is implemented by a complement taking an argument, and a boolean NOT is implemented by a complement with no argument. In terms of traditional set theory function names, add is a union, retain is an intersection, remove is an asymmetric difference, and complement with no argument is a set complement with respect to the superset range <span style="font-family: Courier New,Courier,monospace">MIN_VALUE-MAX_VALUE</span>.</li>
 <li>The <span style="font-family: Courier New,Courier,monospace">i18n_uset_apply_pattern()</span> or <span style="font-family: Courier New,Courier,monospace">i18n_uset_to_pattern()</span> function. Unlike the functions that add characters or categories, and control the logic of the set, the <span style="font-family: Courier New,Courier,monospace">i18n_uset_apply_pattern()</span> function sets all attributes of a set at once, based on a string pattern.</li></ul>
                        <p>Manage locales, which represent a specific geographical, political, or cultural region.</p></li>
                   <li><a href="#numbers">Managing Numbers</a>
                        <p>Format and parse numbers for any locale.</p></li>
-               <li><a href="#ubrk">Managing Iteration Using Ubrk</a>
+               <li><a href="#manage_ubrk">Managing Iteration Using Ubrk</a>
             <p>Iterate through strings using Ubrk.</p></li>
                        <li><a href="#uenum">Managing Enumerations</a>
             <p>Create, acquire, and use enumerations.</p></li>
                        <li><a href="#tmz">Managing Time Zones</a>
             <p>Get the time zone name, ID, DST savings, raw offset, and region code.</p></li>
-                       <li><a href="#uset">Managing Sets</a>
+                       <li><a href="#manage_uset">Managing Sets</a>
                        <p>Manage sets of characters and strings.</p></li>
        </ul>
 
@@ -1037,7 +1037,7 @@ i18n_unumber_destroy(num_format);
 
 </ol>
 
-<h2 id="ubrk" name="ubrk">Managing Iteration Using Ubrk</h2>
+<h2 id="manage_ubrk" name="manage_ubrk">Managing Iteration Using Ubrk</h2>
 
 <p>To manipulate or iterate through strings, you can use the Ubrk library. It helps you to treat strings as a set of characters, words, or sentences:</p>
 <ol>
@@ -1272,7 +1272,7 @@ i18n_timezone_get_region(timezone_id, region, &amp;region_len, BUF_SIZE);
 i18n_timezone_destroy(tmz);
 </pre></li></ol>       
        
-<h2 id="uset" name="uset">Managing Sets</h2>
+<h2 id="manage_uset" name="manage_uset">Managing Sets</h2>
 <p>You can create sets, which contain characters and strings. You can iterate through the set elements and carry out various operations on the set.</p>
 <p>To manage sets:</p>
 <ol>
index b7775e6..5d5dce1 100644 (file)
@@ -114,6 +114,7 @@ event_cb(media_key_e key, media_key_event_e status, void* user_data)
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dlog_print(DLOG_INFO, LOG_TAG, &quot;Key: Unknown&quot;);
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;
 &nbsp;&nbsp;&nbsp;&nbsp;}
+
 &nbsp;&nbsp;&nbsp;&nbsp;switch (status) {
 &nbsp;&nbsp;&nbsp;&nbsp;case MEDIA_KEY_STATUS_PRESSED:
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dlog_print(DLOG_INFO, LOG_TAG, &quot;Event: MEDIA_KEY_STATUS_PRESSED&quot;);
index 0e2a2dd..9f7df53 100644 (file)
@@ -43,7 +43,7 @@
 <div id="container"><div id="contents"><div class="content">
 
   <h1>Task: Sensor Ball</h1> 
-  <p>This task, based on the SensorBall sample delivered with the Tizen Studio, demonstrates how you can use the <a href="../../../../org.tizen.web.apireference/html/device_api/mobile/tizen/sensor.html">Sensor</a> API to read and process gyro sensor data. For more information on the sample functionality and creating the sample with the full source code, see the <a href="https://developer.tizen.org/development/sample/web/Sensor/Sensor_Ball" target="blank">Sensor Ball</a>.</p> 
+  <p>This task, based on the SensorBall sample delivered with the Tizen Studio, demonstrates how you can use the <a href="../../../../org.tizen.web.apireference/html/device_api/mobile/tizen/sensor.html">Sensor</a> API to read and process gyro sensor data. For more information on the sample functionality and creating the sample with the full source code, see <a href="https://developer.tizen.org/development/sample/web/Sensor/Sensor_Ball" target="blank">Sensor Ball</a>.</p> 
   <p>This task consists of the following parts:</p> 
   <ul> 
    <li><a href="#layout">Defining the Application Layout</a> defines how to create the application screens.</li>
index 49fcd7a..93dc501 100644 (file)
@@ -45,6 +45,8 @@
 
 <p>This guide describes the changes required to migrate a TAU element from 2.3 to 2.4.</p>
 
+ <p>This feature is supported in mobile applications only.</p>
+
 <p>As the Tizen version number changes, TAU has been updated with new features. When migrating from 2.3 to 2.4, consider the following issues:</p>
 <ul>
 <li>Selectors for defining the UI components</li>
index df2f5aa..3dd6efe 100644 (file)
 <li><a href="animation_w.htm">Animation</a>
 <p>Enables you to create animations without other animation libraries.</p></li>
 
-<li><a href="tau_porting_w.htm">2.4 Porting Guide</a>
+<li><a href="tau_porting_w.htm">2.4 Porting Guide</a> <strong>in mobile applications only</strong>
 <p>Enables you to migrate a TAU element from Tizen version 2.3 to 2.4.</p></li>
 </ul>
 
index c548667..22bb17a 100644 (file)
@@ -44,7 +44,7 @@
 <div id="container"><div id="contents"><div class="content">
 
   <h1>Task: Self Camera</h1>
-  <p>This task, based on the SelfCamera sample delivered with the Tizen Studio, demonstrates how you can use the <a href="../../../../../org.tizen.web.apireference/html/w3c_api/w3c_api_m.html#getusermedia">getUserMedia</a> API to access and display the camera video stream, and capture a single photo. For more information on the sample functionality and creating the sample with the full source code, see the <a href="https://developer.tizen.org/development/sample/web/Multimedia/Self_Camera" target="blank">Self Camera</a>.</p>
+  <p>This task, based on the SelfCamera sample delivered with the Tizen Studio, demonstrates how you can use the <a href="../../../../../org.tizen.web.apireference/html/w3c_api/w3c_api_m.html#getusermedia">getUserMedia</a> API to access and display the camera video stream, and capture a single photo. For more information on the sample functionality and creating the sample with the full source code, see <a href="https://developer.tizen.org/development/sample/web/Multimedia/Self_Camera" target="blank">Self Camera</a>.</p>
   <p>This task consists of the following parts:</p>
   <ul>
    <li><a href="#layout">Defining the Application Layout</a> defines how to create the application screens. </li>