This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 8343c5b  update jewel examples
8343c5b is described below

commit 8343c5bc84a3cde6d56e865613eb768964582afc
Author: Carlos Rovira <carlosrov...@apache.org>
AuthorDate: Sun May 6 08:38:13 2018 +0200

    update jewel examples
---
 .../main/royale/BE0002_Using_Jewel_Alert_Control.mxml  | 11 +++++------
 .../main/royale/BE0003_Using_Jewel_Slider_Control.mxml | 15 +++++++--------
 .../royale/BE0004_Adding_an_item_to_a_Jewel_List.mxml  | 18 +++++++++---------
 .../BE0005_Creating_a_group_of_Jewel_RadioButtons.mxml | 16 +++++++---------
 .../RemoteObjectAMFTest/src/main/royale/App.mxml       |  4 ++--
 5 files changed, 30 insertions(+), 34 deletions(-)

diff --git 
a/examples/blog/BE0002_Using_Jewel_Alert_Control/src/main/royale/BE0002_Using_Jewel_Alert_Control.mxml
 
b/examples/blog/BE0002_Using_Jewel_Alert_Control/src/main/royale/BE0002_Using_Jewel_Alert_Control.mxml
index c7f2244..7258189 100644
--- 
a/examples/blog/BE0002_Using_Jewel_Alert_Control/src/main/royale/BE0002_Using_Jewel_Alert_Control.mxml
+++ 
b/examples/blog/BE0002_Using_Jewel_Alert_Control/src/main/royale/BE0002_Using_Jewel_Alert_Control.mxml
@@ -18,8 +18,7 @@
 
 -->
 <j:Application xmlns:fx="http://ns.adobe.com/mxml/2009";
-               xmlns:j="library://ns.apache.org/royale/jewel"
-               xmlns:js="library://ns.apache.org/royale/basic">
+               xmlns:j="library://ns.apache.org/royale/jewel">
     
     <fx:Style source="../../main/resources/styles.css"/>
 
@@ -46,10 +45,10 @@
         ]]>
     </fx:Script>
 
-    <js:initialView>
-        <js:View>
+    <j:initialView>
+        <j:View>
             <j:Button id="button" text="Click Me" primary="true" 
click="clickHandler(event)"/>
-        </js:View>
-    </js:initialView>
+        </j:View>
+    </j:initialView>
     
 </j:Application>
\ No newline at end of file
diff --git 
a/examples/blog/BE0003_Using_Jewel_Slider_Control/src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml
 
b/examples/blog/BE0003_Using_Jewel_Slider_Control/src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml
index e3bd48e..1983bbd 100644
--- 
a/examples/blog/BE0003_Using_Jewel_Slider_Control/src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml
+++ 
b/examples/blog/BE0003_Using_Jewel_Slider_Control/src/main/royale/BE0003_Using_Jewel_Slider_Control.mxml
@@ -18,8 +18,7 @@
 
 -->
 <j:Application xmlns:fx="http://ns.adobe.com/mxml/2009";
-               xmlns:j="library://ns.apache.org/royale/jewel"
-               xmlns:js="library://ns.apache.org/royale/basic">
+               xmlns:j="library://ns.apache.org/royale/jewel">
     
     <fx:Style source="../../main/resources/styles.css"/>
 
@@ -41,11 +40,11 @@
        ]]>
        </fx:Script>
 
-    <js:initialView>
-        <js:View>
-            <js:beads>
+    <j:initialView>
+        <j:View>
+            <j:beads>
                 <j:VerticalLayoutWithPaddingAndGap gap="10"/>
-            </js:beads>
+            </j:beads>
 
             <j:Slider id="slider_w" width="250" value="250" minimum="100" 
maximum="500"
                 valueChange="onValueChange(event)"/>
@@ -55,7 +54,7 @@
 
             <j:Button id="button" text="Slider to 400x200" width="250" 
height="80" secondary="true"
                 click="clickHandler(event)"/>
-        </js:View>
-    </js:initialView>
+        </j:View>
+    </j:initialView>
     
 </j:Application>
\ No newline at end of file
diff --git 
a/examples/blog/BE0004_Adding_an_item_to_a_Jewel_List/src/main/royale/BE0004_Adding_an_item_to_a_Jewel_List.mxml
 
