You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2013/05/21 20:25:08 UTC

[01/12] git commit: [flex-sdk] [refs/heads/develop] - add java classes to ignore list

Updated Branches:
  refs/heads/develop 06fe5af1e -> 945f90e58


add java classes to ignore list


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/3906693a
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/3906693a
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/3906693a

Branch: refs/heads/develop
Commit: 3906693a6338e4ed0c69babe6f736671911e332b
Parents: 4fe2745
Author: Alex Harui <ah...@apache.org>
Authored: Fri May 17 11:26:46 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:37 2013 -0700

----------------------------------------------------------------------
 mustella/.gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3906693a/mustella/.gitignore
----------------------------------------------------------------------
diff --git a/mustella/.gitignore b/mustella/.gitignore
index b47f0dd..26b3888 100644
--- a/mustella/.gitignore
+++ b/mustella/.gitignore
@@ -6,3 +6,4 @@ test_files.tmp
 *.lnk.xml
 *.bad.png
 *.bad.png.xml
+classes/
\ No newline at end of file


[03/12] git commit: [flex-sdk] [refs/heads/develop] - add dependency db to ignore list

Posted by ah...@apache.org.
add dependency db to ignore list


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/4d3fa098
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/4d3fa098
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/4d3fa098

Branch: refs/heads/develop
Commit: 4d3fa0982d2f8e6ae50ae17b48d7a25ee78ef0ba
Parents: 3906693
Author: Alex Harui <ah...@apache.org>
Authored: Fri May 17 12:29:35 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:38 2013 -0700

----------------------------------------------------------------------
 mustella/.gitignore |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4d3fa098/mustella/.gitignore
----------------------------------------------------------------------
diff --git a/mustella/.gitignore b/mustella/.gitignore
index 26b3888..a42895f 100644
--- a/mustella/.gitignore
+++ b/mustella/.gitignore
@@ -6,4 +6,5 @@ test_files.tmp
 *.lnk.xml
 *.bad.png
 *.bad.png.xml
-classes/
\ No newline at end of file
+classes/
+deps.xml


[12/12] git commit: [flex-sdk] [refs/heads/develop] - script to run mustella a second time if there are failures

Posted by ah...@apache.org.
script to run mustella a second time if there are failures


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/945f90e5
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/945f90e5
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/945f90e5

Branch: refs/heads/develop
Commit: 945f90e58f31009218095b1af3285e200647e2e5
Parents: 090f81b
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 20 21:53:29 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:51 2013 -0700

----------------------------------------------------------------------
 mustella/test_changes.sh |   45 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/945f90e5/mustella/test_changes.sh
----------------------------------------------------------------------
diff --git a/mustella/test_changes.sh b/mustella/test_changes.sh
new file mode 100755
index 0000000..1e20877
--- /dev/null
+++ b/mustella/test_changes.sh
@@ -0,0 +1,45 @@
+#!/bin/bash
+################################################################################
+##
+##  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.
+##
+################################################################################
+##
+## test_changes.sh - runs mini_run.sh -changes and runs mini_run-failures if
+## there are failures
+##
+
+numlines=0
+if [ -s changes.txt ]
+then
+sh ./mini_run.sh -changes
+if [ -s failures.txt ]
+then
+sh ./mini_run.sh -failures
+fi
+else
+	echo "no changes.txt or nothing in it"
+	exit
+fi
+if [ -s failures.txt ]
+then
+    numlines=`wc -l failures.txt | awk {'print $1'}`
+    echo "$numlines tests failed"
+else
+    numlines=`wc -l results.txt | awk {'print $1'}`
+	let "numlines = $numlines - 19"
+    echo "$numlines tests passed"
+fi
\ No newline at end of file


[02/12] git commit: [flex-sdk] [refs/heads/develop] - Revert fix for FLEX-33505. It caused binding side-effects as it sent CHANGE events as you typed in a number because the string can temporarily be not a number like just having a - sign

Posted by ah...@apache.org.
Revert fix for FLEX-33505.  It caused binding side-effects as it sent CHANGE events as you typed in a number because the string can temporarily be not a number like just having a - sign


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/4fe27450
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/4fe27450
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/4fe27450

Branch: refs/heads/develop
Commit: 4fe274505d650164a60a58b26a41b9a8f480f1e1
Parents: 06fe5af
Author: Alex Harui <ah...@apache.org>
Authored: Wed May 15 23:59:40 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:37 2013 -0700

