Author: aharui
Date: Fri Jun  9 03:07:13 2017
New Revision: 19954

Log:
rc1 of Apache Flex Falcon 0.8.0

Added:
    dev/flex/falcon/0.8.0/
    dev/flex/falcon/0.8.0/rc1/
    dev/flex/falcon/0.8.0/rc1/ApproveFalcon.xml
    dev/flex/falcon/0.8.0/rc1/READme
    dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz   (with 
props)
    dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz.asc
    dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz.md5
    dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip   (with props)
    dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip.asc
    dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip.md5
    dev/flex/falcon/0.8.0/rc1/binaries/
    dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz   
(with props)
    dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.asc
    dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.md5
    dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip   
(with props)
    dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip.asc
    dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip.md5
    dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-installer-config.xml

Added: dev/flex/falcon/0.8.0/rc1/ApproveFalcon.xml
==============================================================================
--- dev/flex/falcon/0.8.0/rc1/ApproveFalcon.xml (added)
+++ dev/flex/falcon/0.8.0/rc1/ApproveFalcon.xml Fri Jun  9 03:07:13 2017
@@ -0,0 +1,775 @@
+<?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="ApproveApacheFlexFalcon" 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="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.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}/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" />
+    
+       <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"/>
+
+    <condition property="package.url.path"
+        
value="http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon%20release%20branch/lastSuccessfulBuild/artifact/out";>
+        <not>
+            <isset property="rc" />
+        </not>
+    </condition>
+    <condition property="bin.package.url.path"
+        value="${package.url.path}">
+        <not>
+            <isset property="rc" />
+        </not>
+    </condition>
+
+       <property name="package.url.path" 
value="https://dist.apache.org/repos/dist/dev/flex/falcon/${release.version}/rc${rc}";
 />
+       <property name="src.package.url.path" value="${package.url.path}" />
+    <property name="bin.package.url.path" value="${package.url.path}/binaries" 
/>
+    <property name="src.package.url.name" 
value="apache-flex-falconjx-${release.version}-src" />
+    <property name="bin.package.url.name" 
value="apache-flex-falconjx-${release.version}-bin" />
+       
+    <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.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"
+        uri="antlib:org.apache.rat.anttasks"
+        classpathref="anttask.classpath"/>
+    </target>
+
+    <target name="main" 
depends="write-out-jars-list,install-rat,download,check-sigs,uncompress,rat-check,examine-jars,check-notices,build,approve"
 description="Perform required release approval steps">
