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

svn commit: r5072 - in /dev/flex: falcon/0.0.1/rc3/ falcon/0.0.1/rc3/binaries/ flexjs/0.0.1/rc2/binaries/

Author: aharui
Date: Thu Apr 17 06:34:29 2014
New Revision: 5072

Log:
rc3 of falconjx package

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

Added: dev/flex/falcon/0.0.1/rc3/READme
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/READme (added)
+++ dev/flex/falcon/0.0.1/rc3/READme Thu Apr 17 06:34:29 2014
@@ -0,0 +1,252 @@
+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. 
+
+    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 falcon
+	 cd falcon
+	 git checkout develop
+
+    The Apache Flex Compiler also requires code from other Apache Flex git
+    repositories or an Apache Flex SDK.  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 sdk
+	 cd 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 tlf
+	 cd 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
+
+    Apache Flex SDK or repository               FLEX_HOME
+
+    Apache Flex TLF source (*6)                 TLF_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. Create the directory,
+        player/11.1 and copy playerglobal11_1.swc to
+        player/11.1/playerglobal.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/11/playerglobal11_2.swc
+            http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_3.swc
+            http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_4.swc
+            http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_5.swc
+            http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_6.swc
+            http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_7.swc
+            http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_8.swc
+            http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_9.swc
+            http://download.macromedia.com/get/flashplayer/updaters/12/playerglobal12_0.swc
+
+        These can be used with Apache Flex but not all have not been fully
+        tested.
+
+    *6) 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.
+
+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.
+
+        antler - http://antlr3.org/download/antlr-3.3-complete.jar
+        commons-cli - http://archive.apache.org/dist/commons/cli/binaries/commons-cli-1.2-bin.tar.gz
+        commons-io - http://archive.apache.org/dist/commons/io/binaries/commons-io-2.0.1.tar.gz
+        guava - http://search.maven.org/remotecontent?filepath=com/google/guava/guava/15.0/guava-15.0.jar
+        jburg - http://downloads.sourceforge.net/project/jburg/jburg-1.10.1.tar.gz
+        jflex - http://jflex.de/jflex-1.5.1.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), 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 need to create a unittest.properties file ( template is found here compiler.tests/template-unittest.properties ). 
+
+
+
+Thanks for using Apache Flex.  Enjoy!
+
+                                          The Apache Flex Project
+                                          <http://flex.apache.org>

Propchange: dev/flex/falcon/0.0.1/rc3/READme
------------------------------------------------------------------------------
    svn:eol-style = native

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

Propchange: dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.tar.gz.asc
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.tar.gz.asc (added)
+++ dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.tar.gz.asc Thu Apr 17 06:34:29 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTT2xoAAoJEIPgQxzanM/yJcQQAJoR6zfbquzU6Fmr5So4yCHd
+SVf32+UN5d5aX3CB6poptphgdyq6xFOm7+kdGeOvNYceBk/xlcykoQlUPo2ZwTCX
+ZKGrM1v8nboiDRCoSE81JmyYnct/fOXuZF1UngfKAEyF1ORuWSOC0lzArqg5mYh7
+Up/qlSpRdQ96NLiy7gN0T0fbZxkYgtYefERz+GDbNTWwrV6Xw0hFmMcfgBklHOGq
+ggHwZE/qCBR9S3/hT8O+F3Mc1WjlSAFFFA2EVPn4ao8tEA9+8YqFeVg87iIdDz8i
+dWRDMvISbPdCWVwJWtEdG5mZ6/PuW01ZeUPMugGxf1OXUYPRHYyTChVevFvaI4O8
+gVp0fuAd7gH9RoMMo4C3LfN39+J6N+ptcMt8g2wjn/B+iw1ocUNDbdRcydRqIyiV
+ZrfB8KctACy0LlPehyfpVKi4suUyU8Sd1IAhxJxXrpe9VIU/s97pSmsoC3cu2pL6
+dITmQ9N900p8TzyTSVj/EvO13jrN1VuWGdQ9eUfYJMdAZf66fQj+XtSGm81XH/IP
+VzGh52uwE7vzTaKkz+otoOrzilK+SOITObpKCcY7f1mEu0kdjq3Qowq9i8hN20kg
+9LbJJUnVYa0lp6HhB/V0fBRJJC9RsYP4yui/0T0fN9CLajFm2PlErVHrn7CpjLoX
+niPsNcSQz+jBdRDH8TR8
+=wddf
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.tar.gz.md5
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.tar.gz.md5 (added)
+++ dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.tar.gz.md5 Thu Apr 17 06:34:29 2014
@@ -0,0 +1 @@
+e4cfad141b2b775420a7c0f29801a7e8

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

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

