RE: [FDB] Integration

2014-05-01 Thread Frédéric THOMAS
Alex,

I pushed the commit in the FDBWorkers branch, if you want to have a look before 
I merge it in Develop, that's won't be now but still.
This is the JIRA https://issues.apache.org/jira/browse/FLEX-34294 if you want 
to check the code via the Source tab instead in few minutes.

Thanks for your help !

Frédéric THOMAS

 From: aha...@adobe.com
 To: dev@flex.apache.org
 Subject: Re: [FDB] Integration
 Date: Wed, 30 Apr 2014 20:38:50 +
 
 I think core.swc is supposed to contain stuff you can use in AS3 projects
 w/o pulling in all of the other Flex stuff.  Maybe it can go there?
 
 On 4/30/14 1:08 PM, Frédéric THOMAS webdoubl...@hotmail.com wrote:
 
 Alex,
 
 Too much time on it, the reason why it didn't stop in the worker is
 because the compiled worker didn't included the base worker class, better
 that than what I thought :P
 
 Also, it's going to work for Flex projects but not for pure AS3 projects
 if I put that base class in the existing libs, should we create an other
 lib that pure AS3 project could reference ? how do you see it could be
 better ?
 
 Is it a good solution for IDEs ?
 
 Frédéric THOMAS
 
  From: webdoubl...@hotmail.com
  To: dev@flex.apache.org
  Subject: RE: [FDB] Integration
  Date: Wed, 30 Apr 2014 20:17:29 +0100
  
  It is not even that, even if I stop in the main thread, switch to the
 worker and try to stop it, it doesn't want, digging into
  
  Frédéric THOMAS
  
   From: webdoubl...@hotmail.com
   To: dev@flex.apache.org
   Subject: RE: [FDB] Integration
   Date: Wed, 30 Apr 2014 19:47:33 +0100
   
   What I did and 1st surprised I thought it was the halt command to
 debug, not even, it was in the main loop and the trick is, I had to code
 to stop only on the main thread, it doesn't work with the current
 implementation, well, not so but at the end, given once it is halted we
 can switch to another one, halt it and so on.
   
   So, at the IDE point of view, I'm scared that the users can only halt
 in the main thread even using a base Worker and the fix I found, now I
 wonder if we need to raise a bug in the FlashPlayer ?
   It doesn't answer to the requested message sent to a worker:
 simpleRequestResponseMessageIsolate(DMessage.OutStopDebug,
 DMessage.InBreakAtExt, every, isolateId);
   
   Frédéric THOMAS
   
From: aha...@adobe.com
To: dev@flex.apache.org
Subject: Re: [FDB] Integration
Date: Wed, 30 Apr 2014 17:02:01 +

Looks right.  Maybe capabilities.isDebugger isn't true or
 setInterval
doesn't work?

You've got a new debugger, step through it. ;-)

-Alex

On 4/30/14 9:58 AM, Frédéric THOMAS webdoubl...@hotmail.com
 wrote:

I created a base class that the workers extend but doesn't seem to
 work,
did I miss something ?

/**
 * User: DoubleFx Date: 30/04/2014 Time: 17:34
 */
package {
import flash.display.Sprite;
import flash.system.Capabilities;
import flash.utils.setInterval;

public class DebugWorker extends Sprite {

public function DebugWorker() {

// Stick a timer here so that we will execute script every
 1.5s
// no matter what.
// This is strictly for the debugger to be able to halt.
// Note: isDebugger is true only with a Debugger Player.
if (Capabilities.isDebugger == true) {
setInterval(debugTickler, 1500);
}
}

/**
 *  @private
 *  This is here so we get the this pointer set to Application.
 */
private function debugTickler():void {
// We need some bytes of code in order to have a place to
 break.
var i:int = 0;
}
}
}


Frédéric THOMAS

 From: aha...@adobe.com
 To: dev@flex.apache.org
 Subject: Re: [FDB] Integration
 Date: Wed, 30 Apr 2014 16:18:04 +
 
 
 
 On 4/30/14 8:49 AM, Frédéric THOMAS webdoubl...@hotmail.com
 wrote:
 
 Could be a solution, you meant like the idleTimer in
 SystemManager ?
 Actually, I was referring to debugTickler in Application.as
 (both mx and
 spark).
 
 -Alex
 
   

  
   

 
  

Re: [FDB] Integration

2014-05-01 Thread Alex Harui
Hi Fred, the DebuggableWorker class code looks fine.  The file should
probably have an Apache Header instead of what it has now.

-Alex

On 5/1/14 6:21 AM, Frédéric THOMAS webdoubl...@hotmail.com wrote:

Alex,

I pushed the commit in the FDBWorkers branch, if you want to have a look
before I merge it in Develop, that's won't be now but still.
This is the JIRA https://issues.apache.org/jira/browse/FLEX-34294 if you
want to check the code via the Source tab instead in few minutes.

Thanks for your help !

Frédéric THOMAS

 From: aha...@adobe.com
 To: dev@flex.apache.org
 Subject: Re: [FDB] Integration
 Date: Wed, 30 Apr 2014 20:38:50 +
 
 I think core.swc is supposed to contain stuff you can use in AS3
projects
 w/o pulling in all of the other Flex stuff.  Maybe it can go there?
 
 On 4/30/14 1:08 PM, Frédéric THOMAS webdoubl...@hotmail.com wrote:
 
 Alex,
 
 Too much time on it, the reason why it didn't stop in the worker is
 because the compiled worker didn't included the base worker class,
better
 that than what I thought :P
 
 Also, it's going to work for Flex projects but not for pure AS3
projects
 if I put that base class in the existing libs, should we create an
other
 lib that pure AS3 project could reference ? how do you see it could be
 better ?
 
 Is it a good solution for IDEs ?
 
 Frédéric THOMAS
 
  From: webdoubl...@hotmail.com
  To: dev@flex.apache.org
  Subject: RE: [FDB] Integration
  Date: Wed, 30 Apr 2014 20:17:29 +0100
  
  It is not even that, even if I stop in the main thread, switch to the
 worker and try to stop it, it doesn't want, digging into
  
  Frédéric THOMAS
  
   From: webdoubl...@hotmail.com
   To: dev@flex.apache.org
   Subject: RE: [FDB] Integration
   Date: Wed, 30 Apr 2014 19:47:33 +0100
   
   What I did and 1st surprised I thought it was the halt command to
 debug, not even, it was in the main loop and the trick is, I had to
code
 to stop only on the main thread, it doesn't work with the current
 implementation, well, not so but at the end, given once it is halted
we
 can switch to another one, halt it and so on.
   
   So, at the IDE point of view, I'm scared that the users can only
halt
 in the main thread even using a base Worker and the fix I found, now I
 wonder if we need to raise a bug in the FlashPlayer ?
   It doesn't answer to the requested message sent to a worker:
 simpleRequestResponseMessageIsolate(DMessage.OutStopDebug,
 DMessage.InBreakAtExt, every, isolateId);
   
   Frédéric THOMAS
   
From: aha...@adobe.com
To: dev@flex.apache.org
Subject: Re: [FDB] Integration
Date: Wed, 30 Apr 2014 17:02:01 +

Looks right.  Maybe capabilities.isDebugger isn't true or
 setInterval
doesn't work?

You've got a new debugger, step through it. ;-)

-Alex

On 4/30/14 9:58 AM, Frédéric THOMAS webdoubl...@hotmail.com
 wrote:

I created a base class that the workers extend but doesn't seem
to
 work,
did I miss something ?

/**
 * User: DoubleFx Date: 30/04/2014 Time: 17:34
 */
package {
import flash.display.Sprite;
import flash.system.Capabilities;
import flash.utils.setInterval;

public class DebugWorker extends Sprite {

public function DebugWorker() {

// Stick a timer here so that we will execute script
every
 1.5s
// no matter what.
// This is strictly for the debugger to be able to halt.
// Note: isDebugger is true only with a Debugger Player.
if (Capabilities.isDebugger == true) {
setInterval(debugTickler, 1500);
}
}

/**
 *  @private
 *  This is here so we get the this pointer set to
Application.
 */
private function debugTickler():void {
// We need some bytes of code in order to have a place
to
 break.
var i:int = 0;
}
}
}


Frédéric THOMAS

 From: aha...@adobe.com
 To: dev@flex.apache.org
 Subject: Re: [FDB] Integration
 Date: Wed, 30 Apr 2014 16:18:04 +
 
 
 
 On 4/30/14 8:49 AM, Frédéric THOMAS
