Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
Hi Justin, Again, I' woukd like to understand, why included thoses files in Git ? they weren't in Svn and from what I understand, the flex-sdk-description.xml and the bundles.properties are generated at compile time. Where am I wrong if I am ? Thanks, -Fred -Message d'origine- From:

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
Hi Alex, Does that [1] correspond better to what you described you wanted ? Thanks, -Fred [1] https://cwiki.apache.org/confluence/display/FLEX/Good+vs+Bad+Git+usage -Message d'origine- From: Alex Harui Sent: Sunday, March 24, 2013 5:39 AM To: dev@flex.apache.org Subject: Re: [Git/Wik

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
HI, > Again, I' woukd like to understand, why included thoses files in Git ? Because they stopped me from checking in the locale changes I made the other day. Justin

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
Ok, then maybe we can find the solution somewhere else as it wasn't a problem for me, and once again, because those files are generated, they shouldn't go into Git, are we agree ? your solution to add them into Git seems a bit drastic to me, instead, could you add them again in the .gitignore a

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
Hi, > your solution to add them into Git seems a bit drastic to me, instead, could > you add them again in the .gitignore and tell me what commands you did and > what errors were displayed ? Files in question were auto generated by me (to same me typing) but are actually required if you want t

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
Well, It's where I don't understand though. If those files are generated during the build, they are also generated during the release, right ? Thanks for your time, -Fred -Message d'origine- From: Justin Mclean Sent: Monday, March 25, 2013 8:52 AM To: dev@flex.apache.org Subject: Re

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Carlos Rovira
Hi Alex and Justin, when I came to the problem that I was to change 12 implementations I thought about it, but taking into account how other os products perform (Spring, Hibernate,...) over versions I thought that this kins of changes was possible since people should have a similar implementation

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Erik de Bruin
I think Justin is saying they are needed if you want to prepare a release build of the SDK (e.g. 4.9.5), not when you just build the SDK on your own machine. In this case I'd on the word of Justin and leave the files in git. EdB On Mon, Mar 25, 2013 at 8:58 AM, Frédéric THOMAS wrote: > Well, I

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Erik de Bruin
Now there is an explanation I can understand. As always, a picture says more that a bunch of words ;-) Thank you, Fred! EdB On Mon, Mar 25, 2013 at 8:28 AM, Frédéric THOMAS wrote: > Hi Alex, > > Does that [1] correspond better to what you described you wanted ? > > > Thanks, > -Fred > > [1] h

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
But, sorry, the official release build is not supposed to go into a release branch ? a personal release into a local release branch ? so, can't you custom the .gitignore in those branches instead of check in the develop branch files that shouldn't go in ? otherwise guys, why not check in *.swc,

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
Thank you Erik. -Fred -Message d'origine- From: Erik de Bruin Sent: Monday, March 25, 2013 9:04 AM To: dev@flex.apache.org Subject: Re: [Git/Wiki] please review the proposed workflow and comment Now there is an explanation I can understand. As always, a picture says more that a bunch

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Justin Mclean
Hi, I think in this case there's not going to be a lot of 3rd party code effected and it's easy enough to implement if someone want to use Apache Flex. If anyone has another opinion please speak up. > Options are: > 1.- make a revert of all branch > 2.- make a new Interface that extends the ILi

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
Well, sorry for the irritation you might have feel from my last post, happily, no files have been checked in by mistake yet. The point is almost none of us knows Git, even people who voted on and the decisions taken implying everybody without coordination at this early stage of the Git learnin

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Jose Barragan
I agree with your solution Carlos, I think that the fix should be in the IList itself, and not need create an alternative version. BTW, if it breaks the implementation of third parties will be a minor problem, and if you want to make an interface for compatibility, and call it IList2 as Alex sa

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
Hi, > If those files are generated during the build, they are also generated during > the release, right ? Not all those files are auto generated and I think (not 100% sure of the top of my head) that some file names may be both auto generated and also need to be part of the release. Currently

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Carlos Rovira
Hi Jose, as I think on it I'm more convinced that this is the way To make some parallelism, I remember changes like the added states in TextInputSkin from Flex 4.5 to 4.5.1 (I can't ensure the version) to support new prompt skin part. We get "disabledStates" (normalWithPrompts and disabledWithPro

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
Hi, > But, sorry, the official release build is not supposed to go into a release > branch ? No but the files needed to compile a release need to be :-) > otherwise guys, why not check in *.swc, .zip and my grand mother photo at > this point ? No swc or zips should be in Git but we might be ab

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
Well, sure it's different than Svn. 1- The flex-sdk-descrition.xml and the bundle.properties are generated. 2- For the Mustella tests, as soon as I have the opportunity to run it, I'll fill the .gitignore in a almost complete generic way, I guess I can do it and propose it to this list as I did

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
Hi, > Well, sorry for the irritation you might have feel from my last post, > happily, no files have been checked in by mistake yet. No issue. I not checked any photos of my grandmother yet :-) > The point is almost none of us knows Git, even people who voted on and the > decisions taken implyi

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
Ok, Can't we try to do a dummy release (or a real one as IIRC, one of the core lib hasn't been built correctly in the 2 last releases), so we could fill what is missing in the wiki and in the same time we could experiment Git for a release and fill a .gitignore ? Btw, because I didn't do any S

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
No issue. I not checked any photos of my grandmother yet :-) Ok, let's go forward so ;-) Not sure any decision has been made here other than what was in .gitignore stop me from pushing files that are required to make a release build. We can modify .gitignore as required until everyone is happ

