You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2019/07/07 08:16:42 UTC

[royale-asjs] 02/04: Lose some vim files and revert hello world test

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

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

commit 1db9416c61c25025dbb4f5a62291391c99036ced
Author: DESKTOP-RH4S838\Yishay <yi...@hotmail.com>
AuthorDate: Sun Jul 7 11:10:43 2019 +0300

    Lose some vim files and revert hello world test
---
 examples/mxroyale/HelloWorld/build.xml~            |  55 ----------
 .../HelloWorld/src/main/royale/HelloWorld.mxml     | 113 +++++++--------------
 .../HelloWorld/src/main/royale/HelloWorld.mxml~    |  36 -------
 3 files changed, 34 insertions(+), 170 deletions(-)

diff --git a/examples/mxroyale/HelloWorld/build.xml~ b/examples/mxroyale/HelloWorld/build.xml~
deleted file mode 100644
index 62250e0..0000000
--- a/examples/mxroyale/HelloWorld/build.xml~
+++ /dev/null
@@ -1,55 +0,0 @@
-<?xml version="1.0"?>
-<!--
-
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-
--->
-
-
-<project name="helloworld" default="main" basedir=".">
-    <property name="ROYALE_HOME" location="../../.."/>
-    <property name="example" value="HelloWorld" />
-    
-    <property file="${ROYALE_HOME}/env.properties"/>
-    <property environment="env"/>
-    <property file="${ROYALE_HOME}/build.properties"/>
-    <property name="ROYALE_HOME" value="${ROYALE_HOME}"/>
-    <property name="config_arg" value="flex"/>
-
-    <include file="${basedir}/../../build_example.xml" />
-    
-    <target name="main" depends="clean,build_example.compile" description="Clean build of ${example}">
-    </target>
-    
-    <target name="clean">
-        <delete dir="${basedir}/bin" failonerror="false" />
-        <delete dir="${basedir}/bin-debug" failonerror="false" />
-        <delete dir="${basedir}/bin-release" failonerror="false" />
-        <delete dir="${basedir}/target" failonerror="false" />
-    </target>
-
-    <target name="examine" depends="build_example.get.browser">
-        <property name="which" value="debug" />
-        <echo message="Make sure label appears."/>
-        <exec executable="${browser}" dir="${basedir}/bin-${which}" failonerror="true">
-            <arg value="${basedir}/bin-${which}/${example}.html"/>
-        </exec>
-        <exec executable="${browser}" dir="${basedir}/bin/js-${which}" failonerror="true">
-            <arg value="${basedir}/bin/js-${which}/index.html"/>
-        </exec>
-    </target>
-
-</project>
diff --git a/examples/mxroyale/HelloWorld/src/main/royale/HelloWorld.mxml b/examples/mxroyale/HelloWorld/src/main/royale/HelloWorld.mxml
index ee61b0d..2a75c9b 100644
--- a/examples/mxroyale/HelloWorld/src/main/royale/HelloWorld.mxml
+++ b/examples/mxroyale/HelloWorld/src/main/royale/HelloWorld.mxml
@@ -1,81 +1,36 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="utf-8"?>
 <!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-      contributor license agreements.  See the NOTICE file distributed with
-      this work for additional information regarding copyright ownership.
-      The ASF licenses this file to You under the Apache License, Version 2.0
-      (the "License"); you may not use this file except in compliance with
-      the License.  You may obtain a copy of the License at
 
-          http://www.apache.org/licenses/LICENSE-2.0
-
-      Unless required by applicable law or agreed to in writing, software
-      distributed under the License is distributed on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-      See the License for the specific language governing permissions and
-      limitations under the License.
-  -->
-
-<!-- Simple example to demonstrate the MenuBar control. -->
-<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.apache.org/royale/mx"
-				paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0"
-				height="100%" width="100%"
-				creationComplete="initCollections()">
-
-     <fx:Script>
-        <![CDATA[
-
-            import mx.events.MenuEvent;
-            import mx.controls.Alert;
-            import mx.collections.*;
-
-            [Bindable]
-            public var menuBarCollection:XMLListCollection;
-    
-            private var menubarXML:XMLList =
-                <>
-                    <menuitem label="Menu1" data="top">
-                        <menuitem label="MenuItem 1-A" data="1A"/>
-                        <menuitem label="MenuItem 1-B" data="1B"/>
-                    </menuitem>
-                    <menuitem label="Menu2" data="top">
-                        <menuitem label="MenuItem 2-A" type="check"  data="2A"/>
-                        <menuitem type="separator"/>
-                        <menuitem label="MenuItem 2-B" >
-                            <menuitem label="SubMenuItem 3-A" type="radio"
-                                groupName="one" data="3A"/>
-                            <menuitem label="SubMenuItem 3-B" type="radio"
-                                groupName="one" data="3B"/>
-                        </menuitem>
-                    </menuitem>
-                </>;
-
-            // Event handler to initialize the MenuBar control.
-            private function initCollections():void {
-                menuBarCollection = new XMLListCollection(menubarXML);
-            }
-
-            // Event handler for the MenuBar control's itemClick event.
-            private function menuHandler(event:MenuEvent):void  {
-                // Don't open the Alert for a menu bar item that 
-                // opens a popup submenu.
-                if (event.item.@data != "top") {
-                    Alert.show("Label: " + event.item.@label + "\n" + 
-                        "Data: " + event.item.@data, "Clicked menu item");
-                }        
-            }
-         ]]>
-    </fx:Script>
-
-    <mx:Panel title="MenuBar Control Example"
-				paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10"
-				height="100%" width="100%">
-
-        <mx:Label width="100%"
-           text="Select a menu item."/>
-
-        <mx:MenuBar labelField="@label" itemClick="menuHandler(event)" 
-            dataProvider="{menuBarCollection}" />
-            
-    </mx:Panel>
-</mx:Application>
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+-->
+<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
+                   xmlns:mx="library://ns.apache.org/royale/mx"
+                   width="600" height="400" >
+	<!-- to do: layout="absolute" minWidth="955" minHeight="600" -->
+	<fx:Style>
+		@namespace mx "library://ns.apache.org/royale/mx";
+		
+		/* set position:absolute to make the (x,y) properties work */
+		mx|Label {
+			position: absolute;
+		}
+		
+	</fx:Style>
+
+	<mx:Label text="Hello World" x="20" y="20" />
+        
+</mx:Application>
\ No newline at end of file
diff --git a/examples/mxroyale/HelloWorld/src/main/royale/HelloWorld.mxml~ b/examples/mxroyale/HelloWorld/src/main/royale/HelloWorld.mxml~
deleted file mode 100644
index 294ad81..0000000
--- a/examples/mxroyale/HelloWorld/src/main/royale/HelloWorld.mxml~
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements.  See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You under the Apache License, Version 2.0
-(the "License"); you may not use this file except in compliance with
-the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
--->
-<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
-                   xmlns:mx="library://ns.apache.org/royale/mx"
-                   width="600" height="400" >
-	<!-- to do: layout="absolute" minWidth="955" minHeight="600" -->
-	<fx:Style>
-		@namespace mx "library://ns.apache.org/royale/mx";
-		
-		/* set position:absolute to make the (x,y) properties work */
-		mx|Label {
-			position: absolute;
-		}
-		
-	</fx:Style>
-
-	<mx:Label text="Hello World" x="20" y="20" />
-        
-</mx:Application>