webdoubl...@hotmail.com
 wrote:
 
 Could be a solution, you meant like the idleTimer in
 SystemManager ?
 Actually, I was referring to debugTickler in Application.as
 (both mx and
 spark).
 
 -Alex
 
 


  
   
 
 



RE: [FDB] Integration

2014-05-01 Thread Frédéric THOMAS
Oups, thanks, done !!

Frédéric THOMAS

 From: aha...@adobe.com
 To: dev@flex.apache.org
 Subject: Re: [FDB] Integration
 Date: Thu, 1 May 2014 13:35:35 +
 
 Hi Fred, the DebuggableWorker class code looks fine.  The file should
 probably have an Apache Header instead of what it has now.
 
 -Alex
 
 On 5/1/14 6:21 AM, Frédéric THOMAS webdoubl...@hotmail.com wrote:
 
 Alex,
 
 I pushed the commit in the FDBWorkers branch, if you want to have a look
 before I merge it in Develop, that's won't be now but still.
 This is the JIRA https://issues.apache.org/jira/browse/FLEX-34294 if you
 want to check the code via the Source tab instead in few minutes.
 
 Thanks for your help !
 
 Frédéric THOMAS
 
  From: aha...@adobe.com
  To: dev@flex.apache.org
  Subject: Re: [FDB] Integration
  Date: Wed, 30 Apr 2014 20:38:50 +
  
  I think core.swc is supposed to contain stuff you can use in AS3
 projects
  w/o pulling in all of the other Flex stuff.  Maybe it can go there?
  
  On 4/30/14 1:08 PM, Frédéric THOMAS webdoubl...@hotmail.com wrote:
  
  Alex,
  
  Too much time on it, the reason why it didn't stop in the worker is
  because the compiled worker didn't included the base worker class,
 better
  that than what I thought :P
  
  Also, it's going to work for Flex projects but not for pure AS3
 projects
  if I put that base class in the existing libs, should we create an
 other
  lib that pure AS3 project could reference ? how do you see it could be
  better ?
  
  Is it a good solution for IDEs ?
  
  Frédéric THOMAS
  
   From: webdoubl...@hotmail.com
   To: dev@flex.apache.org
   Subject: RE: [FDB] Integration
   Date: Wed, 30 Apr 2014 20:17:29 +0100
   
   It is not even that, even if I stop in the main thread, switch to the
  worker and try to stop it, it doesn't want, digging into
   
   Frédéric THOMAS
   
From: webdoubl...@hotmail.com
To: dev@flex.apache.org
Subject: RE: [FDB] Integration
Date: Wed, 30 Apr 2014 19:47:33 +0100

What I did and 1st surprised I thought it was the halt command to
  debug, not even, it was in the main loop and the trick is, I had to
 code
  to stop only on the main thread, it doesn't work with the current
  implementation, well, not so but at the end, given once it is halted
 we
  can switch to another one, halt it and so on.

So, at the IDE point of view, I'm scared that the users can only
 halt
  in the main thread even using a base Worker and the fix I found, now I
  wonder if we need to raise a bug in the FlashPlayer ?
It doesn't answer to the requested message sent to a worker:
  simpleRequestResponseMessageIsolate(DMessage.OutStopDebug,
  DMessage.InBreakAtExt, every, isolateId);

Frédéric THOMAS

 From: aha...@adobe.com
 To: dev@flex.apache.org
 Subject: Re: [FDB] Integration
 Date: Wed, 30 Apr 2014 17:02:01 +
 
 Looks right.  Maybe capabilities.isDebugger isn't true or
  setInterval
 doesn't work?
 
 You've got a new debugger, step through it. ;-)
 
 -Alex
 
 On 4/30/14 9:58 AM, Frédéric THOMAS webdoubl...@hotmail.com
  wrote:
 
 I created a base class that the workers extend but doesn't seem
 to
  work,
 did I miss something ?
 
 /**
  * User: DoubleFx Date: 30/04/2014 Time: 17:34
  */
 package {
 import flash.display.Sprite;
 import flash.system.Capabilities;
 import flash.utils.setInterval;
 
 public class DebugWorker extends Sprite {
 
 public function DebugWorker() {
 
 // Stick a timer here so that we will execute script
 every
  1.5s
 // no matter what.
 // This is strictly for the debugger to be able to halt.
 // Note: isDebugger is true only with a Debugger Player.
 if (Capabilities.isDebugger == true) {
 setInterval(debugTickler, 1500);
 }
 }
 
 /**
  *  @private
  *  This is here so we get the this pointer set to
 Application.
  */
 private function debugTickler():void {
 // We need some bytes of code in order to have a place
 to
  break.
 var i:int = 0;
 }
 }
 }
 
 
 Frédéric THOMAS
 
  From: aha...@adobe.com
  To: dev@flex.apache.org
  Subject: Re: [FDB] Integration
  Date: Wed, 30 Apr 2014 16:18:04 +
  
  
  
  On 4/30/14 8:49 AM, Frédéric THOMAS
 webdoubl...@hotmail.com
  wrote:
  
  Could be a solution, you meant like the idleTimer in
  SystemManager ?
  Actually, I was referring to debugTickler in Application.as
  (both mx and
  spark).
  
  -Alex
  

 
   
 
  
  

 
  

Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

2014-05-01 Thread Alex Harui


On 4/30/14 1:41 AM, Maurice Amsellem maurice.amsel...@systar.com wrote:

(copied from wrong VOTE thread):

One minor issue in the release notes:
FLEX-33948  Add touch behaviour to spark DropDownList classes = the
ticket is still open.  implementation attempts were not satisfactory, and
have not been committed.
I accepted the patch in 4a13999192e5ebb8ab9d435069e226f6b9f30759 but
forgot to update the bug.


Also, I find that the release notes do not describe accurately enough
what's in the release (eg. extended queries), and going to JIRA to
understand what was done isn't better.
I suggest that we add a page (either in the web site or in the wiki) to
describe in detail the various features.
What do you think?
Feel free to add a wiki page.

-Alex



Re: [VOTE] Apache Flex SDK 4.12.1 RC2

2014-05-01 Thread Alex Harui
+1 (binding)

Windows 7 FP 11 AIR 3.4 mustella run passes.
Sigs ok
Build ok
Notice files ok
Rat ok

-Alex

On 4/29/14 1:44 PM, Maurice Amsellem maurice.amsel...@systar.com wrote:

+1 (Binding)

Win7 64 - FR - Java 1.6

Checked MD5 = OK

Manual build of SDK from source  = OK ( rsls are ok)

Tested SDK in FB 4.7 on large desktop Flex app = OK
Tested SDK in IDEA 13.1 on small mobile AIR app = OK

__

One minor issue in the release notes:
FLEX-33948  Add touch behaviour to spark DropDownList classes
= the ticket is still open.  implementation attempts were not
satisfactory, and have not been committed.

Also, I find that the release notes do not describe accurately enough
what's in the release (eg. extended queries), and going to JIRA to
understand what was done isn't better.
I suggest that we add a page (either in the web site or in the wiki) to
describe in detail the various features.
What do you think?

Maurice 

On Mon, Apr 28, 2014 at 3:41 AM, Alex Harui aha...@adobe.com wrote:

 Hi,

 This is a  Apache Flex 4.12.1 release candidate 2. Please see the
 RELEASE_NOTES and the README.

 There is a known bug in Adobe Flash Builder 4.6 and 4.7 that causes a
 issue when creating new applications.
 Adobe has provided a work around for FB 4.7 but not for 4.6.

 The release candidate can be found here;
 https://dist.apache.org/repos/dist/dev/flex/sdk/4.12.1/rc1/

 Before voting please review the section,What are the ASF requirements
 on approving a release?, at:
 http://www.apache.org/dev/release.html#approving-a-release

 At a minimum you would be expected to check that:
 - MD5 and signed packages are correct
 - README, RELEASE_NOTES, NOTICE and LICENSE files are all fine
 - That you can compile from source package
 - That the SDK can be used in your IDE of choice
 - That the SDK can be used to make a mobile, desktop and browser
 application

 When testing please check the md5 and asc files and make sure that the
 source can be compiled.

 Please vote to approve this release:
 +1 Approve the release
 -1 Veto the release (please provide specific comments to why)

 This vote will be open for 72 hours or until a result can be called.

 The vote passes if there is:
 - At least 3 +1 votes from the PMC
 - More positive votes than negative votes

 If you find an issue with the release that's a show stopper please
 don't hold off voting -1. If someone votes -1 please continue testing
 we want to try and catch as many issues as we can and cut down on the
 number of release candidates. Remember existing voters can change
 their vote during the voting process.

 People who are not in PMC are also encouraged to test out the release
 and vote, although their votes will not be binding, they can influence
 how the PMC votes.

 When voting please indicate what OS, IDE, Flash Player version and AIR
 version you tested the SDK with.

 Please put all discussion about this release in the DISCUSSION thread
 not this VOTE thread.

 Thanks,
 Alex







