setup scripts for first attempt at release targets

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

Branch: refs/heads/develop
Commit: b8421ae5380658fa621fa2bfbf76715373321716
Parents: f9c7524
Author: Alex Harui <aha...@apache.org>
Authored: Tue Nov 19 07:59:08 2013 -0800
Committer: Alex Harui <aha...@apache.org>
Committed: Tue Nov 19 07:59:08 2013 -0800

----------------------------------------------------------------------
 RELEASE_NOTES                                   |  20 +
 build.xml                                       | 100 +++--
 env-template.properties                         | 110 +++++
 frameworks/as/build.xml                         |  49 +++
 frameworks/as/flex-config-template.xml          | 354 +++++++++++++++
 .../as/projects/FlexJSUI/build.properties       |  60 ---
 frameworks/as/projects/FlexJSUI/flex-config.xml | 434 -------------------
 .../projects/FlexJSUI/flex-sdk-description.xml  |  25 --
 8 files changed, 601 insertions(+), 551 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8421ae5/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
new file mode 100644
index 0000000..3e36608
--- /dev/null
+++ b/RELEASE_NOTES
@@ -0,0 +1,20 @@
+Apache FlexJS 0.0.1
+=================
+
+Apache FlexJS is a next-generation Flex SDK that provides the capability
+to cross-compile MXML and AS applications to HTML/JS/CSS so they can run
+in a browser without Flash.
+
+Known Issues
+_____________
+
+Adobe Flash Builder Integration
+
+Flash Builder will not generate a correct MXML when using an Apache FlexJS SDK.
+
+Please report new issues to our bugbase at:
+
+    https://issues.apache.org/jira/browse/FLEX
+
+                                          The Apache Flex Project
+                                          <http://flex.apache.org/>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8421ae5/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index c0bad9c..25ef7dc 100644
--- a/build.xml
+++ b/build.xml
@@ -85,7 +85,7 @@
         This does not build the docs.  Use doc-packages or asdoc-packages.
     -->    
     <target name="release" 
-        
depends="check-compile-env,check-runtime-env,check-goog-env,source-release,binary-release,rat-check"
+        
depends="check-compile-env,check-runtime-env,check-falcon-home,check-goog-env,source-release,binary-release,rat-check"
         description="Creates source and binary kits for Apache FlexJS."/>
         
     <target name="source-release" 
@@ -130,7 +130,7 @@
     <target name="prebuild" 
depends="check-compile-env,thirdparty-downloads,create-description" 
         description="Stuff that needs to be done before any builds." />
 
-    <target name="check-compile-env" 
depends="check-playerglobal-home,check-air-home,check-flex-home,check-falcon-home"
+    <target name="check-compile-env" 
depends="check-playerglobal-home,check-air-home,check-flex-home"
         description="Check for the required environment variables for 
compilation.">
             <echo>OS: ${os.name} / ${os.version} / ${os.arch}</echo>
             <echo>VM: ${java.vm.name} / ${java.vm.version}</echo>
@@ -202,31 +202,22 @@
     </target>
 
     <target name="check-falcon-home" unless="FALCON_HOME"
-        description="Check TLF_HOME is a directory.">
+        description="Check FALCON_HOME is a directory.">
         
         <echo message="FALCON_HOME is ${env.FALCON_HOME}"/>
 
-        <available file="${env.FALCON_HOME}" 
+        <available file="${env.FALCON_HOME}/compiler.jx" 
             type="dir" 
             property="FALCON_HOME"
             value="${env.FALCON_HOME}"/>
+            
+        <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" 
+            type="dir" 
+            property="FALCON_HOME"
+            value="${env.FALCON_HOME}/../../../..../"/>
 
-        <fail message="FALCON_HOME must be set correctly for a release build" 
+        <fail message="FALCON_HOME must be set to a flex-falcon repo for a 
release build or compiler/generated/dist/sdk folder in flex-falcon repo" 
             unless="FALCON_HOME"/>
-       
-    </target>
-
-    <target name="check-goog-env" unless="GOOG_HOME.set"
-        description="Check GOOG_HOME is a directory.">
-        
-        <echo message="GOOG_HOME is ${env.GOOG_HOME}"/>
-
-        <available file="${env.GOOG_HOME}" 
-            type="file" 
-            property="GOOG_HOME.set"/>
-
-        <fail message="GOOG_HOME must be set correctly for a release build" 
-            unless="GOOG_HOME.set"/>
     </target>
 
     <target name="create-description" description="Generate 
flex-sdk-description.xml">
@@ -432,12 +423,13 @@
                 <include name="build.properties"/>
                                <include name="env-template.properties"/>
                 <include name="flex-sdk-description.xml"/>
-                <include name="CHANGES"/>
-                <include name="LICENSE"/>
-                <include name="NOTICE"/>
                 <include name="README"/>
                 <include name="RELEASE_NOTES"/>
             </fileset>
+            <fileset dir="${FLEX_HOME}">
+                <include name="LICENSE"/>
+                <include name="NOTICE"/>
+            </fileset>
         </copy>
          
         <!-- frameworks/as -->
@@ -446,14 +438,15 @@
         <!-- frameworks/as -->
         <antcall target="stage-framework-js"/>
 
-        <!-- asdoc -->
+        <!-- asdoc
         <copy todir="${basedir}/temp/asdoc" includeEmptyDirs="false">
             <fileset dir="${basedir}/asdoc">
                <exclude name="test/**" />
             </fileset>
-        </copy>  
+        </copy> 
+        --> 
 
-        <!-- ide -->
+        <!-- ide
         <copy todir="${basedir}/temp/ide">
             <fileset dir="${basedir}/ide" >
                <include name="flashbuilder/**"/>
@@ -461,7 +454,8 @@
                <include name="*.bat"/>
             </fileset>
         </copy>
-
+        -->
+        
         <!-- samples -->
         <copy todir="${basedir}/temp/examples">
             <fileset dir="${basedir}/examples" >
@@ -470,7 +464,7 @@
             </fileset>
         </copy>
         
-        <!-- templates -->
+        <!-- templates
         <copy todir="${basedir}/temp/templates">
             <fileset dir="${basedir}/templates" >
                 <include name="swfobject/**"/>
@@ -478,6 +472,7 @@
                 <exclude name="**/swfobject.js"/>
             </fileset>
         </copy>
+        -->
         
         <!-- 
              Source files have Windows line endings.  Most UNIX editors can 
handle
@@ -554,7 +549,28 @@
     
     <target name="stage-falcon">
         <copy todir="${basedir}/temp/bin" includeEmptyDirs="false">
