[doc] modify edje resource path from /res/ to /edje/
authorSung-Taek Hong <sth253.hong@samsung.com>
Wed, 8 Apr 2015 13:23:27 +0000 (22:23 +0900)
committerSung-Taek Hong <sth253.hong@samsung.com>
Wed, 8 Apr 2015 13:23:42 +0000 (22:23 +0900)
Signed-off-by: Sung-Taek Hong <sth253.hong@samsung.com>
Change-Id: Ib22006de92b7f33ce2e36936ca514edd11313a4d

org.tizen.guides/html/native/ui/edje_n.htm
org.tizen.tutorials/html/native/ui/ecore_effects_tutorial_n.htm
org.tizen.tutorials/html/native/ui/edje_effects_tutorial_n.htm

index 24b4d26..0eba262 100644 (file)
@@ -80,11 +80,11 @@ $ edje_cc -sd $SOUNDS_DIR -fd $FONTS_DIR -id $IMAGES_DIR
 <pre class="prettyprint">
 Building file: ../res/edje/helloworld.edc
 Invoking: EDC Resource Compiler
-edje_cc -sd ../res/sounds -fd ../res/fonts -id ../res/images ../res/edje/helloworld.edc ../res/edje/helloworld.edj
+edje_cc -sd ../edje/sounds -fd ../edje/fonts -id ../edje/images ../res/edje/helloworld.edc ../res/edje/helloworld.edj
 </pre>
 
 
-<p>The Tizen SDK compilation log extract shows you that if your EDC file uses pictures, they must be copied to the <span style="font-family: Courier New,Courier,monospace;">./res/images</span> directory. fonts and sounds go to the <span style="font-family: Courier New,Courier,monospace;">./res/fonts</span> and <span style="font-family: Courier New,Courier,monospace;">./res/sounds</span> directory respectively. The SDK builds the <span style="font-family: Courier New,Courier,monospace;">helloworld.edj</span> file in the <span style="font-family: Courier New,Courier,monospace;">./res/edje/</span> folder.</p>
+<p>The Tizen SDK compilation log extract shows you that if your EDC file uses pictures, they must be copied to the <span style="font-family: Courier New,Courier,monospace;">./edje/images</span> directory. fonts and sounds go to the <span style="font-family: Courier New,Courier,monospace;">./edje/fonts</span> and <span style="font-family: Courier New,Courier,monospace;">./edje/sounds</span> directory respectively. The SDK builds the <span style="font-family: Courier New,Courier,monospace;">helloworld.edj</span> file in the <span style="font-family: Courier New,Courier,monospace;">./res/edje/</span> folder.</p>
 
 <h3 id="simple_edc_file" name="simple_edc_file">Writing Simple EDC File </h3>
 <p>The code example below shows you the structure of an EDC file. It is a collection of groups that contain parts and programs.</p>
@@ -766,4 +766,4 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga
 </script>
 
 </body>
-</html>
\ No newline at end of file
+</html>
index e605b64..b971b28 100644 (file)
@@ -115,7 +115,7 @@ elm_win_resize_object_add(ad-&gt;win, ad-&gt;label);
 evas_object_show(ad-&gt;label);
 </pre>
 
-<p>Next, we create the animation target, which is an Evas object of type <span style="font-family: Courier New,Courier,monospace">Elm_Image</span>. We store the image in the <span style="font-family: Courier New,Courier,monospace">res/images</span> folder of the application. We use the same Tizen logo as in the EDC animation example (<span style="font-family: Courier New,Courier,monospace">res/images/tizen-logo.png</span>).</p>
+<p>Next, we create the animation target, which is an Evas object of type <span style="font-family: Courier New,Courier,monospace">Elm_Image</span>. We store the image, which is used in the source code, in the <span style="font-family: Courier New,Courier,monospace">res/images</span> folder of the application. On the contrary, we store the image, which is used in the edc file, in the <span style="font-family: Courier New,Courier,monospace">edje/images</span> folder.</p>
 
 <pre class="prettyprint">// Animation target
 // Setting the image path
index 1fe259f..d6003b6 100644 (file)
@@ -69,7 +69,7 @@
 <p>The goal of this tutorial is to create an animation target and buttons to start animations, all this in an EDC (Edje Data Collection) file.</p>
 <p>First create an application using Basic EDC UI Application. This model provides a simple application just like the one used in the previous chapter, but with one more element: an <span style="font-family: Courier New,Courier,monospace">.edc</span> file.</p>
 <p>Animations can be run at application startup. By default the Basic EDC UI Application model produces an empty window with a title. In this example a Tizen logo is added to the window and the behavior of the window title is changed.</p>
-<p>The images used by the Edje file are stored in the <span style="font-family: Courier New,Courier,monospace">res/images</span> directory of the application. Copy the Tizen logo available in <span style="font-family: Courier New,Courier,monospace">shared/res/&lt;yourapplicationname&gt;.png</span> into the Edje images directory <span style="font-family: Courier New,Courier,monospace">res/images</span>. Add then the image to the Edje images collection.</p>
+<p>The images used by the Edje file are stored in the <span style="font-family: Courier New,Courier,monospace">edje/images</span> directory of the application. Copy the Tizen logo available in <span style="font-family: Courier New,Courier,monospace">shared/res/&lt;yourapplicationname&gt;.png</span> into the Edje images directory <span style="font-family: Courier New,Courier,monospace">edje/images</span>. Add then the image to the Edje images collection.</p>
 <pre class="prettyprint">images 
 {
 &nbsp;&nbsp;&nbsp;image: &quot;edceffects.png&quot; COMP;