[RESULT][VOTE] Apache Flex SDK 4.12.1 RC2

2014-05-01 Thread Alex Harui
Vote passed with 4 +1 votes, no 0 votes and no -1 votes.

Thanks to those who voted.
-Alex

On 5/1/14 8:36 AM, Alex Harui aha...@adobe.com wrote:

+1 (binding)

Windows 7 FP 11 AIR 3.4 mustella run passes.
Sigs ok
Build ok
Notice files ok
Rat ok

-Alex

On 4/29/14 1:44 PM, Maurice Amsellem maurice.amsel...@systar.com
wrote:

+1 (Binding)

Win7 64 - FR - Java 1.6

Checked MD5 = OK

Manual build of SDK from source  = OK ( rsls are ok)

Tested SDK in FB 4.7 on large desktop Flex app = OK
Tested SDK in IDEA 13.1 on small mobile AIR app = OK

__

One minor issue in the release notes:
FLEX-33948  Add touch behaviour to spark DropDownList classes
= the ticket is still open.  implementation attempts were not
satisfactory, and have not been committed.

Also, I find that the release notes do not describe accurately enough
what's in the release (eg. extended queries), and going to JIRA to
understand what was done isn't better.
I suggest that we add a page (either in the web site or in the wiki) to
describe in detail the various features.
What do you think?

Maurice 

On Mon, Apr 28, 2014 at 3:41 AM, Alex Harui aha...@adobe.com wrote:

 Hi,

 This is a  Apache Flex 4.12.1 release candidate 2. Please see the
 RELEASE_NOTES and the README.

 There is a known bug in Adobe Flash Builder 4.6 and 4.7 that causes a
 issue when creating new applications.
 Adobe has provided a work around for FB 4.7 but not for 4.6.

 The release candidate can be found here;
 https://dist.apache.org/repos/dist/dev/flex/sdk/4.12.1/rc1/

 Before voting please review the section,What are the ASF requirements
 on approving a release?, at:
 http://www.apache.org/dev/release.html#approving-a-release

 At a minimum you would be expected to check that:
 - MD5 and signed packages are correct
 - README, RELEASE_NOTES, NOTICE and LICENSE files are all fine
 - That you can compile from source package
 - That the SDK can be used in your IDE of choice
 - That the SDK can be used to make a mobile, desktop and browser
 application

 When testing please check the md5 and asc files and make sure that the
 source can be compiled.

 Please vote to approve this release:
 +1 Approve the release
 -1 Veto the release (please provide specific comments to why)

 This vote will be open for 72 hours or until a result can be called.

 The vote passes if there is:
 - At least 3 +1 votes from the PMC
 - More positive votes than negative votes

 If you find an issue with the release that's a show stopper please
 don't hold off voting -1. If someone votes -1 please continue testing
 we want to try and catch as many issues as we can and cut down on the
 number of release candidates. Remember existing voters can change
 their vote during the voting process.

 People who are not in PMC are also encouraged to test out the release
 and vote, although their votes will not be binding, they can influence
 how the PMC votes.

 When voting please indicate what OS, IDE, Flash Player version and AIR
 version you tested the SDK with.

 Please put all discussion about this release in the DISCUSSION thread
 not this VOTE thread.

 Thanks,
 Alex








Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

2014-05-01 Thread Alex Harui
Working on it now.  If your wiki page isn't ready right away I don't think
it will matter that much.

On 5/1/14 9:06 AM, Maurice Amsellem maurice.amsel...@systar.com wrote:

When do you intend to make the announcement on 4.12.1,  so you I can have
the wiki page ready ?

De : Alex Harui [aha...@adobe.com]
Envoyé : jeudi 1 mai 2014 17:35
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

On 4/30/14 1:41 AM, Maurice Amsellem maurice.amsel...@systar.com
wrote:

(copied from wrong VOTE thread):

One minor issue in the release notes:
FLEX-33948  Add touch behaviour to spark DropDownList classes = the
ticket is still open.  implementation attempts were not satisfactory, and
have not been committed.
I accepted the patch in 4a13999192e5ebb8ab9d435069e226f6b9f30759 but
forgot to update the bug.


Also, I find that the release notes do not describe accurately enough
what's in the release (eg. extended queries), and going to JIRA to
understand what was done isn't better.
I suggest that we add a page (either in the web site or in the wiki) to
describe in detail the various features.
What do you think?
Feel free to add a wiki page.

-Alex




RE:[DISCUSS] Discuss Apache Flex 4.12.1 RC2

2014-05-01 Thread Maurice Amsellem
No, it won't.   So go ahead

De : Alex Harui [aha...@adobe.com]
Envoyé : jeudi 1 mai 2014 18:08
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

Working on it now.  If your wiki page isn't ready right away I don't think
it will matter that much.

On 5/1/14 9:06 AM, Maurice Amsellem maurice.amsel...@systar.com wrote:

When do you intend to make the announcement on 4.12.1,  so you I can have
the wiki page ready ?

De : Alex Harui [aha...@adobe.com]
Envoyé : jeudi 1 mai 2014 17:35
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

On 4/30/14 1:41 AM, Maurice Amsellem maurice.amsel...@systar.com
wrote:

(copied from wrong VOTE thread):

One minor issue in the release notes:
FLEX-33948  Add touch behaviour to spark DropDownList classes = the
ticket is still open.  implementation attempts were not satisfactory, and
have not been committed.
I accepted the patch in 4a13999192e5ebb8ab9d435069e226f6b9f30759 but
forgot to update the bug.


Also, I find that the release notes do not describe accurately enough
what's in the release (eg. extended queries), and going to JIRA to
understand what was done isn't better.
I suggest that we add a page (either in the web site or in the wiki) to
describe in detail the various features.
What do you think?
Feel free to add a wiki page.

-Alex




Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

2014-05-01 Thread Alex Harui
Actually the announcement won't go out for another 24 hours so the mirrors
can pick up the new bits.

On 5/1/14 9:10 AM, Maurice Amsellem maurice.amsel...@systar.com wrote:

No, it won't.   So go ahead

De : Alex Harui [aha...@adobe.com]
Envoyé : jeudi 1 mai 2014 18:08
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

Working on it now.  If your wiki page isn't ready right away I don't think
it will matter that much.

On 5/1/14 9:06 AM, Maurice Amsellem maurice.amsel...@systar.com wrote:

When do you intend to make the announcement on 4.12.1,  so you I can have
the wiki page ready ?

De : Alex Harui [aha...@adobe.com]
Envoyé : jeudi 1 mai 2014 17:35
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

On 4/30/14 1:41 AM, Maurice Amsellem maurice.amsel...@systar.com
wrote:

(copied from wrong VOTE thread):

One minor issue in the release notes:
FLEX-33948  Add touch behaviour to spark DropDownList classes = the
ticket is still open.  implementation attempts were not satisfactory,
and
have not been committed.
I accepted the patch in 4a13999192e5ebb8ab9d435069e226f6b9f30759 but
forgot to update the bug.


Also, I find that the release notes do not describe accurately enough
what's in the release (eg. extended queries), and going to JIRA to
understand what was done isn't better.
I suggest that we add a page (either in the web site or in the wiki) to
describe in detail the various features.
What do you think?
Feel free to add a wiki page.

-Alex





RE:[DISCUSS] Discuss Apache Flex 4.12.1 RC2

2014-05-01 Thread Maurice Amsellem
When do you intend to make the announcement on 4.12.1,  so you I can have the 
wiki page ready ?

De : Alex Harui [aha...@adobe.com]
Envoyé : jeudi 1 mai 2014 17:35
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

On 4/30/14 1:41 AM, Maurice Amsellem maurice.amsel...@systar.com wrote:

(copied from wrong VOTE thread):

One minor issue in the release notes:
FLEX-33948  Add touch behaviour to spark DropDownList classes = the
ticket is still open.  implementation attempts were not satisfactory, and
have not been committed.
I accepted the patch in 4a13999192e5ebb8ab9d435069e226f6b9f30759 but
forgot to update the bug.


