You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/10/07 05:51:55 UTC

[1/4] git commit: [flex-sdk] [refs/heads/develop] - Some useful script to help with creating release branches and release candidates

Updated Branches:
  refs/heads/develop 030f5e84c -> acc1b96e2
  refs/heads/release4.11.0 acc1b96e2 -> c4aa9eecc


Some useful script to help with creating release branches and release candidates


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

Branch: refs/heads/develop
Commit: 0d69cbea6cea4f70872b8e40436894bcec400adc
Parents: 030f5e8
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Oct 7 10:56:56 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Oct 7 10:56:56 2013 +1100

----------------------------------------------------------------------
 build/check_sigs.sh               | 77 +++++++++++++++++++++++++++++++
 build/deploy_release_candidate.sh | 82 ++++++++++++++++++++++++++++++++++
 build/make_release_branch.sh      | 49 ++++++++++++++++++++
 build/tag_release_candidate.sh    | 47 +++++++++++++++++++
 4 files changed, 255 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0d69cbea/build/check_sigs.sh
----------------------------------------------------------------------
diff --git a/build/check_sigs.sh b/build/check_sigs.sh
new file mode 100755
index 0000000..0716308
--- /dev/null
+++ b/build/check_sigs.sh
@@ -0,0 +1,77 @@
+#!/bin/sh -e
+
+################################################################################
+##
+##  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 [ $# -ne 2 ]
+then
+    echo "Usage: deploy_release_branch flex_version ([0-99].[0-99].[0-999]) release_candidate ([0-100])"
+    exit 1
+fi
+
+FLEX_VERSION="$1"
+CHECK=`echo "$FLEX_VERSION" | grep -q -E '[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,3}$'`
+
+if [ $? -ne 0 ]
+then
+	echo "Apache Flex version needs to be in the form [0-99].[0-99].[0-999]"
+	exit 1
+fi
+
+RELEASE_CANDIDATE="$2"
+CHECK=`echo "$RELEASE_CANDIDATE" | grep -q -E '[0-9]{1,2}'`
+
+if [ $? -ne 0 ]
+then
+	echo "Apache Flex release candidate to be in the range 1-99"
+	exit 1;
+fi
+
+# Assumes FLEX_DEV_AREA has been set up and point to SVN checked out dev area
+
+VERSION_DIR="${FLEX_DEV_AREA}/sdk/${FLEX_VERSION}"
+RC_DIR="${FLEX_DEV_AREA}/sdk/${FLEX_VERSION}/rc${RELEASE_CANDIDATE}"
+BIN_DIR="${FLEX_DEV_AREA}/sdk/${FLEX_VERSION}/rc${RELEASE_CANDIDATE}/binaries"
+DOC_DIR="${FLEX_DEV_AREA}/sdk/${FLEX_VERSION}/rc${RELEASE_CANDIDATE}/docs"
+
+function checkFile() {
+	FILE="$1"
+	
+	HASH=`md5 -q "${FILE}"`
+	CHECK=`cat "${FILE}.md5"`
+
+	if [ "$HASH" != "$CHECK" ]
+	then
+		echo "${FILE} MD5 incorrect"
+		exit 1;
+	else
+	   echo "${FILE} MD5 OK";
+	fi
+
+	gpg --verify "${FILE}.asc"
+
+}
+
+checkFile "${RC_DIR}/apache-flex-sdk-4.11.0-src.tar.gz"
+checkFile "${RC_DIR}/apache-flex-sdk-4.11.0-src.zip"
+
+checkFile "${BIN_DIR}/apache-flex-sdk-4.11.0-bin.tar.gz"
+checkFile "${BIN_DIR}/apache-flex-sdk-4.11.0-bin.zip"
+
+checkFile "${DOC_DIR}/apache-flex-sdk-4.11.0-asdocs.zip"

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0d69cbea/build/deploy_release_candidate.sh
----------------------------------------------------------------------
diff --git a/build/deploy_release_candidate.sh b/build/deploy_release_candidate.sh
new file mode 100755
index 0000000..60a7bfb
--- /dev/null
+++ b/build/deploy_release_candidate.sh
@@ -0,0 +1,82 @@
+#!/bin/sh -e
+
+################################################################################
+##
+##  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 [ $# -ne 2 ]
+then
+    echo "Usage: deploy_release_branch flex_version ([0-99].[0-99].[0-999]) release_candidate ([0-100])"
+fi
+
+FLEX_VERSION="$1"
+CHECK=`echo "$FLEX_VERSION" | grep -q -E '[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,3}$'`
+
+if [ $? -ne 0 ]
+then
+	echo "Apache Flex version needs to be in the form [0-99].[0-99].[0-999]"
+	exit 1;
+fi
+
+RELEASE_CANDIDATE="$2"
+CHECK=`echo "$RELEASE_CANDIDATE" | grep -q -E '[0-9]{1,2}'`
+
+if [ $? -ne 0 ]
+then
+	echo "Apache Flex release candidate to be in the range 1-99"
+	exit 1;
+fi
+
+# Assumes FLEX_DEV_AREA has been set up and point to SVN checked out dev area
+
+VERSION_DIR="${FLEX_DEV_AREA}/sdk/${FLEX_VERSION}"
+RC_DIR="${FLEX_DEV_AREA}/sdk/${FLEX_VERSION}/rc${RELEASE_CANDIDATE}"
+BIN_DIR="${FLEX_DEV_AREA}/sdk/${FLEX_VERSION}/rc${RELEASE_CANDIDATE}/binaries"
+DOC_DIR="${FLEX_DEV_AREA}/sdk/${FLEX_VERSION}/rc${RELEASE_CANDIDATE}/docs"
+
+echo "RC directory is ${RC_DIR}"
+
+if [ ! -d "${VERSION_DIR}" ]
+then
+	mkdir "${VERSION_DIR}"
+fi
+
+if [ ! -d "${RC_DIR}" ]
+then
+	mkdir "${RC_DIR}"
+fi
+
+if [ ! -d "${BIN_DIR}" ]
+then
+	mkdir "${BIN_DIR}"
+fi
+
+if [ ! -d "${DOC_DIR}" ]
+then
+	mkdir "${DOC_DIR}"
+fi
+
+cp README "${RC_DIR}"
+cp RELEASE_NOTES "${RC_DIR}"
+cp ./out/*-src.* "${RC_DIR}"
+cp ./out/*-bin.* "${BIN_DIR}"
+cp ./out/*-asdocs.* "${DOC_DIR}"
+
+
+

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0d69cbea/build/make_release_branch.sh
----------------------------------------------------------------------
diff --git a/build/make_release_branch.sh b/build/make_release_branch.sh
new file mode 100755
index 0000000..605f829
--- /dev/null
+++ b/build/make_release_branch.sh
@@ -0,0 +1,49 @@
+#!/bin/sh -e
+
+################################################################################
+##
+##  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.
+##
+################################################################################
+
+
+# This script release branch for the next Apache Flex version
+
+if [ $# -ne 1 ]
+then
+    echo Usage: make_release_branch [0-100].[0-100].[0-1000]
+fi
+
+FLEX_VERSION="$1"
+CHECK=`echo "$FLEX_VERSION" | grep -q -E '[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,3}$'`
+
+if [ $? -ne 0 ]
+then
+	echo "Apache Flex version needs to be in the form [0-100].[0-100].[0-1000]"
+	exit 1;
+fi
+
+echo "Creating branch for Apache Flex Version ${FLEX_VERSION}"
+
+git push -u origin develop:release${FLEX_VERSION}
+
+cd ..
+mkdir "ApacheFlex${FLEX_VERSION}"
+cd "ApacheFlex${FLEX_VERSION}"
+git clone https://git-wip-us.apache.org/repos/asf/flex-sdk.git .
+git checkout release${FLEX_VERSION}
+git tag -a apache-flex-sdk-${FLEX_VERSION}RC1 -m \'"Apache Flex ${FLEX_VERSION} RC1"\'
+git push --tags
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0d69cbea/build/tag_release_candidate.sh
----------------------------------------------------------------------
diff --git a/build/tag_release_candidate.sh b/build/tag_release_candidate.sh
new file mode 100755
index 0000000..345bc68
--- /dev/null
+++ b/build/tag_release_candidate.sh
@@ -0,0 +1,47 @@
+#!/bin/sh -e
+
+################################################################################
+##
+##  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 [ $# -ne 2 ]
+then
+    echo "Usage: deploy_release_branch flex_version ([0-99].[0-99].[0-999]) release_candidate ([0-100])"
+fi
+
+FLEX_VERSION="$1"
+CHECK=`echo "$FLEX_VERSION" | grep -q -E '[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,3}$'`
+
+if [ $? -ne 0 ]
+then
+	echo "Apache Flex version needs to be in the form [0-99].[0-99].[0-999]"
+	exit 1;
+fi
+
+RELEASE_CANDIDATE="$2"
+CHECK=`echo "$RELEASE_CANDIDATE" | grep -q -E '[0-9]{1,2}'`
+
+if [ $? -ne 0 ]
+then
+	echo "Apache Flex release candidate to be in the range 1-99"
+	exit 1;
+fi
+
+git tag -a apache-flex-sdk-${FLEX_VERSION}RC${RELEASE_CANDIDATE} -m \'"Apache Flex ${FLEX_VERSION} RC${RELEASE_CANDIDATE}"\'
+git push --tags
\ No newline at end of file


[4/4] git commit: [flex-sdk] [refs/heads/release4.11.0] - Renamed supportClazzes package to be called supoortClasses

Posted by jm...@apache.org.
Renamed supportClazzes package to be called supoortClasses


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

Branch: refs/heads/release4.11.0
Commit: c4aa9eecc30a0cb3e6d6d629fc1eba77cce61158
Parents: acc1b96
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Oct 7 14:51:15 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Oct 7 14:51:15 2013 +1100

----------------------------------------------------------------------
 frameworks/projects/experimental/src/ExperimentalClasses.as      | 4 ++--
 .../projects/experimental/src/spark/containers/DeferredGroup.as  | 2 +-
 .../projects/experimental/src/spark/containers/NavigatorGroup.as | 2 +-
 .../spark/containers/supportClazzes/DeferredCreationPolicy.as    | 2 +-
 .../spark/layouts/supportClasses/AnimationNavigatorLayoutBase.as | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c4aa9eec/frameworks/projects/experimental/src/ExperimentalClasses.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/ExperimentalClasses.as b/frameworks/projects/experimental/src/ExperimentalClasses.as
index 21d4304..e017a91 100644
--- a/frameworks/projects/experimental/src/ExperimentalClasses.as
+++ b/frameworks/projects/experimental/src/ExperimentalClasses.as
@@ -33,9 +33,9 @@ package
 		import spark.components.itemRenderers.MenuCoreItemRenderer; MenuCoreItemRenderer;
 		import spark.components.itemRenderers.MenuItemRenderer; MenuItemRenderer;
 		import spark.components.listClasses.IListItemRenderer; IListItemRenderer;
-		import spark.components.supportClazzes.AnimationTarget; AnimationTarget;
+		import spark.components.supportClasses.AnimationTarget; AnimationTarget;
 		import spark.components.supportClasses.IDropDownContainer; IDropDownContainer;
-		import spark.containers.supportClazzes.DeferredCreationPolicy; DeferredCreationPolicy;
+		import spark.containers.supportClasses.DeferredCreationPolicy; DeferredCreationPolicy;
 		import spark.containers.Accordion; Accordion;
 		import spark.events.ColorChangeEvent; ColorChangeEvent;
 		import spark.events.MenuEvent; MenuEvent;

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c4aa9eec/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as b/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as
index 1bb6553..0425917 100644
--- a/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as
+++ b/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as
@@ -50,7 +50,7 @@ package spark.containers
 	import spark.layouts.BasicLayout;
 	import spark.layouts.supportClasses.LayoutBase;
 	
-	import spark.containers.supportClazzes.DeferredCreationPolicy;
+	import spark.containers.supportClasses.DeferredCreationPolicy;
 	
 	use namespace mx_internal;
 	

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c4aa9eec/frameworks/projects/experimental/src/spark/containers/NavigatorGroup.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/containers/NavigatorGroup.as b/frameworks/projects/experimental/src/spark/containers/NavigatorGroup.as
index 3a4cb9f..83a7d3a 100644
--- a/frameworks/projects/experimental/src/spark/containers/NavigatorGroup.as
+++ b/frameworks/projects/experimental/src/spark/containers/NavigatorGroup.as
@@ -31,7 +31,7 @@ package spark.containers
 	import spark.events.IndexChangeEvent;
 	import spark.layouts.supportClasses.LayoutBase;
 	
-	import spark.containers.supportClazzes.DeferredCreationPolicy;
+	import spark.containers.supportClasses.DeferredCreationPolicy;
 	import spark.layouts.StackLayout;
 	import spark.layouts.supportClasses.AnimationNavigatorLayoutBase;
 	import spark.layouts.supportClasses.INavigatorLayout;

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c4aa9eec/frameworks/projects/experimental/src/spark/containers/supportClazzes/DeferredCreationPolicy.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/containers/supportClazzes/DeferredCreationPolicy.as b/frameworks/projects/experimental/src/spark/containers/supportClazzes/DeferredCreationPolicy.as
index 0d8d2d2..954abd9 100644
--- a/frameworks/projects/experimental/src/spark/containers/supportClazzes/DeferredCreationPolicy.as
+++ b/frameworks/projects/experimental/src/spark/containers/supportClazzes/DeferredCreationPolicy.as
@@ -16,7 +16,7 @@
 //  limitations under the License.
 //
 ////////////////////////////////////////////////////////////////////////////////
-package spark.containers.supportClazzes
+package spark.containers.supportClasses
 {
 	
 

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/c4aa9eec/frameworks/projects/experimental/src/spark/layouts/supportClasses/AnimationNavigatorLayoutBase.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/layouts/supportClasses/AnimationNavigatorLayoutBase.as b/frameworks/projects/experimental/src/spark/layouts/supportClasses/AnimationNavigatorLayoutBase.as
index 7cbafe4..aa1fc3b 100644
--- a/frameworks/projects/experimental/src/spark/layouts/supportClasses/AnimationNavigatorLayoutBase.as
+++ b/frameworks/projects/experimental/src/spark/layouts/supportClasses/AnimationNavigatorLayoutBase.as
@@ -25,7 +25,7 @@ package spark.layouts.supportClasses
 	import spark.effects.easing.Linear;
 	import spark.effects.easing.Sine;
 	
-	import spark.components.supportClazzes.AnimationTarget;
+	import spark.components.supportClasses.AnimationTarget;
 
 	/**
 	 *  A AnimationNavigatorLayoutBase class is a base class for navigator layouts


[2/4] git commit: [flex-sdk] [refs/heads/develop] - Made Apache headers more in the style of other headers

Posted by jm...@apache.org.
Made Apache headers more in the style of other headers


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

Branch: refs/heads/develop
Commit: 782bbbc5b56cf5d6631a1159bdd5ffed2ce8b686
Parents: 0d69cbe
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Oct 7 11:02:35 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Oct 7 11:02:35 2013 +1100

----------------------------------------------------------------------
 .../itemRenderers/MenuBarItemRenderer.mxml      | 41 ++++++++++---------
 .../itemRenderers/MenuCoreItemRenderer.as       |  2 +
 .../itemRenderers/MenuItemRenderer.mxml         | 41 ++++++++++---------
 .../experimental/src/spark/skins/AlertSkin.mxml | 41 ++++++++++---------
 .../src/spark/skins/ColorPickerButtonSkin.mxml  | 41 ++++++++++---------
 .../src/spark/skins/ColorPickerSkin.mxml        | 42 ++++++++++----------
 .../src/spark/skins/MenuBarSkin.mxml            | 41 ++++++++++---------
 .../experimental/src/spark/skins/MenuSkin.mxml  | 41 ++++++++++---------
 .../src/spark/skins/ProgressBarSkin.mxml        | 41 ++++++++++---------
 9 files changed, 163 insertions(+), 168 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuBarItemRenderer.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuBarItemRenderer.mxml b/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuBarItemRenderer.mxml
index 64b65cd..baff180 100644
--- a/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuBarItemRenderer.mxml
+++ b/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuBarItemRenderer.mxml
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
 <itemRenderers:MenuCoreItemRenderer
         xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
@@ -6,27 +26,6 @@
         minWidth="100" minHeight="20"
         rollOut="onRollOut(event)"
         useHandCursor="true" mouseChildren="false" buttonMode="true">
-    <!--
-	////////////////////////////////////////////////////////////////////////////////
-	//
-	//  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.
-	//
-	////////////////////////////////////////////////////////////////////////////////
-	@author Bogdan Dinu (http://www.badu.ro)
-	-->
     <s:BitmapImage left="0" top="0" id="icon" source="{iconSource}" includeInLayout="{hasIcon}" visible="{hasIcon}"/>
     <s:Label id="labelDisplay" textAlign="center" height="100%" width="100%" verticalAlign="middle"/>
 

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuCoreItemRenderer.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuCoreItemRenderer.as b/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuCoreItemRenderer.as
index 4204fdc..06c32fe 100644
--- a/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuCoreItemRenderer.as
+++ b/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuCoreItemRenderer.as
@@ -36,6 +36,8 @@ package spark.components.itemRenderers {
     import spark.layouts.HorizontalLayout;
     import spark.layouts.VerticalLayout;
 
+	[Experimental]
+	
     /**
      *
      */

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuItemRenderer.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuItemRenderer.mxml b/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuItemRenderer.mxml
index 1b42fea..df6b2c3 100644
--- a/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuItemRenderer.mxml
+++ b/frameworks/projects/experimental/src/spark/components/itemRenderers/MenuItemRenderer.mxml
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
 <itemRenderers:MenuCoreItemRenderer
         xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
