RE: What is x and y? What is width and height?

2018-02-07 Thread Yishay Weiss
How about using beads that implement IPositionCalculator. UIBase won’t return x and y directly but use a bead to calculate them. The default SimplePositionCalculatorBead would return x and y based on the setter while the ScreenPositionCalculatorBead would return the values based on DOM access.

Jenkins build is back to normal : royale-asjs_jsonly #268

2018-02-07 Thread apacheroyaleci
See

Build failed in Jenkins: royale-asjs_jsonly #267

2018-02-07 Thread apacheroyaleci
See Changes: [aharui] point to update pages [aharui] try using profiles to rename version in branches [aharui] [maven-release-plugin] prepare branch release/0.9.1 [aharui]

Re: [apache/flex-site] "update md5s" (565cff8)

2018-02-07 Thread Alex Harui
Good question. I just update the wiki page to describe how I do it. https://cwiki.apache.org/confluence/display/FLEX/MD5Checker+Instruction+Manual HTH, -Alex From: Piotr Zarzycki > Reply-To: apache/flex-site

Re: Different results for compilation Error in JS and SWF compilation

2018-02-07 Thread Alex Harui
On 2/7/18, 2:18 AM, "Andrew Wetmore" wrote: >Ooh, do I get to "+1"?? Everyone on this mailing list gets a vote. Only those on the Project Management Committee get "binding" votes that really matter, but the PMC is supposed to consider non-binding votes in their vote. If

Re: JSON Objects renaming (was Re: ASDoc, Routing, Releases)

2018-02-07 Thread Alex Harui
Two more thoughts on this utility. I think you create a UID for each child class. I think the UID can consist of the sorted property values and their types so for the snippet below the UID would be: "baseClassname:String;description:String;members:Array;qname:String;tags:Ar ray;type:String;"

Re: What is x and y? What is width and height?

2018-02-07 Thread Alex Harui
Hmm. Maybe we need to understand the circumstances. It makes no sense to me to have x,y return useless values just because it is easy or fast to do. The main point is that in the HTML/JS/CSS world there is no x,y values so we can make them do anything we want, but do we want it to work like

Re: What is x and y? What is width and height?

2018-02-07 Thread Piotr Zarzycki
Can you post into the separate thread if it's even possible any of those case ? 2018-02-07 17:36 GMT+01:00 Gabe Harbs : > Yes. Flexbox solves a lot of problems, and I use the “flex” layouts pretty > extensively. > > However, I have run into lots of cases which are hard to

Re: What is x and y? What is width and height?

2018-02-07 Thread Gabe Harbs
Yes. Flexbox solves a lot of problems, and I use the “flex” layouts pretty extensively. However, I have run into lots of cases which are hard to solve and the old Flex-style layouts would have been helpful. > On Feb 7, 2018, at 6:34 PM, Piotr Zarzycki wrote: > >

Re: What is x and y? What is width and height?

2018-02-07 Thread Piotr Zarzycki
Lately I had huge exercises with FlexBox mechanism and it is finally something. I have never seen better working things in HTML than this. If I wanted to make elements on the right they are really displays on the right. - Without FlexBox I would be nowhere. Maybe it is not the answer for the

Re: What is x and y? What is width and height?

2018-02-07 Thread Gabe Harbs
FWIW, I do think we need a “constrained layout” which places *everything* absolutely and does not rely on browser layout. If that layout were to be used, the bounding box values would be correct. > On Feb 7, 2018, at 6:00 PM, Peter Ent wrote: > > I think I agree with

Re: What is x and y? What is width and height?

2018-02-07 Thread Peter Ent
I think I agree with Harbs about x,y,width,height just returning the set values if the calculation would be expensive. I wonder what the circumstances are that we actually need to have precise values in calculations. For example, if I wanted to make a circulate layout, how would I go about doing

Re: What is x and y? What is width and height?

2018-02-07 Thread Gabe Harbs
The offset values are very expensive. They are also not completely accurate. I’ve found it’s difficult to get accurate values where SVG and transforms are in play. I would suggest that x,y,widht and height should reflect *set* values even if they are not always the actual ones. For cases

Re: [MAVEN-BUILD] Royale-compiler - Build # 185 - Still Failing

2018-02-07 Thread Piotr Zarzycki
Jira raised: https://issues.apache.org/jira/browse/INFRA-15999 2018-02-07 9:50 GMT+01:00 Alex Harui : > No, just send email to builds@. > > On 2/7/18, 12:45 AM, "Piotr Zarzycki" wrote: > > >Did you fill a jira ? > > > >2018-02-07 9:43

Re: Different results for compilation Error in JS and SWF compilation

2018-02-07 Thread Andrew Wetmore
Ooh, do I get to "+1"?? Yes, pushing the documentation from the development branch is a good idea. On Wed, Feb 7, 2018 at 3:35 AM, Alex Harui wrote: > This should be fixed in the nightly builds. > > This is the last thing I wanted to get done before cutting this

Re: [MAVEN-BUILD] Royale-compiler - Build # 185 - Still Failing

2018-02-07 Thread Alex Harui
No, just send email to builds@. On 2/7/18, 12:45 AM, "Piotr Zarzycki" wrote: >Did you fill a jira ? > >2018-02-07 9:43 GMT+01:00 Alex Harui : > >> I asked Infra a couple of days ago. No response yet. Feel free to bug >> them again. >> >>

Re: [MAVEN-BUILD] Royale-compiler - Build # 185 - Still Failing

2018-02-07 Thread Piotr Zarzycki
Did you fill a jira ? 2018-02-07 9:43 GMT+01:00 Alex Harui : > I asked Infra a couple of days ago. No response yet. Feel free to bug > them again. > > -Alex > > On 2/7/18, 12:13 AM, "Piotr Zarzycki" wrote: > > >I just fixed notifications.

Re: Different results for compilation Error in JS and SWF compilation

2018-02-07 Thread Piotr Zarzycki
Let's move with release. Thanks for fixing it! 2018-02-07 8:35 GMT+01:00 Alex Harui : > This should be fixed in the nightly builds. > > This is the last thing I wanted to get done before cutting this release. > When I start my day tomorrow I will start the process. > >

Re: [MAVEN-BUILD] Royale-compiler - Build # 185 - Still Failing

2018-02-07 Thread Alex Harui
I asked Infra a couple of days ago. No response yet. Feel free to bug them again. -Alex On 2/7/18, 12:13 AM, "Piotr Zarzycki" wrote: >I just fixed notifications. It looks like Compiler is failing for several >days now. Should we notify infra cause it looks like

What is x and y? What is width and height?

2018-02-07 Thread Alex Harui
Hi, In Royale on JS, we are trying to leverage the browser's layout code as much as possible. We only run our own layout code in a few places. In debugging a few layout issues I discovered that UIBase is not reporting x and y the way we expect it from Flex/Flash. Browser elements don't have x

Re: [MAVEN-BUILD] Royale-compiler - Build # 185 - Still Failing

2018-02-07 Thread Piotr Zarzycki
I just fixed notifications. It looks like Compiler is failing for several days now. Should we notify infra cause it looks like problem is with deploy artifacts. 2018-02-07 9:10 GMT+01:00 Apache Jenkins Server : > The Apache Jenkins build system has built