[2/4] git commit: [flex-sdk] [refs/heads/develop] - Revert Fixed issue (RTEs) with editable data grid when it has an array of simple values (Number, String etc)

2013-08-15 Thread jmclean
Revert Fixed issue (RTEs) with editable data grid when it has an array of 
simple values (Number, String etc)

This reverts commit e47f993773fd5dd7e5c636068d4e9ddd37d3ba98.


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

Branch: refs/heads/develop
Commit: 0e1cbf1466cfb490305872ff3277f5bc901660e5
Parents: 18588f0
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Aug 15 07:51:55 2013 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Aug 15 07:51:55 2013 +1000

--
 .../projects/mx/src/mx/controls/DataGrid.as | 67 
 1 file changed, 27 insertions(+), 40 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0e1cbf14/frameworks/projects/mx/src/mx/controls/DataGrid.as
--
diff --git a/frameworks/projects/mx/src/mx/controls/DataGrid.as 
b/frameworks/projects/mx/src/mx/controls/DataGrid.as
index 30f20e7..34145e3 100644
--- a/frameworks/projects/mx/src/mx/controls/DataGrid.as
+++ b/frameworks/projects/mx/src/mx/controls/DataGrid.as
@@ -2797,21 +2797,15 @@ public class DataGrid extends DataGridBase implements 
IIMESupport
 // this is an old recordset - use its columns
 var n:int = cols.length;
 var colName:Object;
-   if (n == 0) {
-   col = new DataGridColumn();
-   newCols.push(col);
-   }
-   else {
-   for (var i:int = 0; i  n; i++)
-   {
-   colName = cols[i];
-   if (colName is QName)
-   colName = QName(colName).localName;
-   col = new DataGridColumn();
-   col.dataField = String(colName);
-   newCols.push(col);
-   }
-   }
+for (var i:int = 0; i  n; i++)
+{
+colName = cols[i];
+if (colName is QName)
+colName = QName(colName).localName;
+col = new DataGridColumn();
+col.dataField = String(colName);
+newCols.push(col);
+}
 }
 
 columns = newCols;
@@ -5332,8 +5326,8 @@ public class DataGrid extends DataGridBase implements 
IIMESupport
 var newData:Object = 
itemEditorInstance[_columns[event.columnIndex].editorDataField];
 var property:String = _columns[event.columnIndex].dataField;
 var data:Object = event.itemRenderer.data;
