Re: Falcon SDKSWCTests

2012-12-14 Thread Chema Balsas
> > As a workaround, try adding "-locale=" to the compiler options for the > tests that compile the SWCs, with a TODO that it should not be necessary. That did fix the issue, at least temporarily. I'll add the TODO and a JIRA issue to track this, and go on fixing the rest of errors. Cheers, Chem

RE: Falcon SDKSWCTests

2012-12-14 Thread Gordon Smith
While driving home I realized what's probably causing the resource bundle problems. SDK SWCs like mx.swc get compiled for "no locale" (-locale=) because they're not supposed to have any resource bundles inside. The resource bundles go into other resource bundle SWCs like en_US/mx_rb.swc, which g

Re: Falcon SDKSWCTests

2012-12-14 Thread Chema Balsas
> > I'd like to fix these since they shouldn't be hard to fix. Fix them we will, then ;) Somehow is finding either the source code for the bundles on the > source path, or the compiled code for the bundles on the library path. This may have something to do with "addApplicationParentToSourcePa

RE: Falcon SDKSWCTests

2012-12-14 Thread Gordon Smith
I'm not sure what's going on with the resource bundle issue, but I don't think it's an example of Falcon being pickier. Somehow is finding either the source code for the bundles on the source path, or the compiled code for the bundles on the library path. > I see several "duplicated variables"

RE: Falcon tests

2012-12-14 Thread Gordon Smith
Yep, my fault. Sorry about that! - Gordon -Original Message- From: Gordon Smith Sent: Friday, December 14, 2012 4:57 PM To: flex-dev@incubator.apache.org Subject: RE: Falcon tests I have a feeling I may have updated the sdk trunk when I thought I was updating branches/develop. I'll try

Re: Falcon SDKSWCTests

2012-12-14 Thread Chema Balsas
Also, I've already fixed some warnings, but I'd like to ask before going and fix some more. We've already set to ignore DuplicateQNameInSourcePathProblem. Should we stick to ignore warnings, or try and fix them to end up with a cleaner/safer sdk code? For instance, I see several "duplicated variab

Re: Falcon SDKSWCTests

2012-12-14 Thread Chema Balsas
> > That's usually a configuration problem. Does the -source-path include > bundles/{locale}, and is -locale set to en_US ? You're right, that is the case. I was setting the locale, but the bundles folder is not in the source-path. How's that compc doesn't complain? Is this another place where Fa

RE: Falcon tests

2012-12-14 Thread Gordon Smith
I have a feeling I may have updated the sdk trunk when I thought I was updating branches/develop. I'll try the tests again. - Gordon -Original Message- From: Chema Balsas [mailto:jbal...@gmail.com] Sent: Friday, December 14, 2012 4:54 PM To: flex-dev@incubator.apache.org Subject: Re: Fa

New Falcon feature tests

2012-12-14 Thread Gordon Smith
Today I added Falcon feature tests for the /, /, and / tags, showing that these codegen properly. I also ddded Javadoc explaining how these tags differ from ordinary instance tags. Feature tests can now optionally compile against various Flex SWCs (rather than just playerglobal.swc) and can a

Re: Falcon tests

2012-12-14 Thread Chema Balsas
> > Do they pass for you? If a test doesn't pass, I'd like to @Ignore it until > it passes so that 'ant tests' has all passes. Yes, I only removed the @Ignore from the tests that did pass. The errors you show were indeed fixed in the sdk. I'll check to see what might be the problem, but they're c

RE: Falcon tests

2012-12-14 Thread Gordon Smith
> Do you mean sdk, which is copied to compiler/generated/dist/sdk? I'm not sure what you're asking. I'm talking about removing the copy.sdk that I added here in the build.xml for the compiler project. > You probably have to update the sdk (branch develop). I think he made some > sdk chan

[jira] [Commented] (FLEX-33285) unmarshall( ... ) uses duplicate value declarations