+    </target>
+    
+    <target name="main-no-download" 
depends="write-out-jars-list,install-rat,check-sigs,uncompress,rat-check,examine-jars,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="write-out-jars-list" >
+        <delete file="jars.txt" />
+        <!-- this is a comma-delimited, no spaces, no-line-breaks list used to 
decide which jars
+         to skip in the rat-check of the binaries and which jars to examine 
before approval -->
+        <property name="jars-list" 
value="compiler/lib/compc.jar,compiler/lib/compiler.jar,compiler/lib/falcon-asc.jar,compiler/lib/falcon-compc.jar,compiler/lib/falcon-mxmlc.jar,compiler/lib/falcon-optimizer.jar,compiler/lib/falcon-swfdump.jar,compiler/lib/fdb.jar,compiler/lib/flex-compiler-oem.jar,js/lib/asdoc.jar,js/lib/falcon-flexTasks.jar,js/lib/compc.jar,js/lib/externc.jar,js/lib/jsc.jar,js/lib/mxmlc.jar"/>
+        <echo file="${basedir}/jars.txt" message="${jars-list}"/>
+        <echo file="${basedir}/jarexcludes.txt" message="${jars-list}"/>
+        <replaceregexp file="${basedir}/jarexcludes.txt" match="," flags="g" 
replace="${line.separator}" />
+    </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="${src.package.url.path}/${src.package.url.name}.${package.suffix}"
+            dest="${basedir}/${src.package.url.name}.${package.suffix}" />
+        <get 
src="${src.package.url.path}/${src.package.url.name}.${package.suffix}.md5"
+            dest="${basedir}/${src.package.url.name}.${package.suffix}.md5" />
+        <get 
src="${bin.package.url.path}/${bin.package.url.name}.${package.suffix}"
+            dest="${basedir}/${bin.package.url.name}.${package.suffix}" />
+        <get 
src="${bin.package.url.path}/${bin.package.url.name}.${package.suffix}.md5"
+            dest="${basedir}/${bin.package.url.name}.${package.suffix}.md5" />
+        <antcall target="asc_get" />
+    </target>
+    
+    <target name="asc_get" if="rc" >
+        <get 
src="${src.package.url.path}/${src.package.url.name}.${package.suffix}.asc"
+            dest="${basedir}/${src.package.url.name}.${package.suffix}.asc" />
+        <get 
src="${bin.package.url.path}/${bin.package.url.name}.${package.suffix}.asc"
+            dest="${basedir}/${bin.package.url.name}.${package.suffix}.asc" />
+    </target>
+    
+    <target name="check-sigs" description="check md5 and gpg sigs">
+               <replace 
file="${basedir}/${src.package.url.name}.${package.suffix}.md5"
+                       token=" " />
+               <checksum 
file="${basedir}/${src.package.url.name}.${package.suffix}" algorithm="md5" 
verifyproperty="src.md5.ok" />
+        <condition property="SourceMD5Invalid">
+                       <not>
+                               <equals arg1="${src.md5.ok}" arg2="true" />
+                       </not>
+        </condition>
+        <fail message="Source Package MD5 checksum did not match" 
if="SourceMD5Invalid" />
+        <replace 
file="${basedir}/${bin.package.url.name}.${package.suffix}.md5"
+            token=" " />
+        <checksum file="${basedir}/${bin.package.url.name}.${package.suffix}" 
algorithm="md5" verifyproperty="bin.md5.ok" />
+        <condition property="BinaryMD5Invalid">
+            <not>
+                <equals arg1="${bin.md5.ok}" arg2="true" />
+            </not>
+        </condition>
+        <fail message="Binary Package MD5 checksum did not match" 
if="BinaryMD5Invalid" />
+        <echo>rc is ${rc}</echo>
+        <antcall target="gpg_check" />
+    </target>
+
+    <target name="gpg_check" if="rc">
+        <exec executable="gpg" failonerror="true">
+            <arg value="--verify" />
+            <arg 
value="${basedir}/${src.package.url.name}.${package.suffix}.asc" />
+            <arg value="${basedir}/${src.package.url.name}.${package.suffix}" 
/>
+        </exec>
+        <exec executable="gpg" failonerror="true">
+            <arg value="--verify" />
+            <arg 
value="${basedir}/${bin.package.url.name}.${package.suffix}.asc" />
+            <arg value="${basedir}/${bin.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}/${src.package.url.name}" 
failonerror="false" />
+        <delete dir="${basedir}/${bin.package.url.name}" failonerror="false" />
+       </target>
+       
+    <target name="untar-file" unless="zip.package" description="Untars 
zipFile">
+        <untar src="${basedir}/${src.package.url.name}.${package.suffix}"
+                dest="${basedir}" compression="gzip"/>
+        <untar src="${basedir}/${bin.package.url.name}.${package.suffix}"
+                dest="${basedir}" compression="gzip"/>
+    </target>
+
+    <target name="unzip-file" if="zip.package" description="Unzips zipFile">
+        <unzip src="${basedir}/${src.package.url.name}.${package.suffix}"
+                dest="${basedir}/${src.package.url.name}"/>
+        <unzip src="${basedir}/${bin.package.url.name}.${package.suffix}"
+                dest="${basedir}/${bin.package.url.name}"/>
+    </target>
+
+    <target name="rat-check" >
+
+        <echo message="Checking files at ${basedir}/${src.package.url.name}, 
report is ${src.rat.report}"/>
+
+        <rat:report xmlns:rat="antlib:org.apache.rat.anttasks"
+            reportFile="${src.rat.report}">
+            <fileset dir="${basedir}/${src.package.url.name}">
+                <!-- exclude media (png, gif, jpg, mp3, flv) -->
+                <exclude name="**/*.png"/>
+                <exclude name="**/*.gif"/>
+                <exclude name="**/*.jpg"/>
+                <exclude name="**/*.mp3"/>
+                <exclude name="**/*.flv"/>
+                <exclude name="**/org.apache.flex.tools.FlexToolGroup"/>
+                <exclude name="debugger/META-INF/MANIFEST.MF"/>
+                <exclude 
name="flex-typedefs/target/maven-shared-archive-resources/META-INF/DEPENDENCIES"/>
+                <exclude name="**/*.patch"/>
+                <exclude name="README_MAVEN.txt"/>
+                <exclude name="RELEASE_NOTES_JX"/>
+                <exclude name="LICENSE.jx.bin"/>
+                <exclude name="NOTICE.jx"/>
+                <exclude name="README_JX"/>
+                <exclude name="NOTICE.base"/>
+                <exclude name="NOTICE.fdb"/>
+                <exclude name="NOTICE.oem"/>
+                <exclude name="NOTICE.swfutils"/>
+            </fileset>
+        </rat:report>
+               <antcall target="display-text" >
+            <param name="file" value="${src.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.src.license.ok"/>
+               <echo>filtering out AL files to make it easier to see binary 
files</echo>
+               <copy file="${src.rat.report}" 
tofile="${src.rat.report}.bin.txt" />
+               <replaceregexp file="${src.rat.report}.bin.txt" match="..AL.*" 
replace="__AL" byline="true"/>
+        <replaceregexp file="${src.rat.report}.bin.txt" flags="gs" 
match="__AL." replace="" byline="false"/>
+               <antcall target="display-text" >
+            <param name="file" value="${src.rat.report}.bin.txt" />
+        </antcall>
+        <input
+                       message="Check that there are no unexpected binaries.  
Is it ok?"
+            validargs="y,n"
+        defaultvalue="n"
+        addproperty="rat.src.binaries.ok"/>
+        
+        <echo message="Checking files at ${basedir}/${bin.package.url.name}, 
report is ${bin.rat.report}"/>
+        
+        <antcall target="binary-rat" />
+        <antcall target="display-text" >
+            <param name="file" value="${bin.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.bin.license.ok"/>
+        <echo>filtering out AL files to make it easier to see binary 
files</echo>
+        <copy file="${bin.rat.report}" tofile="${bin.rat.report}.bin.txt" />
+        <replaceregexp file="${bin.rat.report}.bin.txt" match="..AL.*" 
replace="__AL" byline="true"/>
+        <replaceregexp file="${bin.rat.report}.bin.txt" flags="gs" 
match="__AL." replace="" byline="false"/>
+        <antcall target="display-text" >
+            <param name="file" value="${bin.rat.report}.bin.txt" />
+        </antcall>
+        <input
+        message="Check that there are no unexpected binaries.  Is it ok?"
+        validargs="y,n"
+        defaultvalue="n"
+        addproperty="rat.bin.binaries.ok"/>
+    </target>
+
+    <target name="binary-rat" >
+        <echo>${jars-list}</echo>
+        <rat:report xmlns:rat="antlib:org.apache.rat.anttasks"
+            reportFile="${bin.rat.report}">
+            <fileset dir="${basedir}/${bin.package.url.name}">
+                <!-- exclude media (png, gif, jpg, mp3, flv) -->
+                <exclude name="**/*.png"/>
+                <exclude name="**/*.gif"/>
+                <exclude name="**/*.jpg"/>
+                <exclude name="**/*.mp3"/>
+                <exclude name="**/*.flv"/>
+                <exclude name="**/org.apache.flex.tools.FlexToolGroup"/>
+                <exclude name="debugger/META-INF/MANIFEST.MF"/>
+                <exclude 
name="flex-typedefs/target/maven-shared-archive-resources/META-INF/DEPENDENCIES"/>
+                <exclude name="**/*.patch"/>
+                <exclude name="LICENSE.jx.bin"/>
+                <exclude name="README_MAVEN.txt"/>
+                <exclude name="RELEASE_NOTES_JX"/>
+                <exclude name="NOTICE.jx"/>
+                <exclude name="README_JX"/>
+                <exclude name="NOTICE.base"/>
+                <exclude name="NOTICE.fdb"/>
+                <exclude name="NOTICE.oem"/>
+                <exclude name="NOTICE.swfutils"/>
+                <exclude name="compiler/target/generated-sources/**" />
+                <exclude name="flex-typedefs/js/target/downloads/svg.js" />
+                <exclude name="flex-typedefs/createjs/target/downloads/**" />
+                <exclude name="flex-typedefs//**/*.swc" />
+                <exclude name="js/libs/cordova.swc"/>
+                <exclude name="js/libs/createjs.swc"/>
+                <exclude name="js/libs/GCL.swc"/>
+                <exclude name="js/libs/google_maps.swc"/>
+                <exclude name="js/libs/jasmine.swc"/>
+                <exclude name="js/libs/jquery.swc"/>
+                <exclude name="js/libs/js.swc"/>
+                <exclude name="js/libs/node.swc"/>
+                <excludesfile name="${basedir}/jarexcludes.txt" />
+            </fileset>
+        </rat:report>
+    </target>
+    
+    <!-- someday figure out how to use 
+        find . -name "*.jar" -exec tar ft {} \; | sort -u > paths.txt -->
+    
+    <!-- how to do tar and sort on Windows? -->
+    <target name="examine-jars" if="isMac">
+        <!-- comma delimited list, no spaces, not one file per line -->
+        <copy file="jars.txt" tofile="loop.txt" />
+        <ant antfile="ApproveFalcon.xml" target="loopOnce" inheritAll="false" 
/>
+    </target>
+    <target name="loopOnce" >
+        <!-- make a copy of the list so we can munge it to
+             get the first item in the list -->
+        <delete file="loop1.txt" />
+        <copy file="loop.txt" tofile="loop1.txt" />
+        <loadfile srcFile="loop.txt" property="checkiflast" />
+        <condition property="islast" value="true">
+            <not>
+                <contains string="${checkiflast}" substring="," />
+            </not>
+        </condition>
+        <antcall target="notlast" />
+        <antcall target="lastone" />
+    </target>
+    <target name="notlast" unless="islast">
+        <loadfile srcFile="loop1.txt" property="echoFile" />
+        <replaceregexp file="loop1.txt" match="^(.*),(.*)" replace="\2" />
+        <loadfile srcFile="loop1.txt" property="thisFile" />
+        <antcall target="jar-check" />
+        <replaceregexp file="loop.txt" match="^(.*),(.*)" replace="\1" />
+        <ant antfile="ApproveFalcon.xml" target="loopOnce" inheritAll="false"/>
+    </target>
+    <target name="lastone" if="islast">
+        <loadfile srcFile="loop1.txt" property="thisFile" />
+        <antcall target="jar-check" />
+        <delete file="loop.txt" />
+        <delete file="loop1.txt" />
+    </target>
+
+    <target name="jar-check" >
+        <delete dir="${basedir}/jar" failonerror="false" />
+        <mkdir dir="${basedir}/jar" />
+        <unjar src="${basedir}/${bin.package.url.name}/${thisFile}" 
dest="${basedir}/jar" />
+        <exec executable="tar" output="${basedir}/jarclasses.txt">
+            <arg value="tf" />
+            <arg value="${basedir}/${bin.package.url.name}/${thisFile}" />
+        </exec>
+        <replaceregexp file="${basedir}/jarclasses.txt" match="(.*)/(.*)" 
replace="\1" flags="m" byline="true"/>
+        <exec executable="sort" output="${basedir}/jarpaths.txt">
+            <arg value="-u" />
+            <arg value="${basedir}/jarclasses.txt" />
+        </exec>
+        <antcall target="display-text" >
+            <param name="file" value="${basedir}/jarpaths.txt" />
+        </antcall>
+        <input
+            message="Above is the list of folders in this 
${thisFile}.&#xA;Folder names can sometimes indicate presence of third-party 
content that needs to be in LICENSE and/or NOTICE files.&#xA;Press the Enter 
key to see the LICENSE for this jar."/>
+        
+        <fail message="LICENSE not in 
${basedir}/${bin.package.url.name}/${thisFile}">
+            <condition>
+                <not>
+                    <available file="${basedir}/jar/META-INF/LICENSE" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="NOTICE not in 
${basedir}/${bin.package.url.name}/${thisFile}">
+            <condition>
+                <not>
+                    <available file="${basedir}/jar/META-INF/NOTICE" />
+                </not>
+            </condition>
+        </fail>
+        <antcall target="display-text" >
+            <param name="file" value="${basedir}/jar/META-INF/LICENSE" />
+        </antcall>
+        <input
+            message="Check the LICENSE for the Apache License and third-party 
licenses. Is it ok?"
+            validargs="y,n"
+            defaultvalue="y"
+            addproperty="jar.license.ok"/>
+        <fail message="LICENSE for 
${basedir}/${bin.package.url.name}/${thisFile} not correct">
+            <condition>
+                <not>
+                    <equals arg1="${jar.license.ok}" arg2="y" />
+                </not>
+            </condition>
+        </fail>
+        <antcall target="display-text" >
+            <param name="file" value="${basedir}/jar/META-INF/NOTICE" />
+        </antcall>
+        <input
+            message="Check the NOTICE for required notices from third-parties. 
Is it ok?"
+            validargs="y,n"
+            defaultvalue="y"
+            addproperty="jar.notice.ok"/>
+        <fail message="NOTICE for 
${basedir}/${bin.package.url.name}/${thisFile} not correct">
+            <condition>
+                <not>
+                    <equals arg1="${jar.notice.ok}" arg2="y" />
+                </not>
+            </condition>
+        </fail>
+        
+    </target>
+    
+    <target name="check-notices" description="open each notice file for 
review, grep for a few things" >
+        <fail message="README not in source package">
+                       <condition>
+                   <not>
+                   <available file="${basedir}/${src.package.url.name}/README" 
/>
+                   </not>
+                       </condition>
+        </fail>
+        <fail message="README_JX not in source package">
+                       <condition>
+                   <not>
+                   <available 
file="${basedir}/${src.package.url.name}/README_JX" />
+                   </not>
+                       </condition>
+        </fail>
+        <fail message="RELEASE_NOTES not in source package">
+                       <condition>
+                               <not>
+                                       <available 
file="${basedir}/${src.package.url.name}/RELEASE_NOTES" />
+                               </not>
+                       </condition>
+        </fail>
+        <fail message="RELEASE_NOTES_JX not in source package">
+                       <condition>
+                               <not>
+                                       <available 
file="${basedir}/${src.package.url.name}/RELEASE_NOTES_JX" />
+                               </not>
+                       </condition>
+        </fail>
+        <fail message="NOTICE not in source package">
+                       <condition>
+                               <not>
+                                       <available 
file="${basedir}/${src.package.url.name}/NOTICE" />
+                               </not>
+                       </condition>
+        </fail>
+        <fail message="NOTICE.JX not in source package">
+                       <condition>
+                               <not>
+                                       <available 
file="${basedir}/${src.package.url.name}/NOTICE.JX" />
+                               </not>
+                       </condition>
+        </fail>
+        <fail message="LICENSE not in source package">
+                       <condition>
+                               <not>
+                                       <available 
file="${basedir}/${src.package.url.name}/LICENSE" />
+                               </not>
+                       </condition>
+        </fail>
+        <fail message="README not in binary package">
+            <condition>
+                <not>
+                    <available 
file="${basedir}/${bin.package.url.name}/README" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="README_JX not in binary package">
+            <condition>
+                <not>
+                    <available 
file="${basedir}/${bin.package.url.name}/README_JX" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="RELEASE_NOTES not in binary package">
+            <condition>
+                <not>
+                    <available 
file="${basedir}/${bin.package.url.name}/RELEASE_NOTES" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="RELEASE_NOTES_JX not in binary package">
+            <condition>
+                <not>
+                    <available 
file="${basedir}/${bin.package.url.name}/RELEASE_NOTES_JX" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="NOTICE not in binary package">
+            <condition>
+                <not>
+                    <available 
file="${basedir}/${bin.package.url.name}/NOTICE" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="NOTICE.JX not in binary package">
+            <condition>
+                <not>
+                    <available 
file="${basedir}/${bin.package.url.name}/NOTICE.JX" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="LICENSE not in binary package">
+            <condition>
+                <not>
+                    <available 
file="${basedir}/${bin.package.url.name}/LICENSE" />
+                </not>
+            </condition>
+        </fail>
+        <checksum file="${basedir}/${src.package.url.name}/RELEASE_NOTES_JX" 
property="src.rnjxmd5" />
+        <checksum file="${basedir}/${bin.package.url.name}/RELEASE_NOTES_JX" 
property="bin.rnjxmd5" />
+        <fail message="RELEASE_NOTES_JX in binary package does not match 
source package">
+            <condition>
+                <not>
+                    <equals arg1="${src.rnjxmd5}" arg2="${bin.rnjxmd5}" />
+                </not>
+            </condition>
+        </fail>
+        <checksum file="${basedir}/${src.package.url.name}/RELEASE_NOTES" 
property="src.rnmd5" />
+        <checksum file="${basedir}/${bin.package.url.name}/RELEASE_NOTES" 
property="bin.rnmd5" />
+        <fail message="RELEASE_NOTES in binary package does not match source 
package">
+            <condition>
+                <not>
+                    <equals arg1="${src.rnmd5}" arg2="${bin.rnmd5}" />
+                </not>
+            </condition>
+        </fail>
+        <checksum file="${basedir}/${src.package.url.name}/README_JX" 
property="src.rjxmd5" />
+        <checksum file="${basedir}/${bin.package.url.name}/README_JX" 
property="bin.rjxmd5" />
+        <fail message="README_JX in binary package does not match source 
package">
+            <condition>
+                <not>
+                    <equals arg1="${src.rjxmd5}" arg2="${bin.rjxmd5}" />
+                </not>
+            </condition>
+        </fail>
+        <checksum file="${basedir}/${src.package.url.name}/README" 
property="src.rmd5" />
+        <checksum file="${basedir}/${bin.package.url.name}/README" 
property="bin.rmd5" />
+        <fail message="README in binary package does not match source package">
+            <condition>
+                <not>
+                    <equals arg1="${src.rmd5}" arg2="${bin.rmd5}" />
+                </not>
+            </condition>
+        </fail>
+               <antcall target="display-text" >
+            <param name="file" 
value="${basedir}/${src.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}/${src.package.url.name}/README_JX" />
+        </antcall>
+               <input
+            message="Check the README_JX for version numbers, spelling, 
grammar, accuracy.  Is it ok?"
+            validargs="y,n"
+            defaultvalue="y"
+            addproperty="readmejx.ok"/>
+               
+               <antcall target="display-text" >
+            <param name="file" 
value="${basedir}/${src.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}/${src.package.url.name}/RELEASE_NOTES_JX" />
+        </antcall>
+               <input
+        message="Check the RELEASE_NOTES_JX for copyright years, spelling, 
grammar, accuracy. Is it ok?"
+        validargs="y,n"
+        defaultvalue="y"
+        addproperty="releasenotesjx.ok"/>
+        
+               <antcall target="display-text" >
+            <param name="file" 
value="${basedir}/${src.package.url.name}/NOTICE" />
+        </antcall>
+               <input
+                       message="Check the source package NOTICE for required 
notices from third-parties. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="src.notice.ok"/>
+
+               <antcall target="display-text" >
+            <param name="file" 
value="${basedir}/${src.package.url.name}/LICENSE" />
+        </antcall>
+               <input
+                       message="Check the source package LICENSE for the 
Apache License and third-party licenses. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="src.license.ok"/>
+        
+        <antcall target="display-text" >
+            <param name="file" 
value="${basedir}/${bin.package.url.name}/NOTICE" />
+        </antcall>
+        <input
+        message="Check the binary package NOTICE for required notices from 
third-parties. Is it ok?"
+        validargs="y,n"
+        defaultvalue="y"
+        addproperty="bin.notice.ok"/>
+        
+        <antcall target="display-text" >
+            <param name="file" 
value="${basedir}/${bin.package.url.name}/LICENSE" />
+        </antcall>
+        <input
+        message="Check the binary package LICENSE for the Apache License and 
third-party licenses. Is it ok?"
+        validargs="y,n"
+        defaultvalue="y"
+        addproperty="bin.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" />
+        <ant dir="${basedir}/${src.package.url.name}" target="all" />
+    </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}/${src.package.url.name}/in" >
+                       <fileset dir="${download.cache.dir}" />
+               </copy>
+    </target>
+       
+       <target name="approve" >
+               <condition property="vote" value="+1">
+                       <and>
+                               <equals arg1="${rat.src.license.ok}" arg2="y" />
+                               <equals arg1="${rat.src.binaries.ok}" arg2="y" 
/>
+                <equals arg1="${rat.bin.license.ok}" arg2="y" />
+                <equals arg1="${rat.bin.binaries.ok}" arg2="y" />
+                               <equals arg1="${readme.ok}" arg2="y" />
+                               <equals arg1="${releasenotes.ok}" arg2="y" />
+                               <equals arg1="${src.notice.ok}" arg2="y" />
+                <equals arg1="${bin.notice.ok}" arg2="y" />
+                               <equals arg1="${readmejx.ok}" arg2="y" />
+                               <equals arg1="${releasenotesjx.ok}" arg2="y" />
+                               <equals arg1="${src.license.ok}" arg2="y" />
+                <equals arg1="${bin.license.ok}" arg2="y" />
+                       </and>
+               </condition>
+               <property name="vote" value="-1" />
+               <echo>
+${vote}
+Package ${src.package.url.path}/${src.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}
+README_JX is ok: ${readmejx.ok}
+RELEASE_NOTES is ok: ${releasenotes.ok}
+RELEASE_NOTES_JX is ok: ${releasenotesjx.ok}
+NOTICE is ok: ${src.notice.ok}
+LICENSE is ok: ${src.license.ok}
+No unapproved licenses or archives in source package: ${rat.src.license.ok}
+No unapproved binaries in source package: ${rat.src.binaries.ok}
+
+Package ${bin.package.url.path}/${bin.package.url.name}.${package.suffix}
+Binary kit signatures match: y
+NOTICE is ok: ${bin.notice.ok}
+LICENSE is ok: ${bin.license.ok}
+No unapproved licenses or files in jars: y
+No unapproved licenses or archives in binary package: ${rat.bin.license.ok}
+No unapproved binaries in binary package: ${rat.bin.binaries.ok}
+               </echo>
+               <fail>
+                       <condition>
+                   <equals arg1="-1" arg2="${vote}"/>
+                       </condition>
+               </fail>
+       </target>
+</project>

