Author: aharui
Date: Tue Jun 20 17:28:03 2017
New Revision: 20102

Log:
rc2 of Apache Flex Falcon 0.8.0

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

Added: dev/flex/falcon/0.8.0/rc2/ApproveFalcon.xml
==============================================================================
--- dev/flex/falcon/0.8.0/rc2/ApproveFalcon.xml (added)
+++ dev/flex/falcon/0.8.0/rc2/ApproveFalcon.xml Tue Jun 20 17:28:03 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/rc2/READme
==============================================================================
--- dev/flex/falcon/0.8.0/rc2/READme (added)
+++ dev/flex/falcon/0.8.0/rc2/READme Tue Jun 20 17:28:03 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/rc2/apache-flex-falconjx-0.8.0-src.tar.gz
==============================================================================
Binary file - no diff available.

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

Added: dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.tar.gz.asc
==============================================================================
--- dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.tar.gz.asc (added)
+++ dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.tar.gz.asc Tue Jun 
20 17:28:03 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCAAGBQJZSVrUAAoJEIPgQxzanM/y7+IQALW7m1Fwuzr2MDa/gJYcQVdV
+kY6C/CdV1euna9tWlcr2IFYcxQ4oFUnFdbgZG3N6iQlGGmbeHu3iwYfSLEQrBri/
+KTLUPjj//dxrq3h69PTeoaqUQbcReH+T5bZXeRNIIz082N91mSIWzkCE+2Emod9B
+zZ/xRbtseEnq2EGr+6V7LEYY0ADNxaZ2hZNnRKbR2PEySTpwN4FrHZa0jkwapEQW
+H8WtA4P+Orb88+YXmPIN2Vn4PqYYmfYnrOJ0431jnVhYVnhYBzdmZZlzPJUdfO3+
+lgt3UvU+pxp3iEcSJI2YuFZcfdaluoKkWLoZJNp+3onb/bp6tc+6FCwyPrtJAZx3
+8Ee/M4hk6n58E4wzeqslKwxC8YD4tQEA0EaN+/j0A1kZnQHSaTD3zKLlDB/PoRIP
+OECSvkYXBfTSQI6uJ0AN02WjUgzQZ5ltOfeZHq78h3pMSezRiNmdRo8a4HoBhf6o
+ybGUOFJ7C5sXiKSWZD49HDa9dnyP8GXDaZ5/uu3INaSsmtWswEQICBaMgMHtXL9c
+Ct6H91PWTpc+GCFl//V5i7iZLELq6Yi3nlGJetC/BOvgC/KOuTCc0dGCVrs63IYy
+xPJrkOvw5k9/+LcfWRT/DXIX5PzWfmqQKCaKU7yI5I7LNFje/47cxLJL3mEOfjD4
+2PKu4G1rAmBXcSl9iydS
+=aMBj
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.tar.gz.md5
==============================================================================
--- dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.tar.gz.md5 (added)
+++ dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.tar.gz.md5 Tue Jun 
20 17:28:03 2017
@@ -0,0 +1 @@
+acd0c559e38ed5e9184748d6423b1ced

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

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

Added: dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.zip.asc
==============================================================================
--- dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.zip.asc (added)
+++ dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.zip.asc Tue Jun 20 
17:28:03 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCAAGBQJZSVrUAAoJEIPgQxzanM/y/qAQALehWATYK7R2LoWlplRPtU95
+V9LiCJmUqxDtnp4bJd/3oYEL8Y21JodD1rjTDgfry1HMndPvaw4rMCGBYiA8d870
+HlMMMGf3xUlkHeVEj4p01Z0BcBNAruV4dlvd/v0iB/rEfGEfmf7RvdsGgG3cGUIO
+q3y8Bp3VFEVvBEBg0hSZZbpsB7ar0OAayA0K92iqNd/apmM+/a6GtJ1kpDMFArMH
+eFyUdvg2sXIQYa+tjl2M/0CeuuzIybEVqjNsPU3j21kDJx0x9BtqLak4x3AjfB8N
+Y33ErkLnJFT3xy9bOACRhrUgilKKu+DhX3RE9jdc1G4aZuMSCZE5nQz0QyLcVg3m
+o5E+I/hMgZPZSof4sn3OMLOW0bRzFxvew+FUgfTNMA4cXED6bznsES1eW01lWVRZ
+4Qcm7rlOpmYLl8SjbXNiF/TNRw2h3hwWef0C+fa/RYJTFG/uUNZxEtRO5Z+qR9g7
+i1jMSE7TS+ZFd0gw0l9qJJsLsy/oGl0b12vSPraWqtoJ5HTB/ESzTY5s1MFA/5EC
+vMAR/dwlSwiCn4v2bLgjlQKmBFRCq4+EbG1Mp/it55kOT1z+W1pxpJIQIWj+8FgN
+QEJMLkBMA+QDcSXMeaKVK2a8DAnFkQk11DPNfAXYbynijdCFLpjayQluXtpBVXYg
+VXQMmpgSrf1WisTyW3rm
+=kqRj
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.zip.md5
==============================================================================
--- dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.zip.md5 (added)
+++ dev/flex/falcon/0.8.0/rc2/apache-flex-falconjx-0.8.0-src.zip.md5 Tue Jun 20 
17:28:03 2017
@@ -0,0 +1 @@
+1c766292c7194f763614027857c231d0

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

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

