[MAVEN-BUILD] FlexJS Framework (maven) - Build # 934 - Fixed

2017-05-25 Thread Apache Jenkins Server
The Apache Jenkins build system has built FlexJS Framework (maven) (build #934)

Status: Fixed

Check console output at 
https://builds.apache.org/job/FlexJS%20Framework%20(maven)/934/ to view the 
results.

[1/7] git commit: [flex-asjs] [refs/heads/develop] - override usually comes first

2017-05-25 Thread jmclean
Repository: flex-asjs
Updated Branches:
  refs/heads/develop 95545813d -> 516e04f89


override usually comes first


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

Branch: refs/heads/develop
Commit: a7764668b1a311ad3ce29eebe5fbec3ce0c88105
Parents: 9554581
Author: Justin Mclean 
Authored: Fri May 26 07:51:31 2017 +1000
Committer: Justin Mclean 
Committed: Fri May 26 07:51:31 2017 +1000

--
 .../Core/src/main/flex/org/apache/flex/events/MouseEvent.as| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a7764668/frameworks/projects/Core/src/main/flex/org/apache/flex/events/MouseEvent.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/MouseEvent.as 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/MouseEvent.as
index 3e5a617..0b3b28e 100644
--- 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/MouseEvent.as
+++ 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/MouseEvent.as
@@ -144,7 +144,7 @@ package org.apache.flex.events
 /**
  * @private
  */
-public override function clone():flash.events.Event
+   override public function clone():flash.events.Event
 {
 return cloneEvent() as flash.events.Event;
 }



[4/7] git commit: [flex-asjs] [refs/heads/develop] - set bubbles and cancelable to values passed in and not set to true every time

2017-05-25 Thread jmclean
set bubbles and cancelable to values passed in and not set to true every time


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

Branch: refs/heads/develop
Commit: b1f605628cf6256ee64e987b1cd419e36d7477d4
Parents: b562461
Author: Justin Mclean 
Authored: Fri May 26 08:40:47 2017 +1000
Committer: Justin Mclean 
Committed: Fri May 26 08:40:47 2017 +1000

--
 .../projects/Core/src/main/flex/org/apache/flex/events/Event.as  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b1f60562/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as
index 03d205a..4bc5445 100644
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as
@@ -143,8 +143,8 @@ package org.apache.flex.events
 
 public function Event(type:String, bubbles:Boolean = false, 
cancelable:Boolean = false) {
 super(type);
-   this.bubbles = true;
-   this.cancelable = true;
+   this.bubbles = bubbles;
+   this.cancelable = cancelable;
 }
 
public var bubbles:Boolean;



[6/7] git commit: [flex-asjs] [refs/heads/develop] - can be null or undefined here

2017-05-25 Thread jmclean
can be null or undefined here


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

Branch: refs/heads/develop
Commit: 4cf2969d483c49a047b1d81d2893c6fbd0bd253d
Parents: 23f1b84
Author: Justin Mclean 
Authored: Fri May 26 09:29:33 2017 +1000
Committer: Justin Mclean 
Committed: Fri May 26 09:29:33 2017 +1000

--
 .../Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/4cf2969d/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
index 70c597a..70ff04d 100644
--- 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
+++ 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
@@ -117,7 +117,7 @@ package org.apache.flex.core
 
 mainClass = main;
 
-if (newValues === null)
+if (newValues == null)
 newValues = {};
 
 if (cssData) {



[7/7] git commit: [flex-asjs] [refs/heads/develop] - little confusion on null / undefined in code reverting to type conversion comparison for now

2017-05-25 Thread jmclean
little confusion on null / undefined in code reverting to type conversion 
comparison for now


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

Branch: refs/heads/develop
Commit: 516e04f8936ef2df164b2b61342a65945bb65483
Parents: 4cf2969
Author: Justin Mclean 
Authored: Fri May 26 09:47:02 2017 +1000
Committer: Justin Mclean 
Committed: Fri May 26 09:47:02 2017 +1000

--
 .../src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/516e04f8/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
index 70ff04d..6d4adec 100644
--- 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
+++ 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
@@ -246,7 +246,7 @@ package org.apache.flex.core
 {
 finalName = fixNames(declarationName, mq);
 o = values[finalName];
-if (o === null)
+if (o == null)
 values[finalName] = valuesObject;
 else
 {
@@ -446,7 +446,7 @@ package org.apache.flex.core
 }
}
 
-if (inheritingStyles[valueName] !== null &&
+if (inheritingStyles[valueName] != null &&
 thisObject is IChild)
 {
 var parentObject:Object = IChild(thisObject).parent;



[2/7] git commit: [flex-asjs] [refs/heads/develop] - add missing cloneEvent methods

2017-05-25 Thread jmclean
add missing cloneEvent methods


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

Branch: refs/heads/develop
Commit: 156cdeaade65621dabc9b494abb07f0ebdd805df
Parents: a776466
Author: Justin Mclean 
Authored: Fri May 26 08:26:10 2017 +1000
Committer: Justin Mclean 
Committed: Fri May 26 08:26:10 2017 +1000

--
 .../main/flex/org/apache/flex/events/CustomEvent.as   | 13 +
 .../main/flex/org/apache/flex/events/DetailEvent.as   | 12 
 .../main/flex/org/apache/flex/events/KeyboardEvent.as | 12 
 .../main/flex/org/apache/flex/events/ProgressEvent.as | 14 +-
 .../flex/org/apache/flex/events/ValueChangeEvent.as   | 13 +
 .../main/flex/org/apache/flex/events/ValueEvent.as| 12 
 6 files changed, 75 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/156cdeaa/frameworks/projects/Core/src/main/flex/org/apache/flex/events/CustomEvent.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/CustomEvent.as 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/CustomEvent.as
index ab3e173..8884bdc 100644
--- 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/CustomEvent.as
+++ 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/CustomEvent.as
@@ -53,5 +53,18 @@ package org.apache.flex.events
{
 super(type, bubbles, cancelable);
}
+
+   /**
+* Create a copy/clone of the CustomEvent object.
+*
+* @langversion 3.0
+* @playerversion Flash 10.2
+* @playerversion AIR 2.6
+* @productversion FlexJS 0.0
+*/
+   override public function cloneEvent():IFlexJSEvent
+   {
+   return new CustomEvent(type, bubbles, cancelable);
+   }
}
 }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/156cdeaa/frameworks/projects/Core/src/main/flex/org/apache/flex/events/DetailEvent.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/DetailEvent.as 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/DetailEvent.as
index 0e8817a..e916a83 100644
--- 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/DetailEvent.as
+++ 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/DetailEvent.as
@@ -56,5 +56,17 @@ package org.apache.flex.events
  */
public var detail:String;
 
+   /**
+* Create a copy/clone of the DetailEvent object.
+*
+* @langversion 3.0
+* @playerversion Flash 10.2
+* @playerversion AIR 2.6
+* @productversion FlexJS 0.0
+*/
+   override public function cloneEvent():IFlexJSEvent
+   {
+   return new DetailEvent(type, bubbles, cancelable, 
detail);
+   }
}
 }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/156cdeaa/frameworks/projects/Core/src/main/flex/org/apache/flex/events/KeyboardEvent.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/KeyboardEvent.as
 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/KeyboardEvent.as