Added: dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.zip.asc
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.zip.asc (added)
+++ dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.zip.asc Thu Apr 17 06:34:29 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTT2xmAAoJEIPgQxzanM/yf3sQAIEgYnZMsx2NpKwaQxwwL8MJ
+lSypXHu/KglaP/KKY9jtKz25le38qaTfp670YlSZLLV+Hdvx35jA0O5Oa45CJ0ht
+sCnSIAn9eVIpkXSuyE//HpFJsDy8W4zNXXv/fb7bvKMfQLPwabGDxWEAqOPCzhEy
+5onabce4SE4Sn72y80NzkGTPFGZXwTUtDBPirzKxg35DR5QadJW++SHajpi8cP+t
+EXwv27w5vU8JYq3HIAYW+bsvgzhQl0zXun/KgKFWyEOq8Bf9ASuwE2wCX16z3/G2
+Pq7dWXEJke3gejM293/kdjjpQ1Bcwv1T7AXXfmCQFJYvsPwwhcGCyzbgSq63Tz3f
+ebR0vdPIJaknPhP7NY+K8LAQdnwMQ9pM4zHlyX9/bwgAkKeZks6Rbx4U6rkbN8RS
+OUyKjB8u+edMuQ+oW/zwYmMTERbZwfXuBapnLWZFENp3rOFCv+1jflpJMWbhcV74
+ahYpE6SFkgE57GgoGqQc2xDbEiAJ0k+uJLQnE4EruwQYzZKhBag3lugJjKpmLUFN
+ReqU7+wbuUhlncOg1rDNUH0+0INxSBQMCTcdpgAK8XgYegZkMQB7k32di5NtVUOD
+hioiysCy81+FU81G2S+bTWiLrL2O/urFiv2K9q5OZfkt0cCeLeNvyowLOXZ0b0sC
+GI2VH35mA3Z8w/5d1Z9D
+=wUno
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.zip.md5
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.zip.md5 (added)
+++ dev/flex/falcon/0.0.1/rc3/apache-flex-falconjx-0.0.1-src.zip.md5 Thu Apr 17 06:34:29 2014
@@ -0,0 +1 @@
+4a287920d8f3619c36e4eb68f6831e3a

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

Propchange: dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.tar.gz.asc
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.tar.gz.asc (added)
+++ dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.tar.gz.asc Thu Apr 17 06:34:29 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTT2xqAAoJEIPgQxzanM/ypcAP/38BydYuruI+PHaZNRVn4Rvv
+a1r0lGK72lXWs35HtWm8uFBj0pz8nskNgr2xUqMx7kJZASfbz2n9S8P+N3cYLi9d
+mIETjTH93aXEsQA+fDuZa1Qbp6HE4xqyn/+zjyc0/yQn1tFuL7ToRZr50soiGHfH
+L2a1Ch3qrUm06zJlMrOd5CWwf1YgHOytHCt6zLFQkhUccwxEO25rrhYnVP6wvIqW
+xLlEyLVvC2ix05SjTUY2bLE4ls7QKnNFCHFhl53SmBO1ntJasK2uHscNexqrWFkg
+rIT3GAR6KcOH2C329FCydcoc1fPAwI9i8ZTfJBkgh7ytJgyL1BpwBBLtjJ04hevH
+za8d+4LGgER2l4SJdRmxwv3umrCkQb2Y1sNSA2oVIwy33TqHu/l85XwkkXnELOiG
+Lh2A2f1FEwbMwju2wYZSG+ShImxuWTmjx3qfZghg870JDP2nyU8yMwgKhVedxqmA
+s2cFCZsLaL451Hdx8vN1GdW6V6aHqBcuaxretmKAeI2wqlWFNyZ2nsx4EPDAq2yk
+JVKRgaGT9+M+KYpU5BwEkEwAP78zD8P/LgZrC+PKqKDIPOXxcXC5QE0U/9WLGE4G
+T9M/rGXTQHqE/hCupPT5nrqWoxFjKz/anzEZxxaCSdhl6tLiuln76mev/VfsdkRb
+clV2lI6OY2FLdOUiCRLl
+=p8Lr
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.tar.gz.md5
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.tar.gz.md5 (added)
+++ dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.tar.gz.md5 Thu Apr 17 06:34:29 2014
@@ -0,0 +1 @@
+7b54684a10b96e817cdf0b6d4b49c467

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

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

