You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2017/03/15 04:05:49 UTC

[01/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - FLEX-34738 Fix BusyIndicator so the skin / timer is removed when it's removed from stage while still spinning.

Repository: flex-sdk
Updated Branches:
  refs/heads/master 07e452bcb -> ea8a5ab63


FLEX-34738 Fix BusyIndicator so the skin / timer is removed when it's removed from stage while still spinning.


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

Branch: refs/heads/master
Commit: cd45ebd253dbc44f45515d607c4324a4871b5679
Parents: d175d2c
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Nov 8 10:55:12 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Nov 8 10:55:12 2016 +1100

----------------------------------------------------------------------
 .../src/spark/skins/ios7/BusyIndicatorSkin.as   | 20 ++++++++++++++-----
 .../src/spark/skins/spark/BusyIndicatorSkin.as  | 21 ++++++++++++++++----
 2 files changed, 32 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/cd45ebd2/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as b/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as
index 805887b..a4fe64f 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as
+++ b/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as
@@ -153,6 +153,16 @@ package spark.skins.ios7
 				symbolColorChanged = true;
 				invalidateDisplayList();
 			}
+			if (styleProp == "styleName") {
+				var value:String = getStyle("styleName");
+				
+				// We're being removed from the stage
+				if (value == null) {
+					stopRotation();
+					busyIndicatorBackground = null;
+					busyIndicator = null;
+				}
+			}
 			super.styleChanged(styleProp);
 		}
 		
@@ -206,15 +216,15 @@ package spark.skins.ios7
 			event.updateAfterEvent();
 		}
 		
-		private var rotationMatrix:Matrix; 
 		private function rotate(obj:DisplayObject, angle:Number, aroundX:Number, aroundY:Number):void
 		{
-			rotationMatrix = new Matrix();
-			rotationMatrix.translate(-aroundX,-aroundY);
+			var center:Number = Math.min(aroundX, aroundY); // stop wobbling if not square
+			var rotationMatrix:Matrix = new Matrix();
+			rotationMatrix.translate(-center,-center);
 			rotationMatrix.rotate(Math.PI*angle/180);
-			rotationMatrix.translate(aroundX,aroundY);
+			rotationMatrix.translate(center,center);
 			obj.transform.matrix = rotationMatrix;
 		}
 		
 	}
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/cd45ebd2/frameworks/projects/spark/src/spark/skins/spark/BusyIndicatorSkin.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/skins/spark/BusyIndicatorSkin.as b/frameworks/projects/spark/src/spark/skins/spark/BusyIndicatorSkin.as
index c1c98e5..b0feef0 100644
--- a/frameworks/projects/spark/src/spark/skins/spark/BusyIndicatorSkin.as
+++ b/frameworks/projects/spark/src/spark/skins/spark/BusyIndicatorSkin.as
@@ -239,6 +239,18 @@ package spark.skins.spark
 				symbolColorChanged = true;
 				invalidateDisplayList();
 			}
+			
+			if (styleProp == "styleName") {
+				var value:String = getStyle("styleName");
+				
+				// We're being removed from the stage
+				if (value == null) {
+					stopRotation();
+					busyIndicatorBackground = null;
+					busyIndicator = null;
+				}
+			}
+			
 			super.styleChanged(styleProp);
 		}
 		
@@ -326,16 +338,17 @@ package spark.skins.spark
 			event.updateAfterEvent();
 		}
 		
-		private var rotationMatrix:Matrix; 
 		private function rotate(obj:DisplayObject, angle:Number, aroundX:Number, aroundY:Number):void
 		{
-			rotationMatrix = new Matrix();
-			rotationMatrix.translate(-aroundX,-aroundY);
+			var center:Number = Math.min(aroundX, aroundY); // stop wobbling if not square
+			var rotationMatrix:Matrix = new Matrix();
+			rotationMatrix.translate(-center,-center);
 			rotationMatrix.rotate(Math.PI*angle/180);
-			rotationMatrix.translate(aroundX,aroundY);
+			rotationMatrix.translate(center,center);
 			obj.transform.matrix = rotationMatrix;
 		}
 		
 	}
 }
 
+


[14/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - FLEX-35084 add -broker-local-connection and -broker-product-manager options

Posted by jm...@apache.org.
FLEX-35084 add -broker-local-connection and -broker-product-manager options


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

Branch: refs/heads/master
Commit: 77d6955b7333b7df353bad795cf7c552557c7f7e
Parents: 4aae545
Author: Alex Harui <ah...@apache.org>
Authored: Mon Nov 21 23:31:20 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Nov 21 23:31:20 2016 -0800

----------------------------------------------------------------------
 .../macromedia/asc/util/version.properties      |  1 +
 .../java/macromedia/asc/embedding/SwfMaker.java | 16 +++++++++-
 .../flex2/compiler/common/Configuration.java    | 32 ++++++++++++++++++++
 .../java/flex2/linker/LinkerConfiguration.java  |  4 +++
 .../src/java/flex2/linker/SimpleMovie.java      | 10 ++++++
 .../tools/flexbuilder/BuilderConfiguration.java | 10 ++++++
 .../src/java/flex2/tools/oem/Configuration.java | 22 ++++++++++++++
 .../oem/internal/ConfigurationConstants.java    |  2 ++
 .../tools/oem/internal/LinkerConfiguration.java | 24 +++++++++++++++
 .../tools/oem/internal/OEMConfiguration.java    | 30 ++++++++++++++++++
 .../swfutils/src/java/flash/swf/TagDecoder.java |  7 ++++-
 .../swfutils/src/java/flash/swf/TagEncoder.java |  4 ++-
 .../src/java/flash/swf/tags/FileAttributes.java |  4 +++
 .../src/java/flash/swf/tools/SwfxParser.java    |  2 ++
 .../src/java/flash/swf/tools/SwfxPrinter.java   |  2 ++
 15 files changed, 167 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/asc/build/java/classes/macromedia/asc/util/version.properties
----------------------------------------------------------------------
diff --git a/modules/asc/build/java/classes/macromedia/asc/util/version.properties b/modules/asc/build/java/classes/macromedia/asc/util/version.properties
new file mode 100644
index 0000000..39edfcd
--- /dev/null
+++ b/modules/asc/build/java/classes/macromedia/asc/util/version.properties
@@ -0,0 +1 @@
+build=20161121
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/asc/src/java/macromedia/asc/embedding/SwfMaker.java
----------------------------------------------------------------------
diff --git a/modules/asc/src/java/macromedia/asc/embedding/SwfMaker.java b/modules/asc/src/java/macromedia/asc/embedding/SwfMaker.java
index c7cff7f..961d703 100644
--- a/modules/asc/src/java/macromedia/asc/embedding/SwfMaker.java
+++ b/modules/asc/src/java/macromedia/asc/embedding/SwfMaker.java
@@ -40,6 +40,8 @@ public class SwfMaker
 	public static final int swfFlagsNoCrossdomainCache  = 0x00000004;  // do not add this SWF to the Asset Cache
 	public static final int swfFlagsAS3                 = 0x00000008;  // this SWF contains AVM+ bytecodes
 	public static final int swfFlagsHasMetadata         = 0x00000010;  // this SWF contains stagMetadata somewhere
+    public static final int swfFlagsBrokerLocalConnection = 0x00004000;  // broker local connections
+    public static final int swfFlagsBrokerProductManager = 0x00008000;  // broker product manager
 	// (this is not relevant to the player, but is relevant to search engines)
 	public static final int kDefaultSwfFlags            = 0x00000000;   // these flags are assumed when no stagFileAttributes is present
 
@@ -229,6 +231,8 @@ public class SwfMaker
 		String className = null;
 		int width, height, fps = 12;
         int useNetwork=0;
+        int brokerLocalConnection=0;
+        int brokerProductManager=0;
 
         boolean debug = false;
 		int dAt = options.indexOf(",-g");
@@ -243,6 +247,16 @@ public class SwfMaker
             useNetwork=swfFlagsUseNetwork;
             options = options.substring(0, dAt) + options.substring(dAt+12);
         }
+        dAt = options.indexOf(",-brokerLocalConnection");
+        if (dAt>-1) {
+            brokerLocalConnection=swfFlagsBrokerLocalConnection;
+            options = options.substring(0, dAt) + options.substring(dAt+23);
+        }
+        dAt = options.indexOf(",-brokerProductManager");
+        if (dAt>-1) {
+            brokerProductManager=swfFlagsBrokerProductManager;
+            options = options.substring(0, dAt) + options.substring(dAt+22);
+        }
 
         StringTokenizer tokenizer = new StringTokenizer(options, ",");
 		switch (tokenizer.countTokens())
@@ -282,7 +296,7 @@ public class SwfMaker
 		PutWord(1);       // # of frames  SDD ### Change to sensicle number
 
 		StartTag(stagFileAttributes, false);
-		PutDWord(swfFlagsAS3|useNetwork);
+		PutDWord(swfFlagsAS3|useNetwork|brokerLocalConnection|brokerProductManager);
 		FinishTag();
 
 		if (debug)

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/compiler/src/java/flex2/compiler/common/Configuration.java
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/compiler/common/Configuration.java b/modules/compiler/src/java/flex2/compiler/common/Configuration.java
index 9c89347..dfc2906 100644
--- a/modules/compiler/src/java/flex2/compiler/common/Configuration.java
+++ b/modules/compiler/src/java/flex2/compiler/common/Configuration.java
@@ -1167,6 +1167,38 @@ public class Configuration implements LinkerConfiguration, Cloneable
         this.useNetwork = b;
     }
 
+    //
+    // 'broker-local-connection' option
+    //
+    
+    private boolean brokerLocalConnection;
+    
+    public boolean brokerLocalConnection()
+    {
+        return brokerLocalConnection;
+    }
+    
+    public void cfgBrokerLocalConnection( ConfigurationValue cv, boolean b)
+    {
+        this.brokerLocalConnection = b;
+    }
+    
+    //
+    // 'broker-product-manager' option
+    //
+    
+    private boolean brokerProductManager;
+    
+    public boolean brokerProductManager()
+    {
+        return brokerProductManager;
+    }
+    
+    public void cfgBrokerProductManager( ConfigurationValue cv, boolean b)
+    {
+        this.brokerProductManager = b;
+    }
+    
     
 
 	/**

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/compiler/src/java/flex2/linker/LinkerConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/linker/LinkerConfiguration.java b/modules/compiler/src/java/flex2/linker/LinkerConfiguration.java
index 28dd782..75adf5c 100644
--- a/modules/compiler/src/java/flex2/linker/LinkerConfiguration.java
+++ b/modules/compiler/src/java/flex2/linker/LinkerConfiguration.java
@@ -47,6 +47,10 @@ public interface LinkerConfiguration
 
 	boolean useNetwork();
 
+    boolean brokerLocalConnection();
+    
+    boolean brokerProductManager();
+    
 	boolean lazyInit();
 
     boolean scriptLimitsSet();

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/compiler/src/java/flex2/linker/SimpleMovie.java
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/linker/SimpleMovie.java b/modules/compiler/src/java/flex2/linker/SimpleMovie.java
index fe59138..8a0f138 100644
--- a/modules/compiler/src/java/flex2/linker/SimpleMovie.java
+++ b/modules/compiler/src/java/flex2/linker/SimpleMovie.java
@@ -128,6 +128,16 @@ public class SimpleMovie extends Movie
 	            fileAttributes.actionScript3 = (version >= 9);
             }
             
+            if (configuration.brokerLocalConnection())
+            {
+                fileAttributes.brokerLocalConnection = true;
+            }
+            
+            if (configuration.brokerProductManager())
+            {
+                fileAttributes.brokerProductManager = true;
+            }
+            
             if (configuration.getAdvancedTelemetry()) {
             	enableTelemetry.enabled = true;
             }

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/compiler/src/java/flex2/tools/flexbuilder/BuilderConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/flexbuilder/BuilderConfiguration.java b/modules/compiler/src/java/flex2/tools/flexbuilder/BuilderConfiguration.java
index ee0faec..c8edeaf 100644
--- a/modules/compiler/src/java/flex2/tools/flexbuilder/BuilderConfiguration.java
+++ b/modules/compiler/src/java/flex2/tools/flexbuilder/BuilderConfiguration.java
@@ -414,6 +414,16 @@ public class BuilderConfiguration implements Configuration
 		configuration.useNetwork(b);
 	}
 
+    public void brokerProductManager(boolean b)
+    {
+        configuration.brokerProductManager(b);
+    }
+    
+    public void brokerLocalConnection(boolean b)
+    {
+        configuration.brokerLocalConnection(b);
+    }
+    
 	public void useResourceBundleMetaData(boolean b)
 	{
 		configuration.useResourceBundleMetaData(b);

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/compiler/src/java/flex2/tools/oem/Configuration.java
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/oem/Configuration.java b/modules/compiler/src/java/flex2/tools/oem/Configuration.java
index e25f8c6..8aa120d 100644
--- a/modules/compiler/src/java/flex2/tools/oem/Configuration.java
+++ b/modules/compiler/src/java/flex2/tools/oem/Configuration.java
@@ -1174,6 +1174,28 @@ public interface Configuration
     void useNetwork(boolean b);
     
     /**
+     * Toggles whether the application SWF is flagged broker local connections.
+     * This is equivalent to the <code>broker-local-connection</code> option of the mxmlc or compc compilers.
+     *
+     * <p>
+     * The default value is <code>true</code>.
+     *
+     * @param b Boolean value.
+     */
+    void brokerLocalConnection(boolean b);
+    
+    /**
+     * Toggles whether the application SWF is flagged to broker product manager.
+     * This is equivalent to the <code>broker-product-manager</code> option of the mxmlc or compc compilers.
+     *
+     * <p>
+     * The default value is <code>true</code>.
+     *
+     * @param b Boolean value.
+     */
+    void brokerProductManager(boolean b);
+    
+    /**
      * Set the default output directory for configuration settings.
      * 
      */

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/compiler/src/java/flex2/tools/oem/internal/ConfigurationConstants.java
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/oem/internal/ConfigurationConstants.java b/modules/compiler/src/java/flex2/tools/oem/internal/ConfigurationConstants.java
index c167982..30696b0 100644
--- a/modules/compiler/src/java/flex2/tools/oem/internal/ConfigurationConstants.java
+++ b/modules/compiler/src/java/flex2/tools/oem/internal/ConfigurationConstants.java
@@ -27,6 +27,8 @@ package flex2.tools.oem.internal;
 interface ConfigurationConstants
 {
     String USE_NETWORK                                          = "--use-network";
+    String BROKER_LOCAL_CONNECTION                              = "--broker-local-connection";
+    String BROKER_PRODUCT_MANAGER                               = "--broker-product-manager";
     String RUNTIME_SHARED_LIBRARIES                             = "--runtime-shared-libraries";
     String RAW_METADATA                                         = "--raw-metadata";
     String PROJECTOR                                            = "--projector";

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/compiler/src/java/flex2/tools/oem/internal/LinkerConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/oem/internal/LinkerConfiguration.java b/modules/compiler/src/java/flex2/tools/oem/internal/LinkerConfiguration.java
index 946b747..e20787c 100644
--- a/modules/compiler/src/java/flex2/tools/oem/internal/LinkerConfiguration.java
+++ b/modules/compiler/src/java/flex2/tools/oem/internal/LinkerConfiguration.java
@@ -338,6 +338,30 @@ public class LinkerConfiguration extends ToolsConfiguration implements flex2.lin
 		}
 	}
 
+    public boolean brokerProductManager()
+    {
+        if (args.contains(ConfigurationConstants.BROKER_PRODUCT_MANAGER))
+        {
+            return super.brokerProductManager();
+        }
+        else
+        {
+            return original.brokerProductManager();
+        }
+    }
+    
+    public boolean brokerLocalConnection()
+    {
+        if (args.contains(ConfigurationConstants.BROKER_LOCAL_CONNECTION))
+        {
+            return super.brokerLocalConnection();
+        }
+        else
+        {
+            return original.brokerLocalConnection();
+        }
+    }
+    
 	public String width()
 	{
 		return original.width();

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/compiler/src/java/flex2/tools/oem/internal/OEMConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/oem/internal/OEMConfiguration.java b/modules/compiler/src/java/flex2/tools/oem/internal/OEMConfiguration.java
index 3afdd12..7cade9c 100644
--- a/modules/compiler/src/java/flex2/tools/oem/internal/OEMConfiguration.java
+++ b/modules/compiler/src/java/flex2/tools/oem/internal/OEMConfiguration.java
@@ -1931,6 +1931,34 @@ public class OEMConfiguration implements Configuration, ConfigurationConstants,
 		newLinkerOptionsAfterCompile.add(USE_NETWORK);
 	}
 	
+    /**
+     * Toggles whether the application SWF is has the broker-local-connection bit set.
+     * This is equivalent to using <code>mxmlc/compc --broker-local-connection</code>.
+     * By default, it is set to <code>false</code>.
+     *
+     * @param b boolean value
+     */
+    public void brokerLocalConnection(boolean b)
+    {
+        args.put(BROKER_LOCAL_CONNECTION, b ? Boolean.TRUE : Boolean.FALSE);
+        linker_args.put(BROKER_LOCAL_CONNECTION, b ? Boolean.TRUE : Boolean.FALSE);
+        newLinkerOptionsAfterCompile.add(BROKER_LOCAL_CONNECTION);
+    }
+    
+    /**
+     * Toggles whether the application SWF is has the broker-product-manager bit set.
+     * This is equivalent to using <code>mxmlc/compc --broker-product-manager</code>.
+     * By default, it is set to <code>false</code>.
+     *
+     * @param b boolean value
+     */
+    public void brokerProductManager(boolean b)
+    {
+        args.put(BROKER_PRODUCT_MANAGER, b ? Boolean.TRUE : Boolean.FALSE);
+        linker_args.put(BROKER_PRODUCT_MANAGER, b ? Boolean.TRUE : Boolean.FALSE);
+        newLinkerOptionsAfterCompile.add(BROKER_PRODUCT_MANAGER);
+    }
+    
 	/**
 	 * Defines a token. mxmlc and compc support token substitutions. For example,
 	 * 
@@ -2353,6 +2381,8 @@ public class OEMConfiguration implements Configuration, ConfigurationConstants,
 		setSWFMetaData(c.getMetadata());
 		setRuntimeSharedLibraries(toStrings(c.getRuntimeSharedLibraries()));
 		useNetwork(c.useNetwork());
+        brokerLocalConnection(c.brokerLocalConnection());
+        brokerProductManager(c.brokerProductManager());
 		
 		// useMobileFramework();
 		

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/swfutils/src/java/flash/swf/TagDecoder.java
----------------------------------------------------------------------
diff --git a/modules/swfutils/src/java/flash/swf/TagDecoder.java b/modules/swfutils/src/java/flash/swf/TagDecoder.java
index 45b7326..526780b 100644
--- a/modules/swfutils/src/java/flash/swf/TagDecoder.java
+++ b/modules/swfutils/src/java/flash/swf/TagDecoder.java
@@ -2788,15 +2788,20 @@ public final class TagDecoder
     {
         FileAttributes tag = new FileAttributes();
         r.syncBits();
+        
         r.readUBits(1); //reserved
         tag.useDirectBlit = r.readBit();
         tag.useGPU = r.readBit();
         tag.hasMetadata = r.readBit();
+        
         tag.actionScript3 = r.readBit();
         tag.suppressCrossDomainCaching = r.readBit();
         tag.swfRelativeUrls = r.readBit();
         tag.useNetwork = r.readBit();
-        r.readUBits(24); //reserved
+        
+        tag.brokerProductManager = r.readBit();
+        tag.brokerLocalConnection = r.readBit();
+        r.readUBits(22); //reserved
         return tag;
     }
     

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/swfutils/src/java/flash/swf/TagEncoder.java
----------------------------------------------------------------------
diff --git a/modules/swfutils/src/java/flash/swf/TagEncoder.java b/modules/swfutils/src/java/flash/swf/TagEncoder.java
index 4652ed1..a723875 100644
--- a/modules/swfutils/src/java/flash/swf/TagEncoder.java
+++ b/modules/swfutils/src/java/flash/swf/TagEncoder.java
@@ -114,7 +114,9 @@ public class TagEncoder extends TagHandler
         tagw.writeBit(tag.suppressCrossDomainCaching);
         tagw.writeBit(tag.swfRelativeUrls);
         tagw.writeBit(tag.useNetwork);
-        tagw.writeUBits(0, 24);
+        tagw.writeBit(tag.brokerProductManager);
+        tagw.writeBit(tag.brokerLocalConnection);
+        tagw.writeUBits(0, 22);
         encodeTag(tag);
     }
     

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/swfutils/src/java/flash/swf/tags/FileAttributes.java
----------------------------------------------------------------------
diff --git a/modules/swfutils/src/java/flash/swf/tags/FileAttributes.java b/modules/swfutils/src/java/flash/swf/tags/FileAttributes.java
index 2f4b27f..5a43e8f 100644
--- a/modules/swfutils/src/java/flash/swf/tags/FileAttributes.java
+++ b/modules/swfutils/src/java/flash/swf/tags/FileAttributes.java
@@ -45,6 +45,8 @@ public class FileAttributes extends Tag
     public boolean useNetwork;
     public boolean useGPU;
     public boolean useDirectBlit;
+    public boolean brokerProductManager;
+    public boolean brokerLocalConnection;
 
     public FileAttributes()
     {
@@ -70,6 +72,8 @@ public class FileAttributes extends Tag
                 (tag.swfRelativeUrls == this.swfRelativeUrls) &&
                 (tag.useDirectBlit == this.useDirectBlit) &&
                 (tag.useGPU == this.useGPU) &&
+                (tag.brokerProductManager == this.brokerProductManager) &&
+                (tag.brokerLocalConnection == this.brokerLocalConnection) &&
                 (tag.useNetwork == this.useNetwork))
             {
                 isEqual = true;

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/swfutils/src/java/flash/swf/tools/SwfxParser.java
----------------------------------------------------------------------
diff --git a/modules/swfutils/src/java/flash/swf/tools/SwfxParser.java b/modules/swfutils/src/java/flash/swf/tools/SwfxParser.java
index 474d7bc..217b53d 100644
--- a/modules/swfutils/src/java/flash/swf/tools/SwfxParser.java
+++ b/modules/swfutils/src/java/flash/swf/tools/SwfxParser.java
@@ -497,6 +497,8 @@ public class SwfxParser extends DefaultHandler
         tag.suppressCrossDomainCaching = parseBoolean(getAttribute(attributes, "suppressCrossDomainCaching"));
         tag.swfRelativeUrls = parseBoolean(getAttribute(attributes, "swfRelativeUrls"));
         tag.useNetwork = parseBoolean(getAttribute(attributes, "useNetwork"));
+        tag.brokerProductManager = parseBoolean(getAttribute(attributes, "brokerProductManager"));
+        tag.brokerLocalConnection = parseBoolean(getAttribute(attributes, "brokerLocalConnection"));
         stack.push(tag);
     }
     

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77d6955b/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
----------------------------------------------------------------------
diff --git a/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java b/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
index 87bd084..5f1a13d 100644
--- a/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
+++ b/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
@@ -228,6 +228,8 @@ public final class SwfxPrinter extends TagHandler
 			out.print(" suppressCrossDomainCaching='" + tag.suppressCrossDomainCaching + "'");
 			out.print(" swfRelativeUrls='" + tag.swfRelativeUrls + "'");
 			out.print(" useNetwork='" + tag.useNetwork + "'");
+            out.print(" brokerProductManager='" + tag.brokerProductManager + "'");
+            out.print(" brokerLocalConnection='" + tag.brokerLocalConnection + "'");
 			close();
 		}
 		


[42/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - FLEX-35149 updating release notes with fix for FLEX-27509

Posted by jm...@apache.org.
FLEX-35149 updating release notes with fix for FLEX-27509


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

Branch: refs/heads/master
Commit: 7418641acc7a1fafaf4de965842e8b342a9a46be
Parents: 4102e70
Author: Mihai Chira <mi...@apache.org>
Authored: Thu Jan 12 17:02:42 2017 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Thu Jan 12 17:02:42 2017 +0100

----------------------------------------------------------------------
 RELEASE_NOTES | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/7418641a/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 7edf235..5aaadc3 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -54,6 +54,7 @@ FLEX-33311  Null pointer fatal in ConstraintLayout when executing Transition on
 FLEX-33058  RTE in HierarchicalCollectionViewCursor when a refresh occurs and old cursor
 		had an enumerable property that new cursor item doesn't
 FLEX-31948  When all the columns are invisible, pressing any character Key throws RTE
+FLEX-27509  AdvancedListBase itemMaskFreeList is null
 FLEX-26808  s:DataGrid Drag and Drop of multiple items doesn't work
 FLEX-20313  SelectItem on AdvancedDataGrid use weird code
 


[29/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Copy contents of directory rather than directory

Posted by jm...@apache.org.
Copy contents of directory rather than directory


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

Branch: refs/heads/master
Commit: 9e7632dfe4cf305b7ba29765514947ce3720c8c7
Parents: 0ebd3e5
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Dec 19 10:18:13 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Dec 19 10:18:13 2016 +1100

----------------------------------------------------------------------
 ide/addAIRtoSDK.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/9e7632df/ide/addAIRtoSDK.sh
----------------------------------------------------------------------
diff --git a/ide/addAIRtoSDK.sh b/ide/addAIRtoSDK.sh
index 50fdb97..66cd339 100755
--- a/ide/addAIRtoSDK.sh
+++ b/ide/addAIRtoSDK.sh
@@ -117,7 +117,7 @@ downloadAIR()
 	
 	echo Extracting into SDK 
 	hdiutil attach "${airTempDir}"/air.dmg
-	cp -R "/Volumes/AIR SDK" "${IDE_SDK_DIR}"
+	cp -R "/Volumes/AIR SDK/" "${IDE_SDK_DIR}"
 	umount "/Volumes/AIR SDK"
     else
 	echo Downloading AIR ${version}


[12/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Merge branch 'develop' into release4.16.0

Posted by jm...@apache.org.
Merge branch 'develop' into release4.16.0


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

Branch: refs/heads/master
Commit: 78431c690e7692484d5c1fef3709c64e62b98e63
Parents: 1318395 4ead771
Author: Mihai Chira <mi...@apache.org>
Authored: Wed Nov 9 14:51:41 2016 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Wed Nov 9 14:51:41 2016 +0100

----------------------------------------------------------------------
 frameworks/projects/framework/src/mx/collections/Sort.as      | 5 +++++
 frameworks/projects/framework/src/mx/collections/SortField.as | 5 +++++
 frameworks/projects/spark/src/spark/collections/Sort.as       | 5 +++++
 frameworks/projects/spark/src/spark/collections/SortField.as  | 5 +++++
 4 files changed, 20 insertions(+)
----------------------------------------------------------------------



[41/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - FLEX-27509 CAUSE: In an AdvancedDataGrid with non-text item renderers AdvancedDataGrid.expandItem() applies masks onto those item renderers when it needs to close a node. At the same time, Adva

Posted by jm...@apache.org.
FLEX-27509
CAUSE: In an AdvancedDataGrid with non-text item renderers AdvancedDataGrid.expandItem() applies masks onto those item renderers when it needs to close a node. At the same time, AdvancedListBase has its own custom mechanism for using masks to scroll vertically in a more efficient way. In order to detect whether it's used this mechanism, and reset the changes (detection happens in AdvancedListBase.removeClipMask(), while the mechanism is applied in addClipMask()), it simply asks whether the non-text item renderer has a mask applied. However, this mask could have been applied by the expandItem() mechanism mentioned above, which means that addClipMask() will never have been called. As a result, itemMaskFreeList is still null, which leads to the fatal.

SOLUTION: Ideally there should be a flag that specifies whether AdvancedListBase.addClipMask() has applied the masking mechanism. But for now we can simply check that itemMaskFreeList isn't null before we use it.


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

Branch: refs/heads/master
Commit: 4102e70b6c9523b7b1f29d0b8c82602f421dc535
Parents: db8c1bf
Author: Mihai Chira <mi...@apache.org>
Authored: Thu Jan 12 13:24:40 2017 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Thu Jan 12 16:52:37 2017 +0100

----------------------------------------------------------------------
 .../src/mx/controls/listClasses/AdvancedListBase.as             | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4102e70b/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as b/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as
index 854f0df..a872381 100644
--- a/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as
+++ b/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as
@@ -5231,7 +5231,10 @@ public class AdvancedListBase extends ScrollControlBase
             }
             else if (item && item.mask)
             {
-                itemMaskFreeList.push(item.mask);
+                if(itemMaskFreeList)
+                {
+                    itemMaskFreeList.push(item.mask);
+                }
                 item.mask = null;
             }
         }


[32/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Update year to 2017

Posted by jm...@apache.org.
Update year to 2017


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

Branch: refs/heads/master
Commit: 458ae5aba91e833f11fd6b9da1bfb84c9eba9425
Parents: 3a084ac
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Jan 7 09:37:36 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Jan 7 09:37:36 2017 +1100

----------------------------------------------------------------------
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/458ae5ab/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
index 650a047..0abfa3a 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Flex
-Copyright 2012-2016 The Apache Software Foundation
+Copyright 2012-2017 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


[45/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Fixed downlaod ant script to copy saxon9 notices

Posted by jm...@apache.org.
Fixed downlaod ant script to copy saxon9 notices


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

Branch: refs/heads/master
Commit: 531c83770e39c32b6072cdeeffcd5ba4abb77f82
Parents: 28b035f
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 11 12:38:47 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 11 12:38:47 2017 +1100

----------------------------------------------------------------------
 modules/downloads.xml | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/531c8377/modules/downloads.xml
----------------------------------------------------------------------
diff --git a/modules/downloads.xml b/modules/downloads.xml
index a233100..e4ce73b 100644
--- a/modules/downloads.xml
+++ b/modules/downloads.xml
@@ -80,6 +80,7 @@
 	
     <property name="saxon9.jar" value="saxonb9-1-0-8.jar"/>
     <property name="saxon9.download.url" value="http://repo1.maven.org/maven2/net/sourceforge/saxon/saxon/9.1.0.8/saxon-9.1.0.8.jar"/>
+    <property name="saxon9.notice.dir" value="${FLEX_HOME}/licenseParts/saxon9-NOTICES"/>
     
     <property name="xerces.dir" value="xerces-2_9_1"/>
      
@@ -461,6 +462,9 @@
             <param name="destDir" value="${download.dir}" />
         </antcall>
 
+        <copy toDir="${lib.ext.dir}/saxon9-NOTICES" verbose="true">
+            <fileset dir="${saxon9.notice.dir}" includes="**"/>
+        </copy>
         <copy file="${download.dir}/${saxon9.jar}" toDir="${lib.ext.dir}" verbose="true"/>
         
         <delete dir="${download.dir}/${saxon9.jar}"/>


[03/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - FLEX-34811 allow apostrophe in user name part of email address

Posted by jm...@apache.org.
FLEX-34811 allow apostrophe in user name part of email address


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

Branch: refs/heads/master
Commit: 249ed425a0d4d6cc7b4dad09ade15749f707febc
Parents: 0e8e8b2
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Nov 8 11:39:07 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Nov 8 11:39:07 2016 +1100

----------------------------------------------------------------------
 frameworks/projects/framework/src/mx/validators/EmailValidator.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/249ed425/frameworks/projects/framework/src/mx/validators/EmailValidator.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/validators/EmailValidator.as b/frameworks/projects/framework/src/mx/validators/EmailValidator.as
index 9776db3..69fd688 100644
--- a/frameworks/projects/framework/src/mx/validators/EmailValidator.as
+++ b/frameworks/projects/framework/src/mx/validators/EmailValidator.as
@@ -74,7 +74,7 @@ public class EmailValidator extends Validator
 	 *  @private
 	 */
 	private static const DISALLOWED_LOCALNAME_CHARS:String =
-								"()<>,;:\\\"[] `~!#$%^&*={}|/?'\t\n\r";
+								"()<>,;:\\\"[] `~!#$%^&*={}|/?\t\n\r";
 	/**
 	 *  @private
 	 */							