-            <fileset dir="${basedir}/bin">
+            <fileset dir="${FALCON_HOME}/compiler/generated/dist/sdk/bin">
+                <include name="*"/>
+                <exclude name="adl*"/>
+                <exclude name="adt*"/>
+            </fileset>
+        </copy>
+        <copy todir="${basedir}/temp/bin-legacy" includeEmptyDirs="false">
+            <fileset 
dir="${FALCON_HOME}/compiler/generated/dist/sdk/bin-legacy">
+                <include name="*"/>
+                <exclude name="adl*"/>
+                <exclude name="adt*"/>
+            </fileset>
+        </copy>
+        <copy todir="${basedir}/temp/ant/lib" includeEmptyDirs="false">
+            <fileset dir="${FALCON_HOME}/compiler/generated/dist/sdk/ant/lib">
+                <include name="*"/>
+                <exclude name="adl*"/>
+                <exclude name="adt*"/>
+            </fileset>
+        </copy>
+        <copy todir="${basedir}/temp/lib" includeEmptyDirs="false">
+            <fileset dir="${FALCON_HOME}/compiler/generated/dist/sdk//lib">
                 <include name="*"/>
                 <exclude name="adl*"/>
                 <exclude name="adt*"/>
@@ -569,12 +585,21 @@
         <fixcrlf srcdir="${basedir}/temp/bin" eol="unix" fixlast="false">  
             <exclude name="**/*.bat"/>
         </fixcrlf>
+        
+        <fixcrlf srcdir="${basedir}/temp/bin-legacy" eol="crlf" 
fixlast="false">
+            <include name="**/*.bat"/>
+        </fixcrlf>
+  
+          <!-- Unix shell scripts need the correct line endings. -->      
+        <fixcrlf srcdir="${basedir}/temp/bin-legacy" eol="unix" 
fixlast="false">  
+            <exclude name="**/*.bat"/>
+        </fixcrlf>
     </target>
         
     <target name="stage-falconjx">
         <!-- modules -->
-        <copy todir="${basedir}/temp/modules" includeEmptyDirs="false">
-            <fileset dir="${basedir}/modules">
+        <copy todir="${basedir}/temp/js/bin" includeEmptyDirs="false">
+            <fileset dir="${FALCON_HOME}/compiler.jx/bin">
                 <include name="**"/>
                 <exclude name="thirdparty/**"/>
                 <exclude name=".metadata/**"/>
@@ -592,11 +617,12 @@
                 <exclude name="**/.classpath"/>
                 <exclude name="**/.project"/>
             </fileset>
+            
         </copy>  
 
         <!-- modules/thirdparty -->
-        <copy todir="${basedir}/temp/modules/thirdparty" 
includeEmptyDirs="true">
-            <fileset dir="${basedir}/modules/thirdparty">
+        <copy todir="${basedir}/temp/js/lib" includeEmptyDirs="true">
+            <fileset dir="${FALCON_HOME}/compiler.jx/lib">
                 <include name="**"/>
                 <exclude name="**/classes/**"/>
                 <exclude name="**/.classpath"/>
@@ -604,6 +630,16 @@
                 <exclude name="*/test*/**"/>
             </fileset>
         </copy>  
+        
+        <fixcrlf srcdir="${basedir}/temp/js/bin" eol="crlf" fixlast="false">
+            <include name="**/*.bat"/>
+        </fixcrlf>
+  
+          <!-- Unix shell scripts need the correct line endings. -->      
+        <fixcrlf srcdir="${basedir}/temp/js/bin" eol="unix" fixlast="false">  
+            <exclude name="**/*.bat"/>
+        </fixcrlf>
+
     </target>
     
     <target name="binary-package"

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8421ae5/env-template.properties
----------------------------------------------------------------------
diff --git a/env-template.properties b/env-template.properties
new file mode 100644
index 0000000..d1465ca
--- /dev/null
+++ b/env-template.properties
@@ -0,0 +1,110 @@
+################################################################################
+##
+##  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.
+##
+################################################################################
+
+# If you chose to use this file rename it to env.properties and uncomment the
+# properties you wish to set.
+
+# For each of
+#
+#   AIR_HOME
+#   FLASHPLAYER_DEBUGGER
+#   PLAYERGLOBAL_HOME
+#   PIXELBENDER_HOME
+#   ADOBE_EXTENSION_MANAGER
+#
+# you need to set an environment variable with that name or set the property 
here
+# prefixed with "env.".  If a property is set in this file, and the 
corresponding 
+# environment variable is also set, the property set here takes precedence 
over the 
+# corresponding environment variable.
+#
+# Use absolute file paths. 
+# 
+# This is a Java property file.  On Windows if you use the '\' file 
+# separator you must use "\\", but not escape spaces, for example,
+#
+#       
env.FLASHPLAYER_DEBUGGER=z:\\tools\\player\\flashplayer_11_sa_debug_32bit.exe
+#                      or
+#       env.PIXELBENDER_HOME=C:\\Program Files (x86)\\Adobe\\Adobe Utilities - 
CS5\\Pixel Bender Toolkit 2
+#
+# See the README file for more information about the different variables.
+
+#
+# Set this to the directory that contains the unzipped Adobe AIR SDK for your
+# platform.
+#
+#env.AIR_HOME=
+
+#
+# Set this to absolute path that contains the Adobe Flash Player content 
debugger
+# for your platform.  
+#
+#env.FLASHPLAYER_DEBUGGER=
+
+#
+# PLAYERGLOBAL_HOME is a directory which contains one or more subdirectories.
+# The name of each subdirectory corresponds to a supported target player 
version and
+# in each of the subdirectories is the playerglobal.swc that corresponds to 
that target 
+# player.  The default 
+# 
+# For this sample directory structure, set PLAYERGLOBAL_HOME to the full path 
of the
+# player directory.
+#
+#       - player (dir)
+#           - 11.1 (dir)
+#               playerglobal.swc (file)
+#
+#env.PLAYERGLOBAL_HOME=
+
+#
+# Set this to the directory that contains the Adobe Pixel Bender Toolkit
+# for your platform.
+#
+# On Windows (32-bit), if installed to the default location, the setting would 
be
+#   env.PIXELBENDER_HOME=C:\\Program Files\\Adobe\\Adobe Utilities - 
CS5\\Pixel Bender Toolkit 2
+#
+# or on a 64-bit version of Windows
+#      env.PIXELBENDER_HOME=C:\\Program Files (x86)\\Adobe\\Adobe Utilities - 
CS5\\Pixel Bender Toolkit 2
+#
+# Note: the folder "Program Files" (or "Program Files (x86)") might have a 
different name
+# depending on the language of your Windows installation.
+#
+# On Mac, if installed to the default location, the setting would be
+#   env.PIXELBENDER_HOME=/Applications/Utilities/Adobe 
Utilities-CS5.localized/Pixel Bender Toolkit 2/
+#
+#env.PIXELBENDER_HOME=
+
+#
+# Set this to the file that contains the Adobe Extension Manager CS5
+# for your platform.  This is optional and is only required for those
+# who need flash integration in order to build the MXP for the flash 
integration kit.
+#
+# On Windows (32-bit), if installed to the default location, the setting would 
be
+#   env.ADOBE_EXTENSION_MANAGER=C:\\Program Files\\Adobe\\Adobe Extension 
Manager CS5\\Adobe Extension Manager CS5.exe
+#
+# or on a 64-bit version of Windows
+#   env.ADOBE_EXTENSION_MANAGER=C:\\Program Files (x86)\\Adobe\\Adobe 
Extension Manager CS5\\Adobe Extension Manager CS5.exe
+#
+# Note: the folder "Program Files" (or "Program Files (x86)") might have a 
different name
+# depending on the language of your Windows installation.
+#
+# On Mac, if installed to the default location, the setting would be
+#   env.ADOBE_EXTENSION_MANAGER=/Applications/Adobe Extension Manager 
CS5/Adobe Extension Manager CS5.app/Contents/MacOS/Adobe Extension Manager CS5
+#
+#env.ADOBE_EXTENSION_MANAGER=
+

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8421ae5/frameworks/as/build.xml
----------------------------------------------------------------------
diff --git a/frameworks/as/build.xml b/frameworks/as/build.xml
index 0bcc1ac..565d243 100644
--- a/frameworks/as/build.xml
+++ b/frameworks/as/build.xml
@@ -129,4 +129,53 @@
         <ant dir="${basedir}/projects/MXMLCClasses"/>
     </target>
 