Added: dev/flex/falcon/0.8.0/rc1/READme
==============================================================================
--- dev/flex/falcon/0.8.0/rc1/READme (added)
+++ dev/flex/falcon/0.8.0/rc1/READme Fri Jun  9 03:07:13 2017
@@ -0,0 +1,279 @@
+Apache Flex Compiler
+====================
+
+    This Apache Flex Compiler is also known as the 'Falcon' compiler.  It is 
+    the next-generation replacement to the MXMLC compiler that is currently 
+    bundled with the Apache Flex SDK and is based on the Adobe ASC2.0 code base
+    donated to Apache by Adobe Systems Inc.
+
+    This Compiler may also be packaged with the Apache Flex Cross-Compiler 
which
+    has additional information in the README_JX file.
+
+    For detailed information about Apache Flex please visit
+    http://flex.apache.org/
+
+    This compiler may eventually replace MXMLC in the Apache Flex SDK, but is
+    also being used as the compiler for the Apache FlexJS SDK.  FlexJS is a
+    next-generation SDK that allows the developer to leverage MXML and 
ActionScript
+    to build applications that not only run as a SWF, but can also be 
cross-compiled
+    to JavaScript and run natively in a browser or anywhere JavaScript runs.
+
+Getting the latest sources via git
+==================================
+
+    Getting the source code is the recommended way to get the Apache Flex 
Compiler.  
+    We also offer an automated installer along with binary distributions on 
our 
+    website at http://flex.apache.org/.
+
+    You can always checkout the latest source via git using the following
+    command:
+
+        git clone https://git-wip-us.apache.org/repos/asf/flex-falcon.git 
flex-falcon
+        cd flex-falcon
+        git checkout develop
+
+    When working with the sources from Git, the Apache Flex Compiler 
+    also requires code from other Apache Flex git repositories or an Apache 
Flex SDK.
+    These Apache Flex SDK source files are bundled in Apache Flex Falcon
+    source code distributions, so this step is optional when using source code
+    distributions.
+
+    To get the latest source via git for the Apache Flex SDK use the following 
command:
+
+        git clone https://git-wip-us.apache.org/repos/asf/flex-sdk.git flex-sdk
+        cd flex-sdk
+        git checkout develop
+
+    The Apache Flex SDK requires the Text Layout Framework repository which
+    you can get as follows:
+
+        git clone https://git-wip-us.apache.org/repos/asf/flex-tlf.git flex-tlf
+        cd flex-tlf
+        git checkout develop
+
+    To use an Apache Flex SDK, install an Apache Flex SDK on your computer and
+    follow the instructions in 'Install Prerequisites'.
+
+Building the Apache Flex Compiler
+=================================
+
+    The Apache Flex Compiler is a large project. It requires some build tools 
+    which must be installed prior to building the compiler and it depends on 
+    some external software which are downloaded as part of the build process.  
+    Some of these have different licenses.  See the Software Dependencies 
section 
+    for more information on the external software dependencies.
+
+    Linux support is currently experimental and while it is possible to compile
+    the SDK it has not been fully tested so you may run into issues.
+
+Install Prerequisites
+---------------------
+
+    Before building the Apache Flex Compiler you must install the following 
software 
+    and set the corresponding environment variables using absolute file paths. 
 