Added: 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.asc
==============================================================================
--- 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.asc 
(added)
+++ 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.asc 
Tue Jun 20 17:28:03 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCAAGBQJZSVrUAAoJEIPgQxzanM/yC6UP/0DYgFJqT2L36SuZI0sqx4KE
+jeMoGH0+Q21EC6I4tqX5SgRe2tSokjjsqokB4l0gk8dRV28MKumomVsbn9GAUAnm
+cHI7RVC8IoWkjwW4UwKSdeKv5Vuyl0iliqcPdwQ/Z0PPbcLN/+NBIxid+egdjv55
+gzp+ZXBKYJ1E/UbcqXnsXJJTjOZuvGYPughn5fmrnv7zTXUFkXkWETP8ZRFyhuJ7
+3Vv5/qDHesgkuBaXf3AgQhup34BqYyy8YUEUuVhzU5ZB6fRBpkD2pk2rh3z5HxJP
+cHwW5cC4twngPL2xbk2/bg6f0zM9RSNHFXzY9nv/oaw0nzZ5rAi+jfd7GvKbvRVo
+G11zRN0l4mF3ajdfJbBHHT5z+Foqohi1smcmRKglyOaYT18Q840GI8tqN9Blm3Bl
+faJH5choe45YVMW81AdBkBxoMIAaWBq/1sJur/1MUmtURzd9V48UvsE9dMBlzmEh
+N/AiDjnIUURRPsoZyhCaLA5sfUO+21OEEOv57Zi4FA8L81CcpwGhvxjmUgj7sUPt
+kmQ/xxoSkLYW8JoBJgpHi8IJMl95hbkmXKI/Od29DU44ykmTRSX05EQU5gyJtdLI
+F1pxqER/OWfQbkXgUGyJJmUo9FthLIqOsc81+F3Oz9SNYCfX7Nt0mv/MdmHb5KHd
+If6Mf1+JHmHOnW1pQVsp
+=0ifk
+-----END PGP SIGNATURE-----

Added: 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.md5
==============================================================================
--- 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.md5 
(added)
+++ 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.tar.gz.md5 
Tue Jun 20 17:28:03 2017
@@ -0,0 +1 @@
+0750b22c38d7b41f2acb943565537d86

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

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

Added: dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.zip.asc
==============================================================================
--- dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.zip.asc 
(added)
+++ dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.zip.asc 
Tue Jun 20 17:28:03 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCAAGBQJZSVrUAAoJEIPgQxzanM/yTT8QAKRQUrtWPa5Vth013PLsaNuC
+T5BAJev+ufqE0MGTEUQQawlFIA/kKJ1i02VkVm2+EooYp6wZZ+zc5dRucV2IqW7G
+3bwkeb1tIlq3ZcSEh5FQLUW/mAOGMZgjdtNWPWvSM+gjMQk+9X5d5IgddQjwk/hW
+GRrfqi6uCuwCOYB4CNpI2vu3YPKilVc7PFSUALdXfOZx32ww0UnC+ZrPeA7iiPkJ
+ODEOYKK3hfBpnsBewsurtYaYQAWmH4HuAlBwPeHixEYgxjD3hQuPeRnBBplBfty4
+hTGb3OTGU3iAAKaEE7oyWizBxWyHIFly7aLpHBtHzDJgY0besTwf10fcE1LhbaI4
+blsGQCe0R2bDN9UxXhUu0DuFSXQRqK1lIs8F9wOIW3s0gOq4NDh/2AbwM/kBn1Eb
+HaRiEcpFfDy7iGbgsT5p7xCdvmN0Hr8lvfR8yD/fUoB6wAmj0P6pY5QbyX9Vk8xJ
+q9+UWV4icOX8pdyslMoP3QrYVQ70c4hvTb9e5mizgY8nlDwcJndSByfc1QimDypU
+w+njm+9q8oewjHmK6hdRKYbcwakIpmOyqcWmRjj21PvbDoM02x/f/7/eY+mAIPUs
+R3FqyeLm2sUdYlWNEIjLqp7mqGf2rvD1nqMlKqPuy5YUG8HsZQZf2Fma7O/Lpv0w
+JfrhJdGa2G2yBYdohITB
+=j90f
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.zip.md5
==============================================================================
--- dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.zip.md5 
(added)
+++ dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-0.8.0-bin.zip.md5 
Tue Jun 20 17:28:03 2017
@@ -0,0 +1 @@
+de2663d6999edfa82392e4873662dc67

Added: 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-installer-config.xml
==============================================================================
--- 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-installer-config.xml 
(added)
+++ 
dev/flex/falcon/0.8.0/rc2/binaries/apache-flex-falconjx-installer-config.xml 
Tue Jun 20 17:28:03 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