From 2cc953bea37f79a960e66223efcc96f9c67de8bd Mon Sep 17 00:00:00 2001 From: Editor Lionbridge Date: Wed, 16 Aug 2017 10:31:13 +0300 Subject: [PATCH] Fix location references This is a manual cherry pick from change #144165 in the tizen_3.0 branch. PS2: Added one more change missed in the cherrypick. PS3: Rebase PS4: Rebase PS5: Added a missed cherrypick. Change-Id: I0c75fb669fb305bdfc605c61f78241b8bdd6bd98 --- org.tizen.guides/html/native/app_management/app_icons_n.htm | 2 +- .../html/native/app_management/applications_n.htm | 2 +- org.tizen.guides/html/native/connectivity/web_view_n.htm | 2 +- org.tizen.guides/html/native/graphics/assembly_n.htm | 2 +- org.tizen.guides/html/native/ui/dali/actors_n.htm | 2 +- org.tizen.guides/html/native/ui/dali/event_handling_n.htm | 2 +- org.tizen.guides/html/native/ui/dali/styling_n.htm | 2 +- org.tizen.guides/html/native/ui/dali/touchdata_n.htm | 2 +- .../html/native/ui/efl/component_background_mn.htm | 2 +- .../html/native/ui/efl/component_background_wn.htm | 2 +- .../html/native/ui/efl/component_progressbar_mn.htm | 2 +- org.tizen.guides/html/native/ui/efl/component_win_mn.htm | 2 +- org.tizen.guides/html/native/ui/efl/component_win_wn.htm | 2 +- .../html/native/ui/efl/container_naviframe_n.htm | 4 ++-- org.tizen.guides/html/native/ui/efl/getting_started_n.htm | 4 ++-- org.tizen.guides/html/native/ui/efl/introduction_n.htm | 2 +- org.tizen.guides/html/native/ui/efl/learn_edc_images_n.htm | 4 ++-- org.tizen.guides/html/native/ui/efl/learn_edc_part_n.htm | 12 ++++++------ .../html/native/ui/efl/learn_edc_positioning_parts_n.htm | 4 ++-- org.tizen.guides/html/native/ui/efl/scalability_n.htm | 2 +- org.tizen.guides/html/native/ui/efl/ui_layouts_n.htm | 2 +- org.tizen.guides/html/web/app_management/app_icons_w.htm | 2 +- org.tizen.guides/html/web/w3c/security/iframe_w.htm | 4 ++-- org.tizen.guides/html/web/w3c/ui/animation_w.htm | 2 +- org.tizen.guides/html/web/w3c/ui/multi_mw.htm | 2 +- org.tizen.studio/html/common_tools/da_ui_hierarchy_n.htm | 8 ++++---- org.tizen.studio/html/native_tools/component_designer_n.htm | 4 ++-- org.tizen.studio/html/native_tools/edc_editor_n.htm | 2 +- .../html/native_tools/project_explorer_view_n.htm | 4 ++-- org.tizen.studio/html/native_tools/storyboard_n.htm | 4 ++-- org.tizen.studio/html/native_tools/ui_builder_n.htm | 2 +- org.tizen.studio/html/web_tools/IDE_preferences_w.htm | 2 +- org.tizen.studio/html/web_tools/project_explorer_view_w.htm | 4 ++-- org.tizen.studio/html/web_tools/web_simulator_features_w.htm | 2 +- org.tizen.training/html/cover_page.htm | 2 +- .../html/native/app_model/application_model_n.htm | 2 +- .../html/native/feature/app_graphics_animation_n.htm | 2 +- .../html/native/feature/app_sensor_accelerator_n.htm | 2 +- .../html/native/feature/app_sensor_proximity_n.htm | 2 +- .../html/native/feature/ui_builder_overview_mn.htm | 6 +++--- 40 files changed, 59 insertions(+), 59 deletions(-) diff --git a/org.tizen.guides/html/native/app_management/app_icons_n.htm b/org.tizen.guides/html/native/app_management/app_icons_n.htm index 71c8f2a..235f8b2 100644 --- a/org.tizen.guides/html/native/app_management/app_icons_n.htm +++ b/org.tizen.guides/html/native/app_management/app_icons_n.htm @@ -148,7 +148,7 @@ if (ret != BADGE_ERROR_NONE)