@@ -6,27 +26,6 @@
         autoDrawBackground="{!isSeparator}"
         minWidth="150" minHeight="20"
         useHandCursor="true" mouseChildren="false" buttonMode="true">
-    <!--
-	////////////////////////////////////////////////////////////////////////////////
-	//
-	//  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.
-	//
-	////////////////////////////////////////////////////////////////////////////////
-	@author Bogdan Dinu (http://www.badu.ro)
-	-->
     <s:Group visible="{!isSeparator}" includeInLayout="{!isSeparator}" left="0" right="0" height="100%">
         <s:BitmapImage left="0" top="0" id="icon" source="{iconSource}" includeInLayout="{hasIcon}" visible="{hasIcon}"/>
         <s:Label id="labelDisplay" left="16" right="10" height="100%" verticalAlign="middle"/>

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/skins/AlertSkin.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/skins/AlertSkin.mxml b/frameworks/projects/experimental/src/spark/skins/AlertSkin.mxml
index dae14be..67afe58 100644
--- a/frameworks/projects/experimental/src/spark/skins/AlertSkin.mxml
+++ b/frameworks/projects/experimental/src/spark/skins/AlertSkin.mxml
@@ -1,28 +1,27 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
 <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
 			 xmlns:fb="http://ns.adobe.com/flashbuilder/2009" blendMode="normal" mouseEnabled="false"
 			 minWidth="131" minHeight="30" alpha.disabled="0.5" alpha.disabledWithControlBar="0.5">
-	<!--
-	////////////////////////////////////////////////////////////////////////////////
-	//
-	//  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.
-	//
-	////////////////////////////////////////////////////////////////////////////////
-	@author Bogdan Dinu (http://www.badu.ro)
-	-->
 	<fx:Metadata>
 		<![CDATA[
         [HostComponent("spark.components.Alert")]

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/skins/ColorPickerButtonSkin.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/skins/ColorPickerButtonSkin.mxml b/frameworks/projects/experimental/src/spark/skins/ColorPickerButtonSkin.mxml
index 0b0dc3c..7651b4d 100644
--- a/frameworks/projects/experimental/src/spark/skins/ColorPickerButtonSkin.mxml
+++ b/frameworks/projects/experimental/src/spark/skins/ColorPickerButtonSkin.mxml
@@ -1,27 +1,26 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
 <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" 
     xmlns:fb="http://ns.adobe.com/flashbuilder/2009" minWidth="24" minHeight="24">
-	<!--
-	////////////////////////////////////////////////////////////////////////////////
-	//
-	//  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.
-	//
-	////////////////////////////////////////////////////////////////////////////////
-	@author Bogdan Dinu (http://www.badu.ro)
-	-->
     <fx:Metadata>
     <![CDATA[ 
         [HostComponent("spark.components.Button")]

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/skins/ColorPickerSkin.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/skins/ColorPickerSkin.mxml b/frameworks/projects/experimental/src/spark/skins/ColorPickerSkin.mxml
index 21e15cb..c4e8544 100644
--- a/frameworks/projects/experimental/src/spark/skins/ColorPickerSkin.mxml
+++ b/frameworks/projects/experimental/src/spark/skins/ColorPickerSkin.mxml
@@ -1,27 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
 <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
 			 xmlns:fb="http://ns.adobe.com/flashbuilder/2009" alpha.disabled=".5" minWidth="24"
 			 currentStateChange="onStateChange(event)">
-	<!--
-	////////////////////////////////////////////////////////////////////////////////
-	//
-	//  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.
-	//
-	////////////////////////////////////////////////////////////////////////////////
-	@author Bogdan Dinu (http://www.badu.ro)
-	-->
 	<fx:Metadata>
 		<![CDATA[
 		[HostComponent("spark.components.ColorPicker")]

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/skins/MenuBarSkin.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/skins/MenuBarSkin.mxml b/frameworks/projects/experimental/src/spark/skins/MenuBarSkin.mxml
index ed084cd..abee0da 100644
--- a/frameworks/projects/experimental/src/spark/skins/MenuBarSkin.mxml
+++ b/frameworks/projects/experimental/src/spark/skins/MenuBarSkin.mxml
@@ -1,29 +1,28 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
 <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
              xmlns:fb="http://ns.adobe.com/flashbuilder/2009"
 			 minWidth="112" minHeight="30"
              alpha.disabled="0.5" blendMode="normal">
-	<!--
-	////////////////////////////////////////////////////////////////////////////////
-	//
-	//  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.
-	//
-	////////////////////////////////////////////////////////////////////////////////
-	@author Bogdan Dinu (http://www.badu.ro)
-	-->
     <fx:Metadata>
         <![CDATA[
         /**

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/skins/MenuSkin.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/skins/MenuSkin.mxml b/frameworks/projects/experimental/src/spark/skins/MenuSkin.mxml
index 2b174fc..b3493e9 100644
--- a/frameworks/projects/experimental/src/spark/skins/MenuSkin.mxml
+++ b/frameworks/projects/experimental/src/spark/skins/MenuSkin.mxml
@@ -1,29 +1,28 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
 <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
              xmlns:fb="http://ns.adobe.com/flashbuilder/2009"
 			 minWidth="112" minHeight="30"
              alpha.disabled="0.5" blendMode="normal">
-	<!--
-	////////////////////////////////////////////////////////////////////////////////
-	//
-	//  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.
-	//
-	////////////////////////////////////////////////////////////////////////////////
-	@author Bogdan Dinu (http://www.badu.ro)
-	-->
     <fx:Metadata>
         <![CDATA[
         /**

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/782bbbc5/frameworks/projects/experimental/src/spark/skins/ProgressBarSkin.mxml
----------------------------------------------------------------------
diff --git a/frameworks/projects/experimental/src/spark/skins/ProgressBarSkin.mxml b/frameworks/projects/experimental/src/spark/skins/ProgressBarSkin.mxml
index 4c24ac8..a38fe60 100644
--- a/frameworks/projects/experimental/src/spark/skins/ProgressBarSkin.mxml
+++ b/frameworks/projects/experimental/src/spark/skins/ProgressBarSkin.mxml
@@ -1,27 +1,26 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+-->
 <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"
 		xmlns:s="library://ns.adobe.com/flex/spark">
-	<!--
-	////////////////////////////////////////////////////////////////////////////////
-	//
-	//  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.
-	//
-	////////////////////////////////////////////////////////////////////////////////
-	@author Bogdan Dinu (http://www.badu.ro)
-	-->
 	<fx:Metadata>
         [HostComponent("spark.components.ProgressBar")]
     </fx:Metadata>


[3/4] git commit: [flex-sdk] [refs/heads/develop] - Updated release note with resolved JIR A issue and new experimental tag. FP 11.9 not out yes so marked as beta.

Posted by jm...@apache.org.
Updated release note with resolved JIR A issue and new experimental tag. FP 11.9 not out yes so marked as beta.


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

Branch: refs/heads/develop
Commit: acc1b96e2f6f7905d6bc02400c329eebae147213
Parents: 782bbbc
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Oct 7 11:04:26 2013 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Oct 7 11:04:26 2013 +1100

----------------------------------------------------------------------
 RELEASE_NOTES | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/acc1b96e/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 77f12f4..0f0acd5 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -31,8 +31,8 @@ Differences from Apache Flex 4.9 include:
 
 AIR and Flash Player support
 ------------------------------
- - Support Flash Player 11.9.
- - Support for AIR 3.9.
+ - Support Flash Player 11.9 beta.
+ - Support for AIR 3.9 beta.
 
 SDK Changes
 -------------
@@ -43,7 +43,12 @@ SDK Changes
 - s:DataGridEditor will now be visible in ASDocs and be visible in the Tag inspector.
 - Minor changes to make SDK compile with Falcon compiler.
 - Added access to imageDecodingPolicy in BitmapImage.
-- New experimental mobile spark datagrid
+- New experimental mobile spark datagrid.
+- Updated OSMF swc to latest version (2.0)
+
+Compiler changes
+------------------
+ - Support for [Experimental] metadata tag.
 
 Bug Fixes
 ----------
@@ -56,6 +61,7 @@ Bug Fixes
 
 JIRA Issue Number and Summary                                                                                        
 -------------------------------------------------------------------------------------------------------------------
+FLEX-33801  Missing embedded examples in ASDOC on flex.apache.org/asdoc/
 FLEX-33789  Logical error: self-reference in GridHeaderViewLayout
 FLEX-33783  mxmlc -help returns 1
 FLEX-33782  AccordionData labelField and labelFunction properties don't work