[01/13] git commit: [flex-asjs] [refs/heads/develop] - remove IInitModel. Models are now initialized on demand

2013-07-16 Thread aharui
Updated Branches:
  refs/heads/develop ff20b3321 - 2052b633f


remove IInitModel.  Models are now initialized on demand


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

Branch: refs/heads/develop
Commit: 4b0994a72b11bb7204f6a0f0426d3cde108ea950
Parents: ff20b33
Author: Alex Harui aha...@apache.org
Authored: Fri Jul 12 11:54:16 2013 -0700
Committer: Alex Harui aha...@apache.org
Committed: Fri Jul 12 11:54:16 2013 -0700

--
 frameworks/as/defaults.css  | 40 ++--
 .../as/src/org/apache/flex/core/IInitModel.as   | 25 
 .../as/src/org/apache/flex/core/UIBase.as   | 12 +++---
 .../src/org/apache/flex/createjs/core/UIBase.as |  8 +---
 .../flex/createjs/staticControls/TextButton.as  | 11 +-
 .../apache/flex/html/staticControls/Alert.as|  7 
 .../apache/flex/html/staticControls/Button.as   |  8 +---
 .../apache/flex/html/staticControls/CheckBox.as |  9 +
 .../apache/flex/html/staticControls/ComboBox.as |  8 +---
 .../flex/html/staticControls/DropDownList.as|  8 +---
 .../apache/flex/html/staticControls/Label.as|  8 +---
 .../org/apache/flex/html/staticControls/List.as |  6 ---
 .../flex/html/staticControls/NumericStepper.as  |  7 
 .../apache/flex/html/staticControls/Panel.as| 34 -
 .../flex/html/staticControls/RadioButton.as |  9 +
 .../flex/html/staticControls/SimpleAlert.as |  7 
 .../apache/flex/html/staticControls/Spinner.as  | 10 +
 .../apache/flex/html/staticControls/TextArea.as |  6 ---
 .../flex/html/staticControls/TextButton.as  |  9 +
 .../flex/html/staticControls/TextInput.as   |  6 ---
 .../apache/flex/html/staticControls/TitleBar.as | 18 +++--
 .../flex/html/staticControls/beads/AlertBead.as |  7 
 .../html/staticControls/beads/ComboBoxBead.as   |  5 ---
 .../staticControls/beads/DropDownListBead.as|  3 --
 .../flex/html/staticControls/beads/ListBead.as  |  1 -
 .../staticControls/beads/NumericStepperBead.as  |  2 -
 .../flex/html/staticControls/beads/PanelBead.as |  4 +-
 .../staticControls/beads/SimpleAlertBead.as |  3 --
 .../html/staticControls/beads/TextAreaBead.as   |  1 -
 .../flex/jquery/staticControls/RadioButton.as   |  4 --
 .../apache/flex/utils/MXMLDataInterpreter.as|  5 +--
 31 files changed, 45 insertions(+), 246 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/4b0994a7/frameworks/as/defaults.css
--
diff --git a/frameworks/as/defaults.css b/frameworks/as/defaults.css
index b5b9f12..cf55157 100644
--- a/frameworks/as/defaults.css
+++ b/frameworks/as/defaults.css
@@ -57,13 +57,13 @@ Button:active
 global
 {
 ITextBead: 
ClassReference(org.apache.flex.html.staticControls.beads.TextFieldBead);
-ITextModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.TextModel);
+IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.TextModel);
 IStatesImpl: ClassReference(org.apache.flex.core.SimpleStatesImpl);
 }
 
 CheckBox
 {
-IToggleButtonModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ToggleButtonModel);
+IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ToggleButtonModel);
 ICheckBoxBead:  
ClassReference(org.apache.flex.html.staticControls.beads.CheckBoxBead);   
   
 }
 
@@ -75,19 +75,19 @@ Container
 ComboBox
 {
 IComboBoxBead: 
ClassReference(org.apache.flex.html.staticControls.beads.ComboBoxBead);
-IComboBoxModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ComboBoxModel);
+IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ComboBoxModel);
 IPopUp: 
ClassReference(org.apache.flex.html.staticControls.supportClasses.DropDownListList);
 }
 
 DropDownList
 {
-ISelectionModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ArraySelectionModel);
+IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ArraySelectionModel);
 IPopUp: 
ClassReference(org.apache.flex.html.staticControls.supportClasses.DropDownListList);
 }
 
 DropDownListList
 {
-ISelectionModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ArraySelectionModel);
+IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ArraySelectionModel);
 }
 
 Label
@@ -99,12 +99,12 @@ Label
 
 List
 {
-   ISelectionModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ArraySelectionModel);
+   IBeadModel: 

[13/13] git commit: [flex-asjs] [refs/heads/develop] - fix states in release mode on JS

2013-07-16 Thread aharui
fix states in release mode on JS


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

Branch: refs/heads/develop
Commit: 2052b633ff17c77aea3b16b7f81ee5cb1553acd2
Parents: 012ef5d
Author: Alex Harui aha...@apache.org
Authored: Tue Jul 16 00:33:31 2013 -0700
Committer: Alex Harui aha...@apache.org
Committed: Tue Jul 16 00:33:31 2013 -0700

--
 .../org/apache/flex/core/SimpleStatesImpl.js| 47 
 1 file changed, 39 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/2052b633/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js
--
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js 
b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js
index 5817de4..4d3aec6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js
@@ -70,7 +70,7 @@ 
org.apache.flex.core.SimpleStatesImpl.prototype.stateChangeHandler =
 s = arr[p];
 if (s.name == event.newValue)
 {
-  this.apply(s);
+  this.applyState(s);
   break;
 }
   }
@@ -92,7 +92,11 @@ org.apache.flex.core.SimpleStatesImpl.prototype.revert = 
function(s) {
   for (var q in o.items)
   {
 var item = o.items[q];
-var parent = o.document[o.destination];
+var parent;
+if (typeof(o.document['get_' + o.destination]) == 'function')
+parent = o.document['get_' + o.destination]();
+else
+parent = o.document[o.destination];
 item.removeFromParent(parent);
 parent.dispatchEvent(
 new org.apache.flex.events.Event('childrenAdded'));
@@ -100,7 +104,15 @@ org.apache.flex.core.SimpleStatesImpl.prototype.revert = 
function(s) {
 }
 else if (o.type == 'SetProperty')
 {
-  o.document[o.target][o.name] = o.previousValue;
+  var target;
+  if (typeof(o.document['get_' + o.target]) == 'function')
+target = o.document['get_' + o.target]();
+  else
+target = o.document[o.target];
+  if (typeof(target['set_' + o.name]) == 'function')
+target['set_' + o.name](o.previousValue);
+  else
+target[o.name] = o.previousValue;
 }
   }
 };