[jira] [Resolved] (FLEX-28946) MX DataGrid default column sort breaks on NULL complex fields

2013-03-25 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-28946?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra resolved FLEX-28946. - Resolution: Fixed Fix Version/s: Apache Flex 4.10.0 commited patch to develop branch. must

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
Hi, > 1- The flex-sdk-descrition.xml and the bundle.properties are generated. > 2- For the Mustella tests, as soon as I have the opportunity to run it, I'll > fill the .gitignore in a almost complete generic way, I guess I can do it and > propose it to this list as I did for the actual one. An

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
HI, Just be aware that "ant release" is currently a little broken because of the move to Get (it assumes a SVN revision number). Justin

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
True, so how do you sort that out at the moment ? -Fred -Message d'origine- From: Justin Mclean Sent: Monday, March 25, 2013 10:36 AM To: dev@flex.apache.org Subject: Re: git commit: Removed files that do actually need to be edited and commited from time to time HI, Just be aware t

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Harbs
I really don't see this as a really big deal. Even if someone implemented ILIst. The first time they try to compile, they will see a compile error that they didn't implement the new methods. All you really need to do is add a blank function. Are we worried about compiled libraries that the user

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
I re-organized a bit to make it visually clearer but still, I guess it can be better and the text better written than with my words, I'm opened to see your suggestions. Thanks, -Fred -Message d'origine- From: Frédéric THOMAS Sent: Monday, March 25, 2013 9:12 AM To: dev@flex.apache.or

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
I had an issue running a release, it can't get http://java.net/projects/javacc/downloads/download/javacc-5.0.tar.gz error 443, how do I solve that ? -Fred -Message d'origine- From: Frédéric THOMAS Sent: Monday, March 25, 2013 10:41 AM To: dev@flex.apache.org Subject: Re: git commit:

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
Sorry, the 443 came when I tried to get via my browser, the ant script returned "Server returned HTTP response code: 500", I'll try later as it is an internal server error. -Fred -Message d'origine- From: Frédéric THOMAS Sent: Monday, March 25, 2013 1:12 PM To: dev@flex.apache.org Su

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
HI, > True, so how do you sort that out at the moment ? Just let it fail - it sets the release version to 0. Justin

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
Hi, > I had an issue running a release, it can't get > http://java.net/projects/javacc/downloads/download/javacc-5.0.tar.gz error > 443, how do I solve that ? It's not the ant script getting that right? Sounds like you don't have a JDK installed? What does 'java -version" and "javac -version"

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
No, indeed I've got java installed, I can now access the web site but now the download, they say : We're sorry, but something went wrong. We've been notified about this issue and we'll take a look at it shortly I'll try later, thank you, -Fred -Message d'origine- From: Justin Mclean

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
Hi, No sure what your issue is - try this url: http://www.oracle.com/technetwork/java/javase/downloads/index.html You want JDK SE 7 or JDK SE 6. Justin

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Frédéric THOMAS
I'm with the JDK 1.6.0_33 but that's ok, the server is running properly again. Thanks, -Fred -Message d'origine- From: Justin Mclean Sent: Monday, March 25, 2013 1:32 PM To: dev@flex.apache.org Subject: Re: git commit: Removed files that do actually need to be edited and commited fro