index a304735..3c626b1 100644
--- 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/KeyboardEvent.as
+++ 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/KeyboardEvent.as
@@ -116,5 +116,17 @@ package org.apache.flex.events
_specialKey = value;
}
 
+/**
+ * Create a copy/clone of the KeyboardEvent object.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion FlexJS 0.0
+ */
+override public function cloneEvent():IFlexJSEvent
+{
+return new KeyboardEvent(type, key, code, shiftKey, altKey, 
ctrlKey, metaKey, bubbles, cancelable);
+}
 }
 }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/156cdeaa/frameworks/projects/Core/src/main/flex/org/apache/flex/events/ProgressEvent.as
--
diff --git 
a/frameworks/proje

[5/7] git commit: [flex-asjs] [refs/heads/develop] - host may not be an IContainer

2017-05-25 Thread jmclean
host may not be an IContainer


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

Branch: refs/heads/develop
Commit: 23f1b84f4d26016998ec5859730702cfb604bb9e
Parents: b1f6056
Author: Justin Mclean 
Authored: Fri May 26 09:29:11 2017 +1000
Committer: Justin Mclean 
Committed: Fri May 26 09:29:11 2017 +1000

--
 .../src/main/flex/org/apache/flex/html/beads/ContainerView.as  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/23f1b84f/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/ContainerView.as