@@ -110,7 +122,7 @@ org.apache.flex.core.SimpleStatesImpl.prototype.revert = 
function(s) {
  * @this {org.apache.flex.core.SimpleStatesImpl}
  * @param {Object} s The State to apply.
  */
-org.apache.flex.core.SimpleStatesImpl.prototype.apply = function(s) {
+org.apache.flex.core.SimpleStatesImpl.prototype.applyState = function(s) {
   var o, p;
   var arr = s.overrides;
   for (p in arr)
@@ -129,10 +141,18 @@ org.apache.flex.core.SimpleStatesImpl.prototype.apply = 
function(s) {
   for (var q in o.items)
   {
 var item = o.items[q];
-var parent = o.document[o.destination];
+var parent;
+if (typeof(o.document['get_' + o.destination]) == 'function')
+parent = o.document['get_' + o.destination]();
+else
+parent = o.document[o.destination];
 if (o.relativeTo != null)
 {
-var child = o.document[o.relativeTo];
+var child;
+if (typeof(o.document['get_' + o.relativeTo]) == 'function')
+child = o.document['get_' + o.relativeTo]();
+else
+child = o.document[o.relativeTo];
 var index = child.getIndexInParent(parent);
 if (o.position == 'after')
 index++;
@@ -148,8 +168,19 @@ org.apache.flex.core.SimpleStatesImpl.prototype.apply = 
function(s) {
 }
 else if (o.type == 'SetProperty')
 {
-  o.previousValue = o.document[o.target][o.name];
-  o.document[o.target][o.name] = o.value;
+  var target;
+  if (typeof(o.document['get_' + o.target]) == 'function')
+target = o.document['get_' + o.target]();
+  else
+target = o.document[o.target];
+  if (typeof(target['get_' + o.name]) == 'function')
+o.previousValue = target['get_' + o.name]();
+  else
+o.previousValue = target[o.name]
+  if (typeof(target['set_' + o.name]) == 'function')
+target['set_' + o.name](o.value);
+  else
+target[o.name] = o.value;
 }
   }
 };



[10/13] git commit: [flex-asjs] [refs/heads/develop] - more cleanup after refactor

2013-07-16 Thread aharui
more cleanup after refactor


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

Branch: refs/heads/develop
Commit: 9e03934fd26110389223bf90ded8a729bdc04924
Parents: b308356
Author: Alex Harui aha...@apache.org
Authored: Mon Jul 15 20:45:29 2013 -0700
Committer: Alex Harui aha...@apache.org
Committed: Mon Jul 15 20:45:29 2013 -0700

--
 frameworks/as/defaults.css  | 164 +--
 frameworks/as/src/FlexJSUIClasses.as|  44 ++---
 .../apache/flex/html/staticControls/Alert.as|   5 -
 .../apache/flex/html/staticControls/ComboBox.as |   3 -
 .../flex/html/staticControls/Container.as   |   2 -
 .../apache/flex/html/staticControls/Label.as|   2 -
 .../flex/html/staticControls/NumericStepper.as  |   2 -
 .../flex/html/staticControls/TextInput.as   |   2 -
 .../html/staticControls/beads/SpinnerView.as|   6 +-
 .../beads/layouts/NonVirtualVerticalLayout.as   |   1 -
 .../supportClasses/TextFieldItemRenderer.as |   2 -
 11 files changed, 105 insertions(+), 128 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/9e03934f/frameworks/as/defaults.css
--
diff --git a/frameworks/as/defaults.css b/frameworks/as/defaults.css
index 2c138ee..43d13fb 100644
--- a/frameworks/as/defaults.css
+++ b/frameworks/as/defaults.css
@@ -59,15 +59,24 @@ global
 IStatesImpl: ClassReference(org.apache.flex.core.SimpleStatesImpl);
 }
 
-CheckBox
+Alert
 {
-IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ToggleButtonModel);
-IBeadView:  
ClassReference(org.apache.flex.html.staticControls.beads.CheckBoxView);   
   
+iBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.AlertModel);
+IBeadView:  
ClassReference(org.apache.flex.html.staticControls.beads.AlertView);
+IBeadController: 
ClassReference(org.apache.flex.html.staticControls.beads.controllers.AlertController);
+iBackgroundBead: 
ClassReference(org.apache.flex.html.staticControls.beads.SolidBackgroundBead);
+iBorderBead: 
ClassReference(org.apache.flex.html.staticControls.beads.SingleLineBorderBead);
+
+background-color: #FF;
+border-style: solid;
+border-color: #00;
+border-thickness: 1;
 }
 
-Container
+CheckBox
 {
-IBeadView: 
ClassReference(org.apache.flex.html.staticControls.beads.ContainerView)
+IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ToggleButtonModel);
+IBeadView:  
ClassReference(org.apache.flex.html.staticControls.beads.CheckBoxView);   
   
 }
 
 ComboBox
@@ -78,6 +87,17 @@ ComboBox
 IPopUp: 
ClassReference(org.apache.flex.html.staticControls.supportClasses.DropDownListList);
 }
 
+Container
+{
+IBeadView: 
ClassReference(org.apache.flex.html.staticControls.beads.ContainerView)
+}
+
+ControlBar
+{
+IBeadLayout: 
ClassReference(org.apache.flex.html.staticControls.beads.layouts.NonVirtualHorizontalLayout);
+iMeasurementBead: 
ClassReference(org.apache.flex.html.staticControls.beads.ControlBarMeasurementBead);
+}
+
 DropDownList
 {
 IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ArraySelectionModel);
@@ -111,46 +131,37 @@ List
 IItemRenderer: 
ClassReference(org.apache.flex.html.staticControls.supportClasses.TextFieldItemRenderer);
 }
 
-RadioButton
-{
-IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.ValueToggleButtonModel);
-IBeadView:  
ClassReference(org.apache.flex.html.staticControls.beads.RadioButtonView);
   
-}
-
-TextButton
-{
-IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.TextModel);
-IBeadView: 
ClassReference(org.apache.flex.html.staticControls.beads.CSSTextButtonView);
-iMeasurementBead: 
ClassReference(org.apache.flex.html.staticControls.beads.TextButtonMeasurementBead);
-}
-
-TextFieldItemRenderer
-{
-IBeadController: 
ClassReference(org.apache.flex.html.staticControls.beads.controllers.ItemRendererMouseController);
-height: 16;
-}
-
-TextArea
+NumericStepper
 {
-IBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.TextModel);
-IBeadView: 
ClassReference(org.apache.flex.html.staticControls.beads.TextAreaView);
-width: 135;
-height: 20;
+iBeadModel: 
ClassReference(org.apache.flex.html.staticControls.beads.models.SpinnerModel);
+IBeadView: 
ClassReference(org.apache.flex.html.staticControls.beads.NumericStepperView);
+
+padding: 0px;
+border-style: solid;
+  

git commit: [flex-sdk] [refs/heads/develop] - Fixed boolean conditional (hopefully, most of my shell scripting is just guesswork ; -))

2013-07-16 Thread erikdebruin
Updated Branches:
  refs/heads/develop 8f2b9c090 - 1dab082cf


Fixed boolean conditional (hopefully, most of my shell scripting is just 
guesswork ;-))

Signed-off-by: Erik de Bruin e...@ixsoftware.nl


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

Branch: refs/heads/develop
Commit: 1dab082cf5541ca4a139bfff731e4f0b2982b6e6
Parents: 8f2b9c0
Author: Erik de Bruin e...@ixsoftware.nl
Authored: Tue Jul 16 19:51:41 2013 +0200
Committer: Erik de Bruin e...@ixsoftware.nl
Committed: Tue Jul 16 19:51:52 2013 +0200

--
 mustella/jenkins.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/1dab082c/mustella/jenkins.sh
--
diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh
index e94e88d..744a436 100755
--- a/mustella/jenkins.sh
+++ b/mustella/jenkins.sh
@@ -208,7 +208,7 @@ END
 
 
 