2012-12-14 Thread Chema Balsas (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33285?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13532839#comment-13532839 ] Chema Balsas commented on FLEX-33285: - This was fixed in http://svn.apache.org/viewvc

[jira] [Commented] (FLEX-33257) handlePropertyChangeEvents() uses duplicate events declarations

2012-12-14 Thread Chema Balsas (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13532822#comment-13532822 ] Chema Balsas commented on FLEX-33257: - This was fixed in http://svn.apache.org/viewvc

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
FYI, The design can create javascript at ANY leaf node. This is the way I designed it. I said bottom down, that is when compiling a compilation unit you would; visitor.visitCompilationUnit(compilationUnit); You could also go; visitor.visitIf(ifNode); It would only produce the javascript

Re: Apache Flex 4.9 RC 2

2012-12-14 Thread Alex Harui
I have checked in everything to the release4.9 branch that I think we need to get mustella to pass. I will do another run tonight, which I expect to go well. I'm actually running the mustella tests in the develop branch against a modified RC. To do so, set sdk.dir in the mustella/local.propertie

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Daniel Wasilewski
Maybe initial design of FalconJS was design for future Flex Builder in mind. I have seen some demo showing how cool will be to see changes on runtime without compiling a project, but it was done in AS3. BURM will definitely be the way to go in that case. But just wonder if both solutions can ac

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Daniel Wasilewski
I can see one adventage of BURM. When you have an IDE and you expect to see changes in runtime live. It will be always faster to go from particular leaf up to the root, just to update small chunk, instead traversing entire tree. But in a case when you just need to translate entire structure on

Re: Falcon tests

2012-12-14 Thread Cyrill Zadra
> @czadra: Thanks for making all the tests use a consistent way to find the > SDK. In your template-unittest.properties file, it seems like the four lines > for setting the properties shouldn't be commented out with #, since anybody > making a copy will have to uncomment these lines. Also, is th

RE: Falcon SDKSWCTests

2012-12-14 Thread Gordon Smith
That's usually a configuration problem. Does the -source-path include bundles/{locale}, and is -locale set to en_US ? - Gordon -Original Message- From: Chema Balsas [mailto:jbal...@gmail.com] Sent: Friday, December 14, 2012 1:23 PM To: flex-dev@incubator.apache.org Subject: Re: Falcon S

Falcon tests

2012-12-14 Thread Gordon Smith
@czadra: Thanks for making all the tests use a consistent way to find the SDK. In your template-unittest.properties file, it seems like the four lines for setting the properties shouldn't be commented out with #, since anybody making a copy will have to uncomment these lines. Also, is there any

Re: Apache Flex 4.9 RC 2

2012-12-14 Thread Justin Mclean
Hi, > 1. The build number was not set in RC2 when you build it. Thanks I'll check that out. > 2. apache.swc and experimental.swc were missing from the binary kit so I > added them. I'll also check if we missing any of the new locales. > 3. I add a java source and target of 1.6 to the compil

Re: Falcon SDKSWCTests

2012-12-14 Thread Chema Balsas
Right now there's one recurring error when trying to compile almost every missing swc. Error: Unable to resolve resource bundle 'core' > > [ResourceBundle("core")] > This happens for several bundles. I've been trying to figure out the reason, but this is still beyond my reach. It looks like Falco

RE: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Gordon Smith
Bernd Paradies may have had a different reason for using the BURM... I don't really know. - Gordon -Original Message- From: Michael Schmalle [mailto:apa...@teotigraphix.com] Sent: Friday, December 14, 2012 12:03 PM To: flex-dev@incubator.apache.org Subject: RE: [FalconJx] Prototype Acti

RE: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Thanks Gordon! The really answered a question I had and also explains why you didn't just use the ANTLR rewriter to create the tree or nodes during parsing. I really understand now. And as you said, a top down walk should work for what we have to do and it is quite maintainable. Which wil

RE: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Gordon Smith
I would be surprised if the BURM is faster than a simple top-down walk. The main advantage of using a BURM is that it allows for optimizations to be easily coded as alternate reductions with lower cost. Typically there are many difference sequences of bottom-up reductions that could be applied t

Re: Apache Flex 4.9 RC 2

2012-12-14 Thread Carol Frampton
Justin, I worked on the kit this morning. Here is where I am leaving it: 1. The build number was not set in RC2 when you build it. You can see this because the build number is not set in flex-sdk-description.xml (and there none of the Version.as files). See build/build_release.sh for how I di

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Sorry I meant the prototype is a "top down walker", bottom down dosn't make any sense. :) Mike Quoting Michael Schmalle : Quoting Alex Harui : We are definitely in prototype/research mode and different angles should be investigated. The key to the "Apache Way" is that if we have t

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Quoting Alex Harui : We are definitely in prototype/research mode and different angles should be investigated. The key to the "Apache Way" is that if we have to make choices in deciding what to ship, it should be done on technical merit. What context are you speaking from? compiler, js fra

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Alex Harui
On 12/14/12 10:04 AM, "Michael Schmalle" wrote: > > Quoting Alex Harui : > >> >> >> >> On 12/14/12 4:24 AM, "Erik de Bruin" wrote: >> >>> Dude, >>> >>> "goog" it is. >>> >>> I just needed a little pep-talk, I guess ;-) >> Right now, I'm trying to get FalconJS to compile an MXML file a

RE: Old Flex style and component explorers

2012-12-14 Thread Michelle Yaiser
Hi, There is a large amount of Flex related content that we have created and published over the years. I'm working on compiling a definitive list of the content and the Flex version it relates to. I will be working with legal to deal with any legal issues surrounding the CC license and contrib

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Quoting Alex Harui : On 12/14/12 4:24 AM, "Erik de Bruin" wrote: Dude, "goog" it is. I just needed a little pep-talk, I guess ;-) Right now, I'm trying to get FalconJS to compile an MXML file and output the goog stuff. That work got delayed because there were more distractions from th

