You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/06/28 07:30:59 UTC

[01/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - add approval script

Repository: flex-sdk
Updated Branches:
  refs/heads/release4.13.0 2c5a0f34d -> b98a03299


add approval script


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

Branch: refs/heads/release4.13.0
Commit: 042ed5c68a2c5fd0f0e9cda5da3594a2faff2111
Parents: 2c5a0f3
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 16:57:53 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 16:57:53 2014 -0700

----------------------------------------------------------------------
 ApproveSDK.xml | 417 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 417 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/042ed5c6/ApproveSDK.xml
----------------------------------------------------------------------
diff --git a/ApproveSDK.xml b/ApproveSDK.xml
new file mode 100644
index 0000000..9217dac
--- /dev/null
+++ b/ApproveSDK.xml
@@ -0,0 +1,417 @@
+<?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="ApproveApacheSDK" default="main" basedir=".">
+
+
+    <!-- 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>
+
+    <condition property="isMac" value="mac">
+        <os family="mac" />
+    </condition>
+    <condition property="isWindows" value="windows">
+        <os family="windows" />
+    </condition>
+    <condition property="isLinux" value="linux">
+		<and>
+			<os family="unix" />
+			<not>
+				<isset property="isMac" />
+			</not>
+		</and>
+    </condition>
+    <condition property="package.suffix" value="zip">
+        <os family="windows" />
+    </condition>
+	<property name="package.suffix" value="tar.gz" />
+	
+	<property name="rat.report" value="${basedir}/rat-report.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 file="${basedir}/approvefalcon.properties"/>
+    
+	<property name="mac.text.display" value="cat" />
+	<property name="win.text.display" value="type" />
+	<property name="linux.text.display" value="cat" />
+    <property environment="env"/>
+
+    <property name="build.target" value="main" />
+	
+	<available file="${env.APPDATA}/npm/jshint.cmd" 
+		type="file" 
+		property="jshint" value="${env.APPDATA}/npm/jshint.cmd" />
+	<property name="jshint" value="jshint" />
+    
+	<available file="${env.ProgramFiles}/Mozilla Firefox/firefox.exe" 
+		type="file" 
+		property="browser" value="${env.ProgramFiles}/Mozilla Firefox/firefox.exe" />
+	<available file="${env.ProgramFiles(x86)}/Mozilla Firefox/firefox.exe" 
+		type="file" 
+		property="browser" value="${env.ProgramFiles}/Mozilla Firefox/firefox.exe" />
+
+	<condition property="do.copy.downloads" >
+		<isset property="download.cache.dir" /> 
+	</condition>
+	
+    <fail message="The ANT_HOME environment variable is not set."
+        unless="env.ANT_HOME"/>
+		
+	<available file="${env.AIR_HOME}"
+		type="dir" 
+		property="AIR_HOME" value="${env.AIR_HOME}" />
+
+    <fail message="The AIR_HOME property is not set in environment or command-line."
+        unless="AIR_HOME"/>
+		
+    <available file="${env.PLAYERGLOBAL_HOME}"
+        type="dir"
+        property="PLAYERGLOBAL_HOME" value="${env.PLAYERGLOBAL_HOME}" />
+    
+    <fail message="The PLAYERGLOBAL_HOME property is not set in environment or command-line."
+        unless="PLAYERGLOBAL_HOME"/>
+    
+    <available file="${env.FLASHPLAYER_DEBUGGER}"
+        type="dir"
+        property="FLASHPLAYER_DEBUGGER" value="${env.FLASHPLAYER_DEBUGGER}" />
+    
+    <available file="${env.FLASHPLAYER_DEBUGGER}"
+        type="file"
+        property="FLASHPLAYER_DEBUGGER" value="${env.FLASHPLAYER_DEBUGGER}" />
+    
+    <fail message="The FLASHPLAYER_DEBUGGER property is not set in environment or command-line."
+        unless="FLASHPLAYER_DEBUGGER"/>
+        
+    <available file="${env.ANT_HOME}/lib/${apache.rat.jar}"
+        type="file"
+        property="apache.rat.found"/>
+    <available file="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}"
+        type="file"
+        property="apache.rat.tasks.found"/>
+		
+    <fail message="The release version is not set.  Specify -Drelease.version=&lt;release version (e.g. 3.1, 3.2, etc)&gt;"
+    unless="release.version"/>
+
+    <fail message="The release candidate number is not set.  Specify -Drc=&lt;rc number (e.g. 1, 2, 3, etc)&gt;"
+    unless="rc"/>
+        
+	<property name="package.url.path" value="https://dist.apache.org/repos/dist/dev/flex/sdk/${release.version}/rc${rc}" />
+	<property name="package.url.name" value="apache-flex-sdk-${release.version}-src" />
+	
+    <condition property="zip.package">
+        <equals arg1="zip" arg2="${package.suffix}" />
+    </condition>
+    
+	<target name="display-text-mac" if="isMac">
+		<echo>========================= Begin ${file} ==============================</echo>
+		<exec executable="${mac.text.display}" >
+			<arg value="${file}" /> 
+		</exec>
+		<echo>========================= End ${file} ==============================</echo>
+	</target>
+	<target name="display-text-win" if="isWindows">
+		<pathconvert targetos="windows" property="winfile">
+			<path path="${file}" />
+		</pathconvert>
+		<echo>========================= Begin ${winfile} ==============================</echo>
+		<exec executable="cmd.exe" >
+			<arg value="/c" />
+			<arg value="${win.text.display}" />
+			<arg value="${winfile}" /> 
+		</exec>		
+		<echo>========================= End ${winfile} ==============================</echo>
+	</target>
+	<target name="display-text-linux" if="isLinux">
+		<echo>========================= Begin ${file} ==============================</echo>
+		<exec executable="${linux.text.display}" >
+			<arg value="${file}" /> 
+		</exec>
+		<echo>========================= End ${file} ==============================</echo>
+	</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="rat-taskdef" description="Rat taskdef">
+        <typedef resource="org/apache/rat/anttasks/antlib.xml"
+        uri="antlib:org.apache.rat.anttasks"
+        classpathref="anttask.classpath"/>
+    </target>
+
+    <target name="main" depends="install-rat,download,check-sigs,uncompress,rat-check,check-notices,build,approve" description="Perform required release approval steps">
+    </target>
+    
+    <target name="main-no-download" depends="install-rat,check-sigs,uncompress,rat-check,check-notices,build,approve" description="Perform required release approval steps">
+    </target>
+	
+    <target name="test" >
+		<echo>${rat.report}.bin.txt</echo>
+		<replaceregexp file="${rat.report}.bin.txt" match="..AL.*" replace="" byline="true"/>
+    </target>
+	
+	<target name="display-text" >
+		<antcall target="display-text-mac" />
+		<antcall target="display-text-win" />
+		<antcall target="display-text-linux" />
+	</target>
+
+	<target name="display-text-test" >
+		<antcall target="display-text" >
+			<param name="file" value="${basedir}/rat-report.txt" />
+		</antcall>
+	</target>
+	
+    <target name="download" description="download the release package">
+        <get src="${package.url.path}/${package.url.name}.${package.suffix}"
+            dest="${basedir}/${package.url.name}.${package.suffix}" />
+        <get src="${package.url.path}/${package.url.name}.${package.suffix}.md5"
+            dest="${basedir}/${package.url.name}.${package.suffix}.md5" />
+        <get src="${package.url.path}/${package.url.name}.${package.suffix}.asc"
+            dest="${basedir}/${package.url.name}.${package.suffix}.asc" />
+    </target>
+    
+    <target name="check-sigs" description="check md5 and gpg sigs">
+		<replace file="${basedir}/${package.url.name}.${package.suffix}.md5"
+			token=" " />
+		<checksum file="${basedir}/${package.url.name}.${package.suffix}" algorithm="md5" verifyproperty="md5.ok" />
+        <condition property="MD5Invalid">
+			<not>
+				<equals arg1="${md5.ok}" arg2="true" />
+			</not>
+        </condition>
+        <fail message="MD5 checksum did not match" if="MD5Invalid" />
+		<exec executable="gpg" failonerror="true">
+			<arg value="--verify" />
+			<arg value="${basedir}/${package.url.name}.${package.suffix}.asc" />
+			<arg value="${basedir}/${package.url.name}.${package.suffix}" />
+		</exec>
+    </target>
+
+    <target name="uncompress" depends="pre-clean, untar-file, unzip-file" />
+
+    <target name="pre-clean" description="remove old uncompressed package" >
+		<delete dir="${basedir}/${package.url.name}" failonerror="false" />
+	</target>
+	
+    <target name="untar-file" unless="zip.package" description="Untars zipFile">
+        <untar src="${basedir}/${package.url.name}.${package.suffix}"
+                dest="${basedir}" compression="gzip"/>
+    </target>
+
+    <target name="unzip-file" if="zip.package" description="Unzips zipFile">
+        <unzip src="${basedir}/${package.url.name}.${package.suffix}"
+                dest="${basedir}/${package.url.name}"/>
+    </target>
+
+    <target name="rat-check" >
+
+        <echo message="Checking files at ${basedir}/${package.url.name}, report is ${rat.report}"/>
+
+        <rat:report xmlns:rat="antlib:org.apache.rat.anttasks"
+            reportFile="${rat.report}">
+            <fileset dir="${basedir}/${package.url.name}">
+                <!--          Start of binary files           -->
+                <!-- exclude Flash Professional file used for integration with Flash Professional -->
+                <exclude name="frameworks/projects/flash-integration/FLA/ContentHolder.fla"/>
+                <!-- exclude font embedded in asdoc example -->
+                <exclude name="frameworks/projects/framework/asdoc/en_US/mx/effects/examples/assets/OpenSans-Regular.ttf"/>
+                <!-- exclude media (png, gif, jpg, mp3, flv) -->
+                <exclude name="**/*.png"/>
+                <exclude name="**/*.gif"/>
+                <exclude name="**/*.jpg"/>
+                <exclude name="**/*.mp3"/>
+                <exclude name="**/*.flv"/>
+                <!-- exclude batik icon -->
+                <exclude name="modules/thirdparty/batik/sources/*.icns"/>
+                <!--          End of binary files           -->
+                <!-- exclude batik manifests -->
+                <exclude name="modules/thirdparty/batik/sources/*.mf"/>
+                <!-- exclude text files -->
+                <exclude name="CONTRIBUTING"/>
+                <exclude name="modules/thirdparty/batik/lib/**/LICENSE*.txt"/>
+                <exclude name="modules/thirdparty/batik/lib/**/README*.txt"/>
+                <!-- exclude w3c sources -->
+                <exclude name="modules/thirdparty/batik/resources/org/apache/flex/forks/batik/dom/svg/resources/*.mod"/>
+                <exclude name="modules/thirdparty/batik/resources/org/apache/flex/forks/batik/dom/svg/resources/*.dtd"/>
+                <exclude name="modules/thirdparty/batik/sources/org/w3c/css/sac/LexicalUnit.java"/>
+                <exclude name="modules/thirdparty/batik/sources/org/w3c/flex/forks/css/sac/*.java"/>
+                <exclude name="modules/thirdparty/batik/sources/org/w3c/flex/forks/css/sac/helpers/ParserFactory.java"/>
+                <!-- exclude config files -->
+                <exclude name="modules/thirdparty/batik/svn-revision"/>
+                <exclude name="modules/thirdparty/xerces-patch/src/java/META-INF/services/javax.xml.parsers.SAXParserFactory"/>
+                <exclude name="modules/thirdparty/xerces-patch/src/java/META-INF/services/org.apache.xerces.xni.parser.XMLParserConfiguration"/>
+                <exclude name="modules/thirdparty/xerces-patch/src/java/org/apache/xerces/jaxp/javax.xml.parsers.SAXParserFactory"/>
+            </fileset>
+        </rat:report>
+		<antcall target="display-text" >
+            <param name="file" value="${rat.report}" />
+        </antcall>
+        <input
+			message="Check that there are no unknown or unapproved licenses or archives. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="rat.license.ok"/>
+		<echo>filtering out AL files to make it easier to see binary files</echo>
+		<copy file="${rat.report}" tofile="${rat.report}.bin.txt" />
+		<replaceregexp file="${rat.report}.bin.txt" match="..AL.*" replace="" byline="true"/>
+		<antcall target="display-text" >
+            <param name="file" value="${rat.report}.bin.txt" />
+        </antcall>
+        <input
+			message="Check that there are no unexpected binaries.  Is it ok?"
+            validargs="y,n"
+        defaultvalue="n"
+        addproperty="rat.binaries.ok"/>
+    </target>
+
+    <target name="check-notices" description="open each notice file for review, grep for a few things" >
+        <fail message="README not in package">
+			<condition>
+	            <not>
+    	            <available file="${basedir}/${package.url.name}/README" />
+        	    </not>
+			</condition>
+        </fail>
+        <fail message="RELEASE_NOTES not in package">
+			<condition>
+				<not>
+					<available file="${basedir}/${package.url.name}/RELEASE_NOTES" />
+				</not>
+			</condition>
+        </fail>
+        <fail message="NOTICE not in package">
+			<condition>
+				<not>
+					<available file="${basedir}/${package.url.name}/NOTICE" />
+				</not>
+			</condition>
+        </fail>
+        <fail message="LICENSE not in package">
+			<condition>
+				<not>
+					<available file="${basedir}/${package.url.name}/LICENSE" />
+				</not>
+			</condition>
+        </fail>
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${package.url.name}/README" />
+        </antcall>
+		<input
+			message="Check the README for version numbers, spelling, grammar, accuracy.  Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="readme.ok"/>
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${package.url.name}/RELEASE_NOTES" />
+        </antcall>
+		<input
+			message="Check the RELEASE_NOTES for copyright years, spelling, grammar, accuracy. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="releasenotes.ok"/>
+		
+        
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${package.url.name}/NOTICE" />
+        </antcall>
+		<input
+			message="Check the NOTICE for required notices from third-parties. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="notice.ok"/>
+
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${package.url.name}/LICENSE" />
+        </antcall>
+		<input
+			message="Check the LICENSE for the Apache License and third-party licenses. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="license.ok"/>
+    </target>
+
+    <target name="build" depends="copy.downloads">
+		<input
+			message="The final step is to run the build and any tests the build script runs.  This can take several minutes.  Press y to start the build."
+            validargs="y"
+        defaultvalue="y" />
+        <chmod file="${basedir}/${package.url.name}/bin/compc" perm="ugo+rx"/>
+        <chmod file="${basedir}/${package.url.name}/bin/mxmlc" perm="ugo+rx"/>
+        <property name="no.prompt" value="true" />
+        <ant dir="${basedir}/${package.url.name}" target="main" />
+        <ant dir="${basedir}/${package.url.name}" target="checkintests" />
+    </target>
+
+    <target name="copy.downloads" if="${do.copy.downloads}" description="instead of actually downloading all of the dependencies, you can save lots of time by just copying from some other folder in some other SDK.">
+		<echo>Copying downloads</echo>
+        <copy todir="${basedir}/${package.url.name}/in" >
+			<fileset dir="${download.cache.dir}" />
+		</copy>
+    </target>
+    	
+	<target name="approve" >
+		<condition property="vote" value="+1">
+			<and>
+				<equals arg1="${rat.license.ok}" arg2="y" />
+				<equals arg1="${rat.binaries.ok}" arg2="y" />
+				<equals arg1="${readme.ok}" arg2="y" />
+				<equals arg1="${releasenotes.ok}" arg2="y" />
+				<equals arg1="${notice.ok}" arg2="y" />
+				<equals arg1="${license.ok}" arg2="y" />
+			</and>
+		</condition>
+		<property name="vote" value="-1" />
+		<echo>
+${vote}
+Package ${package.url.path}/${package.url.name}.${package.suffix}
+Java ${ant.java.version}
+OS: ${os.name} ${os.arch} ${os.version}
+Source kit signatures match: y
+Source kit builds: y
+README is ok: ${readme.ok}
+RELEASE_NOTES is ok: ${releasenotes.ok}
+NOTICE is ok: ${notice.ok}
+LICENSE is ok: ${license.ok}
+No unapproved licenses or archives: ${rat.license.ok}
+No unapproved binaries: ${rat.binaries.ok}
+		</echo>
+		<fail>
+			<condition>
+	            <equals arg1="-1" arg2="${vote}"/>
+			</condition>
+		</fail>
+	</target>
+</project>


[09/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - add installer-config to source package

Posted by ah...@apache.org.
add installer-config to source package


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

Branch: refs/heads/release4.13.0
Commit: 7f5c07f14c112a610e83d0818921432140af669a
Parents: a84d3d5
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 17:49:27 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 17:49:27 2014 -0700

----------------------------------------------------------------------
 build.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/7f5c07f1/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 29e7583..df72b95 100644
--- a/build.xml
+++ b/build.xml
@@ -558,6 +558,7 @@
         
         <copy todir="${basedir}/temp" includeEmptyDirs="false">
             <fileset dir="${basedir}">
+                <include name="apache-flex-sdk-installer-config.xml"/>
                 <include name="build.xml"/>
                 <include name="build.properties"/>
 				<include name="env-template.properties"/>


[05/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - typo

Posted by ah...@apache.org.
typo


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

Branch: refs/heads/release4.13.0
Commit: 0a0822f6906be993fbad982e181f61d0cd7053b8
Parents: 509bee1
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 17:47:51 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 17:47:51 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0a0822f6/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
index 96c892e..ca0b3ca 100644
--- a/NOTICE
+++ b/NOTICE
@@ -11,7 +11,7 @@ is Adobe Systems Incorporated (http://www.adobe.com/).
 The asc compiler contains code written by Jeff Dyer at: 
     Copyright Mountain View Compiler Company (1998-2003).
 
-The easing equations in the mx tween class are based on code written by Rober Penner.
+The easing equations in the mx tween class are based on code written by Robert Penner.
     Copyright 2001 Robert Penner
     All rights reserved.
 


[02/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - remove a few files from asdoc

Posted by ah...@apache.org.
remove a few files from asdoc


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

Branch: refs/heads/release4.13.0
Commit: 31cd0208a59aa57c73d96968a5bc658b36f0d6ed
Parents: 042ed5c
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 17:45:31 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 17:45:31 2014 -0700

----------------------------------------------------------------------
 .../en_US/mx/controls/examples/assets/phone.flv   | Bin 351376 -> 0 bytes
 .../mx/effects/examples/SoundEffectExample.mxml   |   2 +-
 .../en_US/mx/effects/examples/assets/jazz.mp3     | Bin 7380 -> 0 bytes
 3 files changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/31cd0208/frameworks/projects/framework/asdoc/en_US/mx/controls/examples/assets/phone.flv
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/asdoc/en_US/mx/controls/examples/assets/phone.flv b/frameworks/projects/framework/asdoc/en_US/mx/controls/examples/assets/phone.flv
deleted file mode 100644
index f9782f4..0000000
Binary files a/frameworks/projects/framework/asdoc/en_US/mx/controls/examples/assets/phone.flv and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/31cd0208/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/SoundEffectExample.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/SoundEffectExample.mxml b/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/SoundEffectExample.mxml
index 3a54a0f..042a3ee 100644
--- a/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/SoundEffectExample.mxml
+++ b/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/SoundEffectExample.mxml
@@ -23,7 +23,7 @@
         xmlns:mx="library://ns.adobe.com/flex/mx">
 
     <fx:Declarations>
-        <mx:SoundEffect id="mySounds" source="@Embed(source='assets/jazz.mp3')"/>
+        <mx:SoundEffect id="mySounds" source="assets/jazz.mp3"/>
     </fx:Declarations>
 
     <s:Panel title="Sound Effect Example" width="75%" height="75%" >

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/31cd0208/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/assets/jazz.mp3
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/assets/jazz.mp3 b/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/assets/jazz.mp3
deleted file mode 100644
index 4e33af1..0000000
Binary files a/frameworks/projects/framework/asdoc/en_US/mx/effects/examples/assets/jazz.mp3 and /dev/null differ


[10/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - add broken asdoc examples

Posted by ah...@apache.org.
add broken asdoc examples


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

Branch: refs/heads/release4.13.0
Commit: b98a03299db39f0b498c94677cecf1655645fee4
Parents: 7f5c07f
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 20:52:48 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 20:52:48 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b98a0329/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index a0b9107..c79379f 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -193,6 +193,12 @@ Adobe has provided a patch for Flash Builder 4.7 that resolves this issue:
 http://helpx.adobe.com/flash-builder/kb/flex-new-project-issue--.html
 
 
+ASDoc Examples
+
+The mx.controls.VideoDisplay and mx.effects.SoundEffect examples are not operational
+pending new media.
+
+
 Differences from Apache Flex 4.11 include:
 
 AIR and Flash Player support


[04/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - add open-sans as subcomponent

Posted by ah...@apache.org.
add open-sans as subcomponent


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

Branch: refs/heads/release4.13.0
Commit: 509bee1e2e2b7305304a4eb0dc14bd271911c15b
Parents: df9a23c
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 17:47:34 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 17:47:34 2014 -0700

----------------------------------------------------------------------
 LICENSE | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/509bee1e/LICENSE
----------------------------------------------------------------------
diff --git a/LICENSE b/LICENSE
index fd4c4a6..e2cbbe1 100644
--- a/LICENSE
+++ b/LICENSE
@@ -715,3 +715,14 @@ EXHIBIT A -Mozilla Public License.
 
 ------------------------------------------------------------------------------------------
 
+APACHE FLEX SUBCOMPONENTS:
+
+The Apache Flex SDK includes a number of subcomponents with
+separate copyright notices and license terms. Your use of the source
+code for the these subcomponents is subject to the terms and
+conditions of the following licenses. 
+
+The Open-Sans font is available under Apache License 2.0.  For details
+see frameworks/projects/framework/asdoc/en_US/mx/effects/examples/assets/OpenSans-Regular.ttf
+
+


[03/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - remove old flex logo

Posted by ah...@apache.org.
remove old flex logo


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

Branch: refs/heads/release4.13.0
Commit: df9a23ced146f92407641f5f7e4df1240eda0fed
Parents: 31cd020
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 17:46:30 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 17:46:30 2014 -0700

----------------------------------------------------------------------
 .../P_AlternativeMetadataIndicator_30x28_N.png     | Bin 868 -> 415 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/df9a23ce/asdoc/templates/images/P_AlternativeMetadataIndicator_30x28_N.png
----------------------------------------------------------------------
diff --git a/asdoc/templates/images/P_AlternativeMetadataIndicator_30x28_N.png b/asdoc/templates/images/P_AlternativeMetadataIndicator_30x28_N.png
index c59e194..8fcbf1f 100644
Binary files a/asdoc/templates/images/P_AlternativeMetadataIndicator_30x28_N.png and b/asdoc/templates/images/P_AlternativeMetadataIndicator_30x28_N.png differ


[07/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - fix release notes based on feedback from rc1

Posted by ah...@apache.org.
fix release notes based on feedback from rc1


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

Branch: refs/heads/release4.13.0
Commit: deb1a93d8ffe12bec630aae502bd539b3344e944
Parents: cf1805d
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 17:48:26 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 17:48:26 2014 -0700

----------------------------------------------------------------------
 RELEASE_NOTES | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/deb1a93d/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 0c6f8c6..a0b9107 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -50,7 +50,7 @@ Bug Fixes
 
 JIRA Issue Number and Summary                                                                                        
 -------------------------------------------------------------------------------------------------------------------
-FLEX-34386  percentWidth for GridColumn
+FLEX-34368  percentWidth for GridColumn
 FLEX-34377  Add Chinese translations for all the installers of Flex
 FLEX-34376  TreeItemRenderer can in some situations throw an RTE
 FLEX-34375  FormItem label doesn't show when formItem visible and includeInLayout are set FLEX-34353  Focus not going into Flex application when user press the Shfit + Tab button
@@ -67,7 +67,6 @@ FLEX-34304  Wrong version of AIR / FP installed
 FLEX-34303  Installer licenses refer to wrong product
 FLEX-34302  Installer not cleaning up after itself
 FLEX-34301  Installer missing javascript directory
-dynamically
 FLEX-34300  Installer not installing airsdk.xml
 FLEX-34297  FDB set a breakpoint in the wrong file when asked to be set for a file existing in another Worker
 FLEX-34296  Disable and Remove Breakpoint should now respect the Worker logic


[06/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - fix readme based on feedback from rc1

Posted by ah...@apache.org.
fix readme based on feedback from rc1


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

Branch: refs/heads/release4.13.0
Commit: cf1805d51796b8bdd268627740a7bbaddb5affaa
Parents: 0a0822f
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 17:48:10 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 17:48:10 2014 -0700

----------------------------------------------------------------------
 README | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/cf1805d5/README
----------------------------------------------------------------------
diff --git a/README b/README
index 5ba651a..8d0ffda 100644
--- a/README
+++ b/README
@@ -54,7 +54,7 @@ Getting the convenience packages for Apache Flex
     Starting with Apache Flex 4.12 the binary distribution can be installed
     using only ANT in addition to the AIR installer mentioned above. This is
     the recommended method for Linux users.  More information about installing
-    the binary installtion with ANT can be found on our wiki at :
+    the binary package with ANT can be found on our wiki at :
 
       https://cwiki.apache.org/confluence/display/FLEX/Installation+help#Installationhelp-Antinstaller
 
@@ -172,10 +172,10 @@ Install Prerequisites
          be set correctly and you will get compile errors.
 
     *3) The Adobe AIR integration kit for Windows can be downloaded from:
-           http://airdownload.adobe.com/air/win/download/13.0/AdobeAIRSDK.zip
+           http://airdownload.adobe.com/air/win/download/14.0/AdobeAIRSDK.zip
 
          The Adobe AIR integration kit for Mac can be downloaded from:
-            http://airdownload.adobe.com/air/mac/download/13.0/AdobeAIRSDK.tbz2
+            http://airdownload.adobe.com/air/mac/download/14.0/AdobeAIRSDK.tbz2
 
           The Adobe AIR integration kit for Linux can be downloaded from:
             http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRSDK.tbz2
@@ -192,9 +192,10 @@ Install Prerequisites
 
         This version of Apache Flex was certified for use with Adobe Flash
         Player 11.1, and is compatible with versions 10.2 through 14.0. It has
-        been tested with versions 11.1, 11.7, 11.8, 11.9 and 12.0 on Windows
-        and Mac. It has been compiled against other Adobe Flash Player versions
-        but has not been fully tested. It has not been fully tested on Linux.
+        been tested with versions 11.1, 11.7, 11.8, 11.9, 12.0, 13.0 and 14.0
+        on Windows and Mac. It has been compiled against other Adobe Flash 
+        Player versions but has not been fully tested. It has not been fully 
+        tested on Linux.
 
         On Windows, set FLASHPLAYER_DEBUGGER to the absolute path including the
         filename of the FlashPlayerDebugger.exe. Note the filename of flash
@@ -399,7 +400,7 @@ Adobe Flash Player Version Support
     Apache Flex has been tested with Adobe Flash Player 11.1, 11.5, 11.7, 11.8,
     11.9, 12.0, 13.0 and 14.0 on Windows and Mac.
 
-    Apache Flex has not been tested on Linux so some issue may exist in this
+    Apache Flex has not been tested on Linux so some issues may exist in this
     release.
 
     It compiles against other Adobe Flash Player versions and is expected to


[08/10] git commit: [flex-sdk] [refs/heads/release4.13.0] - switch air to 14

Posted by ah...@apache.org.
switch air to 14


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

Branch: refs/heads/release4.13.0
Commit: a84d3d5ccd84a89fe2bdf064f34ab1af2218d83f
Parents: deb1a93
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 27 17:49:08 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 27 17:49:08 2014 -0700

----------------------------------------------------------------------
 build.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a84d3d5c/build.properties
----------------------------------------------------------------------
diff --git a/build.properties b/build.properties
index 59977fb..4303f2a 100644
--- a/build.properties
+++ b/build.properties
@@ -28,7 +28,7 @@ build.number = 0
 playerglobal.version = 11.1
 
 # AIR version number
-air.version = 3.9
+air.version = 14.0
 
 # Default locale for the SDK
 locale = en_US