+    Relative file paths will result in build errors.
+
+    
==================================================================================
+    SOFTWARE                                     ENVIRONMENT VARIABLE 
(absolute paths)
+    
==================================================================================
+
+    Java SDK 1.6 or greater (*1)                 JAVA_HOME
+        (for Java 1.7 see note at (*2))
+
+    Ant 1.7.1 or greater (*1)                    ANT_HOME
+        (for Java 1.7 see note at (*2))
+
+    Adobe AIR Integration Kit (*3)               AIR_HOME
+
+    Adobe Flash Player Content Debugger (*4)     FLASHPLAYER_DEBUGGER
+
+    Adobe Flash Player playerglobal swcs (*5)    PLAYERGLOBAL_HOME
+
+    Optional: Apache Flex SDK or repository (*6) FLEX_HOME
+
+    Optional: Apache Flex TLF source (*7)        TLF_HOME
+
+    Optional: Flex Messaging Common (*8)         BLAZEDS_HOME
+
+    
==================================================================================
+
+    *1) The bin directories for ANT_HOME and JAVA_HOME should be added to your
+        PATH.
+
+        On Windows, set PATH to
+
+            PATH=%PATH%;%ANT_HOME%\bin;%JAVA_HOME%\bin
+
+        On the Mac (bash), set PATH to
+
+            export PATH="$PATH:$ANT_HOME/bin:$JAVA_HOME/bin"
+
+         On Linux make sure you path include ANT_HOME and JAVA_HOME.
+
+    *2)  If you are using Java SDK 1.7 or greater on a Mac you must use Ant 1.8
+         or greater. If you use Java 1.7 with Ant 1.7, ant reports the java
+         version as 1.6 so the JVM args for the data model (-d32/-d64) will not
+         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/4.0/AdobeAIRSDK.zip
+
+         The Adobe AIR integration kit for Mac can be downloaded from:
+            http://airdownload.adobe.com/air/mac/download/4.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
+
+        Download the AIR SDK for your platform and unzip it. Set AIR_HOME to 
the
+        absolute path of the AIR SDK directory.
+
+    *4) The Adobe Flash Player content debuggers can be found here:
+            http://www.adobe.com/support/flashplayer/downloads.html
+
+        On Windows, set FLASHPLAYER_DEBUGGER to the absolute path including the
+        filename of the FlashPlayerDebugger.exe. Note the filename of flash
+        player debugger maybe different.
+           e.g. C:\MyPath\FlashPlayerDebugger.exe
+
+        On the Mac, set FLASHPLAYER_DEBUGGER to the absolute path of
+        Flash Player Debugger.app/Contents/MacOS/Flash Player Debugger
+
+        On Linux, set FLASHPLAYER_DEBUGGER to the absolute path of
+        flashplayerdebugger
+
+    *5) The Adobe Flash Player playerglobal.swc for 11.1 can be downloaded 
from:
+            
http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_1.swc
+
+        Use URL above to download playerglobal11_1.swc.
+
+        Set PLAYERGLOBAL_HOME to the absolute path of the player directory (not
+        including the version subdirectory). The target-player option controls
+        which PLAYERGLOBAL_HOME subdirectory is used.
+
+        Other more recent versions of Adobe Flash Player playerglobal.swc can 
be
+        downloaded from:
+            
http://download.macromedia.com/get/flashplayer/updaters/<version.major>/playerglobal<version.major>_<version.minor>.swc
+
+        (e.g. 
http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_1.swc)
+
+        Copy the target playerglobal.swc to the directory:
+
+           
frameworks/libs/player/<version.major>.<version.minor>/playerglobal.swc
+    
+        These can be used with the Apache Flex Compiler but not all have not 
been fully
+        tested.
+
+    *6) The FLEX_HOME variable should point to a folder of the flex-sdk 
sources.
+        If you don’t provide this variable (and TLF_HOME and BLAZEDS_HOME), 
+        you may not be able to run all of the tests in the compiler 
+        and compiler-jx folders.
+
+    *7) The TLF_HOME variable should point to a folder containing a folder
+        named textLayout that contains a src folder of the TLF sources.
+        This should be the root of the flex-tlf repository, or can be
+        the frameworks/projects folder of an IDE compatible Flex SDK.
+
+    *8) The build scripts assume that the root folder containing the source 
code 
+        for Apache Flex BlazeDS ('flex-blazeds') is at the same level as the 
+        SDK root folder ('flex-sdk'). See 'Getting the source code', below. If 
this 
+        is not the case on your system, then you must set the BLAZEDS_HOME 
environment
+        variable 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.
+
+Software Dependencies
+---------------------
+
+    The Apache Flex Compiler uses third-party code that will be downloaded as 
+    part of the build.
+
+    The Apache Version 2.0 license is in the LICENSE file.
+
+    The following dependencies have licenses which are, or are compatible with,
+    the Apache Version 2.0 license.  You will not be prompted to acknowledge 
the
+    download.  Most of the jars are installed in lib/external when installed
+    into an Apache Flex SDK and the lib folder in the repository working copy.
+
+        antlr - 
https://repo1.maven.org/maven2/org/antlr/antlr-complete/3.5.2/antlr-3.5.2-complete.jar
+        commons-cli - 
https://repo1.maven.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2-bin.tar.gz
+        commons-io - 
https://repo1.maven.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.tar.gz
+        commons-lang - 
https://repo1.maven.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.tar.gz
+        commons-lang3 - 
https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar
+        commons-compress - 
https://repo1.maven.org/maven2/org/apache/commons/commons-compress/1.10/commons-compress-1.10.jar
+        guava - 
https://repo1.maven.org/maven2/com/google/guava/guava/17.0/guava-17.0.jar
+        jburg - 
https://repo1.maven.org/maven2/net/sourceforge/jburg/jburg/1.10.2/jburg-1.10.2.jar
+        jflex - http://jflex.de/jflex-1.6.0.tar.gz
+        lzma - http://www.java2s.com/Code/JarDownload/lzma/lzma-9.20.jar.zip
+
+
+Using the Binary Distribution
+-----------------------------
+
+    The binary distribution is intended to be installed into an existing 
Apache Flex
+    SDK or Apache FlexJS SDK.
+
+    There is an Apache Ant script in the binary distribution that will copy 
the 
+    files into the right places.
+
+    To run it, use:
+        ant -f installer.xml -DFLEX_HOME=<path to Flex or FlexJS SDK
+
+    The script does not check the FLEX_HOME environment variable as that often
+    points to your primary Flex SDK.
+
+    If you expand the binary distribution into the "in" folder of an Apache 
Flex or
+    FlexJS SDK, the installer.xml script should find FLEX_HOME automatically.
+
+    Another option is to use the InstallApacheFlex (version 3.0 or higher).
+
+Building the Source in the Source Distribution
+----------------------------------------------
+
+    When you have all the prerequisites in place and the environment variables
+    set (see Install Prerequisites above), one final thing to check is whether
+    the folder contain the source code is in your Flash Player Trust files as
+    the build script runs the Flash Player Debugger as part of its automated
+    tests.  Once you've done that, use
+
+        cd <falcon.dir>
+        ant main        (or just ant since the default target is main)
+
+    to download the thirdparty dependencies and build the source.  Since the
+    third-party dependencies take a little while to download and they don't
+    change very often, they are not cleaned with the regular clean target.
+
+    To clean the build, of everything other than the downloaded third-party
+    dependencies use
+
+        ant clean
+
+    To clean the build, of everything, including the downloaded third-party
+    dependencies use
+
+        ant wipe (which is just thirdparty-clean followed by clean)
+
+    To generate a source distribution package and a binary distribution package
+    use
+
+        ant -Dbuild.number=<YYYYMMDD> -Dbuild.noprompt= release
+
+    The packages can be found in the "out" subdirectory.
+
+    To get a brief listing of all the targets type
+
+        ant -projecthelp
+
+Running Tests
+-------------
+
+Before running unit-, functional- or feature-tests you may need to create a 
+compiler/src/tests/unittest.properties file 
+
+A template is found here 
compiler/src/main/resources/template-unittest.properties. 
+
+
+
+Thanks for using Apache Flex.  Enjoy!
+
+                                          The Apache Flex Project
+                                          <http://flex.apache.org>