Added: dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.zip.asc
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.zip.asc (added)
+++ dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.zip.asc Thu Apr 17 06:34:29 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTT2xpAAoJEIPgQxzanM/yxW8QAMu3EUxfCRkuE8lmeVP8aP/Y
+aNaU1Q7RNeNp9TjMvNnCeNtcLVddQuq37+bqPSPFcWUoGHPBV3zLVOzjz6M+iqCj
+YjikEUmaOu1EXU251I6r2FVuNOiTS/adjYnWk9ASWWhMCRT6Q4k231nYjV0/HlWB
+8yBuSshkVbKxub01mGKuRpAhX8VKmSvYUyQ3QOwQbf/y2iPjDjt481NxKJKos84V
+zxeHj5FjWCimRbtnoSXLsSalkzxGJP72+zxx1BIuuLW1OMSwaJgJRuZBJFVqJUsh
+vBYPpF3NhKGa63J/t7nJTnIxorPIk2P9UEvvVHlQi/rR4J2joW3rcizqk+IhO2Tp
+Q5xPbdzBL0bLiC57TkH+lYkqQCGst13ecNBDHsA83sYPEo5f1zQfxAaCxVf+DUwI
+XTy8tWH4PnhKNMD5YqKJzAlAcMqgUGLO+GKJMZc5uZUP51akgoOsAH0Tllna8Z4R
+LjOx2kdu9UVBfL+nRAAlkOLoGzquT4brmLL4Ov1o+QFb9e0I7CBSRKyZx2p5XWvj
+hQ2XCTxncyWNlioq/zOFShBaHoC4xdpOZ9rPcMiDSmK0pAb4STxKGgcr3liFcBso
+yCuuVThlevo0vN4h0wD8ylsQsi1gNtGGK8pczJKojPiZe6AVSpnTUoxu/HMbMuvJ
+g1PUgbsB+LukqTdKEFqp
+=aaB6
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.zip.md5
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.zip.md5 (added)
+++ dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-0.0.1-bin.zip.md5 Thu Apr 17 06:34:29 2014
@@ -0,0 +1 @@
+6ef313917611e05bf6e7e26b9513da76

Added: dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-installer-config.xml
==============================================================================
--- dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-installer-config.xml (added)
+++ dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-installer-config.xml Thu Apr 17 06:34:29 2014
@@ -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>

Propchange: dev/flex/falcon/0.0.1/rc3/binaries/apache-flex-falconjx-installer-config.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: dev/flex/flexjs/0.0.1/rc2/binaries/apache-flex-flexjs-installer-config.xml
==============================================================================
--- dev/flex/flexjs/0.0.1/rc2/binaries/apache-flex-flexjs-installer-config.xml (original)
+++ dev/flex/flexjs/0.0.1/rc2/binaries/apache-flex-flexjs-installer-config.xml Thu Apr 17 06:34:29 2014
@@ -28,7 +28,7 @@
     </progressLabels>
      -->
     <properties>
-        <property name="falcon.url.path" value="https://dist.apache.org/repos/dist/dev/flex/falcon/0.0.1/rc2/binaries/" />
+        <property name="falcon.url.path" value="https://dist.apache.org/repos/dist/dev/flex/falcon/0.0.1/rc3/binaries/" />
     </properties>
     <strings description="override default installer strings here">
         <string id="INFO_CREATING_FLEX_HOME">