Re: Old Flex style and component explorers

2012-12-14 Thread Alex Harui
These appear to be in Michelle Yaiser's territory. Hopefully she can help. On 12/14/12 1:35 AM, "Maxime Cowez" wrote: > The style explorer (your second link) has source code attached and it > appears to be under Creative Commons license: > > "You may freely duplicate, distribute, display and

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Alex Harui
On 12/14/12 4:24 AM, "Erik de Bruin" wrote: > Dude, > > "goog" it is. > > I just needed a little pep-talk, I guess ;-) Right now, I'm trying to get FalconJS to compile an MXML file and output the goog stuff. That work got delayed because there were more distractions from the 4.9 release tha

RE: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael A. Labriola
>Eriks point I think was he is trying to write some of the js side that isn't >for the time being going to be cross compiled. But as I see it, I don't think >there will be a reason to hand write a lot >because we could even create a >custom emitter that knows how to spit out our core js framewor

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Well exclamation points aside, I think my base concept is I just wanted to get a compiler ready to output whatever mashup we prescribe. I understand fully what you are saying, the end product is javascript and how we get there is all implementation details that for me as it stands are not a

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Kevin Newman
I understood Frank's approach as vanilla-js (ES5) - eg, no dependencies. JS is JS though - you can write Backbone.j models in Typescript, wrap jQuery based views in coffee script, and lay everything out using mustache with some Jangaroo games mixed in just for giggles. At the end of the day it

Re: Welcome Chema Balsas as Apache Flex Committer!

2012-12-14 Thread Chema Balsas
> > BTW You might want to add your name to this page: http://incubator.apache.org/flex/team.html Thanks! Done! ;)

Re: Flash Builder issues and 4.9 release candidate

2012-12-14 Thread Carol Frampton
On 12/14/12 10 :12AM, "Greg Reddin" wrote: >On Fri, Dec 14, 2012 at 1:24 AM, Justin Mclean >wrote: > >> - Flash Builder 4.6 and 4.7 not able to use the SDK if it compiled >>against >> Java 1.7 (on OSX not tested on windows) >> > >Could you set the compile target to create 1.6-compatible binarie

Re: Apache Flex 4.9 RC 2

