Re: AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Carlos Rovira
That sounds to be the problem ( as well making 2 builds js+swf at a time) 2016-10-05 1:23 GMT+02:00 Alex Harui : > > > On 10/4/16, 2:04 PM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" > > wrote: > > >Right now, I have maven build as well VSCode/NextGenAS IDE build. Maven is > >more slow

Re: AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Alex Harui
On 10/4/16, 2:04 PM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >Right now, I have maven build as well VSCode/NextGenAS IDE build. Maven is >more slow that Josh's (40 sec vs 5 sec for a hello world), I suppose this >is due to lots of checks maven do. Maybe do you have some conf

Re: AW: AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Alex Harui
On 10/4/16, 1:45 PM, "Christofer Dutz" wrote: > > >Thanks for fixing it. I hope it helped get a little insight on how maven >works and that it helps getting comfortable with it. Yes, it helped me learn a bit more about Maven. > > >One thing though ... if the output is set to a file it adds th

Re: [FlexJS][0.8.0] Binding issue on swf side

2016-10-04 Thread Alex Harui
On 10/4/16, 2:03 PM, "OK" wrote: >Hi Greg, > > >Greg Dove wrote >> I suspect it might work with ViewDataBinding but perhaps not the other >> Binding types yet. > >Hmmm, I've just tested it and it seems to me that's the same behaviour >with >ViewDataBinding: >Public works, private not. I'm look

Re: [FlexJS][Maven] Passing parameters to compiler

2016-10-04 Thread Carlos Rovira
Hi Chris, I created the first, let me know if you want something to be changed before I created another one. FLEX-35138 - Implement flexjs maven compiler option for html-template thanks! Carlos 2016-10-04 23:36 GMT+02:00 Christofer Dutz : >

AW: AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Christofer Dutz
Well I'm planning on starting to setup an integration test suite which will contain lots of separate Maven projects. If we can dramatically reduce the time, this would be huge. And the build time of the Maven build seems to be a lot faster than the ant build. So if there is a way to speed up thi

AW: [FlexJS][Maven] Passing parameters to compiler

2016-10-04 Thread Christofer Dutz
Hi Carlos, if you encounter any compiler-options you would like me to implement, could you please create Jira issues for each one (separate ones) and use the component "Maven Flex Plugin" and assign that to me. What would be a great help would be if you add information on which of the comman

AW: [FlexJS][Maven] Passing parameters to compiler

2016-10-04 Thread Christofer Dutz
Hi Carlos, Up till now I only added those parameters that I needed in the conversion from ant to Maven. Guess that is a pretty new option and I would need to add it. But it should be easy to add it. I'll look into this tomorrow. Chris Von meinem Samsung Galaxy Smartphone gesendet. --

[FlexJS][Maven] Passing parameters to compiler

2016-10-04 Thread Carlos Rovira
Hi Chris, I want to pass params to flexjs compiler when building with maven. For example: param : "html-template" value: "templates/js-index-template.html" (in order to customize the index.html) or another like "js-output-optimization=skipAsCoercions" What's the way to make this in the my pro

Re: [FlexJS][0.8.0] Binding issue on swf side

2016-10-04 Thread OK
Hi Greg, Greg Dove wrote > I suspect it might work with ViewDataBinding but perhaps not the other > Binding types yet. Hmmm, I've just tested it and it seems to me that's the same behaviour with ViewDataBinding: Public works, private not. Greg Dove wrote > I can work on this by early next week

Re: AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Carlos Rovira
This is so cool Chris, thanks for the great effort, I know the cost and how hard is to get to this point, but you got it! :) Right now, I have maven build as well VSCode/NextGenAS IDE build. Maven is more slow that Josh's (40 sec vs 5 sec for a hello world), I suppose this is due to lots of checks

AW: AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Christofer Dutz
Yup ... I just came back home and had a look at the changes. All seems to be a-ok :-) Thanks for fixing it. I hope it helped get a little insight on how maven works and that it helps getting comfortable with it. One thing though ... if the output is set to a file it adds the js output insid