[25/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - try to fix install

Posted by jm...@apache.org.
try to fix install


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

Branch: refs/heads/master
Commit: 77268745eaff42ae5b4449be362f4e2459ab25bc
Parents: a5b11cd
Author: Alex Harui <ah...@apache.org>
Authored: Sun Dec 18 10:24:06 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Dec 18 10:24:06 2016 -0800

----------------------------------------------------------------------
 installer.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/77268745/installer.xml
----------------------------------------------------------------------
diff --git a/installer.xml b/installer.xml
index 1490420..292cd8b 100644
--- a/installer.xml
+++ b/installer.xml
@@ -419,7 +419,7 @@
     	<echo message="Should unzip: ${shouldUnzip}"/>
     </target>
 
-    <target name="unzipAIRSDK" if="${shouldUnzip}" depends="unzipOrMountDMG">
+    <target name="unzipAIRSDK" if="${shouldUnzip}">
     	<echo message="Unzipping"/>
 
     	<!--The tbz2 contains symlinks which Ant does not preserve
@@ -439,7 +439,7 @@
         <delete file="${basedir}/airtar.properties" />
     </target>
     
-	<target name="mountAIRSDK" unless="${shouldUnzip}" depends="unzipOrMountDMG">
+	<target name="mountAIRSDK" unless="${shouldUnzip}">
 		<echo message="Mounting dmg"/>
 		<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
 	      <arg value="attach"/>
@@ -447,7 +447,7 @@
 	    </exec>
 	</target>
 
-	<target name="copyFromMount" unless="${shouldUnzip}" depends="mountAIRSDK">
+	<target name="copyFromMount" unless="${shouldUnzip}">
 		<echo message="Copying AIR SDK from mounted volume"/>
 		<exec executable="rsync" dir="${FLEX_HOME}">
             <arg value="--archive" />
@@ -458,7 +458,7 @@
         </exec>
 	</target>
 
-	<target name="unmountAIRSDK" unless="${shouldUnzip}" depends="copyFromMount">
+	<target name="unmountAIRSDK" unless="${shouldUnzip}">
 		<echo message="Unmounting AIR SDK"/>
 		<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="false">
 	      <arg value="unmount"/>
@@ -466,7 +466,7 @@
 	    </exec>
 	</target>
     
-    <target name="air-setup-mac" depends="unzipAIRSDK,mountAIRSDK,copyFromMount,unmountAIRSDK" unless="isWindows">
+    <target name="air-setup-mac" depends="unzipOrMountDMG,unzipAIRSDK,mountAIRSDK,copyFromMount,unmountAIRSDK" unless="isWindows">
         <antcall target="mac-copy-file">
             <param name="srcdir" value="." />
             <param name="filename" value="AIR SDK license.pdf"/>


[33/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Update year to 2017

Posted by jm...@apache.org.
Update year to 2017


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

Branch: refs/heads/master
Commit: 3f03b2e81f7f78dc1f8839433bd6eb87b3883404
Parents: 458ae5a
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Jan 7 09:38:05 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Jan 7 09:38:05 2017 +1100

----------------------------------------------------------------------
 licenseParts/NOTICE.asc  | 2 +-
 licenseParts/NOTICE.base | 2 +-
 licenseParts/NOTICE.pb   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3f03b2e8/licenseParts/NOTICE.asc
----------------------------------------------------------------------
diff --git a/licenseParts/NOTICE.asc b/licenseParts/NOTICE.asc
index 1c55ec9..e53dfe0 100644
--- a/licenseParts/NOTICE.asc
+++ b/licenseParts/NOTICE.asc
@@ -1,5 +1,5 @@
 Apache Flex
-Copyright 2012-2016 The Apache Software Foundation
+Copyright 2012-2017 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3f03b2e8/licenseParts/NOTICE.base
----------------------------------------------------------------------
diff --git a/licenseParts/NOTICE.base b/licenseParts/NOTICE.base
index d89968c..c9e609e 100644
--- a/licenseParts/NOTICE.base
+++ b/licenseParts/NOTICE.base
@@ -1,5 +1,5 @@
 Apache Flex
-Copyright 2012-2016 The Apache Software Foundation
+Copyright 2012-2017 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3f03b2e8/licenseParts/NOTICE.pb
----------------------------------------------------------------------
diff --git a/licenseParts/NOTICE.pb b/licenseParts/NOTICE.pb
index 0ac5a3a..ae5b56a 100644
--- a/licenseParts/NOTICE.pb
+++ b/licenseParts/NOTICE.pb
@@ -1,5 +1,5 @@
 Apache Flex
-Copyright 2012-2016 The Apache Software Foundation
+Copyright 2012-2017 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


[44/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Added saxon9 notice files as we can no longer easily download them. Can't place in lib/external as it's cleaned and git ignored

Posted by jm...@apache.org.
Added saxon9 notice files as we can no longer easily download them. Can't place in lib/external as it's cleaned and git ignored


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

Branch: refs/heads/master
Commit: 28b035f7e39f49318886c0e6a3ce8d72bec48c61
Parents: c8c6327
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 11 12:29:53 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 11 12:29:53 2017 +1100

----------------------------------------------------------------------
 licenseParts/saxon9-NOTICES/APACHE-ANT.txt      |  13 +
 licenseParts/saxon9-NOTICES/APACHE-RESOLVER.txt |   9 +
 licenseParts/saxon9-NOTICES/APACHE-XERCES.txt   |  17 +
 licenseParts/saxon9-NOTICES/CERN.txt            |   7 +
 licenseParts/saxon9-NOTICES/FRIJTERS.txt        |  22 ++
 licenseParts/saxon9-NOTICES/GPL+CLASSPATH.txt   | 347 +++++++++++++++++++
 licenseParts/saxon9-NOTICES/JAMESCLARK.txt      |  25 ++
 licenseParts/saxon9-NOTICES/LEGAL.txt           |  33 ++
 licenseParts/saxon9-NOTICES/LICENSE.txt         |  15 +
 licenseParts/saxon9-NOTICES/THAI.txt            |  31 ++
 licenseParts/saxon9-NOTICES/UNICODE.txt         |  29 ++
 11 files changed, 548 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/APACHE-ANT.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/APACHE-ANT.txt b/licenseParts/saxon9-NOTICES/APACHE-ANT.txt
new file mode 100644
index 0000000..f80fc57
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/APACHE-ANT.txt
@@ -0,0 +1,13 @@
+Apache Ant
+Copyright 1999-2006 The Apache Software Foundation
+
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).
+
+This product includes also software developed by :
+  - the W3C consortium (http://www.w3c.org) ,
+  - the SAX project (http://www.saxproject.org)
+
+The <sync> task is based on code Copyright (c) 2002, Landmark
+Graphics Corp that has been kindly donated to the Apache Software
+Foundation.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/APACHE-RESOLVER.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/APACHE-RESOLVER.txt b/licenseParts/saxon9-NOTICES/APACHE-RESOLVER.txt
new file mode 100644
index 0000000..cf064e3
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/APACHE-RESOLVER.txt
@@ -0,0 +1,9 @@
+Apache XML Commons Resolver
+Copyright 2006 The Apache Software Foundation.
+
+This product includes software developed at
+The Apache Software Foundation http://www.apache.org/
+
+Portions of this code are derived from classes placed in the
+public domain by Arbortext on 10 Apr 2000. See:
+http://www.arbortext.com/customer_support/updates_and_technical_notes/catalogs/docs/README.htm

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/APACHE-XERCES.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/APACHE-XERCES.txt b/licenseParts/saxon9-NOTICES/APACHE-XERCES.txt
new file mode 100644
index 0000000..602c753
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/APACHE-XERCES.txt
@@ -0,0 +1,17 @@
+   =========================================================================
+   ==  NOTICE file corresponding to section 4(d) of the Apache License,   ==
+   ==  Version 2.0, in this case for the Apache Xerces Java distribution. ==
+   =========================================================================
+
+   Apache Xerces Java
+   Copyright 1999-2006 The Apache Software Foundation
+
+   This product includes software developed at
+   The Apache Software Foundation (http://www.apache.org/).
+
+   Portions of this software were originally based on the following:
+     - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
+     - software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
+     - voluntary contributions made by Paul Eng on behalf of the 
+       Apache Software Foundation that were originally developed at iClick, Inc.,
+       software copyright (c) 1999.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/CERN.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/CERN.txt b/licenseParts/saxon9-NOTICES/CERN.txt
new file mode 100644
index 0000000..23a43ea
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/CERN.txt
@@ -0,0 +1,7 @@
+Copyright \ufffd 1999 CERN - European Organization for Nuclear Research.<br/><br/>
+
+Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose
+is hereby granted without fee, provided that the above copyright notice appear in all copies and
+that both that copyright notice and this permission notice appear in supporting documentation.
+CERN makes no representations about the suitability of this software for any purpose.
+It is provided "as is" without expressed or implied warranty.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/FRIJTERS.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/FRIJTERS.txt b/licenseParts/saxon9-NOTICES/FRIJTERS.txt
new file mode 100644
index 0000000..827e26a
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/FRIJTERS.txt
@@ -0,0 +1,22 @@
+Copyright (C) 2002-2007 Jeroen Frijters
+
+  This software is provided 'as-is', without any express or implied
+  warranty.  In no event will the authors be held liable for any damages
+  arising from the use of this software.
+  
+  Permission is granted to anyone to use this software for any purpose,
+  including commercial applications, and to alter it and redistribute it
+  freely, subject to the following restrictions:
+  
+  1. The origin of this software must not be misrepresented; you must not
+     claim that you wrote the original software. If you use this software
+     in a product, an acknowledgment in the product documentation would be
+     appreciated but is not required.
+     
+  2. Altered source versions must be plainly marked as such, and must not be
+     misrepresented as being the original software.
+     
+  3. This notice may not be removed or altered from any source distribution.
+  
+  Jeroen Frijters
+  jeroen@frijters.net

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/GPL+CLASSPATH.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/GPL+CLASSPATH.txt b/licenseParts/saxon9-NOTICES/GPL+CLASSPATH.txt
new file mode 100644
index 0000000..eeab58c
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/GPL+CLASSPATH.txt
@@ -0,0 +1,347 @@
+The GNU General Public License (GPL)
+
+Version 2, June 1991
+
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+Everyone is permitted to copy and distribute verbatim copies of this license
+document, but changing it is not allowed.
+
+Preamble
+
+The licenses for most software are designed to take away your freedom to share
+and change it.  By contrast, the GNU General Public License is intended to
+guarantee your freedom to share and change free software--to make sure the
+software is free for all its users.  This General Public License applies to
+most of the Free Software Foundation's software and to any other program whose
+authors commit to using it.  (Some other Free Software Foundation software is
+covered by the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+When we speak of free software, we are referring to freedom, not price.  Our
+General Public Licenses are designed to make sure that you have the freedom to
+distribute copies of free software (and charge for this service if you wish),
+that you receive source code or can get it if you want it, that you can change
+the software or use pieces of it in new free programs; and that you know you
+can do these things.
+
+To protect your rights, we need to make restrictions that forbid anyone to deny
+you these rights or to ask you to surrender the rights.  These restrictions
+translate to certain responsibilities for you if you distribute copies of the
+software, or if you modify it.
+
+For example, if you distribute copies of such a program, whether gratis or for
+a fee, you must give the recipients all the rights that you have.  You must
+make sure that they, too, receive or can get the source code.  And you must
+show them these terms so they know their rights.
+
+We protect your rights with two steps: (1) copyright the software, and (2)
+offer you this license which gives you legal permission to copy, distribute
+and/or modify the software.
+
+Also, for each author's protection and ours, we want to make certain that
+everyone understands that there is no warranty for this free software.  If the
+software is modified by someone else and passed on, we want its recipients to
+know that what they have is not the original, so that any problems introduced
+by others will not reflect on the original authors' reputations.
+
+Finally, any free program is threatened constantly by software patents.  We
+wish to avoid the danger that redistributors of a free program will
+individually obtain patent licenses, in effect making the program proprietary.
+To prevent this, we have made it clear that any patent must be licensed for
+everyone's free use or not licensed at all.
+
+The precise terms and conditions for copying, distribution and modification
+follow.
+
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0. This License applies to any program or other work which contains a notice
+placed by the copyright holder saying it may be distributed under the terms of
+this General Public License.  The "Program", below, refers to any such program
+or work, and a "work based on the Program" means either the Program or any
+derivative work under copyright law: that is to say, a work containing the
+Program or a portion of it, either verbatim or with modifications and/or
+translated into another language.  (Hereinafter, translation is included
+without limitation in the term "modification".) Each licensee is addressed as
+"you".
+
+Activities other than copying, distribution and modification are not covered by
+this License; they are outside its scope.  The act of running the Program is
+not restricted, and the output from the Program is covered only if its contents
+constitute a work based on the Program (independent of having been made by
+running the Program).  Whether that is true depends on what the Program does.
+
+1. You may copy and distribute verbatim copies of the Program's source code as
+you receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice and
+disclaimer of warranty; keep intact all the notices that refer to this License
+and to the absence of any warranty; and give any other recipients of the
+Program a copy of this License along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and you may
+at your option offer warranty protection in exchange for a fee.
+
+2. You may modify your copy or copies of the Program or any portion of it, thus
+forming a work based on the Program, and copy and distribute such modifications
+or work under the terms of Section 1 above, provided that you also meet all of
+these conditions:
+
+    a) You must cause the modified files to carry prominent notices stating
+    that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in whole or
+    in part contains or is derived from the Program or any part thereof, to be
+    licensed as a whole at no charge to all third parties under the terms of
+    this License.
+
+    c) If the modified program normally reads commands interactively when run,
+    you must cause it, when started running for such interactive use in the
+    most ordinary way, to print or display an announcement including an
+    appropriate copyright notice and a notice that there is no warranty (or
+    else, saying that you provide a warranty) and that users may redistribute
+    the program under these conditions, and telling the user how to view a copy
+    of this License.  (Exception: if the Program itself is interactive but does
+    not normally print such an announcement, your work based on the Program is
+    not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If identifiable
+sections of that work are not derived from the Program, and can be reasonably
+considered independent and separate works in themselves, then this License, and
+its terms, do not apply to those sections when you distribute them as separate
+works.  But when you distribute the same sections as part of a whole which is a
+work based on the Program, the distribution of the whole must be on the terms
+of this License, whose permissions for other licensees extend to the entire
+whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest your
+rights to work written entirely by you; rather, the intent is to exercise the
+right to control the distribution of derivative or collective works based on
+the Program.
+
+In addition, mere aggregation of another work not based on the Program with the
+Program (or with a work based on the Program) on a volume of a storage or
+distribution medium does not bring the other work under the scope of this
+License.
+
+3. You may copy and distribute the Program (or a work based on it, under
+Section 2) in object code or executable form under the terms of Sections 1 and
+2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable source
+    code, which must be distributed under the terms of Sections 1 and 2 above
+    on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three years, to
+    give any third party, for a charge no more than your cost of physically
+    performing source distribution, a complete machine-readable copy of the
+    corresponding source code, to be distributed under the terms of Sections 1
+    and 2 above on a medium customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer to
+    distribute corresponding source code.  (This alternative is allowed only
+    for noncommercial distribution and only if you received the program in
+    object code or executable form with such an offer, in accord with
+    Subsection b above.)
+
+The source code for a work means the preferred form of the work for making
+modifications to it.  For an executable work, complete source code means all
+the source code for all modules it contains, plus any associated interface
+definition files, plus the scripts used to control compilation and installation
+of the executable.  However, as a special exception, the source code
+distributed need not include anything that is normally distributed (in either
+source or binary form) with the major components (compiler, kernel, and so on)
+of the operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the source
+code from the same place counts as distribution of the source code, even though
+third parties are not compelled to copy the source along with the object code.
+
+4. You may not copy, modify, sublicense, or distribute the Program except as
+expressly provided under this License.  Any attempt otherwise to copy, modify,
+sublicense or distribute the Program is void, and will automatically terminate
+your rights under this License.  However, parties who have received copies, or
+rights, from you under this License will not have their licenses terminated so
+long as such parties remain in full compliance.
+
+5. You are not required to accept this License, since you have not signed it.
+However, nothing else grants you permission to modify or distribute the Program
+or its derivative works.  These actions are prohibited by law if you do not
+accept this License.  Therefore, by modifying or distributing the Program (or
+any work based on the Program), you indicate your acceptance of this License to
+do so, and all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+6. Each time you redistribute the Program (or any work based on the Program),
+the recipient automatically receives a license from the original licensor to
+copy, distribute or modify the Program subject to these terms and conditions.
+You may not impose any further restrictions on the recipients' exercise of the
+rights granted herein.  You are not responsible for enforcing compliance by
+third parties to this License.
+
+7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues), conditions
+are imposed on you (whether by court order, agreement or otherwise) that
+contradict the conditions of this License, they do not excuse you from the
+conditions of this License.  If you cannot distribute so as to satisfy
+simultaneously your obligations under this License and any other pertinent
+obligations, then as a consequence you may not distribute the Program at all.
+For example, if a patent license would not permit royalty-free redistribution
+of the Program by all those who receive copies directly or indirectly through
+you, then the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply and
+the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any patents or
+other property right claims or to contest validity of any such claims; this
+section has the sole purpose of protecting the integrity of the free software
+distribution system, which is implemented by public license practices.  Many
+people have made generous contributions to the wide range of software
+distributed through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing to
+distribute software through any other system and a licensee cannot impose that
+choice.
+
+This section is intended to make thoroughly clear what is believed to be a
+consequence of the rest of this License.
+
+8. If the distribution and/or use of the Program is restricted in certain
+countries either by patents or by copyrighted interfaces, the original
+copyright holder who places the Program under this License may add an explicit
+geographical distribution limitation excluding those countries, so that
+distribution is permitted only in or among countries not thus excluded.  In
+such case, this License incorporates the limitation as if written in the body
+of this License.
+
+9. The Free Software Foundation may publish revised and/or new versions of the
+General Public License from time to time.  Such new versions will be similar in
+spirit to the present version, but may differ in detail to address new problems
+or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any later
+version", you have the option of following the terms and conditions either of
+that version or of any later version published by the Free Software Foundation.
+If the Program does not specify a version number of this License, you may
+choose any version ever published by the Free Software Foundation.
+
+10. If you wish to incorporate parts of the Program into other free programs
+whose distribution conditions are different, write to the author to ask for
+permission.  For software which is copyrighted by the Free Software Foundation,
+write to the Free Software Foundation; we sometimes make exceptions for this.
+Our decision will be guided by the two goals of preserving the free status of
+all derivatives of our free software and of promoting the sharing and reuse of
+software generally.
+
+NO WARRANTY
+
+11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
+THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN OTHERWISE
+STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
+PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND
+PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE,
+YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
+ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
+PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
+INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
+BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
+OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+END OF TERMS AND CONDITIONS
+
+How to Apply These Terms to Your New Programs
+
+If you develop a new program, and you want it to be of the greatest possible
+use to the public, the best way to achieve this is to make it free software
+which everyone can redistribute and change under these terms.
+
+To do so, attach the following notices to the program.  It is safest to attach
+them to the start of each source file to most effectively convey the exclusion
+of warranty; and each file should have at least the "copyright" line and a
+pointer to where the full notice is found.
+
+    One line to give the program's name and a brief idea of what it does.
+
+    Copyright (C) <year> <name of author>
+
+    This program is free software; you can redistribute it and/or modify it
+    under the terms of the GNU General Public License as published by the Free
+    Software Foundation; either version 2 of the License, or (at your option)
+    any later version.
+
+    This program is distributed in the hope that it will be useful, but WITHOUT
+    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+    more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc., 59
+    Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this when it
+starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
+    with ABSOLUTELY NO WARRANTY; for details type 'show w'.  This is free
+    software, and you are welcome to redistribute it under certain conditions;
+    type 'show c' for details.
+
+The hypothetical commands 'show w' and 'show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may be
+called something other than 'show w' and 'show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.  Here
+is a sample; alter the names:
+
+    Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+    'Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+    signature of Ty Coon, 1 April 1989
+
+    Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Library General Public
+License instead of this License.
+
+
+"CLASSPATH" EXCEPTION TO THE GPL
+
+Certain source files distributed by Sun Microsystems, Inc.  are subject to
+the following clarification and special exception to the GPL, but only where
+Sun has expressly included in the particular source file's header the words
+"Sun designates this particular file as subject to the "Classpath" exception
+as provided by Sun in the LICENSE file that accompanied this code."
+
+    Linking this library statically or dynamically with other modules is making
+    a combined work based on this library.  Thus, the terms and conditions of
+    the GNU General Public License cover the whole combination.
+
+    As a special exception, the copyright holders of this library give you
+    permission to link this library with independent modules to produce an
+    executable, regardless of the license terms of these independent modules,
+    and to copy and distribute the resulting executable under terms of your
+    choice, provided that you also meet, for each linked independent module,
+    the terms and conditions of the license of that module.  An independent
+    module is a module which is not derived from or based on this library.  If
+    you modify this library, you may extend this exception to your version of
+    the library, but you are not obligated to do so.  If you do not wish to do
+    so, delete this exception statement from your version.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/JAMESCLARK.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/JAMESCLARK.txt b/licenseParts/saxon9-NOTICES/JAMESCLARK.txt
new file mode 100644
index 0000000..36b9918
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/JAMESCLARK.txt
@@ -0,0 +1,25 @@
+Copyright (c) 1998, 1999 James Clark
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL JAMES CLARK BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of James Clark shall
+not be used in advertising or otherwise to promote the sale, use or
+other dealings in this Software without prior written authorization
+from James Clark.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/LEGAL.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/LEGAL.txt b/licenseParts/saxon9-NOTICES/LEGAL.txt
new file mode 100644
index 0000000..8e2a59b
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/LEGAL.txt
@@ -0,0 +1,33 @@
+LEGAL NOTICE
+
+This notice is issued to fulfil the requirements of the Mozilla Public License version 1.0 ("MPL 1.0")
+sections 3.4(a) and 3.6. MPL 1.0 can be found at http://www.mozilla.org/MPL/MPL-1.0.html. 
+
+Section 3.4(a) of MPL 1.0 states that any third party intellectual property rights in particular 
+functionality or code must be notified in a text file named LEGAL that is issued with the source code. Saxon 
+includes a number of such third party components, and the relevant claims are included in notices included
+in the same directory as this notice. Although MPL 1.0 requires this notice to be included only with source
+code, some of the third parties may also require notices to be included with executable code. Therefore, Saxon
+executable code must not be distributed separately from this notice and all the accompanying third
+party notices. The term "Distribution" here includes making the code available for download, and its 
+inclusion in download repositories such as Maven.
+
+Section 3.6 of MPL 1.0 states:
+
+You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have 
+been met for that Covered Code, and if You include a notice stating that the Source Code version of 
+the Covered Code is available under the terms of this License, including a description of how and 
+where You have fulfilled the obligations of Section 3.2.
+
+Section 3.2 requires the Source Code of Covered Code to be made available via an accepted Electronic
+Distribution Mechanism.
+
+The Source Code version of the Covered Code (that is, the source code of Saxon-B) is available under the 
+terms of the Mozilla Public License version 1.0, and may be obtained from the Subversion repository 
+for the Saxon project on SourceForge, at https://sourceforge.net/svn/?group_id=29872. 
+The precise version of the Subversion source for a particular Saxon maintenance release can be 
+determined by referring to the release notes for the particular release in the SourceForge download area.
+
+Note that MPL 1.0 requires that any modifications to this source code must be made available under the terms
+of the MPL "to anyone to whom you made an executable version available". As a courtesy, it is also requested 
+that you make such modifications available to Saxonica Limited.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/LICENSE.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/LICENSE.txt b/licenseParts/saxon9-NOTICES/LICENSE.txt
new file mode 100644
index 0000000..331abb1
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/LICENSE.txt
@@ -0,0 +1,15 @@
+The contents of these file are subject to the Mozilla Public License Version 1.0 (the "License"); 
+you may not use these files except in compliance with the License. You may obtain a copy of the 
+License at http://www.mozilla.org/MPL/
+
+Software distributed under the License is distributed on an "AS IS" basis, 
+WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
+specific language governing rights and limitations under the License.
+
+The Original Code is all Saxon modules labelled with a notice referring to this license.
+
+The Initial Developer of the Original Code is Michael Kay, except where otherwise specified in an individual module.
+
+Portions created by other named contributors are copyright as identified in the relevant module. All Rights Reserved.
+
+Contributor(s) are listed in the documentation: see notices/contributors. 
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/THAI.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/THAI.txt b/licenseParts/saxon9-NOTICES/THAI.txt
new file mode 100644
index 0000000..3fe0aaa
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/THAI.txt
@@ -0,0 +1,31 @@
+Copyright (c) 2001-2003 Thai Open Source Software Center Ltd
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+    Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+
+    Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in
+    the documentation and/or other materials provided with the
+    distribution.
+
+    Neither the name of the Thai Open Source Software Center Ltd nor
+    the names of its contributors may be used to endorse or promote
+    products derived from this software without specific prior written
+    permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
+CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/28b035f7/licenseParts/saxon9-NOTICES/UNICODE.txt
----------------------------------------------------------------------
diff --git a/licenseParts/saxon9-NOTICES/UNICODE.txt b/licenseParts/saxon9-NOTICES/UNICODE.txt
new file mode 100644
index 0000000..54afc82
--- /dev/null
+++ b/licenseParts/saxon9-NOTICES/UNICODE.txt
@@ -0,0 +1,29 @@
+COPYRIGHT AND PERMISSION NOTICE
+Copyright \ufffd 1991-2007 Unicode, Inc. All rights reserved. Distributed under the Terms of Use 
+in http://www.unicode.org/copyright.html.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode 
+data files and any associated documentation (the "Data Files") or Unicode software and any 
+associated documentation (the "Software") to deal in the Data Files or Software without 
+restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, 
+and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or 
+Software are furnished to do so, provided that (a) the above copyright notice(s) and this 
+permission notice appear with all copies of the Data Files or Software, (b) both the above 
+copyright notice(s) and this permission notice appear in associated documentation, and 
+(c) there is clear notice in each modified Data File or in the Software as well as in the 
+documentation associated with the Data File(s) or Software that the data or software has 
+been modified.
+
+THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. 
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE 
+BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, 
+OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 
+WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 
+ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA 
+FILES OR SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder shall not be used 
+in advertising or otherwise to promote the sale, use or other dealings in these 
+Data Files or Software without prior written authorization of the copyright holder.


[07/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Revert FLEX-34880 part 1 This reverts commit 0b5a634dabb00c04a492a08375e29c6885c1486f.

Posted by jm...@apache.org.
Revert FLEX-34880 part 1
This reverts commit 0b5a634dabb00c04a492a08375e29c6885c1486f.


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

Branch: refs/heads/master
Commit: 332e075cb3c290400b924a03bfe8d5cb8195009b
Parents: 0b5a634
Author: Mihai Chira <mi...@apache.org>
Authored: Wed Nov 9 14:01:44 2016 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Wed Nov 9 14:01:44 2016 +0100

----------------------------------------------------------------------
 .../src/spark/components/MobileGrid.as          |  5 ++---
 .../supportClasses/MobileGridColumn.as          |  2 +-
 .../framework/src/mx/collections/ISortField.as  | 23 ++++++++++++++++++++
 .../framework/src/mx/collections/SortField.as   | 12 +++++-----
 .../framework/tests/FLEX_34852_Tests.as         |  5 ++---
 .../projects/mx/src/mx/controls/DataGrid.as     |  2 +-
 .../spark/src/spark/components/DataGrid.as      |  3 +--
 .../spark/components/gridClasses/GridColumn.as  |  4 ++--
 .../SWFs/GridSortPreserveSelection.mxml         |  5 ++---
 .../Sort/SWFs/SF_ORIG_DataGridApp.mxml          | 10 ++++-----
 .../Sort/SWFs/SF_ORIG_DataGridApp_halo.mxml     |  8 +++----
 11 files changed, 49 insertions(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/frameworks/projects/experimental_mobile/src/spark/components/MobileGrid.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental_mobile/src/spark/components/MobileGrid.as b/frameworks/projects/experimental_mobile/src/spark/components/MobileGrid.as
index 85d68fa..d58f885 100644
--- a/frameworks/projects/experimental_mobile/src/spark/components/MobileGrid.as
+++ b/frameworks/projects/experimental_mobile/src/spark/components/MobileGrid.as
@@ -22,7 +22,6 @@ package spark.components
 import mx.collections.ICollectionView;
 import mx.collections.ISort;
 import mx.collections.ISortField;
-import mx.collections.SortField;
 import mx.core.ClassFactory;
 import mx.core.ScrollPolicy;
 import mx.core.mx_internal;
@@ -281,8 +280,8 @@ public class MobileGrid extends List
         lastSortIndex = sortIndex;
         sortIndex = index;
         sortColumn = c;
-        SortField(f).mx_internal::name_ = c.dataField;
-        SortField(f).mx_internal::descending_ = desc;
+        f.name = c.dataField;
+        f.descending = desc;
         s.fields = [f];
         collection.sort = s;
         collection.refresh();

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as b/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as
index 668594c..ca8ab27 100644
--- a/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as
+++ b/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as
@@ -324,7 +324,7 @@ public class MobileGridColumn extends EventDispatcher
             };
             sortField.mx_internal::compareFunction = cF;
         }
-        sortField.mx_internal::descending_ = column.sortDescending;
+        sortField.descending = column.sortDescending;
         return sortField;
     }
 

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/frameworks/projects/framework/src/mx/collections/ISortField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/collections/ISortField.as b/frameworks/projects/framework/src/mx/collections/ISortField.as
index be3cc35..4186d0b 100644
--- a/frameworks/projects/framework/src/mx/collections/ISortField.as
+++ b/frameworks/projects/framework/src/mx/collections/ISortField.as
@@ -91,6 +91,11 @@ public interface ISortField
      */
     function get descending():Boolean;
 
+    /**
+     *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
+     *  argument instead.
+     */
+    function set descending(value:Boolean):void;
 
     /**
      *  The name of the field to be sorted.
@@ -103,6 +108,12 @@ public interface ISortField
     function get name():String;
 
     /**
+     *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
+     *  argument instead.
+     */
+    function set name(n:String):void;
+
+    /**
      *  Specifies that if the field being sorted contains numeric
      *  (<code>number/int/uint</code>) values, or string representations of numeric values,
      *  the comparator use a numeric comparison.
@@ -136,6 +147,12 @@ public interface ISortField
      */
     function get numeric():Object;
 
+    /**
+     *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
+     *  argument instead.
+     */
+    function set numeric(value:Object):void;
+
 
     /**
      *  Specifies what compare type will be used for the sortField. This overrides the default
@@ -150,6 +167,12 @@ public interface ISortField
      */
     function get sortCompareType():String;
 
+    /**
+     *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
+     *  argument instead.
+     */
+    function set sortCompareType(value:String):void;
+
 
     /**
      *  True if this <code>ISortField</code> uses a custom comparator function.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/frameworks/projects/framework/src/mx/collections/SortField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/collections/SortField.as b/frameworks/projects/framework/src/mx/collections/SortField.as
index a7ee7b5..554d7c3 100644
--- a/frameworks/projects/framework/src/mx/collections/SortField.as
+++ b/frameworks/projects/framework/src/mx/collections/SortField.as
@@ -233,7 +233,7 @@ public class SortField extends EventDispatcher implements ISortField
      *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
      *  argument instead.
      */
-    mx_internal function set caseInsensitive_(value:Boolean):void
+    mx_internal function setCaseInsensitive(value:Boolean):void
     {
         if (value != _caseInsensitive)
         {
@@ -338,7 +338,7 @@ public class SortField extends EventDispatcher implements ISortField
      *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
      *  argument instead.
      */
-    mx_internal function set descending_(value:Boolean):void
+    public function set descending(value:Boolean):void
     {
         if (_descending != value)
         {
@@ -379,7 +379,7 @@ public class SortField extends EventDispatcher implements ISortField
      *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
      *  argument instead.
      */
-    mx_internal function set name_(n:String):void
+    public function set name(n:String):void
     {
         _name = n;
         dispatchEvent(new Event("nameChanged"));
@@ -417,7 +417,7 @@ public class SortField extends EventDispatcher implements ISortField
      *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
      *  argument instead.
      */
-    mx_internal function set numeric_(value:Object):void
+    public function set numeric(value:Object):void
     {
         if (_numeric != value)
         {
@@ -454,7 +454,7 @@ public class SortField extends EventDispatcher implements ISortField
      *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
      *  argument instead.
      */
-    mx_internal function set sortCompareType_(value:String):void
+    public function set sortCompareType(value:String):void
     {
         if (_sortCompareType != value)
         {
@@ -598,7 +598,7 @@ public class SortField extends EventDispatcher implements ISortField
      */
     public function reverse():void
     {
-        mx_internal::descending_ = !descending;
+        descending = !descending;
     }
 
 

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/frameworks/projects/framework/tests/FLEX_34852_Tests.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/tests/FLEX_34852_Tests.as b/frameworks/projects/framework/tests/FLEX_34852_Tests.as
index a40f4fb..654cb92 100644
--- a/frameworks/projects/framework/tests/FLEX_34852_Tests.as
+++ b/frameworks/projects/framework/tests/FLEX_34852_Tests.as
@@ -24,7 +24,6 @@ package {
     import mx.collections.ListCollectionView;
     import mx.collections.Sort;
     import mx.collections.SortFieldCompareTypes;
-    import mx.core.mx_internal;
 
     import org.flexunit.asserts.assertEquals;
     import org.flexunit.asserts.assertTrue;
@@ -147,7 +146,7 @@ package {
 
             const sortByDateMovedInAscending:Sort = new Sort();
             var complexSortField:ComplexSortField = new ComplexSortField("address.dateMovedIn", false, false, false);
-            complexSortField.mx_internal::sortCompareType_ = SortFieldCompareTypes.DATE;
+            complexSortField.sortCompareType = SortFieldCompareTypes.DATE;
             sortByDateMovedInAscending.fields = [complexSortField];
             _sut.sort = sortByDateMovedInAscending;
 
@@ -167,7 +166,7 @@ package {
 
             const sortByDateMovedInDescending:Sort = new Sort();
             var complexSortField:ComplexSortField = new ComplexSortField("address.dateMovedIn", false, true, false);
-            complexSortField.mx_internal::sortCompareType_ = SortFieldCompareTypes.DATE;
+            complexSortField.sortCompareType = SortFieldCompareTypes.DATE;
             sortByDateMovedInDescending.fields = [complexSortField];
             _sut.sort = sortByDateMovedInDescending;
 

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/frameworks/projects/mx/src/mx/controls/DataGrid.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mx/src/mx/controls/DataGrid.as b/frameworks/projects/mx/src/mx/controls/DataGrid.as
index 3b0372f..b4a8825 100644
--- a/frameworks/projects/mx/src/mx/controls/DataGrid.as
+++ b/frameworks/projects/mx/src/mx/controls/DataGrid.as
@@ -3997,7 +3997,7 @@ public class DataGrid extends DataGridBase implements IIMESupport
 
             // if you have a labelFunction you must supply a sortCompareFunction
             SortField(f).mx_internal::compareFunction_ = c.sortCompareFunction;
-            SortField(f).mx_internal::descending_ = desc;
+            f.descending = desc;
             s.fields = [f];
         }
 

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/frameworks/projects/spark/src/spark/components/DataGrid.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/DataGrid.as b/frameworks/projects/spark/src/spark/components/DataGrid.as
index a55c07f..2c44d22 100644
--- a/frameworks/projects/spark/src/spark/components/DataGrid.as
+++ b/frameworks/projects/spark/src/spark/components/DataGrid.as
@@ -36,7 +36,6 @@ package spark.components
     import mx.collections.IList;
     import mx.collections.ISort;
     import mx.collections.ISortField;
-	import mx.collections.SortField;
     import mx.collections.ListCollectionView;
     import mx.core.DragSource;
     import mx.core.EventPriority;
@@ -5053,7 +5052,7 @@ public class DataGrid extends SkinnableContainerBase
             }
             else
             {
-                SortField(sortField).mx_internal::descending_ = col.sortDescending;
+                sortField.descending = col.sortDescending;
             }
 
             fields.push(sortField);

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as b/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as
index aeda085..c82c1cb 100644
--- a/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as
+++ b/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as
@@ -1586,7 +1586,7 @@ public class GridColumn extends EventDispatcher
         // data object even though a sortCompareFunction is defined.
         var sortField:ISortField = isComplexDataField ? new GridSortFieldComplex(this, dataField) : new GridSortFieldSimple(this, dataField);
 
-        SortField(sortField).mx_internal::sortCompareType_ = column._sortCompareType;
+        sortField.sortCompareType = column._sortCompareType;
 
         var compareFunc:Function = null;
         if (_sortCompareFunction != null)
@@ -1610,7 +1610,7 @@ public class GridColumn extends EventDispatcher
         }
         
         SortField(sortField).mx_internal::compareFunction_ = compareFunc;
-        SortField(sortField).mx_internal::descending_ = column.sortDescending;
+        sortField.descending = column.sortDescending;
         return sortField;
     }
     

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/mustella/tests/gumbo/components/DataGrid/SWFs/GridSortPreserveSelection.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/DataGrid/SWFs/GridSortPreserveSelection.mxml b/mustella/tests/gumbo/components/DataGrid/SWFs/GridSortPreserveSelection.mxml
index 149ff34..09eb142 100644
--- a/mustella/tests/gumbo/components/DataGrid/SWFs/GridSortPreserveSelection.mxml
+++ b/mustella/tests/gumbo/components/DataGrid/SWFs/GridSortPreserveSelection.mxml
@@ -33,7 +33,6 @@
         <![CDATA[
             import mx.collections.*;
             import flash.utils.getTimer;
-            import mx.core.mx_internal;
             
             private var startTime:uint = 0;
             private var endTime:uint = 0;
@@ -58,8 +57,8 @@
             private function sort():void
             {
                 var dataSortField:SortField = new SortField();
-                dataSortField.mx_internal::name_ = "A";
-                dataSortField.mx_internal::numeric_ = true;
+                dataSortField.name = "A";
+                dataSortField.numeric = true;
                 
                 var numericDataSort:Sort = new Sort();
                 numericDataSort.fields = [dataSortField];

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp.mxml b/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp.mxml
index 96e9681..89bcb27 100644
--- a/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp.mxml
+++ b/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp.mxml
@@ -33,7 +33,7 @@
 			import mx.events.DragEvent;
 			import mx.managers.DragManager;
 			import mx.utils.ObjectUtil;
-			import mx.core.mx_internal;
+			
 			import spark.collections.*;
 			
 			// These skins are copied from DataGridMain.mxml.
@@ -766,14 +766,14 @@
 				
 				event.preventDefault();
 				
-				sf.mx_internal::descending_ = !dgc.sortDescending;
+				sf.descending = !dgc.sortDescending;
 				
 				if(dgc.headerText == "numeric")
-					sf.mx_internal::numeric_ = true;
+					sf.numeric = true;
 				else if(dgc.headerText == "alpha")
-					sf.mx_internal::numeric_ = false;
+					sf.numeric = false;
 				else
-					sf.mx_internal::numeric_ = null;
+					sf.numeric = null;
 				
 				dgc.sortDescending = sf.descending;
 				s.fields = [ sf ];

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/332e075c/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp_halo.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp_halo.mxml b/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp_halo.mxml
index a97c381..d2c1fff 100644
--- a/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp_halo.mxml
+++ b/mustella/tests/spark/collections/Sort/SWFs/SF_ORIG_DataGridApp_halo.mxml
@@ -751,14 +751,14 @@
 				
 				event.preventDefault();
 				
-				sf.mx_internal::descending_ = !dgc.sortDescending;
+				sf.descending = !dgc.sortDescending;
 				
 				if(dgc.headerText == "numeric")
-					sf.mx_internal::numeric_ = true;
+					sf.numeric = true;
 				else if(dgc.headerText == "alpha")
-					sf.mx_internal::numeric_ = false;
+					sf.numeric = false;
 				else
-					sf.mx_internal::numeric_ = null;
+					sf.numeric = null;
 				
 				dgc.sortDescending = sf.descending;
 				s.fields = [ sf ];


[28/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Added support for FP 24.0

Posted by jm...@apache.org.
Added support for FP 24.0


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

Branch: refs/heads/master
Commit: 0ebd3e525b772313cac1e82b592265d188c18c62
Parents: 65a1de5
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Dec 19 10:03:35 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Dec 19 10:03:35 2016 +1100

----------------------------------------------------------------------
 frameworks/build.xml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0ebd3e52/frameworks/build.xml
----------------------------------------------------------------------
diff --git a/frameworks/build.xml b/frameworks/build.xml
index e06a349..500a186 100644
--- a/frameworks/build.xml
+++ b/frameworks/build.xml
@@ -241,6 +241,9 @@
 		<condition property="playerglobal.swfversion" value="34">
 			<equals arg1="${playerglobal.version}" arg2="23.0" />
 		</condition>
+		<condition property="playerglobal.swfversion" value="35">
+			<equals arg1="${playerglobal.version}" arg2="24.0" />
+		</condition>
 	</target>	
 
     <!--


[47/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - fix download cache

Posted by jm...@apache.org.
fix download cache


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

Branch: refs/heads/master
Commit: 7157375adf07747d2b5c65e30cae224750b57b09
Parents: a360157
Author: Alex Harui <ah...@apache.org>
Authored: Thu Feb 16 09:21:37 2017 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Feb 16 09:21:37 2017 -0800

----------------------------------------------------------------------
 modules/downloads.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/7157375a/modules/downloads.xml
----------------------------------------------------------------------
diff --git a/modules/downloads.xml b/modules/downloads.xml
index 95a7666..c051657 100644
--- a/modules/downloads.xml
+++ b/modules/downloads.xml
@@ -454,7 +454,7 @@
             verbose="false" ignoreerrors="true"/>
 
         <antcall target="get-from-cache-if-needed" >
-            <param name="filename" value="${saxon9.jar}" />
+            <param name="filename" value="saxon9.jar" />
             <param name="destDir" value="${download.dir}" />
         </antcall>
         <antcall target="fail-if-not-found" >


[22/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Changed saxon download link to one that works

Posted by jm...@apache.org.
Changed saxon download link to one that works


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

Branch: refs/heads/master
Commit: bc8766585c8d34da657d4129b70d6ed615a42af5
Parents: 44960c0
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Dec 18 11:47:44 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun Dec 18 11:47:44 2016 +1100

----------------------------------------------------------------------
 modules/downloads.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/bc876658/modules/downloads.xml
----------------------------------------------------------------------
diff --git a/modules/downloads.xml b/modules/downloads.xml
index a827ce5..14d2731 100644
--- a/modules/downloads.xml
+++ b/modules/downloads.xml
@@ -80,6 +80,7 @@
 	
     <property name="saxon9.bin.zip" value="saxonb9-1-0-8j.zip"/>
     <property name="saxon9.jar.dir" value="saxonb9-1-0-8j"/>
+    <property name="saxon9.download.url" value="http://downloads.sourceforge.net/project/saxon/Saxon-B/9.1.0.8/saxonb9-1-0-8j.zip?r=&amp;ts=1482018310&amp;use_mirror=internode"/>
     
     <property name="xerces.dir" value="xerces-2_9_1"/>
      
@@ -448,7 +449,7 @@
     <target name="saxon9-jar" depends="saxon9-jar-check" unless="saxon9.jar.exists" 
         description="Copies sax9.jar to the lib directory.">
 
-        <get src="http://downloads.sourceforge.net/project/saxon/Saxon-B/9.1.0.8/saxonb9-1-0-8j.zip?r=&amp;ts=1366147457&amp;use_mirror=superb-dca2" 
+        <get src="${saxon9.download.url}" 
             dest="${download.dir}/${saxon9.bin.zip}" 
             verbose="false" ignoreerrors="true"/>
 


[20/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Ensure Ant 1.7 behavior

Posted by jm...@apache.org.
Ensure Ant 1.7 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/3a90722b
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/3a90722b
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/3a90722b

Branch: refs/heads/master
Commit: 3a90722b86420a5fade50f24611d1d011b2faff2
Parents: 8036b68
Author: Om Muppirala <om...@machinezone.com>
Authored: Tue Dec 6 11:21:08 2016 -0800
Committer: Om Muppirala <om...@machinezone.com>
Committed: Sun Dec 11 23:28:29 2016 -0800

----------------------------------------------------------------------
 installer.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3a90722b/installer.xml
----------------------------------------------------------------------
diff --git a/installer.xml b/installer.xml
index d366e0f..f86ecec 100644
--- a/installer.xml
+++ b/installer.xml
@@ -413,7 +413,7 @@
 		<mkdir dir="${download.dir}/airsdk" />
         <move file="${download.dir}/${air.sdk.url.file}" todir="${download.dir}/airsdk" />
 
-    	<condition property="shouldUnzip" value="true" else="false">
+    	<condition property="shouldUnzip" value="true">
       		<matches pattern="tbz2" string="${air.sdk.url.file}"/>
     	</condition>
     	<echo message="Should unzip: ${shouldUnzip}"/>


[40/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Merge branch 'release4.16.0' of https://git-wip-us.apache.org/repos/asf/flex-sdk into release4.16.0

Posted by jm...@apache.org.
Merge branch 'release4.16.0' of https://git-wip-us.apache.org/repos/asf/flex-sdk into release4.16.0


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

Branch: refs/heads/master
Commit: db8c1bf7cc39eb77f9fcf0042a41f658e0867cd2
Parents: 4523974 442b844
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Jan 10 19:28:38 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Jan 10 19:28:38 2017 +1100

----------------------------------------------------------------------
 ApproveSDK.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[37/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Update year to 2017

Posted by jm...@apache.org.
Update year to 2017


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

Branch: refs/heads/master
Commit: d7fdb197595ece707110f1f88effd80718328c41
Parents: 2cdc95a
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Jan 7 09:40:07 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Jan 7 09:40:07 2017 +1100

----------------------------------------------------------------------
 modules/asc/src/java/macromedia/asc/embedding/Main.java  | 2 +-
 modules/asc/src/java/macromedia/asc/embedding/Shell.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/d7fdb197/modules/asc/src/java/macromedia/asc/embedding/Main.java
----------------------------------------------------------------------
diff --git a/modules/asc/src/java/macromedia/asc/embedding/Main.java b/modules/asc/src/java/macromedia/asc/embedding/Main.java
index 0ea60ee..c67841c 100644
--- a/modules/asc/src/java/macromedia/asc/embedding/Main.java
+++ b/modules/asc/src/java/macromedia/asc/embedding/Main.java
@@ -387,7 +387,7 @@ public class Main
 		{
 			System.out.println("ActionScript 3.0 for AVM+");
 			System.out.println("version " + Version.getVersion() + " build "+ Version.getBuild());
-			System.out.println("Copyright 2016 The Apache Software Foundation");
+			System.out.println("Copyright 2017 The Apache Software Foundation");
 			System.out.println("All rights reserved\n");
 			System.out.println("Usage:");
 			System.out.println("  asc {-AS3|-ES|-d|-f|-h|-i|-import <filename>|-in <filename>|-m|-p}* filespec");

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/d7fdb197/modules/asc/src/java/macromedia/asc/embedding/Shell.java
----------------------------------------------------------------------
diff --git a/modules/asc/src/java/macromedia/asc/embedding/Shell.java b/modules/asc/src/java/macromedia/asc/embedding/Shell.java
index 0f6b73a..0dec83a 100644
--- a/modules/asc/src/java/macromedia/asc/embedding/Shell.java
+++ b/modules/asc/src/java/macromedia/asc/embedding/Shell.java
@@ -587,7 +587,7 @@ public class Shell
 	private static void intro()
 	{
 		System.out.println("Actionscript compiler SHell (ash)");
-		System.out.println("Copyright 2016 The Apache Software Foundation");
+		System.out.println("Copyright 2017 The Apache Software Foundation");
 		System.out.println("");
 	}
 


[46/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Hard code saxon jar name so ant scripts work

Posted by jm...@apache.org.
Hard code saxon jar name so ant scripts work


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

Branch: refs/heads/master
Commit: a360157e9c9347abdf3633044a1e709ec155e3ba
Parents: 531c837
Author: Justin Mclean <jm...@apache.org>
Authored: Thu Feb 16 11:55:22 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Thu Feb 16 11:55:22 2017 +1100

----------------------------------------------------------------------
 build.xml             | 4 ++--
 modules/downloads.xml | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a360157e/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 9fd4ac4..66842ec 100644
--- a/build.xml
+++ b/build.xml
@@ -566,7 +566,7 @@
                 <include name="installer.properties/**"/>
                 <include name="CHANGES"/>
                 <include name="LICENSE"/>
-                <include name="licenseParts/*"/>
+                <include name="licenseParts/**"/>
                 <include name="NOTICE"/>
                 <include name="README"/>
                 <include name="RELEASE_NOTES"/>
@@ -1795,7 +1795,7 @@ There are no known issues.
                 <!-- exclude text files -->
                 <exclude name="CONTRIBUTING"/>
                 <exclude name="CONTRIBUTORS"/>
-                <exclude name="licenseParts/*"/>
+                <exclude name="licenseParts/**"/>
                 <exclude name="modules/thirdparty/batik/lib/**/LICENSE*.txt"/>
                 <exclude name="modules/thirdparty/batik/lib/**/README*.txt"/>
                 <exclude name="frameworks/projects/flatspark/src/flatspark/assets/fonts/**/OFL.txt"/>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a360157e/modules/downloads.xml
----------------------------------------------------------------------
diff --git a/modules/downloads.xml b/modules/downloads.xml
index e4ce73b..95a7666 100644
--- a/modules/downloads.xml
+++ b/modules/downloads.xml
@@ -450,7 +450,7 @@
         description="Copies sax9.jar to the lib directory.">
 
         <get src="${saxon9.download.url}" 
-            dest="${download.dir}/${saxon9.jar}" 
+            dest="${download.dir}/saxon9.jar" 
             verbose="false" ignoreerrors="true"/>
 
         <antcall target="get-from-cache-if-needed" >
@@ -458,16 +458,16 @@
             <param name="destDir" value="${download.dir}" />
         </antcall>
         <antcall target="fail-if-not-found" >
-            <param name="filename" value="${saxon9.jar}" />
+            <param name="filename" value="saxon9.jar" />
             <param name="destDir" value="${download.dir}" />
         </antcall>
 
         <copy toDir="${lib.ext.dir}/saxon9-NOTICES" verbose="true">
             <fileset dir="${saxon9.notice.dir}" includes="**"/>
         </copy>
-        <copy file="${download.dir}/${saxon9.jar}" toDir="${lib.ext.dir}" verbose="true"/>
+        <copy file="${download.dir}/saxon9.jar" toDir="${lib.ext.dir}" verbose="true"/>
         
-        <delete dir="${download.dir}/${saxon9.jar}"/>
+        <delete dir="${download.dir}/saxon9.jar"/>
     </target>
     	
     <!--


[04/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - update release notes

Posted by jm...@apache.org.
update release notes


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

Branch: refs/heads/master
Commit: 51eae4bb60ef3691501221f98b9e649451f9f5aa
Parents: 249ed42
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Nov 8 11:39:38 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Nov 8 11:39:38 2016 +1100

----------------------------------------------------------------------
 RELEASE_NOTES | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/51eae4bb/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 14c310b..86545a7 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -43,6 +43,7 @@ FLEX-35025  Validator results cannot be intercepted if the value is null
 FLEX-34935  Copy From Word Document And Pasting Into TextRegion Not Working Properly
 FLEX-34926  Misplaced [PercentProxy] metatag in GridColumn
 FLEX-34738  Not delete BusyIndicator
+FLEX-34811  Email validator show allow apostrophe in email address
 FLEX-34698  Flatspark ButtonIcon: Introduce 'iconFontPlacement' style
 FLEX-34391  ScrollableStageText with large y value crashes app
 FLEX-34088  CalloutButton closes when selecting an item in a spark Dropdown


[35/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Update year to 2017

Posted by jm...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_ko.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_ko.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_ko.properties
index 303342e..a9d1bb4 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_ko.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_ko.properties
@@ -22,5 +22,5 @@ InitialSetup=\ucd08\uae30 \uc124\uc815:
 LoadedSWCs=${num}\uac1c\uc758 SWC \ub85c\ub4dc\ub428:
 CouldNotInstantiate=${config}\uc744(\ub97c) \uc778\uc2a4\ud134\uc2a4\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
 DumpConfig=${filename}\uc5d0 \uad6c\uc131 \ub364\ud504 \uc4f0\uae30
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name}\uc740(\ub294) \ucd5c\uc2e0 \ubc84\uc804\uc774\ubbc0\ub85c \ub2e4\uc2dc \ube4c\ub4dc\ud560 \ud544\uc694\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_nb.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_nb.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_nb.properties
index 9e0805c..8a26ff9 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_nb.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_nb.properties
@@ -22,5 +22,5 @@ InitialSetup=F\u00f8rste installasjon:
 LoadedSWCs=Lastet inn ${num} swc-er:
 CouldNotInstantiate=Kan ikke representere ${config}
 DumpConfig=Skriver konfigurasjonsdump til ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} er oppdatert og trenger ikke \u00e5 bygges p\u00e5 nytt..

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_nl.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_nl.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_nl.properties
index 9c6ed5c..4868deb 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_nl.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_nl.properties
@@ -22,5 +22,5 @@ InitialSetup=Begininstellingen:
 LoadedSWCs=${num} SWC's geladen:
 CouldNotInstantiate=Kan geen exemplaar maken van ${config}
 DumpConfig=Configuratiedump wordt naar ${filename} geschreven
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} is up-to-date en hoeft niet opnieuw te worden gemaakt.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_pt.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_pt.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_pt.properties
index 8c2a240..bc2bd8c 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_pt.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_pt.properties
@@ -22,5 +22,5 @@ InitialSetup=Configura\u00e7\u00e3o inicial:
 LoadedSWCs=${num} SWCs carregados:
 CouldNotInstantiate=N\u00e3o foi poss\u00edvel criar a inst\u00e2ncia ${config}
 DumpConfig=Gravando despejo de configura\u00e7\u00e3o em ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} est\u00e1 atualizado e n\u00e3o \u00e9 preciso recri\u00e1-lo.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_ru.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_ru.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_ru.properties
index cdbf06b..ecf83b3 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_ru.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_ru.properties
@@ -22,5 +22,5 @@ InitialSetup=\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u043d\u0430
 LoadedSWCs=\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043e ${num} SWC:
 CouldNotInstantiate=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c ${config}
 DumpConfig=\u0417\u0430\u043f\u0438\u0441\u044c \u0434\u0430\u043c\u043f\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0432 ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0438 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0438.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_sv.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_sv.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_sv.properties
index 5e1ac66..f003eec 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_sv.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_sv.properties
@@ -22,5 +22,5 @@ InitialSetup=Initial konfiguration:
 LoadedSWCs=Laddade ${num} SWC:er:
 CouldNotInstantiate=Det gick inte att skapa en instans av ${config}
 DumpConfig=Skriver konfigurationsdump till ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u00e4r aktuell och beh\u00f6ver inte kompileras om.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_zh_CN.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_zh_CN.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_zh_CN.properties
index 0e4066d..274bafa 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_zh_CN.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_zh_CN.properties
@@ -22,5 +22,5 @@ InitialSetup=\u521d\u59cb\u8bbe\u7f6e:
 LoadedSWCs=\u5df2\u52a0\u8f7d ${num} \u4e2a SWC:
 CouldNotInstantiate=\u65e0\u6cd5\u5b9e\u4f8b\u5316 ${config}
 DumpConfig=\u5c06\u914d\u7f6e\u8f6c\u50a8\u5199\u5165 ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u662f\u6700\u65b0\u7684\uff0c\u4e0d\u5fc5\u91cd\u5efa\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_zh_TW.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_zh_TW.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_zh_TW.properties
index 5a40d1a..d856694 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_zh_TW.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_zh_TW.properties
@@ -22,5 +22,5 @@ InitialSetup=\u521d\u59cb\u8a2d\u5b9a:
 LoadedSWCs=\u5df2\u8f09\u5165 ${num} \u500b SWC:
 CouldNotInstantiate=\u7121\u6cd5\u5be6\u9ad4\u5316 ${config}
 DumpConfig=\u5c07\u7d44\u614b\u50be\u5370\u5beb\u5165 ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u662f\u6700\u65b0\u7684\uff0c\u4e0d\u9700\u8981\u91cd\u5efa\u3002


[31/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - use raw so we don't have to deal with redirects from http to https that Ant can't handle

Posted by jm...@apache.org.
use raw so we don't have to deal with redirects from http to https that Ant can't handle


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

Branch: refs/heads/master
Commit: 3a084ac201434cd6af5588ff7e2d9e275e102041
Parents: ed0c314
Author: Alex Harui <ah...@apache.org>
Authored: Mon Dec 19 15:31:20 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Dec 19 15:31:46 2016 -0800

----------------------------------------------------------------------
 frameworks/downloads.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3a084ac2/frameworks/downloads.xml
----------------------------------------------------------------------
diff --git a/frameworks/downloads.xml b/frameworks/downloads.xml
index a897e11..538f142 100644
--- a/frameworks/downloads.xml
+++ b/frameworks/downloads.xml
@@ -43,7 +43,7 @@
     <property name="pixelbender.url" value="http://www.apache.org/dyn/mirrors/mirrors.cgi" />
     <property name="pixelbender.folder" value="flex/pixelbender/1.0/binaries" />
     <property name="pixelbender.bin.zip" value="apache-flex-sdk-pixel-bender-1.0.0-bin.zip" />
-    <property name="osmf.url" value="http://downloads.sourceforge.net/project/osmf.adobe/OSMF%202.0%20Release%20%28final%20source%2C%20ASDocs%2C%20pdf%20guides%20and%20release%20notes%29/OSMF.swc?r=&amp;ts=148208359&amp;use_mirror=pilotfiber" />
+    <property name="osmf.url" value="https://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/frameworks/libs/OSMF2_0.swc?format=raw" />
     <property name="swfobject.url" value="https://codeload.github.com/swfobject/swfobject/zip/2.2" />
     
     <property name="adobe.flex.license" value="


[05/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Doesn't always like https link - may be mirror dependant?

Posted by jm...@apache.org.
Doesn't always like https link - may be mirror dependant?


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

Branch: refs/heads/master
Commit: fc70d58d954ae807e10757d8e88b5a7d02f3b9db
Parents: 249ed42
Author: Justin Mclean <jm...@apache.org>
Authored: Wed Nov 9 10:06:45 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Wed Nov 9 10:06:45 2016 +1100

----------------------------------------------------------------------
 modules/downloads.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/fc70d58d/modules/downloads.xml
----------------------------------------------------------------------
diff --git a/modules/downloads.xml b/modules/downloads.xml
index 9154bb0..a827ce5 100644
--- a/modules/downloads.xml
+++ b/modules/downloads.xml
@@ -448,7 +448,7 @@
     <target name="saxon9-jar" depends="saxon9-jar-check" unless="saxon9.jar.exists" 
         description="Copies sax9.jar to the lib directory.">
 
-        <get src="https://downloads.sourceforge.net/project/saxon/Saxon-B/9.1.0.8/saxonb9-1-0-8j.zip?r=&amp;ts=1366147457&amp;use_mirror=superb-dca2" 
+        <get src="http://downloads.sourceforge.net/project/saxon/Saxon-B/9.1.0.8/saxonb9-1-0-8j.zip?r=&amp;ts=1366147457&amp;use_mirror=superb-dca2" 
             dest="${download.dir}/${saxon9.bin.zip}" 
             verbose="false" ignoreerrors="true"/>
 


[10/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Merge branch 'develop' into release4.16.0

Posted by jm...@apache.org.
Merge branch 'develop' into release4.16.0


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

Branch: refs/heads/master
Commit: 13183954ec08c2c58d5e16b0067e352f0084e768
Parents: b7ea704 286a0ca
Author: Mihai Chira <mi...@apache.org>
Authored: Wed Nov 9 14:24:15 2016 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Wed Nov 9 14:24:15 2016 +0100

----------------------------------------------------------------------
 .../src/mx/collections/GroupingCollection.as    |  2 +-
 .../src/mx/collections/GroupingCollection2.as   |  2 +-
 .../src/mx/olap/DefaultCubeImpl.as              |  6 ++--
 .../src/spark/components/MobileGrid.as          |  5 ++--
 .../supportClasses/MobileGridColumn.as          |  6 ++--
 .../framework/src/mx/collections/ISortField.as  | 31 +++++++++++++++++++-
 .../framework/src/mx/collections/SortField.as   | 16 +++++-----
 .../framework/tests/FLEX_34852_Tests.as         |  5 ++--
 .../ListCollectionView_FLEX_34837_Tests.as      |  4 +--
 .../projects/mx/src/mx/controls/DataGrid.as     | 15 ++++++----
 .../spark/src/spark/collections/SortField.as    |  9 +++---
 .../spark/src/spark/components/DataGrid.as      |  3 +-
 .../spark/components/gridClasses/GridColumn.as  |  6 ++--
 .../SWFs/GridSortPreserveSelection.mxml         |  5 ++--
 .../Sort/SWFs/SF_ORIG_DataGridApp.mxml          | 10 +++----
 .../Sort/SWFs/SF_ORIG_DataGridApp_halo.mxml     |  8 ++---
 .../CustComp_sortField_compareFunction.mxml     |  5 ++--
 17 files changed, 84 insertions(+), 54 deletions(-)
----------------------------------------------------------------------



[02/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - update release notes

Posted by jm...@apache.org.
update release notes


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

Branch: refs/heads/master
Commit: 0e8e8b264b3f29bc1823337e7d1eff0f942a314a
Parents: cd45ebd
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Nov 8 11:01:21 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Nov 8 11:01:21 2016 +1100

----------------------------------------------------------------------
 RELEASE_NOTES | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0e8e8b26/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 1b7c475..14c310b 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -23,6 +23,7 @@ FLEX-35123  DOM XSS vulnerability in history.js
 FLEX-35109  falcon compiler's build.xml error
 FLEX-35106  Incorrect date in datefield popup for fr_FR locale
 FLEX-35100  TextFlowLine.recreateTextLine() throws a null object reference error
+FLEX-35099  BusyIndicator has the wrong wrong rotation centre for iOS
 FLEX-35097  How to compile AIR beta 22 with Flex SDK?
 FLEX-35082  moveIndexFindRow doesn't accept integer values
 FLEX-35078  Fatal when SelectionManager tries to reapply selection onto changed textFlow
@@ -41,6 +42,7 @@ FLEX-35028  Error in DataGrid getHeaderRendererAt(-1)
 FLEX-35025  Validator results cannot be intercepted if the value is null
 FLEX-34935  Copy From Word Document And Pasting Into TextRegion Not Working Properly
 FLEX-34926  Misplaced [PercentProxy] metatag in GridColumn
+FLEX-34738  Not delete BusyIndicator
 FLEX-34698  Flatspark ButtonIcon: Introduce 'iconFontPlacement' style
 FLEX-34391  ScrollableStageText with large y value crashes app
 FLEX-34088  CalloutButton closes when selecting an item in a spark Dropdown


[30/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Added no browse option to top finder from popping up

Posted by jm...@apache.org.
Added no browse option to top finder from popping up


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

Branch: refs/heads/master
Commit: ed0c3141101e04a885d7af97372b880880dd5592
Parents: 9e7632d
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Dec 19 15:14:59 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Dec 19 15:14:59 2016 +1100

----------------------------------------------------------------------
 ide/addAIRtoSDK.sh | 4 ++--
 installer.xml      | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/ed0c3141/ide/addAIRtoSDK.sh
----------------------------------------------------------------------
diff --git a/ide/addAIRtoSDK.sh b/ide/addAIRtoSDK.sh
index 66cd339..0677c66 100755
--- a/ide/addAIRtoSDK.sh
+++ b/ide/addAIRtoSDK.sh
@@ -116,8 +116,8 @@ downloadAIR()
 	curl ${airDownload} > "${airTempDir}/air.dmg"
 	
 	echo Extracting into SDK 
-	hdiutil attach "${airTempDir}"/air.dmg
-	cp -R "/Volumes/AIR SDK/" "${IDE_SDK_DIR}"
+	hdiutil attach -nobrowse "${airTempDir}"/air.dmg
+	cp -fR "/Volumes/AIR SDK/" "${IDE_SDK_DIR}"
 	umount "/Volumes/AIR SDK"
     else
 	echo Downloading AIR ${version}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/ed0c3141/installer.xml
----------------------------------------------------------------------
diff --git a/installer.xml b/installer.xml
index 292cd8b..5996861 100644
--- a/installer.xml
+++ b/installer.xml
@@ -443,6 +443,7 @@
 		<echo message="Mounting dmg"/>
 		<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
 	      <arg value="attach"/>
+	      <arg value="-nobrowse"/>
 	      <arg value="${download.dir}/airsdk/${air.sdk.url.file}"/>
 	    </exec>
 	</target>


[21/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Bring back loading installer config from flex.apache.org website.

Posted by jm...@apache.org.
Bring back loading installer config from flex.apache.org website.


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

Branch: refs/heads/master
Commit: 44960c0daef74fe6f2bdf01219e13da500df1d58
Parents: 3a90722
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Tue Dec 13 15:26:11 2016 -0800
Committer: OmPrakash Muppirala <bi...@gmail.com>
Committed: Tue Dec 13 15:26:11 2016 -0800

----------------------------------------------------------------------
 installer.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/44960c0d/installer.xml
----------------------------------------------------------------------
diff --git a/installer.xml b/installer.xml
index f86ecec..1490420 100644
--- a/installer.xml
+++ b/installer.xml
@@ -151,8 +151,8 @@
     <target name="get-data">
 		<tstamp />
 		<property name="ts" value="${DSTAMP}${TSTAMP}" />
-		<!-- <property name="xml.properties" value="http://flex.apache.org/installer/sdk-installer-config-4.0.xml?ts=${ts}" />
-        <get src="${xml.properties}" dest="${basedir}/sdk-installer-config-4.0.xml" /> -->
+		<property name="xml.properties" value="http://flex.apache.org/installer/sdk-installer-config-4.0.xml?ts=${ts}" />
+        <get src="${xml.properties}" dest="${basedir}/sdk-installer-config-4.0.xml" />
         <xmlproperty file="${basedir}/sdk-installer-config-4.0.xml" semanticAttributes="true" collapseAttributes="true"/>
         <xmlproperty file="${basedir}/flex-sdk-description.xml" semanticAttributes="true" collapseAttributes="true"/>
         <condition property="air.sdk.version" value="${config.airsdk.linux.versions.default}">


[24/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - download using ant vars

Posted by jm...@apache.org.
download using ant vars


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

Branch: refs/heads/master
Commit: a5b11cdb78c15f693bbb00e006aef0dbb36a6ded
Parents: 24c14c0
Author: Alex Harui <ah...@apache.org>
Authored: Sun Dec 18 10:23:53 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Dec 18 10:23:53 2016 -0800

----------------------------------------------------------------------
 frameworks/downloads.xml | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a5b11cdb/frameworks/downloads.xml
----------------------------------------------------------------------
diff --git a/frameworks/downloads.xml b/frameworks/downloads.xml
index 82d12a4..a897e11 100644
--- a/frameworks/downloads.xml
+++ b/frameworks/downloads.xml
@@ -32,13 +32,19 @@
     <property name="lib.opt.dir" value="${FLEX_HOME}/lib/external/optional"/>
 
     <property name="flex-deps.dir" value="flex_deps"/>
+    <property name="adobe.afe.url" value="https://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib/afe.jar?format=raw"/>
     <property name="adobe.afe.file" value="afe.jar"/>
+    <property name="adobe.aglj40.url" value="https://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib/aglj40.jar?format=raw"/>
     <property name="adobe.aglj40.file" value="aglj40.jar"/>
+    <property name="adobe.rideau.url" value="http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib/rideau.jar?format=raw"/>
     <property name="adobe.rideau.file" value="rideau.jar"/>
+    <property name="adobe.flex-fontkit.url" value="http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib/flex-fontkit.jar?format=raw"/>
     <property name="adobe.flex-fontkit.file" value="flex-fontkit.jar"/>
     <property name="pixelbender.url" value="http://www.apache.org/dyn/mirrors/mirrors.cgi" />
     <property name="pixelbender.folder" value="flex/pixelbender/1.0/binaries" />
     <property name="pixelbender.bin.zip" value="apache-flex-sdk-pixel-bender-1.0.0-bin.zip" />
+    <property name="osmf.url" value="http://downloads.sourceforge.net/project/osmf.adobe/OSMF%202.0%20Release%20%28final%20source%2C%20ASDocs%2C%20pdf%20guides%20and%20release%20notes%29/OSMF.swc?r=&amp;ts=148208359&amp;use_mirror=pilotfiber" />
+    <property name="swfobject.url" value="https://codeload.github.com/swfobject/swfobject/zip/2.2" />
     
     <property name="adobe.flex.license" value="
         ${line.separator}
@@ -102,10 +108,7 @@
 
     <target name="download-osmf-swc" unless="osmf.swc.exists">
         <mkdir dir="${download.dir}"/>
-        <!-- get src="http://sourceforge.net/projects/osmf.adobe/files/OSMF%202.0%20Release%20%28final%20source%2C%20ASDocs%2C%20pdf%20guides%20and%20release%20notes%29/OSMF.swc/download" 
-            dest="${download.dir}/osmf.swc" 
-            verbose="false"/ -->
-        <get src="http://downloads.sourceforge.net/project/osmf.adobe/OSMF%202.0%20Release%20%28final%20source%2C%20ASDocs%2C%20pdf%20guides%20and%20release%20notes%29/OSMF.swc?r=&amp;ts=1381906346&amp;use_mirror=optimate" 
+        <get src="${osmf.url}"
             dest="${download.dir}/osmf.swc" 
             verbose="false" ignoreerrors="true"/>
         <antcall target="get-from-cache-if-needed" >
@@ -161,7 +164,7 @@
         description="Copies SWFObject from code.google.com">
         
         <mkdir dir="${download.dir}"/>
-        <get src="https://codeload.github.com/swfobject/swfobject/zip/2.2"
+        <get src="${swfobject.url}"
             dest="${download.dir}/swfobject_2_2.zip" 
             verbose="false" ignoreerrors="true"/>
         
@@ -312,7 +315,7 @@
 
     <target name="download-afe" unless="adobe.afe.download.exists" >
         <mkdir dir="${download.dir}"/>
-        <get src="https://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib/afe.jar?format=raw"
+        <get src="${adobe.afe.url}"
             dest="${download.dir}/${adobe.afe.file}" ignoreerrors="true"/>
         <antcall target="get-from-cache-if-needed" >
             <param name="filename" value="${adobe.afe.file}" />
@@ -324,7 +327,7 @@
 
     <target name="download-aglj40" unless="adobe.aglj40.download.exists" >
         <mkdir dir="${download.dir}"/>
-        <get src="https://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib/aglj40.jar?format=raw"
+        <get src="${adobe.aglj40.url}"
              dest="${download.dir}/${adobe.aglj40.file}" ignoreerrors="true"/>
          <antcall target="get-from-cache-if-needed" >
              <param name="filename" value="${adobe.aglj40.file}" />
@@ -336,7 +339,7 @@
 
     <target name="download-rideau" unless="adobe.rideau.download.exists" >
         <mkdir dir="${download.dir}"/>
-        <get src="http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib/rideau.jar?format=raw"
+        <get src="${adobe.rideau.url}"
              dest="${download.dir}/${adobe.rideau.file}" ignoreerrors="true"/>
          <antcall target="get-from-cache-if-needed" >
              <param name="filename" value="${adobe.rideau.file}" />
@@ -348,7 +351,7 @@
 
     <target name="download-flex-fontkit" unless="adobe.flex-fontkit.download.exists" >
         <mkdir dir="${download.dir}"/>
-        <get src="http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib/flex-fontkit.jar?format=raw"
+        <get src="${adobe.flex-fontkit.url}"
              dest="${download.dir}/${adobe.flex-fontkit.file}" ignoreerrors="true"/>
          <antcall target="get-from-cache-if-needed" >
              <param name="filename" value="${adobe.flex-fontkit.file}" />


[39/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Fix regression issue. Turns out LabelUtil.itemToLabel has side effects and text was not updated on control unless called

Posted by jm...@apache.org.
Fix regression issue. Turns out LabelUtil.itemToLabel has side effects and text was not updated on control unless called


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

Branch: refs/heads/master
Commit: 4523974603953af1e042917f0098049dd290ffb2
Parents: d7fdb19
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Jan 10 19:28:19 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Jan 10 19:28:19 2017 +1100

----------------------------------------------------------------------
 .../projects/spark/src/spark/components/DropDownList.as | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/45239746/frameworks/projects/spark/src/spark/components/DropDownList.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/DropDownList.as b/frameworks/projects/spark/src/spark/components/DropDownList.as
index e4dbd96..b6dfa01 100644
--- a/frameworks/projects/spark/src/spark/components/DropDownList.as
+++ b/frameworks/projects/spark/src/spark/components/DropDownList.as
@@ -367,11 +367,13 @@ public class DropDownList extends DropDownListBase
     {
         if (labelDisplay)
         {
-            if (displayItem == undefined)
-                displayItem = selectedItem;
-            else
-                labelDisplay.text = displayItem != null ? LabelUtil.itemToLabel(displayItem, labelField, labelFunction) : prompt;
-        }
+              if (displayItem == undefined)
+                  displayItem = selectedItem;
+              if (displayItem != null && displayItem != undefined)
+                  labelDisplay.text = LabelUtil.itemToLabel(displayItem, labelField, labelFunction);
+              else
+                  labelDisplay.text = prompt;
+		}
     }
 }
 }
\ No newline at end of file


[48/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - update version and remove duplicate air line

Posted by jm...@apache.org.
update version and remove duplicate air 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/f9e70387
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/f9e70387
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/f9e70387

Branch: refs/heads/master
Commit: f9e7038738585ed4727ebcd41de63ca30adb8e76
Parents: 7157375
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Mar 5 15:04:59 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun Mar 5 15:04:59 2017 +1100

----------------------------------------------------------------------
 ide/flashbuilder/config/air-config.xml | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/f9e70387/ide/flashbuilder/config/air-config.xml
----------------------------------------------------------------------
diff --git a/ide/flashbuilder/config/air-config.xml b/ide/flashbuilder/config/air-config.xml
index 4b48d04..2ee5cfd 100644
--- a/ide/flashbuilder/config/air-config.xml
+++ b/ide/flashbuilder/config/air-config.xml
@@ -80,7 +80,6 @@
          <path-element>libs</path-element>
          <path-element>libs/mx</path-element>
          <path-element>libs/air</path-element>
-         <path-element>libs/air</path-element>
          <path-element>locale/{locale}</path-element>
       </library-path>
      
@@ -353,7 +352,7 @@
       <!-- Framework SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/framework.swc</path-element>
-		<rsl-url>framework_4.15.0.0.swf</rsl-url>
+		<rsl-url>framework_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 	  
 	  <!-- TextLayout SWC -->
@@ -363,37 +362,37 @@
     -->
     <runtime-shared-library-path>
 		<path-element>libs/textLayout.swc</path-element>
-		<rsl-url>textLayout_4.15.0.0.swf</rsl-url>
+		<rsl-url>textLayout_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
     
       <!-- Spark SWC-->
    	<runtime-shared-library-path>
 		<path-element>libs/spark.swc</path-element>
-		<rsl-url>spark_4.15.0.0.swf</rsl-url>
+		<rsl-url>spark_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 	
       <!-- Sparkskins SWC-->
    	<runtime-shared-library-path>
 		<path-element>libs/sparkskins.swc</path-element>
-		<rsl-url>sparkskins_4.15.0.0.swf</rsl-url>
+		<rsl-url>sparkskins_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 	 
 	  <!-- RPC SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/rpc.swc</path-element>
-		<rsl-url>rpc_4.15.0.0.swf</rsl-url>
+		<rsl-url>rpc_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
     	
       <!-- Charts SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/charts.swc</path-element>
-		<rsl-url>charts_4.15.0.0.swf</rsl-url>
+		<rsl-url>charts_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- Spark_dmv SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/spark_dmv.swc</path-element>
-		<rsl-url>spark_dmv_4.15.0.0.swf</rsl-url>
+		<rsl-url>spark_dmv_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- OSMF SWC -->
@@ -403,19 +402,19 @@
     -->
     <runtime-shared-library-path>
 		<path-element>libs/osmf.swc</path-element>
-		<rsl-url>osmf_4.15.0.0.swf</rsl-url>
+		<rsl-url>osmf_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
       
       <!-- MX SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/mx/mx.swc</path-element>
-		<rsl-url>mx_4.15.0.0.swf</rsl-url>
+		<rsl-url>mx_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
    
       <!-- Advancedgrids SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/advancedgrids.swc</path-element>
-		<rsl-url>advancedgrids_4.15.0.0.swf</rsl-url>
+		<rsl-url>advancedgrids_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 	
     <!-- static-link-runtime-shared-libraries: statically link the libraries specified by the -runtime-shared-libraries-path option.-->


[26/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Added support for AIR and flash player 24.0

Posted by jm...@apache.org.
Added support for AIR and flash player 24.0


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

Branch: refs/heads/master
Commit: f6b226284e318d2ee24e12c9ba90bcc9719bdd8f
Parents: 7726874
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Dec 19 09:57:38 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Dec 19 09:57:38 2016 +1100

----------------------------------------------------------------------
 ide/addAIRtoSDK.sh           | 29 ++++++++++++++++++++++++++---
 ide/checkAllPlayerGlobals.sh |  1 +
 ide/setFlashPlayerVersion.sh | 18 ++++++++++++++----
 3 files changed, 41 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/f6b22628/ide/addAIRtoSDK.sh
----------------------------------------------------------------------
diff --git a/ide/addAIRtoSDK.sh b/ide/addAIRtoSDK.sh
index 23b3a31..50fdb97 100755
--- a/ide/addAIRtoSDK.sh
+++ b/ide/addAIRtoSDK.sh
@@ -30,7 +30,8 @@
 AIR_VERSION="$1"
 OS=`uname`
 
-if [[ "${AIR_VERSION}" != "23.0"  && "${AIR_VERSION}" != "22.0"  && "${AIR_VERSION}" != "21.0"
+if [[ "${AIR_VERSION}" != "24.0"
+  && "${AIR_VERSION}" != "23.0"  && "${AIR_VERSION}" != "22.0"  && "${AIR_VERSION}" != "21.0"
   &&  "${AIR_VERSION}" != "20.0"  && "${AIR_VERSION}" != "19.0"  && "${AIR_VERSION}" != "18.0"
   && "${AIR_VERSION}" != "17.0" && "${AIR_VERSION}" != "16.0" && "${AIR_VERSION}" != "15.0" 
   && "${AIR_VERSION}" != "14.0" && "${AIR_VERSION}" != "13.0" && "${AIR_VERSION}" != "4.0" 
@@ -39,7 +40,7 @@ if [[ "${AIR_VERSION}" != "23.0"  && "${AIR_VERSION}" != "22.0"  && "${AIR_VERSI
   && "${AIR_VERSION}" != "3.3" && "${AIR_VERSION}" != "3.2" && "${AIR_VERSION}" != "3.1" 
   && "${AIR_VERSION}" != "3.0" && "${AIR_VERSION}" != "2.7" && "${AIR_VERSION}" != "2.6" ]]
 then
-	echo Unknown version ${AIR_VERISON} of AIR. Versions 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0 and 23.0 are supported.
+	echo Unknown version ${AIR_VERISON} of AIR. Versions 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0,  23.0 and 24.0 are supported.
 	exit 1;
 fi
 
@@ -106,13 +107,28 @@ downloadAIR()
     else
         airDownload="https://airdownload.adobe.com/air/lin/download/${version}/AdobeAIRSDK.tbz2"
     fi
+
+    if [[ "${AIR_VERSION}" == "24.0" ]]
+    then
+        airDownload="https://airdownload.adobe.com/air/mac/download/24.0/AdobeAIRSDK.dmg"
+	echo Downloading AIR ${version}
+	echo from ${airDownload}
+	curl ${airDownload} > "${airTempDir}/air.dmg"
+	
+	echo Extracting into SDK 
+	hdiutil attach "${airTempDir}"/air.dmg
+	cp -R "/Volumes/AIR SDK" "${IDE_SDK_DIR}"
+	umount "/Volumes/AIR SDK"
+    else
 	echo Downloading AIR ${version}
+	echo from ${airDownload}
 	curl ${airDownload} > "${airTempDir}/air.tbz2"
 	
 	echo Extracting into SDK  
 	tar xf "${airTempDir}/air.tbz2" -C "${IDE_SDK_DIR}"
+    fi
 
-	rm -rf "${airTempDir}"	
+    rm -rf "${airTempDir}"	
 }
 
 agreeLicense
@@ -157,6 +173,13 @@ for configFile in "${configFiles[@]}"
 do
 	echo Updating ${configFile}
 	
+	# 24.0 needs FP 24 and swf version 35
+	if [ ${AIR_VERSION} = "23.0" ]
+	then
+		updatePlayerVersion 24.0 "${configFile}"
+		updateSWFVersion 35 "${configFile}"
+	fi
+
 	# 23.0 needs FP 23 and swf version 34
 	if [ ${AIR_VERSION} = "23.0" ]
 	then

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/f6b22628/ide/checkAllPlayerGlobals.sh
----------------------------------------------------------------------
diff --git a/ide/checkAllPlayerGlobals.sh b/ide/checkAllPlayerGlobals.sh
index 2d9c194..5a8aaa2 100755
--- a/ide/checkAllPlayerGlobals.sh
+++ b/ide/checkAllPlayerGlobals.sh
@@ -132,3 +132,4 @@ downloadPlayerGlobal 20.0 444ea8e8f2cddec22ed8b77e0d61bfe2 playerglobal20_0.swc
 downloadPlayerGlobal 21.0 1dd14e80b962327ccd17ce1321dc2135 playerglobal21_0.swc
 downloadPlayerGlobal 22.0 177e7f8cb98bc874b73296791b747128 playerglobal22_0.swc
 downloadPlayerGlobal 23.0 1a7cd9b61930be524e9c98e1a85feebe playerglobal23_0.swc
+downloadPlayerGlobal 24.0 aea2bcc689232752ef68efbf98368066 playerglobal24_0.swc

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/f6b22628/ide/setFlashPlayerVersion.sh
----------------------------------------------------------------------
diff --git a/ide/setFlashPlayerVersion.sh b/ide/setFlashPlayerVersion.sh
index fbde916..63dccec 100755
--- a/ide/setFlashPlayerVersion.sh
+++ b/ide/setFlashPlayerVersion.sh
@@ -99,13 +99,13 @@ determineVersion()
         then 
             FLASH_VERSION="11.1"
         else
-            FLASH_VERSION="23.0"
+            FLASH_VERSION="24.0"
         fi
     fi
     
     if [ ${latest} = "Y" ]
     then
-    	FLASH_VERSION="23.0"
+    	FLASH_VERSION="24.0"
     fi
 
     echo "Setting minimum Flash Player version to ${FLASH_VERSION}"
@@ -126,9 +126,9 @@ if [[ "${FLASH_VERSION}" != "10.2" && "${FLASH_VERSION}" != "10.3"  && "${FLASH_
   && "${FLASH_VERSION}" != "15.0" && "${FLASH_VERSION}" != "16.0" && "${FLASH_VERSION}" != "17.0"
   && "${FLASH_VERSION}" != "17.0" && "${FLASH_VERSION}" != "18.0" && "${FLASH_VERSION}" != "19.0"
   && "${FLASH_VERSION}" != "20.0" && "${FLASH_VERSION}" != "21.0" && "${FLASH_VERSION}" != "22.0"
-  && "${FLASH_VERSION}" != "23.0" ]]
+  && "${FLASH_VERSION}" != "23.0" && "${FLASH_VERSION}" != "24.0" ]]
 then
-	echo Unknown version ${FLASH_VERSION} of Flash Player. Versions 10.2, 10.3, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 11.7, 11.8, 11.9, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0 and 23.0 are supported.
+	echo Unknown version ${FLASH_VERSION} of Flash Player. Versions 10.2, 10.3, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 11.7, 11.8, 11.9, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0 and 24.0 are supported.
 	exit 1;
 fi
 
@@ -149,6 +149,11 @@ then
 	echo Installing AIR
 	echo
 
+	if [[ $FLASH_VERSION = "24.0" ]]
+    then
+        ./addAIRtoSDK.sh 24.0 "$IDE_SDK_DIR"
+    fi
+
 	if [[ $FLASH_VERSION = "23.0" ]]
     then
         ./addAIRtoSDK.sh 23.0 "$IDE_SDK_DIR"
@@ -267,6 +272,11 @@ do
 	
 	updatePlayerVersion "${FLASH_VERSION}" "${configFile}"
 
+	if [ ${FLASH_VERSION} = "24.0" ]
+	then
+		updateSWFVersion 35 "${configFile}"
+	fi
+
 	if [ ${FLASH_VERSION} = "23.0" ]
 	then
 		updateSWFVersion 34 "${configFile}"


[34/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Update year to 2017

Posted by jm...@apache.org.
Update year to 2017


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

Branch: refs/heads/master
Commit: 48a9ed80aa6da21bb5337342a4970d970c1a729d
Parents: 3f03b2e
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Jan 7 09:38:37 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Jan 7 09:38:37 2017 +1100

----------------------------------------------------------------------
 .../debugger/src/java/flex/tools/debugger/cli/fdb_da.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_de.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_en.properties  | 4 ++--
 .../debugger/src/java/flex/tools/debugger/cli/fdb_es.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_fi.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_fr.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_it.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_ja.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_ko.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_nb.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_nl.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_pt.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_ru.properties  | 2 +-
 .../debugger/src/java/flex/tools/debugger/cli/fdb_sv.properties  | 2 +-
 .../src/java/flex/tools/debugger/cli/fdb_zh_CN.properties        | 2 +-
 .../src/java/flex/tools/debugger/cli/fdb_zh_TW.properties        | 2 +-
 16 files changed, 17 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_da.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_da.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_da.properties
index 0e2d506..ec86542 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_da.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_da.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=development
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. Alle rettigheder forbeholdes.
+copyright=Copyright 2017 The Apache Software Foundation. Alle rettigheder forbeholdes.
 noResponseException=Afspilleren reagerede ikke som forventet p\u00e5 kommandoen; kommandoen er afbrudt.
 notSuspendedException=Kommandoen kan ikke afgives mens afspilleren k\u00f8rer
 illegalStateException=Kommandoen fungerer ikke uden for en session.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_de.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_de.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_de.properties
index ee9cdf1..3b4b64c 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_de.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_de.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=development
 about=Apache FDB (Flash Player Debugger) [Build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Der Player hat nicht wie erwartet auf den Befehl reagiert; der Befehl wird abgebrochen.
 notSuspendedException=Der Befehl kann nicht ausgestellt werden, w\u00e4hrend der Player ausgef\u00fchrt wird
 illegalStateException=Der Befehl ist ohne Sitzung nicht zul\u00e4ssig.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_en.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_en.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_en.properties
index 4fadd11..7d317fd 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_en.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_en.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=development
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Player did not respond to the command as expected; command aborted.
 notSuspendedException=Command cannot be issued while Player is running
 illegalStateException=Command not valid without a session.
@@ -271,4 +271,4 @@ key34=Player is not currently suspended on any actions.
 key35=in '${swfName}'
 atAddress=at ${address}
 haltedDueToFault=due to ${fault}
-noWorkersRunning=There are no workers running.
\ No newline at end of file
+noWorkersRunning=There are no workers running.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_es.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_es.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_es.properties
index b972575..1cdb80b 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_es.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_es.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=desarrollo
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. Reservados todos los derechos.
+copyright=Copyright 2017 The Apache Software Foundation. Reservados todos los derechos.
 noResponseException=El reproductor no respondi\u00f3 al comando como se esperaba; se cancel\u00f3 el comando.
 notSuspendedException=No puede emitirse el comando mientras el reproductor se est\u00e1 ejecutando.
 illegalStateException=El comando no es v\u00e1lido sin una sesi\u00f3n.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fi.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fi.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fi.properties
index 9d3f6b9..7e177cc 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fi.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fi.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=kehitys
 about=Apache fdb (Flash Player Debugger) [versio ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Soitin ei vastannut komentoon odotetulla tavalla. Komento keskeytettiin.
 notSuspendedException=Komentoa ei voi antaa, kun soitin on k\u00e4ynniss\u00e4
 illegalStateException=Komento ei kelpaa ilman istuntoa.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fr.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fr.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fr.properties
index 343ff4c..ddbe83d 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fr.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_fr.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=d\u00e9veloppement
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. Tous droits r\u00e9serv\u00e9s.
+copyright=Copyright 2017 The Apache Software Foundation. Tous droits r\u00e9serv\u00e9s.
 noResponseException=Le lecteur n'a pas r\u00e9pondu \u00e0 la commande comme pr\u00e9vu ; commande annul\u00e9e.
 notSuspendedException=Impossible d'\u00e9mettre la commande lorsque le lecteur est en cours d'ex\u00e9cution
 illegalStateException=Commande incorrecte sans session.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_it.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_it.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_it.properties
index 6ab6959..f724c53 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_it.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_it.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=sviluppo
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Player non ha risposto al comando come previsto. Comando terminato.
 notSuspendedException=Impossibile inviare il comando mentre Player \u00e8 in esecuzione
 illegalStateException=Comando non valido senza una sessione.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ja.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ja.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ja.properties
index 17424d6..8852f48 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ja.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ja.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=development
 about=Apache fdb (Flash Player Debugger) [\u30d3\u30eb\u30c9 ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Player \u304c\u30b3\u30de\u30f3\u30c9\u306b\u5bfe\u3057\u3066\u4e88\u671f\u3055\u308c\u305f\u5fdc\u7b54\u3092\u3057\u306a\u304b\u3063\u305f\u305f\u3081\u3001\u30b3\u30de\u30f3\u30c9\u51e6\u7406\u306f\u4e2d\u6b62\u3055\u308c\u307e\u3057\u305f\u3002
 notSuspendedException=Player \u306e\u5b9f\u884c\u4e2d\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093
 illegalStateException=\u30bb\u30c3\u30b7\u30e7\u30f3\u304c\u78ba\u7acb\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001\u30b3\u30de\u30f3\u30c9\u306f\u7121\u52b9\u3067\u3059\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ko.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ko.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ko.properties
index f086cff..c271765 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ko.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ko.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=\uac1c\ubc1c
 about=Apache fdb(Flash Player Debugger) [\ube4c\ub4dc ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=\ud50c\ub808\uc774\uc5b4\uac00 \uc608\uc0c1\ub300\ub85c \uba85\ub839\uc5d0 \uc751\ub2f5\ud558\uc9c0 \uc54a\uc544 \uba85\ub839\uc774 \uc911\ub2e8\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
 notSuspendedException=\ud50c\ub808\uc774\uc5b4 \uc2e4\ud589 \uc911\uc5d0 \uba85\ub839\uc744 \uc218\ud589\ud560 \uc218 \uc5c6\uc74c
 illegalStateException=\uc138\uc158\uc774 \uc5c6\uc73c\uba74 \uba85\ub839\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nb.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nb.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nb.properties
index 171a397..6e3d89a 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nb.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nb.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=utvikling
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Spilleren reagerte ikke som forventet p\u00e5 kommandoen. Kommando ble avbrutt.
 notSuspendedException=Kommandoen kan ikke gis mens spilleren kj\u00f8rer
 illegalStateException=Kommandoen er ikke gyldig uten en \u00f8kt.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nl.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nl.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nl.properties
index e02d295..1447a71 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nl.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_nl.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=ontwikkeling
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Player heeft op onverwachte wijze gereageerd op de opdracht; opdracht afgebroken.
 notSuspendedException=Kan opdracht niet uitvoeren terwijl Player wordt uitgevoerd
 illegalStateException=Opdracht niet geldig zonder sessie

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_pt.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_pt.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_pt.properties
index 12e33ed..d84aace 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_pt.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_pt.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=desenvolvimento
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. Todos os direitos reservados.
+copyright=Copyright 2017 The Apache Software Foundation. Todos os direitos reservados.
 noResponseException=O Player n\u00e3o respondeu ao comando como esperado; comando anulado.
 notSuspendedException=N\u00e3o \u00e9 poss\u00edvel emitir o comando enquanto o Player est\u00e1 em execu\u00e7\u00e3o
 illegalStateException=Comando inv\u00e1lido sem uma sess\u00e3o.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ru.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ru.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ru.properties
index cec27cc..9109214 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ru.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_ru.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430
 about=Apache fdb (\u043e\u0442\u043b\u0430\u0434\u0447\u0438\u043a Flash Player) [\u0441\u0431\u043e\u0440\u043a\u0430 ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=\u041f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043e\u0442\u0432\u0435\u0442\u0438\u043b \u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c; \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e.
 notSuspendedException=\u041a\u043e\u043c\u0430\u043d\u0434\u0443 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f
 illegalStateException=\u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0439 \u0431\u0435\u0437 \u0441\u0435\u0430\u043d\u0441\u0430.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_sv.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_sv.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_sv.properties
index 7109382..215164a 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_sv.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_sv.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=utveckling
 about=Apache fdb (Flash Player Debugger) [build ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. Med ensamr\u00e4tt.
+copyright=Copyright 2017 The Apache Software Foundation. Med ensamr\u00e4tt.
 noResponseException=Spelaren svarade inte p\u00e5 kommandot som f\u00f6rv\u00e4ntat. Kommandot har avbrutits.
 notSuspendedException=Du kan inte ange kommandon n\u00e4r spelaren k\u00f6rs.
 illegalStateException=Kommandot \u00e4r inte giltigt utan session.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_CN.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_CN.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_CN.properties
index a15e848..e24c715 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_CN.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_CN.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=\u5f00\u53d1
 about=Apache fdb\uff08Flash Player \u8c03\u8bd5\u5668\uff09[\u5185\u90e8\u7248\u672c ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Player \u672a\u6309\u9884\u671f\u65b9\u5f0f\u54cd\u5e94\u547d\u4ee4\uff1b\u547d\u4ee4\u5df2\u5f02\u5e38\u7ec8\u6b62\u3002
 notSuspendedException=Player \u5904\u4e8e\u8fd0\u884c\u72b6\u6001\u65f6\u65e0\u6cd5\u53d1\u51fa\u547d\u4ee4
 illegalStateException=\u5982\u679c\u6ca1\u6709\u4f1a\u8bdd\uff0c\u5219\u547d\u4ee4\u65e0\u6548\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/48a9ed80/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_TW.properties
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_TW.properties b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_TW.properties
index eb89bdd..3e26372 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_TW.properties
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/fdb_zh_TW.properties
@@ -25,7 +25,7 @@
 
 defaultBuildName=\u958b\u767c
 about=Apache fdb (Flash Player \u9664\u932f\u7a0b\u5f0f) [\u7d44\u5efa ${build}]
-copyright=Copyright 2016 The Apache Software Foundation. All rights reserved.
+copyright=Copyright 2017 The Apache Software Foundation. All rights reserved.
 noResponseException=Player \u672a\u5982\u9810\u671f\u56de\u61c9\u6307\u4ee4\uff1b\u6307\u4ee4\u5df2\u4e2d\u6b62\u3002
 notSuspendedException=Player \u6b63\u5728\u57f7\u884c\u6642\u7121\u6cd5\u767c\u51fa\u6307\u4ee4
 illegalStateException=\u5982\u679c\u6c92\u6709\u5de5\u4f5c\u968e\u6bb5\uff0c\u6307\u4ee4\u5c31\u7121\u6548\u3002


[49/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - update version

Posted by jm...@apache.org.
update version


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

Branch: refs/heads/master
Commit: 14c9664ef024c88dece59b90d8f5002eeea1fc76
Parents: f9e7038
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Mar 5 15:05:30 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun Mar 5 15:05:30 2017 +1100

----------------------------------------------------------------------
 ide/flashbuilder/config/flex-config.xml | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/14c9664e/ide/flashbuilder/config/flex-config.xml
----------------------------------------------------------------------
diff --git a/ide/flashbuilder/config/flex-config.xml b/ide/flashbuilder/config/flex-config.xml
index f9f830d..c705f25 100644
--- a/ide/flashbuilder/config/flex-config.xml
+++ b/ide/flashbuilder/config/flex-config.xml
@@ -357,7 +357,7 @@
       <!-- Framework SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/framework.swc</path-element>
-		<rsl-url>framework_4.15.0.0.swf</rsl-url>
+		<rsl-url>framework_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
 	  <!-- TextLayout SWC -->
@@ -367,37 +367,37 @@
     -->
     <runtime-shared-library-path>
 		<path-element>libs/textLayout.swc</path-element>
-		<rsl-url>textLayout_4.15.0.0.swf</rsl-url>
+		<rsl-url>textLayout_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- Spark SWC-->
    	<runtime-shared-library-path>
 		<path-element>libs/spark.swc</path-element>
-		<rsl-url>spark_4.15.0.0.swf</rsl-url>
+		<rsl-url>spark_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- Sparkskins SWC-->
    	<runtime-shared-library-path>
 		<path-element>libs/sparkskins.swc</path-element>
-		<rsl-url>sparkskins_4.15.0.0.swf</rsl-url>
+		<rsl-url>sparkskins_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
 	  <!-- RPC SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/rpc.swc</path-element>
-		<rsl-url>rpc_4.15.0.0.swf</rsl-url>
+		<rsl-url>rpc_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- Charts SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/charts.swc</path-element>
-		<rsl-url>charts_4.15.0.0.swf</rsl-url>
+		<rsl-url>charts_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- Spark_dmv SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/spark_dmv.swc</path-element>
-		<rsl-url>spark_dmv_4.15.0.0.swf</rsl-url>
+		<rsl-url>spark_dmv_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- OSMF SWC -->
@@ -407,19 +407,19 @@
     -->
     <runtime-shared-library-path>
 		<path-element>libs/osmf.swc</path-element>
-		<rsl-url>osmf_4.15.0.0.swf</rsl-url>
+		<rsl-url>osmf_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- MX SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/mx/mx.swc</path-element>
-		<rsl-url>mx_4.15.0.0.swf</rsl-url>
+		<rsl-url>mx_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
       <!-- Advancedgrids SWC -->
 	<runtime-shared-library-path>
 		<path-element>libs/advancedgrids.swc</path-element>
-		<rsl-url>advancedgrids_4.15.0.0.swf</rsl-url>
+		<rsl-url>advancedgrids_4.16.0.0.swf</rsl-url>
 	</runtime-shared-library-path>
 
 	<!-- static-link-runtime-shared-libraries: statically link the libraries specified by the -runtime-shared-libraries-path option.-->


[06/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Merge branch 'release4.16.0' of https://git-wip-us.apache.org/repos/asf/flex-sdk into release4.16.0

Posted by jm...@apache.org.
Merge branch 'release4.16.0' of https://git-wip-us.apache.org/repos/asf/flex-sdk into release4.16.0


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

Branch: refs/heads/master
Commit: b7ea70499a240c165bf48e3e1e1ddf014a7cba65
Parents: 51eae4b fc70d58
Author: Justin Mclean <jm...@apache.org>
Authored: Wed Nov 9 10:13:22 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Wed Nov 9 10:13:22 2016 +1100

----------------------------------------------------------------------
 modules/downloads.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[23/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - fix a few things

Posted by jm...@apache.org.
fix a few things


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

Branch: refs/heads/master
Commit: 24c14c0afcb80f7cb034ca262d4c8e07b1c70091
Parents: bc87665
Author: Alex Harui <ah...@apache.org>
Authored: Sun Dec 18 10:23:35 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Dec 18 10:23:35 2016 -0800

----------------------------------------------------------------------
 ApproveSDK.xml | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/24c14c0a/ApproveSDK.xml
----------------------------------------------------------------------
diff --git a/ApproveSDK.xml b/ApproveSDK.xml
index ef60232..2d6375b 100644
--- a/ApproveSDK.xml
+++ b/ApproveSDK.xml
@@ -54,9 +54,10 @@
 	
     <property name="src.rat.report" value="${basedir}/rat-report-src.txt"/>
     <property name="bin.rat.report" value="${basedir}/rat-report-bin.txt"/>
-	<property name="apache.rat.jar" value="apache-rat-0.8.jar" />
-	<property name="apache.rat.tasks.jar" value="apache-rat-tasks-0.8.jar" />
-	<property name="apache.rat.url" value="http://people.apache.org/~aharui/rat" />
+    <property name="apache.rat.jar" value="apache-rat-0.11.jar" />
+    <property name="apache.rat.tasks.jar" value="apache-rat-tasks-0.11.jar" />
+    <property name="apache.rat.url" value="http://search.maven.org/remotecontent?filepath=org/apache/rat/apache-rat/0.11" />
+    <property name="apache.rat.tasks.url" value="http://search.maven.org/remotecontent?filepath=org/apache/rat/apache-rat-tasks/0.11" />
 	   
     <property file="${basedir}/approvesdk.properties"/>
     
@@ -160,12 +161,12 @@
 	</target>
 	
 	<target name="install-rat" depends="install-rat.jar,install-rat.tasks.jar" />
-	<target name="install-rat.jar" unless="apache.rat.found">
-		<get src="${apache.rat.url}/${apache.rat.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.jar}" />
-	</target>
-	<target name="install-rat.tasks.jar" unless="apache.rat.tasks.found">
-		<get src="${apache.rat.url}/${apache.rat.tasks.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}" />
-	</target>
+    <target name="install-rat.jar" unless="apache.rat.found">
+        <get src="${apache.rat.url}/${apache.rat.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.jar}" />
+    </target>
+    <target name="install-rat.tasks.jar" unless="apache.rat.tasks.found">
+        <get src="${apache.rat.tasks.url}/${apache.rat.tasks.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}" />
+    </target>
 	
     <target name="rat-taskdef" description="Rat taskdef">
         <typedef resource="org/apache/rat/anttasks/antlib.xml"


[18/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Add support for Adobe AIR SDK 24+ which are being served as .dmg files instead of .tbz2 files

Posted by jm...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/8036b68b/installer.xml
----------------------------------------------------------------------
diff --git a/installer.xml b/installer.xml
index b77b737..d366e0f 100644
--- a/installer.xml
+++ b/installer.xml
@@ -1,965 +1,1007 @@
-<?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="sdk_ide_install" default="install" basedir=".">
-
-    <property name="FLEX_HOME" location="${basedir}"/>
-    
-	<!-- this script supports the usingDownloadCache property and
-     downloadCacheFolder property to cache downloads in the
-     folder specified by downloadCacheFolder.  This can make
-     a huge difference in future runs although there is some
-     risk around caching bad downloads and/or needing to
-     clean up the cache -->
-    
-    <!-- Required for OSX 10.6 / Snow Leopard Performance. -->
-    <!-- Java 7 on Mac requires OSX 10.7.3 or higher and is 64-bit only -->
-    <!-- local.d32 is set/used in build.properties so this needs to be done first. -->
-    <condition property="local.d32" value="-d32">
-        <and>
-            <os family="windows"/>
-            <equals arg1="${sun.arch.data.model}" arg2="64"/>
-            <equals arg1="${os.arch}" arg2="x86_64"/>
-            <equals arg1="${ant.java.version}" arg2="1.6"/>
-        </and>
-    </condition>
-
-    <property file="${FLEX_HOME}/env.properties"/>
-    <property environment="env"/>
-    <property file="${FLEX_HOME}/local.properties"/>
-    <property file="${FLEX_HOME}/build.properties"/>
-    <property name="bundle" value="en_US" />
-	
-	<property name="flex.properties.url" value="http://flex.apache.org/installer/properties/sdk/${bundle}.properties" />
-	<get src="${flex.properties.url}" dest="${basedir}/${bundle}.properties" ignoreerrors="true" />
-    <property file="${basedir}/${bundle}.properties"/>
-	
-    <property file="${FLEX_HOME}/installer.properties/${bundle}.properties"/>
-    <property file="${FLEX_HOME}/installer.properties/en_US.properties"/>
-    <property name="download.dir" value="${FLEX_HOME}/in"/>
-    
-    <property name="swfobject.url.server" value="https://github.com" />
-    <property name="swfobject.url.folder" value="swfobject/swfobject/archive" />
-    <property name="swfobject.url.file" value="2.2.zip" />
-    <property name="swfobject.url.md5" value="4723bc29f2a93e9ad9fbeeac6fe63b9e" />
-
-    <property name="osmf.url.server" value="http://downloads.sourceforge.net" />
-    <property name="osmf.url.folder" value="project/osmf.adobe/OSMF%202.0%20Release%20%28final%20source%2C%20ASDocs%2C%20pdf%20guides%20and%20release%20notes%29" />
-    <property name="osmf.url.file" value="OSMF.swc" />
-    <property name="osmf.url.cachefile" value="OSMF.swc" />
-    <property name="osmf.url.md5" value="6385228692ab982630e47422403f6890" />
-
-    <property name="afe.url.server" value="https://sourceforge.net" />
-    <property name="afe.url.folder" value="adobe/flexsdk/code/HEAD/tree/trunk/lib" />
-    <property name="afe.url.file" value="afe.jar?format=raw" />
-    <property name="afe.url.cachefile" value="afe.jar" />
-    <property name="afe.url.md5" value="d1469e163c4fd4c1ef8be82dd6d0f1ee" />
-
-    <property name="agl.url.server" value="https://sourceforge.net" />
-    <property name="agl.url.folder" value="adobe/flexsdk/code/HEAD/tree/trunk/lib" />
-    <property name="agl.url.file" value="aglj40.jar?format=raw" />
-    <property name="agl.url.cachefile" value="aglj40.jar" />
-    <property name="agl.url.md5" value="b9b6b825787489796d9b6bf607a64824" />
-
-    <property name="fontkit.url.server" value="https://sourceforge.net" />
-    <property name="fontkit.url.folder" value="adobe/flexsdk/code/HEAD/tree/trunk/lib" />
-    <property name="fontkit.url.file" value="flex-fontkit.jar?format=raw" />
-    <property name="fontkit.url.cachefile" value="flex-fontkit.jar" />
-    <property name="fontkit.url.md5" value="2abb9f580fa40ad6ef80864f94b6e938" />
-
-    <property name="rideau.url.server" value="https://sourceforge.net" />
-    <property name="rideau.url.folder" value="adobe/flexsdk/code/HEAD/tree/trunk/lib" />
-    <property name="rideau.url.file" value="rideau.jar?format=raw" />
-    <property name="rideau.url.cachefile" value="rideau.jar" />
-    <property name="rideau.url.md5" value="3b3329c1b3de665dc116121b772c5369" />
-
-    <condition property="platform" value="mac">
-        <os family="mac" />
-    </condition>
-    <condition property="platform" value="windows">
-        <os family="windows" />
-    </condition>
-    <condition property="platform" value="linux">
-        <os family="unix" />
-    </condition>
-    <condition property="isMac" value="mac">
-        <os family="mac" />
-    </condition>
-    <condition property="isWindows" value="windows">
-        <os family="windows" />
-    </condition>
-    <condition property="isLinux" value="linux">
-        <os family="unix" />
-    </condition>
-    
-    <condition property="AIRDownloadEcho" value="${INFO_DOWNLOADING_AIR_RUNTIME_KIT_WINDOWS}">
-        <os family="windows" />
-    </condition>
-    <property name="AIRDownloadEcho" value="${INFO_DOWNLOADING_AIR_RUNTIME_KIT_MAC}" />
-    
-    <condition property="air.donot.ask" value="true">
-        <isset property="installer" />
-    </condition>
-    <condition property="flash.donot.ask" value="true">
-        <isset property="installer" />
-    </condition>
-    <property name="swfobject.donot.ask" value="true" />
-    <property name="do.swfobject.install" value="true" />
-    <property name="osmf.donot.ask" value="true" />
-    <property name="do.osmf.install" value="true" />
-    <condition property="fontswf.donot.ask" value="true">
-        <isset property="installer" />
-    </condition>
-    <property name="ofl.donot.ask" value="true" />
-    <property name="do.ofl.install" value="true" />
-    
-    <condition property="java.home" value="${env.JAVA_HOME}">
-        <and>
-            <available file="${env.JAVA_HOME}" type="dir" />
-            <not>
-                <equals arg1="" arg2="${env.JAVA_HOME}" />
-            </not>
-        </and>
-    </condition>
-
-    <target name="get-md5-data" depends="get-air-md5-data,get-flash-md5-data">
-    </target>
-    <target name="get-air-md5-data" if="air-has-md5">
-        <property name="air.sdk.url.md5" refid="${air.sdk.url.md5.ref}" />
-    </target>
-    <target name="get-flash-md5-data" if="flash-has-md5">
-        <property name="flash.sdk.url.md5" refid="${flash.sdk.url.md5.ref}" />
-    </target>
-
-    <target name="get-data">
-		<tstamp />
-		<property name="ts" value="${DSTAMP}${TSTAMP}" />
-		<property name="xml.properties" value="http://flex.apache.org/installer/sdk-installer-config-4.0.xml?ts=${ts}" />
-        <get src="${xml.properties}" dest="${basedir}/sdk-installer-config-4.0.xml" />
-        <xmlproperty file="${basedir}/sdk-installer-config-4.0.xml" semanticAttributes="true" collapseAttributes="true"/>
-        <xmlproperty file="${basedir}/flex-sdk-description.xml" semanticAttributes="true" collapseAttributes="true"/>
-        <condition property="air.sdk.version" value="${config.airsdk.linux.versions.default}">
-            <equals arg1="${platform}" arg2="linux" />
-        </condition>
-        <condition property="air.sdk.version" value="${config.airsdk.windows.versions.default}">
-            <equals arg1="${platform}" arg2="windows" />
-        </condition>
-        <condition property="air.sdk.version" value="${config.airsdk.mac.versions.default}">
-            <equals arg1="${platform}" arg2="mac" />
-        </condition>
-        <property name="flash.sdk.version" value="${config.flashsdk.versions.default}"/>
-        <condition property="flash.version.changed" value="true">
-            <not>
-                <equals arg1="${playerglobal.version}" arg2="${flash.sdk.version}" />
-            </not>
-        </condition>
-        <condition property="air.version.changed" value="true">
-            <not>
-                <equals arg1="${air.version}" arg2="${air.sdk.version}" />
-            </not>
-        </condition>
-        <condition property="air.sdk.version.ref" value="${air.sdk.versionID}" >
-            <isset property="air.sdk.versionID" />
-        </condition>
-        <property name="air.sdk.version.ref" value="${air.sdk.version}" />
-        <condition property="flash.sdk.version.ref" value="${flash.sdk.versionID}" >
-            <isset property="flash.sdk.versionID" />
-        </condition>
-        <property name="flash.sdk.version.ref" value="${flash.sdk.version}" />
-        
-        <property name="air.sdk.url.server.ref" value="air.sdk.server.${platform}.${air.sdk.version.ref}" />
-        <property name="air.sdk.url.server" refid="${air.sdk.url.server.ref}" />
-        <property name="air.sdk.url.folder.ref" value="air.sdk.folder.${platform}.${air.sdk.version.ref}" />
-        <property name="air.sdk.url.folder" refid="${air.sdk.url.folder.ref}" />
-        <property name="air.sdk.url.file.ref" value="air.sdk.file.${platform}.${air.sdk.version.ref}" />
-        <property name="air.sdk.url.file" refid="${air.sdk.url.file.ref}" />
-        <property name="air.sdk.url.md5.ref" value="air.sdk.md5.${platform}.${air.sdk.version.ref}" />
-		<condition property="air-has-md5">
-			<isreference refid="${air.sdk.url.md5.ref}" />
-		</condition>
-        <property name="flash.sdk.url.server.ref" value="flash.sdk.server.${flash.sdk.version.ref}" />
-        <property name="flash.sdk.url.server" refid="${flash.sdk.url.server.ref}" />
-        <property name="flash.sdk.url.folder.ref" value="flash.sdk.folder.${flash.sdk.version.ref}" />
-        <property name="flash.sdk.url.folder" refid="${flash.sdk.url.folder.ref}" />
-        <property name="flash.sdk.url.file.ref" value="flash.sdk.file.${flash.sdk.version.ref}" />
-        <property name="flash.sdk.url.file" refid="${flash.sdk.url.file.ref}" />
-        <property name="flash.sdk.url.md5.ref" value="flash.sdk.md5.${flash.sdk.version.ref}" />
-		<condition property="flash-has-md5">
-			<isreference refid="${flash.sdk.url.md5.ref}" />
-		</condition>
-        <property name="flash.sdk.swfversion.ref" value="flash.sdk.swfversion.${flash.sdk.version.ref}" />
-        <property name="flash.sdk.swfversion" refid="${flash.sdk.swfversion.ref}" />
-        <property name="flash.sdk.default.swfversion.ref" value="flash.sdk.swfversion.${playerglobal.version}" />
-        <property name="flash.sdk.default.swfversion" refid="${flash.sdk.default.swfversion.ref}" />
-        <condition property="flash.swfversion.changed" value="true">
-            <not>
-                <equals arg1="${flash.sdk.swfversion}" arg2="${flash.sdk.default.swfversion}" />
-            </not>
-        </condition>
-    </target>
-    
-    <target name="install" depends="get-data,get-md5-data,check-binary,ask-licenses,get-third-party-files,fixup-config-files" description="Converts binary package to IDE compatible folder">
-        <delete dir="${download.dir}" />
-        <echo>${install.complete.echo}</echo>
-    </target>
-    
-    <target name="check-binary" description="Make sure this is a binary package">
-        <fail message="${basedir} is not an Flex binary package">
-            <condition>
-                <not>
-                    <available file="${basedir}/frameworks/libs/framework.swc" />
-                </not>
-            </condition>
-        </fail>
-        <fail message="${basedir} is not an Flex binary package and is probably a git repo">
-            <condition>
-                <available file="$[basedir}/.gitignore" />
-            </condition>
-        </fail>
-    </target>
-    
-    <target name="ask-licenses" depends="ask-air,ask-flash,ask-swfobject,ask-ofl,ask-adobe-osmf,ask-adobe-fontswf" description="Ask about the various licenses">
-	</target>
-    
-    <target name="ask-air" unless="air.donot.ask"
-        description="Prompt the user before downloading AIR">
-        
-        <input
-        message="${air.prompt.text}"
-        validargs="${yes.no.prompts}"
-        defaultvalue="${no}"
-        addproperty="input.air.download"/>
-        <condition property="do.air.install">
-            <equals arg1="${yes}" arg2="${input.air.download}"/>
-        </condition>
-        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.air.install" />
-        <!-- Only ask once per ant run.  -->
-        <property name="air.donot.ask" value="set"/>
-    </target>
-
-    <target name="ask-flash" unless="flash.donot.ask"
-        description="Prompt the user before downloading playerglobal.swc">
-        
-        <input
-        message="${flash.prompt.text}"
-        validargs="${yes.no.prompts}"
-        defaultvalue="${no}"
-        addproperty="input.flash.download"/>
-        <condition property="do.flash.install">
-            <equals arg1="${yes}" arg2="${input.flash.download}"/>
-        </condition>
-        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.flash.install" />
-        <!-- Only ask once per ant run.  -->
-        <property name="flash.donot.ask" value="set"/>
-    </target>
-
-    <target name="ask-swfobject" unless="swfobject.donot.ask"
-        description="Prompt the user before downloading SWFObject">
-        
-        <input
-        message="${swfobject.prompt.text}"
-        validargs="${yes.no.prompts}"
-        defaultvalue="${no}"
-        addproperty="input.swfobject.download"/>
-        <condition property="do.swfobject.install">
-            <equals arg1="${yes}" arg2="${input.swfobject.download}"/>
-        </condition>
-        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.swfobject.install" />
-        <!-- Only ask once per ant run.  -->
-        <property name="swfobject.donot.ask" value="set"/>
-    </target>
-
-    <target name="ask-ofl" unless="ofl.donot.ask"
-        description="Prompt the user before downloading OFL Fonts">
-        
-        <input
-        message="${ofl.prompt.text}"
-        validargs="${yes.no.prompts}"
-        defaultvalue="${no}"
-        addproperty="input.ofl.download"/>
-        <condition property="do.ofl.install">
-            <equals arg1="${yes}" arg2="${input.ofl.download}"/>
-        </condition>
-        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.ofl.install" />
-        <!-- Only ask once per ant run.  -->
-        <property name="ofl.donot.ask" value="set"/>
-    </target>
-
-    <target name="ask-adobe-osmf" unless="osmf.donot.ask"
-        description="Prompt the user before downloading OSMF">
-        
-        <input
-        message="${osmf.prompt.text}"
-        validargs="${yes.no.prompts}"
-        defaultvalue="${no}"
-        addproperty="input.osmf.download"/>
-        <condition property="do.osmf.install">
-            <equals arg1="${yes}" arg2="${input.osmf.download}"/>
-        </condition>
-        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.osmf.install" />
-        <!-- Only ask once per ant run.  -->
-        <property name="osmf.donot.ask" value="set"/>
-    </target>
-
-    <target name="ask-adobe-fontswf" unless="fontswf.donot.ask"
-        description="Prompt the user before downloading FontSWF">
-        
-        <input
-        message="${fontswf.prompt.text}"
-        validargs="${yes.no.prompts}"
-        defaultvalue="${no}"
-        addproperty="input.fontswf.download"/>
-        <condition property="do.fontswf.install">
-            <equals arg1="${yes}" arg2="${input.fontswf.download}"/>
-        </condition>
-        <!-- Only ask once per ant run.  -->
-        <property name="fontswf.donot.ask" value="set"/>
-    </target>
-
-    <target name="get-third-party-files" depends="air-download,flash-download,swfobject-download,osmf-download,fontswf-download" />
-    
-    <target name="air-check" description="Checks if AIR SDK has been downloaded.">
-        <available file="${FLEX_HOME}/lib/adt.jar" property="skip.air.install"/>
-		<condition property="skip.air.install" value="true">
-			<not>
-				<isset property="do.air.install" />
-			</not>
-		</condition>
-    </target>
-    
-    <target name="air-download" depends="air-check" unless="skip.air.install"
-        description="Downloads AIR SDK and copies to correct locations">
-        
-        <mkdir dir="${download.dir}"/>
-        <antcall target="air-get" />
-
-        <antcall target="air-setup-win" />
-        <antcall target="air-setup-mac" />
-        
-    </target>
-
-    <target name="air-get-check">
-        <available file="${download.dir}/${air.sdk.url.file}" property="air.downloaded" />
-    </target>
-        
-    <target name="air-get" depends="air-get-check" unless="air.downloaded">
-        <echo>${AIRDownloadEcho} ${air.sdk.url.server}/${air.sdk.url.folder}/${air.sdk.url.file}</echo>
-        <antcall target="download_air" >
-            <param name="srcDomain" value="${air.sdk.url.server}" />
-            <param name="srcFolder" value="${air.sdk.url.folder}" />
-            <param name="srcFile" value="${air.sdk.url.file}" />
-            <param name="dest" value="${download.dir}/${air.sdk.url.file}" />
-            <param name="failmessage" value="AIR SDK download failed" />
-        </antcall>
-        <antcall target="download_air_with_md5" >
-            <param name="srcDomain" value="${air.sdk.url.server}" />
-            <param name="srcFolder" value="${air.sdk.url.folder}" />
-            <param name="srcFile" value="${air.sdk.url.file}" />
-            <param name="dest" value="${download.dir}/${air.sdk.url.file}" />
-            <param name="failmessage" value="AIR SDK download failed" />
-            <param name="md5" value="${air.sdk.url.md5}" />
-        </antcall>
-    </target>
-    
-    <target name="air-setup-win" if="isWindows">
-        <unzip src="${download.dir}/${air.sdk.url.file}" dest="${download.dir}/airsdk" />
-        <echo>${INFO_FINISHED_UNZIPPING} ${download.dir}/${air.sdk.url.file}</echo>
-        <copy todir="${FLEX_HOME}" overwrite="true">
-            <fileset dir="${download.dir}/airsdk">
-                <include name="AIR SDK license.pdf" />
-                <include name="AIR SDK Readme.txt" />
-                <include name="airsdk.xml" />
-                <include name="bin/adl.exe" />
-                <include name="bin/adt.bat" />
-                <include name="frameworks/libs/air/**" />
-                <include name="frameworks/projects/air/**" />
-                <include name="include/**" />
-                <include name="install/android/**" />
-                <include name="lib/adt.jar" />
-                <include name="lib/android/**" />
-                <include name="lib/aot/**" />
-                <include name="lib/nai/**" />
-                <include name="lib/win/**" />
-                <include name="runtimes/**" />
-                <include name="samples/badge/**" />
-                <include name="samples/descriptor-sample.xml" />
-                <include name="samples/icons/**" />
-                <include name="templates/air/**" />
-                <include name="templates/extensions/**" />
-                <include name="templates/sdk/**" />
-            </fileset>
-        </copy>
-    </target>
-    
-    <target name="air-setup-mac" unless="isWindows">
-        <!--The tbz2 contains symlinks which Ant does not preserve
-        <untar compression="bzip2" src="${download.dir}/${air.sdk.url.file}" dest="${download.dir}/airsdk" />-->
-        <mkdir dir="${download.dir}/airsdk" />
-        <move file="${download.dir}/${air.sdk.url.file}" todir="${download.dir}/airsdk" />
-        <exec executable="bunzip2" dir="${download.dir}/airsdk">
-            <arg value="${air.sdk.url.file}" />
-        </exec>
-        <echo file="${basedir}/airtar.properties">air.tar.name=${air.sdk.url.file}</echo>
-        <replace file="${basedir}/airtar.properties" token="tbz2" value="tar" />
-        <property file="${basedir}/airtar.properties" />
-        <exec executable="tar" dir="${download.dir}/airsdk">
-            <arg value="-xvf" />
-            <arg value="${air.tar.name}" />
-        </exec>
-        <echo>${INFO_FINISHED_UNTARING} ${download.dir}/airsdk/${air.tar.name}</echo>
-        <delete file="${basedir}/airtar.properties" />
-        <antcall target="mac-copy-file">
-            <param name="srcdir" value="." />
-            <param name="filename" value="AIR SDK license.pdf"/>
-            <param name="destdir" value="${FLEX_HOME}" />
-        </antcall>
-        <antcall target="mac-copy-file">
-            <param name="srcdir" value="." />
-            <param name="filename" value="AIR SDK Readme.txt"/>
-            <param name="destdir" value="${FLEX_HOME}" />
-        </antcall>
-        <antcall target="mac-copy-file">
-            <param name="srcdir" value="." />
-            <param name="filename" value="airsdk.xml"/>
-            <param name="destdir" value="${FLEX_HOME}" />
-        </antcall>
-        <antcall target="mac-copy-file">
-            <param name="srcdir" value="bin" />
-            <param name="filename" value="adl"/>
-            <param name="destdir" value="${FLEX_HOME}/bin" />
-        </antcall>
-        <antcall target="mac-copy-file">
-            <param name="srcdir" value="bin" />
-            <param name="filename" value="adt"/>
-            <param name="destdir" value="${FLEX_HOME}/bin" />
-        </antcall>
-        <antcall target="mac-copy-file">
-            <param name="srcdir" value="lib" />
-            <param name="filename" value="adt.jar"/>
-            <param name="destdir" value="${FLEX_HOME}/lib" />
-        </antcall>
-        <antcall target="mac-copy-file">
-            <param name="srcdir" value="samples" />
-            <param name="filename" value="descriptor-sample.xml"/>
-            <param name="destdir" value="${FLEX_HOME}/samples" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="frameworks/libs/air" />
-            <param name="destdir" value="${FLEX_HOME}/frameworks/libs" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="frameworks/projects/air" />
-            <param name="destdir" value="${FLEX_HOME}/frameworks/projects" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="include" />
-            <param name="destdir" value="${FLEX_HOME}" />
-        </antcall>
-        <antcall target="mac-copy-dir-if-exists">
-            <param name="srcdir" value="install/android" />
-            <param name="destdir" value="${FLEX_HOME}/install" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="lib/android" />
-            <param name="destdir" value="${FLEX_HOME}/lib" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="lib/aot" />
-            <param name="destdir" value="${FLEX_HOME}/lib" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="lib/nai" />
-            <param name="destdir" value="${FLEX_HOME}/lib" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="runtimes" />
-            <param name="destdir" value="${FLEX_HOME}" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="samples/badge" />
-            <param name="destdir" value="${FLEX_HOME}/samples" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="samples/icons" />
-            <param name="destdir" value="${FLEX_HOME}/samples" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="templates/air" />
-            <param name="destdir" value="${FLEX_HOME}/templates" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="templates/extensions" />
-            <param name="destdir" value="${FLEX_HOME}/templates" />
-        </antcall>
-        <antcall target="mac-copy-dir">
-            <param name="srcdir" value="templates/sdk" />
-            <param name="destdir" value="${FLEX_HOME}/templates" />
-        </antcall>
-    </target>
-    
-    <target name="mac-copy-file" description="copies a file">
-        <mkdir dir="${destdir}" />
-        <exec executable="cp" dir="${FLEX_HOME}">
-            <arg value="-p" />
-            <arg value="${download.dir}/airsdk/${srcdir}/${filename}"/>
-            <arg value="${destdir}" />
-        </exec>
-    </target>
-    
-    <target name="mac-copy-dir" description="copies a directory using exec and rsync so that symbolic links are preserved">
-        <echo file="${basedir}/maccopy.properties">mac.copy.echo=${mac.copy.echo.pattern}</echo>
-        <property file="${basedir}/maccopy.properties" />
-        <delete file="${basedir}/maccopy.properties" />
-        <echo>${mac.copy.echo}</echo>
-        <exec executable="rsync" dir="${FLEX_HOME}">
-            <arg value="--archive" />
-            <arg value="--ignore-existing" />
-            <arg value="--force" />
-            <arg value="${download.dir}/airsdk/${srcdir}"/>
-            <arg value="${destdir}" />
-        </exec>
-    </target>
-
-    <target name="mac-copy-dir-if-exists" depends="mac-check-exists" if="${srcdir}.exists" description="copies a directory using exec and rsync so that symbolic links are preserved">
-        <echo file="${basedir}/maccopy.properties">mac.copy.echo=${mac.copy.echo.pattern}</echo>
-        <property file="${basedir}/maccopy.properties" />
-        <echo>${mac.copy.echo}</echo>
-        <exec executable="rsync" dir="${FLEX_HOME}">
-            <arg value="--archive" />
-            <arg value="--ignore-existing" />
-            <arg value="--force" />
-            <arg value="${download.dir}/airsdk/${srcdir}"/>
-            <arg value="${destdir}" />
-        </exec>
-    </target>
-    
-    <target name="mac-check-exists">
-        <available file="${download.dir}/airsdk/${srcdir}" type="dir" property="${srcdir}.exists" />
-    </target>
-
-    <!-- Because this requires a network connection it downloads Flash SDK only if it doesn't already exist. -->
-    <target name="flash-check" description="Checks if Flash SDK has been downloaded.">
-        <available file="${FLEX_HOME}/frameworks/libs/player/${flash.sdk.version}/playerglobal.swc" property="skip.flash.install"/>
-		<condition property="skip.flash.install" value="true">
-			<not>
-				<isset property="do.flash.install" />
-			</not>
-		</condition>
-    </target>
-    
-    <target name="flash-download" depends="flash-check" unless="skip.flash.install"
-        description="Downloads playerglobal.swc and copies to correct locations">
-        
-        <mkdir dir="${download.dir}"/>
-        <mkdir dir="${FLEX_HOME}/frameworks/libs/player/${flash.sdk.version}"/>
-        <echo>${INFO_INSTALLING_PLAYERGLOBAL_SWC} ${flash.sdk.url.server}/${flash.sdk.url.folder}/${flash.sdk.url.file}</echo>
-        <antcall target="download_flash" >
-            <param name="srcDomain" value="${flash.sdk.url.server}" />
-            <param name="srcFolder" value="${flash.sdk.url.folder}" />
-            <param name="srcFile" value="${flash.sdk.url.file}" />
-            <param name="dest" value="${FLEX_HOME}/frameworks/libs/player/${flash.sdk.version}/playerglobal.swc" />
-			<param name="message" value="${INFO_INSTALLING_PLAYERGLOBAL_SWC} ${flash.sdk.url.server}/${flash.sdk.url.folder}/${flash.sdk.url.file}" />
-			<param name="failmessage" value="Flash SDK download failed" />
-        </antcall>
-        <antcall target="download_flash_with_md5" >
-            <param name="srcDomain" value="${flash.sdk.url.server}" />
-            <param name="srcFolder" value="${flash.sdk.url.folder}" />
-            <param name="srcFile" value="${flash.sdk.url.file}" />
-            <param name="dest" value="${FLEX_HOME}/frameworks/libs/player/${flash.sdk.version}/playerglobal.swc" />
-			<param name="message" value="${INFO_INSTALLING_PLAYERGLOBAL_SWC} ${flash.sdk.url.server}/${flash.sdk.url.folder}/${flash.sdk.url.file}" />
-			<param name="failmessage" value="Flash SDK download failed" />
-			<param name="md5" value="${flash.sdk.url.md5}" />
-        </antcall>
-    </target>
-    
-    <!-- swfobject.js (Version 2.2) -->
-    <!-- Because this requires a network connection it downloads SWFObject only if it doesn't already exist. -->
-    <target name="swfobject-check" description="Checks if SWFObject has been downloaded.">
-        <available file="${basedir}/../templates/swfobject/swfobject.js" property="skip.swfobject.install"/>
-		<condition property="skip.swfobject.install" value="true">
-			<not>
-				<isset property="do.swfobject.install" />
-			</not>
-		</condition>
-    </target>
-    
-    <target name="swfobject-download" depends="swfobject-check" unless="skip.swfobject.install"
-        description="Copies SWFObject from code.google.com">
-        
-        <echo file="${basedir}/swfobject.properties">swfobject.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
-        <replace file="${basedir}/swfobject.properties" token="{0}" value="${swfobject.url.file}" />
-        <replace file="${basedir}/swfobject.properties" token="{1}" value="${swfobject.url.server}/${swfobject.url.folder}" />
-        <property file="${basedir}/swfobject.properties" />
-        <delete file="${basedir}/swfobject.properties" />
-        <echo>${swfobject.echo}</echo>
-        
-        <mkdir dir="${download.dir}"/>
-        <antcall target="download_using_get" >
-            <param name="srcDomain" value="${swfobject.url.server}" />
-            <param name="srcFolder" value="${swfobject.url.folder}" />
-            <param name="srcFile" value="${swfobject.url.file}" />
-            <param name="dest" value="${download.dir}/swfobject_2_2.zip" />
-			<param name="failmessage" value="SWFObject download failed" />
-			<param name="md5" value="${swfobject.url.md5}" />
-        </antcall>
-
-        <echo>${INFO_DOWNLOADED}</echo>
-        <mkdir dir="${download.dir}/swfobject"/>
-        <unzip src="${download.dir}/swfobject_2_2.zip" dest="${download.dir}/swfobject">
-            <patternset>
-                <include name="swfobject-2.2/swfobject/expressInstall.swf"/>
-                <include name="swfobject-2.2/swfobject/swfobject.js"/>
-            </patternset>
-        </unzip>
-        <mkdir dir="${FLEX_HOME}/templates/swfobject"/>
-		<copy file="${download.dir}/swfobject/swfobject-2.2/swfobject/expressInstall.swf"
-			tofile="${FLEX_HOME}/templates/swfobject/expressInstall.swf" />
-		<copy file="${download.dir}/swfobject/swfobject-2.2/swfobject/swfobject.js"
-			tofile="${FLEX_HOME}/templates/swfobject/swfobject.js" />
-        <mkdir dir="${FLEX_HOME}/frameworks/javascript/fabridge/samples/fabridge/swfobject" />
-        <copy file="${FLEX_HOME}/templates/swfobject/swfobject.js" tofile="${FLEX_HOME}/frameworks/javascript/fabridge/samples/fabridge/swfobject/swfobject.js" />
-    </target>
-    
-    <!-- osmf (Version 2.0) -->
-    <!-- Because this requires a network connection it downloads OSMF only if it doesn't already exist. -->
-    <target name="osmf-check" description="Checks if OSMF has been downloaded.">
-        <available file="${basedir}/frameworks/libs/osmf.swc" property="skip.osmf.install"/>
-		<condition property="skip.osmf.install" value="true">
-			<not>
-				<isset property="do.osmf.install" />
-			</not>
-		</condition>
-    </target>
-    
-    <target name="osmf-download" depends="osmf-check" unless="skip.osmf.install"
-        description="Copies OSMF from Open@Adobe">
-        
-        <echo file="${basedir}/osmf.properties">osmf.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
-        <replace file="${basedir}/osmf.properties" token="{0}" value="${osmf.url.file}" />
-        <replace file="${basedir}/osmf.properties" token="{1}" value="${osmf.url.server}/${osmf.url.folder}" />
-        <property file="${basedir}/osmf.properties" />
-        <delete file="${basedir}/osmf.properties" />
-        <echo>${osmf.echo}</echo>
-
-        <mkdir dir="${basedir}/frameworks/libs/"/>
-        <antcall target="download_using_get" >
-            <param name="srcDomain" value="${osmf.url.server}" />
-            <param name="srcFolder" value="${osmf.url.folder}" />
-            <param name="srcFile" value="${osmf.url.file}" />
-            <param name="cacheFile" value="${osmf.url.cachefile}" />
-            <param name="dest" value="${basedir}/frameworks/libs/osmf.swc" />
-			<param name="failmessage" value="OSMF download failed" />
-			<param name="md5" value="${osmf.url.md5}" />
-        </antcall>
-
-        <unzip src="${basedir}/frameworks/libs/osmf.swc" dest="${download.dir}">
-            <patternset>
-                <include name="library.swf"/>
-            </patternset>
-        </unzip>
-        <copy file="${download.dir}/library.swf" tofile="${FLEX_HOME}/frameworks/rsls/osmf_${flex-sdk-description.version}.${flex-sdk-description.build}.swf" />
-    </target>
-
-    <!-- fontswf -->
-    <!-- Because this requires a network connection it downloads only if it doesn't already exist. -->
-    <target name="fontswf-check" description="Checks if fontswf has been downloaded.">
-        <condition property="skip.fontswf.install">
-            <and>
-                <available file="${basedir}/lib/external/optional/afe.jar" />
-                <available file="${basedir}/lib/external/optional/aglj40.jar" />
-                <available file="${basedir}/lib/external/optional/flex-fontkit.jar" />
-                <available file="${basedir}/lib/external/optional/rideau.jar" />
-            </and>
-        </condition>
-		<condition property="skip.fontswf.install" value="true">
-			<not>
-				<isset property="do.fontswf.install" />
-			</not>
-		</condition>
-    </target>
-
-    <target name="fontswf-download" depends="fontswf-check" unless="skip.fontswf.install"
-        description="Copies OSMF from Open@Adobe">
-        
-        <echo file="${basedir}/afe.properties">afe.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
-        <replace file="${basedir}/afe.properties" token="{0}" value="${afe.url.file}" />
-        <replace file="${basedir}/afe.properties" token="{1}" value="${afe.url.server}/${afe.url.folder}" />
-        <property file="${basedir}/afe.properties" />
-        <delete file="${basedir}/afe.properties" />
-        <echo>${afe.echo}</echo>
-
-        <mkdir dir="${basedir}/lib/external/optional"/>
-        <antcall target="download_using_get" >
-            <param name="srcDomain" value="${afe.url.server}" />
-            <param name="srcFolder" value="${afe.url.folder}" />
-            <param name="srcFile" value="${afe.url.file}" />
-            <param name="cacheFile" value="${afe.url.cachefile}" />
-            <param name="dest" value="${basedir}/lib/external/optional/afe.jar" />
-			<param name="failmessage" value="afe.jar download failed" />
-			<param name="md5" value="${afe.url.md5}" />
-        </antcall>
-
-        <echo file="${basedir}/agl.properties">agl.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
-        <replace file="${basedir}/agl.properties" token="{0}" value="${agl.url.file}" />
-        <replace file="${basedir}/agl.properties" token="{1}" value="${agl.url.server}/${agl.url.folder}" />
-        <property file="${basedir}/agl.properties" />
-        <delete file="${basedir}/agl.properties" />
-        <echo>${agl.echo}</echo>
-        
-        <antcall target="download_using_get" >
-            <param name="srcDomain" value="${agl.url.server}" />
-            <param name="srcFolder" value="${agl.url.folder}" />
-            <param name="srcFile" value="${agl.url.file}" />
-            <param name="cacheFile" value="${agl.url.cachefile}" />
-            <param name="dest" value="${basedir}/lib/external/optional/aglj40.jar" />
-			<param name="failmessage" value="aglj40.jar download failed" />
-			<param name="md5" value="${agl.url.md5}" />
-        </antcall>
-
-        <echo file="${basedir}/fontkit.properties">fontkit.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
-        <replace file="${basedir}/fontkit.properties" token="{0}" value="${fontkit.url.file}" />
-        <replace file="${basedir}/fontkit.properties" token="{1}" value="${fontkit.url.server}/${fontkit.url.folder}" />
-        <property file="${basedir}/fontkit.properties" />
-        <delete file="${basedir}/fontkit.properties" />
-        <echo>${fontkit.echo}</echo>
-        
-        <antcall target="download_using_get" >
-            <param name="srcDomain" value="${fontkit.url.server}" />
-            <param name="srcFolder" value="${fontkit.url.folder}" />
-            <param name="srcFile" value="${fontkit.url.file}" />
-            <param name="cacheFile" value="${fontkit.url.cachefile}" />
-            <param name="dest" value="${basedir}/lib/external/optional/flex-fontkit.jar" />
-			<param name="failmessage" value="flex-fontkit.jar download failed" />
-			<param name="md5" value="${fontkit.url.md5}" />
-        </antcall>
-
-        <echo file="${basedir}/rideau.properties">rideau.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
-        <replace file="${basedir}/rideau.properties" token="{0}" value="${rideau.url.file}" />
-        <replace file="${basedir}/rideau.properties" token="{1}" value="${rideau.url.server}/${rideau.url.folder}" />
-        <property file="${basedir}/rideau.properties" />
-        <delete file="${basedir}/rideau.properties" />
-        <echo>${rideau.echo}</echo>
-        
-        <antcall target="download_using_get" >
-            <param name="srcDomain" value="${rideau.url.server}" />
-            <param name="srcFolder" value="${rideau.url.folder}" />
-            <param name="srcFile" value="${rideau.url.file}" />
-            <param name="cacheFile" value="${rideau.url.cachefile}" />
-            <param name="dest" value="${basedir}/lib/external/optional/rideau.jar" />
-			<param name="failmessage" value="rideau.jar download failed" />
-			<param name="md5" value="${rideau.url.md5}" />
-        </antcall>
-        
-        <!-- fontkit expects swfutils in the same folder -->
-        <copy file="${basedir}/lib/swfutils.jar" tofile="${basedir}/lib/external/optional/swfutils.jar" />
-    </target>
-
-    <target name="fixup-config-files" depends="flex-sdk-description-flash,flex-sdk-description-air">
-        <echo>${INFO_INSTALLING_CONFIG_FILES}</echo>
-        <antcall target="fixup-config-files-version" />
-        <antcall target="fixup-config-files-swfversion" />
-        <tstamp />
-        <property name="build.number.date" value="${DSTAMP}" />
-        <replace file="${FLEX_HOME}/frameworks/flex-config.xml">
-            <replacefilter token="{playerglobalHome}"
-                value="libs/player"/>
-            <replacefilter token="$${build.number}"
-                value="${release.version}.${build.number.date}"/>
-        </replace>
-        <replace file="${FLEX_HOME}/frameworks/air-config.xml">
-            <replacefilter token="{airHome}/frameworks/libs"
-            value="libs"/>
-            <replacefilter token="$${build.number}"
-                value="${release.version}.${build.number.date}"/>
-        </replace>
-        <replace file="${FLEX_HOME}/frameworks/airmobile-config.xml">
-            <replacefilter token="{airHome}/frameworks/libs"
-            value="libs"/>
-        </replace>
-        <copy file="${FLEX_HOME}/frameworks/flex-config.xml" tofile="${FLEX_HOME}/ide/flashbuilder/config/flex-config.xml" overwrite="true" />
-        <copy file="${FLEX_HOME}/frameworks/air-config.xml" tofile="${FLEX_HOME}/ide/flashbuilder/config/air-config.xml" overwrite="true" />
-        <copy file="${FLEX_HOME}/frameworks/airmobile-config.xml" tofile="${FLEX_HOME}/ide/flashbuilder/config/airmobile-config.xml" overwrite="true" />
-    </target>
-    
-    <target name="fixup-config-files-version" if="flash.version.changed">
-        <replace file="${FLEX_HOME}/frameworks/flex-config.xml">
-            <replacefilter token="&lt;target-player&gt;${playerglobal.version}&lt;/target-player&gt;"
-                            value="&lt;target-player&gt;${flash.sdk.version}&lt;/target-player&gt;"/>
-        </replace>
-        <replace file="${FLEX_HOME}/frameworks/air-config.xml">
-            <replacefilter token="&lt;target-player&gt;${playerglobal.version}&lt;/target-player&gt;"
-            value="&lt;target-player&gt;${flash.sdk.version}&lt;/target-player&gt;"/>
-        </replace>
-        <replace file="${FLEX_HOME}/frameworks/airmobile-config.xml">
-            <replacefilter token="&lt;target-player&gt;${playerglobal.version}&lt;/target-player&gt;"
-            value="&lt;target-player&gt;${flash.sdk.version}&lt;/target-player&gt;"/>
-        </replace>
-    </target>
-    
-    <target name="fixup-config-files-swfversion" if="flash.swfversion.changed">
-        <replace file="${FLEX_HOME}/frameworks/flex-config.xml">
-            <replacefilter token="&lt;swf-version&gt;${flash.sdk.default.swfversion}&lt;/swf-version&gt;"
-                            value="&lt;swf-version&gt;${flash.sdk.swfversion}&lt;/swf-version&gt;"/>
-        </replace>
-        <replace file="${FLEX_HOME}/frameworks/air-config.xml">
-            <replacefilter token="&lt;swf-version&gt;${flash.sdk.default.swfversion}&lt;/swf-version&gt;"
-            value="&lt;swf-version&gt;${flash.sdk.swfversion}&lt;/swf-version&gt;"/>
-        </replace>
-        <replace file="${FLEX_HOME}/frameworks/airmobile-config.xml">
-            <replacefilter token="&lt;swf-version&gt;${flash.sdk.default.swfversion}&lt;/swf-version&gt;"
-            value="&lt;swf-version&gt;${flash.sdk.swfversion}&lt;/swf-version&gt;"/>
-        </replace>
-    </target>
-    
-    <target name="flex-sdk-description-flash" if="flash.version.changed">
-        <replace file="${FLEX_HOME}/flex-sdk-description.xml">
-            <replacefilter token="FP${playerglobal.version}"
-                value="FP${flash.sdk.version}"/>
-        </replace>
-    </target>
-    <target name="flex-sdk-description-air" if="air.version.changed">
-        <replace file="${FLEX_HOME}/flex-sdk-description.xml">
-            <replacefilter token="AIR${air.version}"
-                value="AIR${air.sdk.version}"/>
-        </replace>
-    </target>
-        
-    <target name="download_air" unless="air-has-md5">
-        <antcall target="download_using_get" />
-    </target>
-    <target name="download_air_with_md5" if="air-has-md5">
-        <antcall target="download_using_get" />
-    </target>
-    <target name="download_flash" unless="flash-has-md5">
-        <antcall target="download_using_get" />
-    </target>
-    <target name="download_flash_with_md5" if="flash-has-md5">
-        <antcall target="download_using_get" />
-    </target>
-
-    <!--
-     Download a file and optionally verify the checksum.
-     If the checksum fails, this script fails.  This
-     target uses the cache, if desired.
-     
-     Params are:
-     srcDomain
-     srcFolder
-     srcFile
-     dest
-     [md5]
-     [srcMD5Domain]
-     -->
-    <target name="download_using_get" depends="check-cache"
-        description="Downloads file, and optionally verifies checksum.">
-        
-        <antcall target="get-if-not-cached">
-        </antcall>
-        <antcall target="copy-if-cached">
-        </antcall>
-    </target>
-    
-    <target name="get-if-not-cached" unless="found-in-cache">
-		<antcall target="get-with-no-params" />
-		<antcall target="get-with-params" />
-		<antcall target="get-local" />
-        <antcall target="check-sum" />
-        <condition property="skipCache">
-            <not>
-                <isset property="usingDownloadCache" />
-            </not>
-        </condition>
-        <antcall target="put-in-cache" />
-    </target>
-    
-	<target name="check-params" >
-		<condition property="has-params">
-			<and>
-				<contains string="${srcDomain}/${srcFolder}/${srcFile}" substring="?" />
-				<not>
-					<contains string="${srcDomain}/${srcFolder}/${srcFile}" substring="file://" />
-				</not>
-			</and>
-		</condition>
-		<condition property="is-local">
-			<contains string="${srcDomain}/${srcFolder}/${srcFile}" substring="file://" />
-		</condition>
-		<condition property="not-local-no-params">
-			<and>
-				<not>
-					<contains string="${srcDomain}/${srcFolder}/${srcFile}" substring="file://" />
-				</not>
-				<not>
-					<contains string="${srcDomain}/${srcFolder}/${srcFile}" substring="?" />
-				</not>
-			</and>
-		</condition>
-	</target>
-	
-	<target name="get-local" depends="check-params" if="is-local" >
-        <get src="${srcDomain}/${srcFolder}/${srcFile}" dest="${dest}"/>
-	</target>
-	<target name="get-with-no-params" depends="check-params" if="not-local-no-params" >
-        <get src="${srcDomain}/${srcFolder}/${srcFile}?ts=${ts}" dest="${dest}"/>
-	</target>
-	<target name="get-with-params" depends="check-params" if="has-params" >
-        <get src="${srcDomain}/${srcFolder}/${srcFile}&amp;ts=${ts}" dest="${dest}"/>
-	</target>
-	
-    <target name="copy-if-cached" if="found-in-cache">
-		<condition property="cacheFile" value="${srcFile}" >
-			<not>
-				<isset property="cacheFile" />
-			</not>
-		</condition>
-		<echo>${INFO_USING_CACHED_FILE} ${downloadCacheFolder}/${srcFolder}/${cacheFile}</echo>
-        <copy file="${downloadCacheFolder}/${srcFolder}/${cacheFile}" tofile="${dest}" overwrite="true" />
-    </target>
-    
-    <target name="check-cache" if="usingDownloadCache">
-		<condition property="cacheFile" value="${srcFile}" >
-			<not>
-				<isset property="cacheFile" />
-			</not>
-		</condition>
-        <available file="${downloadCacheFolder}/${srcFolder}/${cacheFile}" property="found-in-cache" />
-    </target>
-    
-    <target name="put-in-cache" unless="skipCache">
-		<condition property="cacheFile" value="${srcFile}" >
-			<not>
-				<isset property="cacheFile" />
-			</not>
-		</condition>
-        <copy tofile="${downloadCacheFolder}/${srcFolder}/${cacheFile}" file="${dest}" />
-    </target>
-    
-    <target name="check-sum" if="md5"
-        description="Verifies MD5 checksum, and fails if checksum doesn't match">
-        
-        <echo>${INFO_VALIDATING_FILE} ${dest}</echo>
-        <checksum file="${dest}" algorithm="MD5" verifyproperty="we.failed" property="${md5}" />
-        <fail message="${failmessage}">
-            <condition>
-                <equals arg1="${we.failed}" arg2="false" />
-            </condition>
-        </fail>
-    </target>
-</project>
+<?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="sdk_ide_install" default="install" basedir=".">
+
+    <property name="FLEX_HOME" location="${basedir}"/>
+    
+	<!-- this script supports the usingDownloadCache property and
+     downloadCacheFolder property to cache downloads in the
+     folder specified by downloadCacheFolder.  This can make
+     a huge difference in future runs although there is some
+     risk around caching bad downloads and/or needing to
+     clean up the cache -->
+    
+    <!-- Required for OSX 10.6 / Snow Leopard Performance. -->
+    <!-- Java 7 on Mac requires OSX 10.7.3 or higher and is 64-bit only -->
+    <!-- local.d32 is set/used in build.properties so this needs to be done first. -->
+    <condition property="local.d32" value="-d32">
+        <and>
+            <os family="windows"/>
+            <equals arg1="${sun.arch.data.model}" arg2="64"/>
+            <equals arg1="${os.arch}" arg2="x86_64"/>
+            <equals arg1="${ant.java.version}" arg2="1.6"/>
+        </and>
+    </condition>
+
+    <property file="${FLEX_HOME}/env.properties"/>
+    <property environment="env"/>
+    <property file="${FLEX_HOME}/local.properties"/>
+    <property file="${FLEX_HOME}/build.properties"/>
+    <property name="bundle" value="en_US" />
+	
+	<property name="flex.properties.url" value="http://flex.apache.org/installer/properties/sdk/${bundle}.properties" />
+	<get src="${flex.properties.url}" dest="${basedir}/${bundle}.properties" ignoreerrors="true" />
+    <property file="${basedir}/${bundle}.properties"/>
+	
+    <property file="${FLEX_HOME}/installer.properties/${bundle}.properties"/>
+    <property file="${FLEX_HOME}/installer.properties/en_US.properties"/>
+    <property name="download.dir" value="${FLEX_HOME}/in"/>
+    
+    <property name="swfobject.url.server" value="https://github.com" />
+    <property name="swfobject.url.folder" value="swfobject/swfobject/archive" />
+    <property name="swfobject.url.file" value="2.2.zip" />
+    <property name="swfobject.url.md5" value="4723bc29f2a93e9ad9fbeeac6fe63b9e" />
+
+    <property name="osmf.url.server" value="http://downloads.sourceforge.net" />
+    <property name="osmf.url.folder" value="project/osmf.adobe/OSMF%202.0%20Release%20%28final%20source%2C%20ASDocs%2C%20pdf%20guides%20and%20release%20notes%29" />
+    <property name="osmf.url.file" value="OSMF.swc" />
+    <property name="osmf.url.cachefile" value="OSMF.swc" />
+    <property name="osmf.url.md5" value="6385228692ab982630e47422403f6890" />
+
+    <property name="afe.url.server" value="https://sourceforge.net" />
+    <property name="afe.url.folder" value="adobe/flexsdk/code/HEAD/tree/trunk/lib" />
+    <property name="afe.url.file" value="afe.jar?format=raw" />
+    <property name="afe.url.cachefile" value="afe.jar" />
+    <property name="afe.url.md5" value="d1469e163c4fd4c1ef8be82dd6d0f1ee" />
+
+    <property name="agl.url.server" value="https://sourceforge.net" />
+    <property name="agl.url.folder" value="adobe/flexsdk/code/HEAD/tree/trunk/lib" />
+    <property name="agl.url.file" value="aglj40.jar?format=raw" />
+    <property name="agl.url.cachefile" value="aglj40.jar" />
+    <property name="agl.url.md5" value="b9b6b825787489796d9b6bf607a64824" />
+
+    <property name="fontkit.url.server" value="https://sourceforge.net" />
+    <property name="fontkit.url.folder" value="adobe/flexsdk/code/HEAD/tree/trunk/lib" />
+    <property name="fontkit.url.file" value="flex-fontkit.jar?format=raw" />
+    <property name="fontkit.url.cachefile" value="flex-fontkit.jar" />
+    <property name="fontkit.url.md5" value="2abb9f580fa40ad6ef80864f94b6e938" />
+
+    <property name="rideau.url.server" value="https://sourceforge.net" />
+    <property name="rideau.url.folder" value="adobe/flexsdk/code/HEAD/tree/trunk/lib" />
+    <property name="rideau.url.file" value="rideau.jar?format=raw" />
+    <property name="rideau.url.cachefile" value="rideau.jar" />
+    <property name="rideau.url.md5" value="3b3329c1b3de665dc116121b772c5369" />
+
+    <condition property="platform" value="mac">
+        <os family="mac" />
+    </condition>
+    <condition property="platform" value="windows">
+        <os family="windows" />
+    </condition>
+    <condition property="platform" value="linux">
+        <os family="unix" />
+    </condition>
+    <condition property="isMac" value="mac">
+        <os family="mac" />
+    </condition>
+    <condition property="isWindows" value="windows">
+        <os family="windows" />
+    </condition>
+    <condition property="isLinux" value="linux">
+        <os family="unix" />
+    </condition>
+    
+    <condition property="AIRDownloadEcho" value="${INFO_DOWNLOADING_AIR_RUNTIME_KIT_WINDOWS}">
+        <os family="windows" />
+    </condition>
+    <property name="AIRDownloadEcho" value="${INFO_DOWNLOADING_AIR_RUNTIME_KIT_MAC}" />
+    
+    <condition property="air.donot.ask" value="true">
+        <isset property="installer" />
+    </condition>
+    <condition property="flash.donot.ask" value="true">
+        <isset property="installer" />
+    </condition>
+    <property name="swfobject.donot.ask" value="true" />
+    <property name="do.swfobject.install" value="true" />
+    <property name="osmf.donot.ask" value="true" />
+    <property name="do.osmf.install" value="true" />
+    <condition property="fontswf.donot.ask" value="true">
+        <isset property="installer" />
+    </condition>
+    <property name="ofl.donot.ask" value="true" />
+    <property name="do.ofl.install" value="true" />
+    
+    <condition property="java.home" value="${env.JAVA_HOME}">
+        <and>
+            <available file="${env.JAVA_HOME}" type="dir" />
+            <not>
+                <equals arg1="" arg2="${env.JAVA_HOME}" />
+            </not>
+        </and>
+    </condition>
+
+    <target name="get-md5-data" depends="get-air-md5-data,get-flash-md5-data">
+    </target>
+    <target name="get-air-md5-data" if="air-has-md5">
+        <property name="air.sdk.url.md5" refid="${air.sdk.url.md5.ref}" />
+    </target>
+    <target name="get-flash-md5-data" if="flash-has-md5">
+        <property name="flash.sdk.url.md5" refid="${flash.sdk.url.md5.ref}" />
+    </target>
+
+    <target name="get-data">
+		<tstamp />
+		<property name="ts" value="${DSTAMP}${TSTAMP}" />
+		<!-- <property name="xml.properties" value="http://flex.apache.org/installer/sdk-installer-config-4.0.xml?ts=${ts}" />
+        <get src="${xml.properties}" dest="${basedir}/sdk-installer-config-4.0.xml" /> -->
+        <xmlproperty file="${basedir}/sdk-installer-config-4.0.xml" semanticAttributes="true" collapseAttributes="true"/>
+        <xmlproperty file="${basedir}/flex-sdk-description.xml" semanticAttributes="true" collapseAttributes="true"/>
+        <condition property="air.sdk.version" value="${config.airsdk.linux.versions.default}">
+            <equals arg1="${platform}" arg2="linux" />
+        </condition>
+        <condition property="air.sdk.version" value="${config.airsdk.windows.versions.default}">
+            <equals arg1="${platform}" arg2="windows" />
+        </condition>
+        <condition property="air.sdk.version" value="${config.airsdk.mac.versions.default}">
+            <equals arg1="${platform}" arg2="mac" />
+        </condition>
+        <property name="flash.sdk.version" value="${config.flashsdk.versions.default}"/>
+        <condition property="flash.version.changed" value="true">
+            <not>
+                <equals arg1="${playerglobal.version}" arg2="${flash.sdk.version}" />
+            </not>
+        </condition>
+        <condition property="air.version.changed" value="true">
+            <not>
+                <equals arg1="${air.version}" arg2="${air.sdk.version}" />
+            </not>
+        </condition>
+        <condition property="air.sdk.version.ref" value="${air.sdk.versionID}" >
+            <isset property="air.sdk.versionID" />
+        </condition>
+        <property name="air.sdk.version.ref" value="${air.sdk.version}" />
+        <condition property="flash.sdk.version.ref" value="${flash.sdk.versionID}" >
+            <isset property="flash.sdk.versionID" />
+        </condition>
+        <property name="flash.sdk.version.ref" value="${flash.sdk.version}" />
+        
+        <property name="air.sdk.url.server.ref" value="air.sdk.server.${platform}.${air.sdk.version.ref}" />
+        <property name="air.sdk.url.server" refid="${air.sdk.url.server.ref}" />
+        <property name="air.sdk.url.folder.ref" value="air.sdk.folder.${platform}.${air.sdk.version.ref}" />
+        <property name="air.sdk.url.folder" refid="${air.sdk.url.folder.ref}" />
+        <property name="air.sdk.url.file.ref" value="air.sdk.file.${platform}.${air.sdk.version.ref}" />
+        <property name="air.sdk.url.file" refid="${air.sdk.url.file.ref}" />
+        <property name="air.sdk.url.md5.ref" value="air.sdk.md5.${platform}.${air.sdk.version.ref}" />
+		<condition property="air-has-md5">
+			<isreference refid="${air.sdk.url.md5.ref}" />
+		</condition>
+        <property name="flash.sdk.url.server.ref" value="flash.sdk.server.${flash.sdk.version.ref}" />
+        <property name="flash.sdk.url.server" refid="${flash.sdk.url.server.ref}" />
+        <property name="flash.sdk.url.folder.ref" value="flash.sdk.folder.${flash.sdk.version.ref}" />
+        <property name="flash.sdk.url.folder" refid="${flash.sdk.url.folder.ref}" />
+        <property name="flash.sdk.url.file.ref" value="flash.sdk.file.${flash.sdk.version.ref}" />
+        <property name="flash.sdk.url.file" refid="${flash.sdk.url.file.ref}" />
+        <property name="flash.sdk.url.md5.ref" value="flash.sdk.md5.${flash.sdk.version.ref}" />
+		<condition property="flash-has-md5">
+			<isreference refid="${flash.sdk.url.md5.ref}" />
+		</condition>
+        <property name="flash.sdk.swfversion.ref" value="flash.sdk.swfversion.${flash.sdk.version.ref}" />
+        <property name="flash.sdk.swfversion" refid="${flash.sdk.swfversion.ref}" />
+        <property name="flash.sdk.default.swfversion.ref" value="flash.sdk.swfversion.${playerglobal.version}" />
+        <property name="flash.sdk.default.swfversion" refid="${flash.sdk.default.swfversion.ref}" />
+        <condition property="flash.swfversion.changed" value="true">
+            <not>
+                <equals arg1="${flash.sdk.swfversion}" arg2="${flash.sdk.default.swfversion}" />
+            </not>
+        </condition>
+    </target>
+    
+    <target name="install" depends="get-data,get-md5-data,check-binary,ask-licenses,get-third-party-files,fixup-config-files" description="Converts binary package to IDE compatible folder">
+        <delete dir="${download.dir}" />
+        <echo>${install.complete.echo}</echo>
+    </target>
+    
+    <target name="check-binary" description="Make sure this is a binary package">
+        <fail message="${basedir} is not an Flex binary package">
+            <condition>
+                <not>
+                    <available file="${basedir}/frameworks/libs/framework.swc" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="${basedir} is not an Flex binary package and is probably a git repo">
+            <condition>
+                <available file="$[basedir}/.gitignore" />
+            </condition>
+        </fail>
+    </target>
+    
+    <target name="ask-licenses" depends="ask-air,ask-flash,ask-swfobject,ask-ofl,ask-adobe-osmf,ask-adobe-fontswf" description="Ask about the various licenses">
+	</target>
+    
+    <target name="ask-air" unless="air.donot.ask"
+        description="Prompt the user before downloading AIR">
+        
+        <input
+        message="${air.prompt.text}"
+        validargs="${yes.no.prompts}"
+        defaultvalue="${no}"
+        addproperty="input.air.download"/>
+        <condition property="do.air.install">
+            <equals arg1="${yes}" arg2="${input.air.download}"/>
+        </condition>
+        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.air.install" />
+        <!-- Only ask once per ant run.  -->
+        <property name="air.donot.ask" value="set"/>
+    </target>
+
+    <target name="ask-flash" unless="flash.donot.ask"
+        description="Prompt the user before downloading playerglobal.swc">
+        
+        <input
+        message="${flash.prompt.text}"
+        validargs="${yes.no.prompts}"
+        defaultvalue="${no}"
+        addproperty="input.flash.download"/>
+        <condition property="do.flash.install">
+            <equals arg1="${yes}" arg2="${input.flash.download}"/>
+        </condition>
+        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.flash.install" />
+        <!-- Only ask once per ant run.  -->
+        <property name="flash.donot.ask" value="set"/>
+    </target>
+
+    <target name="ask-swfobject" unless="swfobject.donot.ask"
+        description="Prompt the user before downloading SWFObject">
+        
+        <input
+        message="${swfobject.prompt.text}"
+        validargs="${yes.no.prompts}"
+        defaultvalue="${no}"
+        addproperty="input.swfobject.download"/>
+        <condition property="do.swfobject.install">
+            <equals arg1="${yes}" arg2="${input.swfobject.download}"/>
+        </condition>
+        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.swfobject.install" />
+        <!-- Only ask once per ant run.  -->
+        <property name="swfobject.donot.ask" value="set"/>
+    </target>
+
+    <target name="ask-ofl" unless="ofl.donot.ask"
+        description="Prompt the user before downloading OFL Fonts">
+        
+        <input
+        message="${ofl.prompt.text}"
+        validargs="${yes.no.prompts}"
+        defaultvalue="${no}"
+        addproperty="input.ofl.download"/>
+        <condition property="do.ofl.install">
+            <equals arg1="${yes}" arg2="${input.ofl.download}"/>
+        </condition>
+        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.ofl.install" />
+        <!-- Only ask once per ant run.  -->
+        <property name="ofl.donot.ask" value="set"/>
+    </target>
+
+    <target name="ask-adobe-osmf" unless="osmf.donot.ask"
+        description="Prompt the user before downloading OSMF">
+        
+        <input
+        message="${osmf.prompt.text}"
+        validargs="${yes.no.prompts}"
+        defaultvalue="${no}"
+        addproperty="input.osmf.download"/>
+        <condition property="do.osmf.install">
+            <equals arg1="${yes}" arg2="${input.osmf.download}"/>
+        </condition>
+        <fail message="${ERROR_REQUIRED_LICENSE}" unless="do.osmf.install" />
+        <!-- Only ask once per ant run.  -->
+        <property name="osmf.donot.ask" value="set"/>
+    </target>
+
+    <target name="ask-adobe-fontswf" unless="fontswf.donot.ask"
+        description="Prompt the user before downloading FontSWF">
+        
+        <input
+        message="${fontswf.prompt.text}"
+        validargs="${yes.no.prompts}"
+        defaultvalue="${no}"
+        addproperty="input.fontswf.download"/>
+        <condition property="do.fontswf.install">
+            <equals arg1="${yes}" arg2="${input.fontswf.download}"/>
+        </condition>
+        <!-- Only ask once per ant run.  -->
+        <property name="fontswf.donot.ask" value="set"/>
+    </target>
+
+    <target name="get-third-party-files" depends="air-download,flash-download,swfobject-download,osmf-download,fontswf-download" />
+    
+    <target name="air-check" description="Checks if AIR SDK has been downloaded.">
+        <available file="${FLEX_HOME}/lib/adt.jar" property="skip.air.install"/>
+		<condition property="skip.air.install" value="true">
+			<not>
+				<isset property="do.air.install" />
+			</not>
+		</condition>
+    </target>
+    
+    <target name="air-download" depends="air-check" unless="skip.air.install"
+        description="Downloads AIR SDK and copies to correct locations">
+        
+        <mkdir dir="${download.dir}"/>
+        <antcall target="air-get" />
+
+        <antcall target="air-setup-win" />
+        <antcall target="air-setup-mac" />
+        
+    </target>
+
+    <target name="air-get-check">
+        <available file="${download.dir}/${air.sdk.url.file}" property="air.downloaded" />
+    </target>
+        
+    <target name="air-get" depends="air-get-check" unless="air.downloaded">
+        <echo>${AIRDownloadEcho} ${air.sdk.url.server}/${air.sdk.url.folder}/${air.sdk.url.file}</echo>
+        <antcall target="download_air" >
+            <param name="srcDomain" value="${air.sdk.url.server}" />
+            <param name="srcFolder" value="${air.sdk.url.folder}" />
+            <param name="srcFile" value="${air.sdk.url.file}" />
+            <param name="dest" value="${download.dir}/${air.sdk.url.file}" />
+            <param name="failmessage" value="AIR SDK download failed" />
+        </antcall>
+        <antcall target="download_air_with_md5" >
+            <param name="srcDomain" value="${air.sdk.url.server}" />
+            <param name="srcFolder" value="${air.sdk.url.folder}" />
+            <param name="srcFile" value="${air.sdk.url.file}" />
+            <param name="dest" value="${download.dir}/${air.sdk.url.file}" />
+            <param name="failmessage" value="AIR SDK download failed" />
+            <param name="md5" value="${air.sdk.url.md5}" />
+        </antcall>
+    </target>
+    
+    <target name="air-setup-win" if="isWindows">
+        <unzip src="${download.dir}/${air.sdk.url.file}" dest="${download.dir}/airsdk" />
+        <echo>${INFO_FINISHED_UNZIPPING} ${download.dir}/${air.sdk.url.file}</echo>
+        <copy todir="${FLEX_HOME}" overwrite="true">
+            <fileset dir="${download.dir}/airsdk">
+                <include name="AIR SDK license.pdf" />
+                <include name="AIR SDK Readme.txt" />
+                <include name="airsdk.xml" />
+                <include name="bin/adl.exe" />
+                <include name="bin/adt.bat" />
+                <include name="frameworks/libs/air/**" />
+                <include name="frameworks/projects/air/**" />
+                <include name="include/**" />
+                <include name="install/android/**" />
+                <include name="lib/adt.jar" />
+                <include name="lib/android/**" />
+                <include name="lib/aot/**" />
+                <include name="lib/nai/**" />
+                <include name="lib/win/**" />
+                <include name="runtimes/**" />
+                <include name="samples/badge/**" />
+                <include name="samples/descriptor-sample.xml" />
+                <include name="samples/icons/**" />
+                <include name="templates/air/**" />
+                <include name="templates/extensions/**" />
+                <include name="templates/sdk/**" />
+            </fileset>
+        </copy>
+    </target>
+
+    <target name="unzipOrMountDMG" description="Check for file extension and decide if we should unzip or mount">
+
+		<mkdir dir="${download.dir}/airsdk" />
+        <move file="${download.dir}/${air.sdk.url.file}" todir="${download.dir}/airsdk" />
+
+    	<condition property="shouldUnzip" value="true" else="false">
+      		<matches pattern="tbz2" string="${air.sdk.url.file}"/>
+    	</condition>
+    	<echo message="Should unzip: ${shouldUnzip}"/>
+    </target>
+
+    <target name="unzipAIRSDK" if="${shouldUnzip}" depends="unzipOrMountDMG">
+    	<echo message="Unzipping"/>
+
+    	<!--The tbz2 contains symlinks which Ant does not preserve
+        <untar compression="bzip2" src="${download.dir}/${air.sdk.url.file}" dest="${download.dir}/airsdk" />-->
+        
+        <exec executable="bunzip2" dir="${download.dir}/airsdk">
+            <arg value="${air.sdk.url.file}" />
+        </exec>
+        <echo file="${basedir}/airtar.properties">air.tar.name=${air.sdk.url.file}</echo>
+        <replace file="${basedir}/airtar.properties" token="tbz2" value="tar" />
+        <property file="${basedir}/airtar.properties" />
+        <exec executable="tar" dir="${download.dir}/airsdk">
+            <arg value="-xvf" />
+            <arg value="${air.tar.name}" />
+        </exec>
+        <echo>${INFO_FINISHED_UNTARING} ${download.dir}/airsdk/${air.tar.name}</echo>
+        <delete file="${basedir}/airtar.properties" />
+    </target>
+    
+	<target name="mountAIRSDK" unless="${shouldUnzip}" depends="unzipOrMountDMG">
+		<echo message="Mounting dmg"/>
+		<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="true">
+	      <arg value="attach"/>
+	      <arg value="${download.dir}/airsdk/${air.sdk.url.file}"/>
+	    </exec>
+	</target>
+
+	<target name="copyFromMount" unless="${shouldUnzip}" depends="mountAIRSDK">
+		<echo message="Copying AIR SDK from mounted volume"/>
+		<exec executable="rsync" dir="${FLEX_HOME}">
+            <arg value="--archive" />
+            <arg value="--ignore-existing" />
+            <arg value="--force" />
+            <arg value="/Volumes/AIR SDK/"/>
+            <arg value="${download.dir}/airsdk" />
+        </exec>
+	</target>
+
+	<target name="unmountAIRSDK" unless="${shouldUnzip}" depends="copyFromMount">
+		<echo message="Unmounting AIR SDK"/>
+		<exec executable="/usr/bin/hdiutil" os="Mac OS X" failonerror="false">
+	      <arg value="unmount"/>
+	      <arg value="/Volumes/AIR SDK"/>
+	    </exec>
+	</target>
+    
+    <target name="air-setup-mac" depends="unzipAIRSDK,mountAIRSDK,copyFromMount,unmountAIRSDK" unless="isWindows">
+        <antcall target="mac-copy-file">
+            <param name="srcdir" value="." />
+            <param name="filename" value="AIR SDK license.pdf"/>
+            <param name="destdir" value="${FLEX_HOME}" />
+        </antcall>
+        <antcall target="mac-copy-file">
+            <param name="srcdir" value="." />
+            <param name="filename" value="AIR SDK Readme.txt"/>
+            <param name="destdir" value="${FLEX_HOME}" />
+        </antcall>
+        <antcall target="mac-copy-file">
+            <param name="srcdir" value="." />
+            <param name="filename" value="airsdk.xml"/>
+            <param name="destdir" value="${FLEX_HOME}" />
+        </antcall>
+        <antcall target="mac-copy-file">
+            <param name="srcdir" value="bin" />
+            <param name="filename" value="adl"/>
+            <param name="destdir" value="${FLEX_HOME}/bin" />
+        </antcall>
+        <antcall target="mac-copy-file">
+            <param name="srcdir" value="bin" />
+            <param name="filename" value="adt"/>
+            <param name="destdir" value="${FLEX_HOME}/bin" />
+        </antcall>
+        <antcall target="mac-copy-file">
+            <param name="srcdir" value="lib" />
+            <param name="filename" value="adt.jar"/>
+            <param name="destdir" value="${FLEX_HOME}/lib" />
+        </antcall>
+        <antcall target="mac-copy-file">
+            <param name="srcdir" value="samples" />
+            <param name="filename" value="descriptor-sample.xml"/>
+            <param name="destdir" value="${FLEX_HOME}/samples" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="frameworks/libs/air" />
+            <param name="destdir" value="${FLEX_HOME}/frameworks/libs" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="frameworks/projects/air" />
+            <param name="destdir" value="${FLEX_HOME}/frameworks/projects" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="include" />
+            <param name="destdir" value="${FLEX_HOME}" />
+        </antcall>
+        <antcall target="mac-copy-dir-if-exists">
+            <param name="srcdir" value="install/android" />
+            <param name="destdir" value="${FLEX_HOME}/install" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="lib/android" />
+            <param name="destdir" value="${FLEX_HOME}/lib" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="lib/aot" />
+            <param name="destdir" value="${FLEX_HOME}/lib" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="lib/nai" />
+            <param name="destdir" value="${FLEX_HOME}/lib" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="runtimes" />
+            <param name="destdir" value="${FLEX_HOME}" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="samples/badge" />
+            <param name="destdir" value="${FLEX_HOME}/samples" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="samples/icons" />
+            <param name="destdir" value="${FLEX_HOME}/samples" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="templates/air" />
+            <param name="destdir" value="${FLEX_HOME}/templates" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="templates/extensions" />
+            <param name="destdir" value="${FLEX_HOME}/templates" />
+        </antcall>
+        <antcall target="mac-copy-dir">
+            <param name="srcdir" value="templates/sdk" />
+            <param name="destdir" value="${FLEX_HOME}/templates" />
+        </antcall>
+    </target>
+    
+    <target name="mac-copy-file" description="copies a file">
+        <mkdir dir="${destdir}" />
+        <exec executable="cp" dir="${FLEX_HOME}">
+            <arg value="-p" />
+            <arg value="${download.dir}/airsdk/${srcdir}/${filename}"/>
+            <arg value="${destdir}" />
+        </exec>
+    </target>
+    
+    <target name="mac-copy-dir" description="copies a directory using exec and rsync so that symbolic links are preserved">
+        <echo file="${basedir}/maccopy.properties">mac.copy.echo=${mac.copy.echo.pattern}</echo>
+        <property file="${basedir}/maccopy.properties" />
+        <delete file="${basedir}/maccopy.properties" />
+        <echo>${mac.copy.echo}</echo>
+        <exec executable="rsync" dir="${FLEX_HOME}">
+            <arg value="--archive" />
+            <arg value="--ignore-existing" />
+            <arg value="--force" />
+            <arg value="${download.dir}/airsdk/${srcdir}"/>
+            <arg value="${destdir}" />
+        </exec>
+    </target>
+
+    <target name="mac-copy-dir-if-exists" depends="mac-check-exists" if="${srcdir}.exists" description="copies a directory using exec and rsync so that symbolic links are preserved">
+        <echo file="${basedir}/maccopy.properties">mac.copy.echo=${mac.copy.echo.pattern}</echo>
+        <property file="${basedir}/maccopy.properties" />
+        <echo>${mac.copy.echo}</echo>
+        <exec executable="rsync" dir="${FLEX_HOME}">
+            <arg value="--archive" />
+            <arg value="--ignore-existing" />
+            <arg value="--force" />
+            <arg value="${download.dir}/airsdk/${srcdir}"/>
+            <arg value="${destdir}" />
+        </exec>
+    </target>
+    
+    <target name="mac-check-exists">
+        <available file="${download.dir}/airsdk/${srcdir}" type="dir" property="${srcdir}.exists" />
+    </target>
+
+    <!-- Because this requires a network connection it downloads Flash SDK only if it doesn't already exist. -->
+    <target name="flash-check" description="Checks if Flash SDK has been downloaded.">
+        <available file="${FLEX_HOME}/frameworks/libs/player/${flash.sdk.version}/playerglobal.swc" property="skip.flash.install"/>
+		<condition property="skip.flash.install" value="true">
+			<not>
+				<isset property="do.flash.install" />
+			</not>
+		</condition>
+    </target>
+    
+    <target name="flash-download" depends="flash-check" unless="skip.flash.install"
+        description="Downloads playerglobal.swc and copies to correct locations">
+        
+        <mkdir dir="${download.dir}"/>
+        <mkdir dir="${FLEX_HOME}/frameworks/libs/player/${flash.sdk.version}"/>
+        <echo>${INFO_INSTALLING_PLAYERGLOBAL_SWC} ${flash.sdk.url.server}/${flash.sdk.url.folder}/${flash.sdk.url.file}</echo>
+        <antcall target="download_flash" >
+            <param name="srcDomain" value="${flash.sdk.url.server}" />
+            <param name="srcFolder" value="${flash.sdk.url.folder}" />
+            <param name="srcFile" value="${flash.sdk.url.file}" />
+            <param name="dest" value="${FLEX_HOME}/frameworks/libs/player/${flash.sdk.version}/playerglobal.swc" />
+			<param name="message" value="${INFO_INSTALLING_PLAYERGLOBAL_SWC} ${flash.sdk.url.server}/${flash.sdk.url.folder}/${flash.sdk.url.file}" />
+			<param name="failmessage" value="Flash SDK download failed" />
+        </antcall>
+        <antcall target="download_flash_with_md5" >
+            <param name="srcDomain" value="${flash.sdk.url.server}" />
+            <param name="srcFolder" value="${flash.sdk.url.folder}" />
+            <param name="srcFile" value="${flash.sdk.url.file}" />
+            <param name="dest" value="${FLEX_HOME}/frameworks/libs/player/${flash.sdk.version}/playerglobal.swc" />
+			<param name="message" value="${INFO_INSTALLING_PLAYERGLOBAL_SWC} ${flash.sdk.url.server}/${flash.sdk.url.folder}/${flash.sdk.url.file}" />
+			<param name="failmessage" value="Flash SDK download failed" />
+			<param name="md5" value="${flash.sdk.url.md5}" />
+        </antcall>
+    </target>
+    
+    <!-- swfobject.js (Version 2.2) -->
+    <!-- Because this requires a network connection it downloads SWFObject only if it doesn't already exist. -->
+    <target name="swfobject-check" description="Checks if SWFObject has been downloaded.">
+        <available file="${basedir}/../templates/swfobject/swfobject.js" property="skip.swfobject.install"/>
+		<condition property="skip.swfobject.install" value="true">
+			<not>
+				<isset property="do.swfobject.install" />
+			</not>
+		</condition>
+    </target>
+    
+    <target name="swfobject-download" depends="swfobject-check" unless="skip.swfobject.install"
+        description="Copies SWFObject from code.google.com">
+        
+        <echo file="${basedir}/swfobject.properties">swfobject.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
+        <replace file="${basedir}/swfobject.properties" token="{0}" value="${swfobject.url.file}" />
+        <replace file="${basedir}/swfobject.properties" token="{1}" value="${swfobject.url.server}/${swfobject.url.folder}" />
+        <property file="${basedir}/swfobject.properties" />
+        <delete file="${basedir}/swfobject.properties" />
+        <echo>${swfobject.echo}</echo>
+        
+        <mkdir dir="${download.dir}"/>
+        <antcall target="download_using_get" >
+            <param name="srcDomain" value="${swfobject.url.server}" />
+            <param name="srcFolder" value="${swfobject.url.folder}" />
+            <param name="srcFile" value="${swfobject.url.file}" />
+            <param name="dest" value="${download.dir}/swfobject_2_2.zip" />
+			<param name="failmessage" value="SWFObject download failed" />
+			<param name="md5" value="${swfobject.url.md5}" />
+        </antcall>
+
+        <echo>${INFO_DOWNLOADED}</echo>
+        <mkdir dir="${download.dir}/swfobject"/>
+        <unzip src="${download.dir}/swfobject_2_2.zip" dest="${download.dir}/swfobject">
+            <patternset>
+                <include name="swfobject-2.2/swfobject/expressInstall.swf"/>
+                <include name="swfobject-2.2/swfobject/swfobject.js"/>
+            </patternset>
+        </unzip>
+        <mkdir dir="${FLEX_HOME}/templates/swfobject"/>
+		<copy file="${download.dir}/swfobject/swfobject-2.2/swfobject/expressInstall.swf"
+			tofile="${FLEX_HOME}/templates/swfobject/expressInstall.swf" />
+		<copy file="${download.dir}/swfobject/swfobject-2.2/swfobject/swfobject.js"
+			tofile="${FLEX_HOME}/templates/swfobject/swfobject.js" />
+        <mkdir dir="${FLEX_HOME}/frameworks/javascript/fabridge/samples/fabridge/swfobject" />
+        <copy file="${FLEX_HOME}/templates/swfobject/swfobject.js" tofile="${FLEX_HOME}/frameworks/javascript/fabridge/samples/fabridge/swfobject/swfobject.js" />
+    </target>
+    
+    <!-- osmf (Version 2.0) -->
+    <!-- Because this requires a network connection it downloads OSMF only if it doesn't already exist. -->
+    <target name="osmf-check" description="Checks if OSMF has been downloaded.">
+        <available file="${basedir}/frameworks/libs/osmf.swc" property="skip.osmf.install"/>
+		<condition property="skip.osmf.install" value="true">
+			<not>
+				<isset property="do.osmf.install" />
+			</not>
+		</condition>
+    </target>
+    
+    <target name="osmf-download" depends="osmf-check" unless="skip.osmf.install"
+        description="Copies OSMF from Open@Adobe">
+        
+        <echo file="${basedir}/osmf.properties">osmf.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
+        <replace file="${basedir}/osmf.properties" token="{0}" value="${osmf.url.file}" />
+        <replace file="${basedir}/osmf.properties" token="{1}" value="${osmf.url.server}/${osmf.url.folder}" />
+        <property file="${basedir}/osmf.properties" />
+        <delete file="${basedir}/osmf.properties" />
+        <echo>${osmf.echo}</echo>
+
+        <mkdir dir="${basedir}/frameworks/libs/"/>
+        <antcall target="download_using_get" >
+            <param name="srcDomain" value="${osmf.url.server}" />
+            <param name="srcFolder" value="${osmf.url.folder}" />
+            <param name="srcFile" value="${osmf.url.file}" />
+            <param name="cacheFile" value="${osmf.url.cachefile}" />
+            <param name="dest" value="${basedir}/frameworks/libs/osmf.swc" />
+			<param name="failmessage" value="OSMF download failed" />
+			<param name="md5" value="${osmf.url.md5}" />
+        </antcall>
+
+        <unzip src="${basedir}/frameworks/libs/osmf.swc" dest="${download.dir}">
+            <patternset>
+                <include name="library.swf"/>
+            </patternset>
+        </unzip>
+        <copy file="${download.dir}/library.swf" tofile="${FLEX_HOME}/frameworks/rsls/osmf_${flex-sdk-description.version}.${flex-sdk-description.build}.swf" />
+    </target>
+
+    <!-- fontswf -->
+    <!-- Because this requires a network connection it downloads only if it doesn't already exist. -->
+    <target name="fontswf-check" description="Checks if fontswf has been downloaded.">
+        <condition property="skip.fontswf.install">
+            <and>
+                <available file="${basedir}/lib/external/optional/afe.jar" />
+                <available file="${basedir}/lib/external/optional/aglj40.jar" />
+                <available file="${basedir}/lib/external/optional/flex-fontkit.jar" />
+                <available file="${basedir}/lib/external/optional/rideau.jar" />
+            </and>
+        </condition>
+		<condition property="skip.fontswf.install" value="true">
+			<not>
+				<isset property="do.fontswf.install" />
+			</not>
+		</condition>
+    </target>
+
+    <target name="fontswf-download" depends="fontswf-check" unless="skip.fontswf.install"
+        description="Copies OSMF from Open@Adobe">
+        
+        <echo file="${basedir}/afe.properties">afe.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
+        <replace file="${basedir}/afe.properties" token="{0}" value="${afe.url.file}" />
+        <replace file="${basedir}/afe.properties" token="{1}" value="${afe.url.server}/${afe.url.folder}" />
+        <property file="${basedir}/afe.properties" />
+        <delete file="${basedir}/afe.properties" />
+        <echo>${afe.echo}</echo>
+
+        <mkdir dir="${basedir}/lib/external/optional"/>
+        <antcall target="download_using_get" >
+            <param name="srcDomain" value="${afe.url.server}" />
+            <param name="srcFolder" value="${afe.url.folder}" />
+            <param name="srcFile" value="${afe.url.file}" />
+            <param name="cacheFile" value="${afe.url.cachefile}" />
+            <param name="dest" value="${basedir}/lib/external/optional/afe.jar" />
+			<param name="failmessage" value="afe.jar download failed" />
+			<param name="md5" value="${afe.url.md5}" />
+        </antcall>
+
+        <echo file="${basedir}/agl.properties">agl.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
+        <replace file="${basedir}/agl.properties" token="{0}" value="${agl.url.file}" />
+        <replace file="${basedir}/agl.properties" token="{1}" value="${agl.url.server}/${agl.url.folder}" />
+        <property file="${basedir}/agl.properties" />
+        <delete file="${basedir}/agl.properties" />
+        <echo>${agl.echo}</echo>
+        
+        <antcall target="download_using_get" >
+            <param name="srcDomain" value="${agl.url.server}" />
+            <param name="srcFolder" value="${agl.url.folder}" />
+            <param name="srcFile" value="${agl.url.file}" />
+            <param name="cacheFile" value="${agl.url.cachefile}" />
+            <param name="dest" value="${basedir}/lib/external/optional/aglj40.jar" />
+			<param name="failmessage" value="aglj40.jar download failed" />
+			<param name="md5" value="${agl.url.md5}" />
+        </antcall>
+
+        <echo file="${basedir}/fontkit.properties">fontkit.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
+        <replace file="${basedir}/fontkit.properties" token="{0}" value="${fontkit.url.file}" />
+        <replace file="${basedir}/fontkit.properties" token="{1}" value="${fontkit.url.server}/${fontkit.url.folder}" />
+        <property file="${basedir}/fontkit.properties" />
+        <delete file="${basedir}/fontkit.properties" />
+        <echo>${fontkit.echo}</echo>
+        
+        <antcall target="download_using_get" >
+            <param name="srcDomain" value="${fontkit.url.server}" />
+            <param name="srcFolder" value="${fontkit.url.folder}" />
+            <param name="srcFile" value="${fontkit.url.file}" />
+            <param name="cacheFile" value="${fontkit.url.cachefile}" />
+            <param name="dest" value="${basedir}/lib/external/optional/flex-fontkit.jar" />
+			<param name="failmessage" value="flex-fontkit.jar download failed" />
+			<param name="md5" value="${fontkit.url.md5}" />
+        </antcall>
+
+        <echo file="${basedir}/rideau.properties">rideau.echo=${INFO_DOWNLOADING_FILE_FROM}</echo>
+        <replace file="${basedir}/rideau.properties" token="{0}" value="${rideau.url.file}" />
+        <replace file="${basedir}/rideau.properties" token="{1}" value="${rideau.url.server}/${rideau.url.folder}" />
+        <property file="${basedir}/rideau.properties" />
+        <delete file="${basedir}/rideau.properties" />
+        <echo>${rideau.echo}</echo>
+        
+        <antcall target="download_using_get" >
+            <param name="srcDomain" value="${rideau.url.server}" />
+            <param name="srcFolder" value="${rideau.url.folder}" />
+            <param name="srcFile" value="${rideau.url.file}" />
+            <param name="cacheFile" value="${rideau.url.cachefile}" />
+            <param name="dest" value="${basedir}/lib/external/optional/rideau.jar" />
+			<param name="failmessage" value="rideau.jar download failed" />
+			<param name="md5" value="${rideau.url.md5}" />
+        </antcall>
+        
+        <!-- fontkit expects swfutils in the same folder -->
+        <copy file="${basedir}/lib/swfutils.jar" tofile="${basedir}/lib/external/optional/swfutils.jar" />
+    </target>
+
+    <target name="fixup-config-files" depends="flex-sdk-description-flash,flex-sdk-description-air">
+        <echo>${INFO_INSTALLING_CONFIG_FILES}</echo>
+        <antcall target="fixup-config-files-version" />
+        <antcall target="fixup-config-files-swfversion" />
+        <tstamp />
+        <property name="build.number.date" value="${DSTAMP}" />
+        <replace file="${FLEX_HOME}/frameworks/flex-config.xml">
+            <replacefilter token="{playerglobalHome}"
+   

<TRUNCATED>

[16/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - hide asc classes

Posted by jm...@apache.org.
hide asc classes


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

Branch: refs/heads/master
Commit: f95a01662a866ce1adcd075eb4a2c4c363470da2
Parents: 617b736
Author: Alex Harui <ah...@apache.org>
Authored: Mon Nov 21 23:42:16 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Nov 21 23:42:16 2016 -0800

----------------------------------------------------------------------
 .gitignore | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/f95a0166/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 865d742..3b9d3b5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -81,6 +81,7 @@ obj/
 [Dd]ebug*/
 !debugger/
 modules/debugger/classes/
+modules/asc/build/java/classes/
 [Rr]elease*/
 Ankh.NoLoad
 


[19/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Add support for Adobe AIR SDK 24+ which are being served as .dmg files instead of .tbz2 files

Posted by jm...@apache.org.
Add support for Adobe AIR SDK 24+ which are being served as .dmg files instead of .tbz2 files


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

Branch: refs/heads/master
Commit: 8036b68beafc5df24a96d69bc76e670d36232e5d
Parents: 952a5e6
Author: Om Muppirala <om...@machinezone.com>
Authored: Sun Nov 20 22:38:00 2016 -0800
Committer: Om Muppirala <om...@machinezone.com>
Committed: Sun Dec 11 23:28:29 2016 -0800

----------------------------------------------------------------------
 installer.xml | 1972 +++++++++++++++++++++++++++-------------------------
 1 file changed, 1007 insertions(+), 965 deletions(-)
----------------------------------------------------------------------



[50/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Merge branch 'release4.16.0'

Posted by jm...@apache.org.
Merge branch 'release4.16.0'


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

Branch: refs/heads/master
Commit: ea8a5ab637cb4cb46f240433cb8f44cfd34dfd1a
Parents: 07e452b 14c9664
Author: Justin Mclean <jm...@apache.org>
Authored: Wed Mar 15 15:05:22 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Wed Mar 15 15:05:22 2017 +1100

----------------------------------------------------------------------
 .gitignore                                      |    1 +
 ApproveSDK.xml                                  |   21 +-
 CONTRIBUTORS                                    |    6 +
 GIT-TEST.txt                                    |   11 +-
 NOTICE                                          |    2 +-
 README                                          |    9 +-
 RELEASE_NOTES                                   |   97 +-
 bin/asc                                         |    4 +-
 bin/asdoc                                       |    2 +-
 bin/compc                                       |    2 +-
 bin/copylocale                                  |    2 +-
 bin/digest                                      |    2 +-
 bin/fcsh                                        |    2 +-
 bin/fdb                                         |    2 +-
 bin/fontswf                                     |    4 +-
 bin/mxmlc                                       |    2 +-
 bin/optimizer                                   |    2 +-
 bin/swcdepends                                  |    2 +-
 bin/swfdump                                     |    4 +-
 build.properties                                |    4 +-
 build.xml                                       |    4 +-
 flex-sdk-description.xml                        |    6 +-
 flexunit-tests.xml                              |    8 +-
 frameworks/build.xml                            |   12 +
 frameworks/downloads.xml                        |  134 +-
 .../src/mx/collections/GroupingCollection2.as   |    2 -
 .../collections/HierarchicalCollectionView.as   |    4 +-
 .../HierarchicalCollectionViewCursor.as         |   71 +-
 .../src/mx/controls/AdvancedDataGridBaseEx.as   |   27 +-
 .../AdvancedDataGridBase.as                     |   22 +-
 .../mx/controls/listClasses/AdvancedListBase.as |   17 +-
 ...rchicalCollectionViewCursor_FindAny_Tests.as |  510 +++++
 ...erarchicalCollectionView_FLEX_34775_Tests.as |    4 +-
 .../tests/mx/controls/FLEX_33058_Tests.as       |  196 ++
 .../src/mx/managers/NativeDragManagerImpl.as    |    2 +-
 .../apache/flex/collections/VectorCollection.as |    2 +-
 .../apache/flex/formatters/PostCodeFormatter.as |    4 +-
 .../src/mx/automation/AutomationClass.as        |    4 +-
 .../experimental/src/spark/components/Alert.as  |    5 +-
 .../assets/fonts/awesome/FontAwesome.otf        |  Bin 109688 -> 134808 bytes
 .../src/flatspark/skins/ButtonIconSkin.mxml     |    2 +-
 .../src/flatspark/utils/AwesomeUtils.as         |  122 +-
 frameworks/projects/framework/manifest.xml      |    1 +
 .../framework/src/mx/binding/Binding.as         |    2 +-
 .../framework/src/mx/collections/ArrayList.as   |   22 +-
 .../src/mx/collections/ComplexSortField.as      |    2 +
 .../src/mx/collections/CursorBookmark.as        |   13 +-
 .../framework/src/mx/collections/IViewCursor.as |   18 +-
 .../src/mx/collections/ListCollectionView.as    |   73 +-
 .../mx/collections/ModifiedCollectionView.as    |   26 +-
 .../framework/src/mx/collections/Sort.as        |    9 +-
 .../framework/src/mx/collections/SortField.as   |    5 +
 .../framework/src/mx/core/CrossDomainRSLItem.as |    2 +-
 .../framework/src/mx/core/FlexVersion.as        |   18 +-
 .../src/mx/formatters/DateFormatter.as          |    2 +-
 .../systemClasses/MarshallingSupport.as         |    4 +-
 .../src/mx/resources/ResourceManagerImpl.as     |   11 +-
 .../framework/src/mx/utils/ArrayUtil.as         |  104 +
 .../framework/src/mx/utils/ObjectUtil.as        |   85 +-
 .../framework/src/mx/utils/TransformUtil.as     |    2 +-
 .../framework/src/mx/utils/VectorUtil.as        |   52 +
 .../src/mx/validators/EmailValidator.as         |    2 +-
 .../framework/src/mx/validators/Validator.as    |   32 +-
 .../mx/binding/utils/BindingUtils_Tests.as      |  234 +++
 .../ArrayCollection_AddRemoveNumbers_Tests.as   |  174 ++
 .../ArrayCollection_AddRemoveObjects_Tests.as   |  274 +++
 .../ArrayCollection_AddRemoveStrings_Tests.as   |  200 ++
 ...ArrayCollection_FilerAndSortNumbers_Tests.as |  114 +
 ...ArrayCollection_FilerAndSortStrings_Tests.as |  114 +
 .../ArrayCollection_FilterNumbers_Tests.as      |  315 +++
 .../ArrayCollection_FilterStrings_Tests.as      |  341 +++
 .../ArrayCollection_SortNumbers_Tests.as        |  212 ++
 .../ArrayCollection_SortStrings_Tests.as        |  254 +++
 ...tCollectionView_PropertyChangeEvent_Tests.as |  532 +++++
 .../framework/tests/mx/utils/ArrayUtil_Tests.as |  308 +++
 .../tests/mx/utils/ObjectUtil_Compare_Tests.as  |  161 ++
 .../tests/mx/utils/ObjectUtil_Tests.as          |  341 +++
 .../framework/tests/mx/utils/VectorUtilTests.as |  152 ++
 .../supportClasses/ScrollableStageText.as       |   24 +
 .../src/spark/skins/ios7/BusyIndicatorSkin.as   |   20 +-
 .../src/spark/skins/mobile/BusyIndicatorSkin.as |    2 +-
 .../mx/containers/utilityClasses/BoxLayout.as   |    2 +-
 .../projects/mx/src/mx/controls/ComboBox.as     |    4 +-
 .../projects/mx/src/mx/controls/DataGrid.as     |    3 +-
 .../projects/mx/src/mx/controls/DateField.as    |   34 +-
 .../treeClasses/HierarchicalViewCursor.as       |   36 +-
 .../spark/src/spark/collections/Sort.as         |    5 +
 .../spark/src/spark/collections/SortField.as    |    5 +
 .../spark/src/spark/components/DataGrid.as      |  149 +-
 .../spark/src/spark/components/DropDownList.as  |   18 +-
 .../projects/spark/src/spark/components/Grid.as |    8 +-
 .../spark/components/GridColumnHeaderGroup.as   |    6 +-
 .../projects/spark/src/spark/components/List.as |   38 +-
 .../spark/components/gridClasses/GridColumn.as  |    4 +-
 .../components/gridClasses/GridViewLayout.as    |   12 +-
 .../components/supportClasses/ButtonBase.as     |    2 +-
 .../supportClasses/DropDownController.as        |    8 -
 .../spark/components/supportClasses/ListBase.as |    4 +-
 .../supportClasses/SkinnableComponent.as        |    2 +-
 .../spark/src/spark/layouts/ConstraintLayout.as |   32 +-
 .../src/spark/skins/spark/BusyIndicatorSkin.as  |   21 +-
 .../projects/spark/src/spark/utils/LabelUtil.as |    5 +-
 .../spark/src/spark/utils/MouseEventUtil.as     |    2 +-
 .../components/DataGrid_FLEX_26808_Tests.as     |  324 +++
 .../components/DataGrid_FLEX_34837_Tests.as     |    2 +
 .../components/DropDownList_FLEX_35126_Tests.as |  182 ++
 .../CalloutButton_FLEX_34088_Tests.as           |  146 ++
 .../ConstraintLayout_FLEX_33311_Tests.as        |  139 ++
 .../tests/spark/skins/spark/FLEX_34625_Tests.as |   15 +-
 ide/addAIRtoSDK.sh                              |   59 +-
 ide/checkAllPlayerGlobals.sh                    |   54 +-
 ide/flashbuilder/config/air-config.xml          |   21 +-
 ide/flashbuilder/config/flex-config.xml         |   20 +-
 ide/setFlashPlayerVersion.sh                    |   79 +-
 installer.xml                                   | 1973 +++++++++---------
 licenseParts/NOTICE.asc                         |    2 +-
 licenseParts/NOTICE.base                        |    2 +-
 licenseParts/NOTICE.pb                          |    2 +-
 licenseParts/saxon9-NOTICES/APACHE-ANT.txt      |   13 +
 licenseParts/saxon9-NOTICES/APACHE-RESOLVER.txt |    9 +
 licenseParts/saxon9-NOTICES/APACHE-XERCES.txt   |   17 +
 licenseParts/saxon9-NOTICES/CERN.txt            |    7 +
 licenseParts/saxon9-NOTICES/FRIJTERS.txt        |   22 +
 licenseParts/saxon9-NOTICES/GPL+CLASSPATH.txt   |  347 +++
 licenseParts/saxon9-NOTICES/JAMESCLARK.txt      |   25 +
 licenseParts/saxon9-NOTICES/LEGAL.txt           |   33 +
 licenseParts/saxon9-NOTICES/LICENSE.txt         |   15 +
 licenseParts/saxon9-NOTICES/THAI.txt            |   31 +
 licenseParts/saxon9-NOTICES/UNICODE.txt         |   29 +
 .../src/java/macromedia/asc/embedding/Main.java |    2 +-
 .../java/macromedia/asc/embedding/Shell.java    |    2 +-
 .../java/macromedia/asc/embedding/SwfMaker.java |   16 +-
 .../flex2/compiler/common/Configuration.java    |   32 +
 .../java/flex2/linker/LinkerConfiguration.java  |    4 +
 .../src/java/flex2/linker/SimpleMovie.java      |   10 +
 .../src/java/flex2/tools/ASDoc_da.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_de.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_en.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_es.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_fi.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_fr.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_it.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_ja.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_ko.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_nb.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_nl.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_pt.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_ru.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_sv.properties    |    2 +-
 .../src/java/flex2/tools/ASDoc_zh_CN.properties |    2 +-
 .../src/java/flex2/tools/ASDoc_zh_TW.properties |    2 +-
 .../src/java/flex2/tools/Compc_da.properties    |    2 +-
 .../src/java/flex2/tools/Compc_de.properties    |    2 +-
 .../src/java/flex2/tools/Compc_en.properties    |    2 +-
 .../src/java/flex2/tools/Compc_es.properties    |    2 +-
 .../src/java/flex2/tools/Compc_fi.properties    |    2 +-
 .../src/java/flex2/tools/Compc_fr.properties    |    2 +-
 .../src/java/flex2/tools/Compc_it.properties    |    2 +-
 .../src/java/flex2/tools/Compc_ja.properties    |    2 +-
 .../src/java/flex2/tools/Compc_ko.properties    |    2 +-
 .../src/java/flex2/tools/Compc_nb.properties    |    2 +-
 .../src/java/flex2/tools/Compc_nl.properties    |    2 +-
 .../src/java/flex2/tools/Compc_pt.properties    |    2 +-
 .../src/java/flex2/tools/Compc_ru.properties    |    2 +-
 .../src/java/flex2/tools/Compc_sv.properties    |    2 +-
 .../src/java/flex2/tools/Compc_zh_CN.properties |    2 +-
 .../src/java/flex2/tools/Compc_zh_TW.properties |    2 +-
 .../java/flex2/tools/DigestTool_da.properties   |    2 +-
 .../java/flex2/tools/DigestTool_de.properties   |    2 +-
 .../java/flex2/tools/DigestTool_en.properties   |    2 +-
 .../java/flex2/tools/DigestTool_es.properties   |    2 +-
 .../java/flex2/tools/DigestTool_fi.properties   |    2 +-
 .../java/flex2/tools/DigestTool_fr.properties   |    2 +-
 .../java/flex2/tools/DigestTool_it.properties   |    2 +-
 .../java/flex2/tools/DigestTool_ja.properties   |    2 +-
 .../java/flex2/tools/DigestTool_ko.properties   |    2 +-
 .../java/flex2/tools/DigestTool_nb.properties   |    2 +-
 .../java/flex2/tools/DigestTool_nl.properties   |    2 +-
 .../java/flex2/tools/DigestTool_pt.properties   |    2 +-
 .../java/flex2/tools/DigestTool_ru.properties   |    2 +-
 .../java/flex2/tools/DigestTool_sv.properties   |    2 +-
 .../flex2/tools/DigestTool_zh_CN.properties     |    2 +-
 .../flex2/tools/DigestTool_zh_TW.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_da.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_de.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_en.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_es.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_fi.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_fr.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_it.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_ja.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_ko.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_nb.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_nl.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_pt.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_ru.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_sv.properties     |    2 +-
 .../src/java/flex2/tools/Fcsh_zh_CN.properties  |    2 +-
 .../src/java/flex2/tools/Fcsh_zh_TW.properties  |    2 +-
 .../src/java/flex2/tools/Mxmlc_da.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_de.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_en.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_es.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_fi.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_fr.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_it.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_ja.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_ko.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_nb.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_nl.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_pt.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_ru.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_sv.properties    |    2 +-
 .../src/java/flex2/tools/Mxmlc_zh_CN.properties |    2 +-
 .../src/java/flex2/tools/Mxmlc_zh_TW.properties |    2 +-
 .../tools/flexbuilder/BuilderConfiguration.java |   10 +
 .../src/java/flex2/tools/oem/Application.java   |    2 +-
 .../src/java/flex2/tools/oem/Configuration.java |   44 +-
 .../src/java/flex2/tools/oem/Library.java       |    2 +-
 .../src/java/flex2/tools/oem/Toolkit.java       |    4 +-
 .../oem/internal/ConfigurationConstants.java    |    2 +
 .../tools/oem/internal/LinkerConfiguration.java |   24 +
 .../tools/oem/internal/OEMConfiguration.java    |   30 +
 .../flex/tools/debugger/cli/fdb_da.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_de.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_en.properties   |    4 +-
 .../flex/tools/debugger/cli/fdb_es.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_fi.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_fr.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_it.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_ja.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_ko.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_nb.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_nl.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_pt.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_ru.properties   |    2 +-
 .../flex/tools/debugger/cli/fdb_sv.properties   |    2 +-
 .../tools/debugger/cli/fdb_zh_CN.properties     |    2 +-
 .../tools/debugger/cli/fdb_zh_TW.properties     |    2 +-
 modules/downloads.xml                           |  109 +-
 .../swfutils/src/java/flash/swf/TagDecoder.java |    7 +-
 .../swfutils/src/java/flash/swf/TagEncoder.java |    4 +-
 .../src/java/flash/swf/tags/FileAttributes.java |    4 +
 .../src/java/flash/swf/tools/SwfxParser.java    |    2 +
 .../src/java/flash/swf/tools/SwfxPrinter.java   |    2 +
 modules/thirdparty/batik/build.xml              |    2 +-
 .../velocity/test/texen/additional.props        |    1 -
 .../velocity/test/texen/compare/Test.txt        |   11 -
 .../test/texen/compare/TurbineWeather.java      |   81 -
 .../texen/compare/TurbineWeatherService.java    |   78 -
 .../test/texen/compare/WeatherService.java      |   70 -
 .../velocity/test/texen/compare/book.txt        |   15 -
 .../thirdparty/velocity/test/texen/license.txt  |   55 -
 .../velocity/test/texen/service.props           |   21 -
 .../velocity/test/texen/templates/Control.vm    |   41 -
 .../texen/templates/ServiceImplementation.vm    |   39 -
 .../test/texen/templates/ServiceInterface.vm    |   31 -
 .../test/texen/templates/ServiceStaticHelper.vm |   42 -
 .../velocity/test/texen/templates/Test.vm       |   27 -
 .../velocity/test/texen/templates/book.vm       |   31 -
 .../velocity/test/texen/templates/test.props    |    4 -
 .../Sort/SWFs/SF_ORIG_ListBasic.mxml            |    5 +-
 templates/swfobject/history/history.js          |   23 +-
 263 files changed, 8371 insertions(+), 2276 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/ea8a5ab6/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
----------------------------------------------------------------------
diff --cc frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
index 9b56bee,92915a0..a92a77c
--- a/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
+++ b/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
@@@ -927,10 -927,12 +927,9 @@@ public class ResourceManagerImpl extend
                                parameters:Array = null,
                                locale:String = null):String
      {
-         var resourceBundle:IResourceBundle =
-             findBundle(bundleName, resourceName, locale);
+         var resourceBundle:IResourceBundle = findBundle(bundleName, resourceName, locale);
          if (!resourceBundle)
              return null;
 -        
 -        if(!(resourceName in resourceBundle.content))
 -            return null;
  
          var value:String = String(resourceBundle.content[resourceName]);
          


[13/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - update hash

Posted by jm...@apache.org.
update hash


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

Branch: refs/heads/master
Commit: 4aae54543f6a64d77294b8a9a24c20a5ac5695ad
Parents: 78431c6
Author: Justin Mclean <jm...@apache.org>
Authored: Fri Nov 11 10:17:59 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Fri Nov 11 10:17:59 2016 +1100

----------------------------------------------------------------------
 ide/checkAllPlayerGlobals.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4aae5454/ide/checkAllPlayerGlobals.sh
----------------------------------------------------------------------
diff --git a/ide/checkAllPlayerGlobals.sh b/ide/checkAllPlayerGlobals.sh
index a1c7a95..2d9c194 100755
--- a/ide/checkAllPlayerGlobals.sh
+++ b/ide/checkAllPlayerGlobals.sh
@@ -131,4 +131,4 @@ downloadPlayerGlobal 19.0 3f2473dd35a55427886abfc1807eaa98 playerglobal19_0.swc
 downloadPlayerGlobal 20.0 444ea8e8f2cddec22ed8b77e0d61bfe2 playerglobal20_0.swc
 downloadPlayerGlobal 21.0 1dd14e80b962327ccd17ce1321dc2135 playerglobal21_0.swc
 downloadPlayerGlobal 22.0 177e7f8cb98bc874b73296791b747128 playerglobal22_0.swc
-downloadPlayerGlobal 23.0 460477059d7a23e045a75d7e85c48bab playerglobal23_0.swc
+downloadPlayerGlobal 23.0 1a7cd9b61930be524e9c98e1a85feebe playerglobal23_0.swc


[11/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - FLEX-34880 Added an asdoc recommendation that developers use Sort and SortField as immutable objects, although the current API allows for mutability.

Posted by jm...@apache.org.
FLEX-34880
Added an asdoc recommendation that developers use Sort and SortField as immutable objects, although the current API allows for mutability.


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

Branch: refs/heads/master
Commit: 4ead7712d68ef40449f58d031031b305f38b5739
Parents: 286a0ca
Author: Mihai Chira <mi...@apache.org>
Authored: Wed Nov 9 14:51:10 2016 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Wed Nov 9 14:51:10 2016 +0100

----------------------------------------------------------------------
 frameworks/projects/framework/src/mx/collections/Sort.as      | 5 +++++
 frameworks/projects/framework/src/mx/collections/SortField.as | 5 +++++
 frameworks/projects/spark/src/spark/collections/Sort.as       | 5 +++++
 frameworks/projects/spark/src/spark/collections/SortField.as  | 5 +++++
 4 files changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4ead7712/frameworks/projects/framework/src/mx/collections/Sort.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/collections/Sort.as b/frameworks/projects/framework/src/mx/collections/Sort.as
index 7e2e82c..38acab8 100644
--- a/frameworks/projects/framework/src/mx/collections/Sort.as
+++ b/frameworks/projects/framework/src/mx/collections/Sort.as
@@ -95,6 +95,11 @@ package mx.collections
  *  sorting for strings.  For this type of sorting please see the 
  *  <code>spark.collections.Sort</code> and 
  *  <code>spark.collections.SortField</code> classes.</p>
+ *
+ *  Note: to prevent problems like
+ *  <a href="https://issues.apache.org/jira/browse/FLEX-34853">FLEX-34853</a>
+ *  it is recommended to use SortField
+ *  instances as immutable objects (by not changing their state).
  * 
  *  @mxml
  *

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4ead7712/frameworks/projects/framework/src/mx/collections/SortField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/collections/SortField.as b/frameworks/projects/framework/src/mx/collections/SortField.as
index a465656..824d98d 100644
--- a/frameworks/projects/framework/src/mx/collections/SortField.as
+++ b/frameworks/projects/framework/src/mx/collections/SortField.as
@@ -72,6 +72,11 @@ package mx.collections
  *  <code>spark.collections.Sort</code> and
  *  <code>spark.collections.SortField</code> classes.</p>
  *
+ *  Note: to prevent problems like
+ *  <a href="https://issues.apache.org/jira/browse/FLEX-34853">FLEX-34853</a>
+ *  it is recommended to use SortField
+ *  instances as immutable objects (by not changing their state).
+ *
  *  @mxml
  *
  *  <p>The <code>&lt;mx:SortField&gt;</code> tag has the following attributes:</p>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4ead7712/frameworks/projects/spark/src/spark/collections/Sort.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/collections/Sort.as b/frameworks/projects/spark/src/spark/collections/Sort.as
index 0f31834..891da49 100644
--- a/frameworks/projects/spark/src/spark/collections/Sort.as
+++ b/frameworks/projects/spark/src/spark/collections/Sort.as
@@ -160,6 +160,11 @@ package spark.collections
  *  UIComponent's <code>addStyleClient()</code> method.
  *  </li>
  *  </ul>
+ *
+ *  Note: to prevent problems like
+ *  <a href="https://issues.apache.org/jira/browse/FLEX-34853">FLEX-34853</a>
+ *  it is recommended to use SortField
+ *  instances as immutable objects (by not changing their state).
  *  
  *  @mxml
  *

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4ead7712/frameworks/projects/spark/src/spark/collections/SortField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/collections/SortField.as b/frameworks/projects/spark/src/spark/collections/SortField.as
index 760b725..5b730a2 100644
--- a/frameworks/projects/spark/src/spark/collections/SortField.as
+++ b/frameworks/projects/spark/src/spark/collections/SortField.as
@@ -129,6 +129,11 @@ package spark.collections
  *  UIComponent's <code>addStyleClient()</code> method.
  *  </li>
  *  </ul>
+ *
+ *  Note: to prevent problems like
+ *  <a href="https://issues.apache.org/jira/browse/FLEX-34853">FLEX-34853</a>
+ *  it is recommended to use SortField
+ *  instances as immutable objects (by not changing their state).
  *  
  *  @mxml
  *


[17/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - update release notes

Posted by jm...@apache.org.
update release notes


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

Branch: refs/heads/master
Commit: 952a5e6d8f9de606710f303fa9f9816c2af563df
Parents: f95a016
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Dec 6 08:22:42 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Dec 6 08:22:42 2016 +1100

----------------------------------------------------------------------
 RELEASE_NOTES | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/952a5e6d/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 86545a7..4be84d2 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -25,6 +25,7 @@ FLEX-35106  Incorrect date in datefield popup for fr_FR locale
 FLEX-35100  TextFlowLine.recreateTextLine() throws a null object reference error
 FLEX-35099  BusyIndicator has the wrong wrong rotation centre for iOS
 FLEX-35097  How to compile AIR beta 22 with Flex SDK?
+FLEX-35084  Ability to specify FileAttributes at compile time (mxmlc)
 FLEX-35082  moveIndexFindRow doesn't accept integer values
 FLEX-35078  Fatal when SelectionManager tries to reapply selection onto changed textFlow
 FLEX-35056  Pressing escape on s:Alert causes a RangeError when Alert.CANCEL is passed


[27/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - update to mention support for AIR/Flash 24.0

Posted by jm...@apache.org.
update to mention support for AIR/Flash 24.0


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

Branch: refs/heads/master
Commit: 65a1de5c1991be74ccd21ed120f0105eae239d3c
Parents: f6b2262
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Dec 19 10:00:52 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Dec 19 10:00:52 2016 +1100

----------------------------------------------------------------------
 RELEASE_NOTES | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/65a1de5c/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 4be84d2..7edf235 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -7,8 +7,8 @@ FLEX-35122  Update to Font Awesome 4.7
 
 AIR and Flash Player Support
 ----------------------------
-- Support Flash Player 21.0, 22.0 and 23.0
-- Support for AIR 21.0, 22.0 and 23.0
+- Support Flash Player 21.0, 22.0, 23.0 and 24.0
+- Support for AIR 21.0, 22.0, 23.0 and 24.0
 
 Bug Fixes
 ---------


[15/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - didn't mean to commit that file

Posted by jm...@apache.org.
didn't mean to commit that file


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

Branch: refs/heads/master
Commit: 617b736fad6c9fe9966fbcaf69eb3728126e7e0b
Parents: 77d6955
Author: Alex Harui <ah...@apache.org>
Authored: Mon Nov 21 23:35:19 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Nov 21 23:35:19 2016 -0800

----------------------------------------------------------------------
 .../asc/build/java/classes/macromedia/asc/util/version.properties   | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/617b736f/modules/asc/build/java/classes/macromedia/asc/util/version.properties
----------------------------------------------------------------------
diff --git a/modules/asc/build/java/classes/macromedia/asc/util/version.properties b/modules/asc/build/java/classes/macromedia/asc/util/version.properties
deleted file mode 100644
index 39edfcd..0000000
--- a/modules/asc/build/java/classes/macromedia/asc/util/version.properties
+++ /dev/null
@@ -1 +0,0 @@
-build=20161121
\ No newline at end of file


[36/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Update year to 2017

Posted by jm...@apache.org.
Update year to 2017


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

Branch: refs/heads/master
Commit: 2cdc95a7d88f15e555c76aefbee1833effb986d5
Parents: 48a9ed8
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Jan 7 09:39:13 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Jan 7 09:39:13 2017 +1100

----------------------------------------------------------------------
 modules/compiler/src/java/flex2/tools/ASDoc_da.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_de.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_en.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_es.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_fi.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_fr.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_it.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_ja.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_ko.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_nb.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_nl.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_pt.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_ru.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_sv.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_zh_CN.properties      | 2 +-
 modules/compiler/src/java/flex2/tools/ASDoc_zh_TW.properties      | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_da.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_de.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_en.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_es.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_fi.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_fr.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_it.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_ja.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_ko.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_nb.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_nl.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_pt.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_ru.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_sv.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_zh_CN.properties      | 2 +-
 modules/compiler/src/java/flex2/tools/Compc_zh_TW.properties      | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_da.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_de.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_en.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_es.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_fi.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_fr.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_it.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_ja.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_ko.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_nb.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_nl.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_pt.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_ru.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_sv.properties    | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_zh_CN.properties | 2 +-
 modules/compiler/src/java/flex2/tools/DigestTool_zh_TW.properties | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_da.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_de.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_en.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_es.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_fi.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_fr.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_it.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_ja.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_ko.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_nb.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_nl.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_pt.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_ru.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_sv.properties          | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_zh_CN.properties       | 2 +-
 modules/compiler/src/java/flex2/tools/Fcsh_zh_TW.properties       | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_da.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_de.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_en.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_es.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_fi.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_fr.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_it.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_ja.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_ko.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_nb.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_nl.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_pt.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_ru.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_sv.properties         | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_zh_CN.properties      | 2 +-
 modules/compiler/src/java/flex2/tools/Mxmlc_zh_TW.properties      | 2 +-
 80 files changed, 80 insertions(+), 80 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_da.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_da.properties b/modules/compiler/src/java/flex2/tools/ASDoc_da.properties
index aa0fdf7..ea7cca6 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_da.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_da.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Dokumentationen er oprettet i ${location}
 ValidationMessage=Der blev fundet tekst med forkert format. Der er flere oplysninger i ${file}.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_de.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_de.properties b/modules/compiler/src/java/flex2/tools/ASDoc_de.properties
index 2cf7653..59303a3 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_de.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_de.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Dokumentation wurde erstellt unter: ${location}
 ValidationMessage=Gefundener nicht wohlgeformter Text. Zu Details siehe ${file}.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_en.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_en.properties b/modules/compiler/src/java/flex2/tools/ASDoc_en.properties
index fb1cf7f..c823aba 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_en.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_en.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Documentation was created in ${location}
 ValidationMessage=Encountered not well-formed text. Please see ${file} for details.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_es.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_es.properties b/modules/compiler/src/java/flex2/tools/ASDoc_es.properties
index 65fa11a..9b98c5f 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_es.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_es.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=La documentaci\u00f3n se cre\u00f3 en ${location}
 ValidationMessage=Se ha encontrado texto con formato incorrecto. Consulte ${file} para ver los detalles.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_fi.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_fi.properties b/modules/compiler/src/java/flex2/tools/ASDoc_fi.properties
index b94bec0..6520248 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_fi.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_fi.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Dokumentaatio luotiin hakemistoon ${location}
 ValidationMessage=Kohdattiin teksti, jota ei ole muodostettu hyvin. Katso lis\u00e4tietoja tiedostosta ${file}.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_fr.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_fr.properties b/modules/compiler/src/java/flex2/tools/ASDoc_fr.properties
index 9933414..e84dbe0 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_fr.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_fr.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=La documentation a \u00e9t\u00e9 cr\u00e9\u00e9e sous ${location}.
 ValidationMessage=Texte incorrectement mis en forme rencontr\u00e9. Veuillez consulter ${file} pour plus de d\u00e9tails.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_it.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_it.properties b/modules/compiler/src/java/flex2/tools/ASDoc_it.properties
index a6bb88e..f0d0c20 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_it.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_it.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=La documentazione \u00e8 stata creata in ${location}
 ValidationMessage=Rilevato testo non ben formato. Vedere ${file} per ulteriori dettagli.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_ja.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_ja.properties b/modules/compiler/src/java/flex2/tools/ASDoc_ja.properties
index 3a778c4..b790734 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_ja.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_ja.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f ${location} \u306b\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f
 ValidationMessage=\u9069\u683c\u306a\u5f62\u5f0f\u3067\u306a\u3044\u30c6\u30ad\u30b9\u30c8\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f\u3002\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u3001${file} \u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_ko.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_ko.properties b/modules/compiler/src/java/flex2/tools/ASDoc_ko.properties
index 1f7dfab..bb4e30e 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_ko.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_ko.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=${location}\uc5d0\uc11c \uc791\uc131\ub41c \ubb38\uc11c
 ValidationMessage=\uc62c\ubc14\ub974\uc9c0 \uc54a\uc740 \ud615\uc2dd\uc758 \ud14d\uc2a4\ud2b8\uc785\ub2c8\ub2e4. \uc790\uc138\ud55c \ub0b4\uc6a9\uc740 ${file}\uc744(\ub97c) \ucc38\uc870\ud558\uc2ed\uc2dc\uc624.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_nb.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_nb.properties b/modules/compiler/src/java/flex2/tools/ASDoc_nb.properties
index e149dd2..53bebcf 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_nb.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_nb.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Dokumentasjon ble opprettet i ${location}
 ValidationMessage=Fant tekst som ikke er godt utformet. Se i ${file} hvis du vil vite mer.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_nl.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_nl.properties b/modules/compiler/src/java/flex2/tools/ASDoc_nl.properties
index 023c4e3..d89845a 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_nl.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_nl.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Documentatie is gemaakt in ${location}
 ValidationMessage=Onjuist opgemaakte tekst aangetroffen. Zie ${file} voor details.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_pt.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_pt.properties b/modules/compiler/src/java/flex2/tools/ASDoc_pt.properties
index da6e452..fe3ef58 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_pt.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_pt.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=A documenta\u00e7\u00e3o foi criada em ${location}
 ValidationMessage=Foi encontrado um texto que n\u00e3o est\u00e1 bem-formado. Para obter detalhes, consulte ${file}.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_ru.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_ru.properties b/modules/compiler/src/java/flex2/tools/ASDoc_ru.properties
index 3088bdb..1f124bd 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_ru.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_ru.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0430 \u0432 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 ${location}
 ValidationMessage=\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u043e\u0442\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442. \u0421\u043c. \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0432 \u0444\u0430\u0439\u043b\u0435 ${file}.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_sv.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_sv.properties b/modules/compiler/src/java/flex2/tools/ASDoc_sv.properties
index 3482ce1..f70417a 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_sv.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_sv.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Dokumentationen har skapats i ${location}
 ValidationMessage=Felaktigt formaterad text uppt\u00e4cktes. Mer information finns i ${file}.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_zh_CN.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_zh_CN.properties b/modules/compiler/src/java/flex2/tools/ASDoc_zh_CN.properties
index fde9b8a..e40b158 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_zh_CN.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_zh_CN.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=\u6587\u6863\u521b\u5efa\u5728\u201c${location}\u201d\u4e2d
 ValidationMessage=\u9047\u5230\u683c\u5f0f\u9519\u8bef\u7684\u6587\u672c\u3002\u6709\u5173\u8be6\u7ec6\u4fe1\u606f\uff0c\u8bf7\u53c2\u9605 ${file}\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/ASDoc_zh_TW.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/ASDoc_zh_TW.properties b/modules/compiler/src/java/flex2/tools/ASDoc_zh_TW.properties
index 9ff24b4..7a8eb5c 100644
--- a/modules/compiler/src/java/flex2/tools/ASDoc_zh_TW.properties
+++ b/modules/compiler/src/java/flex2/tools/ASDoc_zh_TW.properties
@@ -18,6 +18,6 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of ASDoc
-StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex ASDoc \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=\u6587\u4ef6\u5efa\u7acb\u65bc\u201c${location}\u201d
 ValidationMessage=\u9047\u5230\u683c\u5f0f\u4e0d\u6b63\u78ba\u7684\u6587\u5b57\u3002\u8acb\u53c3\u95b1 ${file} \u4ee5\u7372\u53d6\u8a73\u7d30\u8cc7\u8a0a\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_da.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_da.properties b/modules/compiler/src/java/flex2/tools/Compc_da.properties
index 592ca1c..6c18e8c 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_da.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_da.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} er opdateret og skal ikke bygges igen.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_de.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_de.properties b/modules/compiler/src/java/flex2/tools/Compc_de.properties
index 426546f..d4b6f70 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_de.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_de.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} ist auf dem aktuellen Stand und muss nicht neu erstellt werden.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_en.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_en.properties b/modules/compiler/src/java/flex2/tools/Compc_en.properties
index db2111a..8b93a71 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_en.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_en.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} is up-to-date and does not have to be rebuilt.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_es.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_es.properties b/modules/compiler/src/java/flex2/tools/Compc_es.properties
index b2d6e99..cd025d2 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_es.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_es.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} est\u00e1 actualizado y no necesita ser reconstruido.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_fi.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_fi.properties b/modules/compiler/src/java/flex2/tools/Compc_fi.properties
index 5c1864e..84da670 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_fi.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_fi.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} on ajan tasalla, eik\u00e4 sit\u00e4 tarvitse muodostaa uudelleen.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_fr.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_fr.properties b/modules/compiler/src/java/flex2/tools/Compc_fr.properties
index ae55317..5c41752 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_fr.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_fr.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} est \u00e0 jour et n'a pas besoin d'\u00eatre r\u00e9g\u00e9n\u00e9r\u00e9.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_it.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_it.properties b/modules/compiler/src/java/flex2/tools/Compc_it.properties
index 6218a1c..6a5143a 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_it.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_it.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u00e8 aggiornato e non \u00e8 necessario rigenerarlo.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_ja.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_ja.properties b/modules/compiler/src/java/flex2/tools/Compc_ja.properties
index 9d541c1..60f59b1 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_ja.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_ja.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u306f\u6700\u65b0\u3067\u3059\u3002\u30ea\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_ko.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_ko.properties b/modules/compiler/src/java/flex2/tools/Compc_ko.properties
index d4a5a8a..cf591d6 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_ko.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_ko.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name}\uc740(\ub294) \ucd5c\uc2e0 \ubc84\uc804\uc774\ubbc0\ub85c \ub2e4\uc2dc \ube4c\ub4dc\ud560 \ud544\uc694\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_nb.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_nb.properties b/modules/compiler/src/java/flex2/tools/Compc_nb.properties
index 3f99439..1898f9e 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_nb.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_nb.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} er oppdatert og trenger ikke \u00e5 bygges p\u00e5 nytt.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_nl.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_nl.properties b/modules/compiler/src/java/flex2/tools/Compc_nl.properties
index b818bca..518d247 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_nl.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_nl.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} is up-to-date en hoeft niet opnieuw te worden gemaakt.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_pt.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_pt.properties b/modules/compiler/src/java/flex2/tools/Compc_pt.properties
index 211c748..cd13a23 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_pt.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_pt.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} est\u00e1 atualizado e n\u00e3o \u00e9 preciso recri\u00e1-lo.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_ru.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_ru.properties b/modules/compiler/src/java/flex2/tools/Compc_ru.properties
index c9b7873..5b3d7f2 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_ru.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_ru.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0430\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0438 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0438.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_sv.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_sv.properties b/modules/compiler/src/java/flex2/tools/Compc_sv.properties
index eed5e34..3b313ac 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_sv.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_sv.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u00e4r uppdaterat och beh\u00f6ver inte kompileras om.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_zh_CN.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_zh_CN.properties b/modules/compiler/src/java/flex2/tools/Compc_zh_CN.properties
index 9371f52..ed84f6b 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_zh_CN.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_zh_CN.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u662f\u6700\u65b0\u7684\uff0c\u4e0d\u5fc5\u91cd\u5efa\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Compc_zh_TW.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Compc_zh_TW.properties b/modules/compiler/src/java/flex2/tools/Compc_zh_TW.properties
index 4332ebc..319a3da 100644
--- a/modules/compiler/src/java/flex2/tools/Compc_zh_TW.properties
+++ b/modules/compiler/src/java/flex2/tools/Compc_zh_TW.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of Compc
-StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex compc (Component Compiler)\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u662f\u6700\u65b0\u7684\uff0c\u4e0d\u9700\u8981\u91cd\u5efa\u3002

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_da.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_da.properties b/modules/compiler/src/java/flex2/tools/DigestTool_da.properties
index ace91ff..4db3563 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_da.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_da.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Digestoplysninger er opdateret i ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_de.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_de.properties b/modules/compiler/src/java/flex2/tools/DigestTool_de.properties
index 84fb743..18b1872 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_de.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_de.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Digest-Informationen wurden aktualisiert unter ${location}.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_en.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_en.properties b/modules/compiler/src/java/flex2/tools/DigestTool_en.properties
index 4eebd5c..9d16933 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_en.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_en.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Digest information was updated in ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_es.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_es.properties b/modules/compiler/src/java/flex2/tools/DigestTool_es.properties
index b763f44..406bf0e 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_es.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_es.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=La informaci\u00f3n de compendio se actualiz\u00f3 en ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_fi.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_fi.properties b/modules/compiler/src/java/flex2/tools/DigestTool_fi.properties
index 177c20d..105f50e 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_fi.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_fi.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Yhteenvetotiedot p\u00e4ivitettiin hakemistoon ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_fr.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_fr.properties b/modules/compiler/src/java/flex2/tools/DigestTool_fr.properties
index 2fca3a6..0f34d94 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_fr.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_fr.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Les informations de pr\u00e9traitement ont \u00e9t\u00e9 mises \u00e0 jour dans ${location}.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_it.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_it.properties b/modules/compiler/src/java/flex2/tools/DigestTool_it.properties
index 3967ec0..b99f550 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_it.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_it.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Le informazioni del digest sono state aggiornate in ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_ja.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_ja.properties b/modules/compiler/src/java/flex2/tools/DigestTool_ja.properties
index 14ecedf..b7b192a 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_ja.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_ja.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u60c5\u5831\u306f ${location} \u3067\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_ko.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_ko.properties b/modules/compiler/src/java/flex2/tools/DigestTool_ko.properties
index 68087d6..fb718c7 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_ko.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_ko.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=${location}\uc5d0\uc11c \ub2e4\uc774\uc81c\uc2a4\ud2b8 \uc815\ubcf4\uac00 \uc5c5\ub370\uc774\ud2b8\ub428

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_nb.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_nb.properties b/modules/compiler/src/java/flex2/tools/DigestTool_nb.properties
index 835eebf..8ee5847 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_nb.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_nb.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Sammendragsinformasjon ble oppdatert i ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_nl.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_nl.properties b/modules/compiler/src/java/flex2/tools/DigestTool_nl.properties
index 63c6412..cb63bc2 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_nl.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_nl.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Digestinformatie is bijgewerkt in ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_pt.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_pt.properties b/modules/compiler/src/java/flex2/tools/DigestTool_pt.properties
index 75a893b..63f016e 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_pt.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_pt.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=As informa\u00e7\u00f5es de compila\u00e7\u00e3o foram atualizadas em ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_ru.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_ru.properties b/modules/compiler/src/java/flex2/tools/DigestTool_ru.properties
index 97886e0..5aeea36 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_ru.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_ru.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0432 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_sv.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_sv.properties b/modules/compiler/src/java/flex2/tools/DigestTool_sv.properties
index bf083fb..32e2b78 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_sv.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_sv.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=Sammanfattningsinformationen uppdaterades i ${location}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_zh_CN.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_zh_CN.properties b/modules/compiler/src/java/flex2/tools/DigestTool_zh_CN.properties
index 243ab5f..97f2a41 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_zh_CN.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_zh_CN.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=\u5728\u201c${location}\u201d\u4e2d\u66f4\u65b0\u4e86\u6458\u8981\u4fe1\u606f

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/DigestTool_zh_TW.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/DigestTool_zh_TW.properties b/modules/compiler/src/java/flex2/tools/DigestTool_zh_TW.properties
index c3c4738..766a450 100644
--- a/modules/compiler/src/java/flex2/tools/DigestTool_zh_TW.properties
+++ b/modules/compiler/src/java/flex2/tools/DigestTool_zh_TW.properties
@@ -18,5 +18,5 @@
 ################################################################################
 
 # localization strings for messages defined as inner classes of DigestTool
-StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex digest \n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 OutputMessage=\u6458\u8981\u8cc7\u8a0a\u5df2\u5728\u201c${location}\u201d\u4e2d\u66f4\u65b0

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_da.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_da.properties b/modules/compiler/src/java/flex2/tools/Fcsh_da.properties
index 1ede1d2..2bf2e5e 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_da.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_da.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: M\u00e5let ${id} blev ikke fundet
 AssignTargetID=fcsh: ${counter} er tildelt som kompileringsprogrammets m\u00e5l-id
 DetectConfigurationChange=Der er fundet konfigurations\u00e6ndringer. Kompiler igen...
 NoChange=Intet er \u00e6ndret siden seneste kompilering. Ignorer...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Liste over fcsh-kommandoer:\nmxmlc arg1 arg2 ...      fuld kompilering og optimering, der returnerer et m\u00e5l-id\ncompc arg1 arg2 ...      fuld SWC-kompilering\ncompile id               trinvis kompilering\nclear [id]               ryd m\u00e5l\ninfo [id]                vis oplysninger om kompileringsm\u00e5l\nquit                     afslut

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_de.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_de.properties b/modules/compiler/src/java/flex2/tools/Fcsh_de.properties
index 0a1a8c2..86c0d4d 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_de.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_de.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: Ziel-${id} nicht gefunden.
 AssignTargetID=fcsh: ${counter} als Kompilierungsziel-ID zugewiesen
 DetectConfigurationChange=Konfigurations\u00e4nderungen wurden gefunden. Neukompilierung wird ausgef\u00fchrt...
 NoChange=Keine \u00c4nderungen seit der letzten Kompilierung. \u00dcberspringen...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Liste der fcsh-Befehle:\nmxmlc arg1 arg2 ...      vollst\u00e4ndige Kompilierung und Optimierung; R\u00fcckgabe einer Ziel-ID\ncompc arg1 arg2 ...      vollst\u00e4ndige SWC-Kompilierung\ncompile id               inkrementelle Kompilierung\nclear [id]               Ziel(e) l\u00f6schen\ninfo [id]                Anzeige von Informationen zum Kompilierungsziel\nquit                     Beenden

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_en.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_en.properties b/modules/compiler/src/java/flex2/tools/Fcsh_en.properties
index 2efe5da..cfa4f6e 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_en.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_en.properties
@@ -22,7 +22,7 @@ TargetNotFound=fcsh: Target ${id} not found
 AssignTargetID=fcsh: Assigned ${counter} as the compile target id
 DetectConfigurationChange=Detected configuration changes. Recompile...
 NoChange=Nothing has changed since the last compile. Skip...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=List of fcsh commands:\n\
 mxmlc arg1 arg2 ...      full compilation and optimization; return a target id\n\
 compc arg1 arg2 ...      full SWC compilation\n\

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_es.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_es.properties b/modules/compiler/src/java/flex2/tools/Fcsh_es.properties
index d6f952d..d6950d5 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_es.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_es.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: no se encuentra el ${id} de destino
 AssignTargetID=fcsh: Se asign\u00f3 ${counter} como el Id. de destino de compilaci\u00f3n
 DetectConfigurationChange=Se han detectado cambios de configuraci\u00f3n. Volver a compilar...
 NoChange=No se ha realizado ning\u00fan cambio desde la \u00faltima compilaci\u00f3n. Omitir...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Lista de comandos fcsh:\nmxmlc arg1 arg2 ...      full compilation and optimization; return a target id\ncompc arg1 arg2 ...      full SWC compilation\ncompile id               incremental compilation\nclear [id]               clear target(s)\ninfo [id]                display compile target info\nquit                     quit

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_fi.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_fi.properties b/modules/compiler/src/java/flex2/tools/Fcsh_fi.properties
index 6e0e4ba..de0b8b2 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_fi.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_fi.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: Kohdetta ${id} ei l\u00f6ydy
 AssignTargetID=fcsh:Kokoamisen kohdetunnukseksi m\u00e4\u00e4ritettiin ${counter}
 DetectConfigurationChange=M\u00e4\u00e4ritysmuutoksia havaittiin. Kokoa uudelleen...
 NoChange=Mit\u00e4\u00e4n ei ole muuttunut edellisen kokoamisen j\u00e4lkeen. Ohita...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=fcsh-komentojen luettelo:\nmxmlc arg1 arg2 ...      t\u00e4ysi kokoaminen ja optimointi, palauta kohdetunnus\ncompc arg1 arg2 ...      t\u00e4ysi SWC-kokoaminen\ncompile id               asteittainen kokoaminen\nclear [id]               tyhjenn\u00e4 kohde/kohteet\ninfo [id]                n\u00e4yt\u00e4 kokoamisen kohdetiedot\nquit                     lopeta

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_fr.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_fr.properties b/modules/compiler/src/java/flex2/tools/Fcsh_fr.properties
index 54db248..41ee9d4 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_fr.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_fr.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh : cible ${id} introuvable
 AssignTargetID=fcsh : ${counter} attribu\u00e9 en tant qu'ID cible de compilation
 DetectConfigurationChange=Changements de configuration d\u00e9tect\u00e9s. Recompilation en cours...
 NoChange=Rien n'a chang\u00e9 depuis la derni\u00e8re compilation. Op\u00e9ration ignor\u00e9e...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Liste de commandes fcsh :\nmxmlc arg1 arg2 ...      compilation et optimisation compl\u00e8tes ; renvoi d'un ID cible\ncompc arg1 arg2 ...      compilation SWC compl\u00e8te\nID de compilation               compilation incr\u00e9mentielle\nclear [id]               suppression de cible(s)\ninfo [id]                affichage des infos cibles de compilation\nquit                     sortie

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_it.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_it.properties b/modules/compiler/src/java/flex2/tools/Fcsh_it.properties
index 5d4d3ba..c214b75 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_it.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_it.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: impossibile trovare ${id} della destinazione
 AssignTargetID=fcsh: assegnato ${counter} come ID della destinazione di compilazione
 DetectConfigurationChange=Rilevate modifiche della configurazione. Ricompilazione in corso...
 NoChange=Dopo l'ultima compilazione non \u00e8 stata apportata alcuna modifica. L'operazione verr\u00e0 ignorata.
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Elenco dei comandi fcsh:\nmxmlc arg1 arg2 ...      compilazione completa e ottimizzazione; restituzione di un ID di destinazione\ncompc arg1 arg2 ...      compilazione SWC completa\nID di compilazione               compilazione incrementale\ncancella [ID]               cancella destinazioni\ninformazioni [ID]                visualizza informazioni sulla destinazione della compilazione\nesci                     esci

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_ja.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_ja.properties b/modules/compiler/src/java/flex2/tools/Fcsh_ja.properties
index cd32933..f73cf62 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_ja.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_ja.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh : \u30bf\u30fc\u30b2\u30c3\u30c8 ${id} \u306f\u898b\u3064\u3
 AssignTargetID=fcsh : \u30b3\u30f3\u30d1\u30a4\u30eb\u30bf\u30fc\u30b2\u30c3\u30c8 ID \u3068\u3057\u3066 ${counter} \u3092\u5272\u308a\u5f53\u3066\u307e\u3057\u305f
 DetectConfigurationChange=\u8a2d\u5b9a\u306e\u5909\u66f4\u3092\u691c\u51fa\u3057\u307e\u3057\u305f\u3002\u518d\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u307e\u3059...
 NoChange=\u6700\u5f8c\u306e\u30b3\u30f3\u30d1\u30a4\u30eb\u304b\u3089\u306f\u4f55\u3082\u5909\u66f4\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u30b9\u30ad\u30c3\u30d7\u3057\u307e\u3059...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=fcsh \u30b3\u30de\u30f3\u30c9\u306e\u30ea\u30b9\u30c8 : \nmxmlc arg1 arg2 ...      \u5b8c\u5168\u30b3\u30f3\u30d1\u30a4\u30eb\u3068\u6700\u9069\u5316\u3002\u30bf\u30fc\u30b2\u30c3\u30c8 id \u3092\u8fd4\u3057\u307e\u3059\ncompc arg1 arg2 ...      \u5b8c\u5168 SWC \u30b3\u30f3\u30d1\u30a4\u30eb\ncompile id               \u30a4\u30f3\u30af\u30ea\u30e1\u30f3\u30bf\u30eb\u30b3\u30f3\u30d1\u30a4\u30eb\nclear [id]               \u30bf\u30fc\u30b2\u30c3\u30c8\u3092\u30af\u30ea\u30a2\ninfo [id]                \u30b3\u30f3\u30d1\u30a4\u30eb\u30bf\u30fc\u30b2\u30c3\u30c8\u306e\u60c5\u5831\u3092\u8868\u793a\nquit                     \u7d42\u4e86

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_ko.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_ko.properties b/modules/compiler/src/java/flex2/tools/Fcsh_ko.properties
index 671063b..98de440 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_ko.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_ko.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: \ub300\uc0c1 ${id}\uc744(\ub97c) \ucc3e\uc9c0 \ubabb\ud568
 AssignTargetID=fcsh: ${counter}\uc744(\ub97c) \ucef4\ud30c\uc77c \ub300\uc0c1 ID\ub85c \ud560\ub2f9\ud568
 DetectConfigurationChange=\uad6c\uc131 \ubcc0\uacbd \uc0ac\ud56d\uc774 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.  \ub2e4\uc2dc \ucef4\ud30c\uc77c...
 NoChange=\ub9c8\uc9c0\ub9c9\uc73c\ub85c \ucef4\ud30c\uc77c\ud55c \ud6c4 \ubcc0\uacbd \uc0ac\ud56d\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uac74\ub108\ub6f0\uae30...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=fcsh \uba85\ub839 \ubaa9\ub85d:\nmxmlc arg1 arg2 ...      \uc804\uccb4 \ucef4\ud30c\uc77c \ubc0f \ucd5c\uc801\ud654, \ub300\uc0c1 ID \ubc18\ud658\ncompc arg1 arg2 ...      \uc804\uccb4 SWC \ucef4\ud30c\uc77c\n\ucef4\ud30c\uc77c ID               \uc99d\ubd84 \ucef4\ud30c\uc77c\n\uc9c0\uc6b0\uae30 [ID]               \ub300\uc0c1 \uc9c0\uc6b0\uae30\n\uc815\ubcf4 [ID]                \ucef4\ud30c\uc77c \ub300\uc0c1 \uc815\ubcf4 \ud45c\uc2dc\n\uc885\ub8cc                     \uc885\ub8cc

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_nb.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_nb.properties b/modules/compiler/src/java/flex2/tools/Fcsh_nb.properties
index 9a04f8f..3e1e133 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_nb.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_nb.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: Finner ikke m\u00e5let ${id}
 AssignTargetID=fcsh: Tilordnet ${counter} som kompileringsm\u00e5l-ID
 DetectConfigurationChange=Oppdaget konfigurasjonsendringer. Kompiler p\u00e5 nytt...
 NoChange=Ingenting er endret siden forrige kompilering. Hopp over...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Liste over fcsh-kommandoer:\nmxmlc arg1 arg2 ...      full kompilering og optimering; returner en m\u00e5l-ID\ncompc arg1 arg2 ...      full swc-kompilering\ncompile id               trinnvis kompilering\nclear [id]               fjern m\u00e5l\ninfo [id]                vis info om kompileringsm\u00e5l\nquit                     avslutt

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_nl.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_nl.properties b/modules/compiler/src/java/flex2/tools/Fcsh_nl.properties
index 495bd67..5e8e8d9 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_nl.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_nl.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: doel ${id} niet gevonden
 AssignTargetID=fcsh: ${counter} toegewezen als de compileerdoel-ID
 DetectConfigurationChange=Configuratiewijzigingen gedetecteerd. Opnieuw compileren...
 NoChange=Er is niets gewijzigd sinds de laatste compileerbewerking. Overslaan...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Lijst met fcsh-opdrachten:\nmxmlc arg1 arg2 ...      volledige compilatie en optimalisatie; retourneert een doel-id\ncompc arg1 arg2 ...      volledige swc-compilatie\ncompile id               incrementele compilatie\nclear [id]               doel(en) wissen\ninfo [id]                compileerdoelinfo weergeven\nquit                     afsluiten

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_pt.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_pt.properties b/modules/compiler/src/java/flex2/tools/Fcsh_pt.properties
index 2a2292f..0fe042b 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_pt.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_pt.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: ${id} de destino n\u00e3o encontrado
 AssignTargetID=fcsh: ${counter} atribu\u00eddo como id de destino da compila\u00e7\u00e3o
 DetectConfigurationChange=Foram detectadas altera\u00e7\u00f5es na configura\u00e7\u00e3o. Recompilar...
 NoChange=Nada foi alterado desde a \u00faltima compila\u00e7\u00e3o. Ignorar...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Lista de comandos fcsh:\nmxmlc arg1 arg2 ...      compila\u00e7\u00e3o e otimiza\u00e7\u00e3o total; retornar uma id de destino\ncompc arg1 arg2 ...      compila\u00e7\u00e3o SWC total\ncompile id               compila\u00e7\u00e3o incremental\nclear [id]               limpar destino(s)\ninfo [id]                exibir informa\u00e7\u00f5es de destino de compila\u00e7\u00e3o\nquit                     sair

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_ru.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_ru.properties b/modules/compiler/src/java/flex2/tools/Fcsh_ru.properties
index 8f049ab..176b200 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_ru.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_ru.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: ${id} \u0446\u0435\u043b\u0438 \u043d\u0435 \u043d\u0430\u0
 AssignTargetID=fcsh: ${counter} \u043f\u0440\u0438\u0441\u0432\u043e\u0435\u043d \u043a\u0430\u043a \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0446\u0435\u043b\u0438 \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u0438
 DetectConfigurationChange=\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u044b \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438. \u041f\u0435\u0440\u0435\u043a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c...
 NoChange=\u041f\u043e\u0441\u043b\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442. \u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=\u0421\u043f\u0438\u0441\u043e\u043a \u043a\u043e\u043c\u0430\u043d\u0434 fcsh:\nmxmlc arg1 arg2 ...      \u043f\u043e\u043b\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u044f \u0438 \u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0430\u0446\u0438\u044f; \u0432\u043e\u0437\u0432\u0440\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 \u0446\u0435\u043b\u0438\ncompc arg1 arg2 ...      \u043f\u043e\u043b\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u044f SWC\ncompile id             \u0438\u043d\u043a\u0440\u0435\u043c\u0435\u043d\u0442\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u044f\nclear [id] \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u043e\u0431\u044a\u0435\u043a\u0442\u0430(\u043e\u0432)\ninfo [id]                \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\
 u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0446\u0435\u043b\u0435\u0432\u043e\u043c \u043e\u0431\u044a\u0435\u043a\u0442\u0435 \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u0438\nquit                     \u0432\u044b\u0445\u043e\u0434

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_sv.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_sv.properties b/modules/compiler/src/java/flex2/tools/Fcsh_sv.properties
index ac7374c..60a6ed0 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_sv.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_sv.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: M\u00e5let ${id} kan inte hittas
 AssignTargetID=fcsh: Tilldelar ${counter} som kompileringsm\u00e5ls-ID
 DetectConfigurationChange=Konfigurations\u00e4ndringar har p\u00e5tr\u00e4ffats. Kompilera om ...
 NoChange=Ingenting har \u00e4ndrats sedan f\u00f6reg\u00e5ende kompilering. Hoppa \u00f6ver...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=Lista \u00f6ver fcsh-kommandon:\nmxmlc arg1 arg2 ...      fullst\u00e4ndig kompilering och optimering; returnera ett m\u00e5l-id\ncompc arg1 arg2 ...      fullst\u00e4ndig SWC-kompilering\ncompile id               stegvis \u00f6kande kompilering\nclear [id]               rensa m\u00e5l\ninfo [id]                visa kompileringsm\u00e5lsinformation\nquit                     st\u00e4ng

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_zh_CN.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_zh_CN.properties b/modules/compiler/src/java/flex2/tools/Fcsh_zh_CN.properties
index 791f89d..db94451 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_zh_CN.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_zh_CN.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: \u627e\u4e0d\u5230\u76ee\u6807 ${id}
 AssignTargetID=fcsh: \u5c06 ${counter} \u6307\u5b9a\u4e3a\u7f16\u8bd1\u76ee\u6807\u6807\u8bc6
 DetectConfigurationChange=\u68c0\u6d4b\u5230\u914d\u7f6e\u66f4\u6539\u3002\u91cd\u65b0\u7f16\u8bd1...
 NoChange=\u81ea\u4e0a\u6b21\u7f16\u8bd1\u4ee5\u6765\u6ca1\u6709\u4efb\u4f55\u66f4\u6539\u3002\u8df3\u8fc7...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=fcsh \u547d\u4ee4\u5217\u8868: \nmxmlc arg1 arg2 ...      \u5b8c\u5168\u7f16\u8bd1\u548c\u4f18\u5316\uff1b\u8fd4\u56de\u4e00\u4e2a\u76ee\u6807\u6807\u8bc6\ncompc arg1 arg2 ...      \u5b8c\u5168 SWC \u7f16\u8bd1\ncompile id               \u589e\u91cf\u7f16\u8bd1\nclear [id]               \u6e05\u9664\u76ee\u6807\ninfo [id]                \u663e\u793a\u7f16\u8bd1\u76ee\u6807\u4fe1\u606f\nquit                     \u9000\u51fa

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Fcsh_zh_TW.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Fcsh_zh_TW.properties b/modules/compiler/src/java/flex2/tools/Fcsh_zh_TW.properties
index 8639793..3aaf8bb 100644
--- a/modules/compiler/src/java/flex2/tools/Fcsh_zh_TW.properties
+++ b/modules/compiler/src/java/flex2/tools/Fcsh_zh_TW.properties
@@ -22,5 +22,5 @@ TargetNotFound=fcsh: \u627e\u4e0d\u5230\u76ee\u6a19 ${id}
 AssignTargetID=fcsh: \u5c07 ${counter} \u6307\u5b9a\u70ba\u7de8\u8b6f\u76ee\u6a19 ID
 DetectConfigurationChange=\u5075\u6e2c\u5230\u7d44\u614b\u8b8a\u66f4\u3002\u91cd\u65b0\u7de8\u8b6f...
 NoChange=\u81ea\u4e0a\u6b21\u7de8\u8b6f\u5f8c\u672a\u767c\u751f\u4efb\u4f55\u8b8a\u66f4\u3002\u7565\u904e...
-ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+ShellMessage=Apache Flex Compiler SHell (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 CommandList=fcsh \u6307\u4ee4\u6e05\u55ae:\nmxmlc arg1 arg2 ...      \u5b8c\u6574\u7de8\u8b6f\u8207\u6700\u4f73\u5316\uff1b\u50b3\u56de\u76ee\u6a19 ID\ncompc arg1 arg2 ...      \u5b8c\u6574 SWC \u7de8\u8b6f\ncompile id               \u589e\u91cf\u7de8\u8b6f\nclear [id]               \u6e05\u9664\u76ee\u6a19\ninfo [id]                \u986f\u793a\u7de8\u8b6f\u76ee\u6a19\u8cc7\u8a0a\nquit                     \u7d50\u675f

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_da.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_da.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_da.properties
index e62f75f..c161139 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_da.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_da.properties
@@ -22,5 +22,5 @@ InitialSetup=Startkonfiguration:
 LoadedSWCs=${num} SWC'er er indl\u00e6st:
 CouldNotInstantiate=${config} kunne ikke oprettes
 DumpConfig=Skrivning af konfigurationsdump til ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} er opdateret og skal ikke bygges igen.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_de.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_de.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_de.properties
index f2de342..0eeaa4b 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_de.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_de.properties
@@ -22,5 +22,5 @@ InitialSetup=Grund-Setup:
 LoadedSWCs=${num} SWC geladen:
 CouldNotInstantiate=${config} konnte nicht instanziiert werden
 DumpConfig=Konfigurations-Dump wird in ${filename} geschrieben
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} ist auf dem aktuellen Stand und muss nicht neu erstellt werden.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_en.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_en.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_en.properties
index c1fdf81..c3bc6ab 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_en.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_en.properties
@@ -22,5 +22,5 @@ InitialSetup=Initial setup:
 LoadedSWCs=Loaded ${num} SWCs:
 CouldNotInstantiate=Could not instantiate ${config}
 DumpConfig=Writing configuration dump to ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} is up-to-date and does not have to be rebuilt.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_es.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_es.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_es.properties
index 39771b9..8cf6c1f 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_es.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_es.properties
@@ -22,5 +22,5 @@ InitialSetup=Configuraci\u00f3n inicial:
 LoadedSWCs=${num} SWC cargados:
 CouldNotInstantiate=No se pudo crear una instancia de ${config}
 DumpConfig=Escribiendo el volcado de configuraci\u00f3n en ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} est\u00e1 actualizado y no necesita ser reconstruido.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_fi.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_fi.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_fi.properties
index 47cd5e8..c108fbd 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_fi.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_fi.properties
@@ -22,5 +22,5 @@ InitialSetup=Alustava asennus:
 LoadedSWCs=Ladattu ${num} SWC:t\u00e4:
 CouldNotInstantiate=Esiintym\u00e4n ${config} luominen ep\u00e4onnistui
 DumpConfig=M\u00e4\u00e4rityslokia kirjoitetaan tiedostoon ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} on ajan tasalla, eik\u00e4 sit\u00e4 tarvitse muodostaa uudelleen.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_fr.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_fr.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_fr.properties
index ec917ce..3109ca7 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_fr.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_fr.properties
@@ -22,5 +22,5 @@ InitialSetup=Configuration initiale :
 LoadedSWCs=${num} fichiers SWC charg\u00e9s :
 CouldNotInstantiate=Impossible d'instancier ${config}
 DumpConfig=Ecriture du vidage de configuration dans ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} est \u00e0 jour et n'a pas besoin d'\u00eatre r\u00e9g\u00e9n\u00e9r\u00e9.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_it.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_it.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_it.properties
index e5a088f..4381807 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_it.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_it.properties
@@ -22,5 +22,5 @@ InitialSetup=Configurazione iniziale:
 LoadedSWCs=${num} SWC caricati:
 CouldNotInstantiate=Impossibile creare un\u2019istanza di ${config}
 DumpConfig=Scrittura del dump di configurazione in ${filename}
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u00e8 aggiornato e non \u00e8 necessario rigenerarlo.

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2cdc95a7/modules/compiler/src/java/flex2/tools/Mxmlc_ja.properties
----------------------------------------------------------------------
diff --git a/modules/compiler/src/java/flex2/tools/Mxmlc_ja.properties b/modules/compiler/src/java/flex2/tools/Mxmlc_ja.properties
index b8cbd1b..49acf4b 100644
--- a/modules/compiler/src/java/flex2/tools/Mxmlc_ja.properties
+++ b/modules/compiler/src/java/flex2/tools/Mxmlc_ja.properties
@@ -22,5 +22,5 @@ InitialSetup=\u6700\u521d\u306e\u8a2d\u5b9a :
 LoadedSWCs=${num} \u500b\u306e SWC \u304c\u8aad\u307f\u8fbc\u307e\u308c\u307e\u3057\u305f :
 CouldNotInstantiate=${config} \u3092\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
 DumpConfig=\u8a2d\u5b9a\u30c0\u30f3\u30d7\u3092 "${filename}" \u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059\u3002
-StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2016 The Apache Software Foundation.\n
+StartMessage=Apache Flex Compiler (${program})\n${buildMessage}\nCopyright 2017 The Apache Software Foundation.\n
 NoUpdateMessage=${name} \u306f\u6700\u65b0\u3067\u3059\u3002\u30ea\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002


[09/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Revert FLEX-34880 part 3

Posted by jm...@apache.org.
Revert FLEX-34880 part 3

This reverts commit 2b09e327281211d26d65dd5d061b02d645cbdd39.


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

Branch: refs/heads/master
Commit: 286a0ca9401b8e2a6e2ccca2fcc1764d4933b523
Parents: 3f5638d
Author: Mihai Chira <mi...@apache.org>
Authored: Wed Nov 9 14:09:58 2016 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Wed Nov 9 14:09:58 2016 +0100

----------------------------------------------------------------------
 .../src/mx/collections/GroupingCollection.as           |  2 +-
 .../src/mx/collections/GroupingCollection2.as          |  2 +-
 .../advancedgrids/src/mx/olap/DefaultCubeImpl.as       |  6 +++---
 .../components/supportClasses/MobileGridColumn.as      |  4 ++--
 .../framework/src/mx/collections/ISortField.as         |  8 +++++++-
 .../projects/framework/src/mx/collections/SortField.as |  4 ++--
 frameworks/projects/mx/src/mx/controls/DataGrid.as     | 13 +++++++++----
 .../projects/spark/src/spark/collections/SortField.as  |  9 ++++-----
 .../src/spark/components/gridClasses/GridColumn.as     |  2 +-
 .../newComps/CustComp_sortField_compareFunction.mxml   |  5 +++--
 10 files changed, 33 insertions(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection.as b/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection.as
index e023569..7f1155b 100644
--- a/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection.as
+++ b/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection.as
@@ -1113,7 +1113,7 @@ public class GroupingCollection extends HierarchicalData implements IGroupingCol
             var sortField:SortField = new SortField(groupingField.name, 
                         groupingField.caseInsensitive, 
                         groupingField.descending, groupingField.numeric);
-            sortField.mx_internal::compareFunction_ = groupingField.compareFunction;
+            sortField.compareFunction = groupingField.compareFunction;
             fields.push(sortField);
         }
         

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection2.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection2.as b/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection2.as
index 1b73f86..6ceeac7 100644
--- a/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection2.as
+++ b/frameworks/projects/advancedgrids/src/mx/collections/GroupingCollection2.as
@@ -1154,7 +1154,7 @@ public class GroupingCollection2 extends HierarchicalData implements IGroupingCo
             var sortField:SortField = new SortField(groupingField.name, 
                         groupingField.caseInsensitive, 
                         groupingField.descending, groupingField.numeric);
-            sortField.mx_internal::compareFunction_ = groupingField.compareFunction;
+            sortField.compareFunction = groupingField.compareFunction;
             fields.push(sortField);
         }
         

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/advancedgrids/src/mx/olap/DefaultCubeImpl.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/advancedgrids/src/mx/olap/DefaultCubeImpl.as b/frameworks/projects/advancedgrids/src/mx/olap/DefaultCubeImpl.as
index e6ed9bb..041147d 100644
--- a/frameworks/projects/advancedgrids/src/mx/olap/DefaultCubeImpl.as
+++ b/frameworks/projects/advancedgrids/src/mx/olap/DefaultCubeImpl.as
@@ -382,14 +382,14 @@ public class DefaultCubeImpl implements IOLAPCubeImpl
                 newSort = new Sort;
                 var fields:Array = [];
                 
-                var field:ISortField;
+                var field:ISortField ;
                 for each (level in levels)
                 {
                 	if (level.attribute && level.attribute.userDataFunction)
                     {
                     	attr = level.attribute;
-	                    field = new SortField(attr.dataField);
-	                    SortField(field).mx_internal::compareFunction_ = attr.dataCompareFunction;
+	                    field= new SortField(attr.dataField);
+	                    field.compareFunction = attr.dataCompareFunction;
 		                fields.push(field);
     	            }
                 	else

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as b/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as
index ca8ab27..44b3995 100644
--- a/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as
+++ b/frameworks/projects/experimental_mobile/src/spark/components/supportClasses/MobileGridColumn.as
@@ -21,7 +21,7 @@ package spark.components.supportClasses
 
 import flash.events.EventDispatcher;
 import flash.events.IEventDispatcher;
-import mx.core.mx_internal;
+
 import mx.core.ClassFactory;
 import mx.core.IFactory;
 import mx.core.mx_internal;
@@ -322,7 +322,7 @@ public class MobileGridColumn extends EventDispatcher
             {
                 return ObjectUtil.stringCompare(labelFunction(a), labelFunction(b));
             };
-            sortField.mx_internal::compareFunction = cF;
+            sortField.compareFunction = cF;
         }
         sortField.descending = column.sortDescending;
         return sortField;

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/framework/src/mx/collections/ISortField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/collections/ISortField.as b/frameworks/projects/framework/src/mx/collections/ISortField.as
index 4186d0b..766bd69 100644
--- a/frameworks/projects/framework/src/mx/collections/ISortField.as
+++ b/frameworks/projects/framework/src/mx/collections/ISortField.as
@@ -19,7 +19,7 @@
 
 package mx.collections
 {
-    /**
+/**
  *  The <code>ISortField</code> interface defines the interface for classes that
  *  are used with <code>ISort</code> classes, to provide the sorting information
  *  required to sort the specific fields or property in a collection view.
@@ -79,6 +79,12 @@ public interface ISortField
     function get compareFunction():Function;
 
     /**
+     *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
+     *  argument instead.
+     */
+    function set compareFunction(c:Function):void;
+
+    /**
      *  Specifies whether this field should be sorted in descending
      *  order.
      *

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/framework/src/mx/collections/SortField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/collections/SortField.as b/frameworks/projects/framework/src/mx/collections/SortField.as
index 554d7c3..a465656 100644
--- a/frameworks/projects/framework/src/mx/collections/SortField.as
+++ b/frameworks/projects/framework/src/mx/collections/SortField.as
@@ -146,7 +146,7 @@ public class SortField extends EventDispatcher implements ISortField
 
         if(customCompareFunction != null)
         {
-            mx_internal::compareFunction_ = customCompareFunction;
+            compareFunction = customCompareFunction;
         }
         else if (updateSortCompareType() == false)
         {
@@ -302,7 +302,7 @@ public class SortField extends EventDispatcher implements ISortField
      *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
      *  argument instead.
      */
-    mx_internal function set compareFunction_(c:Function):void
+    public function set compareFunction(c:Function):void
     {
         _compareFunction = c;
         _usingCustomCompareFunction = (c != null);

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/mx/src/mx/controls/DataGrid.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mx/src/mx/controls/DataGrid.as b/frameworks/projects/mx/src/mx/controls/DataGrid.as
index b4a8825..a035e70 100644
--- a/frameworks/projects/mx/src/mx/controls/DataGrid.as
+++ b/frameworks/projects/mx/src/mx/controls/DataGrid.as
@@ -3981,10 +3981,14 @@ public class DataGrid extends DataGridBase implements IIMESupport
                 }
             }
             else
-                s = new Sort();
+                s = new Sort;
 
             if (!f)
-                f = new SortField(c.dataField, false, desc, null, c.sortCompareType, c.sortCompareFunction);
+            {
+                f = new SortField(c.dataField, false, desc, null, null, c.sortCompareFunction);
+                f.sortCompareType = c.sortCompareType;
+            }
+
 
             c.sortDescending = desc;
             var dir:String = (desc) ? "DESC" : "ASC";
@@ -3996,13 +4000,14 @@ public class DataGrid extends DataGridBase implements IIMESupport
             sortColumn = c;
 
             // if you have a labelFunction you must supply a sortCompareFunction
-            SortField(f).mx_internal::compareFunction_ = c.sortCompareFunction;
+            f.name = c.dataField;
+            f.compareFunction = c.sortCompareFunction;
             f.descending = desc;
             s.fields = [f];
         }
-
         collection.sort = s;
         collection.refresh();
+
     }
 
     /**

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/spark/src/spark/collections/SortField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/collections/SortField.as b/frameworks/projects/spark/src/spark/collections/SortField.as
index c58e4a3..760b725 100644
--- a/frameworks/projects/spark/src/spark/collections/SortField.as
+++ b/frameworks/projects/spark/src/spark/collections/SortField.as
@@ -19,7 +19,7 @@
 
 package spark.collections
 {
-    import mx.core.mx_internal;
+
     import flash.events.Event;
     import mx.styles.IAdvancedStyleClient;
     import mx.collections.ISortField;
@@ -27,9 +27,8 @@ package spark.collections
     import mx.core.IFlexModule;
     import mx.core.IMXMLObject;
     import mx.utils.ObjectUtil;
-    import spark.globalization.SortingCollator;
 
-    use namespace mx_internal;
+    import spark.globalization.SortingCollator;
 
     [ResourceBundle("collections")]
 
@@ -267,9 +266,9 @@ public class SortField extends mx.collections.SortField implements IAdvancedStyl
      *  @deprecated A future release of Apache Flex SDK will remove this function. Please use the constructor
      *  argument instead.
      */
-    override mx_internal function set compareFunction_(c:Function):void
+    override public function set compareFunction(c:Function):void
     {
-        super.mx_internal::compareFunction_ = c;
+        super.compareFunction = c;
     }
 
 

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as b/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as
index c82c1cb..f3812e2 100644
--- a/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as
+++ b/frameworks/projects/spark/src/spark/components/gridClasses/GridColumn.as
@@ -1609,7 +1609,7 @@ public class GridColumn extends EventDispatcher
             }
         }
         
-        SortField(sortField).mx_internal::compareFunction_ = compareFunc;
+        sortField.compareFunction = compareFunc;
         sortField.descending = column.sortDescending;
         return sortField;
     }

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/286a0ca9/mustella/tests/spark/collections/Sort/SWFs/newComps/CustComp_sortField_compareFunction.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/spark/collections/Sort/SWFs/newComps/CustComp_sortField_compareFunction.mxml b/mustella/tests/spark/collections/Sort/SWFs/newComps/CustComp_sortField_compareFunction.mxml
index 098923c..b71634b 100644
--- a/mustella/tests/spark/collections/Sort/SWFs/newComps/CustComp_sortField_compareFunction.mxml
+++ b/mustella/tests/spark/collections/Sort/SWFs/newComps/CustComp_sortField_compareFunction.mxml
@@ -107,9 +107,10 @@
 				sfCN.setStyle("locale","zh-CN");
 				sfScriptName.setStyle("locale","zh-CN");
 				
-				sfCFScript= new spark.collections.SortField("name", false, null, null, mySortCompareFunction);
+				sfCFScript= new spark.collections.SortField("name");
 				this.addStyleClient(sfCFScript);
-
+				sfCFScript.compareFunction=mySortCompareFunction;
+				
 				stCFScript=new Sort();
 				this.addStyleClient(stCFScript);
 				


[43/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Fix 3rd party download issues

Posted by jm...@apache.org.
Fix 3rd party download issues


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

Branch: refs/heads/master
Commit: c8c63274d6c39669797c7bcc945ab7d30973d91b
Parents: 7418641
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Feb 11 12:18:18 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Feb 11 12:18:18 2017 +1100

----------------------------------------------------------------------
 README                |  7 +++++++
 modules/downloads.xml | 22 +++++++---------------
 2 files changed, 14 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c8c63274/README
----------------------------------------------------------------------
diff --git a/README b/README
index 5fef11d..0bd9999 100644
--- a/README
+++ b/README
@@ -120,6 +120,9 @@ Optional: Adobe Extension Manager CS5 (* 7)   ADOBE_EXTENSION_MANAGER
 
 Optional: Flex Messaging Common (* 8)         BLAZEDS_HOME
 
+Java Cryptography Extensions
+    (see note (*9))
+
 ---------------------------------------------------------------------
 
 * 1)
@@ -234,6 +237,10 @@ to point to your BLAZEDS root folder. If you are using a released artifact, the
 source should be included in the artifact, so setting BLAZEDS_HOME is not
 required.
 
+* 9)
+The Java Cryptography Extensions (JCE) Unlimited Strength jars are needed in
+order to download 3rd party software. Download and install this from Oracle
+which version you need will depend on your Java version and OS.
 
 Get the source code
 -------------------

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c8c63274/modules/downloads.xml
----------------------------------------------------------------------
diff --git a/modules/downloads.xml b/modules/downloads.xml
index 14d2731..a233100 100644
--- a/modules/downloads.xml
+++ b/modules/downloads.xml
@@ -78,9 +78,8 @@
     <property name="commons-discovery.name" value="commons-discovery-0.2"/>	
     <property name="commons-logging.name" value="commons-logging-1.0.4"/>
 	
-    <property name="saxon9.bin.zip" value="saxonb9-1-0-8j.zip"/>
-    <property name="saxon9.jar.dir" value="saxonb9-1-0-8j"/>
-    <property name="saxon9.download.url" value="http://downloads.sourceforge.net/project/saxon/Saxon-B/9.1.0.8/saxonb9-1-0-8j.zip?r=&amp;ts=1482018310&amp;use_mirror=internode"/>
+    <property name="saxon9.jar" value="saxonb9-1-0-8.jar"/>
+    <property name="saxon9.download.url" value="http://repo1.maven.org/maven2/net/sourceforge/saxon/saxon/9.1.0.8/saxon-9.1.0.8.jar"/>
     
     <property name="xerces.dir" value="xerces-2_9_1"/>
      
@@ -450,28 +449,21 @@
         description="Copies sax9.jar to the lib directory.">
 
         <get src="${saxon9.download.url}" 
-            dest="${download.dir}/${saxon9.bin.zip}" 
+            dest="${download.dir}/${saxon9.jar}" 
             verbose="false" ignoreerrors="true"/>
 
         <antcall target="get-from-cache-if-needed" >
-            <param name="filename" value="${saxon9.bin.zip}" />
+            <param name="filename" value="${saxon9.jar}" />
             <param name="destDir" value="${download.dir}" />
         </antcall>
         <antcall target="fail-if-not-found" >
-            <param name="filename" value="${saxon9.bin.zip}" />
+            <param name="filename" value="${saxon9.jar}" />
             <param name="destDir" value="${download.dir}" />
         </antcall>
 
-    	<unzip src="${download.dir}/${saxon9.bin.zip}"
-    		dest="${download.dir}/${saxon9.jar.dir}"/>
+        <copy file="${download.dir}/${saxon9.jar}" toDir="${lib.ext.dir}" verbose="true"/>
         
-        <copy file="${download.dir}/${saxon9.jar.dir}/saxon9.jar" toDir="${lib.ext.dir}" verbose="true"/>
-        
-        <copy todir="${lib.ext.dir}/saxon9-NOTICES">
-            <fileset dir="${download.dir}/${saxon9.jar.dir}/notices" includes="**"/>
-        </copy>
-        
-        <delete dir="${download.dir}/${saxon9.jar.dir}"/>
+        <delete dir="${download.dir}/${saxon9.jar}"/>
     </target>
     	
     <!--


[38/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - don't run jar checks on Windows

Posted by jm...@apache.org.
don't run jar checks on Windows


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

Branch: refs/heads/master
Commit: 442b844e1e7ef98536e1b119af61cb1920d5669a
Parents: d7fdb19
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jan 9 10:59:31 2017 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jan 9 11:00:21 2017 -0800

----------------------------------------------------------------------
 ApproveSDK.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/442b844e/ApproveSDK.xml
----------------------------------------------------------------------
diff --git a/ApproveSDK.xml b/ApproveSDK.xml
index 2d6375b..08134b7 100644
--- a/ApproveSDK.xml
+++ b/ApproveSDK.xml
@@ -902,7 +902,7 @@
         </rat:report>
     </target>
     
-    <target name="external-jar-folder-dump" >
+    <target name="external-jar-folder-dump" if="isMac">
         <echo>list of folders in external jars.  This may impact LICENSE and NOTICE</echo>
         <antcall target="show-jar-folders" >
             <param name="thisFile" value="lib/external/commons-collections.jar" />


[08/50] [abbrv] git commit: [flex-sdk] [refs/heads/master] - Revert FLEX-34880 part 2

Posted by jm...@apache.org.
Revert FLEX-34880 part 2

This reverts commit ff4067f56651082cecbe062f9cfd2aedbe44bf60.


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

Branch: refs/heads/master
Commit: 3f5638d30632f4a8638d11eb6859b9e0c288b3c1
Parents: 332e075
Author: Mihai Chira <mi...@apache.org>
Authored: Wed Nov 9 14:08:30 2016 +0100
Committer: Mihai Chira <mi...@apache.org>
Committed: Wed Nov 9 14:08:30 2016 +0100

----------------------------------------------------------------------
 .../framework/tests/ListCollectionView_FLEX_34837_Tests.as       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3f5638d3/frameworks/projects/framework/tests/ListCollectionView_FLEX_34837_Tests.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/tests/ListCollectionView_FLEX_34837_Tests.as b/frameworks/projects/framework/tests/ListCollectionView_FLEX_34837_Tests.as
index f199481..f762358 100644
--- a/frameworks/projects/framework/tests/ListCollectionView_FLEX_34837_Tests.as
+++ b/frameworks/projects/framework/tests/ListCollectionView_FLEX_34837_Tests.as
@@ -25,7 +25,7 @@ package {
     import mx.collections.Sort;
     import mx.collections.SortField;
     import mx.utils.ObjectUtil;
-    import mx.core.mx_internal;
+
     import org.flexunit.asserts.assertEquals;
 
     public class ListCollectionView_FLEX_34837_Tests {
@@ -87,7 +87,7 @@ package {
 
             const sortByStreetAscending:Sort = new Sort();
             var sortField:SortField = new ComplexSortField("address.street", false, false, false);
-            sortField.mx_internal::compareFunction_ = compareByStreet;
+            sortField.compareFunction = compareByStreet;
             sortByStreetAscending.fields = [sortField];
             _sut.sort = sortByStreetAscending;