--
diff --git 
a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/ContainerView.as
 
b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/ContainerView.as
index ac723a9..fa86d6b 100644
--- 
a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/ContainerView.as
+++ 
b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/ContainerView.as
@@ -382,7 +382,7 @@ package org.apache.flex.html.beads
// add the viewport's contentView to this host 
ONLY if
// the contentView is not the host itself, 
which is likely
// most situations.
-   if (chost != viewport.contentView) {
+   if (chost != null && chost != 
viewport.contentView) {
chost.addElement(viewport.contentView);
}
}



[3/7] git commit: [flex-asjs] [refs/heads/develop] - clean up if statements

2017-05-25 Thread jmclean
clean up if 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/b5624611
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b5624611
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b5624611

Branch: refs/heads/develop
Commit: b562461170bc202a87aa9ce9be4faf43454c5847
Parents: 156cdea
Author: Justin Mclean 
Authored: Fri May 26 08:36:17 2017 +1000
Committer: Justin Mclean 
Committed: Fri May 26 08:36:17 2017 +1000

--
 .../src/main/flex/org/apache/flex/events/Event.as | 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b5624611/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as
index 00f01e4..03d205a 100644
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/events/Event.as
@@ -113,9 +113,10 @@ package org.apache.flex.events
  */
 public function isSameTarget(potentialTarget:IEventDispatcher):Boolean
 {
-if (potentialTarget === target) return true;
-if (target is IFlexJSElement)
-if (IFlexJSElement(target).flexjs_wrapper === potentialTarget) 
return true;
+if (potentialTarget === target)
+   return true;
+if (target is IFlexJSElement && 
IFlexJSElement(target).flexjs_wrapper === potentialTarget)
+   return true;
 return false;
 }
 
@@ -184,9 +185,10 @@ package org.apache.flex.events
  */
 public function isSameTarget(potentialTarget:IEventDispatcher):Boolean
 {
-if (potentialTarget === target) return true;
-if (target is IFlexJSElement)
-if ((target as Object).flexjs_wrapper === potentialTarget) 
return true;
+if (potentialTarget === target)
+   return true;
+if (target is IFlexJSElement && (target as Object).flexjs_wrapper 
=== potentialTarget)
+   return true;
 return false;
 }
 



git commit: [flex-asjs] [refs/heads/release0.8.0] - try to fix windows install. I didn't break mac. Will try on Windows later

2017-05-25 Thread aharui
Repository: flex-asjs
Updated Branches:
  refs/heads/release0.8.0 a86b0ae57 -> 2be5163b6


try to fix windows install.  I didn't break mac.  Will try on Windows later


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

Branch: refs/heads/release0.8.0
Commit: 2be5163b6549cf66546593b344615508d9943ed1
Parents: a86b0ae
Author: Alex Harui 
Authored: Thu May 25 12:00:30 2017 -0700
Committer: Alex Harui 
Committed: Thu May 25 12:00:44 2017 -0700

--
 installer.xml | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/2be5163b/installer.xml
--
diff --git a/installer.xml b/installer.xml
index ffe5f49..53255d0 100644
--- a/installer.xml
+++ b/installer.xml
@@ -456,7 +456,7 @@
 ${INFO_UNZIPPING} ${download.dir}/${air.sdk.url.file}
 
 
-
+
 
 
 
@@ -572,6 +572,10 @@
 
 
 
+
+
+
+
 
 
 



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

2017-05-25 Thread aharui
Author: aharui
Date: Thu May 25 18:52:55 2017
New Revision: 1012875

Log:
Publishing svnmucc operation to flex site by aharui

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



svn commit: r1012874 - in /websites/staging/flex/trunk: cgi-bin/ content/ content/installer/sdk-installer-config-4.0.xml

2017-05-25 Thread buildbot
Author: buildbot
Date: Thu May 25 18:50:42 2017
New Revision: 1012874

Log:
Staging update by buildbot for flex

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