----------------------------------------------------------------------
 .../projects/mx/src/mx/controls/NumericStepper.as  |    9 +++-
 .../spark/src/spark/components/NumericStepper.as   |   37 ++++----------
 2 files changed, 18 insertions(+), 28 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4fe27450/frameworks/projects/mx/src/mx/controls/NumericStepper.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mx/src/mx/controls/NumericStepper.as b/frameworks/projects/mx/src/mx/controls/NumericStepper.as
index dd82b1b..3c188d3 100644
--- a/frameworks/projects/mx/src/mx/controls/NumericStepper.as
+++ b/frameworks/projects/mx/src/mx/controls/NumericStepper.as
@@ -1690,8 +1690,13 @@ public class NumericStepper extends UIComponent
         // Stop the event from bubbling up.
         event.stopImmediatePropagation();
 
-		// fixes FLEX-33505
-		takeValueFromTextField(event);
+        var inputValue:Number = Number(inputField.text);
+        if ((inputValue != value &&
+            (Math.abs(inputValue - value) >= 0.000001 || isNaN(inputValue))) || 
+            inputField.text == "")
+        {
+            _value = checkValidValue(inputValue);
+        }
     }
 
 }

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4fe27450/frameworks/projects/spark/src/spark/components/NumericStepper.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/NumericStepper.as b/frameworks/projects/spark/src/spark/components/NumericStepper.as
index 557d58a..6a45b32 100644
--- a/frameworks/projects/spark/src/spark/components/NumericStepper.as
+++ b/frameworks/projects/spark/src/spark/components/NumericStepper.as
@@ -681,13 +681,9 @@ public class NumericStepper extends Spinner
         
         if (instance == textDisplay)
         {
-			// fixes FLEX-33505
-			textDisplay.addEventListener(Event.CHANGE, 
-                                       textDisplay_changeHandler);
-			
             textDisplay.addEventListener(FlexEvent.ENTER,
                                        textDisplay_enterHandler);
-			textDisplay.addEventListener(FocusEvent.FOCUS_OUT, 
+            textDisplay.addEventListener(FocusEvent.FOCUS_OUT, 
                                        textDisplay_focusOutHandler); 
             textDisplay.focusEnabled = false;
             textDisplay.maxChars = _maxChars;
@@ -897,27 +893,16 @@ public class NumericStepper extends Spinner
     }
    
         
-	/**
-	 *  @private
-	 *  When text is typed in, NumericStepper commits the
-	 *  text currently displayed.
-	 */
-	// fixes FLEX-33505
-	private function textDisplay_changeHandler(event:Event):void
-	{
-		commitTextInput(true);
-	}
-	
-	/**
-	 *  @private
-	 *  When the enter key is pressed, NumericStepper commits the
-	 *  text currently displayed.
-	 */
-	private function textDisplay_enterHandler(event:Event):void
-	{
-		commitTextInput(true);
-	}
-	
+    /**
+     *  @private
+     *  When the enter key is pressed, NumericStepper commits the
+     *  text currently displayed.
+     */
+    private function textDisplay_enterHandler(event:Event):void
+    {
+        commitTextInput(true);
+    }
+    
     /**
      *  @private
      *  When the enter key is pressed, NumericStepper commits the


[05/12] git commit: [flex-sdk] [refs/heads/develop] - Fix FLEX-33505. TitleWindow close button does not cause components to lose focus and save state. Now it will.

Posted by ah...@apache.org.
Fix FLEX-33505.  TitleWindow close button does not cause components to lose focus and save state.  Now it will.


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/9010f8d0
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/9010f8d0
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/9010f8d0

Branch: refs/heads/develop
Commit: 9010f8d05b3f72e631381236a2639cb5d928c981
Parents: 7db1506
Author: Alex Harui <ah...@apache.org>
Authored: Sun May 19 21:24:04 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:41 2013 -0700

----------------------------------------------------------------------
 .../spark/src/spark/components/TitleWindow.as      |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/9010f8d0/frameworks/projects/spark/src/spark/components/TitleWindow.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/TitleWindow.as b/frameworks/projects/spark/src/spark/components/TitleWindow.as
index ee25072..e7f4d28 100644
--- a/frameworks/projects/spark/src/spark/components/TitleWindow.as
+++ b/frameworks/projects/spark/src/spark/components/TitleWindow.as
@@ -471,6 +471,14 @@ public class TitleWindow extends Panel
      */
     protected function closeButton_clickHandler(event:MouseEvent):void
     {
+        var child:DisplayObject = getFocus() as DisplayObject;
+        if (child && contains(child))
+        {
+            // make sure any internal component that has focus
+            // loses focus so it commits changes internally
+            if (stage)
+                stage.focus = null;
+        }
         dispatchEvent(new CloseEvent(CloseEvent.CLOSE));
     }
     


[11/12] git commit: [flex-sdk] [refs/heads/develop] - Fix FLEX-33542. remove empty group. It was confusing linker and causing the cursor's children to include an asset from another symbol

Posted by ah...@apache.org.
Fix FLEX-33542.  remove empty group.  It was confusing linker and causing the cursor's children to include an asset from another symbol


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/090f81b2
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/090f81b2
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/090f81b2

Branch: refs/heads/develop
Commit: 090f81b276a1d72c6c4b81ad2814230902662cb8
Parents: 5b14c48
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 20 14:53:12 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:49 2013 -0700

----------------------------------------------------------------------
 .../projects/framework/assets/CursorStretch.fxg    |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/090f81b2/frameworks/projects/framework/assets/CursorStretch.fxg
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/assets/CursorStretch.fxg b/frameworks/projects/framework/assets/CursorStretch.fxg
index 0380609..b8a8dd2 100644
--- a/frameworks/projects/framework/assets/CursorStretch.fxg
+++ b/frameworks/projects/framework/assets/CursorStretch.fxg
@@ -37,6 +37,5 @@
             </fill>
           </Path>
         </Group>
-        <Group d:type="layer" d:userLabel="Layer 6"/>
   <Private/>
 </Graphic>
\ No newline at end of file


[04/12] git commit: [flex-sdk] [refs/heads/develop] - Don't remove lnk.xml so MustellaDependencyDB has data to work with

Posted by ah...@apache.org.
Don't remove lnk.xml so MustellaDependencyDB has data to work with


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/7db15061
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/7db15061
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/7db15061

Branch: refs/heads/develop
Commit: 7db15061f86c5d1f31b43c870d363e8862a221e2
Parents: 4d3fa09
Author: Alex Harui <ah...@apache.org>
Authored: Sun May 19 21:20:27 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:40 2013 -0700

----------------------------------------------------------------------
 mustella/build.xml |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/7db15061/mustella/build.xml
----------------------------------------------------------------------
diff --git a/mustella/build.xml b/mustella/build.xml
index 9cc7332..e9bbf4e 100644
--- a/mustella/build.xml
+++ b/mustella/build.xml
@@ -924,7 +924,6 @@
                 <include name="${previous.generated.testfiles}"/>
                 <include name="**/*.sh.*.log"/>
                 <include name="**/swfs/**/*.log"/>
-                <include name="**/swfs/**/*.lnk.xml"/>
                 <include name="**/swfs/**/*l*nkreport*.xml"/>
                 <include name="**/*.png.bad.png*"/>
                 <include name="**/swfs/**/*.swf"/>


[09/12] git commit: [flex-sdk] [refs/heads/develop] - Fix MustellaTestChooser to handle git status output

Posted by ah...@apache.org.
Fix MustellaTestChooser to handle git status output


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/39aea65d
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/39aea65d
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/39aea65d

Branch: refs/heads/develop
Commit: 39aea65da63b18d1de127bc45a016f48b37acaaa
Parents: 6067e9e
Author: Alex Harui <ah...@apache.org>
Authored: Sun May 19 22:07:20 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:48 2013 -0700

----------------------------------------------------------------------
 .../src/MustellaTestChooser.mxml                   |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/39aea65d/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser.mxml
----------------------------------------------------------------------
diff --git a/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser.mxml b/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser.mxml
index 37a4b73..38c2ec5 100644
--- a/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser.mxml
+++ b/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser.mxml
@@ -49,7 +49,7 @@ limitations under the License.
 				for (var i:int = 0; i < n; i++)
 				{
 					var file:String = files[i];
-					if (file.charAt(0) == "M")
+					if (file.indexOf("#\tmodified:   ") != -1)
 					{
 						modFiles.push(file);
 					}
@@ -66,7 +66,7 @@ limitations under the License.
 				for (i = 0; i < n; i++)
 				{
 					file = modFiles[i];
-					file = file.substr(8);
+					file = file.substr(14);
 					var c:int;
 					c = file.indexOf(".as");
 					if (c != -1)
@@ -232,7 +232,7 @@ limitations under the License.
 		<s:TextInput id="dir" width="100%" toolTip="The mustella dir, not the tests dir"/>
 		<s:Button label="Browse..." click="browse()" />
 	</s:HGroup>
-	<s:Label text="Copy and paste SVN Status below" />
+	<s:Label text="Copy and paste Git Status below" />
 	<s:TextArea id="statusLog" width="100%" change="doneLabel.visible=false"/>
 	<s:HGroup>
 		<s:Button label="Compute Tests" enabled="{statusLog.text.length > 0}" click="callLater(computeTests)" />


[07/12] git commit: [flex-sdk] [refs/heads/develop] - Add tests to catch changes to CHANGE event behavior

Posted by ah...@apache.org.
Add tests to catch changes to CHANGE event behavior


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/17a92944
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/17a92944
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/17a92944

Branch: refs/heads/develop
Commit: 17a92944490966c0deb1265a882df6cdd54dc566
Parents: 2905e43
Author: Alex Harui <ah...@apache.org>
Authored: Sun May 19 21:40:27 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:44 2013 -0700

----------------------------------------------------------------------
 .../Events/NumericStepper_Events.mxml              |   37 +++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/17a92944/mustella/tests/gumbo/components/NumericStepper/Events/NumericStepper_Events.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/NumericStepper/Events/NumericStepper_Events.mxml b/mustella/tests/gumbo/components/NumericStepper/Events/NumericStepper_Events.mxml
index edd9268..6484c4d 100644
--- a/mustella/tests/gumbo/components/NumericStepper/Events/NumericStepper_Events.mxml
+++ b/mustella/tests/gumbo/components/NumericStepper/Events/NumericStepper_Events.mxml
@@ -244,6 +244,43 @@
 		    </body>
         </TestCase>        
                           
+        <TestCase testID="NumericStepper_checkChangeEvents" keywords="[NumericStepper,change,Event]" description="Test Spark Numeric Stepper change events when typing">
+            <setup>
+                <ResetComponent target="myNS" className="comps.myCustomNS" waitEvent="updateComplete" waitTarget="myNS"/>		    			        
+            </setup>
+            <body>	        
+                <SetProperty target="myNS" propertyName="minimum" value="-10" />
+                <SetProperty target="myNS" propertyName="stepSize" value="0.5" />
+                <SetProperty target="myNS" propertyName="snapInterval" value="0.5" waitEvent="updateComplete"/>
+                <AssertPropertyValue target="myNS" propertyName="value" value="0" />
+                <DispatchKeyEvent key="TAB" waitEvent="focusIn" waitTarget="myNS" />
+                <DispatchKeyEvent char="-" waitEvent="keyUp" />
+                <AssertNoEvent target="myNS" eventName="valueCommit" eventClass="mx.events::FlexEvent" />
+                <AssertNoEvent target="myNS" eventName="change" eventClass="flash.events::Event" />
+                <AssertPropertyValue target="myNS" propertyName="value" value="0" />
+                <DispatchKeyEvent char="1.5" waitEvent="keyUp"/>
+                <AssertNoEvent target="myNS" eventName="change" eventClass="flash.events::Event" />
+                <AssertPropertyValue target="myNS" propertyName="value" value="0" />
+            </body>
+        </TestCase>        
+        <TestCase testID="NumericStepper_checkChangeEventsTabOut" keywords="[NumericStepper,change,Event]" description="Test Spark Numeric Stepper change events when typing">
+            <setup>
+                <ResetComponent target="myNS" className="comps.myCustomNS" waitEvent="updateComplete" waitTarget="myNS"/>		    			        
+            </setup>
+            <body>	        
+                <SetProperty target="myNS" propertyName="minimum" value="-10" />
+                <SetProperty target="myNS" propertyName="stepSize" value="0.5" />
+                <SetProperty target="myNS" propertyName="snapInterval" value="0.5" waitEvent="updateComplete"/>
+                <AssertPropertyValue target="myNS" propertyName="value" value="0" />
+                <DispatchKeyEvent key="TAB" waitEvent="focusIn" waitTarget="myNS" />
+                <DispatchKeyEvent char="-" waitEvent="keyUp" />
+                <AssertPropertyValue target="myNS" propertyName="value" value="0" />
+                <DispatchKeyEvent char="1.5" waitEvent="keyUp"/>
+                <AssertPropertyValue target="myNS" propertyName="value" value="0" />
+                <DispatchKeyEvent key="TAB" waitEvent="change" waitTarget="myNS" />
+                <AssertPropertyValue target="myNS" propertyName="value" value="-1.5" />
+            </body>
+        </TestCase>        
     </testCases>
     
 </UnitTester>


[08/12] git commit: [flex-sdk] [refs/heads/develop] - add changes.txt

Posted by ah...@apache.org.
add changes.txt


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/6067e9ef
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/6067e9ef
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/6067e9ef

Branch: refs/heads/develop
Commit: 6067e9ef4d8881899db4d9ea00cc92347c7bb013
Parents: 17a9294
Author: Alex Harui <ah...@apache.org>
Authored: Sun May 19 22:04:51 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:47 2013 -0700

----------------------------------------------------------------------
 mustella/.gitignore |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/6067e9ef/mustella/.gitignore
----------------------------------------------------------------------
diff --git a/mustella/.gitignore b/mustella/.gitignore
index a42895f..4c5dbc6 100644
--- a/mustella/.gitignore
+++ b/mustella/.gitignore
@@ -8,3 +8,5 @@ test_files.tmp
 *.bad.png.xml
 classes/
 deps.xml
+changes.txt
+


[06/12] git commit: [flex-sdk] [refs/heads/develop] - Fix FLEX-28247. Editor should cause component to lose focus and save state before saving edited data

Posted by ah...@apache.org.
Fix FLEX-28247.  Editor should cause component to lose focus and save state before saving edited data


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/2905e438
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/2905e438
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/2905e438

Branch: refs/heads/develop
Commit: 2905e438cdfe2d49d9636ce44a3b2d4d568b4cc0
Parents: 9010f8d
Author: Alex Harui <ah...@apache.org>
Authored: Sun May 19 21:25:39 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:43 2013 -0700

----------------------------------------------------------------------
 .../spark/components/gridClasses/GridItemEditor.as |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2905e438/frameworks/projects/spark/src/spark/components/gridClasses/GridItemEditor.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/gridClasses/GridItemEditor.as b/frameworks/projects/spark/src/spark/components/gridClasses/GridItemEditor.as
index 6156634..205eec0 100644
--- a/frameworks/projects/spark/src/spark/components/gridClasses/GridItemEditor.as
+++ b/frameworks/projects/spark/src/spark/components/gridClasses/GridItemEditor.as
@@ -460,6 +460,10 @@ public class GridItemEditor extends Group implements IGridItemEditor
         if (!validate())
             return false;
         
+        // set focus to DataGrid to force internal components to commit changes to 
+        // their data properties.
+        dataGrid.setFocus();
+        
         var newData:Object = value;
         var property:String;
         var data:Object = data;


[10/12] git commit: [flex-sdk] [refs/heads/develop] - Hardcode SWF names in app.xml so it can be built and run from command line

Posted by ah...@apache.org.
Hardcode SWF names in app.xml so it can be built and run from command line


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/5b14c48a
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/5b14c48a
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/5b14c48a

Branch: refs/heads/develop
Commit: 5b14c48a1ae6b131cf857b1880f38f6f0d5323b5
Parents: 39aea65
Author: Alex Harui <ah...@apache.org>
Authored: Sun May 19 22:08:29 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 21 11:24:48 2013 -0700

----------------------------------------------------------------------
 .../src/MustellaDependencyDB-app.xml               |    2 +-
 .../src/MustellaTestChooser-app.xml                |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5b14c48a/mustella/utilities/MustellaDependencyDB/src/MustellaDependencyDB-app.xml
----------------------------------------------------------------------
diff --git a/mustella/utilities/MustellaDependencyDB/src/MustellaDependencyDB-app.xml b/mustella/utilities/MustellaDependencyDB/src/MustellaDependencyDB-app.xml
index 10d9132..dec4998 100644
--- a/mustella/utilities/MustellaDependencyDB/src/MustellaDependencyDB-app.xml
+++ b/mustella/utilities/MustellaDependencyDB/src/MustellaDependencyDB-app.xml
@@ -64,7 +64,7 @@
 	<initialWindow>
 		<!-- The main SWF or HTML file of the application. Required. -->
 		<!-- Note: In Flash Builder, the SWF reference is set automatically. -->
-		<content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
+		<content>MustellaDependencyDB.swf</content>
 		
 		<!-- The title of the main window. Optional. -->
 		<!-- <title></title> -->

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5b14c48a/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser-app.xml
----------------------------------------------------------------------
diff --git a/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser-app.xml b/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser-app.xml
index 940c0a7..e6a230d 100644
--- a/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser-app.xml
+++ b/mustella/utilities/MustellaTestChooser/src/MustellaTestChooser-app.xml
@@ -64,7 +64,7 @@
 	<initialWindow>
 		<!-- The main SWF or HTML file of the application. Required. -->
 		<!-- Note: In Flash Builder, the SWF reference is set automatically. -->
-		<content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
+		<content>MustellaTestChooser.swf</content>
 		
 		<!-- The title of the main window. Optional. -->
 		<!-- <title></title> -->