-if [ ! SUCCESS ]
+if ! SUCCESS
 then
   exit 1
 fi



svn commit: r1503929 - /flex/site/trunk/content/installer/sdk-installer-config-3.0-rc1.xml

2013-07-16 Thread jmclean
Author: jmclean
Date: Tue Jul 16 22:33:21 2013
New Revision: 1503929

URL: http://svn.apache.org/r1503929
Log:
Added config file to help test Apache Flex RC1 release

Added:
flex/site/trunk/content/installer/sdk-installer-config-3.0-rc1.xml

Added: flex/site/trunk/content/installer/sdk-installer-config-3.0-rc1.xml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/installer/sdk-installer-config-3.0-rc1.xml?rev=1503929view=auto
==
--- flex/site/trunk/content/installer/sdk-installer-config-3.0-rc1.xml (added)
+++ flex/site/trunk/content/installer/sdk-installer-config-3.0-rc1.xml Tue Jul 
16 22:33:21 2013
@@ -0,0 +1,104 @@
+?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.
+
+--
+
+config
+   version
+   latest2.6.0/latest
+   /version
+   files
+
+   !-- SDK Installer Application binary distribution
+Notes:
+   - use full URL when binaries are NOT released 
yet, else use
+ path relative to mirror
+   - if path is relative, don't use starting slash 
--
+   file name=SDKInstallerApp 
path=https://dist.apache.org/repos/dist/dev/flex/installer/2.0/rc1/binaries/; 
file=apache-flex-sdk-installer-2.0.3-bin /
+
+!-- Mirror URL CGI --
+file name=MirrorURLCGI path= file=single-mirror-url.cgi/
+
+!-- Apache Flex binary distribution
+ Notes:
+ - path is relative to mirror URL
+ - don't use starting slash
+ - for the second and later releases, remove the extension 
from the file name --
+file name=ApacheFlexSDK 
path=https://dist.apache.org/repos/dist/dev/flex/sdk/4.10.0/rc1/; 
file=apache-flex-sdk-4.10.0-bin/
+
+!-- All the versions! --
+   file name=Versions 
airVersions=3.8,3.7,3.6,3.5,3.4,3.3,3.2,3.1,3.0,2.7,2.6 
flashPlayerVersions=11.8,11.7,11.6,11.5,11.4,11.3,11.2,11.1,11.0,10.3,10.2 
airDefault=3.7 flashPlayerDefault=11.7 / 
+
+!-- Adobe AIR SDK --
+   file name=AdobeAIRSDKLin2.6 
path=http://airdownload.adobe.com/air/lin/download/2.6/; 
file=AdobeAIRSDK.tbz2 /
+   
+   file name=AdobeAIRSDKWin2.6 
path=http://airdownload.adobe.com/air/win/download/2.6/; 
file=AdobeAIRSDK.zip / 
+   file name=AdobeAIRSDKWin2.7 
path=http://airdownload.adobe.com/air/win/download/2.7/; 
file=AdobeAIRSDK.zip /
+   file name=AdobeAIRSDKWin3.0 
path=http://airdownload.adobe.com/air/win/download/3.0/; 
file=AdobeAIRSDK.zip /
+   file name=AdobeAIRSDKWin3.1 
path=http://airdownload.adobe.com/air/win/download/3.1/; 
file=AdobeAIRSDK.zip label=tested /
+   file name=AdobeAIRSDKWin3.2 
path=http://airdownload.adobe.com/air/win/download/3.2/; 
file=AdobeAIRSDK.zip /
+   file name=AdobeAIRSDKWin3.3 
path=http://airdownload.adobe.com/air/win/download/3.3/; 
file=AdobeAIRSDK.zip /
+   file name=AdobeAIRSDKWin3.4 
path=http://airdownload.adobe.com/air/win/download/3.4/; 
file=AdobeAIRSDK.zip label=tested /
+   file name=AdobeAIRSDKWin3.5 
path=http://airdownload.adobe.com/air/win/download/3.5/; 
file=AdobeAIRSDK.zip /
+   file name=AdobeAIRSDKWin3.6 
path=http://airdownload.adobe.com/air/win/download/3.6/; 
file=AdobeAIRSDK.zip /
+   file name=AdobeAIRSDKWin3.7 
path=http://airdownload.adobe.com/air/win/download/3.7/; 
file=AdobeAIRSDK.zip /
+   file name=AdobeAIRSDKWin3.8 
path=http://airdownload.adobe.com/air/win/download/3.8/; 
file=AdobeAIRSDK.zip /
+
+   file name=AdobeAIRSDKMac2.6 
path=http://airdownload.adobe.com/air/mac/download/2.6/; 
file=AdobeAIRSDK.tbz2 / 
+   file name=AdobeAIRSDKMac2.7 
path=http://airdownload.adobe.com/air/mac/download/2.7/; 
file=AdobeAIRSDK.tbz2 /
+   file name=AdobeAIRSDKMac3.0 
path=http://airdownload.adobe.com/air/mac/download/3.0/; 
file=AdobeAIRSDK.tbz2 /
+   file name=AdobeAIRSDKMac3.1 
path=http://airdownload.adobe.com/air/mac/download/3.1/; 
file=AdobeAIRSDK.tbz2 label=tested /
+   file 

svn commit: r869754 - in /websites/staging/flex/trunk: cgi-bin/ content/ content/installer/sdk-installer-config-3.0-rc1.xml

2013-07-16 Thread buildbot
Author: buildbot
Date: Tue Jul 16 22:33:28 2013
New Revision: 869754

Log:
Staging update by buildbot for flex

Added:

websites/staging/flex/trunk/content/installer/sdk-installer-config-3.0-rc1.xml  
 (with props)
Modified:
websites/staging/flex/trunk/cgi-bin/   (props changed)
websites/staging/flex/trunk/content/   (props changed)

Propchange: websites/staging/flex/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Jul 16 22:33:28 2013
@@ -1 +1 @@
-1503367
+1503929

Propchange: websites/staging/flex/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Tue Jul 16 22:33:28 2013
@@ -1 +1 @@
-1503367
+1503929

Added: 
websites/staging/flex/trunk/content/installer/sdk-installer-config-3.0-rc1.xml
==
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/installer/sdk-installer-config-3.0-rc1.xml
--
svn:mime-type = application/xml




svn commit: r869755 - in /websites/production/flex: cgi-bin/ content/

2013-07-16 Thread jmclean
Author: jmclean
Date: Tue Jul 16 22:34:25 2013
New Revision: 869755

Log:
Publishing svnmucc operation to flex site by jmclean

Added:
websites/production/flex/cgi-bin/
  - copied from r869754, websites/staging/flex/trunk/cgi-bin/
websites/production/flex/content/
  - copied from r869754, websites/staging/flex/trunk/content/



[2/7] git commit: [flex-sdk] [refs/heads/release4.10.0] - Updated shell script to run Mustella against various versions of the Flash Player and AIR. This commit is a first try to run the 'Label' tests

2013-07-16 Thread jmclean
Updated shell script to run Mustella against various versions of the Flash 
Player and AIR. This commit is a first try to run the 'Label' tests in 2 runner 
configs on the VM's Jenkins instance.

Signed-off-by: Erik de Bruin e...@ixsoftware.nl


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