+       <target name="flex-config" depends="playerglobal-setswfversion" 
description="Copy the flex config template to flex-config.xml and inject 
version numbers">
+               <copy file="${basedir}/flex-config-template.xml" 
tofile="${basedir}/flex-config.xml" overwrite="true">
+                       <filterset>
+                               <filter token="playerversion" 
value="${playerglobal.version}"/>
+                               <filter token="swfversion" 
value="${playerglobal.swfversion}"/>
+                               <filter token="locale" value="${locale}"/>
+                       </filterset>
+               </copy>
+       </target>
+               
+       <target name="playerglobal-setswfversion" description="Set the 
swfversion to insert into the flex config file">
+               <condition property="playerglobal.swfversion" value="11">
+                       <equals arg1="${playerglobal.version}" arg2="10.2" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="12">
+                       <equals arg1="${playerglobal.version}" arg2="10.3" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="13">
+                       <equals arg1="${playerglobal.version}" arg2="11.0" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="14">
+                       <equals arg1="${playerglobal.version}" arg2="11.1" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="15">
+                       <equals arg1="${playerglobal.version}" arg2="11.2" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="16">
+                       <equals arg1="${playerglobal.version}" arg2="11.3" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="17">
+                       <equals arg1="${playerglobal.version}" arg2="11.4" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="18">
+                       <equals arg1="${playerglobal.version}" arg2="11.5" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="19">
+                       <equals arg1="${playerglobal.version}" arg2="11.6" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="20">
+                       <equals arg1="${playerglobal.version}" arg2="11.7" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="21">
+                       <equals arg1="${playerglobal.version}" arg2="11.8" />
+               </condition>
+               <condition property="playerglobal.swfversion" value="22">
+                       <equals arg1="${playerglobal.version}" arg2="11.9" />
+               </condition>
+       </target>       
+
 </project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8421ae5/frameworks/as/flex-config-template.xml
----------------------------------------------------------------------
diff --git a/frameworks/as/flex-config-template.xml 
b/frameworks/as/flex-config-template.xml
new file mode 100644
index 0000000..2d37ae1
--- /dev/null
+++ b/frameworks/as/flex-config-template.xml
@@ -0,0 +1,354 @@
+<?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.
+
+-->
+
+
+<flex-config>
+    <!-- Specifies the minimum player version that will run the compiled SWF. 
-->
+   <target-player>@playerversion@</target-player>
+
+    <!-- Specifies the version of the compiled SWF -->
+   <swf-version>@swfversion@</swf-version>
+
+   <compiler>
+
+      <!-- Turn on generation of accessible SWFs. -->
+      <accessible>true</accessible>
+
+      <!-- Specifies the locales for internationalization. -->
+      <locale>
+          <locale-element>@locale@</locale-element>
+      </locale>
+
+      <!-- List of path elements that form the roots of ActionScript class 
hierarchies. -->
+      <!-- not set -->
+      <!--
+      <source-path>
+         <path-element>string</path-element>
+      </source-path>
+      -->
+
+     <!-- Allow the source-path to have path-elements which contain other 
path-elements -->
+     <allow-source-path-overlap>false</allow-source-path-overlap>
+
+      <!-- Run the AS3 compiler in a mode that detects legal but potentially 
incorrect -->
+      <!-- code.                                                               
        -->
+      <show-actionscript-warnings>true</show-actionscript-warnings>
+
+      <!-- Turn on generation of debuggable SWFs. False by default for mxmlc, 
-->
+      <!-- but true by default for compc. -->
+      <!--
+      <debug>true</debug>
+      -->
+
+      <!-- List of SWC files or directories to compile against but to omit 
from -->
+      <!-- linking.                                                            
 -->