Added: dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz.asc
==============================================================================
--- dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz.asc (added)
+++ dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz.asc Fri Jun 
 9 03:07:13 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJZOhCjAAoJEIPgQxzanM/yPfkQALMdb4rG82wgA0nzjTVj/rYo
+j4oWHm9p9AMShPJh//FbBV4Lo/0iWmHmtw7sb5gtiWFNXsFgemskyHa3BKmpkWGH
+G9WXgUNBmfC0c6ZYXY0ooQJgbzbkuxVb+M5+NdAOlvOVbsNxE263kLC0Joq/7560
+0ZA8UNzHmWQFXoURX1lFCR8dVSobEsSFlF2vM8hB06P8OPpS301M0/AOTOkHcs2b
+RQAPYC9on/soq3AjrO8lVEXd60/RKccctclvaRT7BENL+EbF8Y08pF/3WJPXeMK8
+2A8TKwh9F1HGJ1IlMZ8errCLS88+B8CNYTO6x9jrbbIH1VBg3rPcFs6hcKwx55M2
+cDq9accCL4yojCe1gRZJ1uLP9HTArrN1AE/bKlFZrdKzWPhBWf37t1+I/YtLBMZx
+ItBuumwyDuDuvYGEnY4Al6PIxxaWRzOpvSjaZGL9Ki+0sdOs3DHpDgBOOohe8GnS
+yH9/E76ZkqGKJWfOpRSzoEPrABnVe/JiVBtyVEswLhs60ERBgTTv0Gor1mxFOMVk
+CDgUnzB2iHx2Oi423pMHIC6bXOZP8kH586CDu+Y1NG8zclFWcUFV5SOHXhyEGI1K
+qKVd151uvK6y7bHbq70nm2sHqT0AYlh9VWJ5uxQzpldGbn4y5JMcSxCxX03sufTr
+wvK58ozlfVTPB75NxERm
+=BMLk
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz.md5
==============================================================================
--- dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz.md5 (added)
+++ dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.tar.gz.md5 Fri Jun 
 9 03:07:13 2017