[Help] Native Drag and Drop in Apache Flex

2013-03-25 Thread Jagan Langa Sami Durai
Hi all, Is there any workaround to enable Native Drag and Drop feature in Apache Flex (Not in AIR)? -- * Regards, S. Jagan Langa*

Re: [Help] Native Drag and Drop in Apache Flex

2013-03-25 Thread Jagan Langa Sami Durai
If it is not in the hands of Apache, I have raised a feature request in Adobe site. Please vote for this. https://bugbase.adobe.com/index.cfm?event=bug&id=3529257 On Mon, Mar 25, 2013 at 6:16 PM, Jagan Langa Sami Durai wrote: > Hi all, > > Is there any workaround to enable Native Drag and Drop

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Alex Harui
On 3/25/13 3:02 AM, "Harbs" wrote: > I really don't see this as a really big deal. > > Even if someone implemented ILIst. The first time they try to compile, they > will see a compile error that they didn't implement the new methods. All you > really need to do is add a blank function. > > A

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Carlos Rovira
So Alex, what we do? revert? let the change live? make a Discuss thread so people could express the phylosophy with this issue and future similar tickets? Please, let us know so we can act accordingly Best Carlos 2013/3/25 Alex Harui > > > > On 3/25/13 3:02 AM, "Harbs" wrote: > > > I reall

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Alex Harui
On 3/25/13 8:00 AM, "Carlos Rovira" wrote: > So Alex, > > what we do? revert? let the change live? make a Discuss thread so people > could express the phylosophy with this issue and future similar tickets? > > Please, let us know so we can act accordingly > It is up to you. I have stated m

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Alex Harui
IMO, Fred had it right. There are some files that go in the release distribution that we left sitting around in SVN, but they were in fact generated. Often folks would mistakenly edit the generated file and then wonder why their changes didn't take. I haven't researched bundles.properties, but I

[jira] [Created] (FLEX-33450) RTE - PopupManager mx.controls.DataGrid

2013-03-25 Thread Bharath (JIRA)
Bharath created FLEX-33450: -- Summary: RTE - PopupManager mx.controls.DataGrid Key: FLEX-33450 URL: https://issues.apache.org/jira/browse/FLEX-33450 Project: Apache Flex Issue Type: Bug Com

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Cosma Colanicchia
+1 on adding the method to IList... I have *lot* of code that look like var index:int = list.getItemIndex(object); if (index >= 0) { list.removeItemAt(index); } I think this is ugly and verbose, and it pollutes my function namespace - I ends up with "indexOfItemToRemove1" and some like this, as

[jira] [Updated] (FLEX-33450) RTE - PopupManager mx.controls.DataGrid

