You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ha...@apache.org on 2016/04/07 05:35:19 UTC

git commit: [flex-asjs] [refs/heads/e4x] - More typos

Repository: flex-asjs
Updated Branches:
  refs/heads/e4x 1c5e98db9 -> 51bbbac84


More typos


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/51bbbac8
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/51bbbac8
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/51bbbac8

Branch: refs/heads/e4x
Commit: 51bbbac84fea710ead3055749743789856c29725
Parents: 1c5e98d
Author: Harbs <ha...@in-tools.com>
Authored: Wed Apr 6 20:35:02 2016 -0700
Committer: Harbs <ha...@in-tools.com>
Committed: Wed Apr 6 20:35:02 2016 -0700

----------------------------------------------------------------------
 manualtests/XMLTest/build.xml                   |  2 +-
 manualtests/XMLTest/src/ReflectionTest.mxml     | 40 --------------------
 manualtests/XMLTest/src/XMLTest.mxml            | 40 ++++++++++++++++++++
 .../XMLTest/src/controllers/MyController.as     |  6 +--
 4 files changed, 44 insertions(+), 44 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/build.xml
----------------------------------------------------------------------
diff --git a/manualtests/XMLTest/build.xml b/manualtests/XMLTest/build.xml
index 6370e2d..5f352b6 100644
--- a/manualtests/XMLTest/build.xml
+++ b/manualtests/XMLTest/build.xml
@@ -21,7 +21,7 @@
 
 <project name="xmltest" default="main" basedir=".">
     <property name="FLEXJS_HOME" location="../.."/>
-    <property name="example" value="ReflectionTest" />
+    <property name="example" value="XMLTest" />
     
     <property environment="env"/>
     <property file="${FLEXJS_HOME}/build.properties"/>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/ReflectionTest.mxml
----------------------------------------------------------------------
diff --git a/manualtests/XMLTest/src/ReflectionTest.mxml b/manualtests/XMLTest/src/ReflectionTest.mxml
deleted file mode 100644
index 27e97b5..0000000
--- a/manualtests/XMLTest/src/ReflectionTest.mxml
+++ /dev/null
@@ -1,40 +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.
-//
-////////////////////////////////////////////////////////////////////////////////
--->
-<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
-				   xmlns:local="*"
-				   xmlns:models="models.*"
-                   xmlns:controllers="controllers.*"
-				   xmlns:js="library://ns.apache.org/flexjs/basic" 
-				   >
-	
-	<js:valuesImpl>
-		<js:SimpleCSSValuesImpl />
-	</js:valuesImpl>
-    <js:controller>
-        <controllers:MyController />
-    </js:controller>
-    <js:model>
-        <models:MyModel />
-    </js:model>
-	<js:initialView>
-		<local:MyInitialView />
-	</js:initialView>
-</js:Application>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/XMLTest.mxml
----------------------------------------------------------------------
diff --git a/manualtests/XMLTest/src/XMLTest.mxml b/manualtests/XMLTest/src/XMLTest.mxml
new file mode 100644
index 0000000..27e97b5
--- /dev/null
+++ b/manualtests/XMLTest/src/XMLTest.mxml
@@ -0,0 +1,40 @@
+<?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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
+<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
+				   xmlns:local="*"
+				   xmlns:models="models.*"
+                   xmlns:controllers="controllers.*"
+				   xmlns:js="library://ns.apache.org/flexjs/basic" 
+				   >
+	
+	<js:valuesImpl>
+		<js:SimpleCSSValuesImpl />
+	</js:valuesImpl>
+    <js:controller>
+        <controllers:MyController />
+    </js:controller>
+    <js:model>
+        <models:MyModel />
+    </js:model>
+	<js:initialView>
+		<local:MyInitialView />
+	</js:initialView>
+</js:Application>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/controllers/MyController.as
----------------------------------------------------------------------
diff --git a/manualtests/XMLTest/src/controllers/MyController.as b/manualtests/XMLTest/src/controllers/MyController.as
index 81eb963..679d638 100644
--- a/manualtests/XMLTest/src/controllers/MyController.as
+++ b/manualtests/XMLTest/src/controllers/MyController.as
@@ -31,12 +31,12 @@ package controllers
 		{
 			if (app)
 			{
-				this.app = app as ReflectionTest;
+				this.app = app as XMLTest;
 				app.addEventListener("viewChanged", viewChangeHandler);
 			}
 		}
 		
-		private var app:ReflectionTest;
+		private var app:XMLTest;
 		
 		private function viewChangeHandler(event:Event):void
 		{
@@ -44,7 +44,7 @@ package controllers
 		        
 		public function setDocument(document:Object, id:String = null):void
 		{
-			this.app = document as ReflectionTest;
+			this.app = document as XMLTest;
 			app.addEventListener("viewChanged", viewChangeHandler);
 		}