To manage the badge:

Since Tizen 2.4, an application in the background goes into a suspended state. In the suspended state, the application process is executed with limited CPU resources. In other words, the platform does not allow the running of the background applications, except for some exceptional applications (such as Media and Download) that necessarily work in the background. In this case, the application can designate their background category as an allowed category to avoid going into the suspended state.

diff --git a/org.tizen.guides/html/native/connectivity/web_view_n.htm b/org.tizen.guides/html/native/connectivity/web_view_n.htm index 52ea73b..ce013c8 100644 --- a/org.tizen.guides/html/native/connectivity/web_view_n.htm +++ b/org.tizen.guides/html/native/connectivity/web_view_n.htm @@ -347,7 +347,7 @@ view_focus_set(Browser_Window *window, Eina_Bool focus) /* You steal focus away from the elm focus model and start to do things manually, so elm has no clue what is up. Tell elm to unfocus - the top level UI component + the top-level UI component */ elm_object_focus_set(elm_object_top_widget_get(window->elm_window), EINA_FALSE); evas_object_focus_set(window->ewk_view, focus); diff --git a/org.tizen.guides/html/native/graphics/assembly_n.htm b/org.tizen.guides/html/native/graphics/assembly_n.htm index fad31b7..0095485 100644 --- a/org.tizen.guides/html/native/graphics/assembly_n.htm +++ b/org.tizen.guides/html/native/graphics/assembly_n.htm @@ -65,7 +65,7 @@

A window at the computer screen is associated with its own window space. A viewport is defined in the window space, as shown in the following figure.

-

Figure: Viewport in the window space is defined by its lower left corner point (MinX, MinY), height H, width W, and the depth range [MinZ, MaxZ]

+

Figure: Viewport in the window space is defined by its bottom-left corner point (MinX, MinY), height H, width W, and the depth range [MinZ, MaxZ]

Viewport

A viewport is created by the glViewport() function. Then, the glDepthRangef() function is called to specify the desired depth range. The initial values for the first and second parameter are 0.0 and 1.0, respectively. The process of converting the scene object (within the 23-sized box in the View frustrum figure) into the viewport of the window space is called viewport transform.

diff --git a/org.tizen.guides/html/native/ui/dali/actors_n.htm b/org.tizen.guides/html/native/ui/dali/actors_n.htm index 7be8f54..10fbd60 100644 --- a/org.tizen.guides/html/native/ui/dali/actors_n.htm +++ b/org.tizen.guides/html/native/ui/dali/actors_n.htm @@ -90,7 +90,7 @@ Stage::GetCurrent().Add( actor );

Figure: Parent origin

Parent origin

-

The default is top-left (Dali::ParentOrigin::TOP_LEFT), which can be visualized in 2D as (0, 0), but is actually Vector3 (0, 0, 0.5) in the 3D DALi world. The actor position is relative to this point.

+

The default is top left (Dali::ParentOrigin::TOP_LEFT), which can be visualized in 2D as (0, 0), but is actually Vector3 (0, 0, 0.5) in the 3D DALi world. The actor position is relative to this point.

For more information, see the Dali::Actor::SetParentOrigin() function.

diff --git a/org.tizen.guides/html/native/ui/dali/event_handling_n.htm b/org.tizen.guides/html/native/ui/dali/event_handling_n.htm index fb6bfd3..53565fc 100644 --- a/org.tizen.guides/html/native/ui/dali/event_handling_n.htm +++ b/org.tizen.guides/html/native/ui/dali/event_handling_n.htm @@ -187,7 +187,7 @@ void HelloWorldExample::OnKeyEvent( const KeyEvent& event ) } -

The stage is the top-most root object, so it can receive application-wide key events.

+

The stage is the topmost root object, so it can receive application-wide key events.

DALi provides its own key codes for several special keys, such as DALI_KEY_ESCAPE or DALI_KEY_BACK. The following table lists the available DALi key codes.

diff --git a/org.tizen.guides/html/native/ui/dali/styling_n.htm b/org.tizen.guides/html/native/ui/dali/styling_n.htm index 54459b7..ceeedc2 100644 --- a/org.tizen.guides/html/native/ui/dali/styling_n.htm +++ b/org.tizen.guides/html/native/ui/dali/styling_n.htm @@ -83,7 +83,7 @@ StyleManager::Get().ApplyTheme( "stylesheet.json" );

