Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-11-09 Thread Harbs
OK. This approach is different than the approach I started on, but it could be workable. I was going down the road where there would be a set of single new classes which would proxy to XML and Document in Flash and HTML respectively. You are suggesting we stick with XML and XMLList for Flash an

Re: [FlexJS] Back port

2015-11-09 Thread Alex Harui
FWIW, I wrote down some hopefully useful concepts about the back port here [1] [1] https://cwiki.apache.org/confluence/display/FLEX/FlexJS+Component+Source+Co de+Patterns On 11/9/15, 1:12 PM, "Harbs" wrote: >Well, I’d be interested in your findings. > >If operator definitions is possible .. wi

Re: Events/Conferences on Apache Flex

2015-11-09 Thread Rudolf Schnetler
I would suggest topics: 1. Flex and tools (FB/IdeaJ/other) - what are still supported, going to be supported in future 2. FlexJS and tools - build environment, documentation, examples 3. Community - involvement : what are critically needed, important, nice to have, documen

Re: Events/Conferences on Apache Flex

2015-11-09 Thread Alex Harui
Any suggestions on format? Just a Q&A or seminars on various topics? If the latter, which topics? Thanks, -Alex On 11/9/15, 9:19 PM, "Fabrice Montfort" wrote: >I confirm, online events would be a real comfort. I live on the Reunion >island and i'm very interested by Flex (AS) and FlexJS and M

RE: Events/Conferences on Apache Flex

2015-11-09 Thread Sugan Naicker
Hi, I live in South Africa and use Flex for Mobile and Desktop apps. Having online events would be great! I am also looking at migrating to FlexJS. Rgs, Sugan -Original Message- From: Fabrice Montfort [mailto:f...@runware.com] Sent: Tuesday, November 10, 2015 7:20 AM To: dev@flex.apa

Re: Events/Conferences on Apache Flex

2015-11-09 Thread Fabrice Montfort
I confirm, online events would be a real comfort. I live on the Reunion island and i'm very interested by Flex (AS) and FlexJS and Maven. We use Flex (AS) for our mobile applications. And i would like to install and use Maven for our production line. Any advice will be very useful to me. Regards,

Re: Events/Conferences on Apache Flex

2015-11-09 Thread Rudolf Schnetler
+1 for online event. I am in Townsville Australia. Regards Rudolf Schnetler On Tue, Nov 10, 2015 at 11:04 AM, Virginia Westwood < ad...@proteatextware.com> wrote: > Yes, an online event would be excellent. I am in Broome, Australia. > > _

Re: Events/Conferences on Apache Flex

2015-11-09 Thread OmPrakash Muppirala
There was ApacheCon Europe last month where there was a whole track dedicated to Apache Flex [1] There is going to be an ApacheCon 2016 in Vancouver, Canada [2] I think we might have something similar there as well. I think it will be easier for Alex to travel as well ;-) +1 for an online only e

Re: [DISCUSS] Discuss Release Apache Flex FalconJX 0.5.0 RC1

2015-11-09 Thread Alex Harui
OK, thanks for looking through it. I pushed some changes and started build #681. It might be a bit hard to follow the NOTICE changes because I changed my mind a few times but I think the net is that: 1) I switched back to using the default NOTICE from the repo as the NOTICE for FalconJX. This s

RE: Events/Conferences on Apache Flex

2015-11-09 Thread Virginia Westwood
Yes, an online event would be excellent. I am in Broome, Australia. __ Virginia Westwood Protea Textware Pty Ltd ABN 72 077 575 047 PO Box 8480 Broome WA 6725 Australia p: (+61 8)/(08) 9192 8390 m: (+61 4)/(04) 0897 1446 w: http://www.pr

[FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-11-09 Thread Alex Harui
Renaming the thread On 11/9/15, 1:12 PM, "Harbs" wrote: >Well, I’d be interested in your findings. > >If operator definitions is possible .. will be easier than . operators. >If we allow single dot operators, it will be difficult to differentiate >between E4X syntax and function calls. I’d reall

Re: [DISCUSS] Discuss Release Apache Flex FalconJX 0.5.0 RC1

2015-11-09 Thread Justin Mclean
Hi, Here’s the issues I currently see with the binary releases (taken form this nightly build) [16] For apache-flex-falconjx-0.5.0-bin: - NOTICE is missing original developer - NOTICE is missing parts from NOTICE contained in [1] + others (i.e. the original developer of the bundled software). E

Re: [FlexJS] Back port

2015-11-09 Thread Harbs
Well, I’d be interested in your findings. If operator definitions is possible .. will be easier than . operators. If we allow single dot operators, it will be difficult to differentiate between E4X syntax and function calls. I’d really like to drop the () on length and some of the other methods

Re: [FlexJS] Back port

2015-11-09 Thread Alex Harui
I think “..” is already recognized as a token. Other code says “hey, that token is not allowed here”. We have control over where that is. Of course, I could be mis-understanding. I’m also going to do a bit of reading to make sure we can’t do E4x. Yeah, maybe you can invent something better, bu

Re: [FlexJS] Back port

2015-11-09 Thread Harbs
Huh? For custom classes? How would that work? On Nov 9, 2015, at 9:30 PM, Alex Harui wrote: > I think the compiler already knows about that. It can convert that to a > function call. > > On 11/9/15, 11:17 AM, "Harbs" wrote: > >> It seems to me that it’s only possible if there’s some way to d

Re: [FlexJS] Back port

2015-11-09 Thread Alex Harui
I think the compiler already knows about that. It can convert that to a function call. On 11/9/15, 11:17 AM, "Harbs" wrote: >It seems to me that it’s only possible if there’s some way to define dot >and dotdot operators. I don’t know of a way to do that in ActionScript. > >It will be possible t

Re: [FlexJS] Back port

2015-11-09 Thread Harbs
It seems to me that it’s only possible if there’s some way to define dot and dotdot operators. I don’t know of a way to do that in ActionScript. It will be possible to use mySVG.descendents(“path”) or mySVG.child(“path”) (which the dot and dotdot operators are really shorthand for) If someone c

Re: [FlexJS] Back port

2015-11-09 Thread OmPrakash Muppirala
On Mon, Nov 9, 2015 at 11:00 AM, Harbs wrote: > I’m not 100% clear on the status of the back-ports or the best way to go > about it. I figured I’d wait until we’re done with the release and then > coordinate with you and Peter. > > In the meantime, I started work on some XML classes. I pretty muc

Re: [FlexJS] Back port

2015-11-09 Thread Harbs
I’m not 100% clear on the status of the back-ports or the best way to go about it. I figured I’d wait until we’re done with the release and then coordinate with you and Peter. In the meantime, I started work on some XML classes. I pretty much decided on departing a bit from classic E4X for two

Re: [FlexJS] Back port

2015-11-09 Thread Alex Harui
Harbs, Thanks for the commits for the back port. Let us know if you actually start work on porting an existing SWC. I’m going to wait another day before cutting the FalconJX RC2 in case Justin has more feedback on the LICENSE. So I am going to try to port dragdrop and effects. -Alex On 11/9/1

Re: Events/Conferences on Apache Flex

2015-11-09 Thread Andrew Wetmore
I would really like the idea of an online conference On Nov 9, 2015 1:30 PM, "Josh Tynjala" wrote: > Some kind of in-person Apache Flex event would be really cool. > > We should also consider an online-only event on Adobe Connect, similar to > the Flash Online Conference that Sergey Gonchar hosts

Re: Events/Conferences on Apache Flex

2015-11-09 Thread Josh Tynjala
Some kind of in-person Apache Flex event would be really cool. We should also consider an online-only event on Adobe Connect, similar to the Flash Online Conference that Sergey Gonchar hosts a couple of times a year. No travel required, so more people can attend. A day with several presentations o

Re: Events/Conferences on Apache Flex

2015-11-09 Thread Alex Harui
Thanks for the reminder. I will look into some sort of Flex-only event. If folks can add to this thread about a good time and place that might help an event organizer figure out what to do. Apache Flex committers usually attend ApacheCon, both in North America and Europe. I’m hoping to be at bot

Events/Conferences on Apache Flex

2015-11-09 Thread davsantos
Is there any plan or any incoming Apache Flex event/conference. We are still actively working on it in my company and we would like to be assured about the reliability of this framework. How can I have the opportunity to talk/hear the people behind the project. -- View this message in context:

Re: [FlexJS] Back port

2015-11-09 Thread Alex Harui
On 11/8/15, 11:55 PM, "Harbs" wrote: > >> Meanwhile, Peter and I are back porting the SWCs one-by-one in the >> core_js_to_as branch of flex-asjs. We haven’t written a how-to or >> anything, but you can look at Binding, Core, Collections and HTML as >> examples. > >Color me confused, but I stil