You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/10/08 15:03:11 UTC

[2/2] flex-site git commit: - Downgraded to maven-site-plugin 3.4 because 3.5 seems to have issues with velocity templates which the reflow skin relys on greatly. - Ported most of the static content to markdown format.

- Downgraded to maven-site-plugin 3.4 because 3.5 seems to have issues with velocity templates which the reflow skin relys on greatly.
- Ported most of the static content to markdown format.


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

Branch: refs/heads/maven-site
Commit: 221a7c94cdfd76b17ef34439bc9ed70b9f372b5c
Parents: 0152059
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Sat Oct 8 17:03:00 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Sat Oct 8 17:03:00 2016 +0200

----------------------------------------------------------------------
 pom.xml                                      |  75 +------
 src/site/markdown/about-assets.md            |  35 +++
 src/site/markdown/about-binaries.md-not-used |  37 ++++
 src/site/markdown/about-features.md          |  57 +++++
 src/site/markdown/about-history.md           | 186 ++++++++++++++++
 src/site/markdown/about-licensing.md         | 258 ++++++++++++++++++++++
 src/site/markdown/about-people.md            |  19 ++
 src/site/markdown/about-privacy.md-not-used  |  34 +++
 src/site/markdown/about-whatis.md            |  79 +++++++
 src/site/markdown/community-3rdparty.md      | 187 ++++++++++++++++
 src/site/markdown/community-getinvolved.md   |  78 +++++++
 src/site/markdown/community-mailinglists.md  | 139 ++++++++++++
 src/site/markdown/community-showcase.md      |  40 ++++
 src/site/markdown/dev-faq.md                 |  18 ++
 src/site/markdown/dev-sourcecode.md          | 106 +++++++++
 src/site/markdown/doc-getstarted.md          | 126 +++++++++++
 src/site/markdown/doc-videos.md              | 186 ++++++++++++++++
 src/site/site.xml                            |  78 +++++--
 18 files changed, 1649 insertions(+), 89 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d348565..0c003cf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -113,7 +113,8 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>3.5.1</version>
+        <!-- Downgraded to 3.4 as 3.5 and 3.5.1 seem to have issues with the velocity tools -->
+        <version>3.4</version>
         <configuration>
           <generateReports>true</generateReports>
           <generateSitemap>true</generateSitemap>
@@ -121,34 +122,12 @@
           <locales>en</locales>
           <inputEncoding>${project.build.sourceEncoding}</inputEncoding>
           <outputEncoding>${project.reporting.outputencoding}</outputEncoding>
-          <topSiteURL>scm:svn:https://svn.apache.org/repos/asf/flex/site/trunk/content/maven/flexjs/${website.path}</topSiteURL>
-          <!--topSiteURL>scm:svn:https://svn.apache.org/repos/infra/websites/production/flex/content/maven/flexjs/${website.path}</topSiteURL-->
-          <!-- Configure the asciidoctor configuration -->
-          <asciidoc>
-            <sourceDirectory>src/site/asciidoc</sourceDirectory>
-            <requires>
-              <require>asciidoctor-diagram</require>
-            </requires>
-            <backend>html5</backend>
-            <attributes>
-              <toc>left</toc>
-              <toclevels>2</toclevels>
-              <icons>font</icons>
-              <imagesdir>images</imagesdir>
-              <imagesoutdir>${project.build.directory}/site/images</imagesoutdir>
-              <sectanchors>true</sectanchors>
-              <idprefix />
-              <idseparator>-</idseparator>
-              <source-highlighter>coderay</source-highlighter>
-              <coderay-css>style</coderay-css>
-            </attributes>
-          </asciidoc>
         </configuration>
         <dependencies>
           <dependency>
             <groupId>org.apache.maven.doxia</groupId>
             <artifactId>doxia-core</artifactId>
-            <version>1.7</version>
+            <version>1.6</version>
           </dependency>
           <!-- All dependencies needed by the reflow skin -->
           <dependency>
@@ -161,54 +140,6 @@
             <artifactId>velocity</artifactId>
             <version>1.7</version>
           </dependency>
