Re: [DISCUSS] Discuss Release Apache Flex SDK Installer 3.1 - RC5

2014-07-04 Thread Alex Harui
On 7/3/14 7:32 PM, "Justin Mclean" wrote: >Hi, > >> Looks like you chose 4.12.1 and we have said that caching isn't going to >> work there. > >So it's a regression issue then? > >I tried 4.13 in in that case the SDK isn't cached but AIR and other files >are. For me, 4.13 was pulled from the cac

Re: [DISCUSS] Discuss Apache Flex SDK 4.13.0 RC3

2014-07-04 Thread Alex Harui
On 7/3/14 11:48 PM, "Justin Mclean" wrote: >Hi, > >> 3) run ant frameworks-rsls. The frameworks/flex-config.xml still >>contains >> els entries like: >> >> >> >> libs/spark.swc >> spark_${build.number}.swf >> >> >> That doesn't seem right to me. S

Re: New Flex to JS project

2014-07-04 Thread Alex Harui
There are functions, but I've seen significant use of XML as an "Object". IMO it is what makes e4x possible: the dot-path lookup as below: Var foo:XML = Trace(foo.is); Trace(foo..a(@name=="test")); Trace(foo..test); But I could be wrong and there is some other way to handle this. -Alex On 7/

Fwd: Apache Flex committer invite

2014-07-04 Thread Mihai Chira
Hi all, I just tried to make my first svn commit, and got the error below. I read the Apache Source Code Repository page[1] and I couldn't find this error there. The closest was "If you still get 403 Forbidden errors, ask your PMC to double-check the authz file and LDAP/Unix group membership." A

Re: New Flex to JS project

2014-07-04 Thread Gordon Smith
I think this syntax is just sugar for more verbose function calls like trace(foo.children("is")) but the terse syntax is much nicer. - Gordon Sent from my iPad > On Jul 4, 2014, at 12:22 AM, "Alex Harui" wrote: > > There are functions, but I've seen significant use of XML as an "Object". > I

Re: Apache Flex committer invite

2014-07-04 Thread Nicholas Kwiatkowski
Mihai, We actually switched from SVN to GIT a while ago. Our SVN repo is in read only mode (except for the website, which is still pushed via SVN). You should be able to pull down our repos as in: http://flex.apache.org/dev-sourcecode.html , and push changes back via your new apache ID and passw

Re: Apache Flex committer invite

2014-07-04 Thread Mihai Chira
That's awesome! Thanks, Nicholas. I'll try it tomorrow. On 4 July 2014 18:26, Nicholas Kwiatkowski wrote: > Mihai, > > We actually switched from SVN to GIT a while ago. Our SVN repo is in read > only mode (except for the website, which is still pushed via SVN). You > should be able to pull down

RE:Apache Flex committer invite

2014-07-04 Thread Maurice Amsellem
If you are new to git, I suggest you use GUI git client, like sourcetree or another one. It helped me a lot. Maurice De : Mihai Chira [mihai.ch...@gmail.com] Envoyé : vendredi 4 juillet 2014 20:22 À : dev@flex.apache.org Objet : Re: Apache Flex committer

RE: Apache Flex committer invite

2014-07-04 Thread Chris Martin
Git has a windows client if you are on windows. Works great. Chris -Original Message- From: "Maurice Amsellem" Sent: ‎7/‎4/‎2014 12:05 PM To: "dev@flex.apache.org" Subject: RE:Apache Flex committer invite If you are new to git, I suggest you use GUI git client, like sourcetree or anot

Re: New Flex to JS project

2014-07-04 Thread Alex Harui
I've not looked to see if the compiler does that or the runtime. I think it is the runtime isn't it? -Alex On 7/4/14 10:12 AM, "Gordon Smith" wrote: >I think this syntax is just sugar for more verbose function calls like > >trace(foo.children("is")) > >but the terse syntax is much nicer. > >-