@@ -0,0 +1 @@
+b7633981945b477c73c2f3759fb043f6

Added: dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip.asc
==============================================================================
--- dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip.asc (added)
+++ dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip.asc Fri Jun  9 
03:07:13 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJZOhCiAAoJEIPgQxzanM/yfmUQAJehobObNV9Wx7A1NOfB7nsF
+AmSETdccjbNK4u8NlnQBtQ3z6kVLCKTPNLpLjZdxTv+PPucEBQ2A5hJPBd44gcUc
+dgv55qu7bAha5LRy1Kgh/BBmLFF1fpWgxUQVlvjFPqzpxuUQEflt4Tot1xD+m52z
++ozonXpXZrWQPIvUvmq0rEnB92rT3lU1xM4WfVzZMk7xmdd4xI8ebRll3iWr4lMg
+Sp53DBp0oOrIeTifZY/1fOr4ld04MHI2u5M9vwfblMPynwHGV+OBwdA0X1DhZIdk
+9nbkHXjc+HCXp3eJZ8q0KCtjnV+LMvxiypVgRmtRq3yaxnVSDc2o7ut4nKGuQS6J
+laXXBzCz9qxzNiDiZl7/CuqWQ0K0MSDSyL7UbFtlEwCmT5QixMtP25AKMQMDxKul
+13ByQvddjEpa2JIfjT6JPr+6f9Y+QSrXiBSenMHs+Mkk0HX4FN+OsYiZdWC+MrmW
+AYbPRs+9V7CHLe09oUUoDioGdMR6rsXSxMgAbDQJ5h7i1iA9vSWTqIt78qaLKxkM
+Qb89mmXlsszKPfE1mrwX3E3YIucSpYULvRBbO+zp6M4Me6Qm2XAn5lhpha8Rfepj
+BAy13NEF0+94r8f56ZaUxwzrnk9fOQwnrg4St4G/n4xJHzNwFHvEc9yVD5gCIGiz
+xaa7S9y1RbR8gLm+SPyw
+=elPV
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip.md5
==============================================================================
--- dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip.md5 (added)
+++ dev/flex/falcon/0.8.0/rc1/apache-flex-falconjx-0.8.0-src.zip.md5 Fri Jun  9 
03:07:13 2017
@@ -0,0 +1 @@
+2eed55296c620acae84ef1d8f8973d84