Branch: refs/heads/release4.10.0
Commit: 16ed8dc723f864f46ba7875e44208cf4899c6a3a
Parents: 30113b7
Author: Erik de Bruin e...@ixsoftware.nl
Authored: Mon Jul 15 13:30:13 2013 +0200
Committer: Erik de Bruin e...@ixsoftware.nl
Committed: Mon Jul 15 13:30:13 2013 +0200

--
 mustella/jenkins.sh | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/16ed8dc7/mustella/jenkins.sh
--
diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh
index d023d43..8f97c41 100755
--- a/mustella/jenkins.sh
+++ b/mustella/jenkins.sh
@@ -75,14 +75,14 @@ LOG=$LOG- Set FLASH_VERSION to '$FLASH_VERSION' and 
AIR_VERSION to '$AIR_VERSIO
 
 
 # LOCATIONS
-export AIR_HOME=/Users/erik/Documents/ApacheFlex/dependencies/AdobeAIRSDK
-#export AIR_HOME=C:\\ApacheFlex\\dependencies\\AdobeAIRSDK\\$AIR_VERSION
+#export AIR_HOME=/Users/erik/Documents/ApacheFlex/dependencies/AdobeAIRSDK
+export AIR_HOME=C:\\ApacheFlex\\dependencies\\AdobeAIRSDK\\$AIR_VERSION
 LOG=$LOG- Set AIR_HOME to '$AIR_HOME'$'\n'
 
 case $FLASH_VERSION in
   11.1)
-export FLASHPLAYER_DEBUGGER=/Applications/Flash Player 
Debugger.app/Contents/MacOS/Flash Player Debugger
-#export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_1r102_55_win_sa_debug_32bit.exe
+#export FLASHPLAYER_DEBUGGER=/Applications/Flash Player 
Debugger.app/Contents/MacOS/Flash Player Debugger
+export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_1r102_55_win_sa_debug_32bit.exe
   ;;
   11.7)
 export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_7r700_232_win_sa_debug.exe
@@ -108,9 +108,9 @@ END
 
 
 # ANT
-#ant -f ../build.xml clean
-#ant -f ../build.xml main
-#ant -f ../build.xml other.locales
+ant -f ../build.xml clean -Dbuild.noprompt=true
+ant -f ../build.xml main -Dbuild.noprompt=true
+ant -f ../build.xml other.locales -Dbuild.noprompt=true
 LOG=$LOG- Ran 'clean', 'main' and 'other.locales' ant targets to prepare the 
SDK for testing$'\n'
 
 
@@ -151,7 +151,7 @@ END
   TEST_SET=tests/mobile
 fi
 
-#sh ./mini_run.sh $TEST_COMMAND $TEST_SET 
+sh ./mini_run.sh $TEST_COMMAND $TEST_SET 
 
 LOG=$LOG- Ran Mustella on the SDK with these parameters: '$TEST_COMMAND 
$TEST_SET'$'\n'
 
@@ -161,7 +161,7 @@ LOG=$LOG- Ran Mustella on the SDK with these parameters: 
'$TEST_COMMAND $TEST_S
 if [[ -s failures.txt ]]
 then
   LOG=$LOG- Some tests failed: running '-failures'$'\n' 
-  #sh ./mini_run.sh $TEST_COMMAND -failures
+  sh ./mini_run.sh $TEST_COMMAND -failures
   if [[ -s failures.txt ]]
   then
 LOG=$LOG- Some of tests failed, even after running '-failures'...$'\n'



[3/7] git commit: [flex-sdk] [refs/heads/release4.10.0] - Updated shell script with minor changes in version (11.7 instead of 11.8) and a fix to the path of the debugger

2013-07-16 Thread jmclean
Updated shell script with minor changes in version (11.7 instead of 11.8) and a 
fix to the path of the debugger

Signed-off-by: Erik de Bruin e...@ixsoftware.nl


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

Branch: refs/heads/release4.10.0
Commit: 0823ca5c6fd280fd19bab994c07b486de1757d96
Parents: 16ed8dc
Author: Erik de Bruin e...@ixsoftware.nl
Authored: Mon Jul 15 14:40:29 2013 +0200
Committer: Erik de Bruin e...@ixsoftware.nl
Committed: Mon Jul 15 14:40:29 2013 +0200

--
 mustella/jenkins.sh | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0823ca5c/mustella/jenkins.sh
--
diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh
index 8f97c41..e94e88d 100755
--- a/mustella/jenkins.sh
+++ b/mustella/jenkins.sh
@@ -57,7 +57,7 @@ fi
 # toggle between versions
 if [ $FLASH_VERSION == 11.1 ]
 then
-  FLASH_VERSION=11.8
+  FLASH_VERSION=11.7
   AIR_VERSION=3.7
 else
   FLASH_VERSION=11.1
@@ -82,13 +82,13 @@ LOG=$LOG- Set AIR_HOME to '$AIR_HOME'$'\n'
 case $FLASH_VERSION in
   11.1)
 #export FLASHPLAYER_DEBUGGER=/Applications/Flash Player 
Debugger.app/Contents/MacOS/Flash Player Debugger
-export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_1r102_55_win_sa_debug_32bit.exe
+export 
FLASHPLAYER_DEBUGGER=C:\\ApacheFlex\\dependencies\\FlashPlayer_Debug\\flashplayer11_1r102_55_win_sa_debug_32bit.exe
   ;;
   11.7)
-export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_7r700_232_win_sa_debug.exe
+export 
FLASHPLAYER_DEBUGGER=C:\\ApacheFlex\\dependencies\\FlashPlayer_Debug\\flashplayer11_7r700_232_win_sa_debug.exe
   ;;
   11.8)
-export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_8r800_94_win_sa_debug.exe
+export 
FLASHPLAYER_DEBUGGER=C:\\ApacheFlex\\dependencies\\FlashPlayer_Debug\\flashplayer11_8r800_94_win_sa_debug.exe
   ;;
   *)
 echo No valid Flash Player Debugger variable value could be parsed.
@@ -132,8 +132,8 @@ done
 if [ $RUN_TYPE == main ]
 then
   TEST_COMMAND=-timeout=6
-  #TEST_SET=-all
-  TEST_SET=tests/components/Label
+  TEST_SET=-all
+  #TEST_SET=tests/components/Label
 elif [ $RUN_TYPE == air ]
 then
   TEST_COMMAND=-apollo



[4/7] git commit: [flex-sdk] [refs/heads/release4.10.0] - Intermediate test step (messing around a bit on the VM, sorry for the commit torrent)

2013-07-16 Thread jmclean
Intermediate test step (messing around a bit on the VM, sorry for the commit 
torrent)

Signed-off-by: Erik de Bruin e...@ixsoftware.nl


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

Branch: refs/heads/release4.10.0
Commit: 44efa1723fc8195b3ebfbed3e2235cbc035033c4
Parents: 0823ca5
Author: Erik de Bruin e...@ixsoftware.nl
Authored: Mon Jul 15 14:45:47 2013 +0200
Committer: Erik de Bruin e...@ixsoftware.nl
Committed: Mon Jul 15 14:45:47 2013 +0200

--
 mustella/jenkins.sh | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/44efa172/mustella/jenkins.sh
--
diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh
index e94e88d..ba3a79d 100755
--- a/mustella/jenkins.sh
+++ b/mustella/jenkins.sh
@@ -108,9 +108,9 @@ END
 
 
 # ANT