2013-03-25 Thread Bharath (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bharath updated FLEX-33450: --- Attachment: TestPopup.fxp I'm attaching the test code here. > RTE - PopupManager mx.controls

[jira] [Updated] (FLEX-33450) RTE - PopupManager mx.controls.DataGrid

2013-03-25 Thread Bharath (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bharath updated FLEX-33450: --- Environment: Internet Explorer 8, Windows 7, FlashPlayer version [WIN 11,4,402,287] (was: Internet Explorer

[FalconJx] progress update

2013-03-25 Thread Erik de Bruin
Hi, Just 'checking in': FalconJx can now compile the FlexJSTest_again example from the command line, using these arguments: +env.PLAYERGLOBAL_HOME=/Users/erik/Documents/ApacheFlex/dependencies/PlayerGlobal/player +playerglobal.version=11.1 -load-config="/Applications/Adobe Flash Builder 4.7/sdks/

RE: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Michael A. Labriola
>I re-organized a bit to make it visually clearer but still, I guess it can be >better and the text better written than with my words, I'm opened to see your >suggestions. Okay, so, here is where we disagree. I do not think what you labeled as "Bad" is bad. It's not bad to me, it's an accurate

RE: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Michael A. Labriola
>I'm not sure what you mean talking about fork and repo, I might be wrong but >that's more a GitHub concept to me but there's the concept of spare checkouts, >it means, once you cloned the >entirely repo, you can filter the directories >you want to see which will make Git working easier, I mean

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
Hi Mike, Sure, it can be discussed. So, I think that what I write after you has to be written after what you write and my own experience with no-linear commit history tells me it shouldn't be done, it becomes quickly messy. Thanks, -Fred -Message d'origine- From: Michael A. Labriol

RE: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Michael A. Labriola
>So, I think that what I write after you has to be written after what you write >and my own experience with no-linear commit history tells me it shouldn't be >done, it becomes quickly messy. I am just going to go through each of your examples (which are very well done) and show my thoughts on e

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
Mike, Ok, so, yes, it has been discussed on this list with the conclusion it wasn't feasible by INFRA but one one asked them. AFAIK, it's technically possible to do it using git-svn to create users repo and then sharable bares repo (and there're maybe more direct ways to do it) but not possi

Re: [1/4] git commit: add removeItem to IList and ListCollectionView

2013-03-25 Thread Carlos Rovira
Ok, as many people as stated they will prefer not revert, I will not make any changes and will keep the IList removeItem new method and the method implementations. I will postpone a Discussion thread for a later time when we have more use cases that will make us to talk and discuss about global phi

RE: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Michael A. Labriola
> Ok, so, yes, it has been discussed on this list with the conclusion it wasn't > feasible by INFRA but one one asked them. Okay, that's fine if the people here decided it was infeasible I can accept that. Sometimes I think we just solve the wrong problems and I was wondering if that was the

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
To me, many of the reasons you are favoring the rebase workflow is so that people can't accidently mess up a merge (and yes, it can keep the history cleaner) Yes, that's meanly that, it will work except if people doesn't want to push right after the merge, in this rare case, it's better to use

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
Mike, Btw, for what I'm about to do as described previously, I'll be happy if you can review and say your point of view / way to do it. Cheers, -Fred -Message d'origine- From: Frédéric THOMAS Sent: Monday, March 25, 2013 6:14 PM To: dev@flex.apache.org Subject: Re: [Git/Wiki] please

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Alex Harui
Hi Fred, I looked at your good/bad wiki page. Thanks for taking the time to add pictures. For me, instead of labeling things good and bad, it might be better to have an explanation or picture of the longer-term ramifications of each sequence and why one sequence is recommended. For example, I g

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
I looked at your good/bad wiki page. Thanks for taking the time to add pictures. For me, instead of labeling things good and bad, it might be better to have an explanation or picture of the longer-term ramifications of each sequence and why one sequence is recommended. Ok, my next topic will b

Re: [Git/Wiki] please review the proposed workflow and comment

2013-03-25 Thread Frédéric THOMAS
Also, in the first scenario, it might be important to explain that you pushed your README change before Justin tried to push. You might need a two-column "timeline" to show what commands happened when. Arff, I don't like my last incomplete response, so the best way is that I'll have to create

[jira] [Updated] (FLEX-33450) RTE - PopupManager mx.controls.DataGrid

2013-03-25 Thread Bharath (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bharath updated FLEX-33450: --- Description: I'm getting a Runtime Exception on Internet Explorer [TypeError: Error #1009: Cannot access a p

Re: [FalconJx] progress update

2013-03-25 Thread Om
Erik, I am planning to get FalconJX working on my machine soon. Before I start digging into it, 1. Are these wiki pages current? https://cwiki.apache.org/confluence/display/FLEX/AS+to+JS+-+the+%27goog%27+Way https://cwiki.apache.org/confluence/display/FLEX/FalconJx+Prototype 2. Do you have a

Re: [FalconJx] progress update

2013-03-25 Thread Erik de Bruin
Om, 1) the wiki is mostly current, but as a work in progress: if it doesn't work, ask and we will fix ;-) 2) CSS resulting from...? I'm not familiar with FXG etc., so my questions are bound to be naive as well, as you'll notice. Basically we have access to whatever the compiler (Falcon-main, if y

Re: [FalconJx] progress update

2013-03-25 Thread Alex Harui
My answers in-line On 3/25/13 11:55 AM, "Erik de Bruin" wrote: > Om, > > 1) the wiki is mostly current, but as a work in progress: if it > doesn't work, ask and we will fix ;-) > > 2) CSS resulting from...? I'm not familiar with FXG etc., so my > questions are bound to be naive as well, as yo

Re: [FalconJx] progress update

2013-03-25 Thread Om
On Mon, Mar 25, 2013 at 11:55 AM, Erik de Bruin wrote: > Om, > > 1) the wiki is mostly current, but as a work in progress: if it > doesn't work, ask and we will fix ;-) > > 2) CSS resulting from...? I'm not familiar with FXG etc., so my > questions are bound to be naive as well, as you'll notice.

Re: [FalconJx] progress update

2013-03-25 Thread Om
On Mon, Mar 25, 2013 at 12:09 PM, Alex Harui wrote: > My answers in-line > > > On 3/25/13 11:55 AM, "Erik de Bruin" wrote: > > > Om, > > > > 1) the wiki is mostly current, but as a work in progress: if it > > doesn't work, ask and we will fix ;-) > > > > 2) CSS resulting from...? I'm not familia

Re: [MENTORS] Voting on code donations

2013-03-25 Thread Greg Reddin
On Sun, Mar 24, 2013 at 10:14 AM, Alex Harui wrote: > Hi Former Mentors, > > We’ve had some generous offers of code donations. I noticed that some > projects have votes about whether to accept code donations, but we haven’t > for any Adobe donations to Apache Flex. Is voting optional? > I thin

Re: [FalconJx] progress update

2013-03-25 Thread Erik de Bruin
Om, > Just to be clear, for all practical purposes, when I say FXG, I really mean > MXML. This is because, the Flex implementation of FXG ensures that FXG > elements can be pluggable inline into any MXML component. So, if we are to > support MXML, then we must support FXG. > > In what I am doing

Re: [FalconJx] progress update

2013-03-25 Thread Alex Harui
Om, can you give an example? IMO, there is a difference between MXML Graphics and FXG. To me, FXG is stuff in an FXG file exported from several Adobe design tools. The internal pieces are not manipulated at run time. Today, FXG assets are compiled into Sprites and other SWF primitives. MXML Gr

[jira] [Commented] (FLEX-33350) CallOutButton for Web (desktop / not AIR)

2013-03-25 Thread Maxime Cowez (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33350?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13613025#comment-13613025 ] Maxime Cowez commented on FLEX-33350: - No companies involved. You have my blessing ;)

Re: [FalconJx] progress update

2013-03-25 Thread Erik de Bruin
>> Are you saying that you are planning to switch to FalconJX soon? > Soon === Now That is... interesting :-) I guess it'll be a late night for me tonight. I have to set up the JS part of the FlexJS parsing. I've got the MXML in place, but the JS part will take me a bit of time. Are you up agains

Re: [FalconJx] progress update

2013-03-25 Thread Alex Harui
On 3/25/13 12:28 PM, "Om" wrote: > > With my approach, to get the rendering fidelity to match that of Flex's > skins, inline CSS makes it easy (because of the XSLT approach) > BTW, we still need to deal with the 'cascading' part of CSS, right? Not quite sure what you mean, but for sure the AS

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Justin Mclean
HI, > Whatever the way to go, I'm not sure checkin empty.properties which are > generated is the one. This are not auto generated but are required to compile the SDK for different locales - you need to do this in develop for testing or may actually want to compile the SDK for a locale other tha

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Justin Mclean
HI, > 1) flex-sdk-description.xml is autogenerated from a build.xml From the template file which needs to be in GIt. > 2) spark/manifest.xml is copied from frameworks/spark-manifest.xml So we need one in Git but not the other. Justin