Added: dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.asc
==============================================================================
--- 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.asc 
(added)
+++ 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.asc 
Fri Jun  9 03:07:13 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJZOhClAAoJEIPgQxzanM/y55UQAKpsRnnNPF64W0ojCsUAo6vb
+UDoFyke5vhX4Sj0N28u1ZyKp37AwRZRoIiftwslg+q09A9WyojFYrfhLJigeNTpW
+Ol7becb2MtegAZtaIrkbG8wxDV0LcPviTmnuJoWJfkaorXfSJkzUlyGmaKGWtbGE
+bL8bY8pmSm0TfC9IhyDl3hJYvXS67Oe6WGJigPaTjBHSMs10U9NON9B2Is/3+wQp
+fcjLA2GgERd6eqb7Q6NUslB4FzcOHleCJaOhfcVnanTMZL2yO+n0hkoU7gbUqJ2m
+iVpDJL+vjfdMwbHAh1XNGxERowwhLnDKK562ZLO+tyfiHFNnw5+Th7UDwKKzKkFi
+DthFIdJUlsxJ2/uWbHcUrnzpxmLeBC3W0h4DEjrfWGhVjBvzDyFSMPr1XJzQp1qe
+DVaWAnGNnt/ILYOjg2C/7PfSZWzN0Y+8vd5pzHBBWxQgTeZI1jzBzJAFKWQB8n32
+uxvjtUIjKp9OZmbLDm1PGhAa3T1M4uWNX9YFclIvXQ2m9N/FBRY8IFuiRsyEsMtk
+MZ2SmdxCaLMVjmd2kMOz/LyAN1FaDUqJHrqiAf5KVEyJ6GW6hBmOlJpmZcPUKsdI
+vttkvy6PPlAEt3hUKNr4VqIOMPwpGGpGZYlTyopn572csLdiu+rq+vqnuaZBcw2T
+7McEI/jABR0hIgthASAY
+=F2/v
+-----END PGP SIGNATURE-----

Added: 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.md5
==============================================================================
--- 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.md5 
(added)
+++ 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.md5 
Fri Jun  9 03:07:13 2017
@@ -0,0 +1 @@
+2470d208539d4a6e5abbfdbddc3fec36