-ant -f ../build.xml clean -Dbuild.noprompt=true
-ant -f ../build.xml main -Dbuild.noprompt=true
-ant -f ../build.xml other.locales -Dbuild.noprompt=true
+#ant -f ../build.xml clean -Dbuild.noprompt=true
+#ant -f ../build.xml main -Dbuild.noprompt=true
+#ant -f ../build.xml other.locales -Dbuild.noprompt=true
 LOG=$LOG- Ran 'clean', 'main' and 'other.locales' ant targets to prepare the 
SDK for testing$'\n'
 
 
@@ -132,8 +132,8 @@ done
 if [ $RUN_TYPE == main ]
 then
   TEST_COMMAND=-timeout=6
-  TEST_SET=-all
-  #TEST_SET=tests/components/Label
+  #TEST_SET=-all
+  TEST_SET=tests/components/Label
 elif [ $RUN_TYPE == air ]
 then
   TEST_COMMAND=-apollo



[1/7] git commit: [flex-sdk] [refs/heads/release4.10.0] - Changed shell script to run Mustella against various versions of the Flash Player and AIR. This commit is an early test version intended to ch

2013-07-16 Thread jmclean
Updated Branches:
  refs/heads/release4.10.0 2d19e5b5f - 76f050277


Changed shell script to run Mustella against various versions of the Flash 
Player and AIR. This commit is an early test version intended to check the new 
functionality when running on the VM's Jenkins instance.

Signed-off-by: Erik de Bruin e...@ixsoftware.nl


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

Branch: refs/heads/release4.10.0
Commit: 30113b72c1f068e3fd3463130825c7e6df38588b
Parents: 3909402
Author: Erik de Bruin e...@ixsoftware.nl
Authored: Mon Jul 15 13:14:14 2013 +0200
Committer: Erik de Bruin e...@ixsoftware.nl
Committed: Mon Jul 15 13:14:14 2013 +0200

--
 mustella/.gitignore |   1 +
 mustella/jenkins.sh | 152 +--
 2 files changed, 136 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/30113b72/mustella/.gitignore
--
diff --git a/mustella/.gitignore b/mustella/.gitignore
index c048f97..b09ae30 100644
--- a/mustella/.gitignore
+++ b/mustella/.gitignore
@@ -1,6 +1,7 @@
 # mustella files
 failures.txt
 results.txt
+versions.txt
 properties/mustella_tmp.properties
 test_files.tmp
 *.lnk.xml

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/30113b72/mustella/jenkins.sh
--
diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh
index b7f1970..d023d43 100755
--- a/mustella/jenkins.sh
+++ b/mustella/jenkins.sh
@@ -24,21 +24,98 @@
 ## NOTE: this file MUST HAVE Unix style line endings!
 ##
 
-export SHELLOPTS
-set -o igncr
+LOG=
+SUCCES=true
 
-
-
-# A method to be able to run various FP and AIR version is to override the env 
variables?
-#export FLASHPLAYER_DEBUGGER=
-#export AIR_HOME=
+PLATFORM=$(uname -s)
+if [ ${PLATFORM:0:6} == CYGWIN ]
+then
+  export SHELLOPTS
+  set -o igncr
+  LOG=$LOG- Made Cygwin ignore carriage returns$'\n'
+fi
 
 
 
 # CLEAN
+rm -f ../local.properties
 rm -f local.properties
+LOG=$LOG- Cleaned up 'local.properties' files from previous runs$'\n'
+
+
+
+# VERSIONS
+
+VERSIONS_FILE=versions.txt
+
+# If a 'versions' file exists, load it
+if [ -f $VERSIONS_FILE ];
+then
+   source $VERSIONS_FILE
+fi
+
+# toggle between versions
+if [ $FLASH_VERSION == 11.1 ]
+then
+  FLASH_VERSION=11.8
+  AIR_VERSION=3.7
+else
+  FLASH_VERSION=11.1
+  AIR_VERSION=3.7
+fi
+
+# write toggled values to 'versions' file
+cat  $VERSIONS_FILE END 
+FLASH_VERSION=$FLASH_VERSION
+AIR_VERSION=$AIR_VERSION
+END
+
+LOG=$LOG- Set FLASH_VERSION to '$FLASH_VERSION' and AIR_VERSION to 
'$AIR_VERSION'$'\n'
+
+
+
+# LOCATIONS
+export AIR_HOME=/Users/erik/Documents/ApacheFlex/dependencies/AdobeAIRSDK
+#export AIR_HOME=C:\\ApacheFlex\\dependencies\\AdobeAIRSDK\\$AIR_VERSION
+LOG=$LOG- Set AIR_HOME to '$AIR_HOME'$'\n'
+
+case $FLASH_VERSION in
+  11.1)
+export FLASHPLAYER_DEBUGGER=/Applications/Flash Player 
Debugger.app/Contents/MacOS/Flash Player Debugger
+#export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_1r102_55_win_sa_debug_32bit.exe
+  ;;
+  11.7)
+export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_7r700_232_win_sa_debug.exe
+  ;;
+  11.8)
+export FLASHPLAYER_DEBUGGER=C:\\Program\ Files\ 
(x86)\\flashplayer11_8r800_94_win_sa_debug.exe
+  ;;
+  *)
+echo No valid Flash Player Debugger variable value could be parsed.
+exit 1
+  ;;
+esac
+LOG=$LOG- Set FLASHPLAYER_DEBUGGER to '$FLASHPLAYER_DEBUGGER'$'\n'
+
+
+
+# To build the SDK using the versions specified above, write 
'../local.properties'
+cat  ../local.properties END 
+playerglobal.version = $FLASH_VERSION
+air.version = AIR_VERSION
+END
+
 
 
+# ANT
+#ant -f ../build.xml clean
+#ant -f ../build.xml main
+#ant -f ../build.xml other.locales
+LOG=$LOG- Ran 'clean', 'main' and 'other.locales' ant targets to prepare the 
SDK for testing$'\n'
+
+
+
+# RUN
 
 RUN_TYPE=main
 while [ $1 !=  ]; do
@@ -52,12 +129,11 @@ while [ $1 !=  ]; do
   shift
 done
 
-
-
 if [ $RUN_TYPE == main ]
 then
   TEST_COMMAND=-timeout=6
-  TEST_SET=-all
+  #TEST_SET=-all
+  TEST_SET=tests/components/Label
 elif [ $RUN_TYPE == air ]
 then
   TEST_COMMAND=-apollo
@@ -75,22 +151,64 @@ END
   TEST_SET=tests/mobile
 fi
 
+#sh ./mini_run.sh $TEST_COMMAND $TEST_SET 
+
+LOG=$LOG- Ran Mustella on the SDK with these parameters: '$TEST_COMMAND 
$TEST_SET'$'\n'
 
 
-sh ./mini_run.sh $TEST_COMMAND $TEST_SET 
 
+# FAILURES
 if [[ -s failures.txt ]]
 then
-  echo Some tests failed: running '-failures' 
-  sh ./mini_run.sh $TEST_COMMAND -failures
+  LOG=$LOG- Some tests failed: running 

[7/7] git commit: [flex-sdk] [refs/heads/release4.10.0] - Merge commit '8f2b9c0900bed899c23b519e50ae9f6de37d4b1c' into release4.10.0

2013-07-16 Thread jmclean
Merge commit '8f2b9c0900bed899c23b519e50ae9f6de37d4b1c' into release4.10.0


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