Re: [FalconJx] progress update

2013-03-25 Thread Alex Harui
On 3/25/13 12:55 PM, "Erik de Bruin" wrote: >>> Are you saying that you are planning to switch to FalconJX soon? >> Soon === Now > > That is... interesting :-) I guess it'll be a late night for me tonight. > > I have to set up the JS part of the FlexJS parsing. I've got the MXML > in place,

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Frédéric THOMAS
This are not auto generated They're copied from bundles/en_US/empty.properties to each locale at each build are required to compile the SDK for different locales - you need to do this in develop for testing or may actually want to compile the SDK for a locale other than en_US so I don't thi

Re: git commit: Removed files that do actually need to be edited and commited from time to time

2013-03-25 Thread Alex Harui
On 3/25/13 2:11 PM, "Justin Mclean" wrote: > HI, > >> 1) flex-sdk-description.xml is autogenerated from a build.xml > From the template file which needs to be in GIt. To me, the build.xml looks like it just echoes some text to the file. I don't see a template. > >> 2) spark/manifest.xml is

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Justin Mclean
HI, > They're copied from bundles/en_US/empty.properties to each locale at each > build Only for the flash-integration target and this may or may not be the correct thing to do. It may of been a hack just to get it to work. At a future point locales may contain other translations. Also looks l

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Alex Harui
On 3/25/13 2:48 PM, "Justin Mclean" wrote: > HI, > >> They're copied from bundles/en_US/empty.properties to each locale at each >> build > Only for the flash-integration target and this may or may not be the correct > thing to do. It may of been a hack just to get it to work. At a future poi

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Frédéric THOMAS
eg copylocale en_AU en_NZ needs to work as this would be less work than copylocale en_US en_NZ. For this to work the files need to exist and be in GIt Yes, but only the user use copylocale, not the build, right ? If so, when the user get the binaries, those files have been already generated an

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Justin Mclean
Hi, > Could it be time to reconsider and make copylocale more tolerant of missing > files? As I said this was an easier fix than changing the Java code inside copylcoale if you want to provide an alternative patch go ahead. Justin

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Justin Mclean
Hi, > Yes, but only the user use copylocale, not the build, right ? Well technically the build isn't broken (you can use it as a SDK and set different locales) but you may have trouble making a new locale form this build. I think it reasonable to assume that copylocale would work locales other

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Frédéric THOMAS
Then, at this point why those files are not permanently in their corresponding locale directory rather than copied each time by the ant script ? it would allow them to stay in Git -Fred -Message d'origine- From: Justin Mclean Sent: Monday, March 25, 2013 11:09 PM To: dev@flex.apache.o