Added: dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip.asc
==============================================================================
--- dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip.asc 
(added)
+++ dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip.asc 
Fri Jun  9 03:07:13 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJZOhCkAAoJEIPgQxzanM/yA58QAMv+lw/euuoSkWJ9cWC2DZSw
+GQmqGdDCPz5OFvS7GzdjwHk4FW62RuzxHhNO9VysGEvOMsgtPiYwfxX8alm0/0U1
+IxL/HAdLFd+mK2XJ0TuCGf4Pvxt7zkORV+zWXbm6rCWPc5Bgt3WoFcfyhnS7R38+
+ZikLqlfXsrSBP8jD21ofmHUKz4YrRRwLyQ06a3FbrmGTWYF57032Qwkuq3bGg+b4
+3NRqkSY7OS7Lm3T6XZwH4hpPOyy4NtM8DklKjCR5Tm2heUkmRZxgw8G/rAjvxnJ0
+W1MsFxhInjYaB/AkbtbPk0J64Eb0pSZLXBl+PJutXItxcmtRj2NsO7Ml7ScoHsdI
+8cFHKZHBxDrejR5b2/Jn9+D4Wj15g68dv5YPfbE+RNFSNZa11aiazL4ArUcqh8a3
+JIkMo+OHcxyMGxE4Ri4kKnMm8alsMcJNKQWjPRxRS3AwEVOJCIEhx49gm9bbEQAG
+l7wm1IXahbRjtZ8J9DMpGT+/G65rTJ+mYgGlttmS0FMAFVM/6PTXttZ0PLgE2LuG
+xJB3nM2Cn4Jn6aBYsK6N1XF90vHEbjCMYG7VPybnFSnufs6z0hv0H7J+cohGNMOJ
+bjJ1ITg1VzAHYMo/8g1W9dsLVmF3XCCE+MVcwG+VErixYcJVfnWoEvAfUlpx4z5D
+q5uV2W1Rbl/qhDoQq8U9
+=DzEc
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip.md5
==============================================================================
--- dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip.md5 
(added)
+++ dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-0.8.0-bin.zip.md5 
Fri Jun  9 03:07:13 2017
@@ -0,0 +1 @@
+682274b52c8d57a0406e1b0b4b92848c

Added: 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-installer-config.xml
==============================================================================
--- 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-installer-config.xml 
(added)
+++ 
dev/flex/falcon/0.8.0/rc1/binaries/apache-flex-falconjx-installer-config.xml 
Fri Jun  9 03:07:13 2017
@@ -0,0 +1,101 @@
+<?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.
+
+-->
+
+<config>
+    <!--<progressLabels>
+        <en_US>
+            <Copy>Copying %1 of %2</Copy>
+            <Get>Downloading bytes %1 of %2</Get>
+            <Checksum>Computing checksum: bytes %1 of %2</Checksum>
+        </en_US>
+    </progressLabels>
+     -->
+    <strings description="override default installer strings here">
+        <string id="INFO_DOWNLOADING_FLEX_SDK">
+            <el_GR>Γίνεται λήψη του Apache Flex FalconJX 
από:</el_GR>
+            <en_US>Downloading Apache Flex FalconJX Compiler from: </en_US>
+        </string>
+        <string id="INFO_ENTER_VALID_FLEX_SDK_PATH">
+            <el_GR>Παρακαλώ εισάγετε μια έγκυρη 
διαδρομή καταλόγου για το Flex SDK</el_GR>
+            <en_US>Please enter valid directory path for a Flex or FlexJS 
SDK</en_US>
+        </string>
+        <string id="INFO_SELECT_DIRECTORY">
+            <el_GR>Επιλέξτε τον κατάλογο στον 
οποίο θέλετε να εγκαταστήσετε το Flex Falcon</el_GR>
+            <en_US>Select the directory where you want to install the Flex 
FalconJX Compiler</en_US>
+        </string>
+        <string id="INFO_VERIFY_FLEX_SDK_DONE">
+            <el_GR>Η επαλήθευση των ληφθέντων 
αρχείων είναι επιτυχής.</el_GR>
+            <en_US>The Apache Flex Falcon MD5 Signature of the downloaded 
files matches the reference. The file is valid.</en_US>
+        </string>
+        <string id="SELECT_PATH_PROMPT">
+            <el_GR>Πληκτρολογήστε η επιλέξτε μια 
έγκυρη διαδρομή για το Flex Falcon Compiler</el_GR>
+            <en_US>Where do you want to install the Apache Flex Falcon 
Compiler?</en_US>
+        </string>
+        <string id="ERROR_VERIFY_FLEX_SDK">
+            <el_GR>Η επαλήθευση των ληφθέντων 
αρχείων απέτυχε. Η εγκατάσταση 
σταμάτησε.</el_GR>
+            <en_US>The Apache Flex Falcon MD5 Signature of the downloaded 
files does not match the reference value. The file is invalid, installation is 
aborted.</en_US>
+        </string>
+        <string id="BTN_LABEL_OPEN_APACHE_FLEX_FOLDER">
+            <el_GR>ΑΝΟΙΓΜΑ ΦΑΚΕΛΟΥ APACHE FLEX FALCONJX</el_GR>
+            <en_US>OPEN APACHE FLEX FALCONJX FOLDER</en_US>
+        </string>
+        <string id="STEP_REQUIRED_INSTALL_APACHE_FLEX_SDK">
+            <el_GR>Λήψη Apache Flex Falcon Compiler</el_GR>
+            <en_US>Apache Flex Falcon Compiler (Required)</en_US>
+        </string>
+        <string id="STEP_VERIFY_FLEX_SDK">
+            <el_GR>Γίνεται επαλήθευση του Apache Flex 
Falcon MD5 Signature</el_GR>
+            <en_US>Verifying Apache Flex Falcon MD5 Signature</en_US>
+        </string>
+        <string id="STEP_UNZIP_FLEX_SDK">
+            <el_GR>Αποσυμπίεση του Apache Flex Falcon 
Compiler</el_GR>
+            <en_US>Uncompress Apache Flex Falcon Compiler</en_US>
+        </string>
+    </strings>
+    <steps description="targets that should have a 'step' in the GUI progress 
indicator, in order of appearance.">
+        <step id="download">
+            <el_GR></el_GR>
+            <en_US>Download Falcon dependencies</en_US>
+        </step>
+        <step id="copyfiles">
+            <el_GR></el_GR>
+            <en_US>Copy Falcon SDK files</en_US>
+        </step>
+        <step id="download.jx">
+            <en_US>Download FalconJX Dependencies</en_US>
+        </step>
+        <step id="copyfiles.jx">
+            <el_GR></el_GR>
+            <en_US>Copy FalconJX SDK files</en_US>
+        </step>
+    </steps>
+    <component id="STEP_REQUIRED_INSTALL_APACHE_FLEX_FALCON" required="true" 
property="do.flexjs.install">
+        <el_GR>
+            <label>Apache Flex Falcon (Απαιτούμενο)</label>
+            <message>Για το Apache Flex FalconJX ισχύει η συ
μφωνία χρήσης του Apache License V2. Θέλετε να 
εγκαταστήσετε το Apache Flex FalconJX;</message>
+        </el_GR>
+        <en_US>
+            <label>Apache Flex FalconJX (Required)</label>
+            <message>The Apache License V2 applies to the Apache Flex FalconJX 
Compiler.  Do you want to install the Apache Flex FalconJX Compiler?</message>
+            <license>Apache V2 License</license>
+            
<licenseURL>http://www.apache.org/licenses/LICENSE-2.0.html</licenseURL>
+        </en_US>
+    </component>
+</config>


Reply via email to