Propchange: websites/staging/flex/trunk/cgi-bin/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu May 25 18:50:42 2017
@@ -1 +1 @@
-1795687
+1796181

Propchange: websites/staging/flex/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Thu May 25 18:50:42 2017
@@ -1 +1 @@
-1795687
+1796181

Modified: 
websites/staging/flex/trunk/content/installer/sdk-installer-config-4.0.xml
==
Binary files - no diff available.




svn commit: r1796181 - /flex/site/trunk/content/installer/sdk-installer-config-4.0.xml

2017-05-25 Thread aharui
Author: aharui
Date: Thu May 25 18:49:32 2017
New Revision: 1796181

URL: http://svn.apache.org/viewvc?rev=1796181&view=rev
Log:
"update md5s"

Modified:
flex/site/trunk/content/installer/sdk-installer-config-4.0.xml

Modified: flex/site/trunk/content/installer/sdk-installer-config-4.0.xml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/installer/sdk-installer-config-4.0.xml?rev=1796181&r1=1796180&r2=1796181&view=diff
==
--- flex/site/trunk/content/installer/sdk-installer-config-4.0.xml (original)
+++ flex/site/trunk/content/installer/sdk-installer-config-4.0.xml Thu May 25 
18:49:32 2017
@@ -285,12 +285,12 @@ limitations under the License.
 AdobeAIRSDK.zip
 ec48d6f7ea9e2b8cacef78c6a6ecbaad
 
-
+
 https://fpdownload.macromedia.com
 pub/labs/flashruntimes/air/
 https://fpdownload.macromedia.com/pub/labs/flashruntimes/air/
 AdobeAIRSDK.zip
-4131933a0a0054b385c365e5e32fdb06
+bd180469ee2dc555803cfbc410b39ccc
 
 
 
@@ -466,12 +466,12 @@ limitations under the License.
 AdobeAIRSDK.dmg
 6b7bbcd6ceb9f088a0824d72d770afad
 
-
+
 https://fpdownload.macromedia.com
 pub/labs/flashruntimes/air/
 https://fpdownload.macromedia.com/pub/labs/flashruntimes/air/
 AdobeAIRSDK.dmg
-e33f401f8c73c5bc805d6a3b5b33d452
+bda6ca4142c0eb933ce9b01c7396407d
 
 
 




Build failed in Jenkins: flex-utilities_installer #1182

2017-05-25 Thread flex . ci . builds
See 


--
Started by timer
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-utilities.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-utilities.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-utilities.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse "origin/develop^{commit}" # 
 > timeout=10