Re: [FalconJx] progress update

2013-03-25 Thread Om
On Mon, Mar 25, 2013 at 12:26 PM, Alex Harui wrote: > Om, can you give an example? > > IMO, there is a difference between MXML Graphics and FXG. To me, FXG is > stuff in an FXG file exported from several Adobe design tools. The > internal > pieces are not manipulated at run time. Today, FXG as

Re: [FalconJx] progress update

2013-03-25 Thread Alex Harui
Hmm. But at the top-level is a non-FXG element like Skin or something like that, right? And, you don't know if script is going to change any of these entities at run-time. How are you going to make that happen when converted to SVG? Finally, nobody "drew" this skin in a design tool. It was han

Re: [FalconJx] progress update

2013-03-25 Thread Om
On Mon, Mar 25, 2013 at 3:25 PM, Alex Harui wrote: > Hmm. But at the top-level is a non-FXG element like Skin or something like > that, right? I plan to use the or elements for this. > And, you don't know if script is going to change any of these > entities at run-time. How are you going

Re: [FalconJx] progress update

2013-03-25 Thread Alex Harui
On 3/25/13 3:41 PM, "Om" wrote: > On Mon, Mar 25, 2013 at 3:25 PM, Alex Harui wrote: > >> Hmm. But at the top-level is a non-FXG element like Skin or something like >> that, right? > > > I plan to use the or elements for this. Well, in FlexJS, we aren't translating MXML tags into HTML t

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Alex Harui
On 3/25/13 3:04 PM, "Justin Mclean" wrote: > Hi, > >> Could it be time to reconsider and make copylocale more tolerant of missing >> files? > As I said this was an easier fix than changing the Java code inside copylcoale > if you want to provide an alternative patch go ahead. Yes, the change

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Frédéric THOMAS
Just another point, I'm trying to build a release and the textLayout asdoc target source-path point on ${source.dir}/src, it turns into an error, shouldn't it be ${tlf.branch}/src ? As reminder: failonerror="true" keep-xml="true" skip-xsl="true" fork="true"> f

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Justin Mclean
Hi, > Yes, the change you made was simpler, but now you have to spend time dealing > with the Git ramifications. Which is what exactly? That you have files that show up as changed in git status - easy don't check them in. We had exactly the same issue with SVN. Justin

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Frédéric THOMAS
What would be the problem to do the opposite, check them in and not re-generate them ? Thanks, -Fred -Message d'origine- From: Justin Mclean Sent: Tuesday, March 26, 2013 1:35 AM To: dev@flex.apache.org Subject: Re: [1/3] Added misisng empty locales files for all supported locales so

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Justin Mclean
Hi, > What would be the problem to do the opposite, check them in and not > re-generate them ? Currently the build is broken (themes are not compiling for some odd reason) so I'm unable to test. Justin