Branch: refs/heads/release4.10.0
Commit: 76f05027785ff4724724f5adb09081094c16b7ca
Parents: 2d19e5b 8f2b9c0
Author: Justin Mclean jmcl...@apache.org
Authored: Wed Jul 17 08:40:41 2013 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Wed Jul 17 08:40:41 2013 +1000

--
 README  |  11 ++--
 RELEASE_NOTES   |   4 +-
 mustella/.gitignore |   1 +
 mustella/jenkins.sh | 148 ++-
 4 files changed, 142 insertions(+), 22 deletions(-)
--




[5/7] git commit: [flex-sdk] [refs/heads/release4.10.0] - Enable full run

2013-07-16 Thread jmclean
Enable full run

Signed-off-by: Erik de Bruin e...@ixsoftware.nl


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

Branch: refs/heads/release4.10.0
Commit: 6ed97de74edd352e5a53a8bc99ec53c715b8f36f
Parents: 44efa17
Author: Erik de Bruin e...@ixsoftware.nl
Authored: Mon Jul 15 14:50:10 2013 +0200
Committer: Erik de Bruin e...@ixsoftware.nl
Committed: Mon Jul 15 14:50:10 2013 +0200

--
 mustella/jenkins.sh | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/6ed97de7/mustella/jenkins.sh
--
diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh
index ba3a79d..e94e88d 100755
--- a/mustella/jenkins.sh
+++ b/mustella/jenkins.sh
@@ -108,9 +108,9 @@ END
 
 
 # ANT
-#ant -f ../build.xml clean -Dbuild.noprompt=true
-#ant -f ../build.xml main -Dbuild.noprompt=true
-#ant -f ../build.xml other.locales -Dbuild.noprompt=true
+ant -f ../build.xml clean -Dbuild.noprompt=true
+ant -f ../build.xml main -Dbuild.noprompt=true
+ant -f ../build.xml other.locales -Dbuild.noprompt=true
 LOG=$LOG- Ran 'clean', 'main' and 'other.locales' ant targets to prepare the 
SDK for testing$'\n'
 
 
@@ -132,8 +132,8 @@ done
 if [ $RUN_TYPE == main ]
 then
   TEST_COMMAND=-timeout=6
-  #TEST_SET=-all
-  TEST_SET=tests/components/Label
+  TEST_SET=-all
+  #TEST_SET=tests/components/Label
 elif [ $RUN_TYPE == air ]
 then
   TEST_COMMAND=-apollo



[6/7] git commit: [flex-sdk] [refs/heads/release4.10.0] - fix minor spelling mistakes

2013-07-16 Thread jmclean
fix minor spelling mistakes


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

Branch: refs/heads/release4.10.0
Commit: 8f2b9c0900bed899c23b519e50ae9f6de37d4b1c
Parents: 6ed97de
Author: Alex Harui aha...@apache.org
Authored: Tue Jul 16 10:10:47 2013 -0700
Committer: Alex Harui aha...@apache.org
Committed: Tue Jul 16 10:10:47 2013 -0700

--
 README| 13 +++--
 RELEASE_NOTES |  4 ++--
 2 files changed, 9 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/8f2b9c09/README
--
diff --git a/README b/README
index c051431..3706442 100644
--- a/README
+++ b/README
@@ -201,7 +201,7 @@ Install Prerequisites
  The Adobe Pixel Bender Toolkit for Mac can be downloaded from:
 http://www.adobe.com/go/pixelbender_toolkit_dmg/
 
- No Pixel Bender Toolkit for Linux exists but the compiled Picel 
Bender files
+ No Pixel Bender Toolkit for Linux exists but the compiled Pixel 
Bender files
  can be downloaded from:
 
https://builds.apache.org/pview/job/flex-sdk_pixelbender/lastSuccessfulBuild/artifact/out/pb.tar.gz
 
@@ -219,7 +219,7 @@ Install Prerequisites
 the version subdirectory). The target-player option controls which 
 PLAYERGLOBAL_HOME subdirectory is used.
 
-Other more recent versions of Adode Flash Player playergloal.swc can be
+Other more recent versions of Adobe Flash Player playerglobal.swc can 
be
 downloaded from:
 
http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_2.swc
 
http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_3.swc
@@ -245,7 +245,8 @@ Install Prerequisites
 
 On Mac, set ADOBE_EXTENSION_MANAGER to the absolute path of Adobe 
Extension Manager CS5.app
 
-   On Linux, no Adobe Exention Manager exists and there's nothing 
that needs to be done here.
+On Linux, no Adobe Extension Manager exists and there's nothing that 
needs to be done here.
+
 FlashPlayer Configuration
 -
 
@@ -300,7 +301,7 @@ Adobe Flash Player Version Support
 
 Change the playerglobal.version in the build.properties file to have a 
value other
 than 11.1. For this change to take effect the SDK needs to be recompiled.
-For example to compile against the lastest version of the Adobe Flash 
Player set
+For example to compile against the latest version of the Adobe Flash 
Player set
 the value of playerglobal.version to be 11.5 like so:
  
 playerglobal.version = 11.5
@@ -330,7 +331,7 @@ Adobe Flash Player Version Support
 
 Copy the target playerglobal.swc to the directory:
 
-frameworks/libs/player/version/playerglobal.swf
+frameworks/libs/player/version/playerglobal.swc
 
 Where version is the major and minor version numbers of the Adobe Flash 
Player 
 separated by a period or full stop.
@@ -450,7 +451,7 @@ Using the Binary Distribution
To use this SDK in a IDE like Flash Builder 4.6 or 4.7 the SDK needs 
several other
files to be packaged and integrated with the Apache Flex SDK.

-   If you have an existing instalation of Flash Builder run:
+   If you have an existing installation of Flash Builder run:

/ide/constructFlexForIDE.sh (on Mac and Linux)
/ide/constructFlexForIDE.bat (on Windows)

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/8f2b9c09/RELEASE_NOTES
--
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index d3bcaa5..7d970b8 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -56,7 +56,7 @@ SDK Changes
  - Improved DateField and DateChooser.
  - Improve currency formatting support.
  - More supported locales for postcode validator and formatters.
- - Added no color support to Colour Picker.
+ - Added 'no color' support to ColorPicker.
  - Added removeItem to IList.
  - Bitmap scaling works in fill and crop modes.
  - Fixed performance issue with matchesStyleClient.
@@ -81,7 +81,7 @@ Experimental Components
 
 Mustella Test Framework changes
 -
- - Many improvements to mustalla tests.
+ - Many improvements to mustella tests.
  - Better consistency between running tests on windows and OSX.
  - Fixed mobile and AIR mustella tests.
  - Fixed issue with embedded fonts and mustella tests.



Build failed in Jenkins: flex-falcon #65

2013-07-16 Thread Apache Jenkins Server
See https://builds.apache.org/job/flex-falcon/65/changes

Changes:

[aharui] changes required to get a real world test case to compile to SWF

[aharui] Fix binding output for mxml-as-data

--
[...truncated 44 lines...]

prepare:

antlr-jar-check:

antlr-jar:

commons-cli-jar-check:

commons-cli-jar:

commons-io-jar-check:

commons-io-jar:

commons-jars:

guava-jar-check:

guava-jar:

jburg-jar-check:

jburg-jar:

lzma-jar-check:

lzma-jar:

main:

setup:

set.raw.as.tokenizer.uptodate:

raw.as.tokenizer:

set.raw.asdoc.tokenizer.uptodate:

raw.asdoc.tokenizer:

set.raw.mxml.tokenizer.uptodate:

raw.mxml.tokenizer:

jflex:

annotate.class:

set.as.parser.uptodate:

as.parser:

set.metadata.parser.uptodate:

metadata.parser:

set.css.lexer.and.parser.uptodate:

css.lexer.and.parser:

set.css.tree.uptodate:

css.tree:

antlr:

node.adapter:

unknown.tree.pattern.input.output:

set.unknown.tree.handler.patterns.uptodate:

unknown.tree.handler.patterns:

set.cmc.emitter.uptodate:

cmc.emitter:

set.css.emitter.uptodate:

css.emitter:

jburg:

set.flex.config.xml.available:

copy.sdk:

eclipse:

src.depend:
   [depend] Deleted 30 out of date files in 2 seconds

compile:
[javac] Compiling 15 source files to 
https://builds.apache.org/job/flex-falcon/ws/compiler\generated\classes

problem.localizer:

set.messages.en.uptodate:

localization:

version-info:

set.compiler.jar.uptodate:

compiler.jar:
  [jar] Building jar: 
https://builds.apache.org/job/flex-falcon/ws/compiler\generated\dist\sdk\lib\compiler.jar

set.falcon.asc.jar.uptodate:

falcon.asc.jar:

set.falcon.mxmlc.jar.uptodate:

falcon.mxmlc.jar:

set.falcon.compc.jar.uptodate:

falcon.compc.jar:

set.falcon.optimizer.jar.uptodate:

falcon.optimizer.jar:

set.falcon.swfdump.jar.uptodate:

falcon.swfdump.jar:

set.falcon.flextasks.jar.uptodate:

falcon.flextasks.jar:

jar:

dist-dev:

sdk:

javadoc:

checkenv:
 [echo] JFLEX_JAR is 
https://builds.apache.org/job/flex-falcon/ws/jenkins/JFlex/jflex-1.4.3/lib/JFlex.jar

download:

prepare:

antlr-jar-check:

antlr-jar:

commons-cli-jar-check:

commons-cli-jar:

commons-io-jar-check:

commons-io-jar:

commons-jars:

guava-jar-check:

guava-jar:

jburg-jar-check:

jburg-jar:

lzma-jar-check:

lzma-jar:

main:

setup:

set.raw.as.tokenizer.uptodate:

raw.as.tokenizer:

set.raw.asdoc.tokenizer.uptodate:

raw.asdoc.tokenizer:

set.raw.mxml.tokenizer.uptodate:

raw.mxml.tokenizer:

jflex:

annotate.class:

set.as.parser.uptodate:

as.parser:

set.metadata.parser.uptodate:

metadata.parser:

set.css.lexer.and.parser.uptodate:

css.lexer.and.parser:

set.css.tree.uptodate:

css.tree:

antlr:

node.adapter:

unknown.tree.pattern.input.output:

set.unknown.tree.handler.patterns.uptodate:

unknown.tree.handler.patterns:

set.cmc.emitter.uptodate:

cmc.emitter:

set.css.emitter.uptodate:

css.emitter:

jburg:

set.flex.config.xml.available:

copy.sdk:

eclipse:

set.javadoc.zip.uptodate:

javadoc:
  [javadoc] Generating Javadoc

BUILD FAILED
https://builds.apache.org/job/flex-falcon/ws/build.xml:25: The following 
error occurred while executing this line:
https://builds.apache.org/job/flex-falcon/ws/compiler\build.xml:508: Error 
creating temporary file

Total time: 25 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results


Build failed in Jenkins: flex-falcon #66

2013-07-16 Thread Apache Jenkins Server
See https://builds.apache.org/job/flex-falcon/66/

--
[...truncated 36 lines...]
 [echo] JFLEX_JAR is 
https://builds.apache.org/job/flex-falcon/ws/jenkins/JFlex/jflex-1.4.3/lib/JFlex.jar

download:

prepare:

antlr-jar-check:

antlr-jar:

commons-cli-jar-check:

commons-cli-jar:

commons-io-jar-check:

commons-io-jar:

commons-jars:

guava-jar-check:

guava-jar:

jburg-jar-check:

jburg-jar:

lzma-jar-check:

lzma-jar:

main:

setup:

set.raw.as.tokenizer.uptodate:

raw.as.tokenizer:

set.raw.asdoc.tokenizer.uptodate:

raw.asdoc.tokenizer:

set.raw.mxml.tokenizer.uptodate:

raw.mxml.tokenizer:

jflex:

annotate.class:

set.as.parser.uptodate:

as.parser:

set.metadata.parser.uptodate:

metadata.parser:

set.css.lexer.and.parser.uptodate:

css.lexer.and.parser:

set.css.tree.uptodate:

css.tree:

antlr:

node.adapter:

unknown.tree.pattern.input.output:

set.unknown.tree.handler.patterns.uptodate:

unknown.tree.handler.patterns:

set.cmc.emitter.uptodate:

cmc.emitter:

set.css.emitter.uptodate:

css.emitter:

jburg:

set.flex.config.xml.available:

copy.sdk:

eclipse:

src.depend:

compile:

problem.localizer:

set.messages.en.uptodate:

localization:

version-info:

set.compiler.jar.uptodate:

compiler.jar:

set.falcon.asc.jar.uptodate:

falcon.asc.jar:

set.falcon.mxmlc.jar.uptodate:

falcon.mxmlc.jar:

set.falcon.compc.jar.uptodate:

falcon.compc.jar:

set.falcon.optimizer.jar.uptodate:

falcon.optimizer.jar:

set.falcon.swfdump.jar.uptodate:

falcon.swfdump.jar:

set.falcon.flextasks.jar.uptodate:

falcon.flextasks.jar:

jar:

dist-dev:

sdk:

javadoc:

checkenv:
 [echo] JFLEX_JAR is 
https://builds.apache.org/job/flex-falcon/ws/jenkins/JFlex/jflex-1.4.3/lib/JFlex.jar

download:

prepare:

antlr-jar-check:

antlr-jar:

commons-cli-jar-check:

commons-cli-jar:

commons-io-jar-check:

commons-io-jar:

commons-jars:

guava-jar-check:

guava-jar:

jburg-jar-check:

jburg-jar:

lzma-jar-check:

lzma-jar:

main:

setup:

set.raw.as.tokenizer.uptodate:

raw.as.tokenizer:

set.raw.asdoc.tokenizer.uptodate:

raw.asdoc.tokenizer:

set.raw.mxml.tokenizer.uptodate:

raw.mxml.tokenizer:

jflex:

annotate.class:

set.as.parser.uptodate:

as.parser:

set.metadata.parser.uptodate:

metadata.parser:

set.css.lexer.and.parser.uptodate:

css.lexer.and.parser:

set.css.tree.uptodate:

css.tree:

antlr:

node.adapter:

unknown.tree.pattern.input.output:

set.unknown.tree.handler.patterns.uptodate:

unknown.tree.handler.patterns:

set.cmc.emitter.uptodate:

cmc.emitter:

set.css.emitter.uptodate:

css.emitter:

jburg:

set.flex.config.xml.available:

copy.sdk:

eclipse:

set.javadoc.zip.uptodate:

javadoc:
  [javadoc] Generating Javadoc

BUILD FAILED
https://builds.apache.org/job/flex-falcon/ws/build.xml:25: The following 
error occurred while executing this line:
https://builds.apache.org/job/flex-falcon/ws/compiler\build.xml:508: Error 
creating or writing temporary file for javadoc options