Checking out Revision ee771e6579486521b86f22a9fb629ff127edcfcd (origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > ee771e6579486521b86f22a9fb629ff127edcfcd
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > ee771e6579486521b86f22a9fb629ff127edcfcd # timeout=10
[ant_on_air] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dplayerglobal.version=11.7 main && exit %%ERRORLEVEL%%"
Buildfile: 


clean:
   [delete] Deleting directory 


init:

check-as3commons.swc:

get-as3commons.swc:

third-party:
  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 


compile:
[compc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\air-config.xml
[compc] 
C:\Jenkins\workspace\flex-utilities_installer\flex-installer\ant_on_air\bin\ant_on_air.swc
 (134450 bytes)
[compc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8

test:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\air-config.xml
[mxmlc] 
C:\Jenkins\workspace\flex-utilities_installer\flex-installer\ant_on_air\tests\AntOnAir.swf
 (1147464 bytes)
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8

failuretests:

main:

BUILD SUCCESSFUL
Total time: 1 minute 46 seconds
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[flex-installer] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dplayerglobal.version=11.7 clean build source-package 
create-md5s copy-misc && exit %%ERRORLEVEL%%"
Buildfile: 


clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 


clean:

createDirs:
 [echo] ***
 [echo] Execute the update-version target once,
 [echo] and only once, when you modifiy

git commit: [flex-asjs] [refs/heads/release0.8.0] - Fix - disable Fonts module build for distribution package

2017-05-25 Thread piotrz
Repository: flex-asjs
Updated Branches:
  refs/heads/release0.8.0 de35a07ff -> a86b0ae57


Fix - disable Fonts module build for distribution package


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

Branch: refs/heads/release0.8.0
Commit: a86b0ae57b6d109c8512a1769256042147918905
Parents: de35a07
Author: piotrz 
Authored: Thu May 25 20:33:55 2017 +0200
Committer: piotrz 
Committed: Thu May 25 20:33:55 2017 +0200

--
 distribution/pom.xml | 4 ++--
 distribution/src/main/assembly/component.xml | 5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a86b0ae5/distribution/pom.xml
--
diff --git a/distribution/pom.xml b/distribution/pom.xml
index f8e2478..2661461 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -439,12 +439,12 @@
 
 
 
-
+   
 
   org.apache.flex.flexjs.framework
   Fonts

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a86b0ae5/distribution/src/main/assembly/component.xml
--
diff --git a/distribution/src/main/assembly/component.xml 
b/distribution/src/main/assembly/component.xml
index 5c1f8ae..765903d 100644
--- a/distribution/src/main/assembly/component.xml
+++ b/distribution/src/main/assembly/component.xml
@@ -102,14 +102,15 @@ under the License.
 
 
 
-
+
+   
 
   false
   frameworks/fonts



[MAVEN-BUILD] FlexJS Framework (maven) - Build # 933 - Still Failing

2017-05-25 Thread Apache Jenkins Server
The Apache Jenkins build system has built FlexJS Framework (maven) (build #933)

Status: Still Failing

Check console output at 
https://builds.apache.org/job/FlexJS%20Framework%20(maven)/933/ to view the 
results.

git commit: [flex-asjs] [refs/heads/develop] - - Removed the Fonts.swf dependency from the distribution package

2017-05-25 Thread cdutz
Repository: flex-asjs
Updated Branches:
  refs/heads/develop e5f1328c6 -> 95545813d


- Removed the Fonts.swf dependency from the distribution package


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

Branch: refs/heads/develop
Commit: 95545813dbb0bc60e9f56a6371351bca4c61a6fb
Parents: e5f1328
Author: Christofer Dutz 
Authored: Thu May 25 16:53:29 2017 +0200
Committer: Christofer Dutz 
Committed: Thu May 25 16:53:29 2017 +0200

--
 distribution/pom.xml | 13 +++--
 distribution/src/main/assembly/component.xml |  5 +++--
 2 files changed, 10 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/95545813/distribution/pom.xml
--
diff --git a/distribution/pom.xml b/distribution/pom.xml
index f8e2478..5e0708f 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -439,12 +439,13 @@
 
 
 
-
-  org.apache.flex.flexjs.framework
-  Fonts
-  0.8.0-SNAPSHOT
-  swf
-
+
+
 
   org.apache.flex.flexjs.framework
   Fonts

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/95545813/distribution/src/main/assembly/component.xml
--
diff --git a/distribution/src/main/assembly/component.xml 
b/distribution/src/main/assembly/component.xml
index 7e40f9e..0b8235f 100644
--- a/distribution/src/main/assembly/component.xml
+++ b/distribution/src/main/assembly/component.xml
@@ -102,14 +102,15 @@ under the License.
 
 
 
-
+
+
 
   false
   frameworks/fonts



[MAVEN-BUILD] FlexJS Framework (maven) - Build # 932 - Still Failing

2017-05-25 Thread Apache Jenkins Server
The Apache Jenkins build system has built FlexJS Framework (maven) (build #932)

Status: Still Failing

Check console output at 
https://builds.apache.org/job/FlexJS%20Framework%20(maven)/932/ to view the 
results.

Build failed in Jenkins: flex-utilities_installer #1181

2017-05-25 Thread flex . ci . builds
See 


--
Started by timer
Started by timer
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-utilities.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-utilities.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-utilities.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse "origin/develop^{commit}" # 
 > timeout=10
Checking out Revision ee771e6579486521b86f22a9fb629ff127edcfcd (origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > ee771e6579486521b86f22a9fb629ff127edcfcd
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > ee771e6579486521b86f22a9fb629ff127edcfcd # timeout=10
[ant_on_air] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dplayerglobal.version=11.7 main && exit %%ERRORLEVEL%%"
Buildfile: 


clean:
   [delete] Deleting directory 


init:

check-as3commons.swc:

get-as3commons.swc:

third-party:
  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 


compile:
[compc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\air-config.xml
[compc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[compc] 
C:\Jenkins\workspace\flex-utilities_installer\flex-installer\ant_on_air\bin\ant_on_air.swc
 (134449 bytes)

test:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\air-config.xml
[mxmlc] 
C:\Jenkins\workspace\flex-utilities_installer\flex-installer\ant_on_air\tests\AntOnAir.swf
 (1147470 bytes)
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8

failuretests:

main:

BUILD SUCCESSFUL
Total time: 1 minute 31 seconds
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[flex-installer] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dplayerglobal.version=11.7 clean build source-package 
create-md5s copy-misc && exit %%ERRORLEVEL%%"
Buildfile: 


clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 


clean:

createDirs:
 [echo] ***
 [echo] Execute the update-version target once,
 [echo] and only once,

Jenkins build is back to normal : flex-tlf #1090

2017-05-25 Thread flex . ci . builds
See 



Build failed in Jenkins: flex-blazeds #974

2017-05-25 Thread flex . ci . builds
See 

--
Started by timer
Started by timer
Started by timer
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-blazeds.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-blazeds.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-blazeds.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse 
 > "refs/remotes/origin/develop^{commit}" # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse 
 > "refs/remotes/origin/origin/develop^{commit}" # timeout=10
Checking out Revision 98e50204b0da67392cff211c07d88096fbf17625 
(refs/remotes/origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > 98e50204b0da67392cff211c07d88096fbf17625
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > 98e50204b0da67392cff211c07d88096fbf17625 # timeout=10
Parsing POMs
Modules changed, recalculating dependency graph
maven32-agent.jar already up to date
maven32-interceptor.jar already up to date
maven3-interceptor-commons.jar already up to date
[flex-blazeds] $ "C:\Program Files\Java\jdk1.7.0_67/bin/java" -cp 
c:\Jenkins\maven32-agent.jar;c:\Jenkins\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.2.1\boot\plexus-classworlds-2.5.1.jar;c:\Jenkins\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.2.1/conf/logging
 jenkins.maven3.agent.Maven32Main 
c:\Jenkins\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.2.1 
C:\Users\apacheflexbuild\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\2\32f78882-5bca442d
 c:\Jenkins\maven32-interceptor.jar c:\Jenkins\maven3-interceptor-commons.jar 
49409
<===[JENKINS REMOTING CAPACITY]===>   channel started
Executing Maven:  -B -f 
 clean 
verify
[INFO] Scanning for projects...
[INFO] 
[INFO] Reactor Build Order:
[INFO] 
[INFO] Apache Flex - BlazeDS
[INFO] flex-messaging-archetypes
[INFO] blazeds-spring-boot-example-archetype
[INFO] flex-messaging-common
[INFO] flex-messaging-core
[INFO] flex-messaging-proxy
[INFO] flex-messaging-remoting
[INFO] flex-messaging-opt
[INFO] flex-messaging-opt-tomcat
[INFO] flex-messaging-opt-tomcat-base
[INFO] flex-messaging-opt-tomcat-4
[INFO] flex-messaging-opt-tomcat-6
[INFO] flex-messaging-opt-tomcat-7
[INFO] blazeds-spring-boot-starter
[INFO] 
[INFO] Using the builder 
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder
 with a thread count of 1
[INFO] 
[INFO] 
[INFO] Building Apache Flex - BlazeDS 4.7.4-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ blazeds ---
[INFO] Deleting 

[INFO] 
[INFO] --- jacoco-maven-plugin:0.7.6.201602180812:prepare-agent (pre-unit-test) 
@ blazeds ---
[INFO] surefireArgLine set to 
-javaagent:C:\\Users\\apacheflexbuild\\.m2\\repository\\org\\jacoco\\org.jacoco.agent\\0.7.6.201602180812\\org.jacoco.agent-0.7.6.201602180812-runtime.jar=destfile=c:\\Jenkins\\workspace\\flex-blazeds\\target\\coverage-reports\\jacoco-ut.exec
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (process-resource-bundles) 
@ blazeds ---
[INFO] 
[INFO] --- jacoco-maven-plugin:0.7.6.201602180812:report (post-unit-test) @ 
blazeds ---
[INFO] Skipping JaCoCo execution due to missing execution data 
file:
[INFO] 
[INFO] --- animal-sniffer-maven-plugin:1.15:check (check-jdk-1.6) @ blazeds ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO] 
[INFO] --- maven-site-plugin:3.5.1:attach-descriptor (attach-descriptor) @ 
blazeds ---
[INFO] 
[INFO] --- jacoco-maven-plugin:0.7.6.201602180812:prepare-agent 
(pre-integration-test) @ blazeds ---
[INFO] failsafeArgLine set to 
-javaagent:C:\\Users\\apacheflexbuild\\.m2\\repository\\org\\jacoco\\org.jacoco.agent\\0.7.6.201602180812\\org.jacoco.agent-0.7.6.201602180812-runtime.jar=destfile=c:\\Jenkins\\workspace\\flex-blazeds\\target\\coverage-reports\\jacoco-it.

git commit: [flex-asjs] [refs/heads/release0.8.0] - sync up FlexJSStore

2017-05-25 Thread aharui
Repository: flex-asjs
Updated Branches:
  refs/heads/release0.8.0 472f6d5aa -> de35a07ff


sync up FlexJSStore


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

Branch: refs/heads/release0.8.0
Commit: de35a07ffc580f8f9aa82cbd0773d4f58cea2fdf
Parents: 472f6d5
Author: Alex Harui 
Authored: Thu May 25 00:18:21 2017 -0700
Committer: Alex Harui 
Committed: Thu May 25 00:18:38 2017 -0700

--
 .../src/main/flex/productsView/ProductCart.mxml  |  2 +-
 .../flex/samples/flexstore/ProductThumbEvent.as  | 19 ++-
 2 files changed, 11 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/de35a07f/examples/flexjs/FlexJSStore_jquery/src/main/flex/productsView/ProductCart.mxml
--
diff --git 
a/examples/flexjs/FlexJSStore_jquery/src/main/flex/productsView/ProductCart.mxml
 
b/examples/flexjs/FlexJSStore_jquery/src/main/flex/productsView/ProductCart.mxml
index 3469806..5df06d8 100755
--- 
a/examples/flexjs/FlexJSStore_jquery/src/main/flex/productsView/ProductCart.mxml
+++ 
b/examples/flexjs/FlexJSStore_jquery/src/main/flex/productsView/ProductCart.mxml
@@ -96,7 +96,7 @@ limitations under the License.
 removeProduct="productListEventHandler(event)"
 showQuantity="true" />
 
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/de35a07f/examples/flexjs/FlexJSStore_jquery/src/main/flex/samples/flexstore/ProductThumbEvent.as
--
diff --git 
a/examples/flexjs/FlexJSStore_jquery/src/main/flex/samples/flexstore/ProductThumbEvent.as
 
b/examples/flexjs/FlexJSStore_jquery/src/main/flex/samples/flexstore/ProductThumbEvent.as
index e2838f9..19b5951 100755
--- 
a/examples/flexjs/FlexJSStore_jquery/src/main/flex/samples/flexstore/ProductThumbEvent.as
+++ 
b/examples/flexjs/FlexJSStore_jquery/src/main/flex/samples/flexstore/ProductThumbEvent.as
@@ -18,8 +18,9 @@
 

 package samples.flexstore
 {
-
+
 import org.apache.flex.events.Event;
+import org.apache.flex.events.IFlexJSEvent;
 
 public class ProductThumbEvent extends Event
 {
@@ -27,19 +28,19 @@ public class ProductThumbEvent extends Event
 public static const COMPARE:String = "compare";
 public static const DETAILS:String = "details";
 public static const BROWSE:String = "browse";
-
+
 public var product:Product;
-
+
 public function ProductThumbEvent(type:String, product:Product)
 {
 super(type);
 this.product = product;
 }
-
-//override public function cloneEvent():Event
-//{
-//return new ProductThumbEvent(type, product);
-//}
+
+override public function cloneEvent():IFlexJSEvent
+{
+return new ProductThumbEvent(type, product);
+}
 }
 
-}
+}
\ No newline at end of file