Re: [FalconJx] progress update

2013-03-25 Thread Om
On Mar 25, 2013 5:04 PM, "Alex Harui" wrote: > > > > > On 3/25/13 3:41 PM, "Om" wrote: > > > On Mon, Mar 25, 2013 at 3:25 PM, Alex Harui wrote: > > > >> Hmm. But at the top-level is a non-FXG element like Skin or something like > >> that, right? > > > > > > I plan to use the or elements for t

Re: [FalconJx] progress update

2013-03-25 Thread Alex Harui
Well, first off, thanks for motivating me to spend more time thinking about skinning. Honestly, I don't have a formal plan and your input is quite welcome. I spent a fair amount of time mulling over how to re-use as much of existing spark skins as possible and how to leverage your FXG->SVG wor

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Alex Harui
On 3/25/13 5:28 PM, "Frédéric THOMAS" wrote: > Just another point, I'm trying to build a release and the textLayout asdoc > target source-path point on ${source.dir}/src, it turns into an error, > shouldn't it be ${tlf.branch}/src ? Ah yes, I never did finish the release target. I just got m

Re: [1/3] Added misisng empty locales files for all supported locales so that copylocale works

2013-03-25 Thread Justin Mclean
Hi, > What would be the problem to do the opposite, check them in and not > re-generate them ? Modified the build script to do this - however unable to 100% test as build release is currently broken. Justin

Release build broken

2013-03-25 Thread Justin Mclean
Hi, > Ah yes, I never did finish the release target. I just got main and > checkintests to run. If you can fix it, great, if not, I will try to get to > it later in the week. Issue I'm having is to do with compiling themes no idea what is causing the error. ant themes compile: [echo] Co

Re: Release build broken

2013-03-25 Thread Alex Harui
I'm not in a good place to stop and investigate right now. Is it possible that a falcon build polluted your setup? On 3/25/13 8:33 PM, "Justin Mclean" wrote: > Hi, > >> Ah yes, I never did finish the release target. I just got main and >> checkintests to run. If you can fix it, great, if no

Re: Release build broken

2013-03-25 Thread Justin Mclean
Hi, > Is it possible that a falcon build polluted your setup? Unlikely. Unless something been done that git related with that? Not tried to build falcon since the move to git. Have we missed something in the move to git that's broken the release build? Can someone do a "ant release" on the gi

Re: Release build broken

2013-03-25 Thread Om
I can try in a couple of hours.. Thanks, Om On Mar 25, 2013 8:56 PM, "Justin Mclean" wrote: > Hi, > > > Is it possible that a falcon build polluted your setup? > Unlikely. Unless something been done that git related with that? Not tried > to build falcon since the move to git. > > Have we missed

Re: Release build broken

2013-03-25 Thread Alex Harui
I ran "ant release" and all the way to asdoc like Fred said. Do you have spaces in your paths? Did you run "ant release" or something else? Post more of the console output otherwise. On 3/25/13 8:56 PM, "Justin Mclean" wrote: > Hi, > >> Is it possible that a falcon build polluted your setup

Re: Release build broken

2013-03-25 Thread Justin Mclean
Hi, > Do you have spaces in your paths? No. > Did you run "ant release" or something else? Post more of the console output > otherwise. "ant release" but "ant themes" fails very quickly: ant sample-themes Buildfile: /Users/justinmclean/Documents/ApacheFlexDevelopGit/build.xml sample-themes:

Re: [FalconJx] progress update

2013-03-25 Thread Erik de Bruin
>> I have to set up the JS part of the FlexJS parsing. I've got the MXML >> in place, but the JS part will take me a bit of time. Are you up >> against a deadline somehow? >> > Oh, I thought it was all there. Is it only MXML->AS? I am setting up my > launch config now. What is FlexJS specific ab

  1   2   >