2012-12-14 Thread Carol Frampton
Fix this. Author: cframpton Date: Fri Dec 14 15:04:19 2012 New Revision: 1421915 URL: http://svn.apache.org/viewvc?rev=1421915&view=rev Log: Add target to build textLayout_rb.swc. Modified: incubator/flex/sdk/branches/release4.9/frameworks/build_framework.xml On 12/14/12 9 :48AM, "Carol

Re: Apache Flex 4.9 RC 2

2012-12-14 Thread Carol Frampton
Another issue for the RC2 list is the the frameworks/build.xml file in the binary kit does not build cleanly. This file is build_framework.xml in the tree. spark_rb: [echo] Compiling frameworks/locale/en_US/spark_rb.swc [compc] Loading configuration file /Users/cframpto/Downloads/apache-

Re: Old Flex style and component explorers

2012-12-14 Thread João Fernandes
Nicholas, wasn't that the tour the flex app? http://www.adobe.com/devnet-archive/flex/tourdeflex/web/#

Re: Old Flex style and component explorers

2012-12-14 Thread Nicholas Kwiatkowski
I swear I saw a version of this that came out for 4.0/4.5 and showed off the spark components Let me look at my notes to see if I can find it again... -Nick On Thu, Dec 13, 2012 at 5:57 PM, Justin Mclean wrote: > Hi, > > I know we could make a new one ourselves, but how hard would it be to

Re: Flash Builder issues and 4.9 release candidate

2012-12-14 Thread Carol Frampton
On 12/14/12 2 :24AM, "Justin Mclean" wrote: >Hi, > >Currently with Apache Flex 4.9 RC2 we have teh following issues: >- Flash Builder 4.6 and 4.7 not able to use the SDK if it compiled >against Java 1.7 (on OSX not tested on windows) >- Flash Builder 4.7 not recognising Apache Flex 4.9 RC I us

Re: Apache Flex 4.9 RC 2

2012-12-14 Thread Carol Frampton
On 12/13/12 4 :16PM, "Justin Mclean" wrote: >Hi, > >It looking to me that we're unable to support Java7 compiled version of >the SDK when using FB 4.6/4.7 (on OSX at least). > >Can anyone confirm the same issue exist on Windows with RC 2? This morning I got back from the FB team: We have not

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Right, From my experience with compilers, I guessed that is what Google did. And it turns out that is what they did. So keep on your course Erik, nothing to worry about. Let's just get this thing rolling so #ApacheFlex #FalconJx tags are swimming in the Twitter atmosphere. ;-) I'm not t

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Erik de Bruin
> Ok, then not to worry, we can even tests this sooner than later to see > exactly what the closure compiler does with our namespaces. Taking the example AS -> JS we worked with last week, let me show you: //**==**=== AS CODE package

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Quoting Frank Wienberg : Hi Dan, just to get things straight, I am not working on a different implementation, but discussion with Erik and Mike trying to find the optimal JavaScript output format. In my current experiments, I am trying an approach without the "goog" library, which does not mea

[jira] [Issue Comment Deleted] (FLEX-33294) Apache Flex Mavenized SDK Generator rb.swc