Total time: 26 seconds
Build step 'Invoke Ant' marked build as failure
Recording test results


git commit: [flex-sdk] [refs/heads/release4.10.0] - Move back to 3.7 as default because 3.8 is still not out

2013-07-16 Thread jmclean
Updated Branches:
  refs/heads/release4.10.0 76f050277 - 58d45a1c0


Move back to 3.7 as default because 3.8 is still not out


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

Branch: refs/heads/release4.10.0
Commit: 58d45a1c0e6d3a58b6e6f4e6d08fb7cf90f1d748
Parents: 76f0502
Author: Justin Mclean jmcl...@apache.org
Authored: Wed Jul 17 15:15:52 2013 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Wed Jul 17 15:15:52 2013 +1000

--
 ide/flashbuilder/makeApacheFlexForFlashBuilder.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/58d45a1c/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh
--
diff --git a/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh 
b/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh
index 666114a..3518340 100755
--- a/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh
+++ b/ide/flashbuilder/makeApacheFlexForFlashBuilder.sh
@@ -38,7 +38,7 @@
 APACHE_FLEX_BIN_DIR=$( cd $( dirname -- $0 )  /dev/null ; pwd )/../..
 
 # Adobe AIR SDK Version 3.8
-ADOBE_AIR_SDK_MAC_URL=http://airdownload.adobe.com/air/mac/download/3.8/AdobeAIRSDK.tbz2
+ADOBE_AIR_SDK_MAC_URL=http://airdownload.adobe.com/air/mac/download/3.7/AdobeAIRSDK.tbz2
 
 # Adobe Flash Player Version 11.1
 
ADOBE_FLASHPLAYER_GLOBALPLAYER_SWC_URL=http://fpdownload.macromedia.com/get/flashplayer/updaters/11/playerglobal11_1.swc



git commit: [flex-sdk] [refs/heads/release4.10.0] - FLEX-33142 stop RTE when using Halo theme and modules

2013-07-16 Thread jmclean
Updated Branches:
  refs/heads/release4.10.0 58d45a1c0 - d6b940f79


FLEX-33142 stop RTE when using Halo theme and modules


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

Branch: refs/heads/release4.10.0
Commit: d6b940f7977d67850f2be3551607e6076a0bf07c
Parents: 58d45a1
Author: Justin Mclean jmcl...@apache.org
Authored: Wed Jul 17 15:25:15 2013 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Wed Jul 17 15:25:15 2013 +1000

--
 frameworks/projects/spark/src/spark/utils/FTETextUtil.as | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/d6b940f7/frameworks/projects/spark/src/spark/utils/FTETextUtil.as
--
diff --git a/frameworks/projects/spark/src/spark/utils/FTETextUtil.as 
b/frameworks/projects/spark/src/spark/utils/FTETextUtil.as
index 2f0bc87..00a50b8 100644
--- a/frameworks/projects/spark/src/spark/utils/FTETextUtil.as
+++ b/frameworks/projects/spark/src/spark/utils/FTETextUtil.as
@@ -211,8 +211,9 @@ public class FTETextUtil
 localLookup = IUIComponent(uic.parent).systemManager;
 }
 
-fontContext = embeddedFontRegistry.getAssociatedModuleFactory(
-   font, bold, italic, client, moduleFactory, localLookup, true);
+   if (embeddedFontRegistry)
+   fontContext = embeddedFontRegistry.getAssociatedModuleFactory(
+   font, bold, italic, client, moduleFactory, localLookup, 
true);
 }
 
 if (!fontContext  fontLookup == FontLookup.EMBEDDED_CFF)



Build failed in Jenkins: flex-sdk_release #83

2013-07-16 Thread Apache Jenkins Server
See https://builds.apache.org/job/flex-sdk_release/83/

--
[...truncated 425 lines...]

automation_agent_bundles-clean:

automation_agent_bundles-clean:

automation_agent_bundles-clean:

automation_agent_bundles-clean:

automation_agent_bundles-clean:

automation_agent_bundles-clean:

automation_agent_bundles-clean:

automation_agent_bundles-clean:

automation_agent_bundles-clean:

clean:

bundles-clean:

clean:

clean:

clean:

clean:

clean:

clean:

clean:

bundles-clean:
 [echo] IN bundles clean

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

tool_air_bundles-clean:

clean:

airsdk-clean:

clean:

check-tlf-home:

bundles-clean:

clean-external:
 [echo] cleaning 
https://builds.apache.org/job/flex-sdk_release/ws/../flex-tlf
 [echo] FLEX_HOME is https://builds.apache.org/job/flex-sdk_release/ws/
  [taskdef] Could not load definitions from resource flexTasks.tasks. It could 
not be found.

clean:

clean:

bundles-clean:

pixelbender-clean:

assets-clean:

clean:

bundles-clean:

clean:

bundles-clean:

assets-clean:

clean:

bundles-clean:

clean:

bundles-clean:

clean:

clean:

clean:

bundles-clean:

pixelbender-clean:

clean:

clean:

clean:

clean:

clean:

bundles-clean:

clean:

bundles-clean:

clean:

clean:

bundles-clean:

clean:

bundles-clean:

clean:

bundles-clean:

clean:

bundles-clean:

clean:

clean:

clean:

frameworks-rsls-clean:

package-clean:

clean-temp:

clean-dependencychecker:

checkintests-clean:
 [loadfile] 
https://builds.apache.org/job/flex-sdk_release/ws/mustella\local.properties 
doesn't exist

cleanmustellaswc:

clean:

clean:

clean:
 [loadfile] 
https://builds.apache.org/job/flex-sdk_release/ws/mustella\local.properties 
doesn't exist

cleanswfs:

clean:
 [echo] Deleting old results and files from previous testsuite build.

super-clean:

create-description:
 [echo] build.number is 20130717

create-config:

playerglobal-setswfversion:

flex-config:
 [copy] Copying 1 file to 
https://builds.apache.org/job/flex-sdk_release/ws/frameworks

stage-source:

clean-temp:
 [copy] Copying 8 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp

stage-bin:
 [copy] Copying 30 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\bin

stage-frameworks:
 [copy] Copying 5585 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\frameworks
 [copy] Copying 1 file to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\frameworks\javascript

stage-frameworks-tests:
 [copy] Copying 204 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\frameworks

version-update:

have-greptask:

no-greptask:
 [echo] Version files not updated.
 [echo] AntelopeTasks_*.jar not found in anttask.classpath

stage-tlf:
 [copy] Copying 224 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\frameworks\projects\textLayout

stage-modules:
 [copy] Copying 1720 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\modules
 [copy] Copying 1828 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\modules\thirdparty
 [copy] Copying 49 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\asdoc
 [copy] Copying 6 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\ide

stage-mustella:
 [copy] Copying 101 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\mustella
 [copy] Copying 965 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\samples
 [copy] Copying 7 files to 
https://builds.apache.org/job/flex-sdk_release/ws/temp\templates

BUILD FAILED
https://builds.apache.org/job/flex-sdk_release/ws/build.xml:631: error 
running fixcrlf on file 
https://builds.apache.org/job/flex-sdk_release/ws/temp\LICENSE

Total time: 2 minutes 18 seconds
Build step 'Invoke Ant' marked build as failure
Archiving artifacts