Re: MD5 checker Jenkins job

2017-05-01 Thread Alex Harui
On 4/30/17, 7:44 AM, "Christofer Dutz" wrote: >Hi Gyus, > >I guess the reason is that the default Ant job tries to read the file >into memory. This isn’t needed in order to calculate the md5 hash … If >the target used a streaming implementation, it should work with a

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Alex Harui
On 5/1/17, 3:30 PM, "Greg Dove" wrote: >Thanks Alex, I can see it in the swc, so I'm not sure what is causing the >issue. >I will have to revert and use the pre-dual code today, but will come back >to it in two days to try to figure it out again, after an imminent

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Greg Dove
Thanks Alex, I can see it in the swc, so I'm not sure what is causing the issue. I will have to revert and use the pre-dual code today, but will come back to it in two days to try to figure it out again, after an imminent deadline that I need to focus on. On Tue, May 2, 2017 at 8:41 AM, Alex

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Alex Harui
On 5/1/17, 1:33 PM, "Greg Dove" wrote: >Just as a quick follow-up (in case anyone else is looking for the same) > >adding: >js >to all the swc dependencies in the pom meant I could compile the js-only >project. JS alone was not enough. > >However I am seeing some runtime

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Greg Dove
Just as a quick follow-up (in case anyone else is looking for the same) adding: js to all the swc dependencies in the pom meant I could compile the js-only project. JS alone was not enough. However I am seeing some runtime errors with things like base.js:628 goog.require could not find:

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Alex Harui
On 5/1/17, 10:19 AM, "Greg Dove" wrote: > >btw I think : >true > >is presumably redundant in any pom.xml now, Yes, I'm pretty sure those can be removed. Volunteers are welcome to do that. I'm still chasing down other issues. Thanks, -Alex

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread OmPrakash Muppirala
flex-falcon and flex-typedefs built fine for me. The flex-asjs build is broken for me on the Fonts project. Here is the relevant log: https://paste.apache.org/kATQ Can someone please take a look? Thanks, Om On Mon, May 1, 2017 at 11:50 AM, OmPrakash Muppirala wrote: >

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread OmPrakash Muppirala
For folks who want to help out but are not sure how to, please follow the step by step instructions here on how to build the FlexJS SDK from the sources: https://cwiki.apache.org/confluence/display/FLEX/Building+FlexJS+with+Maven Thanks, Om On Mon, May 1, 2017 at 10:19 AM, Greg Dove

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Greg Dove
Thanks Alex, This helps JS Still some stuff left to figure out, but that is progress. Pretty sure that falls into "I am hoping there is something simple that I didn't see" - thanks again. btw I think : true is presumably redundant in any pom.xml now, including that example. My reason for

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Alex Harui
I believe examples/native/ButtonExample only produces JS output. -Alex On 5/1/17, 9:11 AM, "Greg Dove" wrote: >Chris, or perhaps Alex: >With the latest changes for maven, I am trying to figure out how to get >the >same result with maven as >true > >which previously

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Christofer Dutz
Hi Greg, I must admit that I currently don’t quite know the changes Alex did. It seems the normal build scenarios inside the framework still seem to work, but I can’t tell about any of the others. But I think it should be easy to provide the functionality you are looking for as soon as Alex

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Greg Dove
Chris, or perhaps Alex: With the latest changes for maven, I am trying to figure out how to get the same result with maven as true which previously permitted js-only compilation so that COMPILE::JS was not needed in js-only target project, and it was possible to use, for example, var

Re: [FlexJS] Layout Issue/Change

2017-05-01 Thread Alex Harui
Without having looked at every layout, it does make sense to me that LayoutBase should not need to watch children for size changes on the JS side. That's because the browser already has installed those listeners and will re-calculate the layout as needed. The SWF-side will continue to need to

Re: [FlexJS, MDL] Null Pointer Exception in HorizontalFlexLayout

2017-05-01 Thread Peter Ent
OK. I will look at the other layouts and probably do the same for them where it makes sense. On 5/1/17, 10:06 AM, "piotrz" wrote: >Thank you Peter. That helped. I was thinking about such solution, but >wasn't >sure whether it won't break anything. If I'm thinking more

Re: [FlexJS] Layout Issue/Change

2017-05-01 Thread Peter Ent
The current listeners in LayoutBase (Basic Project) are for the children of a component. Right now, if you have a Group with 10 buttons and VerticalLayout, and you resize one of those buttons, LayoutBase/VerticalLayout will detect that and automatically re-run the VerticalLayout algorithm. What I

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Christofer Dutz
But in general, “mvn clean compile” should have worked. I even double checked with the debugger … if the other modules are part of the build it would acutally resolve the artifacts from the target directories instead of from the maven local repo … I’ll continue investigating this. Chris Am

Re: [FlexJS] Layout Issue/Change

2017-05-01 Thread piotrz
Hi Peter, It look like we have partially implemented "layoutNeeded". Your suggestion in #1 - is to completely remove current listeners which are dispatch "layoutNeeded". - Am I understand correctly ? - So if I will add children later - those will resize itself, but in order to correct parent

Re: [FlexJS, MDL] Null Pointer Exception in HorizontalFlexLayout

2017-05-01 Thread piotrz
Thank you Peter. That helped. I was thinking about such solution, but wasn't sure whether it won't break anything. If I'm thinking more about that it makes sense do not bother non UIBase component here. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context:

[FlexJS] Layout Issue/Change

2017-05-01 Thread Peter Ent
Hi, My main goal of the recent set of changes to containers and layouts was to make the HTML/CSS/JS side as minimal as possible, letting the browser and friends take care of things as much as possible. For the most part, I think it works. But there is an issue that has been bothering me.

Re: [FlexJS, MDL] Null Pointer Exception in HorizontalFlexLayout

2017-05-01 Thread Peter Ent
Hi Piotr, I mostly understand. It seems like the child is not UIBase so it is null, at least in one of the cases. The layout code should be changed to check for null and skip that child. Can you see if that helps? ‹peter On 5/1/17, 8:35 AM, "piotrz" wrote: >Hi

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Christofer Dutz
Well you could try deleting “{maven-local-repo-dir}/.cache” directory as this is where the maven-download-plugin downloads and caches downloads. Chris Am 01.05.17, 07:19 schrieb "Justin Mclean" : Hi, > What commands did you try? mvn clean

[FlexJS, MDL] Null Pointer Exception in HorizontalFlexLayout

2017-05-01 Thread piotrz
Hi Peter, During creation of DropDownList component in MDL I have experienced Null Pointer Exception in HorizontalFlexLayout. [1] Issue: My DropDownList contains 3 elements: Div with selected text, Material icon (i) and Menu. Case 1: If I create DropDownList in MXML - MDL library handle

[FlexJS, MDL] DropDownList component

2017-05-01 Thread piotrz
Hi, I just added to MDL library DropDownList component. It utilize existing Menu and use material icon MaterialIconType.ARROW_DROP_DOWN as drop down arrow. MDLExample project has been updated with usage of this component [1] and you can check it live [2] it's last tab: Drop Down List. During

Re: [LAST CALL] Release FlexJS/FalconJX 0.8.0

2017-05-01 Thread Alex Harui
New Update: By deleting the Core folder in my local Maven repo, I was able get a different error, which I think I fixed in this latest commit. We'll see if it fixes the CI server as well. -Alex On 4/30/17, 10:59 PM, "Alex Harui" wrote: >Update: I had to figure out how to