Re: Build failed in Jenkins: flex-sdk_mustella #481

2013-10-20 Thread Justin Mclean
Hi, Just a blip or do we know what checkin caused that? Thanks, Justin

Re: Build failed in Jenkins: flex-sdk_mustella #481

2013-10-20 Thread Justin Mclean
Hi, I'm getting 2 or 3 tests fail when I run this - 4 out of 4 times. ./mini_run.sh tests/itemRenderers/Spark/List But with -failures they vanish. ./mini_run.sh tests/itemRenderers/Spark/List -failures Timing or test order issues? Anyone have an idea? On OSX btw. Thanks, Justin

RE: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Frédéric THOMAS
Hi, I was trying to run the tests on my VM windows server 2012 but it seems there's a problem with this path C:\Users\apacheflex\Application Data\Macromedia\Flash Player\Logs\flashlog.txt (The system cannot find the path specified) Erik, how did you set it ? Application Data doesn't exist -Fre

RE: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Frédéric THOMAS
Ok, that's fine now, it is running... -Message d'origine- De : Frédéric THOMAS [mailto:webdoubl...@hotmail.com] Envoyé : dimanche 20 octobre 2013 12:49 À : dev@flex.apache.org Objet : RE: [DISCUSSION] Apache Flex 4.11.0 RC 2 Hi, I was trying to run the tests on my VM windows server 201

Re: [VOTE] Apache Flex 4.11.0 release candidate 2

2013-10-20 Thread Justin Mclean
Hi, Thanks to everyone who tested and voted so far looks like this will be the 4.11 release. Ill leave it open for 24 hours just in case further testing finds any major issues. Thanks, Justin

Re: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Mark Kessler
I thought the new path was AppData\Roaming\Macromedia\Flash Player\Logs ? [1] [1] http://help.adobe.com/en_US/flex/using/WSda78ed3a750d6b8f-4867184d1239f9d0558-8000.html -Mark On Sun, Oct 20, 2013 at 7:07 AM, Frédéric THOMAS wrote: > Ok, that's fine now, it is running... > > -Message d'or

Re: Build failed in Jenkins: flex-sdk_mustella #481

2013-10-20 Thread Alex Harui
A MarshallPlan timeout is probably a blip. There are several tests that always fail and then fix themselves with -failures. Those tests need fixing, but I haven't prioritized it. Could be timing, test order or dependency on previous test results, or even something else. -Alex On 10/20/13 12:28

RE: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Frédéric THOMAS
Exact Mark. Anyone has an idea why I've got that in my console: - [java] okey doke, going to compile F:\sources\asf\flex\current\sdk\mustella\tests\experimental\spark\components \CallOutButton\SWFs\CallOutButton_Main.mxml [java] Loading configuration

RE: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Maurice Amsellem
Fred, Experimental CallOut / CallOutButton do not exist anymore. Mobile Callout / CalloutButton have been move to spark and can be used in both desktop and mobile environments. Maurice -Message d'origine- De : Frédéric THOMAS [mailto:webdoubl...@hotmail.com] Envoyé : dimanche 20 octob

RE: Odd SDK code in Spark button

2013-10-20 Thread Maurice Amsellem
To replace everywhere, use replace() with a RegExp and "g" option style.replace ( / emphasized/g, "") will replace all occurrences. (not absolutely sure about the RegExp exact syntax). Cf. http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/String.html#replace() Maurice -

RE: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Frédéric THOMAS
Hi Maurice, So, shouldn't those tests have been removed or at least excluded ? -Fred -Message d'origine- De : Maurice Amsellem [mailto:maurice.amsel...@systar.com] Envoyé : dimanche 20 octobre 2013 19:41 À : dev@flex.apache.org Objet : RE: [DISCUSSION] Apache Flex 4.11.0 RC 2 Fred, Ex

RE: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Maurice Amsellem
Hi, Alex already asked about these tests ( thread "[Mustella] tests/experimental/spark/components/CallOutButton" started Oct 16th) And I understood from our discussion that he was working on fixing the tests. I don't know what is the current status. Maurice -Message d'origine- De : Fr

RE: UID performance

2013-10-20 Thread Maurice Amsellem
Thanks Justin, I just pushed the new algorithm to develop/branch. I contains an additional optimization to avoid the TimeString concat and substr, so the final algo is around 4x faster on Chrome 11.9 non debug. Maurice -Message d'origine- De : Justin Mclean [mailto:jus...@classsoftwa

Re: git commit: [flex-sdk] [refs/heads/develop] - FLEX-33829 improve create UID performance and use New algorithm using ByteArray around 4x faster than original.

2013-10-20 Thread Justin Mclean
Hi, > for (i = 8; i > timeString.length; --i) Would probably be better as: var timeLength = timeString.length; for (i = 8; i>timeLength; i--) (As the condition is rarely encountered it's not a big deal) Thanks, Justin

4.11 release update web site and blog

2013-10-20 Thread Justin Mclean
Hi, Can someone help out with the following tasks to do with the 4.11 release? https://issues.apache.org/jira/browse/FLEX-33751 https://issues.apache.org/jira/browse/FLEX-33768 Thanks, Justin

Re: 4.11 release update web site and blog

2013-10-20 Thread Nicholas Kwiatkowski
On it. I'll get them staged. We will want to wait for dist to be properly populated before we post them however. -Nick On Sun, Oct 20, 2013 at 6:25 PM, Justin Mclean wrote: > Hi, > > Can someone help out with the following tasks to do with the 4.11 release? > https://issues.apache.org/jira/br

Re: 4.11 release update web site and blog

2013-10-20 Thread Justin Mclean
Hi, > I'll get them staged. We will want to wait for dist to be properly > populated before we post them however. Yep will do so in about 8 hours. I send out the announce after the web site been updated and published. Thanks, Justin

RE: git commit: [flex-sdk] [refs/heads/develop] - FLEX-33829 improve create UID performance and use New algorithm using ByteArray around 4x faster than original.

2013-10-20 Thread Maurice Amsellem
Thanks Justin, I have made the change and pushed to develop. Note that contrary to previous algorithm, timeString.length will be < 8 more often (first 1/16 of ~3 days cycle), so this fix is important. Maurice -Message d'origine- De : Justin Mclean [mailto:jus...@classsoftware.com] En

Re: git commit: [flex-sdk] [refs/heads/develop] - FLEX-33829 improve create UID performance and use New algorithm using ByteArray around 4x faster than original.

2013-10-20 Thread Justin Mclean
Hi, > Note that contrary to previous algorithm, timeString.length will be < 8 more > often (first 1/16 of ~3 days cycle), so this fix is important. Given the improvement and that calls to random and to get the time would be slower than getting the length (or so I assume not tested) it wan't a bi

Re: 4.11 release update web site and blog

2013-10-20 Thread OmPrakash Muppirala
On Oct 20, 2013 3:44 PM, "Justin Mclean" wrote: > > Hi, > > > I'll get them staged. We will want to wait for dist to be properly > > populated before we post them however. > Yep will do so in about 8 hours. > > I send out the announce after the web site been updated and published. We have the In

Re: 4.11 release update web site and blog

2013-10-20 Thread Justin Mclean
Hi, > We have the Installer ready to be voted on. You want to announce the vote? Thanks, Justin

Re: 4.11 release update web site and blog

2013-10-20 Thread OmPrakash Muppirala
On Oct 20, 2013 5:21 PM, "Justin Mclean" wrote: > > Hi, > > > We have the Installer ready to be voted on. > You want to announce the vote? > Well do. In a few hours, once I get to a real computer. I have the code for osmf.swc 2.0 download and unzip ready(not committed yet, though). Will just h

Re: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Alex Harui
I'm not working on these tests. I'm totally unfamiliar with Callout-related stuff. I'm not sure why these tests aren't failing in the CI runs but in other runs. On 10/20/13 12:22 PM, "Maurice Amsellem" wrote: >Hi, > >Alex already asked about these tests ( thread "[Mustella] >tests/experimenta

[FlexJS] Custom CSS for JS

2013-10-20 Thread Alex Harui
Hi, I just checked in changes to FalconJX and FlexJSUI classes to support custom CSS properties on the JS side. The main purpose for this right now is finding default beads. -Alex

RE: [VOTE] Apache Flex 4.11.0 release candidate 2

2013-10-20 Thread Frédéric THOMAS
+1 Binding - MD5 / ASC -> ok - Sources compile -> ok - RAT report -> ok - Mustella checkin -> ok - Mustella full -> failed, relying on the CI and other testers - Large desktop -> not tested (hadn't got time, will do it today).

RE: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Frédéric THOMAS
Hi, I had a lot of tests failed, does someone knows when Jenkins ran successfully the full test suite for the last time ? looking in the commit list, I've seen only partial tests, the ones relying on changes. -Fred -Message d'origine- De : Alex Harui [mailto:aha...@adobe.com] Envoyé : l

Re: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Alex Harui
What failures are you getting? Erik's VM has run all tests twice a day. -Alex On 10/20/13 10:54 PM, "Frédéric THOMAS" wrote: >Hi, > >I had a lot of tests failed, does someone knows when Jenkins ran >successfully the full test suite for the last time ? looking in the commit >list, I've seen onl

RE: [DISCUSSION] Apache Flex 4.11.0 RC 2

2013-10-20 Thread Frédéric THOMAS
Thanks, so, that's should be fine, will rerun it later anyway as too many tests were failing, not the time this morning to examine why, some were because of the timeouts though. But given everyone have successfully run it, it should be something in my conf, will check that later. -Fred -Mess