2012-12-14 Thread Maximilien Wiktorowski (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33294?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Maximilien Wiktorowski updated FLEX-33294: -- Comment: was deleted (was: actually just use FileOutputStream is even a little

[jira] [Issue Comment Deleted] (FLEX-33294) Apache Flex Mavenized SDK Generator rb.swc

2012-12-14 Thread Maximilien Wiktorowski (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33294?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Maximilien Wiktorowski updated FLEX-33294: -- Comment: was deleted (was: hm, actually just do nothing also works, are you

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Frank Wienberg
Hi Dan, just to get things straight, I am not working on a different implementation, but discussion with Erik and Mike trying to find the optimal JavaScript output format. In my current experiments, I am trying an approach without the "goog" library, which does not mean you cannot use the Google C

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Daniel Wasilewski
Well, that's good news then :) On 12/14/2012 12:30 PM, Erik de Bruin wrote: 'goog' seems to be the reasonable way to go. I would be a bit concern about name-space implementation yet. org.apache.data.blah.foo is the major bottleneck. And currently not that different from haxe approach. Even after

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
So then logic says that if all of our stuff is in org.apache.flex, that will always be reduced, at least from my compiler experience that is how I would do it. Ok, then not to worry, we can even tests this sooner than later to see exactly what the closure compiler does with our namespaces

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Erik de Bruin
>> 'goog' seems to be the reasonable way to go. I would be a bit concern >> about name-space implementation yet. >> org.apache.data.blah.foo is the major bottleneck. And currently not that >> different from haxe approach. Even after closure compiler heavy lifting it >> is still >> a.b.c.d.e.f. It s

[jira] [Commented] (FLEX-33294) Apache Flex Mavenized SDK Generator rb.swc

2012-12-14 Thread Maximilien Wiktorowski (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33294?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13532270#comment-13532270 ] Maximilien Wiktorowski commented on FLEX-33294: --- hm, actually just do no

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Daniel Wasilewski
I don't know why I didn't show you this before. I have done some tests AS3 vs JS a while ago. Pretty much on the beginning of my journey with JS when started to investigate possibility of moving towards html5. http://www.flaemo.com/bixbite/ you can also review about 86 different specs collect

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Erik de Bruin
Dude, "goog" it is. I just needed a little pep-talk, I guess ;-) EdB On Fri, Dec 14, 2012 at 10:20 AM, Michael Schmalle wrote: > Erik, > > >> So, unless there's people out there that are willing to >> contribute to Alex's (and now my) approach to getting from AS to JS, >> my time is spend be

[jira] [Commented] (FLEX-33294) Apache Flex Mavenized SDK Generator rb.swc

2012-12-14 Thread Maximilien Wiktorowski (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33294?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13532267#comment-13532267 ] Maximilien Wiktorowski commented on FLEX-33294: --- actually just use FileOutpu

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Quoting Daniel Wasilewski : On 12/14/2012 11:49 AM, Michael Schmalle wrote: Isn't it the end of 2012 right now? ;-) Mike Nope, we have to survive end of the world first, then end of the world sales and then... :D Right, and the millions of other planets in the hundreds of galaxys we

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Daniel Wasilewski
On 12/14/2012 11:49 AM, Michael Schmalle wrote: Isn't it the end of 2012 right now? ;-) Mike Nope, we have to survive end of the world first, then end of the world sales and then... :D

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Quoting Daniel Wasilewski : Well, thanks for clarification. And I love you keep AST abstract as it should be :) Imagine in the future JS 2.0 will came out... Well any good design is not dependent on it's output. This design is no different, the only thing it's dependent on is it's AST stru

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Heh, Dan, what you said below I could agree with 100%. The only reason I am writing a cross compiler is for an RIA platform to stand on it, using the as you put it "RIA platform, reuse existing code base, don't dump the years of work, experience and effort." I will say this for the 4th

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Daniel Wasilewski
Well, thanks for clarification. And I love you keep AST abstract as it should be :) Imagine in the future JS 2.0 will came out... 'goog' seems to be the reasonable way to go. I would be a bit concern about name-space implementation yet. org.apache.data.blah.foo is the major bottleneck. And curr

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Daniel Wasilewski
I am with you Mike on this in 100%. If I can add something to it. I would rather thing of Falcon/ FalconJS being contributed to Apache as just a cool name. Code base? Does anybody do care these days of quality of it? If possible to investigate a better way of doing it, why not? Equation was

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Quoting Daniel Wasilewski : Hi guys, I've lost a track on the Falcon JS for a while, (busy freelancing to survive and pay my bills), but at time to time visiting the list. And don't quite understand the status. Is it like we have 3 different people working on their own/favourite implementa

Re: Flash Builder issues and 4.9 release candidate

2012-12-14 Thread Justin Mclean
Hi, > I think that we should at least support FB 4.6 and 4.7 with a Flex SDK > release. We should be able to support Java 1.6, but it's looking rather tricky to get FB to work with Java 1.7. For Java 1.7 it also looks like we'd need to provide instructions on modify the FB config (assuming it's

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Daniel Wasilewski
Hi guys, I've lost a track on the Falcon JS for a while, (busy freelancing to survive and pay my bills), but at time to time visiting the list. And don't quite understand the status. Is it like we have 3 different people working on their own/favourite implementation at the same time? I've see

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Hey, This is great to hear. I'm kind of a hard head myself. What we are doing is going against what the majority says is possible. I see petitions to kill the Flash Player, uninstall it from your browser stuff... You get where I am going with this? Ignorant developers associate ActionScri

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Chema Balsas
Hi Erik, I'm with Mike on this one. Lead and others will follow. I for one plan to stick around the compiler and mostly the JS generation. I've still to find the time to dive deep into your approach, but I'll be working on it for sure. You can definitely count me in. Cheers, Chema 2012/12/14 Mic

Re: Git@ASF news

2012-12-14 Thread Carlos Rovira
Hi Bertrand, that's great news! I'm with you that is better to wait until graduation. We'll have to wait a bit more but we're definitely on road! :) 2012/12/14 Bertrand Delacretaz > Hi, > > FYI, see http://apache.org/dev/writable-git for the current status of > writable Git infrastructure at

[jira] [Updated] (FLEX-33284) New Spark Components

2012-12-14 Thread Bogdan Dinu (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bogdan Dinu updated FLEX-33284: --- Attachment: NewSparkComponents.fxpl Spark components library project (exported from FB4.6)

[jira] [Updated] (FLEX-33284) New Spark Components

2012-12-14 Thread Bogdan Dinu (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bogdan Dinu updated FLEX-33284: --- Description: Please see ReadMe.txt inside the project's archive. Components inside : Alert (org.apac

[jira] [Updated] (FLEX-33284) New Spark Components

2012-12-14 Thread Bogdan Dinu (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bogdan Dinu updated FLEX-33284: --- Attachment: (was: SparkComponents.zip) > New Spark Components > > >

Re: Old Flex style and component explorers

2012-12-14 Thread Maxime Cowez
The style explorer (your second link) has source code attached and it appears to be under Creative Commons license: "You may freely duplicate, distribute, display and alter this application for both commercial and non-commercial uses, but you must include this attribution, as well as the links to

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Michael Schmalle
Erik, So, unless there's people out there that are willing to contribute to Alex's (and now my) approach to getting from AS to JS, my time is spend better helping out on another part of the project. Saying this kindof pisses me off. I just spent the last week writing a compiler that will all

Git@ASF news

2012-12-14 Thread Bertrand Delacretaz
Hi, FYI, see http://apache.org/dev/writable-git for the current status of writable Git infrastructure at the ASF - hope this clarifies things. The good news for Flex is that supplying volunteers to help infra with Git is not required anymore. I still think it's best to wait until after graduatio

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Erik de Bruin
I'm not sitting here feeling sorry for myself, I actually learned a lot setting up the current approach. I'm just wondering if it is worth my time to pursue this avenue when everyone else seems more interested in going in a (as far as I understand) completely different direction. Getting this "done

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Erik de Bruin
So, basically, nobody loves the "goog" approach I spend the last weeks working on (based mostly on feedback from the various discussion on the list). Or, let me rephrase, nobody cares enough to contribute to it? EdB On Fri, Dec 14, 2012 at 9:20 AM, Frank Wienberg wrote: > This is great news, M

Re: [FalconJx] Prototype ActionScript -> JavaScript compiler code up in svn

2012-12-14 Thread Frank Wienberg
This is great news, Mike! I will also try to dig into your code this weekend. In the meantime, I've been busy figuring out the "essence" of a new JavaScript runtime format that uses the principles described in my blog, but relies on RequireJS (not goog!) and ECMAScript 5 API, making it way more con

Re: Flash Builder issues and 4.9 release candidate

2012-12-14 Thread Om
I think that we should at least support FB 4.6 and 4.7 with a Flex SDK release. We don't know if this would work with any other IDE. This version of the SDK would be pretty much useless if we don't support FB. Thanks, Om On Dec 13, 2012 11:25 PM, "Justin Mclean" wrote: > Hi, > > Currently with