-          <!-- All dependencies needed by asciidoctor -->
-          <dependency>
-            <groupId>org.asciidoctor</groupId>
-            <artifactId>asciidoctor-maven-plugin</artifactId>
-            <version>1.5.3</version>
-          </dependency>
-          <dependency>
-            <groupId>org.jruby</groupId>
-            <artifactId>jruby-complete</artifactId>
-            <version>1.7.21</version>
-          </dependency>
-          <dependency>
-            <groupId>org.asciidoctor</groupId>
-            <artifactId>asciidoctorj</artifactId>
-            <version>1.5.4</version>
-          </dependency>
-          <dependency>
-            <groupId>org.asciidoctor</groupId>
-            <artifactId>asciidoctorj-diagram</artifactId>
-            <version>1.3.1</version>
-          </dependency>
-          <!-- add support for ssh/scp site deployment -->
-          <dependency>
-            <groupId>org.apache.maven.wagon</groupId>
-            <artifactId>wagon-ssh</artifactId>
-            <version>2.10</version>
-          </dependency>
-          <!-- add support for scm/svn site deployment -->
-          <dependency>
-            <groupId>org.apache.maven.wagon</groupId>
-            <artifactId>wagon-scm</artifactId>
-            <version>2.10</version>
-          </dependency>
-          <dependency>
-            <groupId>org.apache.maven.scm</groupId>
-            <artifactId>maven-scm-api</artifactId>
-            <version>1.9.5</version>
-          </dependency>
-          <dependency>
-            <groupId>org.apache.maven.scm</groupId>
-            <artifactId>maven-scm-manager-plexus</artifactId>
-            <version>1.9.5</version>
-          </dependency>
-          <dependency>
-            <groupId>org.apache.maven.scm</groupId>
-            <artifactId>maven-scm-provider-svnexe</artifactId>
-            <version>1.9.5</version>
-          </dependency>
         </dependencies>
       </plugin>
 

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/about-assets.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/about-assets.md b/src/site/markdown/about-assets.md
new file mode 100644
index 0000000..00ec6a7
--- /dev/null
+++ b/src/site/markdown/about-assets.md
@@ -0,0 +1,35 @@
+<!--
+ 
+ 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.
+ 
+-->
+# Logos and Assets
+
+## Logo
+<p>The Apache Flex� Project has the following official logo:</p>
+<img src="images/logo_01_fullcolor-sm.png" />
+
+<p>The logo is available in the following formats :</p>
+<ul class="arrow_list">
+    <li><a href="https://issues.apache.org/jira/secure/attachment/12513945/apache_flex_eps.zip">EPS (3.25 MB Download)</a></li>
+    <li><a href="https://issues.apache.org/jira/secure/attachment/12513946/apache_flex_jpg.zip">JPG (1.10 MB Download)</a></li>
+    <li><a href="https://issues.apache.org/jira/secure/attachment/12513947/apache_flex_png.zip">PNG (385 KB Download)</a></li>
+</ul>
+<p>You can see the JIRA ticket where these logos were submitted at :�<a href="https://issues.apache.org/jira/browse/FLEX-33093">FLEX-33093</a></p>
+<p>A special thanks to Adrian Knopik of <a href="http://www.fusecollective.com" rel="nofollow">Fuse Collective</a>, for creating it and Tomasz Maci\u0105g for submitting it. </p>
+
+## Other Assets
+<p>All other assets are available in our SVN. Apache Logos, Marks, etc. are available from the <a href="http://www.apache.org/foundation/press/kit/">Foundation Press Kit Website</a></p>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/about-binaries.md-not-used
----------------------------------------------------------------------
diff --git a/src/site/markdown/about-binaries.md-not-used b/src/site/markdown/about-binaries.md-not-used
new file mode 100644
index 0000000..a653a3f
--- /dev/null
+++ b/src/site/markdown/about-binaries.md-not-used
@@ -0,0 +1,37 @@
+<!--
+ 
+ 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.
+ 
+-->
+# About Binaries
+The Apache Flex project provides a number of binaries as a convenience for those who do not wish to compile the source themselves. These binaries are not official Apache Flex releases. It is recommended that you download the officially released source distributions and verify the signatures of the downloaded files before opening them.
+
+## Apache Flex
+The official release of the SDK is the source release, which can be found [here][4] or [here (Git)][5].  The SDK is also made available as a convenience binary [here][4].
+
+## Apache Flex SDK Installer
+The Apache Flex SDK Installer is a utility for downloading and installing the artifacts and dependencies needed to use the Apache Flex SDK with a third party IDE. The official release of the Apache Flex SDK Installer is the source which can be found [here][1] or [here (Git)][2].
+The Apache Flex SDK Installer is also made available as a convenience binary [here][1] and through the [Apache Flex SDK Installer Badge][3].
+The Apache Flex SDK Installer downloads the binaries, not the released source of the Apache Flex SDK.
+
+Note: the installer downloads other files besides the Apache Flex SDK. For more information, please read the [Apache Flex SDK Installer page][6].
+
+[1]: installer.html
+[2]: https://git-wip-us.apache.org/repos/asf/flex-utilities.git
+[3]: download-utilities.html
+[4]: download-source.html
+[5]: https://svn.apache.org/repos/asf/flex/sdk/
+[6]: installer.html
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/about-features.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/about-features.md b/src/site/markdown/about-features.md
new file mode 100644
index 0000000..5faeae4
--- /dev/null
+++ b/src/site/markdown/about-features.md
@@ -0,0 +1,57 @@
+<!--
+ 
+ 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.
+ 
+-->
+# Features
+
+<div class="featurette">
+    <img class="featurette-image pull-right" src="images/logo-512.jpg"/>
+    <h2 class="featurette-heading">One Codebase <span class="muted">Output everywhere</span></h2>
+    <p class="lead">The Apache Flex SDK allows you to write code that is highly reusable and deployable on all the major platforms.  Utilize UI components such as buttons, forms, containers, lists, data grids, and much more to make your application stylish with minimal work.</p>
+</div>
+
+<hr />
+
+<div class="featurette">
+    <img class="featurette-image pull-left" src="images/desktop-512.jpg"/>
+    <h2 class="featurette-heading">In the browser? <span class="muted">Yeah, we got that.</span></h2>
+    <p class="lead">By targeting the Adobe Flash Player, you can build your applications to be available to over 90% of internet-connected devices.  Target Internet Explorer 5+, Firefox, Chrome, Opera, and Safari on Windows, Mac OSX, Linux and Solaris in a predictable, consistant manner. </p>
+</div>
+
+<hr />
+
+<div class="featurette">
+    <img class="featurette-image pull-right" src="images/mobile-512.jpg"/>
+    <h2 class="featurette-heading">Mobile and Tablets? <span class="muted">Check.</span></h2>
+    <p class="lead">Coupled with Adobe AIR, developing for mobile platforms like Apple iPods, iPads, iPhones and Android devices has never been easier. Consistently deploy apps to the respective app stores and reduce the time spent making native applications.</p>
+</div>
+
+<hr />
+
+<div class="featurette">
+    <img class="featurette-image pull-left" src="images/tv-512.jpg"/>
+    <h2 class="featurette-heading">Apps on the TV? <span class="muted">See! We told you everywhere!</span></h2>
+    <p class="lead">Apache Flex applications can be compiled for use on smart TVs utilzing the Broadcom platform.  Don't add yet another native platform that you need to learn in order to publish your apps where your customers are.  Apache Flex has the tool chain in place for you to go where you want to go.</p>
+</div>
+
+<hr />
+
+<div class="featurette">
+    <img class="featurette-image pull-right" src="images/developer-512.png"/>
+    <h2 class="featurette-heading">Choose Your Tools <span class="muted">No Problem.</span></h2>
+    <p class="lead">Need to develop native application for Apple, but only have a PC?  Want to write your mobile app for both platform in YOUR choice of IDE?  Look no further.  With support from Eclipse based Adobe Flash Builder, FDT, FlashDevelop and JetBrains IntelliJ IDEA you can work at your own pace, using the platform you want.</p>
+</div>

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/about-history.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/about-history.md b/src/site/markdown/about-history.md
new file mode 100644
index 0000000..19361f0
--- /dev/null
+++ b/src/site/markdown/about-history.md
@@ -0,0 +1,186 @@
+<!--
+ 
+ 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 History
+
+The goal of this page is to document the history of the Apache Flex, starting with Adobe
+deciding to donate it to the Apache Software Foundation (ASF), incubation and Apache Flex becoming a top level project.
+
+It might be useful for other similar projects, or any incubating project, as an example of the steps involved in
+an Apache incubation.
+
+See [http://incubator.apache.org](http://incubator.apache.org) for the official Incubator documentation, and
+in particular the [incubation process description](http://incubator.apache.org/incubation/Process_Description.html) page.
+
+## 2011: Adobe decides to contribute Flex to the ASF
+
+The decision is made within Adobe to incubate Flex at the ASF. Work starts on the incubation proposal, on explaining
+internally what this means, on the legal/IP clearance steps required to donate the code and on recruiting
+initial committers who will help get the project started.
+
+## December 12, 2011: Flex Summit
+
+The [Flex Summit](http://tv.adobe.com/show/flex-community-summit-december-2011) is organized to make
+the Flex community aware of the upcoming changes, and to allow initial Flex committers to sign up and network.
+
+Among the available videos, these two provide interesting insights on how Apache projects work, by Roy Fielding,
+one of the ASF's founders:
+
+- [What it means to be an Apache project, part 1](http://tv.adobe.com/watch/flex-community-summit-december-2011/what-it-means-to-be-an-apache-project-part-1/)
+- [What it means to be an Apache project, part 2](http://tv.adobe.com/watch/flex-community-summit-december-2011/what-it-means-to-be-an-apache-project-part-2/)
+
+The following blog posts provide other views on the event, and show that it was useful for the Flex community
+and for the upcoming Apache Flex project:
+
+- [Flex given to the Apache Software Foundation \u2013 round-up and opportunities](http://www.flex-tutorial.fr/2011/12/17/flex-given-to-the-apache-software-foundation-round-up-and-opportunities)
+- [Huge Adobe Partnership to Open Source Flex with Apache Software Foundation \u2026](http://www.adamflater.net/2011/12/14/apache-flex-beginning/)
+
+## December 20, 2011: Incubation proposal submitted
+
+The [Incubation proposal](http://wiki.apache.org/incubator/FlexProposal) is submitted
+and [discussed](http://mail-archives.apache.org/mod_mbox/incubator-general/201112.mbox/%3CCB14DCA2.3885F%25aharui%40adobe.com%3E) on the incubator-general mailing list, followed after a few days (once the
+discussion dies down) by the Incubator PMC vote mentioned below.
+
+The list of incubation mentors is completed during the proposal's discussion phase, after asking for volunteers
+when submitting the proposal.
+
+A few initial committers are also added during the discussion phase.
+
+## December 22, 2011: Vote for Anne and Dave as incubator PMC members
+
+Project mentors need to be members of the Incubator PMC, ASF members just need to ask to get this membership.
+
+Committers who are not (yet) Apache members need to be voted in by the Incubator PMC, which is done
+around December 22 for Anne and Dave.
+
+## December 27, 2011: [VOTE] Flex to join the Apache Incubator
+
+The [Incubator PMC vote](http://markmail.org/message/puo2rtrvby65lb3m)
+lasts at least 72 hours, after which whoever started it
+[tallies it](http://mail-archives.apache.org/mod_mbox/incubator-general/201112.mbox/%3CCAEWfVJmMq390Hinafg%2Bjik8VqboYG1ixe_gnz5O2bV5q5mtKPw%40mail.gmail.com%3E).
+the vote for Flex passes on December 30th.
+
+## Late December 2011: Basic infrastructure is created
+
+See for example the
+[INFRA-4260](https://issues.apache.org/jira/browse/INFRA-4260) (create mailing lists)
+and
+[INFRA-4262](https://issues.apache.org/jira/browse/INFRA-4262) (create JIRA instance)
+issues.
+
+Flex is added to the Incubator's [reporting schedule](http://wiki.apache.org/incubator/ReportingSchedule).
+
+The [Flex incubation status page](http://incubator.apache.org/projects/flex.html) is created.
+
+People are invited to subscribe to the new Apache Flex [mailing lists](/flex/mailing-lists.html)
+
+Those lists are added to [flex.markmail.org](http://flex.markmail.org) for convenience, using the markmail feedback form.
+
+Discussions and consensus building start, including clarifications about the role of the PPMC, committers
+and community, whether to create roadmaps or just let things evolve organically, etc.
+
+## Late 2011 and early 2012: User accounts
+
+Mentors request creation of Apache accounts for the initial committers listed in the
+[incubation proposal](http://wiki.apache.org/incubator/FlexProposal), after asking people which Apache ID
+they would like, avoiding collisions with [existing IDs](http://people.apache.org/committer-index.html).
+
+Initial committers, who are also PPMC members, are invited to subscribe to the Flex private mailing list
+(which is used for discussions about people, new committers etc. and as little as possible besides that) and
+made aware of the [Apache guide for new committers](http://www.apache.org/dev/new-committers-guide.html).
+
+Flex committers are granted write access to the [subversion repository](http://svn.apache.org/repos/asf/incubator/flex/)
+and [JIRA issue tracker](https://issues.apache.org/jira/browse/FLEX) and can start actual coding work.
+
+## January 17, 2012: Software grant received
+
+Adobe's [software grant](http://www.apache.org/licenses/software-grant.txt) is received by the ASF's
+secretary, the Flex code can now be imported into Apache Flex's code repository.
+
+## February 22, 2012: First committer voted in
+
+Justin Mclean is the first Flex committer (besides the initial committers listed in the incubation proposal) to
+be voted in, after a short discussion and a vote on the Flex private
+mailing list, as per the [incubator's instructions](http://incubator.apache.org/guides/ppmc.html).
+
+## March 27, 2012: MXMLC donation announced
+
+The legal/IP clearance work for that module is done on the Adobe side, that code is ready to be donated.
+
+## August 30, 2012: Falcon legalities completed
+
+Apache recorded Adobe's donation documents for the source code to the next-generation Falcon compiler.
+
+## September 10, 2012: Falcon code committed
+
+The source code for the Falcon compiler was committed to Apache's Subversion repository.
+
+## December 19, 2012: Apache Flex becomes a top level Apache Software Foundation project
+
+Apache Flex is voted in as a top level project at the December board meeting of the Apache Software Foundation.
+
+## December 27, 2012: Apache Flex SDK 4.9 released
+
+After seven release candidates Apache Flex SDK 4.9 is released as the first release after becoming an Apache Software Foundation top level project.
+
+## February, 2013: Apache Flex SDK 4.9 released
+
+## April, 2013: Apache Flex SDK Installer 2.5 released
+
+## August, 2013: Apache Flex SDK Installer 2.6 released
+This version allows to track the number of downloads.
+
+## August, 2013: Apache Flex SDK 4.10.0 released
+
+## October, 2013: Apache Flex SDK Installer 2.7 released
+
+## October, 2013: Apache Flex SDK 4.11.0 released
+
+## March, 2014: Apache Flex SDK 4.12.0 released
+
+## April, 2014: Apache FlexJS 0.0.1 released
+
+## April, 2014: Apache Flex FlexUnit 4.2.0 released
+
+## May, 2014: Apache Flex SDK 4.12.1 released
+
+## May, 2014: Apache Flex SDK Installer 3.0 released
+
+## July, 2014: Apache Flex SDK Installer 3.1 released
+
+## May, 2014: Apache Flex SDK 4.12.1 released
+
+## July, 2014: Apache Flex SDK 4.13.0 released
+
+## July, 2014: Apache FlexJS 0.0.2 released
+
+## August, 2014: Apache Flex Tour de Flex 1.0 released
+
+## September, 2014: Apache Flex Squiggly 1.0 released
+
+## September, 2014: Apache Flex Tour de Flex 1.1 released
+
+## October, 2014: Apache Flex Squiggly 1.1 released
+
+## February, 2015: Apache Flex SDK 4.14.0 released
+
+## March, 2015: Apache Flex SDK 4.14.1 released
+
+## March, 2015: Apache Flex BlazeDS 4.7.0 released
+
+## January, 2016: Apache Flex SDK 4.15 released

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/about-licensing.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/about-licensing.md b/src/site/markdown/about-licensing.md
new file mode 100644
index 0000000..e65cd90
--- /dev/null
+++ b/src/site/markdown/about-licensing.md
@@ -0,0 +1,258 @@
+<!--
+ 
+ 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.
+ 
+-->
+# Licensing and Trademarks
+
+## Licensing
+
+Apache License<br/>Version 2.0, January 2004<br/>
+[http://www.apache.org/licenses/](http://www.apache.org/licenses/)
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+**<a name="definitions">1. Definitions</a>**.
+
+"License" shall mean the terms and conditions for use, reproduction, and
+distribution as defined by Sections 1 through 9 of this document.
+
+"Licensor" shall mean the copyright owner or entity authorized by the
+copyright owner that is granting the License.
+
+"Legal Entity" shall mean the union of the acting entity and all other
+entities that control, are controlled by, or are under common control with
+that entity. For the purposes of this definition, "control" means (i) the
+power, direct or indirect, to cause the direction or management of such
+entity, whether by contract or otherwise, or (ii) ownership of fifty
+percent (50%) or more of the outstanding shares, or (iii) beneficial
+ownership of such entity.
+
+"You" (or "Your") shall mean an individual or Legal Entity exercising
+permissions granted by this License.
+
+"Source" form shall mean the preferred form for making modifications,
+including but not limited to software source code, documentation source,
+and configuration files.
+
+"Object" form shall mean any form resulting from mechanical transformation
+or translation of a Source form, including but not limited to compiled
+object code, generated documentation, and conversions to other media types.
+
+"Work" shall mean the work of authorship, whether in Source or Object form,
+made available under the License, as indicated by a copyright notice that
+is included in or attached to the work (an example is provided in the
+Appendix below).
+
+"Derivative Works" shall mean any work, whether in Source or Object form,
+that is based on (or derived from) the Work and for which the editorial
+revisions, annotations, elaborations, or other modifications represent, as
+a whole, an original work of authorship. For the purposes of this License,
+Derivative Works shall not include works that remain separable from, or
+merely link (or bind by name) to the interfaces of, the Work and Derivative
+Works thereof.
+
+"Contribution" shall mean any work of authorship, including the original
+version of the Work and any modifications or additions to that Work or
+Derivative Works thereof, that is intentionally submitted to Licensor for
+inclusion in the Work by the copyright owner or by an individual or Legal
+Entity authorized to submit on behalf of the copyright owner. For the
+purposes of this definition, "submitted" means any form of electronic,
+verbal, or written communication sent to the Licensor or its
+representatives, including but not limited to communication on electronic
+mailing lists, source code control systems, and issue tracking systems that
+are managed by, or on behalf of, the Licensor for the purpose of discussing
+and improving the Work, but excluding communication that is conspicuously
+marked or otherwise designated in writing by the copyright owner as "Not a
+Contribution."
+
+"Contributor" shall mean Licensor and any individual or Legal Entity on
+behalf of whom a Contribution has been received by Licensor and
+subsequently incorporated within the Work.
+
+**<a name="copyright">2. Grant of Copyright License</a>**. Subject to the
+terms and conditions of this License, each Contributor hereby grants to You
+a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+copyright license to reproduce, prepare Derivative Works of, publicly
+display, publicly perform, sublicense, and distribute the Work and such
+Derivative Works in Source or Object form.
+
+**<a name="patent">3. Grant of Patent License</a>**. Subject to the terms
+and conditions of this License, each Contributor hereby grants to You a
+perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+(except as stated in this section) patent license to make, have made, use,
+offer to sell, sell, import, and otherwise transfer the Work, where such
+license applies only to those patent claims licensable by such Contributor
+that are necessarily infringed by their Contribution(s) alone or by
+combination of their Contribution(s) with the Work to which such
+Contribution(s) was submitted. If You institute patent litigation against
+any entity (including a cross-claim or counterclaim in a lawsuit) alleging
+that the Work or a Contribution incorporated within the Work constitutes
+direct or contributory patent infringement, then any patent licenses
+granted to You under this License for that Work shall terminate as of the
+date such litigation is filed.
+
+**<a name="redistribution">4. Redistribution</a>**. You may reproduce and
+distribute copies of the Work or Derivative Works thereof in any medium,
+with or without modifications, and in Source or Object form, provided that
+You meet the following conditions:
+
+1. You must give any other recipients of the Work or Derivative Works a
+copy of this License; and
+
+1. You must cause any modified files to carry prominent notices stating
+that You changed the files; and
+
+1. You must retain, in the Source form of any Derivative Works that You
+distribute, all copyright, patent, trademark, and attribution notices from
+the Source form of the Work, excluding those notices that do not pertain to
+any part of the Derivative Works; and
+
+1. If the Work includes a "NOTICE" text file as part of its distribution,
+then any Derivative Works that You distribute must include a readable copy
+of the attribution notices contained within such NOTICE file, excluding
+those notices that do not pertain to any part of the Derivative Works, in
+at least one of the following places: within a NOTICE text file distributed
+as part of the Derivative Works; within the Source form or documentation,
+if provided along with the Derivative Works; or, within a display generated
+by the Derivative Works, if and wherever such third-party notices normally
+appear. The contents of the NOTICE file are for informational purposes only
+and do not modify the License. You may add Your own attribution notices
+within Derivative Works that You distribute, alongside or as an addendum to
+the NOTICE text from the Work, provided that such additional attribution
+notices cannot be construed as modifying the License.
+You may add Your own copyright statement to Your modifications and may
+provide additional or different license terms and conditions for use,
+reproduction, or distribution of Your modifications, or for any such
+Derivative Works as a whole, provided Your use, reproduction, and
+distribution of the Work otherwise complies with the conditions stated in
+this License.
+
+**<a name="contributions">5. Submission of Contributions</a>**. Unless You
+explicitly state otherwise, any Contribution intentionally submitted for
+inclusion in the Work by You to the Licensor shall be under the terms and
+conditions of this License, without any additional terms or conditions.
+Notwithstanding the above, nothing herein shall supersede or modify the
+terms of any separate license agreement you may have executed with Licensor
+regarding such Contributions.
+
+**<a name="trademarks">6. Trademarks</a>**. This License does not grant
+permission to use the trade names, trademarks, service marks, or product
+names of the Licensor, except as required for reasonable and customary use
+in describing the origin of the Work and reproducing the content of the
+NOTICE file.
+
+**<a name="no-warranty">7. Disclaimer of Warranty</a>**. Unless required by
+applicable law or agreed to in writing, Licensor provides the Work (and
+each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including,
+without limitation, any warranties or conditions of TITLE,
+NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You
+are solely responsible for determining the appropriateness of using or
+redistributing the Work and assume any risks associated with Your exercise
+of permissions under this License.
+
+**<a name="no-liability">8. Limitation of Liability</a>**. In no event and
+under no legal theory, whether in tort (including negligence), contract, or
+otherwise, unless required by applicable law (such as deliberate and
+grossly negligent acts) or agreed to in writing, shall any Contributor be
+liable to You for damages, including any direct, indirect, special,
+incidental, or consequential damages of any character arising as a result
+of this License or out of the use or inability to use the Work (including
+but not limited to damages for loss of goodwill, work stoppage, computer
+failure or malfunction, or any and all other commercial damages or losses),
+even if such Contributor has been advised of the possibility of such
+damages.
+
+**<a name="additional">9. Accepting Warranty or Additional Liability</a>**.
+While redistributing the Work or Derivative Works thereof, You may choose
+to offer, and charge a fee for, acceptance of support, warranty, indemnity,
+or other liability obligations and/or rights consistent with this License.
+However, in accepting such obligations, You may act only on Your own behalf
+and on Your sole responsibility, not on behalf of any other Contributor,
+and only if You agree to indemnify, defend, and hold each Contributor
+harmless for any liability incurred by, or claims asserted against, such
+Contributor by reason of your accepting any such warranty or additional
+liability.
+
+END OF TERMS AND CONDITIONS
+
+## APPENDIX: How to apply the Apache License to your work
+
+To apply the Apache License to your work, attach the following boilerplate
+notice, with the fields enclosed by brackets "[]" replaced with your own
+identifying information. (Don't include the brackets!) The text should be
+enclosed in the appropriate comment syntax for the file format. We also
+recommend that a file or class name and description of purpose be included
+on the same "printed page" as the copyright notice for easier
+identification within third-party archives.
+
+
+        Copyright [yyyy] [name of copyright owner]
+
+        Licensed 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.
+
+
+## Apache Flex� Trademarks
+The Apache Software Foundation holds trademarks on behalf of its
+projects.  For the Apache Flex� project these trademarks include
+the names Apache Flex� and Flex�, as well as the
+graphical logo.  Use of these marks is prohibited without explicit
+permission from the ASF.
+
+However, the Apache Flex� project is happy to work with 3rd
+parties who desire to use these trademarks in ways that are beneficial
+to the project, which do not imply endorsement by ASF, and which are
+fully in conformance with Apache policies.
+
+To request such permission, follow these steps:
+
+<ul class="check_list">
+    <li>First familiarize yourself with the [Apache Trademark Policy] [1].
+        Many of the common cases are already addressed there.  And some uses
+        of ASF marks ("nominative use") are automatically allowed.</li>
+    <li>Email a proposal to [private@flex.apache.org] [2].  In the
+        proposal, please include:<ul class="plus_list">
+        <li>Name and contact information of the company, organization or person
+            requesting the permission</li>
+        <li>A list of what ASF controlled marks you wish to use</li>
+        <li>A description of how these marks would be used.  Give supporting
+            detail, along with context  If you are requesting use of the logo, for
+            example, provide a prototype of how the logo would appear in the
+            context of the overall design.</li>
+        <li>Any other information you think would be useful, e.g., any impeding deadlines</li>
+    </ul></li>
+    <li>On receipt of the proposal, the Apache Flex PMC will review
+        and decide whether or not to recommend approval.</li>
+    <li>If the PMC recommends approval, then they will forward their
+        recommendation, along with your proposal and any follow up
+        communications, to the Apache V.P. of Brand Management for final
+        approval.</li>
+    <li>We will then notify you of the outcome.</li>
+</ul>
+
+[1]: http://www.apache.org/foundation/marks/
+[2]: mailto:private@flex.apache.org?subject=Trademark

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/about-people.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/about-people.md b/src/site/markdown/about-people.md
new file mode 100644
index 0000000..475e54b
--- /dev/null
+++ b/src/site/markdown/about-people.md
@@ -0,0 +1,19 @@
+<!--
+ 
+ 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.
+ 
+-->
+# Community Faces

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/about-privacy.md-not-used
----------------------------------------------------------------------
diff --git a/src/site/markdown/about-privacy.md-not-used b/src/site/markdown/about-privacy.md-not-used
new file mode 100644
index 0000000..176e3f9
--- /dev/null
+++ b/src/site/markdown/about-privacy.md-not-used
@@ -0,0 +1,34 @@
+<!--
+ 
+ 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.
+ 
+-->
+Title:  Privacy Policy
+
+Information about your use of this website is collected using server access logs and a tracking cookie. The collected information consists of the following:
+
+  - The IP address from which you access the website;
+  - The type of browser and operating system you use to access our site;
+  - The date and time you access our site;
+  - The pages you visit; and
+  - The addresses of pages from where you followed a link to our site.
+  - Part of this information is gathered using a tracking cookie set by the Google Analytics service and handled by Google as described in their privacy policy. See your browser documentation for instructions on how to disable the cookie if you prefer not to share this data with Google.
+
+
+We use the gathered information to help us make our site more useful to visitors and to better understand how and when our site is used. We do not track or collect personally identifiable information or associate gathered data with any personally identifying information from other sources.
+
+
+By using this website, you consent to the collection of this data in the manner and for the purpose described above.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/about-whatis.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/about-whatis.md b/src/site/markdown/about-whatis.md
new file mode 100644
index 0000000..3519f62
--- /dev/null
+++ b/src/site/markdown/about-whatis.md
@@ -0,0 +1,79 @@
+<!--
+ 
+ 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.
+ 
+-->
+# About Apache Flex
+<div class="row-fluid">
+<!-- Standard Structure -->
+<div class="span8">
+    <div class="headline"><h4>What does it do?</h4></div>
+    Flex is a powerful, open source application framework that allows you to easily build mobile applications for iOS, Android\u2122, and BlackBerry� Tablet OS devices, as well as traditional applications for browser and desktop using the same programming model, tool, and codebase.
+
+    You can use the Flex SDK to create a wide range of highly interactive, expressive applications. For example, a data visualization application built in Flex can pull data from multiple back-end sources and display it visually. Business users can drill down into the data for deeper insight and even change the data and have it automatically updated on the back end. A product configuration application can help customers navigate the process of selecting or customizing products online. And a self-service application can guide customers through an address change or help employees complete an otherwise complicated multi-step benefits enrollment.
+    <div class="headline"><h4>Enterprise-class programming model</h4></div>
+    Use constructs like strong typing, inheritance, and interfaces to program more efficiently. Extensive mobile and traditional components help speed development. Flex applications can access device capabilities such as GPS, accelerometer, camera, and local database.
+    Cross-platform and native experience
+    Create applications that run consistently across Android, BlackBerry Tablet OS, and iOS devices, as well as inside the browser and on traditional desktop computers. Although cross platform, with Flex you get an uncompromised native experience on each platform.
+    <div class="headline"><h4>End-to-end tooling</h4></div>
+    Build Flex applications more easily using Adobe Flash Builder, PowerFlasher FDT, Flash Develop or JetBrains IntelliJ IDEA. Productivity features in most IDEs include on-device debugging and mobile simulators for testing across screen sizes and resolutions.  You can even use our command-line tooling with your favorite text editor!
+    <div class="headline"><h4>Server integration</h4></div>
+    Integrate with all major back ends including Java\u2122, Spring, Hibernate, PHP, Ruby, .NET, Adobe ColdFusion�, and SAP using industry standards such as REST, SOAP, JSON, JMS, and AMF.
+</div>
+
+<div class="span4">
+    <div class="headline "><h4>Contribute to Apache Flex!</h4></div>
+
+    <!-- Large Notice -->
+    <div class="well">
+        <h2>We need you!</h2>
+        <p>Apache Flex is a project run by professionals and volunteers alike.  If you would like to help the project including contributing code, documentation, training or marketing, we are always looking for help.</p>
+        <a href="community-getinvolved.html" class="btn btn-inverse">Find out more</a>
+    </div>
+
+</div>
+</div>
+<!-- Standard Structure End -->
+
+## How it works
+Apache Flex is comprised of a few different components.  One component is the compiler which combines MXML (layout) documents with ActionScript files to output a SWF application.
+
+<img class="span5" src="images/howFlexWorks.png" style="float: right"/>
+
+You can then either publish the SWF file as a stand-alone application to be presented by the Adobe Flash Player in the browser, OR you can compile it with Adobe AIR to make native applications
+    on Windows, MacOSX, Android, iOS, or BlackBerry platforms.
+
+## Flex includes:
+*  a large set of skinnable user-interface components with a component lifecycle
+*  a set of services (HTTPService, WebService, RemoteObject)
+*  has Managers to handle:
+    *  Styling
+    *  Skinning
+    *  Layout
+    *  Localization
+    *  Animation
+    *  Module-loading
+    *  User interaction management
+*  has accessibility support
+*  Flex has an Automation-Testing Framework
+*  Flex SDK provides a compiler
+
+## Typical Workflow
+*  Define an application interface using a set of pre-defined components (forms, buttons, and so on)
+*  Arrange components into a user interface design
+*  Use styles and themes to define the visual design
+*  Add dynamic behavior (one part of the application interacting with another, for example)
+*  Define and connect to data services as needed

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/community-3rdparty.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/community-3rdparty.md b/src/site/markdown/community-3rdparty.md
new file mode 100644
index 0000000..b3f6e07
--- /dev/null
+++ b/src/site/markdown/community-3rdparty.md
@@ -0,0 +1,187 @@
+<!--
+ 
+ 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.
+ 
+-->
+# Third-Party Tools & Solutions
+
+<p>This page gives a list of third party tools and solutions related to Apache Flex�.</p>
+
+## Integrated Development Environments (IDEs)
+
+* <a target="_blank" href="http://www.adobe.com/products/flash-builder.html">Flash Builder (Adobe)</a>:
+<blockquote>Adobe� Flash� Builder� 4.7 is a development environment for building games and applications using
+the ActionScript� language and the open source Flex framework. Flash Builder Premium includes professional
+testing tools such as profilers, network monitoring, and unit testing support.</blockquote>
+
+* <a target="_blank" href="http://www.flashdevelop.org/">FlashDevelop</a>:
+<blockquote>FlashDevelop is a free and open source code editor for every developer. FlashDevelop offers first
+class support for ActionScript (2 &amp; 3) and haXe development. Great completion &amp; code generation, projects
+compilation &amp; debugging, plenty of project templates, SWF/SWC exploration etc. FlashDevelop is also a great web
+developer IDE with source-control support (svn, git, mercurial), tasks/todo, snippets, XML/HTML completion and
+zen-coding for HTML.</blockquote>
+
+* <a target="_blank" href="http://fdt.powerflasher.com/">Flexible Development Toolkit</a>:
+<blockquote>FDT is a flexible development toolkit in Eclipse for interactive developers. It's made with passion
+for expert Flash and Flex coding, innovative mobile development and versatile HTML5 / JavaScript / WebGL / PHP
+programming with haXe. Create your applications in FDT and efficiently target multiple platforms.</blockquote>
+
+* <a target="_blank" href="http://www.jetbrains.com/idea/features/flex_ide.html">IntelliJ IDEA (JetBrains)</a>:
+<blockquote>IntelliJ IDEA is ideal for ActionScript, MXML and CSS development, with on-the-fly code analysis, completion,
+navigation, advanced refactorings, code generation, UML diagrams, UI designer, interactive debugger and profiler.</blockquote>
+
+## Flex Frameworks
+
+* <a target="_blank" href="http://sourceforge.net/adobe/cairngorm/home/Home/">Cairngorm</a>:
+<blockquote>Cairngorm provides a reference architecture for Flex applications that is designed to keep things simple
+and testable. It describes a way of structuring large applications out of smaller units. It is independent of an IoC
+framework implementation, but dependent on core principles to follow when developing enterprise
+RIAs.</blockquote>
+
+* <a target="_blank" href="http://mate.asfusion.com/">Mate Flex Framework</a>:
+<blockquote>Mate is a tag-based, event-driven Flex framework. Flex applications are event-driven. Mate framework
+has been created to make it easy to handle the events your Flex application creates. Mate allows you to define who
+is handling those events, whether data needs to be retrieved from the server, or other events need to be triggered.
+In addition, Mate provides a mechanism for dependency injection to make it easy for the different parts of your
+application to get the data and objects they need.</blockquote>
+
+* <a target="_blank" href="http://www.spicefactory.org/parsley/">Parsley (Spice Factory)</a>:
+<blockquote>Parsley is an open-source application framework for Flex/Flash/AIR applications written in AS3.
+Parsley features a flexible IOC container, dependency injection, decoupled bindings, messaging framework, 
+managed commands, dynamic view wiring, advanced modularity, object lifecycle, localization, extensibility and more.
+</blockquote>
+
+* <a target="_blank" href="http://puremvc.org/content/view/67/178/">PureMVC</a>:
+<blockquote>PureMVC is a lightweight framework for creating applications based upon the classic Model, View and
+Controller concept. Based upon proven design patterns, this free, open source framework which was originally
+implemented in the ActionScript 3 language for use with Adobe Flex, Flash and AIR, is now being ported to all
+major development platforms.</blockquote>
+
+* <a target="_blank" href="https://code.google.com/p/fabrication/">Fabrication Framework</a>:
+<blockquote>Fabrication is a utility for the PureMVC framework. It adds many useful features to typical 
+PureMVC programming syntax that helps accelerate development. Fabrication is focussed on the 
+Flex and Flash implementations of the PureMVC framework. Also Fabrication is built largely to support 
+multi-modular application and uses only the multicore version of PureMVC.</blockquote>
+
+* <a target="_blank" href="http://www.robotlegs.org/">Robotlegs</a>:
+<blockquote>Robotlegs is an ActionScript Application Framework. It offers: Dependency, Module, Command and View
+management.</blockquote>
+
+* <a target="_blank" href="http://www.springactionscript.org/">Spring Actionscript</a>:
+<blockquote>Spring ActionScript is an offshoot of the Java-based Spring Framework written in ActionScript 3. It is
+targeted for the Flash, Flex and AIR platforms. The framework contains a versatile Inversion of Control Container,
+a micro MVC library and extensions for the Cairngorm and PureMVC frameworks.</blockquote>
+
+* <a target="_blank" href="https://github.com/swiz/">Swiz Framework</a>:
+<blockquote>Swiz is a brutally simple micro-architecture for creating Rich Internet Applications with
+ActionScript 3 and Adobe Flex.</blockquote>
+
+* <a target="_blank" href="http://www.granitedataservices.com/public/docs/latest/docs/reference/flex/graniteds-refguide-flex.html#graniteds.tideframework">Tide (Granite Data Services)</a>:
+<blockquote>Tide is a Flex client framework inspired by popular Java frameworks such as Spring or CDI and is based on 
+the concepts of contextual components and event-based programming. It should look familiar to Java developers yet stays 
+close to the Flex framework concepts and traditional usage.</blockquote>
+
+## Server Solutions
+
+* <a target="_blank" href="http://www.silexlabs.org/amfphp/">Amfphp</a>:
+<blockquote>Amfphp is free and open source software, and an essential brick for the development of Applications that
+need to communicate with the Internet. Amfphp is used in projects that cover a wide spectrum, from games to business
+applications. The role of Amfphp is to provide a really simple way of connecting a client with a server.</blockquote>
+
+* <a target="_blank" href="http://sourceforge.net/adobe/blazeds/wiki/Home/">BlazeDS</a>:
+<blockquote>BlazeDS is the server-based Java remoting and web messaging technology that enables developers to easily
+connect to back-end distributed data and push data in real-time to Adobe� Flex� and Adobe AIR� applications for more
+responsive rich Internet application (RIA) experiences.</blockquote>
+
+* <a target="_blank" href="http://www.fluorinefx.com/">FluorineFx</a>:
+<blockquote>FluorineFx is the free and open source Flash/Flex remoting gateway, high-performance, scalable framework,
+streaming server that connects RIAs using Adobe software (Adobe Flash�, Adobe Flex�, Adobe AIR� runtime) and Microsoft
+.NET�.</blockquote>
+
+* <a target="_blank" href="http://www.granitedataservices.com/community/">GraniteDS (Granite Data Services)</a>:
+<blockquote>GraniteDS brings the power of your Java EE server to the Flex side. An easy to use
+client-side API helps you leveraging advanced features such as authentication and secured access, dependency injection, 
+typesafe remote calls, real-time messaging, data lazy-loading and synchronization, ActionScript3 code generation, bean
+validation, etc.</blockquote>
+
+* <a target="_blank" href="http://www.adobe.com/products/livecycle.html">LiveCycle (Adobe)</a>:
+<blockquote>Adobe� LiveCycle� Enterprise Suite 4 is an enterprise document and form platform that helps you capture
+and process information, deliver personalized communications, and protect and track sensitive information. LiveCycle
+ES4 extends business processes to your mobile workforce and clients, increasing productivity while broadening service
+access to any user equipped with a desktop, smartphone, or tablet.</blockquote>
+
+* <a target="_blank" href="http://www.red5.org/">Red5 Media Server</a>:
+<blockquote>Red5 Media Server 1.0 delivers a powerful video streaming and multi-user solution to the Adobe� Flash�
+Player� and other exciting client technologies. Based on Java and some of the most powerful open source frameworks,
+Red5 stands as a solid solution for business of all sizes including the enterprise.</blockquote>
+
+* <a target="_blank" href="https://github.com/rubyamf/rubyamf">RubyAMF</a>:
+<blockquote>RubyAMF is a full-featured AMF gateway based off of Rack and supporting advanced integration with Rails
+and other Rack-based frameworks. It includes advanced class mapping functionality, like camel to underscore case
+translation, parameter mapping to convert function calls to parameter hashes for actions, hooks for processing AMF
+authentication credentials, and many more features.</blockquote>
+
+* <a target="_blank" href="http://www.themidnightcoders.com/products.html">WebOrb (Midnight Coders)</a>:
+<blockquote>Using WebORB, you will be able to easily integrate, test and
+optimize your desktop, web and mobile applications connecting to Java, .NET, and PHP backends.</blockquote>
+
+## Code Generation Tools
+
+* <a target="_blank" href="http://www.granitedataservices.com/public/docs/latest/docs/reference/flex/graniteds-refguide-flex.html#graniteds.gas3">Gas3 (Granite Data Services)</a>:
+<blockquote>Gas3 replicates your entire JPA data model into its ActionScript3 equivalent, with support of transparent
+lazy-loading and bean validation. It also generates type-safe AS3 classes mirroring your Java EE services (Spring, EJB, CDI).
+Gas3 is available as an Eclipse plugin (on-the-fly code generation), an Apache Ant task or an Apache Maven plugin with
+<a target="_blank" href="https://flexmojos.atlassian.net/wiki/display/FLEXMOJOS/Home">flex-mojos</a>.</blockquote>
+
+* <a target="_blank" href="http://www.spicefactory.org/pimento/">Pimento / Cinnamon (Spice Factory)</a>:
+<blockquote>Automatic source generation of AS3 service interfaces and proxies with Cinnamons Ant task.</blockquote>
+
+## Build Tools
+
+* <a target="_blank" href="https://flexmojos.atlassian.net/wiki/display/FLEXMOJOS/Home">Flexmojos</a>:
+<blockquote>Flexmojos provides first-class support for Flex and AIR development within Apache Maven. It allows Maven
+to compile, optimize, and test Flex SWF, Flex SWC, Air SWF and Air SWC.</blockquote>
+
+* <a target="_blank" href="http://gradlefx.org/">GradleFX</a>:
+<blockquote>GradleFx is a Gradle plugin for building Flex and Actionscript applications. It provides a set of useful
+tasks that will make building your project a breeze. All the build logic is encapsulated by the plugin and all you
+need to do is some configuration.</blockquote>
+
+
+## Testing Tools
+
+* <a target="_blank" href="http://www8.hp.com/us/en/software-solutions/loadrunner-load-testing/index.html">Load Runner (HP)</a>:
+<blockquote>HP LoadRunner is the industry standard for application performance testing. The load testing tool helps
+you prevent issues by detecting bottlenecks and to obtain an accurate picture of end-to-end system performance before
+going live. Extremely flexible for organizations and projects of all sizes, LoadRunner software testing tool enables you
+to test a range of applications including mobile, Ajax, Flex, HTML 5, .NET, Java, GWT, Silverlight, SOAP, Citrix, ERP
+and legacy.</blockquote>
+
+* <a target="_blank" href="http://www.neotys.com/product/overview-neoload.html">NeoLoad (Neotys)</a>:
+<blockquote>NeoLoad is a load testing software solution designed for web and mobile applications to realistically
+simulate user activity and monitor infrastructure behavior.</blockquote>
+
+* <a target="_blank" href="http://www-03.ibm.com/software/products/en/performance/">Rational Performance Tester (IBM)</a>:
+<blockquote>IBM� Rational� Performance Tester is a performance testing solution that validates the scalability of web
+and server applications. Rational Performance Tester identifies the presence and cause of system performance bottlenecks
+and reduces load testing complexity.</blockquote>
+
+## Component Libraries
+
+* <a target="_blank" href="http://www.flexicious.com/Home/Products">Flexicious</a>:
+<blockquote>Flexicious provides custom components for Flex and Air developers.
+Our products include Flexicious Classic, Advanced and Spark, which are extensions to the Flex SDK DataGrid, AdvancedDataGrid and Spark DataGrid components,
+as well as Flexicious Ultimate DataGrid and Flexicious Data Visualization & Dashboard Framework which includes Portal, Charts, Gauges, TreeMaps, Calendar/Scheduler and more.</blockquote>

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/community-getinvolved.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/community-getinvolved.md b/src/site/markdown/community-getinvolved.md
new file mode 100644
index 0000000..96caec6
--- /dev/null
+++ b/src/site/markdown/community-getinvolved.md
@@ -0,0 +1,78 @@
+<!--
+ 
+ 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.
+ 
+-->
+# Get Involved!
+Getting involved with the Apache Flex� Community is easy!
+
+We are an open-source community governed by the Apache Software Foundation.  Everything we do is out in the open with
+the entire community involved.  All decisions are made on our mailing lists, and all source code is developed
+within our source control system.
+
+## Find out what is going on
+If you are interested in what is going on with the project, subscribe to our mailing lists.  Our [dev@flex.apache.org][1] mailing
+list is where additions and changes to the SDK are discussed.  The list is open to everybody and everybody is encouraged
+to give their opinions on anything discussed on the list.  This is a great place to introduce yourself and let us know
+how you can help.
+
+If you are interested in helping end-users of the SDK, we also host the [users@flex.apache.org][1] mailing list.  This list
+is designed for end-users to talk about how to use the SDK and how to build applications that utilize the SDK.
+
+## Contributing Documentation
+If you are ready to help us document code, provide tips and tricks, or anything else that is not straight-up code, we
+have a [WIKI][2] that allows for community contribution.  Simply let us know on the dev@flex.apache.org mailing list
+that you wish to get write access to the WIKI.  If you would like to let us know about any blog entries, videos,
+screencasts, etc. that you have created, we would love to help publicize them!
+
+## Reporting Bugs
+All of the bugs that we are aware of are housed in the Apache Foundation's JIRA system.  You can take a look at everything
+we have in the system on [Flex JIRA][3].  To let us know about a bug, create an issue in the JIRA system.  The JIRA
+system automatically emails the dev mailing list and hopefully somebody will take a look at it.  It is really important
+that you give us as much information on the bug as possible.  Even better, if you have a way to reproduce the bug, submit
+a code sample that can help us reproduce it.  Feel free to contribute to the comments as the bug gets worked on.
+
+## Squashing Bugs
+Bugs happen, and you might know how to fix one!  Because we don't allow everybody write access to the official code repository
+(everybody has access to read, though!), there is an additional process that has to occur to get fixes in.  To help us
+squash bugs, do the following :
+
+1. Find a bug you want to work on, or submit one into [JIRA][3].  We have some marked as "easy" if you play with the JIRA filters if you want to start with an easy one.  Make a comment on the ticket that you plan on working on it so others don't duplicate your work.
+2. Check out the source code from GIT.  More information is available on the [Source][4] page.
+3. Setup your build environment.  Check out the README included in the source code on how to do this.  You will want to make sure that you can perform a compile before you go much further.
+4. Fix the bug.  If you need help, ask the dev@flex.apache.org mailing list.  I'm sure we have pointers to help you out.
+5. (optional) Run the functional test suite called [Mustella][5] on your code.  The [Mustella tests][5] are available from the ANT script, but make sure you set it up first.
+6. Create a .patch file.  If you are using an IDE, check your application menus for this option. [SourceTree][6] has it under the Actions menu.  If you are using git from the command line, use `git format-patch <BRANCH> --stdout > <FLEX-007>.patch` where &lt;BRANCH&gt; is the branch you want your patch be merged into from whether the branch you're working on, you can omit it if the origin and destination branch are the same and &lt;FLEX-007&gt;, the Jira Issue Id relative to your patch.
+7. Attach the .patch file to the JIRA ticket you noted earlier.  A committer will review the patch and make sure it dosen't break anything else.
+8. Sit back and bask in the glory that you helped make Flex better!
+
+## Contributing Code
+Due to legal reasons, only people who have been elected as committers have access to update or contribute code directly to the project.
+We at Apache take the legality of code seriously, and nothing would be worse than somebody contributing code that
+they don't own and a 3rd party having a legal claim to our framework.
+
+That being said, if you are interested in contributing code, you can submit patches to the project via [JIRA][3].
+To do this, create a new issue that describes what the code you are contributing, and submit a .patch file with your
+code changes, just like from the bug squashing directions above.  If you submit a few patches that meet the Apache
+standards, you will probably be contacted by the PMC to get you direct access to the GIT and for you to be recognized
+for your work as a committer.
+
+ [1]: community-mailinglists.html
+ [2]: https://cwiki.apache.org/confluence/display/FLEX/Apache+Flex+Wiki
+ [3]: https://issues.apache.org/jira/browse/FLEX
+ [4]: dev-sourcecode.html
+ [5]: https://cwiki.apache.org/FLEX/mustella-overview.html
+ [6]: http://www.sourcetreeapp.com/
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/community-mailinglists.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/community-mailinglists.md b/src/site/markdown/community-mailinglists.md
new file mode 100644
index 0000000..a816992
--- /dev/null
+++ b/src/site/markdown/community-mailinglists.md
@@ -0,0 +1,139 @@
+<!--
+ 
+ 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.
+ 
+-->
+# Mailing Lists and User Forums
+
+We welcome you to join our mailing lists and user forums and let us know about your thoughts or
+ideas about Apache Flex.
+
+## Participation Guidelines
+We ask all mailing list and forum participants to observe [these guidelines][1].
+
+## Users Mailing List
+This is where community users can get together and discuss Flex, how they use it.  It is also used for
+helping each other with using the SDK.  All discussions on this
+list are unofficial discussions. Use this list to get help from fellow Flex developers,
+to discuss how you use Flex, etc...
+
+**Note:** This list does not replace current sources for community support on Adobe
+Flex. Please continue to use those sources for versions of Flex prior to 4.8.0 . This list is
+strictly for current versions of Apache Flex.
+
+  - Subscribe: [users-subscribe@flex.apache.org][11]
+  - Post (after subscription): [users@flex.apache.org][15]
+  - Unsubscribe: [users-unsubscribe@flex.apache.org][12]
+  - Subscribe to digest: [users-digest-subscribe@flex.apache.org][16]
+  - Unsubscribe to digest: [users-digest-unsubscribe@flex.apache.org][17]
+  - List Archives:
+    - [Markmail][13]
+    - Apache: [Old][14] - [New][24]
+    
+## Users Forum
+
+The Flex users forum is a mirror of the Flex users mailing list.
+All posts to the forum are mailed to the mailing list, and all messages sent to the mailing list are posted on the forum.
+
+  - [Users Forum][25] 
+  - [Register][26]
+
+## Development Mailing List
+This mailing list is geared towards users working on the SDK or related utilities. Everybody is welcome but
+the discussion is of a high-level.  If you want to ask the developers questions about the bugs, features, etc.,
+this is the mailing list to do so.  This is where the project community hangs out. This list is used to coordinate
+activities and ensure we are all pulling in the same direction. This is a high traffic list.
+
+  - Subscribe: [dev-subscribe@flex.apache.org][2]
+  - Post (after subscription): [dev@flex.apache.org][3]
+  - Unsubscribe: [dev-unsubscribe@flex.apache.org][4]
+  - Subscribe to digest: [dev-digest-subscribe@flex.apache.org][18]
+  - Unsubscribe to digest: [dev-digest-unsubscribe@flex.apache.org][19] 
+  - List Archives:
+    - [Markmail][5]
+    - Apache: [Old][6] - [New][23]
+    
+## Development Forum
+The Flex development forum is a mirror of the Flex development mailing list.
+All posts to the forum are mailed to the mailing list, and all messages sent to the mailing list are posted on the forum.
+
+  - [Development Forum][27] 
+  - [Register][28]
+
+## Commits Mailing List
+This is where the community receives automated notifications of any changes to the
+code and documentation.
+
+  - Subscribe: [commits-subscribe@flex.apache.org][7]
+  - Unsubscribe: [commits-unsubscribe@flex.apache.org][8]
+  - Subscribe to digest: [commits-digest-subscribe@flex.apache.org][20]
+  - Unsubscribe to digest: [commits-digest-unsubscribe@flex.apache.org][21]   
+  - List Archives:
+    - [Markmail][9]
+    - Apache: [Old][10] - [New][22]
+    
+## Issue Mailing List
+This is where JIRA posts issues and bug reports about Apache Flex.
+
+  - Subscribe: [issues-subscribe@flex.apache.org][31]
+  - Post (after subscription): [issues@flex.apache.org][35]
+  - Unsubscribe: [issues-unsubscribe@flex.apache.org][32]
+  - Subscribe to digest: [issues-digest-subscribe@flex.apache.org][36]
+  - Unsubscribe to digest: [issues-digest-unsubscribe@flex.apache.org][37]
+  - List Archives:
+    - [Markmail][33]
+    - [Apache][34]
+  
+  [1]:  http://www.apache.org/dev/contrib-email-tips.html
+  [2]:  mailto:dev-subscribe@flex.apache.org
+  [3]:  mailto:dev@flex.apache.org
+  [4]:  mailto:dev-unsubscribe@flex.apache.org
+  [18]: mailto:dev-digest-subscribe@flex.apache.org
+  [19]: mailto:dev-digest-unsubscribe@flex.apache.org 
+  [5]:  http://markmail.org/search/+list:org.apache.incubator.flex-dev
+  [6]:  http://mail-archives.apache.org/mod_mbox/incubator-flex-dev/
+
+  [7]:  mailto:commits-subscribe@flex.apache.org
+  [8]:  mailto:commits-unsubscribe@flex.apache.org
+  [20]: mailto:commits-digest-subscribe@flex.apache.org
+  [21]: mailto:commits-digest-unsubscribe@flex.apache.org
+  [9]:  http://markmail.org/search/+list:org.apache.incubator.flex-commits
+  [10]: http://mail-archives.apache.org/mod_mbox/incubator-flex-commits/
+  
+  [11]: mailto:users-subscribe@flex.apache.org
+  [12]: mailto:users-unsubscribe@flex.apache.org
+  [16]: mailto:users-digest-subscribe@flex.apache.org
+  [17]: mailto:users-digest-unsubscribe@flex.apache.org
+  [13]: http://markmail.org/search/+list:org.apache.incubator.flex-users
+  [14]: http://mail-archives.apache.org/mod_mbox/incubator-flex-users/
+  [15]: mailto:users@flex.apache.org
+
+  [22]: http://mail-archives.apache.org/mod_mbox/flex-commits/
+  [23]: http://mail-archives.apache.org/mod_mbox/flex-dev/
+  [24]: http://mail-archives.apache.org/mod_mbox/flex-users/
+  
+  [25]: http://s.apache.org/flex-users-forum
+  [26]: http://apache-flex-users.2333346.n4.nabble.com/template/NamlServlet.jtp?macro=start_registration_page&amp;nextUrl=http%3A%2F%2Fapache-flex-users.2333346.n4.nabble.com%2F
+  [27]: http://s.apache.org/flex-dev-forum
+  [28]: http://apache-flex-development.2333347.n4.nabble.com/template/NamlServlet.jtp?macro=start_registration_page&amp;nextUrl=http%3A%2F%2Fapache-flex-development.2333347.n4.nabble.com%2F
+  
+  [31]: mailto:issues-subscribe@flex.apache.org
+  [32]: mailto:issues-unsubscribe@flex.apache.org
+  [36]: mailto:issues-digest-subscribe@flex.apache.org
+  [37]: mailto:issues-digest-unsubscribe@flex.apache.org
+  [33]: http://markmail.org/search/+list:org.apache.flex-issues
+  [34]: http://mail-archives.apache.org/mod_mbox/flex-issues/
+  [35]: mailto:issues@flex.apache.org
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/community-showcase.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/community-showcase.md b/src/site/markdown/community-showcase.md
new file mode 100644
index 0000000..5da6459
--- /dev/null
+++ b/src/site/markdown/community-showcase.md
@@ -0,0 +1,40 @@
+<!--
+ 
+ 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 Showcase!
+
+Some of the many desktop and mobile applications written with Flex, listed in alphabetical order.
+
+## How to submit your application?
+Want to see your app showcased here ? It's easy to make a submission:
+
+- Create a ticket of type "Task" on our [Bug &amp; Issue Tracker][1], under the Component "Showcase"
+- Include a title and  brief description (5 lines max)
+- Indicate the author or company name, if different from the ticket submitter name
+- Include links to web site, videos, App Store, Google Play, etc.
+- Attach screen shots (up to 3) of your application, in jpeg or png format.
+To speed up the process, you can include the screen shots in two sizes:  300px high for the preview, and full size.
+- Provide if possible details about the implementation : version of Flex SDK / AIR,  MVC framework used, etc.
+
+The products and services in the Flex Showcase are provided for information use only to our users. The Apache Flex\u2122 PMC does not endorse or recommend any of the products or services on this page.
+
+ <div id="showcaseContainer"></div>
+
+ <!--  the showcase entries are in js/showcase.js -->
+
+  [1]:  https://issues.apache.org/jira

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/dev-faq.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/dev-faq.md b/src/site/markdown/dev-faq.md
index f96644e..a6583cd 100644
--- a/src/site/markdown/dev-faq.md
+++ b/src/site/markdown/dev-faq.md
@@ -1,3 +1,21 @@
+<!--
+ 
+ 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.
+ 
+-->
 # Frequently Asked Questions
 
 This page covers some frequently asked questions that we get on the mailing lists.  We will be updating it with more

http://git-wip-us.apache.org/repos/asf/flex-site/blob/221a7c94/src/site/markdown/dev-sourcecode.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/dev-sourcecode.md b/src/site/markdown/dev-sourcecode.md
new file mode 100644
index 0000000..d011f08
--- /dev/null
+++ b/src/site/markdown/dev-sourcecode.md
@@ -0,0 +1,106 @@
+<!--
+ 
+ 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.
+ 
+-->
+# Source Code
+
+We use [Git][1] for version control. You can [browse our repository][2] in your web browser. The development of the Flex SDK is done on branches and merged on 'develop' branch, while release candidates are done on the 'release' branch and merged to the 'master' for the production releases, see [A successful Git branching model][9] for more details.
+
+For further information see the [Git Tutorials & Training][3] page.  Committers need to [properly configure][7] their git client and know the [Suggested Practices][8].
+
+## Getting the source code
+
+If you are looking for the cutting edge development branch of the Flex SDK:
+
+    git clone https://git-wip-us.apache.org/repos/asf/flex-sdk.git flex-sdk
+	cd flex-sdk
+	git checkout develop
+	
+	You will also need:
+	git clone https://git-wip-us.apache.org/repos/asf/flex-tlf.git flex-tlf
+	
+	See the README at the root of the sdk for further details on how to set it up.
+
+If you are looking for the FlexJS\u2122 SDK:
+
+    git clone https://git-wip-us.apache.org/repos/asf/flex-asjs.git flex-asjs
+
+If you are looking for the Flex "Falcon" Compiler:
+
+    git clone https://git-wip-us.apache.org/repos/asf/flex-falcon.git flex-falcon
+
+If you are looking for the TLF Project:
+
+    git clone https://git-wip-us.apache.org/repos/asf/flex-tlf.git flex-tlf
+
+If you are looking for FlexUnit:
+
+    git clone https://git-wip-us.apache.org/repos/asf/flex-flexunit.git flex-flexunit
+
+If you are looking for BlazeDS:
+
+    git clone https://git-wip-us.apache.org/repos/asf/flex-blazeds.git flex-blazeds
+
+If you are looking for the Apache Flex SDK Installer or the Apache Flex SDK Mavenizer Project:
+
+    git clone https://git-wip-us.apache.org/repos/asf/flex-utilities.git flex-utilities
+
+## Apache Flex SDK Automated Testing Libraries
+
+We use [FlexUnit][4] for unit testing.
+
+We use [Mockolate][5] for mocks and test spies in unit tests. Read more about Mockolate on the project [homepage][5].
+
+We use Mustella for functional testing of the SDK. You can find more information on the [Wiki page][6].
+
+
+## Browse the repositories
+
+If you would like to browse the project progress before downloading the source code, you can do that using the [Apache Fisheye instance][10].
+
+* [Flex SDK][11]
+
+* [TLF][12]
+
+* [Falcon][13]
+
+* [Utilities][14]
+
+* [FlexUnit][15]
+
+* [FlexJS][16]
+
+* [BlazeDS][17]
+
+
+[1]: http://git-scm.com/
+[2]: https://git-wip-us.apache.org/repos/asf/flex-sdk/repo?p=flex-sdk.git;a=summary
+[3]: http://www.atlassian.com/git/tutorial/git-basics
+[4]: http://flex.apache.org/flexunit/tutorial/
+[5]: http://mockolate.org/
+[6]: https://cwiki.apache.org/confluence/display/FLEX/Mustella+Overview
+[7]: https://git-wip-us.apache.org/
+[8]: https://git-wip-us.apache.org/docs/committer-practices.html
+[9]: http://nvie.com/posts/a-successful-git-branching-model/
+[10]: https://fisheye6.atlassian.com/
+[11]: https://fisheye6.atlassian.com/graph/flex-sdk
+[12]: https://fisheye6.atlassian.com/graph/flex-tlf
+[13]: https://fisheye6.atlassian.com/graph/flex-falcon
+[14]: https://fisheye6.atlassian.com/graph/flex-utilities
+[15]: https://fisheye6.atlassian.com/graph/flex-flexunit-git
+[16]: https://fisheye6.atlassian.com/graph/flex-asjs
+[17]: https://fisheye6.atlassian.com/graph/flex-blazeds