b/examples/blog/BE0004_Adding_an_item_to_a_Jewel_List/src/main/royale/BE0004_Adding_an_item_to_a_Jewel_List.mxml
index 5936f4f..f793d81 100644
--- 
a/examples/blog/BE0004_Adding_an_item_to_a_Jewel_List/src/main/royale/BE0004_Adding_an_item_to_a_Jewel_List.mxml
+++ 
b/examples/blog/BE0004_Adding_an_item_to_a_Jewel_List/src/main/royale/BE0004_Adding_an_item_to_a_Jewel_List.mxml
@@ -19,8 +19,8 @@
 -->
 <j:Application xmlns:fx="http://ns.adobe.com/mxml/2009";
                xmlns:j="library://ns.apache.org/royale/jewel"
-               xmlns:html="library://ns.apache.org/royale/html"
-               xmlns:js="library://ns.apache.org/royale/basic">
+               xmlns:js="library://ns.apache.org/royale/basic"
+               xmlns:html="library://ns.apache.org/royale/html">
     
     <fx:Style source="../../main/resources/styles.css"/>
 
@@ -36,12 +36,12 @@
                ]]>
        </fx:Script>
 
-    <js:initialView>
-        <js:View>
-
-            <js:beads>
+    <j:initialView>
+        <j:View>
+            <j:beads>
                 <j:VerticalLayoutWithPaddingAndGap gap="10"/>
-            </js:beads>
+            </j:beads>
+            
             <html:H3 text="Avengers Character List"/>
        
             <j:List id="list" width="200" height="300" 
change="changeHandler(event)">
@@ -53,7 +53,7 @@
             <j:Label id="selected"/>
 
             <j:Button width="200" primary="true" text="who is missing?" 
click="clickHandler(event)"/>
-        </js:View>
-    </js:initialView>
+        </j:View>
+    </j:initialView>
 
 </j:Application>
\ No newline at end of file
diff --git 
a/examples/blog/BE0005_Creating_a_group_of_Jewel_RadioButtons/src/main/royale/BE0005_Creating_a_group_of_Jewel_RadioButtons.mxml
 
b/examples/blog/BE0005_Creating_a_group_of_Jewel_RadioButtons/src/main/royale/BE0005_Creating_a_group_of_Jewel_RadioButtons.mxml
index ccaff6f..128dc4f 100644
--- 
a/examples/blog/BE0005_Creating_a_group_of_Jewel_RadioButtons/src/main/royale/BE0005_Creating_a_group_of_Jewel_RadioButtons.mxml
+++ 
b/examples/blog/BE0005_Creating_a_group_of_Jewel_RadioButtons/src/main/royale/BE0005_Creating_a_group_of_Jewel_RadioButtons.mxml
@@ -19,8 +19,7 @@
 -->
 <j:Application xmlns:fx="http://ns.adobe.com/mxml/2009";
                xmlns:j="library://ns.apache.org/royale/jewel"
-               xmlns:html="library://ns.apache.org/royale/html"
-               xmlns:js="library://ns.apache.org/royale/basic">
+               xmlns:html="library://ns.apache.org/royale/html">
     
     <fx:Style source="../../main/resources/styles.css"/>
 
@@ -33,12 +32,11 @@
                ]]>
        </fx:Script>
 
-    <js:initialView>
-        <js:View>
-
-            <js:beads>
+    <j:initialView>
+        <j:View>
+            <j:beads>
                 <j:VerticalLayoutWithPaddingAndGap gap="10"/>
-            </js:beads>
+            </j:beads>
 
             <html:H2 text="Creating a group of Jewel RadioButtons"/>
             
@@ -55,7 +53,7 @@
             <j:Label id="result" text="The radio button selected has the 
value:"/>
 
             <j:Button text="disable/enable option 3" primary="true" 
click="opt3disable.disabled = !opt3disable.disabled"/>
-        </js:View>
-    </js:initialView>
+        </j:View>
+    </j:initialView>
 
 </j:Application>
\ No newline at end of file
diff --git a/examples/royale/RemoteObjectAMFTest/src/main/royale/App.mxml 
b/examples/royale/RemoteObjectAMFTest/src/main/royale/App.mxml
index 6fe491c..9996271 100644
--- a/examples/royale/RemoteObjectAMFTest/src/main/royale/App.mxml
+++ b/examples/royale/RemoteObjectAMFTest/src/main/royale/App.mxml
@@ -91,7 +91,7 @@ limitations under the License.
     </j:beads>
 
     <j:initialView>
-        <js:View>
+        <j:View>
             <js:beads>
                 <j:VerticalLayoutWithPaddingAndGap gap="10"/>
             </js:beads>
@@ -136,7 +136,7 @@ limitations under the License.
                 <j:MultilineLabel id="received3" text="Received:"/>
             </j:Group>
 
-        </js:View>
+        </j:View>
     </j:initialView>
     
 </j:Application>

-- 
To stop receiving notification emails like this one, please contact
carlosrov...@apache.org.

Reply via email to