Re: AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Carlos Rovira
Amazing!, it works Alex. Thanks! I finaly could build my flexjs test project generated with the archetype and run it :) So for me this is a huge milestone for flexjs :D 2016-10-04 20:11 GMT+02:00 Alex Harui : > OK, I think I got it working! > > I've pushed the changes in both repos. The Ma

Re: [FlexJS][0.8.0] Binding issue on swf side

2016-10-04 Thread Greg Dove
I suspect it might work with ViewDataBinding but perhaps not the other Binding types yet. If so, it should be a relatively simple fix. I can work on this by early next week if no-one else gets to it first. -Greg [sent from my phone] On 5/10/2016 7:54 AM, "OK" wrote: > This is JIRA: > https://is

Re: [FlexJS][0.8.0] Binding issue on swf side

2016-10-04 Thread OK
This is JIRA: https://issues.apache.org/jira/browse/FLEX-35137 Thanks, Olaf -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-0-8-0-Binding-issue-on-swf-side-tp55563p55575.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Alex Harui
OK, I think I got it working! I've pushed the changes in both repos. The Maven builds worked locally for me. We'll see how it goes on builds@ Thanks for the pointers. -Alex On 10/4/16, 11:04 AM, "Christofer Dutz" wrote: >Just build the plugin module (go into the plugin directory and do a "mv

AW: AW: AW: AW: Jenkins still red

2016-10-04 Thread Christofer Dutz
Just build the plugin module (go into the plugin directory and do a "mvn clean install") or do a "mvn clean install" of the complete compiler project. Chris Von meinem Samsung Galaxy Smartphone gesendet. Ursprüngliche Nachricht Von: Alex Harui Datum: 04.10.16 19:00 (GMT+01:

Re: [FlexJS][0.8.0] Binding issue on swf side

2016-10-04 Thread OK
PKumar wrote > Just try once making your private variable to public. [Bindable] with > Private variable is not working properly. You're right, making it public works! Many thanks! Olaf -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-0-8-0-Binding

Re: [FlexJS][0.8.0] Binding issue on swf side

2016-10-04 Thread PKumar
Just try once making your private variable to public. [Bindable] with Private variable is not working properly. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-0-8-0-Binding-issue-on-swf-side-tp55563p55571.html Sent from the Apache Flex Development

Re: AW: AW: AW: Jenkins still red

2016-10-04 Thread Alex Harui
On 10/4/16, 9:52 AM, "Christofer Dutz" wrote: >Well you could override it in the pom, but I don't think that I do that. >It should always be the default defines in the mojo. I only expose config >options to customize, the default should apply in most cases, especially >the framework build. OK.

Re: AW: AW: Jenkins still red

2016-10-04 Thread Alex Harui
On 10/4/16, 9:42 AM, "Alex Harui" wrote: > >It looks like the pom.xml files specify the output as well. Can you >quickly answer if the pom.xml overrides the getOutput in CompileJSMojo? Wait, never mind. I didn't see it in the pom it was in the generated compile-js-config.xml. I'll figure it

AW: AW: AW: Jenkins still red

2016-10-04 Thread Christofer Dutz
Well you could override it in the pom, but I don't think that I do that. It should always be the default defines in the mojo. I only expose config options to customize, the default should apply in most cases, especially the framework build. Chris Von meinem Samsung Galaxy Smartphone gesendet

Re: AW: AW: Jenkins still red

2016-10-04 Thread Alex Harui
On 10/4/16, 9:13 AM, "Christofer Dutz" wrote: >Hi Alex, > > >I noticed how late it must have been at your end after sending my mail. >So sorry for that. > >I guess I'm just totally frustrated, that I keep on cleaning up stuff, >and as soon as it's done I have to start again. IMO, your goal sho

AW: AW: Jenkins still red

2016-10-04 Thread Christofer Dutz
Hi Alex, I noticed how late it must have been at your end after sending my mail. So sorry for that. I guess I'm just totally frustrated, that I keep on cleaning up stuff, and as soon as it's done I have to start again. Well the pointers you will probably be needing is the components.xml file

Re: Unable to download 4.14.1 SDK using the Apache Flex SDK Installer

2016-10-04 Thread Clint M
Yep... works. Thank you. On Mon, Oct 3, 2016 at 11:37 PM, Alex Harui wrote: > > > On 10/3/16, 4:14 PM, "Justin Mclean" wrote: > > >Hi, > > > >> Bit of a strange one... I just tried to download 4.14.1 and AIR 17 and > >>the agreements screen comes up blank. When I click continue the install > >>

Re: AW: Jenkins still red

2016-10-04 Thread Alex Harui
On 10/4/16, 3:22 AM, "Christofer Dutz" wrote: >Hi Alex, > > >as you seem to be responding to everything else I guess you missed my >asking you to rollback your changes and move them to a feature branch. >Are you going to revert > >b8d8c48b11f41ea435eefafc94eb0927229e8a4b > >It's ok that it "sli

[FlexJS][0.8.0] Binding issue on swf side

2016-10-04 Thread OK
Hi, regarding data binding Alex and Greg said some things were changed and will change with 0.8.0 and so sometimes I stumbled over some issues with data binding. Probably there're not so many issues anymore with 0.8.0 but my less knowledge of FlexJS paired with different issues on different 'SDK' v

Re: Understanding CSS in FlexJS

2016-10-04 Thread Carlos Rovira
I think it'd be in English this time ;) El martes, 4 de octubre de 2016, OK escribió: > Carlos Rovira wrote > > I think I'll make some POC post (maybe on madeinflex.com or something) > as > > I get a bit more knowledge > > Looking forward to it! I've tried to learn some spanish in the past but

Re: Understanding CSS in FlexJS

2016-10-04 Thread OK
Carlos Rovira wrote > I think I'll make some POC post (maybe on madeinflex.com or something) as > I get a bit more knowledge Looking forward to it! I've tried to learn some spanish in the past but it would be great if you could do it in english ;-) Thanks, Olaf -- View this message in contex

Re: Understanding CSS in FlexJS

2016-10-04 Thread Carlos Rovira
I think we should have both, but agree that if we start to making some starting articles for people coming to FlexJS with short things (like blog.flexexamples.com), it'll help a lot making people taking this train (and making potential contributions and use of flexjs). I think I'll make some POC po

RE: Current FlexJS license/notice issues

2016-10-04 Thread Kessler CTR Mark J
IMHO if their project is licensed and their individual files are not licensed it's a non-issue at least as that is concerned. If what was said was true about just using a snippet and I'm understanding this thread correctly, then let's give them a attribution / reference back to the source and c

AW: Jenkins still red

2016-10-04 Thread Christofer Dutz
Hi Alex, as you seem to be responding to everything else I guess you missed my asking you to rollback your changes and move them to a feature branch. Are you going to revert b8d8c48b11f41ea435eefafc94eb0927229e8a4b It's ok that it "slipped out accidentally", but it's not ok to keep things br

Re: Understanding CSS in FlexJS

2016-10-04 Thread OK
Alex Harui wrote >>A side from this, I think it could be good to make something similar to >>blog.flexexamples.com for flexjs, I think I could try something about this >>as I get more skilled on the possiblities. > > I'd rather start a tour-de-flexjs. >From my point of view it would be a great if

AW: Current FlexJS license/notice issues

2016-10-04 Thread Christofer Dutz
+1 to let Justin proceed as he suggested. Chris Von: Alex Harui Gesendet: Dienstag, 4. Oktober 2016 09:21:22 An: dev@flex.apache.org Betreff: Re: Current FlexJS license/notice issues On 10/3/16, 3:30 PM, "Justin Mclean" wrote: >Hi, > >> But if you are going

Re: Current FlexJS license/notice issues

2016-10-04 Thread Alex Harui
On 10/3/16, 3:30 PM, "Justin Mclean" wrote: >Hi, > >> But if you are going to do something, it should be what is recommended > >I am doing what is recommend by policy and consensus on legal discuss. Roy says we can distribute the work if there are missing headers so there must not be a policy