+      <external-library-path>
+          
<path-element>libs/player/{targetPlayerMajorVersion}.{targetPlayerMinorVersion}/playerglobal.swc</path-element>
+      </external-library-path>
+
+      <!-- Turn on writing of generated/*.as files to disk. These files are 
generated by -->
+      <!-- the compiler during mxml translation and are helpful with 
understanding and   -->
+      <!-- debugging Flex applications.                                        
          -->
+      <keep-generated-actionscript>false</keep-generated-actionscript>
+
+      <!-- not set -->
+      <!--
+      <include-libraries>
+         <library>string</library>
+      </include-libraries>
+      -->
+
+      <!-- List of SWC files or directories that contain SWC files. -->
+      <library-path>
+         <path-element>libs</path-element>
+         <path-element>locale/en_US</path-element>
+         
<path-element>libs/player/{targetPlayerMajorVersion}.{targetPlayerMinorVersion}</path-element>
+      </library-path>
+
+      <namespaces>
+      <!-- Specify a URI to associate with a manifest of components for use as 
MXML -->
+      <!-- elements.                                                           
     -->
+         <namespace>
+            <uri>library://ns.apache.org/flexjs/basic</uri>
+            
+            <manifest>basic-manifest.xml</manifest>
+         
+        </namespace>                                                 
+         <namespace>
+            <uri>library://ns.apache.org/flexjs/html5</uri>
+            
+            <manifest>html5-manifest.xml</manifest>
+         
+        </namespace>   
+      </namespaces>
+
+      <!-- Enable post-link SWF optimization. -->
+      <optimize>true</optimize>
+
+      <!-- Enable trace statement omission. -->
+      <omit-trace-statements>true</omit-trace-statements>
+
+      <!-- Keep the following AS3 metadata in the bytecodes.                   
                          -->
+      <!-- Warning: For the data binding feature in the Flex framework to work 
properly,                 -->
+      <!--          the following metadata must be kept:                       
                          -->
+      <!--          1. Bindable                                                
                          -->
+      <!--          2. Managed                                                 
                          -->
+      <!--          3. ChangeEvent                                             
                          -->
+      <!--          4. NonCommittingChangeEvent                                
                          -->
+      <!--          5. Transient                                               
                          -->
+      <!--
+      <keep-as3-metadata>
+          <name>Bindable</name>
+          <name>Managed</name>
+          <name>ChangeEvent</name>
+          <name>NonCommittingChangeEvent</name>
+          <name>Transient</name>
+      </keep-as3-metadata>
+      -->
+
+      <!-- Turn on reporting of data binding warnings. For example: Warning: 
Data binding -->
+      <!-- will not be able to detect assignments to "foo".                    
           -->
+      <show-binding-warnings>true</show-binding-warnings>
+
+      <!-- toggle whether warnings generated from unused type selectors are 
displayed -->
+      
<show-unused-type-selector-warnings>true</show-unused-type-selector-warnings>
+
+      <!-- Run the AS3 compiler in strict error checking mode. -->
+      <strict>true</strict>
+
+      <!-- Use the ActionScript 3 class based object model for greater 
performance and better error reporting. -->
+      <!-- In the class based object model most built-in functions are 
implemented as fixed methods of classes -->
+      <!-- (-strict is recommended, but not required, for earlier errors) -->
+      <as3>true</as3>
+
+      <!-- Use the ECMAScript edition 3 prototype based object model to allow 
dynamic overriding of prototype -->
+      <!-- properties. In the prototype based object model built-in functions 
are implemented as dynamic      -->
+      <!-- properties of prototype objects (-strict is allowed, but may result 
in compiler errors for         -->
+      <!-- references to dynamic properties) -->
+      <es>false</es>
+
+      <!-- List of CSS or SWC files to apply as a theme. -->
+      <theme>
+      </theme>
+
+      <!-- Turns on the display of stack traces for uncaught runtime errors. 
-->
+      <verbose-stacktraces>false</verbose-stacktraces>
+
+      <!-- Defines the AS3 file encoding. -->
+      <!-- not set -->
+      <!--
+      <actionscript-file-encoding></actionscript-file-encoding>
+      -->
+
+      <fonts>
+
+          <!-- Enables advanced anti-aliasing for embedded fonts, which 
provides greater clarity for small -->
+          <!-- fonts. This setting can be overriden in CSS for specific fonts. 
-->
+          <!-- NOTE: flash-type has been deprecated. Please use 
advanced-anti-aliasing <flash-type>true</flash-type> -->
+          <advanced-anti-aliasing>true</advanced-anti-aliasing>
+
+          <!-- The number of embedded font faces that are cached. -->
+          <max-cached-fonts>20</max-cached-fonts>
+
+          <!-- The number of character glyph outlines to cache for each font 
face. -->
+          <max-glyphs-per-face>1000</max-glyphs-per-face>
+
+          <!-- Defines ranges that can be used across multiple font-face 
declarations. -->
+          <!-- See flash-unicode-table.xml for more examples. -->
+          <!-- not set -->
+          <!--
+          <languages>
+              <language-range>
+                  <lang>englishRange</lang>
+                  <range>U+0020-007E</range>
+              </language-range>
+          </languages>
+          -->
+
+          <!-- Compiler font manager classes, in policy resolution order -->
+          <!-- NOTE: For Apache Flex -->
+          <!-- AFEFontManager and CFFFontManager both use proprietary 
technology.  -->
+          <!-- You must install the optional font jars if you wish to use 
embedded fonts  -->
+          <!-- directly or you can use fontswf to precompile the font as a 
swf.  -->
+          <managers>
+              <manager-class>flash.fonts.JREFontManager</manager-class>
+              <manager-class>flash.fonts.BatikFontManager</manager-class>
+              <manager-class>flash.fonts.AFEFontManager</manager-class>
+              <manager-class>flash.fonts.CFFFontManager</manager-class>
+          </managers>
+
+          <!-- File containing cached system font licensing information 
produced via
+               java -cp mxmlc.jar flex2.tools.FontSnapshot (fontpath)
+               Will default to winFonts.ser on Windows XP and
+               macFonts.ser on Mac OS X, so is commented out by default.
+
+          <local-fonts-snapshot>localFonts.ser</local-fonts-snapshot>
+          -->
+
+      </fonts>
+      
+      <!-- Array.toString() format has changed. -->
+      <warn-array-tostring-changes>false</warn-array-tostring-changes>
+
+      <!-- Assignment within conditional. -->
+      
<warn-assignment-within-conditional>true</warn-assignment-within-conditional>
+
+      <!-- Possibly invalid Array cast operation. -->
+      <warn-bad-array-cast>true</warn-bad-array-cast>
+
+      <!-- Non-Boolean value used where a Boolean value was expected. -->
+      <warn-bad-bool-assignment>true</warn-bad-bool-assignment>
+
+      <!-- Invalid Date cast operation. -->
+      <warn-bad-date-cast>true</warn-bad-date-cast>
+
+      <!-- Unknown method. -->
+      <warn-bad-es3-type-method>true</warn-bad-es3-type-method>
+
+      <!-- Unknown property. -->
+      <warn-bad-es3-type-prop>true</warn-bad-es3-type-prop>
+
+      <!-- Illogical comparison with NaN. Any comparison operation involving 
NaN will evaluate to false because NaN != NaN. -->
+      <warn-bad-nan-comparison>true</warn-bad-nan-comparison>
+
+      <!-- Impossible assignment to null. -->
+      <warn-bad-null-assignment>true</warn-bad-null-assignment>
+
+      <!-- Illogical comparison with null. -->
+      <warn-bad-null-comparison>true</warn-bad-null-comparison>
+
+      <!-- Illogical comparison with undefined. Only untyped variables (or 
variables of type *) can be undefined. -->
+      <warn-bad-undefined-comparison>true</warn-bad-undefined-comparison>
+
+      <!-- Boolean() with no arguments returns false in ActionScript 3.0. 
Boolean() returned undefined in ActionScript 2.0. -->
+      
<warn-boolean-constructor-with-no-args>false</warn-boolean-constructor-with-no-args>
+
+      <!-- __resolve is no longer supported. -->
+      <warn-changes-in-resolve>false</warn-changes-in-resolve>
+
+      <!-- Class is sealed. It cannot have members added to it dynamically. -->
+      <warn-class-is-sealed>true</warn-class-is-sealed>
+
+      <!-- Constant not initialized. -->
+      <warn-const-not-initialized>true</warn-const-not-initialized>
+
+      <!-- Function used in new expression returns a value. Result will be 
what the -->
+      <!-- function returns, rather than a new instance of that function.      
     -->
+      <warn-constructor-returns-value>false</warn-constructor-returns-value>
+
+      <!-- EventHandler was not added as a listener. -->
+      
<warn-deprecated-event-handler-error>false</warn-deprecated-event-handler-error>
+
+      <!-- Unsupported ActionScript 2.0 function. -->
+      <warn-deprecated-function-error>true</warn-deprecated-function-error>
+
+      <!-- Unsupported ActionScript 2.0 property. -->
+      <warn-deprecated-property-error>true</warn-deprecated-property-error>
+
+      <!-- More than one argument by the same name. -->
+      <warn-duplicate-argument-names>true</warn-duplicate-argument-names>
+
+      <!-- Duplicate variable definition -->
+      <warn-duplicate-variable-def>true</warn-duplicate-variable-def>
+
+      <!-- ActionScript 3.0 iterates over an object's properties within a "for 
x in target" statement in random order. -->
+      <warn-for-var-in-changes>false</warn-for-var-in-changes>
+
+      <!-- Importing a package by the same name as the current class will hide 
that class identifier in this scope. -->
+      <warn-import-hides-class>true</warn-import-hides-class>
+
+      <!-- Use of the instanceof operator. -->
+      <warn-instance-of-changes>true</warn-instance-of-changes>
+
+      <!-- Internal error in compiler. -->
+      <warn-internal-error>true</warn-internal-error>
+
+      <!-- _level is no longer supported. For more information, see the 
flash.display package. -->
+      <warn-level-not-supported>true</warn-level-not-supported>
+
+      <!-- Missing namespace declaration (e.g. variable is not defined to be 
public, private, etc.). -->
+      <warn-missing-namespace-decl>true</warn-missing-namespace-decl>
+
+      <!-- Negative value will become a large positive value when assigned to 
a uint data type. -->
+      <warn-negative-uint-literal>true</warn-negative-uint-literal>
+
+      <!-- Missing constructor. -->
+      <warn-no-constructor>false</warn-no-constructor>
+
+      <!-- The super() statement was not called within the constructor. -->
+      
<warn-no-explicit-super-call-in-constructor>false</warn-no-explicit-super-call-in-constructor>
+
+      <!-- Missing type declaration. -->
+      <warn-no-type-decl>true</warn-no-type-decl>
+
+      <!-- In ActionScript 3.0, white space is ignored and '' returns 0. 
Number() returns -->
+      <!-- NaN in ActionScript 2.0 when the parameter is '' or contains white 
space.      -->
+      <warn-number-from-string-changes>false</warn-number-from-string-changes>
+
+      <!-- Change in scoping for the this keyword. Class methods extracted 
from an  -->
+      <!-- instance of a class will always resolve this back to that instance. 
In   -->
+      <!-- ActionScript 2.0 this is looked up dynamically based on where the 
method -->
+      <!-- is invoked from.                                                    
     -->
+      <warn-scoping-change-in-this>false</warn-scoping-change-in-this>
+
+      <!-- Inefficient use of += on a TextField.-->
+      <warn-slow-text-field-addition>true</warn-slow-text-field-addition>
+
+      <!-- Possible missing parentheses. -->
+      <warn-unlikely-function-value>true</warn-unlikely-function-value>
+
+      <!-- Possible usage of the ActionScript 2.0 XML class. -->
+      <warn-xml-class-has-changed>false</warn-xml-class-has-changed>
+
+   </compiler>
+
+   <!-- compute-digest: writes a digest to the catalog.xml of a library. Use 
this when the library will be used as a
+                        cross-domain rsl.-->
+   <!-- compute-digest usage:
+   <compute-digest>boolean</compute-digest>
+   -->
+
+   <!-- remove-unused-rsls: remove RSLs that are not being used by the 
application-->
+   <remove-unused-rsls>true</remove-unused-rsls>
+
+       <!-- static-link-runtime-shared-libraries: statically link the 
libraries specified by the -runtime-shared-libraries-path option.-->
+       
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
+
+   <!-- target-player: specifies the version of the player the application is 
targeting.
+                       Features requiring a later version will not be compiled 
into the application.
+                       The minimum value supported is "9.0.0".-->
+   <!-- target-player usage:
+   <target-player>version</target-player>
+   -->
+
+   <!-- Enables SWFs to access the network. -->
+   <use-network>true</use-network>
+
+   <!-- Metadata added to SWFs via the SWF Metadata tag. -->
+   <metadata>
+      <title>Apache FlexJS Application</title>
+      <description>http://flex.apache.org/</description>
+      <publisher>Apache Software Foundation</publisher>
+      <creator>unknown</creator>
+      <language>EN</language>
+   </metadata>
+   
+</flex-config>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8421ae5/frameworks/as/projects/FlexJSUI/build.properties
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/build.properties 
b/frameworks/as/projects/FlexJSUI/build.properties
deleted file mode 100644
index 06c0c33..0000000
--- a/frameworks/as/projects/FlexJSUI/build.properties
+++ /dev/null
@@ -1,60 +0,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.
-##
-################################################################################
-
-# flex-sdk-description values
-release = Apache Flex ASJS 0.0.1
-release.version = 0.0.1
-
-# override on command line with -Dbuild.number=999 or in local.properties
-build.number = 0
-
-playerglobal.version = 11.1
-
-# locale = en_US
-
-qa.dir = ${basedir}/../qa
-asc = ${basedir}/bin/asc
-
-# TextLayoutFormat version.  This is a sub-directory in frameworks/textLayout.
-tlf.version = 3.0.33
-
-# For Java 7 on Mac OS X, you need an Intel-based Mac running Mac OS X version 
10.7.3 
-# (Lion) and above.  Only the 64-bit data model is available so leave this 
blank.
-# Since ant properties are immutable, if this property is set in the build 
file before
-# this file is included, setting it to nothing here is a no-op.
-local.d32 =
-
-src.depend = true
-src.debug = on
-
-# JVM options for <compc> and <mxmlc> tasks
-jvm.args = ${local.d32} -Xms64m -Xmx384m -ea -Dapple.awt.UIElement=true
-    # -d32/-d64 for 32-bit/64-bit code model (or don't specify for the default)
-       # -Xms64m: start out with a 64 MB heap
-       # -Xmx384m: allow the heap to grow to 384 MB
-       # -ea: enable Java assertions
-compc.jvm.args = ${jvm.args}
-mxmlc.jvm.args = ${jvm.args}
-
-# JAR Manifest Entries
-manifest.sealed=false
-manifest.Implementation-Title=Apache Flex ASJS
-manifest.Implementation-Version=${release.version}
-manifest.Implementation-Vendor=The Apache Software Foundation
-manifest.Implementation-Vendor-Id=org.apache

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8421ae5/frameworks/as/projects/FlexJSUI/flex-config.xml
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/flex-config.xml 
b/frameworks/as/projects/FlexJSUI/flex-config.xml
deleted file mode 100644
index e91d830..0000000
--- a/frameworks/as/projects/FlexJSUI/flex-config.xml
+++ /dev/null
@@ -1,434 +0,0 @@
-<?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.
-
--->
-
-
-<flex-config>
-    <!-- Specifies the minimum player version that will run the compiled SWF. 
-->
-   <target-player>11.1</target-player>
-
-    <!-- Specifies the version of the compiled SWF -->
-   <swf-version>14</swf-version>
-
-   <compiler>
-
-      <!-- Turn on generation of accessible SWFs. -->
-      <accessible>true</accessible>
-
-      <!-- Specifies the locales for internationalization. -->
-      <locale>
-          <locale-element>en_US</locale-element>
-      </locale>
-
-      <!-- List of path elements that form the roots of ActionScript class 
hierarchies. -->
-      <!-- not set -->
-      <!--
-      <source-path>
-         <path-element>string</path-element>
-      </source-path>
-      -->
-
-     <!-- Allow the source-path to have path-elements which contain other 
path-elements -->
-     <allow-source-path-overlap>false</allow-source-path-overlap>
-
-      <!-- Run the AS3 compiler in a mode that detects legal but potentially 
incorrect -->
-      <!-- code.                                                               
        -->
-      <show-actionscript-warnings>true</show-actionscript-warnings>
-
-      <!-- Turn on generation of debuggable SWFs. False by default for mxmlc, 
-->
-      <!-- but true by default for compc. -->
-      <!--
-      <debug>true</debug>
-      -->
-
-      <!-- List of SWC files or directories to compile against but to omit 
from -->
-      <!-- linking.                                                            
 -->
-      <external-library-path>
-          
<path-element>libs/player/{targetPlayerMajorVersion}.{targetPlayerMinorVersion}/playerglobal.swc</path-element>
-      </external-library-path>
-
-      <!-- Turn on writing of generated/*.as files to disk. These files are 
generated by -->
-      <!-- the compiler during mxml translation and are helpful with 
understanding and   -->
-      <!-- debugging Flex applications.                                        
          -->
-      <keep-generated-actionscript>false</keep-generated-actionscript>
-
-      <!-- not set -->
-      <!--
-      <include-libraries>
-         <library>string</library>
-      </include-libraries>
-      -->
-
-      <!-- List of SWC files or directories that contain SWC files. -->
-      <library-path>
-         <path-element>libs</path-element>
-         <path-element>locale/en_US</path-element>
-         
<path-element>libs/player/{targetPlayerMajorVersion}.{targetPlayerMinorVersion}</path-element>
-      </library-path>
-
-      <namespaces>
-      <!-- Specify a URI to associate with a manifest of components for use as 
MXML -->
-      <!-- elements.                                                           
     -->
-         <namespace>
-            <uri>library://ns.apache.org/flexjs/basic</uri>
-            
-            <manifest>basic-manifest.xml</manifest>
-         
-        </namespace>                                                 
-         <namespace>
-            <uri>library://ns.apache.org/flexjs/html5</uri>
-            
-            <manifest>html5-manifest.xml</manifest>
-         
-        </namespace>   
-      </namespaces>
-
-      <!-- Enable post-link SWF optimization. -->
-      <optimize>true</optimize>
-
-      <!-- Enable trace statement omission. -->
-      <omit-trace-statements>true</omit-trace-statements>
-
-      <!-- Keep the following AS3 metadata in the bytecodes.                   
                          -->
-      <!-- Warning: For the data binding feature in the Flex framework to work 
properly,                 -->
-      <!--          the following metadata must be kept:                       
                          -->
-      <!--          1. Bindable                                                
                          -->
-      <!--          2. Managed                                                 
                          -->
-      <!--          3. ChangeEvent                                             
                          -->
-      <!--          4. NonCommittingChangeEvent                                
                          -->
-      <!--          5. Transient                                               
                          -->
-      <!--
-      <keep-as3-metadata>
-          <name>Bindable</name>
-          <name>Managed</name>
-          <name>ChangeEvent</name>
-          <name>NonCommittingChangeEvent</name>
-          <name>Transient</name>
-      </keep-as3-metadata>
-      -->
-
-      <!-- Turn on reporting of data binding warnings. For example: Warning: 
Data binding -->
-      <!-- will not be able to detect assignments to "foo".                    
           -->
-      <show-binding-warnings>true</show-binding-warnings>
-
-      <!-- toggle whether warnings generated from unused type selectors are 
displayed -->
-      
<show-unused-type-selector-warnings>true</show-unused-type-selector-warnings>
-
-      <!-- Run the AS3 compiler in strict error checking mode. -->
-      <strict>true</strict>
-
-      <!-- Use the ActionScript 3 class based object model for greater 
performance and better error reporting. -->
-      <!-- In the class based object model most built-in functions are 
implemented as fixed methods of classes -->
-      <!-- (-strict is recommended, but not required, for earlier errors) -->
-      <as3>true</as3>
-
-      <!-- Use the ECMAScript edition 3 prototype based object model to allow 
dynamic overriding of prototype -->
-      <!-- properties. In the prototype based object model built-in functions 
are implemented as dynamic      -->
-      <!-- properties of prototype objects (-strict is allowed, but may result 
in compiler errors for         -->
-      <!-- references to dynamic properties) -->
-      <es>false</es>
-
-      <!-- List of CSS or SWC files to apply as a theme. -->
-      <theme>
-      </theme>
-
-      <!-- Turns on the display of stack traces for uncaught runtime errors. 
-->
-      <verbose-stacktraces>false</verbose-stacktraces>
-
-      <!-- Defines the AS3 file encoding. -->
-      <!-- not set -->
-      <!--
-      <actionscript-file-encoding></actionscript-file-encoding>
-      -->
-
-      <fonts>
-
-          <!-- Enables advanced anti-aliasing for embedded fonts, which 
provides greater clarity for small -->
-          <!-- fonts. This setting can be overriden in CSS for specific fonts. 
-->
-          <!-- NOTE: flash-type has been deprecated. Please use 
advanced-anti-aliasing <flash-type>true</flash-type> -->
-          <advanced-anti-aliasing>true</advanced-anti-aliasing>
-
-          <!-- The number of embedded font faces that are cached. -->
-          <max-cached-fonts>20</max-cached-fonts>
-
-          <!-- The number of character glyph outlines to cache for each font 
face. -->
-          <max-glyphs-per-face>1000</max-glyphs-per-face>
-
-          <!-- Defines ranges that can be used across multiple font-face 
declarations. -->
-          <!-- See flash-unicode-table.xml for more examples. -->
-          <!-- not set -->
-          <!--
-          <languages>
-              <language-range>
-                  <lang>englishRange</lang>
-                  <range>U+0020-007E</range>
-              </language-range>
-          </languages>
-          -->
-
-          <!-- Compiler font manager classes, in policy resolution order -->
-          <!-- NOTE: For Apache Flex -->
-          <!-- AFEFontManager and CFFFontManager both use proprietary 
technology.  -->
-          <!-- You must install the optional font jars if you wish to use 
embedded fonts  -->
-          <!-- directly or you can use fontswf to precompile the font as a 
swf.  -->
-          <managers>
-              <manager-class>flash.fonts.JREFontManager</manager-class>
-              <manager-class>flash.fonts.BatikFontManager</manager-class>
-              <manager-class>flash.fonts.AFEFontManager</manager-class>
-              <manager-class>flash.fonts.CFFFontManager</manager-class>
-          </managers>
-
-          <!-- File containing cached system font licensing information 
produced via
-               java -cp mxmlc.jar flex2.tools.FontSnapshot (fontpath)
-               Will default to winFonts.ser on Windows XP and
-               macFonts.ser on Mac OS X, so is commented out by default.
-
-          <local-fonts-snapshot>localFonts.ser</local-fonts-snapshot>
-          -->
-
-      </fonts>
-      
-      <!-- Array.toString() format has changed. -->
-      <warn-array-tostring-changes>false</warn-array-tostring-changes>
-
-      <!-- Assignment within conditional. -->
-      
<warn-assignment-within-conditional>true</warn-assignment-within-conditional>
-
-      <!-- Possibly invalid Array cast operation. -->
-      <warn-bad-array-cast>true</warn-bad-array-cast>
-
-      <!-- Non-Boolean value used where a Boolean value was expected. -->
-      <warn-bad-bool-assignment>true</warn-bad-bool-assignment>
-
-      <!-- Invalid Date cast operation. -->
-      <warn-bad-date-cast>true</warn-bad-date-cast>
-
-      <!-- Unknown method. -->
-      <warn-bad-es3-type-method>true</warn-bad-es3-type-method>
-
-      <!-- Unknown property. -->
-      <warn-bad-es3-type-prop>true</warn-bad-es3-type-prop>
-
-      <!-- Illogical comparison with NaN. Any comparison operation involving 
NaN will evaluate to false because NaN != NaN. -->
-      <warn-bad-nan-comparison>true</warn-bad-nan-comparison>
-
-      <!-- Impossible assignment to null. -->
-      <warn-bad-null-assignment>true</warn-bad-null-assignment>
-
-      <!-- Illogical comparison with null. -->
-      <warn-bad-null-comparison>true</warn-bad-null-comparison>
-
-      <!-- Illogical comparison with undefined. Only untyped variables (or 
variables of type *) can be undefined. -->
-      <warn-bad-undefined-comparison>true</warn-bad-undefined-comparison>
-
-      <!-- Boolean() with no arguments returns false in ActionScript 3.0. 
Boolean() returned undefined in ActionScript 2.0. -->
-      
<warn-boolean-constructor-with-no-args>false</warn-boolean-constructor-with-no-args>
-
-      <!-- __resolve is no longer supported. -->
-      <warn-changes-in-resolve>false</warn-changes-in-resolve>
-
-      <!-- Class is sealed. It cannot have members added to it dynamically. -->
-      <warn-class-is-sealed>true</warn-class-is-sealed>
-
-      <!-- Constant not initialized. -->
-      <warn-const-not-initialized>true</warn-const-not-initialized>
-
-      <!-- Function used in new expression returns a value. Result will be 
what the -->
-      <!-- function returns, rather than a new instance of that function.      
     -->
-      <warn-constructor-returns-value>false</warn-constructor-returns-value>
-
-      <!-- EventHandler was not added as a listener. -->
-      
<warn-deprecated-event-handler-error>false</warn-deprecated-event-handler-error>
-
-      <!-- Unsupported ActionScript 2.0 function. -->
-      <warn-deprecated-function-error>true</warn-deprecated-function-error>
-
-      <!-- Unsupported ActionScript 2.0 property. -->
-      <warn-deprecated-property-error>true</warn-deprecated-property-error>
-
-      <!-- More than one argument by the same name. -->
-      <warn-duplicate-argument-names>true</warn-duplicate-argument-names>
-
-      <!-- Duplicate variable definition -->
-      <warn-duplicate-variable-def>true</warn-duplicate-variable-def>
-
-      <!-- ActionScript 3.0 iterates over an object's properties within a "for 
x in target" statement in random order. -->
-      <warn-for-var-in-changes>false</warn-for-var-in-changes>
-
-      <!-- Importing a package by the same name as the current class will hide 
that class identifier in this scope. -->
-      <warn-import-hides-class>true</warn-import-hides-class>
-
-      <!-- Use of the instanceof operator. -->
-      <warn-instance-of-changes>true</warn-instance-of-changes>
-
-      <!-- Internal error in compiler. -->
-      <warn-internal-error>true</warn-internal-error>
-
-      <!-- _level is no longer supported. For more information, see the 
flash.display package. -->
-      <warn-level-not-supported>true</warn-level-not-supported>
-
-      <!-- Missing namespace declaration (e.g. variable is not defined to be 
public, private, etc.). -->
-      <warn-missing-namespace-decl>true</warn-missing-namespace-decl>
-
-      <!-- Negative value will become a large positive value when assigned to 
a uint data type. -->
-      <warn-negative-uint-literal>true</warn-negative-uint-literal>
-
-      <!-- Missing constructor. -->
-      <warn-no-constructor>false</warn-no-constructor>
-
-      <!-- The super() statement was not called within the constructor. -->
-      
<warn-no-explicit-super-call-in-constructor>false</warn-no-explicit-super-call-in-constructor>
-
-      <!-- Missing type declaration. -->
-      <warn-no-type-decl>true</warn-no-type-decl>
-
-      <!-- In ActionScript 3.0, white space is ignored and '' returns 0. 
Number() returns -->
-      <!-- NaN in ActionScript 2.0 when the parameter is '' or contains white 
space.      -->
-      <warn-number-from-string-changes>false</warn-number-from-string-changes>
-
-      <!-- Change in scoping for the this keyword. Class methods extracted 
from an  -->
-      <!-- instance of a class will always resolve this back to that instance. 
In   -->
-      <!-- ActionScript 2.0 this is looked up dynamically based on where the 
method -->
-      <!-- is invoked from.                                                    
     -->
-      <warn-scoping-change-in-this>false</warn-scoping-change-in-this>
-
-      <!-- Inefficient use of += on a TextField.-->
-      <warn-slow-text-field-addition>true</warn-slow-text-field-addition>
-
-      <!-- Possible missing parentheses. -->
-      <warn-unlikely-function-value>true</warn-unlikely-function-value>
-
-      <!-- Possible usage of the ActionScript 2.0 XML class. -->
-      <warn-xml-class-has-changed>false</warn-xml-class-has-changed>
-
-   </compiler>
-
-   <!-- compute-digest: writes a digest to the catalog.xml of a library. Use 
this when the library will be used as a
-                        cross-domain rsl.-->
-   <!-- compute-digest usage:
-   <compute-digest>boolean</compute-digest>
-   -->
-
-   <!-- remove-unused-rsls: remove RSLs that are not being used by the 
application-->
-   <remove-unused-rsls>true</remove-unused-rsls>
-
-   <!-- A list of runtime shared library URLs to be loaded before applications 
start. -->
-   <!-- not set -->
-   <!--
-   <runtime-shared-libraries>
-      <url>string</url>
-      <url>string</url>
-   </runtime-shared-libraries>
-   -->
-       
-       <!-- runtime-shared-library-path: specifies a SWC or directory to link 
against and an RSL URL to load with optional failover URLs -->  
-      <!-- Framework SWC 
-       <runtime-shared-library-path>
-               <path-element>libs/framework.swc</path-element>
-               <rsl-url>framework_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-       -->
-
-  
-         <!-- TextLayout SWC -->
-       <!-- 
-           Even though there is no textLayout rsl leave this in so that in a 
FlashBuilder
-           Flex Library project, FlashBuilder will allow "Link Type" to be 
external.
-    <runtime-shared-library-path>
-               <path-element>libs/textLayout.swc</path-element>
-               <rsl-url>textLayout_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-    -->
-    
-      <!-- Spark SWC
-       <runtime-shared-library-path>
-               <path-element>libs/spark.swc</path-element>
-               <rsl-url>spark_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-    -->        
-      <!-- Sparkskins SWC
-       <runtime-shared-library-path>
-               <path-element>libs/sparkskins.swc</path-element>
-               <rsl-url>sparkskins_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-        -->
-         <!-- RPC SWC
-       <runtime-shared-library-path>
-               <path-element>libs/rpc.swc</path-element>
-               <rsl-url>rpc_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-        -->            
-      <!-- Charts SWC 
-       <runtime-shared-library-path>
-               <path-element>libs/charts.swc</path-element>
-               <rsl-url>charts_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-     -->
-      <!-- Spark_dmv SWC 
-       <runtime-shared-library-path>
-               <path-element>libs/spark_dmv.swc</path-element>
-               <rsl-url>spark_dmv_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-    -->
-      <!-- OSMF SWC -->
-       <!-- 
-           Even though there is no OSMF rsl leave this in so that in a 
FlashBuilder
-           Flex Library project, FlashBuilder will allow "Link Type" to be 
external.
-    <runtime-shared-library-path>
-               <path-element>libs/osmf.swc</path-element>
-               <rsl-url>osmf_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-    -->
-      
-      <!-- MX SWC 
-       <runtime-shared-library-path>
-               <path-element>libs/mx/mx.swc</path-element>
-               <rsl-url>mx_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-   -->
-      <!-- Advancedgrids SWC 
-       <runtime-shared-library-path>
-               <path-element>libs/advancedgrids.swc</path-element>
-               <rsl-url>advancedgrids_4.9.0.1425567.swf</rsl-url>
-       </runtime-shared-library-path>
-       -->
-       <!-- static-link-runtime-shared-libraries: statically link the 
libraries specified by the -runtime-shared-libraries-path option.-->
-       
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
-
-   <!-- target-player: specifies the version of the player the application is 
targeting.
-                       Features requiring a later version will not be compiled 
into the application.
-                       The minimum value supported is "9.0.0".-->
-   <!-- target-player usage:
-   <target-player>version</target-player>
-   -->
-
-   <!-- Enables SWFs to access the network. -->
-   <use-network>true</use-network>
-
-   <!-- Metadata added to SWFs via the SWF Metadata tag. -->
-   <metadata>
-      <title>Apache FlexJS Application</title>
-      <description>http://flex.apache.org/</description>
-      <publisher>Apache Software Foundation</publisher>
-      <creator>unknown</creator>
-      <language>EN</language>
-   </metadata>
-   
-</flex-config>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8421ae5/frameworks/as/projects/FlexJSUI/flex-sdk-description.xml
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/flex-sdk-description.xml 
b/frameworks/as/projects/FlexJSUI/flex-sdk-description.xml
deleted file mode 100644
index cc72eab..0000000
--- a/frameworks/as/projects/FlexJSUI/flex-sdk-description.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?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.
-
--->
-<flex-sdk-description>
-<name>Apache FlexJS Prototype</name>
-<version>4.9.0</version>
-<build>1425567</build>
-</flex-sdk-description>
-        
\ No newline at end of file

Reply via email to