Also, I find that the release notes do not describe accurately enough
what's in the release (eg. extended queries), and going to JIRA to
understand what was done isn't better.
I suggest that we add a page (either in the web site or in the wiki) to
describe in detail the various features.
What do you think?
Feel free to add a wiki page.

-Alex



Re: [VOTE] Release Apache Flex SDK Installer 3.0 - RC7

2014-05-01 Thread Alex Harui
+1 (binding)

Sigs ok
Rat ok
Build ok
Installed correctly on Mac and Win 7


On 3/15/14 12:58 AM, OmPrakash Muppirala bigosma...@gmail.com wrote:

On Sat, Mar 15, 2014 at 12:43 AM, Alex Harui aha...@adobe.com wrote:

 One followup question:  Do we know for sure that Installer 2.7 fixed up
 the RSL versions?  I am not seeing any code that does that.  Could I
have
 deleted it by accident?


Only for osmf, that too only after we started supporting OSMF 2.0.  There
is a method called getFlexVersionBuildString() that reads the
flex-sdk-description.xml and returns the version and build number.  This
gets appended to the osmf.swf file name.

Thanks,
Om



 I'll try it myself tomorrow.

 -Alex

 On 3/15/14 12:36 AM, Alex Harui aha...@adobe.com wrote:

 
 
 On 3/14/14 11:04 PM, Justin Mclean jus...@classsoftware.com wrote:
 
 Hi,
 
  I'm not sure what Latest SDK means.  Is that the nightly?  Did you
  install it into Documents/ApacheFlexDevelopGit?
 Latest develop branch.
 Sorry, I'm still confused.  If it is the latest develop branch, how is
the
 installer involved?
 
 
  What were you running when you got this error?  Ant on some
build.xml?
  Which one?
 ant in the air_for_ant directory.
 I was about to guess that.  The README for the installer says you have
to
 specify AIR_HOME when building ant_on_air, was it set to some older
 version of AIR SDK? It won't pick the AIR SDK out of the SDK specified
by
 FLEX_HOME.  So if you specify AIR_HOME as an AIR 4.0 SDK and then the
 build works then this is not an installer issue.
 
 However, I did notice the README is not quite correct.  The ant_on_air
 build does not use FLEX_HOME_WIN and FLEX_HOME_MAC, the installer build
 does.  I will fix the README.  It looks like the README is not in the
 source package.  Did we fix a README issue for the SDK or Installer
once
 without doing another RC or is another RC required?
 
 
  Crap.  I guess I did not understand how this part of the install was
  supposed to work.  This is a bug in the install script for 4.12, not
 the
  installer.
 This only happens when you use the new installer - so that basically
 means we can release the new installer until we fix the config file
and
 release 4.12.1.
 
 There should be a way to make them independent of each other and avoid
 this - any ideas?
 They are independent.  Other than downloading the binary package,
 verifying the MD5, and uncompressing, the rest of the install
 responsibilities are in the package, not the installer.  I suspect if
you
 actually use Ant to run the installer.xml you'll have the same
problem.  I
 know the temptation is to change the installer, but if we ever get the
 installer out there, we'll be glad in the future that (hopefully) any
 other SDK or FlexJS install issue can be fixed in the SDK and FlexJS
 installer.xmls so we only vote on one package and not try to coordinate
 two votes and two packages in the future.
 
 
  -Issue with 4.11 RSL in flex-config.xml
  More details please?
 As discussed before that are incorrect and have 0 as the build number.
 Rats, looks like I missed that before.  I'll have a look in my morning.
 
 Thanks,
 -Alex
 





AW: Adobe AIR app installs cross a billion

2014-05-01 Thread Christofer Dutz
Gee ... these numbers would have been great in my ApacheCon presentation ;-)
But impressive numbers they are ... we should somewhere keep track of posts 
like this on our Wiki ... cause I think it would make convincing potential new 
customers a lot easier :-)

Thanks for sharing that link :-)

Chris


-Ursprüngliche Nachricht-
Von: mark.kessler@usmc.mil [mailto:mark.kessler@usmc.mil] 
Gesendet: Mittwoch, 30. April 2014 14:56
An: dev@flex.apache.org
Betreff: RE: Adobe AIR app installs cross a billion

I'm impressed.  Was interesting to see the breakouts of install by OS type.

-Mark

-Original Message-
From: DarkStone [mailto:darkst...@163.com]
Sent: Wednesday, April 30, 2014 8:00 AM
To: dev@flex.apache.org
Subject: Adobe AIR app installs cross a billion

http://blogs.adobe.com/flashplayer/2014/04/air-app-installs-cross-a-billion.html



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Adobe-AIR-app-installs-cross-a-billion-tp37350.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


AW: AW: AW: Has anyone been able to build BlazeDS?

2014-05-01 Thread Christofer Dutz
Oh ... so I'll update that to 4.7 in the poms then.

The problem with BlazeDS was that you actually never found the page where to 
download stuff from. I never got past 4.0.1, cause I never found the Download 
for anything more recent :-(

Think in that case I'll have to completely get to know BlazeDS again, because I 
bet a lot has happened since 4.0.1 :-(

I'm currently working on the failing tests. So far I have managed to extend the 
tests that they startup an embedded Jetty with the MessageBrokerServlet on a 
given port ... so hopefully I'll be able to finish this this weekend.

Chris

-Ursprüngliche Nachricht-
Von: Alex Harui [mailto:aha...@adobe.com] 
Gesendet: Donnerstag, 1. Mai 2014 07:08
An: dev@flex.apache.org
Betreff: Re: AW: AW: Has anyone been able to build BlazeDS?

BTW, the Adobe BlazeDS team says the latest public version is 4.6, not 4.5 or 
4.0.1.

-Alex

On 4/30/14 9:34 PM, Alex Harui aha...@adobe.com wrote:

I took a look at the BlazeDS ant script.  I fixed a few things and it 
completed.  The main target does not run any tests and I did not take 
the time to try to run tests.

-Alex

On 4/30/14 8:12 AM, Christofer Dutz christofer.d...@c-ware.de wrote:

Well the problem is, is that the Ant build is completely fu***d up ... 
it doesn't work at all.
And it's no problem at all to call a maven build from Ant and vice-versa.

Chris

Von: Alex Harui aha...@adobe.com
Gesendet: Mittwoch, 30. April 2014 16:38
An: dev@flex.apache.org
Betreff: Re: AW: Has anyone been able to build BlazeDS?

On 4/30/14 3:00 AM, Christofer Dutz christofer.d...@c-ware.de wrote:

Now a simple mvn install in the modules directory (not the root 
of the project) should build BlazeDS successfully.
Excellent progress.  Thanks for working on it.



Next steps would be:
- to check the Errors in the Unit tests.
- to setup a Jenkins build to build and deploy snapshots (A simple 
mvn clean deploy should do, after the credentials for deploying 
have been
setup)
- Clean up the project (Remove old stuff and all Ant releated 
scripts)

Are you sure we don't need to keep the Ant scripts?  BlazeDS is going 
to be upstream of the Flex SDK.
It might be nice if the rest of the SDK committers can debug BlazeDS 
issues without having to set up Maven?

-Alex





[RESULT][VOTE] Release Apache Flex SDK Installer 3.0 - RC7

2014-05-01 Thread Alex Harui
Vote passed with 3 binding +1 votes (Om, Erik, Alex)  and 2 0 votes (one
of which was -1 but changed to 0 in the discuss thread)
There was also a +1 non-binding vote from Piotr.

Thanks everyone for voting.
-Alex

On 3/15/14 12:58 AM, OmPrakash Muppirala bigosma...@gmail.com wrote:

On Sat, Mar 15, 2014 at 12:43 AM, Alex Harui aha...@adobe.com wrote:

 One followup question:  Do we know for sure that Installer 2.7 fixed up
 the RSL versions?  I am not seeing any code that does that.  Could I
have
 deleted it by accident?


Only for osmf, that too only after we started supporting OSMF 2.0.  There
is a method called getFlexVersionBuildString() that reads the
flex-sdk-description.xml and returns the version and build number.  This
gets appended to the osmf.swf file name.

Thanks,
Om



 I'll try it myself tomorrow.

 -Alex

 On 3/15/14 12:36 AM, Alex Harui aha...@adobe.com wrote:

 
 
 On 3/14/14 11:04 PM, Justin Mclean jus...@classsoftware.com wrote:
 
 Hi,
 
  I'm not sure what Latest SDK means.  Is that the nightly?  Did you
  install it into Documents/ApacheFlexDevelopGit?
 Latest develop branch.
 Sorry, I'm still confused.  If it is the latest develop branch, how is
the
 installer involved?
 
 
  What were you running when you got this error?  Ant on some
build.xml?
  Which one?
 ant in the air_for_ant directory.
 I was about to guess that.  The README for the installer says you have
to
 specify AIR_HOME when building ant_on_air, was it set to some older
 version of AIR SDK? It won't pick the AIR SDK out of the SDK specified
by
 FLEX_HOME.  So if you specify AIR_HOME as an AIR 4.0 SDK and then the
 build works then this is not an installer issue.
 
 However, I did notice the README is not quite correct.  The ant_on_air
 build does not use FLEX_HOME_WIN and FLEX_HOME_MAC, the installer build
 does.  I will fix the README.  It looks like the README is not in the
 source package.  Did we fix a README issue for the SDK or Installer
once
 without doing another RC or is another RC required?
 
 
  Crap.  I guess I did not understand how this part of the install was
  supposed to work.  This is a bug in the install script for 4.12, not
 the
  installer.
 This only happens when you use the new installer - so that basically
 means we can release the new installer until we fix the config file
and
 release 4.12.1.
 
 There should be a way to make them independent of each other and avoid
 this - any ideas?
 They are independent.  Other than downloading the binary package,
 verifying the MD5, and uncompressing, the rest of the install
 responsibilities are in the package, not the installer.  I suspect if
you
 actually use Ant to run the installer.xml you'll have the same
problem.  I
 know the temptation is to change the installer, but if we ever get the
 installer out there, we'll be glad in the future that (hopefully) any
 other SDK or FlexJS install issue can be fixed in the SDK and FlexJS
 installer.xmls so we only vote on one package and not try to coordinate
 two votes and two packages in the future.
 
 
  -Issue with 4.11 RSL in flex-config.xml
  More details please?
 As discussed before that are incorrect and have 0 as the build number.
 Rats, looks like I missed that before.  I'll have a look in my morning.
 
 Thanks,
 -Alex
 





Re: svn commit: r5219 - in /release/flex/4.12.0: ./ binaries/

2014-05-01 Thread OmPrakash Muppirala
What's happening?  Will this affect the mirrors?

Thanks,
Om


On Thu, May 1, 2014 at 11:38 AM, aha...@apache.org wrote:

 Author: aharui
 Date: Thu May  1 18:38:22 2014
 New Revision: 5219

 Log:
 Oops! Shouldn't have axed 4.12.0 just yet.

 Added:
 release/flex/4.12.0/
 release/flex/4.12.0/binaries/
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz   (with
 props)
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
   (with props)
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
   (with props)
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip   (with
 props)
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
 (with props)
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.md5.txt
 (with props)
 release/flex/4.12.0/binaries/apache-flex-sdk-installer-config.xml
 (with props)

 Added: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz

 ==
 Binary file - no diff available.

 Propchange: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz

 --
 svn:mime-type = application/octet-stream

 Added:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt

 ==
 --- release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
 (added)
 +++ release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
 Thu May  1 18:38:22 2014
 @@ -0,0 +1,18 @@
 +-BEGIN PGP SIGNATURE-
 +Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
 +Comment: GPGTools - http://gpgtools.org
 +
 +iQIcBAABCgAGBQJTE/RFAAoJEODyhZOu6tFR+HoP/RTcHVlZBfD3jjUaouTKZCLA
 ++/2AIB/n5A6YWPrVIGNZezPNqwG3HQwaS0lI3qTIjAzZ1bKRAGBoQlOnHUQeJ2SA
 +78wzhMlKTJb79e/JqOFc4qRhb6xs18mNXWLGZt2uMuYGgnOIPsk11u5RjCYwMLh+
 +b3eJXBUa4X6RsNAhL/WNh3URL9/KItMtMxga5nxb/y9YAUDPhD0eUbr/HStRyapl
 +EZDJF2OdSeMDUY4WZkdKLpcRuM4+Bez/z7ya4wPzOhhQHKmw4wNcuboyNDydZpTM
 +icvL6dv19l0Fxw+lthzSxR/uxRjaMUY1vQiPBFOa8cbrElOFs7+ROkRhjds6OaTP
 +fb/U/HsiwIuc0XpdDh9ErXASgy9dmRxRSNaluZwB0UQy4fPKvUPlOl9Lcv2cDajz
 +RFXlhfE/2lih71j6/WZ0mKvTzA7jKoKP5q9o/lFgORJcl+ayYpTQj3KZwQdKWnR4
 +kY4e79VcUfpGY876KbhCmMK94wDOMJLOwB+ZZgre5j9NIbKFLEdcGA/ui2/pDeSN
 +eTMXpHeX90Tzx6XE/oBVd9snr9A6zPuhOrxTVYmQBuBHBVZ1jmPMuQARJG4DiPxK
 +DLPvWclQ4pxpE37XpaKSr0meUA6Kaxw6cuFv9scsmAFU7GRp0HJTdXNV7WgH4O23
 +KeOo+SLhiyD0sPMSlrKv
 +=5wCP
 +-END PGP SIGNATURE-

 Propchange:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt

 --
 svn:eol-style = native

 Added:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt

 ==
 --- release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
 (added)
 +++ release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
 Thu May  1 18:38:22 2014
 @@ -0,0 +1 @@
 +6f38e998749477d37c94b831adc86294

 Propchange:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt

 --
 svn:eol-style = native

 Added: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip

 ==
 Binary file - no diff available.

 Propchange: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip

 --
 svn:mime-type = application/octet-stream

 Added: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt

 ==
 --- release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
 (added)
 +++ release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
 Thu May  1 18:38:22 2014
 @@ -0,0 +1,18 @@
 +-BEGIN PGP SIGNATURE-
 +Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
 +Comment: GPGTools - http://gpgtools.org
 +
 +iQIcBAABCgAGBQJTE/QyAAoJEODyhZOu6tFRQXEP/1eaieUSnFwOtEMD72usUr9W
 +rkLw7DzwKFMUul8aiZU0+mZgGpTTUxE6c68GSSHzHyr0aPzAq+nYP8de9pps62YE
 +YIHuHtZnQTJkU7JY7tKD5lfpwZKfKFasl4LwJo6rhIHRZOBb2DrzSNTpXMFhqE1J
 +1F3G8QsD7JBNz9ZyXip+HGmxsNPm0nkBECXOPPEr4pdKZ0FhBUdeTPE1xsXuy8hd
 +iG4MguUMEqoF4zj8uH8dRTq7quSj5jX73j9wzKgLyXeJwJPtpHMVMXhQfsuLzfyf
 +OWGjky6QkB7j9X9MiLDpwTak6jLjeVVwncNdRnQVAMrSn6R9Zc9J/+mPWIJIoWQu
 +MwFfRm3LwPuFvBjS7JVI2hkI27VtacnlPCAfAe2cLjfk7AI1u5idYLo/mZecugTQ
 +F85NXzg9DrrPJ75Bw8fwB7Es66UvRjwKAgiwG5EZOynKN1gyjJFvl83x+rQ+wVfn
 +VhZJVhmRhnSptAZTzq3MrQP8+K+5NIdym0QZ3u+t4fv0J4fzQdUn+VSgZzaMFZ+A
 +gMJO5A31VY+gQRIQdX0gDGgOJF3ch9VufDI02u0l5EJCQJ6SivaRjY7d4DVDWD6U
 +jLsqmQ4ebV3exisUxXCa8hhUR/PWQYPg+XjU5NIiHLKRXD7MUmbraQN+eoehrh0N
 

Re: svn commit: r5219 - in /release/flex/4.12.0: ./ binaries/

2014-05-01 Thread Alex Harui
When I pushed 4.12.1 I accidentally removed 4.12.0.  I'm trying to restore
4.12.0 from archives (at least, the binary folder) so the installer
doesn't barf.

On 5/1/14 11:45 AM, OmPrakash Muppirala bigosma...@gmail.com wrote:

What's happening?  Will this affect the mirrors?

Thanks,
Om


On Thu, May 1, 2014 at 11:38 AM, aha...@apache.org wrote:

 Author: aharui
 Date: Thu May  1 18:38:22 2014
 New Revision: 5219

 Log:
 Oops! Shouldn't have axed 4.12.0 just yet.

 Added:
 release/flex/4.12.0/
 release/flex/4.12.0/binaries/
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz
(with
 props)
 
release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
   (with props)
 
release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
   (with props)
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip   (with
 props)
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
 (with props)
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.md5.txt
 (with props)
 release/flex/4.12.0/binaries/apache-flex-sdk-installer-config.xml
 (with props)

 Added: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz

 
=
=
 Binary file - no diff available.

 Propchange: 
release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz

 
-
-
 svn:mime-type = application/octet-stream

 Added:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt

 
=
=
 --- 
release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
 (added)
 +++ 
release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
 Thu May  1 18:38:22 2014
 @@ -0,0 +1,18 @@
 +-BEGIN PGP SIGNATURE-
 +Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
 +Comment: GPGTools - http://gpgtools.org
 +
 +iQIcBAABCgAGBQJTE/RFAAoJEODyhZOu6tFR+HoP/RTcHVlZBfD3jjUaouTKZCLA
 ++/2AIB/n5A6YWPrVIGNZezPNqwG3HQwaS0lI3qTIjAzZ1bKRAGBoQlOnHUQeJ2SA
 +78wzhMlKTJb79e/JqOFc4qRhb6xs18mNXWLGZt2uMuYGgnOIPsk11u5RjCYwMLh+
 +b3eJXBUa4X6RsNAhL/WNh3URL9/KItMtMxga5nxb/y9YAUDPhD0eUbr/HStRyapl
 +EZDJF2OdSeMDUY4WZkdKLpcRuM4+Bez/z7ya4wPzOhhQHKmw4wNcuboyNDydZpTM
 +icvL6dv19l0Fxw+lthzSxR/uxRjaMUY1vQiPBFOa8cbrElOFs7+ROkRhjds6OaTP
 +fb/U/HsiwIuc0XpdDh9ErXASgy9dmRxRSNaluZwB0UQy4fPKvUPlOl9Lcv2cDajz
 +RFXlhfE/2lih71j6/WZ0mKvTzA7jKoKP5q9o/lFgORJcl+ayYpTQj3KZwQdKWnR4
 +kY4e79VcUfpGY876KbhCmMK94wDOMJLOwB+ZZgre5j9NIbKFLEdcGA/ui2/pDeSN
 +eTMXpHeX90Tzx6XE/oBVd9snr9A6zPuhOrxTVYmQBuBHBVZ1jmPMuQARJG4DiPxK
 +DLPvWclQ4pxpE37XpaKSr0meUA6Kaxw6cuFv9scsmAFU7GRp0HJTdXNV7WgH4O23
 +KeOo+SLhiyD0sPMSlrKv
 +=5wCP
 +-END PGP SIGNATURE-

 Propchange:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt

 
-
-
 svn:eol-style = native

 Added:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt

 
=
=
 --- 
release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
 (added)
 +++ 
release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
 Thu May  1 18:38:22 2014
 @@ -0,0 +1 @@
 +6f38e998749477d37c94b831adc86294

 Propchange:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt

 
-
-
 svn:eol-style = native

 Added: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip

 
=
=
 Binary file - no diff available.

 Propchange: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip

 
-
-
 svn:mime-type = application/octet-stream

 Added: 
release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt

 
=
=
 --- release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
 (added)
 +++ release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
 Thu May  1 18:38:22 2014
 @@ -0,0 +1,18 @@
 +-BEGIN PGP SIGNATURE-
 +Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
 +Comment: GPGTools - http://gpgtools.org
 +
 +iQIcBAABCgAGBQJTE/QyAAoJEODyhZOu6tFRQXEP/1eaieUSnFwOtEMD72usUr9W
 +rkLw7DzwKFMUul8aiZU0+mZgGpTTUxE6c68GSSHzHyr0aPzAq+nYP8de9pps62YE
 +YIHuHtZnQTJkU7JY7tKD5lfpwZKfKFasl4LwJo6rhIHRZOBb2DrzSNTpXMFhqE1J
 +1F3G8QsD7JBNz9ZyXip+HGmxsNPm0nkBECXOPPEr4pdKZ0FhBUdeTPE1xsXuy8hd
 +iG4MguUMEqoF4zj8uH8dRTq7quSj5jX73j9wzKgLyXeJwJPtpHMVMXhQfsuLzfyf
 +OWGjky6QkB7j9X9MiLDpwTak6jLjeVVwncNdRnQVAMrSn6R9Zc9J/+mPWIJIoWQu
 +MwFfRm3LwPuFvBjS7JVI2hkI27VtacnlPCAfAe2cLjfk7AI1u5idYLo/mZecugTQ
 

Re: svn commit: r5219 - in /release/flex/4.12.0: ./ binaries/

2014-05-01 Thread OmPrakash Muppirala
Perhaps revert from SVN history?  Let me know if I can help somehow.

Thanks,
Om


On Thu, May 1, 2014 at 11:50 AM, Alex Harui aha...@adobe.com wrote:

 When I pushed 4.12.1 I accidentally removed 4.12.0.  I'm trying to restore
 4.12.0 from archives (at least, the binary folder) so the installer
 doesn't barf.

 On 5/1/14 11:45 AM, OmPrakash Muppirala bigosma...@gmail.com wrote:

 What's happening?  Will this affect the mirrors?
 
 Thanks,
 Om
 
 
 On Thu, May 1, 2014 at 11:38 AM, aha...@apache.org wrote:
 
  Author: aharui
  Date: Thu May  1 18:38:22 2014
  New Revision: 5219
 
  Log:
  Oops! Shouldn't have axed 4.12.0 just yet.
 
  Added:
  release/flex/4.12.0/
  release/flex/4.12.0/binaries/
  release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz
 (with
  props)
 
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
(with props)
 
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
(with props)
  release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip   (with
  props)
  release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
  (with props)
  release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.md5.txt
  (with props)
  release/flex/4.12.0/binaries/apache-flex-sdk-installer-config.xml
  (with props)
 
  Added: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz
 
 
 =
 =
  Binary file - no diff available.
 
  Propchange:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz
 
 
 -
 -
  svn:mime-type = application/octet-stream
 
  Added:
  release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
 
 
 =
 =
  ---
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
  (added)
  +++
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
  Thu May  1 18:38:22 2014
  @@ -0,0 +1,18 @@
  +-BEGIN PGP SIGNATURE-
  +Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
  +Comment: GPGTools - http://gpgtools.org
  +
  +iQIcBAABCgAGBQJTE/RFAAoJEODyhZOu6tFR+HoP/RTcHVlZBfD3jjUaouTKZCLA
  ++/2AIB/n5A6YWPrVIGNZezPNqwG3HQwaS0lI3qTIjAzZ1bKRAGBoQlOnHUQeJ2SA
  +78wzhMlKTJb79e/JqOFc4qRhb6xs18mNXWLGZt2uMuYGgnOIPsk11u5RjCYwMLh+
  +b3eJXBUa4X6RsNAhL/WNh3URL9/KItMtMxga5nxb/y9YAUDPhD0eUbr/HStRyapl
  +EZDJF2OdSeMDUY4WZkdKLpcRuM4+Bez/z7ya4wPzOhhQHKmw4wNcuboyNDydZpTM
  +icvL6dv19l0Fxw+lthzSxR/uxRjaMUY1vQiPBFOa8cbrElOFs7+ROkRhjds6OaTP
  +fb/U/HsiwIuc0XpdDh9ErXASgy9dmRxRSNaluZwB0UQy4fPKvUPlOl9Lcv2cDajz
  +RFXlhfE/2lih71j6/WZ0mKvTzA7jKoKP5q9o/lFgORJcl+ayYpTQj3KZwQdKWnR4
  +kY4e79VcUfpGY876KbhCmMK94wDOMJLOwB+ZZgre5j9NIbKFLEdcGA/ui2/pDeSN
  +eTMXpHeX90Tzx6XE/oBVd9snr9A6zPuhOrxTVYmQBuBHBVZ1jmPMuQARJG4DiPxK
  +DLPvWclQ4pxpE37XpaKSr0meUA6Kaxw6cuFv9scsmAFU7GRp0HJTdXNV7WgH4O23
  +KeOo+SLhiyD0sPMSlrKv
  +=5wCP
  +-END PGP SIGNATURE-
 
  Propchange:
  release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.asc.txt
 
 
 -
 -
  svn:eol-style = native
 
  Added:
  release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
 
 
 =
 =
  ---
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
  (added)
  +++
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
  Thu May  1 18:38:22 2014
  @@ -0,0 +1 @@
  +6f38e998749477d37c94b831adc86294
 
  Propchange:
  release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.tar.gz.md5.txt
 
 
 -
 -
  svn:eol-style = native
 
  Added: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip
 
 
 =
 =
  Binary file - no diff available.
 
  Propchange: release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip
 
 
 -
 -
  svn:mime-type = application/octet-stream
 
  Added:
 release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
 
 
 =
 =
  --- release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
  (added)
  +++ release/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip.asc.txt
  Thu May  1 18:38:22 2014
  @@ -0,0 +1,18 @@
  +-BEGIN PGP SIGNATURE-
  +Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
  +Comment: GPGTools - http://gpgtools.org
  +
  +iQIcBAABCgAGBQJTE/QyAAoJEODyhZOu6tFRQXEP/1eaieUSnFwOtEMD72usUr9W
  +rkLw7DzwKFMUul8aiZU0+mZgGpTTUxE6c68GSSHzHyr0aPzAq+nYP8de9pps62YE
  +YIHuHtZnQTJkU7JY7tKD5lfpwZKfKFasl4LwJo6rhIHRZOBb2DrzSNTpXMFhqE1J
  

Can't get Jenkins Slave to connect

2014-05-01 Thread Alex Harui
Om, Erik,

Earlier today I allowed the ci server to reboot and take some windows
updates.  Since then I cannot get the slave to connect.  Any ideas?

-Alex



Re: Can't get Jenkins Slave to connect

2014-05-01 Thread OmPrakash Muppirala
On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com wrote:

 Om, Erik,

 Earlier today I allowed the ci server to reboot and take some windows
 updates.  Since then I cannot get the slave to connect.  Any ideas?


I can take a look.  Let me know when it is okay for me to remote into the
machine.

Thanks,
Om


 -Alex




Re: Can't get Jenkins Slave to connect

2014-05-01 Thread Alex Harui
Someone just logged in.  Whoever it was feel free to figure it out.  I'm
at a loss.  I tried setting a firewall rule in case that was the problem,
but it didn't help.

I also tried setting a specific port in the Jenkins Global Security
settings.

-Alex

On 5/1/14 12:28 PM, OmPrakash Muppirala bigosma...@gmail.com wrote:

On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com wrote:

 Om, Erik,

 Earlier today I allowed the ci server to reboot and take some windows
 updates.  Since then I cannot get the slave to connect.  Any ideas?


I can take a look.  Let me know when it is okay for me to remote into the
machine.

Thanks,
Om


 -Alex





Re: Can't get Jenkins Slave to connect

2014-05-01 Thread Erik de Bruin
Lol, oops... I forgot to ask permission ;-)

I looked, but whomever was logged in was thinking the same way I was, so no
insights from me.

Out again.

EdB




On Thu, May 1, 2014 at 9:28 PM, OmPrakash Muppirala bigosma...@gmail.comwrote:

 On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com wrote:

  Om, Erik,
 
  Earlier today I allowed the ci server to reboot and take some windows
  updates.  Since then I cannot get the slave to connect.  Any ideas?
 
 
 I can take a look.  Let me know when it is okay for me to remote into the
 machine.

 Thanks,
 Om


  -Alex
 
 




-- 
Ix Multimedia Software

Jan Luykenstraat 27
3521 VB Utrecht

T. 06-51952295
I. www.ixsoftware.nl


Re: Can't get Jenkins Slave to connect

2014-05-01 Thread OmPrakash Muppirala
Not me.  Must be Erik.

Or your VM got owned ;-)

Thanks,
Om


On Thu, May 1, 2014 at 12:32 PM, Alex Harui aha...@adobe.com wrote:

 Someone just logged in.  Whoever it was feel free to figure it out.  I'm
 at a loss.  I tried setting a firewall rule in case that was the problem,
 but it didn't help.

 I also tried setting a specific port in the Jenkins Global Security
 settings.

 -Alex

 On 5/1/14 12:28 PM, OmPrakash Muppirala bigosma...@gmail.com wrote:

 On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com wrote:
 
  Om, Erik,
 
  Earlier today I allowed the ci server to reboot and take some windows
  updates.  Since then I cannot get the slave to connect.  Any ideas?
 
 
 I can take a look.  Let me know when it is okay for me to remote into the
 machine.
 
 Thanks,
 Om
 
 
  -Alex
 
 




Re: Can't get Jenkins Slave to connect

2014-05-01 Thread OmPrakash Muppirala
Okay, I am in now.

Thanks,
Om


On Thu, May 1, 2014 at 12:33 PM, Erik de Bruin e...@ixsoftware.nl wrote:

 Lol, oops... I forgot to ask permission ;-)

 I looked, but whomever was logged in was thinking the same way I was, so no
 insights from me.

 Out again.

 EdB




 On Thu, May 1, 2014 at 9:28 PM, OmPrakash Muppirala bigosma...@gmail.com
 wrote:

  On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com wrote:
 
   Om, Erik,
  
   Earlier today I allowed the ci server to reboot and take some windows
   updates.  Since then I cannot get the slave to connect.  Any ideas?
  
  
  I can take a look.  Let me know when it is okay for me to remote into the
  machine.
 
  Thanks,
  Om
 
 
   -Alex
  
  
 



 --
 Ix Multimedia Software

 Jan Luykenstraat 27
 3521 VB Utrecht

 T. 06-51952295
 I. www.ixsoftware.nl



Re: Can't get Jenkins Slave to connect

2014-05-01 Thread OmPrakash Muppirala
The slave is trying to connect to Jenkins on port 49169.  Any idea where
this came from?  I see that Jenkins is still running on 8080.

Thanks,
Om


On Thu, May 1, 2014 at 12:37 PM, OmPrakash Muppirala
bigosma...@gmail.comwrote:

 Okay, I am in now.

 Thanks,
 Om


 On Thu, May 1, 2014 at 12:33 PM, Erik de Bruin e...@ixsoftware.nl wrote:

 Lol, oops... I forgot to ask permission ;-)

 I looked, but whomever was logged in was thinking the same way I was, so
 no
 insights from me.

 Out again.

 EdB




 On Thu, May 1, 2014 at 9:28 PM, OmPrakash Muppirala bigosma...@gmail.com
 wrote:

  On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com wrote:
 
   Om, Erik,
  
   Earlier today I allowed the ci server to reboot and take some windows
   updates.  Since then I cannot get the slave to connect.  Any ideas?
  
  
  I can take a look.  Let me know when it is okay for me to remote into
 the
  machine.
 
  Thanks,
  Om
 
 
   -Alex
  
  
 



 --
 Ix Multimedia Software

 Jan Luykenstraat 27
 3521 VB Utrecht

 T. 06-51952295
 I. www.ixsoftware.nl





Re: Can't get Jenkins Slave to connect

2014-05-01 Thread Alex Harui
No idea why it chose 49169.  I think I saw an article that the port it
uses is supposed to be different from the public port for the UI (8080).
I'm trying to find that article again and read it more carefully.

I set up Jenkins to try to listen on that port (see Global Security). But
it didn't help.

-Alex

On 5/1/14 12:42 PM, OmPrakash Muppirala bigosma...@gmail.com wrote:

The slave is trying to connect to Jenkins on port 49169.  Any idea where
this came from?  I see that Jenkins is still running on 8080.

Thanks,
Om


On Thu, May 1, 2014 at 12:37 PM, OmPrakash Muppirala
bigosma...@gmail.comwrote:

 Okay, I am in now.

 Thanks,
 Om


 On Thu, May 1, 2014 at 12:33 PM, Erik de Bruin e...@ixsoftware.nl
wrote:

 Lol, oops... I forgot to ask permission ;-)

 I looked, but whomever was logged in was thinking the same way I was,
so
 no
 insights from me.

 Out again.

 EdB




 On Thu, May 1, 2014 at 9:28 PM, OmPrakash Muppirala
bigosma...@gmail.com
 wrote:

  On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com wrote:
 
   Om, Erik,
  
   Earlier today I allowed the ci server to reboot and take some
windows
   updates.  Since then I cannot get the slave to connect.  Any ideas?
  
  
  I can take a look.  Let me know when it is okay for me to remote into
 the
  machine.
 
  Thanks,
  Om
 
 
   -Alex
  
  
 



 --
 Ix Multimedia Software

 Jan Luykenstraat 27
 3521 VB Utrecht

 T. 06-51952295
 I. www.ixsoftware.nl






Re: Can't get Jenkins Slave to connect