Stylesheet Format

-

A style sheet has several top level sections, which are named JSON objects. The following table lists the available sections.

+

A style sheet has several top-level sections, which are named JSON objects. The following table lists the available sections.

Table: Stylesheet sections

diff --git a/org.tizen.guides/html/native/ui/dali/touchdata_n.htm b/org.tizen.guides/html/native/ui/dali/touchdata_n.htm index fe9c0d4..0038c5d 100644 --- a/org.tizen.guides/html/native/ui/dali/touchdata_n.htm +++ b/org.tizen.guides/html/native/ui/dali/touchdata_n.htm @@ -122,7 +122,7 @@ int32_t touchDeviceId = touchData.GetDeviceId( 0 ); Actor hitActor = touchData.GetHitActor( 0 ); -
  • To retrieve the local hit actor and screen positions, use the GetLocalPosition() and GetScreenPosition() functions. The function returns the coordinates relative to the top-left of the hit actor or screen at the specific point. +
  • To retrieve the local hit actor and screen positions, use the GetLocalPosition() and GetScreenPosition() functions. The function returns the coordinates relative to the top left of the hit actor or screen at the specific point.
     const Vector2& screen = touchData.GetScreenPosition( 0 );
    diff --git a/org.tizen.guides/html/native/ui/efl/component_background_mn.htm b/org.tizen.guides/html/native/ui/efl/component_background_mn.htm
    index 6081e4f..c7c7aed 100644
    --- a/org.tizen.guides/html/native/ui/efl/component_background_mn.htm
    +++ b/org.tizen.guides/html/native/ui/efl/component_background_mn.htm
    @@ -80,7 +80,7 @@ elm_bg_file_set(bg, "/path/to/the/image", NULL);
     
  • Set a swallow part:
    -/* Load content at the top most layer of the background */
    +/* Load content at the topmost layer of the background */
     elm_object_content_set(bg, evas_object);
     
  • diff --git a/org.tizen.guides/html/native/ui/efl/component_background_wn.htm b/org.tizen.guides/html/native/ui/efl/component_background_wn.htm index 5d5d9c2..74d1ad8 100644 --- a/org.tizen.guides/html/native/ui/efl/component_background_wn.htm +++ b/org.tizen.guides/html/native/ui/efl/component_background_wn.htm @@ -81,7 +81,7 @@ elm_bg_file_set(bg, "/path/to/the/image", NULL);
  • Set a swallow part:
    -/* Load content at the top most layer of the background */
    +/* Load content at the topmost layer of the background */
     elm_object_content_set(bg, evas_object);
     
  • diff --git a/org.tizen.guides/html/native/ui/efl/component_progressbar_mn.htm b/org.tizen.guides/html/native/ui/efl/component_progressbar_mn.htm index 1c2c913..9db084b 100644 --- a/org.tizen.guides/html/native/ui/efl/component_progressbar_mn.htm +++ b/org.tizen.guides/html/native/ui/efl/component_progressbar_mn.htm @@ -198,7 +198,7 @@ elm_object_part_text_set(progressbar, "elm.text.bottom.left", "progressbar");
     elm_progressbar_unit_format_set(progressbar, "%1.2f%%");
     
    -

    If you set the elm.text.bottom.right text part, you cannot use a unit label. You can choose 1 unit label or the bottom right label. The default unit label format is %.0f%%.

    +

    If you set the elm.text.bottom.right text part, you cannot use a unit label. You can choose 1 unit label or the bottom-right label. The default unit label format is %.0f%%.

    diff --git a/org.tizen.guides/html/native/ui/efl/component_win_mn.htm b/org.tizen.guides/html/native/ui/efl/component_win_mn.htm index e899543..c709f21 100644 --- a/org.tizen.guides/html/native/ui/efl/component_win_mn.htm +++ b/org.tizen.guides/html/native/ui/efl/component_win_mn.htm @@ -41,7 +41,7 @@

    Win

    -

    Win stands for window, and the win component is a graphical control element containing the graphical user interface of a program. The window component is the bottom-most UI component in an EFL application. In most cases, when an application is launched, a window that fits into the device screen is created and shown. For more information, see the Win API.

    +

    Win stands for window, and the win component is a graphical control element containing the graphical user interface of a program. The window component is the bottommost UI component in an EFL application. In most cases, when an application is launched, a window that fits into the device screen is created and shown. For more information, see the Win API.

    This feature is supported in mobile applications only.

    Basic Usage

    diff --git a/org.tizen.guides/html/native/ui/efl/component_win_wn.htm b/org.tizen.guides/html/native/ui/efl/component_win_wn.htm index f4c8ee2..0260da0 100644 --- a/org.tizen.guides/html/native/ui/efl/component_win_wn.htm +++ b/org.tizen.guides/html/native/ui/efl/component_win_wn.htm @@ -42,7 +42,7 @@

    Win

    -

    Win stands for window, and the win component is a graphical control element containing the graphical user interface of a program. The window component is the bottom-most UI component in an EFL application. In most cases, when an application is launched, a window that fits into the device screen is created and shown. For more information, see the Win API.

    +

    Win stands for window, and the win component is a graphical control element containing the graphical user interface of a program. The window component is the bottommost UI component in an EFL application. In most cases, when an application is launched, a window that fits into the device screen is created and shown. For more information, see the Win API.

    This feature is supported in wearable applications only.

    diff --git a/org.tizen.guides/html/native/ui/efl/container_naviframe_n.htm b/org.tizen.guides/html/native/ui/efl/container_naviframe_n.htm index dfda891..8c13629 100644 --- a/org.tizen.guides/html/native/ui/efl/container_naviframe_n.htm +++ b/org.tizen.guides/html/native/ui/efl/container_naviframe_n.htm @@ -46,7 +46,7 @@

    Naviframe

    -

    The naviframe container manages many views by stacking them and displaying the top-most one. For more information, see the Naviframe API (in mobile and wearable applications).

    +

    The naviframe container manages many views by stacking them and displaying the topmost one. For more information, see the Naviframe API (in mobile and wearable applications).

    Basic Usage

    @@ -84,7 +84,7 @@ elm_object_item_part_content_set(nf_it, "title_left_btn", btn);

    The default text part is the title, and the default swallow part is the main content area. You can fill these parts with the elm_naviframe_item_push() function as well.

    -
  • Repeat step 2 for each view you have. You can pop and delete the top-most view during the process using the elm_naviframe_item_pop() function.
  • +
  • Repeat step 2 for each view you have. You can pop and delete the topmost view during the process using the elm_naviframe_item_pop() function.
  • The following example shows a simple use case of the naviframe component in a mobile application.

    diff --git a/org.tizen.guides/html/native/ui/efl/getting_started_n.htm b/org.tizen.guides/html/native/ui/efl/getting_started_n.htm index 2b2c614..a08a3ff 100644 --- a/org.tizen.guides/html/native/ui/efl/getting_started_n.htm +++ b/org.tizen.guides/html/native/ui/efl/getting_started_n.htm @@ -105,12 +105,12 @@ main(int argc, char *argv[])

    Starting from a Window

    EFL UI programming starts from adding a window. Basically, the way to build an EFL UI application is by adding a window and setting content in it.

    -

    The window is the bottom-most UI component in an EFL application. Usually, when an application is launched, a window that fits into the device screen is created and shown.

    +

    The window is the bottommost UI component in an EFL application. Usually, when an application is launched, a window that fits into the device screen is created and shown.

    Figure: Empty window

    Empty window

    -

    Windows are provided by the Elementary library. Since Elementary is a high-level wrapper on the top-most layer in the EFL hierarchy, you can start EFL UI programming with the Elementary library and expand the scope to lower-level libraries, as needed.

    +

    Windows are provided by the Elementary library. Since Elementary is a high-level wrapper on the topmost layer in the EFL hierarchy, you can start EFL UI programming with the Elementary library and expand the scope to lower-level libraries, as needed.

    The following code snippet shows how to add a window:

    diff --git a/org.tizen.guides/html/native/ui/efl/introduction_n.htm b/org.tizen.guides/html/native/ui/efl/introduction_n.htm index 23c2cbc..88b9e1e 100644 --- a/org.tizen.guides/html/native/ui/efl/introduction_n.htm +++ b/org.tizen.guides/html/native/ui/efl/introduction_n.htm @@ -102,7 +102,7 @@
    - + diff --git a/org.tizen.guides/html/native/ui/efl/learn_edc_images_n.htm b/org.tizen.guides/html/native/ui/efl/learn_edc_images_n.htm index 9d5fee6..37fda24 100644 --- a/org.tizen.guides/html/native/ui/efl/learn_edc_images_n.htm +++ b/org.tizen.guides/html/native/ui/efl/learn_edc_images_n.htm @@ -43,7 +43,7 @@

    Images Block

    -

    The images block is used to list the image files used in the theme. The used compression methods are also defined here. In addition to the top-level, the images blocks can be included inside other blocks, usually collections, group, and part. Using the images block on the top-level makes file list maintenance easier when the theme is split among multiple files.

    +

    The images block is used to list the image files used in the theme. The used compression methods are also defined here. In addition to the top level, the images blocks can be included inside other blocks, usually collections, group, and part. Using the images block on the top level makes file list maintenance easier when the theme is split among multiple files.

    Figure: Images block

    Images block

    @@ -80,7 +80,7 @@ set { } -

    The set block is used to define an image with different content depending on its size. In addition to the top-level, the set blocks can be included inside other blocks, normally collections, group, and part. Using the set block on the top-level makes file list maintenance easier when the theme is split among multiple files.

    +

    The set block is used to define an image with different content depending on its size. In addition to the top level, the set blocks can be included inside other blocks, normally collections, group, and part. Using the set block on the top level makes file list maintenance easier when the theme is split among multiple files.

    - + diff --git a/org.tizen.guides/html/web/app_management/app_icons_w.htm b/org.tizen.guides/html/web/app_management/app_icons_w.htm index 0d0e84f..4744db5 100644 --- a/org.tizen.guides/html/web/app_management/app_icons_w.htm +++ b/org.tizen.guides/html/web/app_management/app_icons_w.htm @@ -43,7 +43,7 @@

    Application Icons

    -

    When an application has new information requiring user attention, such as missed calls or new messages, it has a number in the upper right hand corner of the application icon. This number is called a badge. For example, when a new message is received, the badge appears on the application icon. The badge remains until the user reads the message.

    +

    When an application has new information requiring user attention, such as missed calls or new messages, it has a number in the upper-right corner of the application icon. This number is called a badge. For example, when a new message is received, the badge appears on the application icon. The badge remains until the user reads the message.

    This feature is supported in mobile and wearable applications only.

    diff --git a/org.tizen.guides/html/web/w3c/security/iframe_w.htm b/org.tizen.guides/html/web/w3c/security/iframe_w.htm index 011d85a..517ef7f 100644 --- a/org.tizen.guides/html/web/w3c/security/iframe_w.htm +++ b/org.tizen.guides/html/web/w3c/security/iframe_w.htm @@ -66,7 +66,7 @@
  • allow-same-origin

    Enables the content to be treated as belonging to the same origin.

  • allow-top-navigation -

    Enables navigation to the top-level browsing context.

  • +

    Enables navigation for the top-level browsing context.

  • allow-forms

    Enables form submission.

  • allow-scripts

    Enables script execution, but blocks pop-ups.

  • @@ -232,7 +232,7 @@ try { location = 'warning.html'; } catch (e) { - alert('HTML5 Sandbox prevented top level navigation.'); + alert('HTML5 Sandbox prevented top-level navigation.'); } </script> diff --git a/org.tizen.guides/html/web/w3c/ui/animation_w.htm b/org.tizen.guides/html/web/w3c/ui/animation_w.htm index a309e49..6ad4847 100644 --- a/org.tizen.guides/html/web/w3c/ui/animation_w.htm +++ b/org.tizen.guides/html/web/w3c/ui/animation_w.htm @@ -244,7 +244,7 @@
  • Create the keyframes to implement the flow for the Tizen logo:
    diff --git a/org.tizen.guides/html/web/w3c/ui/multi_mw.htm b/org.tizen.guides/html/web/w3c/ui/multi_mw.htm
    index 6b3ad14..a36213e 100644
    --- a/org.tizen.guides/html/web/w3c/ui/multi_mw.htm
    +++ b/org.tizen.guides/html/web/w3c/ui/multi_mw.htm
    @@ -62,7 +62,7 @@
     

    Setting the Column Number and Width

    When the layout is set to a constant number of columns using the column-count (or -webkit-column-count) property, the column width is set to fill the available horizontal space.

    -

    In the following code snippet and figure, the column number is set to 4. As a result, on a 480 x 800 display (shown on the top), the column width is 116 px, whereas on a 720 x 1280 display (shown on the bottom), the column with is 143 px.

    +

    In the following code snippet and figure, the column number is set to 4. As a result, on a 480 x 800 display (shown at the top), the column width is 116 px, whereas on a 720 x 1280 display (shown at the bottom), the column with is 143 px.

    The following code snippet demonstrates how to use the column-count property. For a complete source code, see multi_column_column_count/renamed_index.html.

     article {
    diff --git a/org.tizen.studio/html/common_tools/da_ui_hierarchy_n.htm b/org.tizen.studio/html/common_tools/da_ui_hierarchy_n.htm
    index d0b2573..ccc1864 100644
    --- a/org.tizen.studio/html/common_tools/da_ui_hierarchy_n.htm
    +++ b/org.tizen.studio/html/common_tools/da_ui_hierarchy_n.htm
    @@ -59,17 +59,17 @@
     
  • You can view the relationships between the UI objects of your application.

    When the application UI changes, the Hierarchy Tree view is not automatically updated. To update the view:

      -
    1. To see only Elementary UI objects without Evas and Edje, select the Elementary check box at the top left corner.
    2. +
    3. To see only Elementary UI objects without Evas and Edje, select the Elementary check box in the upper-left corner.
    4. Click the refresh button (Refresh button).

    In the view, each node represents a corresponding UI object and shows its type (such as elm_win).

  • You can zoom the hierarchy tree in and out. -

    To zoom in or out of the tree, use the slider at the bottom right corner, or use a keyboard shortcut (Ctrl + mouse scroll wheel).

  • +

    To zoom in or out of the tree, use the slider in the lower-right corner, or use a keyboard shortcut (Ctrl + Mouse wheel scroll).

  • You can easily find the UI objects you want to see by using filtering options.

    To find UI objects in the tree:

      -
    1. Select a filtering option in the combo box at the bottom left corner: +
    2. Select a filtering option in the combo box in the lower-left corner:
      • Type: Type of the UI object (such as elm_win or elm_button)
      • Name: Name set by the EFL evas_object_name_set() function
      • @@ -80,7 +80,7 @@
  • You can export the hierarchy tree to an image file. -

    To save a screenshot of the tree view to an image file (PNG), click the export button (Export button) at the top right corner. In a dialog box, click Save As and define a location for the file.

    +

    To save a screenshot of the tree view to an image file (PNG), click the export button (Export button) in the upper-right corner. In the dialog box, click Save As and define a location for the file.

    Figure: Hierarchy tree

    Hierarchy tree

    diff --git a/org.tizen.studio/html/native_tools/component_designer_n.htm b/org.tizen.studio/html/native_tools/component_designer_n.htm index 6772ab3..ae111ac 100644 --- a/org.tizen.studio/html/native_tools/component_designer_n.htm +++ b/org.tizen.studio/html/native_tools/component_designer_n.htm @@ -181,7 +181,7 @@ Data items contain raw data information (data name and raw value) that is encase

    Tools

    The workspace has various tools that allow you to manipulate it:

    Opening the Project Explorer View

    -

    Usually, the Project Explorer view is located in the left-top side in the Tizen Studio. You can change the position by dragging and dropping it. If you close the view, you can show it again by selecting Project Explorer in Window > Show View > Other > General.

    +

    Usually, the Project Explorer view is located in the upper-left side of the Tizen Studio. You can change the position by dragging and dropping it. If you close the view, you can show it again by selecting Project Explorer in Window > Show View > Other > General.

    Figure: Opening the view

    Opening the view

    @@ -92,7 +92,7 @@

    Display projects in a flat or hierarchical form.

  • Top Level Elements -

    Show working sets or projects as top level elements. Choosing working sets allows easy grouping of projects in large workspaces.

    +

    Show working sets or projects as top-level elements. Choosing working sets allows easy grouping of projects in large workspaces.

  • Folder Presentation

    Display folders in a flat or grouped form.

    diff --git a/org.tizen.studio/html/web_tools/web_simulator_features_w.htm b/org.tizen.studio/html/web_tools/web_simulator_features_w.htm index 1ece19f..3e36737 100644 --- a/org.tizen.studio/html/web_tools/web_simulator_features_w.htm +++ b/org.tizen.studio/html/web_tools/web_simulator_features_w.htm @@ -72,7 +72,7 @@

    The panel also provides an input area to configure geographical data being sent from the device. Additionally, a map is displayed and updated in accordance to the changing of data.

    To simulate a custom, multi-point route:

      -
    1. Click the red location marker button at the upper right corner of the map.
    2. +
    3. Click the red location marker button in the upper-right corner of the map.
    4. Click the desired location points.
    5. Double-click the map to end route creation.
    6. To send the geolocation data to the application along the defined route, click the play button. You can also set the speed of playback.
    7. diff --git a/org.tizen.training/html/cover_page.htm b/org.tizen.training/html/cover_page.htm index 66b481e..c4c0afd 100644 --- a/org.tizen.training/html/cover_page.htm +++ b/org.tizen.training/html/cover_page.htm @@ -102,7 +102,7 @@ -

      When using the Tizen documentation, look for the profile icons on the upper right corner of each page. The icons (listed in the following table) indicate which profiles the topic applies to. "N" in the icon stands for the native application profiles and "W" for the Web application profiles.

      +

      When using the Tizen documentation, look for the profile icons in the upper-right corner of each page. The icons (listed in the following table) indicate which profiles the topic applies to. "N" in the icon stands for the native application profiles and "W" for the Web application profiles.

      Table: Tizen profiles

  • ElementaryElementary (UI Components) is the top-most library with which you create your EFL application. It provides all the functions you need to create a window, create simple and complex layouts, manage the life-cycle of a view, and add UI components. The full list of UI components that can be used in Tizen can be found in Mobile UI Components and Wearable UI Components.Elementary (UI Components) is the topmost library with which you create your EFL application. It provides all the functions you need to create a window, create simple and complex layouts, manage the life-cycle of a view, and add UI components. The full list of UI components that can be used in Tizen can be found in Mobile UI Components and Wearable UI Components.
    Edje
    NaviframeManage many views by stacking them and displaying the top-most one.Manage many views by stacking them and displaying the topmost one.
    Panes in mobile applications only
    diff --git a/org.tizen.training/html/native/app_model/application_model_n.htm b/org.tizen.training/html/native/app_model/application_model_n.htm index e1d7784..ca0a85c 100644 --- a/org.tizen.training/html/native/app_model/application_model_n.htm +++ b/org.tizen.training/html/native/app_model/application_model_n.htm @@ -64,7 +64,7 @@ These devices have constraints, such as relatively small screen sizes and lack o
  • A new application is launched by the request of your application.
  • The user requests to go to the home screen.

  • A system event (such as an incoming phone call) occurs and causes a resident application with a higher priority to become active and temporarily hide your application.

  • -
  • An alarm is triggered for another application, which becomes the top-most window and hides your application.

  • +
  • An alarm is triggered for another application, which becomes the topmost window and hides your application.

  • Since Tizen 2.4, an application in the background goes into a suspended state. In the suspended state, the application process is executed with limited CPU resources. In other words, the platform does not allow the running of the background applications, except for some exceptional applications (such as Media and Download) that necessarily work in the background. In this case, the application can designate their background category as an allowed category to avoid going into the suspended state.

    diff --git a/org.tizen.training/html/native/feature/app_graphics_animation_n.htm b/org.tizen.training/html/native/feature/app_graphics_animation_n.htm index 633ed96..98f9916 100644 --- a/org.tizen.training/html/native/feature/app_graphics_animation_n.htm +++ b/org.tizen.training/html/native/feature/app_graphics_animation_n.htm @@ -114,7 +114,7 @@ evas_object_show(ad->win);
  • Create the frame event callback functions by adding them to the top of the create_base_gui() function: