Re: [Falcon] Unit tests failing

2012-12-07 Thread Alex Harui
On 12/7/12 4:56 PM, "Gordon Smith" wrote: > It is unacceptable to have to configure every debug config you create. I > create dozens per day when I work on Falcon. Agreed. After reading up on it, it appears that there is no way to set new defaults for every individual junit test in Eclipse.

RE: New Falcon feature tests

2012-12-07 Thread Gordon Smith
> The tag isn't in good shape... even simple examples create a SWF that > throws a TypeError at runtime. I've fixed the bugs revealed by the tag tests and we now have 5 feature tests for it, all of which pass. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com]

New Falcon feature tests

2012-12-07 Thread Gordon Smith
Today I added feature tests for the and tags. (Each MXML feature test compiles a tiny MXML app that tests one particular feature, runs it in the standalone player, and checks that it ran correctly.) Most cases of work, but I discovered something I never knew: The tag doesn't just allow code

Re: [Falcon] Unit tests failing

2012-12-07 Thread Chema Balsas
Quoting Michael Schmalle : Right, It's just getting the setup correct. Which as Gordon and I have > mentioned is hard when running straight eclipse junit, like a method (no > access to the build properties). Whats the solution? :) I think if you are going to focus on falcon and want to use eclip

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
It is unacceptable to have to configure every debug config you create. I create dozens per day when I work on Falcon. - Gordon -Original Message- From: omup...@gmail.com [mailto:omup...@gmail.com] On Behalf Of Om Sent: Friday, December 07, 2012 4:40 PM To: flex-dev@incubator.apache.org S

RE: [Falcon] Unit tests failing

2012-12-07 Thread Michael Schmalle
Quoting Gordon Smith : Most of the time when making Falcon pass unit tests, I'm changing Falcon code, not SDK code. 'ant clean eclipse' for Falcon takes only 8 seconds on my machine. I have no problem with having multiple targets though. Right, I totally agree and was really only speakin

Re: [Falcon] Unit tests failing

2012-12-07 Thread Om
In Eclipse: Under 'Run' menu > Select "Debug Configurations..." On the left, right-click "JUnit" > Select "New" When the New Configuration is created, you can customize pretty much everything you want: Try playing with the settings in one of these tabs: * Arguments * Environment HTH Thanks, Om

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
It's complaining it can't find the test class you're trying to run? Weird. Try doing a File > Refresh on the compiler and compiler.tests projects. - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Friday, December 07, 2012 4:17 PM To: flex-dev@incubator.apache

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
Most of the time when making Falcon pass unit tests, I'm changing Falcon code, not SDK code. 'ant clean eclipse' for Falcon takes only 8 seconds on my machine. I have no problem with having multiple targets though. - Gordon -Original Message- From: Michael Schmalle [mailto:apa...@teotig

Re: [Falcon] Unit tests failing

2012-12-07 Thread Michael Schmalle
Quoting Chema Balsas : The only problem with that is that if you're fixing things in the sdk so that the tests pass, you need to run ant eclipse everytime you change something to bring your changes over from the develop branch, right? Ah, your right about this, it would have to be copied over

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Michael Schmalle
Yes, your right, its Friday night and I'm done for the week, so I did mean "implicit" super() injection. Sounds like a super hero. Mike Quoting Frank Wienberg : Well the compiler does not barf on a constructor body without super() call, but I guess it spits out (still better than barfing!)

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Frank Wienberg
Well the compiler does not barf on a constructor body without super() call, but I guess it spits out (still better than barfing!) the implicit super call in the byte code. So we just have to keep that in mind when taking the direct AS-AST->JS approach. On Sat, Dec 8, 2012 at 1:08 AM, Michael Schm

Re: [Falcon] Unit tests failing

2012-12-07 Thread Chema Balsas
The only problem with that is that if you're fixing things in the sdk so that the tests pass, you need to run ant eclipse everytime you change something to bring your changes over from the develop branch, right? If you get to configure the variables properly the tests will always pick the latests

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
So I've checked in that change. - Gordon -Original Message- From: Gordon Smith [mailto:gosm...@adobe.com] Sent: Friday, December 07, 2012 4:08 PM To: flex-dev@incubator.apache.org Subject: RE: [Falcon] Unit tests failing I'm fine with just having 'ant eclipse' do 'ant copy.sdk'. Alex sh

Re: [Falcon] Unit tests failing

2012-12-07 Thread Alex Harui
I'll spend some time poking at it to see if I can get it to work without the copy. Because I see Falcon as SDK independent, if co-location is required to make it work, that doesn't seem very independent. I ran MXMLArrayNodeTests and got: Class not found org.apache.flex.compiler.internal.tree.mxm

RE: [Falcon] Unit tests failing

2012-12-07 Thread Michael Schmalle
See all this got changed and I didn't know about it. I spent way to much time on something I could have just run a build target on! :) Ow that hurts. I was seriously about ready to give up. So I guess I can now ditch the compiler arg crap and just copy the sdk over. Mike Quoting Gordon Smi

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
I'm fine with just having 'ant eclipse' do 'ant copy.sdk'. Alex shouldn't care because he doesn't use Eclipse. :) - Gordon -Original Message- From: Chema Balsas [mailto:jbal...@gmail.com] Sent: Friday, December 07, 2012 4:05 PM To: flex-dev@incubator.apache.org Subject: Re: [Falcon] Un

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Michael Schmalle
Quoting Frank Wienberg : If you are talking about the goog.base() inside the constructor body, it always has to be there unless the class inherits from Object. This is needed to simulate ActionScript semantics: if your constructor does not contain a super(...) statement, an implicit one is adde

Re: [Falcon] Unit tests failing

2012-12-07 Thread Chema Balsas
I couldn't find anything in Eclipse either. The only place is /etc/launchd.conf (it was ~/MacOS/environment.plist before) which is quite like ~/.profile but for GUI apps. I personally think this is quite complicated, and documentation for this is scarce at the best... 2012/12/8 Gordon Smith > >

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Frank Wienberg
If you are talking about the goog.base() inside the constructor body, it always has to be there unless the class inherits from Object. This is needed to simulate ActionScript semantics: if your constructor does not contain a super(...) statement, an implicit one is added as the first statement. If

Re: [Falcon] Unit tests failing

2012-12-07 Thread Michael Schmalle
Quoting Alex Harui : By whole project, what folder in the package explorer view? Where in Eclipse did you make your configuration changes? You right click on "compiler.tests" folder which is a project and select run as junit test. This will automatically create a debug configuration runn

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
> Can this really be possible that there is no place to configure Junit's > runtime environment from within Eclipse? I looked in the workspace preferences dialog under Run/Debug > Launching but didn't see a way to do anything useful. - Gordon -Original Message- From: Alex Harui [mailto

Re: [Falcon] Unit tests failing

2012-12-07 Thread Chema Balsas
I'm not sure the problem is in JUnit but in all the stuff the tests are triggering behind. What Michael proposed (which indeed works) is to append the arguments to any launch configuration created for any test which would be a total nightmare and quite impossible to maintain. As Gordon says, it w

Re: [Falcon] Unit tests failing

2012-12-07 Thread Alex Harui
On 12/7/12 3:48 PM, "Gordon Smith" wrote: > And it should NOT require any voodoo to launch Eclipse, such as a launch > script. Agreed > > I would be able to tolerate it requiring a one-time setup in the Eclipse > workspace, but I can't find any place to configure environment variables > there

Re: [Falcon] Unit tests failing

2012-12-07 Thread Alex Harui
By whole project, what folder in the package explorer view? Where in Eclipse did you make your configuration changes? On 12/7/12 3:40 PM, "Michael Schmalle" wrote: > I use Eclipse and JUnit. > > I can't stand the command line, I'm a visual person. You just right > click and Run As JUnit test,

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
I don't know how to change the default debug config. However, running 'ant copy.sdk' makes it work just fine. So 'ant eclipse' should do 'ant copy.sdk'. - Gordon -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Friday, December 07, 2012 3:49 PM To: flex-dev@incubator

Re: [Falcon] Unit tests failing

2012-12-07 Thread Alex Harui
Sounds good to me. But where does the default debug configuration get established? Where in Eclipse do I go to set it up? Or what file can I change elsewhere? On 12/7/12 3:45 PM, "Gordon Smith" wrote: > All unit tests (at least for Falcon) should be zero-configuration. You open up > a file l

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
And it should NOT require any voodoo to launch Eclipse, such as a launch script. I would be able to tolerate it requiring a one-time setup in the Eclipse workspace, but I can't find any place to configure environment variables there. - Gordon -Original Message- From: Gordon Smith [mail

Re: [Falcon] Unit tests failing

2012-12-07 Thread Alex Harui
I'm on Mac as well. I've read both this and Schmalle's reply and I still don't know what to do in Eclipse. Under compiler.tests there is a unit-tests folder. Is that what you guys are clicking on to run the tests? Is there really no other way to configure the run environment than to add environm

Re: [Falcon] Unit tests failing

2012-12-07 Thread Chema Balsas
Oops, of course the contents are setenv PLAYERGLOBAL_HOME /path/to/playerglobal/home setenv FLEX_HOME /path/to/flexhome setenv AIR_HOME /path/to/airhome Oh, and don't try to create a ~/launchd.conf as it's unsupported right now. Does this help any of you? 2012/12/8 Chema Balsas > Yes, this to

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
All unit tests (at least for Falcon) should be zero-configuration. You open up a file like MXMLArrayTagTests.java. You double-click the name of an individual test you want to debug, such as the first one, MXMLArrayTag_empty(), to select it. Then you right-click on it and choose Debug As > JUnit

Re: [Falcon] Unit tests failing

2012-12-07 Thread Chema Balsas
Yes, this took me some time to get it sorted too... If anyone is on MacOS, what I did is create a /etc/launchd.conf file with these content setenv PLAYERGLOBAL_HOME setenv FLEX_HOME setenv AIR_HOME With that, I get the tests running in Eclipse. The variables set there are passed to any applicat

Re: [Falcon] Unit tests failing

2012-12-07 Thread Michael Schmalle
I use Eclipse and JUnit. I can't stand the command line, I'm a visual person. You just right click and Run As JUnit test, it creates everything for you. You can even just right click on the whole project and it will automatically run every JUnit test as a suite automatically. I've always

Re: Falcon tests

2012-12-07 Thread Alex Harui
Yup, I moved it from main to sdk and it seems to be working. Thanks. On 12/7/12 3:27 PM, "Chema Balsas" wrote: > I think the problem is dist-dev is in the main target of compiler, but main > target in falcon is only calling sdk, which only calls jar and not dist-dev. > > 2012/12/8 Alex Harui

Re: Release rat log results

2012-12-07 Thread Alex Harui
Yes, although we shouldn't be using AC_RunActiveContent, we should be using SWFObject. On 12/7/12 3:34 PM, "Justin Mclean" wrote: > Hi, > > Looks like we are missing Apache licences on these files: > > /samples/badge/AC_RunActiveContent.js > /samples/badge/AIRBadge.as > /samples/badge/d

Re: [Falcon] Unit tests failing

2012-12-07 Thread Alex Harui
The copy.sdk target is still in there if you need it. But first, wow do you use the unit tests from Eclipse? I've never tried it, I always use the command line. Do you set up a run config of some sort? If you set a FLEX_HOME in the config's environment does that work? Once I understand how you

RE: [Falcon] Unit tests failing

2012-12-07 Thread Michael Schmalle
I had the same problems, it took me 3 days... I think what I found worked was I downloaded apache flex 4.8 and had to put this; -DFLEX_HOME=C:\Users\Work\Documents\libraries\apache\flex-4.8 into the compiler args for ANT and a JUnit test(debug configurations popup). I would say there is so

Release rat log results

2012-12-07 Thread Justin Mclean
Hi, Looks like we are missing Apache licences on these files: /samples/badge/AC_RunActiveContent.js /samples/badge/AIRBadge.as /samples/badge/default_badge.html /samples/badge/red_badge.html I assume they need them? Thanks, Justin

Re: svn commit: r1418451 - in /incubator/flex/sdk/branches/develop: ./ build.properties

2012-12-07 Thread Alex Harui
I've never had a problem with SVN command line before. I'm pretty sure I used to specify a list of files including "." and it would do the right thing. Those even are the steps Paul Reilly had in our old wiki. But it seems to now commit everything. I didn't think SmartSVN knew to update the "."

Re: Falcon tests

2012-12-07 Thread Greg Reddin
Crap. I'm sorry. Got busy with work and completely forgot. I'll try to get to it when I get back home unless Dave or Bertrand gets to it first. Sorry. Sent from my mobile device. On Dec 7, 2012, at 5:15 PM, Chema Balsas wrote: > I still don't have access to svn. Greg said he'll be fixing that

RE: [Falcon] Unit tests failing

2012-12-07 Thread Gordon Smith
After trying and failing to do any Falcon work today, I'll keep complaining about this. The unit tests are no longer working in Eclipse. I get command line Error: unable to open 'D:\Apache\incubator\flex\falcon\trunk\compiler\generated\dist\sdk\frameworks\mxml-2009-manifest.xml'. command line

Re: Falcon tests

2012-12-07 Thread Chema Balsas
I think the problem is dist-dev is in the main target of compiler, but main target in falcon is only calling sdk, which only calls jar and not dist-dev. 2012/12/8 Alex Harui > I'll try to get it straightened out. > > > On 12/7/12 3:15 PM, "Chema Balsas" wrote: > > > I still don't have access to

Re: Falcon tests

2012-12-07 Thread Alex Harui
I'll try to get it straightened out. On 12/7/12 3:15 PM, "Chema Balsas" wrote: > I still don't have access to svn. Greg said he'll be fixing that later > today. I'll make the change then unless somebody else beats me to it > > 2012/12/7 Gordon Smith > >> Can you make that change? >> >>

Re: Falcon tests

2012-12-07 Thread Alex Harui
Dist-dev is already in the main target. Does ant main work for you? On 12/7/12 2:57 PM, "Gordon Smith" wrote: > Can you make that change? > > -Original Message- > From: Chema Balsas [mailto:jbal...@gmail.com] > Sent: Friday, December 07, 2012 2:01 PM > To: flex-dev@incubator.apache.or

Re: Falcon tests

2012-12-07 Thread Chema Balsas
I still don't have access to svn. Greg said he'll be fixing that later today. I'll make the change then unless somebody else beats me to it 2012/12/7 Gordon Smith > Can you make that change? > > -Original Message- > From: Chema Balsas [mailto:jbal...@gmail.com] > Sent: Friday, December 0

RE: Falcon tests

2012-12-07 Thread Gordon Smith
Can you make that change? -Original Message- From: Chema Balsas [mailto:jbal...@gmail.com] Sent: Friday, December 07, 2012 2:01 PM To: flex-dev@incubator.apache.org Subject: Re: Falcon tests This happened to me yesterday after an 'ant wipe'. I accidentally fixed it for me by running ant

Re: Release build - another TLF issue

2012-12-07 Thread Justin Mclean
Thanks Carol Much appreciated, I think we now in a position where I can make a release candidate. Justin On 08/12/2012, at 7:29 AM, Carol Frampton wrote: > Author: cframpton > Date: Fri Dec 7 20:25:58 2012 > New Revision: 1418463 > > URL: http://svn.apache.org/viewvc?rev=1418463&view=rev > L

Re: Falcon tests

2012-12-07 Thread Chema Balsas
This happened to me yesterday after an 'ant wipe'. I accidentally fixed it for me by running ant main from the compiler folder. I've been digging, and it seems a call to the 'dist-dev' target is missing from the main target in the falcon folder. Adding a call to the compiler.dist-dev target inside

Falcon tests

2012-12-07 Thread Gordon Smith
When I run 'ant tests' for Falcon, the four JAR tests fail due to Java NoClassDefFoundError exceptions. Does anybody else have this problem? - Gordon jar.tests: [java] java.lang.NoClassDefFoundError: com/google/common/base/Function [java] Caused by: java.lang.ClassNotFoundException: c

Re: svn commit: r1418451 - in /incubator/flex/sdk/branches/develop: ./ build.properties

2012-12-07 Thread Carol Frampton
You need to commit from root to get the merge info. If you use the command line that means you can't have any other work. If you use SmartSVN you can uncheck other pending changes but it is way slower than the command line. Carol On 12/7/12 2 :32PM, "Alex Harui" wrote: >Hmm. Better, but st

Re: Release build - another TLF issue

2012-12-07 Thread Carol Frampton
Author: cframpton Date: Fri Dec 7 20:25:58 2012 New Revision: 1418463 URL: http://svn.apache.org/viewvc?rev=1418463&view=rev Log: Fix doc and other.locales targets for release build. There were several issues. textLayout could not build doc because there wasn't a valid textLayout_rb.swc to upda

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Erik de Bruin
Correct on the first one [1]. On the second one, I would tentatively say "no, it doesn't have to be there"... but a definitive answer might require some more research. EdB 1: https://cwiki.apache.org/confluence/display/FLEX/AS+to+JS+translation+table On Fri, Dec 7, 2012 at 8:45 PM, Michael Sch

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Michael Schmalle
Quoting Erik de Bruin : In GC, in combination with the way we set up inheritance, 'super()' is 'goog.base()': [1] If called from the constructor - as we already implemented - 'this' is the only argument. If calling a super method, use 'goog.base(this, "methodName", args)' EdB 1: http://clos

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Erik de Bruin
In GC, in combination with the way we set up inheritance, 'super()' is 'goog.base()': [1] If called from the constructor - as we already implemented - 'this' is the only argument. If calling a super method, use 'goog.base(this, "methodName", args)' EdB 1: http://closure-library.googlecode.com/s

FW: svn commit: r1418451 - in /incubator/flex/sdk/branches/develop: ./ build.properties

2012-12-07 Thread Alex Harui
Hmm. Better, but still broken. I have no idea how to commit the mergeinfo in svn anymore. Will revert build.properties. -- Alex Harui Flex SDK Team Adobe Systems, Inc. http://blogs.adobe.com/aharui -- Forwarded Message From: "aha...@apache.org" Reply-To: "flex-dev@incubator.apache.org"

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Michael Schmalle
After doing some more research, the super() implementation in general is a rats nest that needs to be figured out. Can someone give me the rules as to how super works with GC? If it's not present etc, is super.myMethod() allowed? Mike Quoting Michael Schmalle : Ok my head hurts after thi

Re: Release build - another TLF issue

2012-12-07 Thread Justin Mclean
Hi, > Pooling a job at each commit would be better, don't you think so ? Ideally yes but it's a shared server so we need to be careful not to overload it. Justin

OneClickMustella

2012-12-07 Thread Om
Here is my work in progress: https://svn.apache.org/repos/asf/incubator/flex/sdk/branches/develop/mustella/utilities/OneClickMustella So far, I have the directory paths inputs (persists across sessions) working. The app also starts a server and will serve up assets from the mustella/tests folder

Re: Release build - another TLF issue

2012-12-07 Thread Frédéric THOMAS
Hi Justin, Pooling a job at each commit would be better, don't you think so ? - Fred. -Message d'origine- From: Justin Mclean Sent: Friday, December 07, 2012 8:02 PM To: flex-dev@incubator.apache.org Subject: Re: Release build - another TLF issue Hi It should be possible to run

Re: Release build - another TLF issue

2012-12-07 Thread Frédéric THOMAS
Hi Om, Is there a place where I can look at what you did already, it would be nice ? (even if I won't have time tonight) - Fred. -Message d'origine- From: Om Sent: Friday, December 07, 2012 7:49 PM To: flex-dev@incubator.apache.org Subject: Re: Release build - another TLF issue I h

Re: Release build - another TLF issue

2012-12-07 Thread Justin Mclean
Hi It should be possible to run the check in tests after a check in and at most once/hour that's how I set up the current Jenkins job that does a build. The report shows what SVN changes have occurred when it runs a test. Thanks Justin

[jira] [Comment Edited] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread K Vikas Chandran (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13526649#comment-13526649 ] K Vikas Chandran edited comment on FLEX-33288 at 12/7/12 6:59 PM: --

[jira] [Commented] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread K Vikas Chandran (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13526649#comment-13526649 ] K Vikas Chandran commented on FLEX-33288: - hi Gordon, customer has a business requ

[jira] [Issue Comment Deleted] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread Gordon Smith (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gordon Smith updated FLEX-33288: Comment: was deleted (was: What is the point of setting the value of a NumericStepper to NaN?)

[jira] [Issue Comment Deleted] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread Gordon Smith (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gordon Smith updated FLEX-33288: Comment: was deleted (was: This is correct behavior because NaN + step -> NaN according to the rule

Re: Release build - another TLF issue

2012-12-07 Thread Frédéric THOMAS
Probably because no one has done it. I don't so much how things are organized at asf for those things, may someone can basicly enlight me and / or direct me on the good documention. Probably because no one has done it. I don't think a whole kit has to be built for every checkin but once a

Re: Release build - another TLF issue

2012-12-07 Thread Justin Mclean
Hi > I don't think a whole kit has to be built for every checkin but once a day would be nice. I'll set this up later today unless someone else wants to try. > I'm not even sure the test can be run I tried some time ago but was unable to get the check in tests to work on the windows build box.

[jira] [Updated] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread K Vikas Chandran (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] K Vikas Chandran updated FLEX-33288: Attachment: workAround.mxml Workaround sent to client > Numeric Stepper va

[jira] [Commented] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread Gordon Smith (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13526641#comment-13526641 ] Gordon Smith commented on FLEX-33288: - What is the point of setting the value of a Num

[jira] [Commented] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread Gordon Smith (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13526640#comment-13526640 ] Gordon Smith commented on FLEX-33288: - This is correct behavior because NaN + step ->

Re: Release build - another TLF issue

2012-12-07 Thread Om
I have started working on these two issues in an attempt to get to what you are talking about. If someone has time, they are welcome to help out. FLEX-33266 Make it easy for developers to do a targetted Mustella test run that doesnt take hours

[jira] [Updated] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread K Vikas Chandran (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] K Vikas Chandran updated FLEX-33288: Attachment: SampleFromClient.mxml sample sent from the client > Numeric St

Re: Release build - another TLF issue

2012-12-07 Thread Carol Frampton
On 12/7/12 1 :37PM, "Frédéric THOMAS" wrote: >Hi, > >I don't know if it has been discussed already but what about having >Jenkins >jobs (for the main target and other.locales) at commit time, is it >possible >to set up our CI ? Probably because no one has done it. I don't think a whole kit

Re: Release build - another TLF issue

2012-12-07 Thread Frédéric THOMAS
Yes. I did them on mac. There are about 6 failures on windows which I am working on while I'm waiting for various builds for the issues in this thread. Ok, I'm waitting for TLF to run a full test suite then and won't consider failed Chart tests at the moment if I understood you well, right ?

[jira] [Created] (FLEX-33288) Numeric Stepper value once NaN does not change to any number user sets or increments

2012-12-07 Thread K Vikas Chandran (JIRA)
K Vikas Chandran created FLEX-33288: --- Summary: Numeric Stepper value once NaN does not change to any number user sets or increments Key: FLEX-33288 URL: https://issues.apache.org/jira/browse/FLEX-33288

Re: Release build - another TLF issue

2012-12-07 Thread Frédéric THOMAS
Hi, I don't know if it has been discussed already but what about having Jenkins jobs (for the main target and other.locales) at commit time, is it possible to set up our CI ? (And for the tests it would be nice to have something too). Why it's not like that yet, has it been discusses already

Re: svn commit: r1418422 - in /incubator/flex/sdk/branches/develop: ./ frameworks/projects/framework/src/mx/core/ frameworks/projects/framework/src/mx/states/ frameworks/projects/mx/src/mx/containers/

2012-12-07 Thread Alex Harui
That's a bad commit. I was only trying to merge the four files in 1418421 and somehow all these other changes got in. I'm trying to revert it now. On 12/7/12 10:28 AM, "Justin Mclean" wrote: > Quite a few changes here - anything that needs to be mentioned in the > release notes? -- Alex Har

Re: Release build - another TLF issue

2012-12-07 Thread Carol Frampton
On 12/7/12 12 :11PM, "Frédéric THOMAS" wrote: >Hi Carol, > >Reading back my last question, I guess it's not english at all, so I >reformulate: All the commits you did yesterday on the charts are all >there >for them ? Yes. I did them on mac. There are about 6 failures on windows which I am

Re: svn commit: r1418422 - in /incubator/flex/sdk/branches/develop: ./ frameworks/projects/framework/src/mx/core/ frameworks/projects/framework/src/mx/states/ frameworks/projects/mx/src/mx/containers/

2012-12-07 Thread Justin Mclean
Quite a few changes here - anything that needs to be mentioned in the release notes?

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Michael Schmalle
Ok my head hurts after this one. Major crap to deal with, this is definitely prototype code as far as flow (FalconJS). Let me know. I can already see more hassles coming with default parameters. I added a get/set for you to see as well. As far as the double quotes in the expressions, that w

Re: Release build - another TLF issue

2012-12-07 Thread Justin Mclean
OK think it would huge best if we set up a Jenkins job to run the release targets that way we hopefully know when there's an issue with the release build. Thanks, Justin

Re: Falcon SDKSWCTests

2012-12-07 Thread Chema Balsas
Following with this, I've checked and in CompcTask, an include-config (ifSpec) is added with createElem instead of with createElemAllowAppend. Is there a reason for this? I've checked and changing it and adding 'append="true"' in the ant task to the include-file tag does fix this I don't know if th

Re: [MENTORS] SVN account for Chema?

2012-12-07 Thread Greg Reddin
Sorry I haven't been paying enough attention :-) I'll get to it this afternoon Central Time. Thanks, Greg On Fri, Dec 7, 2012 at 11:37 AM, Alex Harui wrote: > Hi Mentors, > > Can you set up Chema on SVN? > > Other new committers, I assume you have your SVN access working? > > Thanks, > -- > Al

Re: [MENTORS] SVN account for Chema?

2012-12-07 Thread Chema Balsas
My apache id is jbalsas, just in case ;) Thanks! Cheers, Chema 2012/12/7 Alex Harui > Hi Mentors, > > Can you set up Chema on SVN? > > Other new committers, I assume you have your SVN access working? > > Thanks, > -- > Alex Harui > Flex SDK Team > Adobe Systems, Inc. > http://blogs.adobe.com/a

Re: Falcon SDKSWCTests

2012-12-07 Thread Chema Balsas
Yes, I already have it and it's working. I've accessed my account through ssh to verify it and I've also checked, and I have access to the apache commiters repository, but not ours. 2012/12/7 Alex Harui > > > > On 12/7/12 9:22 AM, "Chema Balsas" wrote: > > > Oh, that explains it then... and how

Re: Falcon SDKSWCTests

2012-12-07 Thread Alex Harui
On 12/7/12 9:22 AM, "Chema Balsas" wrote: > Oh, that explains it then... and how unfortunate > > From Gordon's comment, I assumed we were going to stop including the > version.properties file (at least for now). That was exactly what I was > about to commit, but it seems I still don't have ac

[MENTORS] SVN account for Chema?

2012-12-07 Thread Alex Harui
Hi Mentors, Can you set up Chema on SVN? Other new committers, I assume you have your SVN access working? Thanks, -- Alex Harui Flex SDK Team Adobe Systems, Inc. http://blogs.adobe.com/aharui

Re: Falcon SDKSWCTests

2012-12-07 Thread Chema Balsas
Oh, that explains it then... and how unfortunate >From Gordon's comment, I assumed we were going to stop including the version.properties file (at least for now). That was exactly what I was about to commit, but it seems I still don't have access to the svn repository. I'm not that much into the

Re: Release build - another TLF issue

2012-12-07 Thread Frédéric THOMAS
Hi Carol, Reading back my last question, I guess it's not english at all, so I reformulate: All the commits you did yesterday on the charts are all there for them ? (I hope that's more understandable :-) - Fred -Message d'origine- From: Frédéric THOMAS Sent: Friday, December 07, 20

Re: Release build - another TLF issue

2012-12-07 Thread Frédéric THOMAS
In the future I suggest we do a full kit build before we branch for the release and fix up issues like this. Yep, and obviously, run the full test suite too. I'm working on all of these. Great, keep in touch pls as soon it's done. What you committed yesterday is all the chart tests they a

Re: Falcon SDKSWCTests

2012-12-07 Thread Alex Harui
On 12/7/12 8:07 AM, "Chema Balsas" wrote: > In the meantime, I noticed that spark.swc weights around 80kb more if > version.properties is not included which strikes me as quite odd... this > doesn't happen for rpc or spark_dmv. Is there a reason for this? Something > we should look into? Unfort

Re: [Falcon] LinkReport and LZMA compression

2012-12-07 Thread Michael Schmalle
Well there is a LZMACompressor.java in the org.apache.flex.swf.io package This note is also in the configuration class around the swf-version flag // swf version 13 is what shipped with player 11, and is the min version for // LZMA compression Mike Quoting João Fernandes : Hi, D

[Falcon] LinkReport and LZMA compression

2012-12-07 Thread João Fernandes
Hi, Does Falcon support LZMA compression? I'm currently optimizing our app and I've noticed that linkReport does mention an optimized size but since mxmlc doesn't use LZMA out of the box, I need to run zlib2lzma afterwards so it reduces the swf size even more but then, the values from the link rep

Re: Release build - another TLF issue

2012-12-07 Thread Carol Frampton
I'm working on all of these. In the future I suggest we do a full kit build before we branch for the release and fix up issues like this. As I said before I was working on the kit build a few weeks ago and I knew there were issues. Unfortunately I didn't get thru a full build before I got distra

Re: Falcon SDKSWCTests

2012-12-07 Thread Chema Balsas
Ok, I removed them from the compile targets. I seem to be having some issue with my svn access, so I'll commit the changes when that's solved. In the meantime, I noticed that spark.swc weights around 80kb more if version.properties is not included which strikes me as quite odd... this doesn't happ

Re: Release build - another TLF issue

2012-12-07 Thread Frédéric THOMAS
That's a problem running ant other.locales too : $ ant other.locales Buildfile: U:\sources\asf\flex\sdk\develop\build.xml other.locales: other.locales: bundles: [echo] Compiling frameworks/locale/da_DK/textLayout_rb.swc [compc] Chargement du fichier de configuration U:\sources\asf\flex

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Erik de Bruin
Mike, I'm trying to keep up, but you're going so fast I seem to be missing steps. Please ignore my 'duplicates' :-) The 'private' var declaration should look like this: /** * @private * @type {string} */ this._privateVar = '_do'; I agree on the whitespace certainly not being a priority, I'm

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Michael Schmalle
Quoting Erik de Bruin : Closer ;-) I'll list all my little nags, I hope I don't start to bore you or unnecessarily repeat myself. - I'm still seeing the public property from AS back instead of the private var in the constructor, without a @type annotation, but with a /* : type hint */ - the p

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Erik de Bruin
Closer ;-) I'll list all my little nags, I hope I don't start to bore you or unnecessarily repeat myself. - I'm still seeing the public property from AS back instead of the private var in the constructor, without a @type annotation, but with a /* : type hint */ - the private var seems to have gon

Re: [ASJS] Adjusting FalconJS output (no general discussion in this thread, please)

2012-12-07 Thread Michael Schmalle
Ok next iteration; - I'm working on the constructor block right now so that private var isn't showing up yet. - As far as I have seen that was the only lagging issue from the last post. Are the tags and stuff correct? //- JS CODE /*

  1   2   >