-var typeInfo:String = describeType(data).@name;
-for each (var variable:XML in describeType(data).variable)
+var typeInfo:String = ;
+for each(var variable:XML in describeType(data).variable)
 {
 if (property == variable.@name.toString())
 {
@@ -5365,12 +5359,9 @@ public class DataGrid extends DataGridBase implements 
IIMESupport
 /** Old code assumed that the property would be a simply name 
that could be dereferenced
   * through array notation. Using a method call here provides, 
minimally, an override
   * point where developers could extend this functionality in 
their own datagrid subclass **/
-if (getCurrentDataValue(data, property) !== newData)
+if (property != null  getCurrentDataValue( data, property ) 
!== newData)
 {
-bChanged = setNewValue(data, property, newData, 
event.columnIndex);
-   
-   if (property == null)
-   collection[event.rowIndex] = 
newData;
+bChanged = setNewValue( data, property, newData, 
event.columnIndex );
 }
 if (bChanged  !(data is IPropertyChangeNotifier || data is 
XML))
 {
@@ -5423,9 +5414,9 @@ public class DataGrid extends DataGridBase implements 
IIMESupport
 /**
  *  @private
  */ 
-protected function isComplexColumn(property:String):Boolean
+protected function isComplexColumn( property:String ):Boolean
 {
-return property != null  property.indexOf( . ) != -1;
+return ( property.indexOf( . ) != -1 );
 }
 
 

[4/4] git commit: [flex-sdk] [refs/heads/develop] - Fix null checks

2013-08-15 Thread jmclean
Fix null checks


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

Branch: refs/heads/develop
Commit: 52d831085914ff7af84bbde7491ef292fa43d113
Parents: 47a0f17
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Aug 15 23:41:41 2013 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Aug 15 23:41:41 2013 +1000

--
 frameworks/projects/mx/src/mx/controls/DataGrid.as|  4 ++--
 .../mx/src/mx/controls/dataGridClasses/DataGridBase.as|  2 +-
 .../mx/src/mx/controls/dataGridClasses/DataGridColumn.as  | 10 +-
 3 files changed, 8 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/52d83108/frameworks/projects/mx/src/mx/controls/DataGrid.as
--
diff --git a/frameworks/projects/mx/src/mx/controls/DataGrid.as 
b/frameworks/projects/mx/src/mx/controls/DataGrid.as
index 34145e3..73800df 100644
--- a/frameworks/projects/mx/src/mx/controls/DataGrid.as
+++ b/frameworks/projects/mx/src/mx/controls/DataGrid.as
@@ -1991,7 +1991,7 @@ public class DataGrid extends DataGridBase implements 
IIMESupport
 {
 var rowData:DataGridListData = DataGridListData(makeListData(data, 
itemToUID(data), 0, c.colNum, c));
 if (item is IDropInListItemRenderer)
-IDropInListItemRenderer(item).listData = data ? rowData : null;
+IDropInListItemRenderer(item).listData = (data != null) ? rowData 
: null;
 item.data = data;
 item.explicitWidth = getWidthOfItem(item, c);
 UIComponentGlobals.layoutManager.validateClient(item, true);
@@ -4576,7 +4576,7 @@ public class DataGrid extends DataGridBase implements 
IIMESupport
 if (!editable)
 return false;
 
-if (!data)
+if (data == null)
 return false;
 
 return true;

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/52d83108/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridBase.as
--
diff --git 
a/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridBase.as 
b/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridBase.as
index 3e367ed..b944685 100644
--- a/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridBase.as
+++ b/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridBase.as
@@ -1569,7 +1569,7 @@ public class DataGridBase extends ListBase implements 
IFontContextComponent
 factory = c.getItemRendererFactory(forHeader, data);
 if (!factory)
 {
-if (!data)
+if (data == null)
 factory = nullItemRenderer;
 if (!factory)
 factory = itemRenderer;

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/52d83108/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridColumn.as
--
diff --git 
a/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridColumn.as 
b/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridColumn.as
index 9c80144..2411cbb 100644
--- a/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridColumn.as
+++ b/frameworks/projects/mx/src/mx/controls/dataGridClasses/DataGridColumn.as
@@ -1691,7 +1691,7 @@ public class DataGridColumn extends CSSStyleDeclaration 
implements IIMESupport
  */
 public function itemToLabel(data:Object):String
 {
-if (!data)
+if (data == null)
 return  ;
 
 if (labelFunction != null)
@@ -1704,10 +1704,10 @@ public class DataGridColumn extends CSSStyleDeclaration 
implements IIMESupport
 {
 try
 {
-if ( !hasComplexFieldName ) 
-data = data[dataField];
+if (!hasComplexFieldName) 
+   data = data[dataField];
 else 
-data = deriveComplexColumnData( data );
+data = deriveComplexColumnData(data);
 }
 catch(e:Error)
 {
@@ -1853,7 +1853,7 @@ public class DataGridColumn extends CSSStyleDeclaration 
implements IIMESupport
 return _contextHeaderRenderer;
 }
 
-if (!data)
+if (data == null)
 {
 if (!_contextNullItemRenderer)
 _contextNullItemRenderer = 
replaceItemRendererFactory(nullItemRenderer);



[1/4] git commit: [flex-sdk] [refs/heads/develop] - Revert Fixed issue with data grid using an array of strings creating a column called length

2013-08-15 Thread jmclean
Updated Branches:
  refs/heads/develop dc9f5c67f - 52d831085


Revert Fixed issue with data grid using an array of strings creating a column 
called length

This reverts commit c6b5dc7a44a9f1b9d650023cd1774305de0b3bd7.


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

Branch: refs/heads/develop
Commit: 18588f0829b2377d2d08385f9a21ecbc7fbf90fd
Parents: dc9f5c6
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Aug 15 07:41:50 2013 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Aug 15 07:41:50 2013 +1000

--
 frameworks/projects/mx/src/mx/controls/DataGrid.as | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/18588f08/frameworks/projects/mx/src/mx/controls/DataGrid.as
--
diff --git a/frameworks/projects/mx/src/mx/controls/DataGrid.as 
b/frameworks/projects/mx/src/mx/controls/DataGrid.as
index 087ef90..30f20e7 100644
--- a/frameworks/projects/mx/src/mx/controls/DataGrid.as
+++ b/frameworks/projects/mx/src/mx/controls/DataGrid.as
@@ -2770,13 +2770,9 @@ public class DataGrid extends DataGridBase implements 
IIMESupport
 iteratorValid = false;
 return;
 }
-   
-   var excludes:Array = [uid, mx_internal_uid];
-   if (iterator  iterator.current is String)
-   excludes.push(length);
-   
 var info:Object =
-ObjectUtil.getClassInfo(iterator.current, excludes);
+ObjectUtil.getClassInfo(iterator.current,
+[uid, mx_internal_uid]);
 
 if (info)
 cols = info.properties;
@@ -2801,7 +2797,7 @@ public class DataGrid extends DataGridBase implements 
IIMESupport
 // this is an old recordset - use its columns
 var n:int = cols.length;
 var colName:Object;
-   if (n == 0  iterator.current) {
+   if (n == 0) {
col = new DataGridColumn();
newCols.push(col);
}



Jenkins build became unstable: flex-flexunit #63

2013-08-15 Thread Apache Jenkins Server
See https://builds.apache.org/job/flex-flexunit/63/



[1/2] git commit: [flex-asjs] [refs/heads/develop] - Fixed bug: missing 'this' in this.beads_ in several statements.

2013-08-15 Thread pent
Updated Branches:
  refs/heads/develop f4cfdacaa - e305d18a1


Fixed bug: missing 'this' in this.beads_ in several statements.


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

Branch: refs/heads/develop
Commit: 206e6e90610698a22bbfbe1fff041372b5151325
Parents: f4cfdac
Author: Peter Ent p...@apache.org
Authored: Thu Aug 15 16:15:32 2013 -0400
Committer: Peter Ent p...@apache.org
Committed: Thu Aug 15 16:15:32 2013 -0400

--
 frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/206e6e90/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
--
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js 
b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
index acfc314..657a7b6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
@@ -141,8 +141,8 @@ org.apache.flex.core.UIBase.prototype.addBead = 
function(bead) {
  */
 org.apache.flex.core.UIBase.prototype.getBeadByType = 
 function(classOrInterface) {
-  for (var i=0; i  beads_.length; i++) {
-  var bead = beads_[i];
+  for (var i=0; i  this.beads_.length; i++) {
+  var bead = this.beads_[i];
   if (bead instanceof classOrInterface) {
 return bead;
   }



[2/2] git commit: [flex-asjs] [refs/heads/develop] - Modified Slider to use addBead() and SliderMouseController to use getBeadByType(). Modified Spinner to use TextButton component for the arrow butto

2013-08-15 Thread pent
Modified Slider to use addBead() and SliderMouseController to use 
getBeadByType(). Modified Spinner to use TextButton component for the arrow 
buttons and separated button control into SpinnerMouseController.


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

Branch: refs/heads/develop
Commit: e305d18a19524ea97c4e4e51bee40518c59d4482
Parents: 206e6e9
Author: Peter Ent p...@apache.org
Authored: Thu Aug 15 16:16:44 2013 -0400
Committer: Peter Ent p...@apache.org
Committed: Thu Aug 15 16:16:44 2013 -0400

--
 .../apache/flex/html/staticControls/Slider.js   |  6 +-
 .../apache/flex/html/staticControls/Spinner.js  | 51 --
 .../beads/controllers/SliderMouseController.js  |  9 ++-
 .../beads/controllers/SpinnerMouseController.js | 74 
 4 files changed, 97 insertions(+), 43 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e305d18a/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Slider.js
--
diff --git 
a/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Slider.js 
b/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Slider.js
index c818b4d..6fa8237 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Slider.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Slider.js
@@ -46,14 +46,14 @@ function() {
   this.element.style.height = '30px';
 
   this.track = new org.apache.flex.html.staticControls.beads.SliderTrackView();
-  this.track.set_strand(this);
+  this.addBead(this.track);
 
   this.thumb = new org.apache.flex.html.staticControls.beads.SliderThumbView();
-  this.thumb.set_strand(this);
+  this.addBead(this.thumb);
 
   this.controller = new org.apache.flex.html.staticControls.beads.controllers.
 SliderMouseController();
-  this.controller.set_strand(this);
+  this.addBead(this.controller);
 
   this.positioner = this.element;
   this.element.flexjs_wrapper = this;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e305d18a/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Spinner.js
--
diff --git 
a/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Spinner.js 
b/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Spinner.js
index 3dd7ad3..b272f22 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Spinner.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/Spinner.js
@@ -15,6 +15,8 @@
 goog.provide('org.apache.flex.html.staticControls.Spinner');
 
 goog.require('org.apache.flex.core.UIBase');
+goog.require('org.apache.flex.html.staticControls.TextButton');
+goog.require('org.apache.flex.html.staticControls.beads.controllers.SpinnerMouseController');
 
 
 
@@ -46,21 +48,17 @@ 
org.apache.flex.html.staticControls.Spinner.prototype.createElement =
 
   this.element.style.verticalAlign = 'middle';
 
-  this.incrementButton = document.createElement('button');
-  this.incrementButton.id = 'incrementButton';
-  this.incrementButton.style.display = 'block';
-  this.incrementButton.innerHTML = '\u2191';
-  this.element.appendChild(this.incrementButton);
-  goog.events.listen(this.incrementButton, 'click',
-goog.bind(this.handleIncrementClick, this));
-
-  this.decrementButton = document.createElement('button');
-  this.decrementButton.id = 'decrementButton';
-  this.decrementButton.style.display = 'block';
-  this.decrementButton.innerHTML = '\u2193';
-  this.element.appendChild(this.decrementButton);
-  goog.events.listen(this.decrementButton, 'click',
-goog.bind(this.handleDecrementClick, this));
+  this.incrementButton = new org.apache.flex.html.staticControls.TextButton();
+  this.incrementButton.set_text('\u2191');
+  this.addElement(this.incrementButton);
+
+  this.decrementButton = new org.apache.flex.html.staticControls.TextButton();
+  this.decrementButton.set_text('\u2193');
+  this.addElement(this.decrementButton);
+
+  this.controller = new
+org.apache.flex.html.staticControls.beads.controllers.SpinnerMouseController();
+  this.addBead(this.controller);
 
   this.element.flexjs_wrapper = this;
 };
@@ -201,26 +199,3 @@ org.apache.flex.html.staticControls.Spinner.prototype.snap 
= function(value)
   return n;
 };
 
-/**
- * @this {org.apache.flex.html.staticControls.Spinner}
- * @param {Object} event The event object.
- */
-org.apache.flex.html.staticControls.Spinner.prototype.handleIncrementClick =
-function(event)
-{
-  this.value_ = this.snap(Math.min(this.maximum_,

git commit: [flex-sdk] [refs/heads/develop] - FLEX-33665: Correcting the item editor positioning for datagrid.

2013-08-15 Thread mkessler
Updated Branches:
  refs/heads/develop 52d831085 - da4cb4f71


FLEX-33665: Correcting the item editor positioning for datagrid.


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

Branch: refs/heads/develop
Commit: da4cb4f712cffaea5b49ed44e1939af989435681
Parents: 52d8310
Author: Mark Kessler kesslerconsult...@gmail.com
Authored: Wed Aug 14 05:00:26 2013 -0400
Committer: Mark Kessler kesslerconsult...@gmail.com
Committed: Thu Aug 15 20:47:53 2013 -0400

--
 .../spark/src/spark/components/gridClasses/DataGridEditor.as   | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/da4cb4f7/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as
--
diff --git 
a/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as 
b/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as
index 06ee8d4..2991309 100644
--- 
a/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as
+++ 
b/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as
@@ -570,7 +570,7 @@ public class DataGridEditor
 
 _editedItemRenderer = item;
 
-   // Need to turn on focusable children flag so focus manager will
+// Need to turn on focusable children flag so focus manager will
 // allow focus into the data grid's children.
 if (restoreFocusableChildren)
 saveDataGridHasFocusableChildren = dataGrid.hasFocusableChildren; 
@@ -578,6 +578,10 @@ public class DataGridEditor
 
 if (dataGrid.scroller)
 {
+//Correct the item edit positioning based on the scroll position.
+//localCellOrigin.x -= grid.horizontalScrollPosition;
+//localCellOrigin.y -= grid.verticalScrollPosition;
+
 if (restoreFocusableChildren)
 saveScrollerHasFocusableChildren = 
dataGrid.scroller.hasFocusableChildren; 
 dataGrid.scroller.hasFocusableChildren = true;



Build failed in Jenkins: flex-sdk_mustella #278

2013-08-15 Thread flex . mustella
See http://localhost:8080/job/flex-sdk_mustella/278/changes

Changes:

[jmclean] Revert Fixed issue with data grid using an array of strings creating 
a column called length

[jmclean] Revert Fixed issue (RTEs) with editable data grid when it has an 
array of simple values (Number, String etc)

[jmclean] Revert Fixed issue (RTEs) with editable data grid when it has an 
array of simple values (Number, String etc)

[jmclean] Fix null checks

--
[...truncated 85930 lines...]
build_shell_set:
 [echo] shell_file_mxml_equivs is 
,gumbo/components/Application/properties/Application_Properties.sh,gumbo/components/DataGrid/Properties/DataGrid_Properties_editable.sh,gumbo/components/DataGrid/Properties/DataGrid_Properties_lockedRC.sh,resources/ResourceManager/Integration/ResourceManager_Integration_UIComponent_resourcesChanged.sh
 [echo] mxml_equiv_shells is ${mxml_equiv_shells}
 [echo] tmp.sdk.mustella.scripts2 is 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\resources\ResourceManager\SWFs\pre_compile.sh;C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\gumbo\components\Application\SWFs\pre_compile.sh

chmod_shells:
 [echo] changing user shell files to executable 

shells:
 [exec] next: pre_compile.sh 0
 [exec] next: pre_compile.sh 1
 [exec] done with pre compile step
 [java] exclude_filename: 
C:/jenkins_slave/workspace/flex-sdk_mustella/mustella/tests/ExcludeListWin.txt
 [java] os_version: ${os_version}
 [java] target_os_name: windows
 [java] device_name: ${device_name}
 [java] result_include: -includes=SendResultsToRunner
 [java] Choosing local runner bitmap save
 [java] Choosing local runner bitmap save
 [java] okey doke, going to compile 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\gumbo\components\DataGrid\SWFs\DataGrid_LockedRC.mxml
 [java] okey doke, going to compile 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\gumbo\components\DataGrid\SWFs\DataGrid_itemEditor.mxml
 [java] Loading configuration file 
C:\jenkins_slave\workspace\flex-sdk_mustella\frameworks\flex-config.xml
 [java] Loading configuration file 
C:\jenkins_slave\workspace\flex-sdk_mustella\frameworks\flex-config.xml
 [java] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\gumbo\components\DataGrid\SWFs\DataGrid_LockedRC.swf
 (2272665 bytes)
 [java] Choosing local runner bitmap save
 [java] okey doke, going to compile 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\resources\ResourceManager\SWFs\ResourceManagerApp.mxml
 [java] Loading configuration file 
C:\jenkins_slave\workspace\flex-sdk_mustella\frameworks\flex-config.xml
 [java] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\gumbo\components\DataGrid\SWFs\DataGrid_itemEditor.swf
 (2945275 bytes)
 [java] Choosing local runner bitmap save
 [java] okey doke, going to compile 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\gumbo\components\Application\SWFs\Application_Properties_App1.mxml
 [java] Loading configuration file 
C:\jenkins_slave\workspace\flex-sdk_mustella\frameworks\flex-config.xml
 [java] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\resources\ResourceManager\SWFs\ResourceManagerApp.swf
 (736995 bytes)
 [java] nothing left to do
 [java] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\gumbo\components\Application\SWFs\Application_Properties_App1.mxml(181):
 Warning: The CSS type selector 'spark.components.CheckBox' was not processed, 
because the type was not used in the application.
 [java] 
 [java] s|CheckBox{
 [java] 
 [java] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\tests\gumbo\components\Application\SWFs\Application_Properties_App1.swf
 (1495471 bytes)
 [java] All done with the compile
 [java] leaving the compile, elapsed: 41
 [java] ...via exit
 [echo] compileswfs jreturn is 0
 [loadfile] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\local.properties doesn't 
exist

do_fail:

compileswfs:

getExcludes:

getExcludeIds:

populateExcludeTable:
 [echo] populate exclude, got this for db time: 2013/08/15 23:26:02

justrun:
 [loadfile] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\local.properties doesn't 
exist

delete_cache:
 [echo] delete cache: /Users/ApacheFlex/Library/Caches/Adobe/Flash 
Player/AssetCache
 [loadfile] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\local.properties doesn't 
exist

delete_cache:
 [echo] delete cache: /Users/ApacheFlex/AppData/Roaming/Adobe/Flash 
Player/AssetCache
   [delete] Deleting directory C:\Users\ApacheFlex\AppData\Roaming\Adobe\Flash 
Player\AssetCache\9B78G59L
   [delete] Deleting directory C:\Users\ApacheFlex\AppData\Roaming\Adobe\Flash 
Player\AssetCache
 [loadfile] 
C:\jenkins_slave\workspace\flex-sdk_mustella\mustella\local.properties doesn't 
exist