2014-05-01 Thread Alex Harui
Here's a link: 
https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI#JenkinsCLI-Connecti
onmechanism

I think the firewall needs fixing.  I think the rule I tried to set up
isn't right.  Other articles I found online imply there's an Exceptions
tab I was supposed to use instead.

-Alex

On 5/1/14 12:45 PM, Alex Harui aha...@adobe.com wrote:

No idea why it chose 49169.  I think I saw an article that the port it
uses is supposed to be different from the public port for the UI (8080).
I'm trying to find that article again and read it more carefully.

I set up Jenkins to try to listen on that port (see Global Security). But
it didn't help.

-Alex

On 5/1/14 12:42 PM, OmPrakash Muppirala bigosma...@gmail.com wrote:

The slave is trying to connect to Jenkins on port 49169.  Any idea where
this came from?  I see that Jenkins is still running on 8080.

Thanks,
Om


On Thu, May 1, 2014 at 12:37 PM, OmPrakash Muppirala
bigosma...@gmail.comwrote:

 Okay, I am in now.

 Thanks,
 Om


 On Thu, May 1, 2014 at 12:33 PM, Erik de Bruin e...@ixsoftware.nl
wrote:

 Lol, oops... I forgot to ask permission ;-)

 I looked, but whomever was logged in was thinking the same way I was,
so
 no
 insights from me.

 Out again.

 EdB




 On Thu, May 1, 2014 at 9:28 PM, OmPrakash Muppirala
bigosma...@gmail.com
 wrote:

  On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com
wrote:
 
   Om, Erik,
  
   Earlier today I allowed the ci server to reboot and take some
windows
   updates.  Since then I cannot get the slave to connect.  Any
ideas?
  
  
  I can take a look.  Let me know when it is okay for me to remote
into
 the
  machine.
 
  Thanks,
  Om
 
 
   -Alex
  
  
 



 --
 Ix Multimedia Software

 Jan Luykenstraat 27
 3521 VB Utrecht

 T. 06-51952295
 I. www.ixsoftware.nl







Re: Can't get Jenkins Slave to connect

2014-05-01 Thread OmPrakash Muppirala
Feel free to log in and apply this fix.  I will have some time later in the
day if needed.

Thanks,
Om


On Thu, May 1, 2014 at 12:55 PM, Alex Harui aha...@adobe.com wrote:

 Here's a link:
 https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI#JenkinsCLI-Connecti
 onmechanism

 I think the firewall needs fixing.  I think the rule I tried to set up
 isn't right.  Other articles I found online imply there's an Exceptions
 tab I was supposed to use instead.

 -Alex

 On 5/1/14 12:45 PM, Alex Harui aha...@adobe.com wrote:

 No idea why it chose 49169.  I think I saw an article that the port it
 uses is supposed to be different from the public port for the UI (8080).
 I'm trying to find that article again and read it more carefully.
 
 I set up Jenkins to try to listen on that port (see Global Security). But
 it didn't help.
 
 -Alex
 
 On 5/1/14 12:42 PM, OmPrakash Muppirala bigosma...@gmail.com wrote:
 
 The slave is trying to connect to Jenkins on port 49169.  Any idea where
 this came from?  I see that Jenkins is still running on 8080.
 
 Thanks,
 Om
 
 
 On Thu, May 1, 2014 at 12:37 PM, OmPrakash Muppirala
 bigosma...@gmail.comwrote:
 
  Okay, I am in now.
 
  Thanks,
  Om
 
 
  On Thu, May 1, 2014 at 12:33 PM, Erik de Bruin e...@ixsoftware.nl
 wrote:
 
  Lol, oops... I forgot to ask permission ;-)
 
  I looked, but whomever was logged in was thinking the same way I was,
 so
  no
  insights from me.
 
  Out again.
 
  EdB
 
 
 
 
  On Thu, May 1, 2014 at 9:28 PM, OmPrakash Muppirala
 bigosma...@gmail.com
  wrote:
 
   On Thu, May 1, 2014 at 12:22 PM, Alex Harui aha...@adobe.com
 wrote:
  
Om, Erik,
   
Earlier today I allowed the ci server to reboot and take some
 windows
updates.  Since then I cannot get the slave to connect.  Any
 ideas?
   
   
   I can take a look.  Let me know when it is okay for me to remote
 into
  the
   machine.
  
   Thanks,
   Om
  
  
-Alex
   
   
  
 
 
 
  --
  Ix Multimedia Software
 
  Jan Luykenstraat 27
  3521 VB Utrecht
 
  T. 06-51952295
  I. www.ixsoftware.nl
 
 
 
 




RE: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

2014-05-01 Thread Maurice Amsellem
Here you are:
https://cwiki.apache.org/confluence/display/FLEX/Apache+Flex+4.12.1+Release+Notes

Feel free to make additions/changes.


-Message d'origine-
De : Alex Harui [mailto:aha...@adobe.com] 
Envoyé : jeudi 1 mai 2014 18:15
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

Actually the announcement won't go out for another 24 hours so the mirrors can 
pick up the new bits.

On 5/1/14 9:10 AM, Maurice Amsellem maurice.amsel...@systar.com wrote:

No, it won't.   So go ahead

De : Alex Harui [aha...@adobe.com]
Envoyé : jeudi 1 mai 2014 18:08
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

Working on it now.  If your wiki page isn't ready right away I don't 
think it will matter that much.

On 5/1/14 9:06 AM, Maurice Amsellem maurice.amsel...@systar.com wrote:

When do you intend to make the announcement on 4.12.1,  so you I can 
have the wiki page ready ?

De : Alex Harui [aha...@adobe.com]
Envoyé : jeudi 1 mai 2014 17:35
À : dev@flex.apache.org
Objet : Re: [DISCUSS] Discuss Apache Flex 4.12.1 RC2

On 4/30/14 1:41 AM, Maurice Amsellem maurice.amsel...@systar.com
wrote:

(copied from wrong VOTE thread):

One minor issue in the release notes:
FLEX-33948  Add touch behaviour to spark DropDownList classes = the 
ticket is still open.  implementation attempts were not satisfactory, 
and have not been committed.
I accepted the patch in 4a13999192e5ebb8ab9d435069e226f6b9f30759 but 
forgot to update the bug.


Also, I find that the release notes do not describe accurately enough 
what's in the release (eg. extended queries), and going to JIRA to 
understand what was done isn't better.
I suggest that we add a page (either in the web site or in the wiki) 
to describe in detail the various features.
What do you think?
Feel free to add a wiki page.

-Alex





Re: [FlexJS] Unable to Install FlexJS SDK using Installer

2014-05-01 Thread Justin Mclean
HI,

 Downloading Apache FlexJS 
 from:http://apache.claz.org/flex/flexjs/0.0.1/binaries/apache-flex-flexjs-0.0.1-bin.zip

apache.claz.org?

 Installing Apache Flex SDK from: 
 http://archive.apache.org/dist/flex/4.12.0/binaries/apache-flex-sdk-4.12.0-bin.zip
 Installing Apache Flex Falcon Compiler from: 
 http://archive.apache.org/dist/flex/falcon/0.0.1/binaries/apache-flex-falconjx-0.0.1-bin.zip

Are these the actually URLs or it is going via the mirrors?

Please do not download from apache.org! If you are currently at apache.org and 
would like to browse, please visit a nearby mirror site instead.

We really should be using the mirrors, if we are can we log the mirror that way 
we would know if a mirror was bad.

Justin

Re: [FlexJS] Unable to Install FlexJS SDK using Installer

2014-05-01 Thread Alex Harui

On 5/1/14 10:06 PM, Justin Mclean jus...@classsoftware.com wrote:

HI,

 Downloading Apache FlexJS
from:http://apache.claz.org/flex/flexjs/0.0.1/binaries/apache-flex-flexjs
-0.0.1-bin.zip

apache.claz.org?
I assume that's a mirror.

 Installing Apache Flex SDK from:
http://archive.apache.org/dist/flex/4.12.0/binaries/apache-flex-sdk-4.12.
0-bin.zip
 Installing Apache Flex Falcon Compiler from:
http://archive.apache.org/dist/flex/falcon/0.0.1/binaries/apache-flex-fal
conjx-0.0.1-bin.zip

Are these the actually URLs or it is going via the mirrors?
FlexJS 0.0.1 downloads the upstream dependencies from archive.a.o.  Doing
mirrors from Ant is tricky, but I've got it working for 0.0.2.



-Alex