Re: Merging 4.9.1 release bench into develop

2013-04-15 Thread Justin Mclean
Hi, BTW I think part of the issue is that it didn't recognise that it has been synced before when 4.9 was released so I think it though that all changes from the initial creation of the 4.9 branch onwards needed to be applied. Seems reasonable in the move form SVN to Git that sync point was los

Re: Git and build.properties

2013-04-15 Thread Justin Mclean
Hi, >> So did I but it didn't work with git in a nice way. > TLF is the only reason? Or did you run into other things? It's the major one. I think most of the other values (version number, locale etc) a local.properties file works fine as they all have reasonable default values. > Why couldn't

Re: Merging 4.9.1 release bench into develop

2013-04-15 Thread Justin Mclean
Hi, >> Did you use MergeTool? I'm thinking of downloading it and trying it out. It may help a little but not a lot for simple changes as you still have to resolve the conflicts. It's certainly not quite as smart as SVN re conflicts but I guess it can't be because of t's distributed nature.

Re: Merging 4.9.1 release bench into develop

2013-04-15 Thread Justin Mclean
Hi, >>> What was the change to Version.as in the develop branch that conflicted. Release was updated to 4.9.1 and develop to 4.10.0 so that resulted in a conflict. With more frequent merges it may not be an issue. > That wasn't a "yep" question. But I think I know the answer: we updated the > V

Re: Git and build.properties

2013-04-15 Thread Alex Harui
On 4/15/13 11:33 PM, "Justin Mclean" wrote: >> I liked the old way > So did I but it didn't work with git in a nice way. TLF is the only reason? Or did you run into other things? > >> we had it which was: >> 1) a build.properties is in version control >> 2) anything you need to override in

Re: Merging 4.9.1 release bench into develop

2013-04-15 Thread Alex Harui
>> What was the change to Version.as in the develop branch that conflicted? > Yep. That wasn't a "yep" question. But I think I know the answer: we updated the Version.as in the develop branch. Do we need to do that? I think I saw in the git branching model that they change the version in the

Re: Git and build.properties

2013-04-15 Thread Justin Mclean
Hi, > I just pulled and tried ant release and it immediately failed because there > is no build.properties. Yes as discussed on list we you need to copy the template file and edit. Once in place there no need to change it again and it wont be overwritten. > I liked the old way So did I but it d

Re: Merging 4.9.1 release bench into develop

2013-04-15 Thread Justin Mclean
Hi, > The git branching model seems to imply that changes to the release branch > get merged into the develop branch at the end of the release. Did you only > merge to trunk? I merged from the 4.9 release branch into develop. This was never done/was out of sync after we released 4.9.1. The 4.9.

Re: Git and build.properties

2013-04-15 Thread Alex Harui
I just pulled and tried ant release and it immediately failed because there is no build.properties. I liked the old way we had it which was: 1) a build.properties is in version control 2) anything you need to override in your system was changed in local.properties for which there was a local.templ

Re: Merging 4.9.1 release bench into develop

2013-04-15 Thread Alex Harui
On 4/15/13 9:49 PM, "Justin Mclean" wrote: > Hi, > > I went ahead and merged the release branch into develop, looks we've been a > bit naughty and looks like quite a few changes went on in the release branch > that didn't happen in develop. The git branching model seems to imply that changes

Merging 4.9.1 release bench into develop

2013-04-15 Thread Justin Mclean
Hi, I went ahead and merged the release branch into develop, looks we've been a bit naughty and looks like quite a few changes went on in the release branch that didn't happen in develop. Observations: - Had no luck with git rebase it seemed to want to throw away needed changes had much better

RE: How to get a clean working tree for flex-sdk

2013-04-15 Thread Gordon Smith
> And what does "ant release" give? After I do 'ant release', 'git status' says nothing to commit (working directory clean) as expected. - Gordon -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Friday, April 12, 2013 11:09 PM To: dev@flex.apache.org

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Justin Mclean
Hi, I want to RELEASE_NOTE and README (from the develop and release branches) into the develop branch. But it's more about getting the process documented so we can actually make a release at some point. We want to make it as simple as possible for anyone who wants to put up there hand as a rel

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Frédéric THOMAS
Ok, tell me what files you want to merge, I'll do that tomorrow when I wake up, it's too now here 4:10. -Fred -Message d'origine- From: Justin Mclean Sent: Tuesday, April 16, 2013 4:02 AM To: dev@flex.apache.org Subject: Re: Git merge of README and RELEASE_NOTES HI, if you have file

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Frédéric THOMAS
and I just noticed as well, to check the diff on RELEASE_NOTES, use: git diff origin/release4.9 RELEASE_NOTES -Message d'origine- From: Frédéric THOMAS Sent: Tuesday, April 16, 2013 3:31 AM To: dev@flex.apache.org Subject: Re: Git merge of README and RELEASE_NOTES Re wrote a bit bette

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Justin Mclean
HI, > if you have files with conflicts you want to merge, you will have to go by an > intermediary branch This is almost always going to be the case with a release as it take time to vote on and create serval release candidates while develop work continues on in develop. > apparently the RELE

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Mark Kessler
I agree. In my case I have example of it's use with view-source [1], a github whiteboard of the modified flex-sdk [2], the code pulled out of the components [3][4][5]. I could change to a diff if that would make things easier. So now we have steps up to this point. Should a JIRA issue been file

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Frédéric THOMAS
Re wrote a bit better I hope: As I said before, in git merge or rebase will apply only on commits, not on files, if you have files with conflicts you want to merge, you will have to go by an intermediary branch (temp), checkout the files you want to merge from the branch where they are, add an

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Frédéric THOMAS
If we want to merge the entire tree would we follow the same process? (eg like what we have to do after a release) Do you have to do a git mergeTool on every file? As I said before, in git merge or rebase will apply only on commits, not on files, if you have files with conflicts you want to me

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Justin Mclean
Hi, > I agree, I was doing minor changes, bug fixes and such just CTR. The > feature addition I have available, I put on the thread first (although I > did a sloppy job of providing a timely code example) thinking it was a good > practice to show before commiting. Showing the changes to the co

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Justin Mclean
Hi, > ok, so, you need to go by an intermediary branch as git merge or rebase only > commits It there a simpler way of doing this? In svn it just a "svn merge" followed by a "svn ci" - assuming you're happy with the merge. If we want to merge the entire tree would we follow the same process? (

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Mark Kessler
I agree, I was doing minor changes, bug fixes and such just CTR. The feature addition I have available, I put on the thread first (although I did a sloppy job of providing a timely code example) thinking it was a good practice to show before commiting. So waiting a few days for feed back then pos

[jira] [Closed] (FLEX-27797) Spark Datagrid double click is fired even when you make the first and second click in different points (rows) !

2013-04-15 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-27797?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler closed FLEX-27797. --- > Spark Datagrid double click is fired even when you make the first and second > click in different

[jira] [Resolved] (FLEX-27797) Spark Datagrid double click is fired even when you make the first and second click in different points (rows) !

2013-04-15 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-27797?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler resolved FLEX-27797. - Resolution: Fixed Fix Version/s: Adobe Flex SDK Next This was resolved with FLEX-33190.

[jira] [Assigned] (FLEX-27797) Spark Datagrid double click is fired even when you make the first and second click in different points (rows) !

2013-04-15 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-27797?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler reassigned FLEX-27797: --- Assignee: Mark Kessler > Spark Datagrid double click is fired even when you make the firs

[jira] [Closed] (FLEX-24780) Initially I can change the selectedItem in a List programmatically, but if the event preventDefault is called anytime, I can no longer change the selectedItem programatica

2013-04-15 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-24780?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler closed FLEX-24780. --- > Initially I can change the selectedItem in a List programmatically, but if > the event preventDefa

[jira] [Resolved] (FLEX-24780) Initially I can change the selectedItem in a List programmatically, but if the event preventDefault is called anytime, I can no longer change the selectedItem programati

2013-04-15 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-24780?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler resolved FLEX-24780. - Resolution: Fixed Fix Version/s: Adobe Flex SDK Next Corrected in the ListBase.as so it wi

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Alex Harui
On 4/15/13 3:45 PM, "Mark Kessler" wrote: > So that means IP donations require a vote and going through the IP > clearance. But what about commiters already signed the Apache agreement... > Does that require a vote or just a public showing and a general consensus? > Or are we voting on those

[jira] [Assigned] (FLEX-24780) Initially I can change the selectedItem in a List programmatically, but if the event preventDefault is called anytime, I can no longer change the selectedItem programati

2013-04-15 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-24780?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler reassigned FLEX-24780: --- Assignee: Mark Kessler > Initially I can change the selectedItem in a List programmatical

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Frédéric THOMAS
ok, so, you need to go by an intermediary branch as git merge or rebase only commits From your clean develop branch: git checkout -b temp git checkout origin/release4.9 RELEASE_NOTES git add -u git commit -m "Merge RELEASE_NOTES, etc.. from release4.9 branch" git checkout develop git rebase

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Mark Kessler
So that means IP donations require a vote and going through the IP clearance. But what about commiters already signed the Apache agreement... Does that require a vote or just a public showing and a general consensus? Or are we voting on those too? -Mark On Mon, Apr 15, 2013 at 12:15 PM, Alex Ha

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Justin Mclean
HI, > git checkout origin/release4.9 RELEASE_NOTES That just replaces the current RELEASE_NOTES file with the 4.9 one. What do you need to do to merge the changes on both files together? Thanks, Justin

Re: CS Extensions

2013-04-15 Thread Harbs
Someone has done that already: http://ajarproductions.com/pages/products/in5/ On Apr 15, 2013, at 10:06 PM, Dave Fisher wrote: > If this would be indesign to html5. That would be very cool. > > Sent from my iPhone > > On Apr 15, 2013, at 2:45 PM, Harbs wrote: > >> I just asked Olav Kvern who

Re: CS Extensions

2013-04-15 Thread Dave Fisher
If this would be indesign to html5. That would be very cool. Sent from my iPhone On Apr 15, 2013, at 2:45 PM, Harbs wrote: > I just asked Olav Kvern who's done a bunch of path work for InDesign and > Illustrator and he's okay with donating his work to this project. That should > help jump-sta

Re: CS Extensions

2013-04-15 Thread Harbs
I just asked Olav Kvern who's done a bunch of path work for InDesign and Illustrator and he's okay with donating his work to this project. That should help jump-start things very nicely! On Apr 15, 2013, at 9:17 PM, OmPrakash Muppirala wrote: > Drawscript looks good, except that it writes to a

Re: CS Extensions

2013-04-15 Thread OmPrakash Muppirala
Drawscript looks good, except that it writes to actionscript/javascript directly. I dont think that it is a good idea necessarily. In the case of JS, it is geared towards drawing on the Canvas element. Problem is that anything drawn on the canvas immediately loses hitTest, accessibility,etc. Tha

Re: CS Extensions

2013-04-15 Thread Harbs
DrawScript looks cool. I would not hold my breath on getting the source donated, but if someone wants to try, that would be cool. On Apr 15, 2013, at 8:37 PM, jude wrote: > I'm all for this! I think we should at least attempt to get the source to > the current FXG export extensions or have they

Re: CS Extensions

2013-04-15 Thread jude
I'm all for this! I think we should at least attempt to get the source to the current FXG export extensions or have they been donated already? Also, check out DrawScript . On Mon, Apr 15, 2013 at 2:35 AM, Harbs wrote: > I'd like to start that project to export FXG from creat

Re: CS Extensions

2013-04-15 Thread Harbs
One or all of these are required (assuming we want compatibility for CS5 and forward. If it's CS6 and forward they will be slightly different)): apeddelta.swc CSXSLibrary-2.0-sdk-3.4-public.swc csaw_illustrator.swc csaw_indesign.swc csaw_photoshop.swc MXThemeSync.swc The csaw libs are only neces

RE: Meet 'marmotinni', an ASJS testing framework

2013-04-15 Thread Tigran Najaryan
> From: Alex Harui [mailto:aha...@adobe.com] > OK, probably just wishful thinking on my part. I think we both agree > that it would be great if you could write a test on AS and have it run > in JS. I definitely agree, that would be great, that was what I initially thought we could do and what exci

RE: View source

2013-04-15 Thread Kessler CTR Mark J
Well it's different in spark... mailto:webdoubl...@hotmail.com] Sent: Monday, April 15, 2013 12:12 PM To: dev@flex.apache.org Subject: Re: View source ViewSource.addMenuItem(this, "srcview/index.html") does not work ? -Fred -Message d'origine- From: Kessler CTR Mark J Sent: Monday,

Re: Meet 'marmotinni', an ASJS testing framework

2013-04-15 Thread Alex Harui
On 4/15/13 9:10 AM, "Tigran Najaryan" wrote: >> From: Alex Harui [mailto:aha...@adobe.com] >> >> OK, but FlexJS is essentially wrapping JS constructs and presenting >> them in AS. The goal for the components is the present the same APIs >> to the developer by wrapping and emulating where app

RE: [FalconJS] populating the 'id' property at runtime

2013-04-15 Thread Tigran Najaryan
> From: Alex Harui [mailto:aha...@adobe.com] > > And since we still need a way for folks to set the id in order to get > accessibility to work, it might be best for now to just gamble and wire > up > set_id to the id. No need for a branch. Just do it. I'll try to get > someone to think about t

RE: [FalconJS] populating the 'id' property at runtime

2013-04-15 Thread Tigran Najaryan
> > As an alternative to using the browser's native id attribute (in > cases > > where that might be a problem) you can use a data attribute: > data-flex-id="myid"> > > That sounds like the proper way to do this, if RIATest can run on that > type of attributes. Yes, RIATest can run on any public

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Alex Harui
On 4/15/13 8:27 AM, "Frédéric THOMAS" wrote: > What if some components are or are not willed by some of us, a decision as > to be taken, maybe a lazy vote could stand ? See my reply to Om. Apache does have a process as part of the IP clearance that implies that a vote is necessary. I think G

Re: View source

2013-04-15 Thread Frédéric THOMAS
ViewSource.addMenuItem(this, "srcview/index.html") does not work ? -Fred -Message d'origine- From: Kessler CTR Mark J Sent: Monday, April 15, 2013 6:01 PM To: dev@flex.apache.org Subject: View source Is there an easy way to enable "View Source" without FB? -Mark

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Alex Harui
On 4/15/13 8:09 AM, "OmPrakash Muppirala" wrote: > On Apr 15, 2013 8:02 AM, "Alex Harui" wrote: >> >> Fine with me. FWIW, I think we do need an official vote. My current >> understanding is that the only non-committer contributions that don't > need a >> vote are patches. >> > > I am sor

RE: Meet 'marmotinni', an ASJS testing framework

2013-04-15 Thread Tigran Najaryan
> From: Alex Harui [mailto:aha...@adobe.com] > > OK, but FlexJS is essentially wrapping JS constructs and presenting > them in AS. The goal for the components is the present the same APIs > to the developer by wrapping and emulating where appropriate. Sorry, I probably miss something but I do no

[jira] [Commented] (FLEX-33495) Flex FileReference.browse() opens a save dialog in Firefox - NOT an open dialog

2013-04-15 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33495?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13631815#comment-13631815 ] Mark Kessler commented on FLEX-33495: - At the moment the FileReference.browse() I'm us

[jira] [Assigned] (FLEX-33495) Flex FileReference.browse() opens a save dialog in Firefox - NOT an open dialog

2013-04-15 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler reassigned FLEX-33495: --- Assignee: Mark Kessler > Flex FileReference.browse() opens a save dialog in Firefox - NOT

View source

2013-04-15 Thread Kessler CTR Mark J
Is there an easy way to enable "View Source" without FB? -Mark

Re: [FalconJS] populating the 'id' property at runtime

2013-04-15 Thread Alex Harui
On 4/15/13 7:45 AM, "Erik de Bruin" wrote: >> As an alternative to using the browser's native id attribute (in cases where >> that might be a problem) you can use a data attribute: > data-flex-id="myid"> > > That sounds like the proper way to do this, if RIATest can run on that > type of attr

Re: CS Extensions

2013-04-15 Thread Alex Harui
On 4/15/13 1:19 AM, "Harbs" wrote: >> >>> 2) CS Extensions have dependencies on a number of Adobe swcs. How do we >>> handle the project vis a vis Apache's policies and binaries? I don't think >>> those dependencies can be includedŠ >>> >>> >> We can always have a build script that downloa

Re: [FalconJX] JSGoogEmitter.emitMethod

2013-04-15 Thread Gordon Smith
> the code calls "super()", but there is no super class The implicit superclass is Object. - Gordon Sent from my iPad On Apr 15, 2013, at 7:07 AM, "Erik de Bruin" wrote: > Cyrill, > > I'm (usually) not easily offended ;-) My code is written in a > "whatever gets me there first" style, so if

[jira] [Created] (FLEX-33495) Flex FileReference.browse() opens a save dialog in Firefox - NOT an open dialog

2013-04-15 Thread James Chow (JIRA)
James Chow created FLEX-33495: - Summary: Flex FileReference.browse() opens a save dialog in Firefox - NOT an open dialog Key: FLEX-33495 URL: https://issues.apache.org/jira/browse/FLEX-33495 Project: Apac

RE: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Kessler CTR Mark J
I'm guessing we are going to need these for the Flex site when we figure them out. 1. Steps / requirements for new components. 2. Steps / requirements for new Features that add onto existing components. -Mark -Original Message- From: omup...@gmail.com [mailto:omup...@gmail.com] On B

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Frédéric THOMAS
What if some components are or are not willed by some of us, a decision as to be taken, maybe a lazy vote could stand ? -Fred -Message d'origine- From: OmPrakash Muppirala Sent: Monday, April 15, 2013 5:09 PM To: dev@flex.apache.org Subject: Re: [DISCUSS] Components donation (was: Com

Re: CS Extensions

2013-04-15 Thread Alex Harui
FWIW, Adobe made the CS extension for PS available here: http://download.macromedia.com/pub/photoshop/photoshopcs5_fxg_p2_mac_093010. zxp http://download.macromedia.com/pub/photoshop/photoshopcs5_fxg_p2_win32_09301 0.zxp http://download.macromedia.com/pub/photoshop/photoshopcs5_fxg_p2_win64_09301

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread OmPrakash Muppirala
On Apr 15, 2013 8:02 AM, "Alex Harui" wrote: > > Fine with me. FWIW, I think we do need an official vote. My current > understanding is that the only non-committer contributions that don't need a > vote are patches. > I am sorry, but I don't think that is a vote is required. Can you point us t

Re: Meet 'marmotinni', an ASJS testing framework

2013-04-15 Thread Alex Harui
On 4/15/13 12:39 AM, "Tigran Najaryan" wrote: >> OK, but given that we trans-compile AS to JS and your test language is ES- >> like, there is no way to wrap things so they work? > > I don't think so. The problem is that tests on Flex apps compiled to SWF use > action names specific to each comp

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Arnoud Bos
+ 1, the dual slider looks very nice and useful, arnoud On 15-04-2013, at 15:05, Harbs wrote: > I agree. > > Harbs > > On Apr 15, 2013, at 3:31 PM, Frédéric THOMAS wrote: > >> Hi all, >> >> Jérémy Reynaud, CTO and co-founder of KeepCore, proposes to donated 2 of >> their components [1], a

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Alex Harui
Fine with me. FWIW, I think we do need an official vote. My current understanding is that the only non-committer contributions that don't need a vote are patches. On 4/15/13 6:05 AM, "Harbs" wrote: > I agree. > > Harbs > > On Apr 15, 2013, at 3:31 PM, Frédéric THOMAS wrote: > >> Hi all, >>

Re: [FalconJS] populating the 'id' property at runtime

2013-04-15 Thread Erik de Bruin
> As an alternative to using the browser's native id attribute (in cases where > that might be a problem) you can use a data attribute: data-flex-id="myid"> That sounds like the proper way to do this, if RIATest can run on that type of attributes. I didn't check, but doesn't the compiler on the

Re: [FalconJS] populating the 'id' property at runtime

2013-04-15 Thread Kevin Newman
There are issues with the id of elements in HTML being unique. If they are not unique, they seem to have a negative affect on screen readers. I don't know if that would be a reason to disabled that, but it's something to know. It's for this reason (and the fact that document.getElementById onl

Re: [FalconJX] JSGoogEmitter.emitMethod

2013-04-15 Thread Erik de Bruin
See, I'd never have thought to look that deep into the abyss of the SDK :-) Go forth and fix! :) EdB On Mon, Apr 15, 2013 at 4:29 PM, Cyrill Zadra wrote: > Cool ... I'll give it a try :-) > >> On the topic of your code: will such code ever come from Flash Builder >> (or another IDE)? I mean:

Re: [FalconJX] JSGoogEmitter.emitMethod

2013-04-15 Thread Cyrill Zadra
Cool ... I'll give it a try :-) > On the topic of your code: will such code ever come from Flash Builder > (or another IDE)? I mean: the code calls "super()", but there is no > super class... Not saying we shouldn't handle this properly, just want > to make sure I understand the test case. Yes fr

Re: [FalconJX] JSGoogEmitter.emitMethod

2013-04-15 Thread Erik de Bruin
Cyrill, I'm (usually) not easily offended ;-) My code is written in a "whatever gets me there first" style, so if you want to break it up, please feel free to refactor! On the topic of your code: will such code ever come from Flash Builder (or another IDE)? I mean: the code calls "super()", but t

Re: [FalconJx] JSGoogEmitter ClasstCastException

2013-04-15 Thread Cyrill Zadra
Yep .. try to help you out. Cyrill On Mon, Apr 15, 2013 at 4:14 PM, Erik de Bruin wrote: > Cyrill, > > Excellent contribution, thank you. While you're on a roll, would you > mind having a look at some of the ToDo's scattered throughout the > code? > > Only one technical detail: if you're using E

[FalconJX] JSGoogEmitter.emitMethod

2013-04-15 Thread Cyrill Zadra
HI Erik Got following scenario: public function TestClass() { super(); } JSGoogEmiter produces following javascript -> /** * @constructor */ TestClass = function() { var self = this; goog.base(this); }; .. which produces a google closure error -> ERROR - incorrect use o

Re: Git equiv of viewvc?

2013-04-15 Thread Frédéric THOMAS
As you like. -Fred -Message d'origine- From: Harbs Sent: Monday, April 15, 2013 3:04 PM To: dev@flex.apache.org Subject: Re: Git equiv of viewvc? Well, I did write "project progress". ;-) If you think "commit history" is better, I'll be happy to change it. I thought a generalized ter

Re: Git merge of README and RELEASE_NOTES

2013-04-15 Thread Frédéric THOMAS
From your clean develop branch: git checkout origin/release4.9 RELEASE_NOTES git commit -m "Merge RELEASE_NOTES, etc.. from release4.9 branch" git push -Message d'origine- From: Justin Mclean Sent: Monday, April 15, 2013 10:26 AM To: dev@flex.apache.org Subject: Git merge of README

Re: [DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Harbs
I agree. Harbs On Apr 15, 2013, at 3:31 PM, Frédéric THOMAS wrote: > Hi all, > > Jérémy Reynaud, CTO and co-founder of KeepCore, proposes to donated 2 of > their components [1], a dual slider[2] and a progress spinner[3], is there > any interests accepting those components as part of the Flex

Re: Git equiv of viewvc?

2013-04-15 Thread Harbs
Well, I did write "project progress". ;-) If you think "commit history" is better, I'll be happy to change it. I thought a generalized term was more accurate. The reason I linked to the graph was that I thought the graph is a nice visualization and it's more obvious how to get to the file view

Re: Git equiv of viewvc?

2013-04-15 Thread Frédéric THOMAS
I think you can tell them to review the commit history, in that case, the link you provided is ok, or you keep what you wrote and send them to the browse link, just swap graph with browse in the link you provided. -Fred -Message d'origine- From: Harbs Sent: Monday, April 15, 2013 2:4

Re: Git equiv of viewvc?

2013-04-15 Thread Harbs
Yes. Is that a problem? On Apr 15, 2013, at 3:39 PM, Frédéric THOMAS wrote: > I just noticed from the commit you just did, that you send the user to the > commit graph history instead of the file browsing link. > > -Fred > > -Message d'origine- From: Harbs > Sent: Monday, April 15, 201

Re: Git equiv of viewvc?

2013-04-15 Thread Frédéric THOMAS
I just noticed from the commit you just did, that you send the user to the commit graph history instead of the file browsing link. -Fred -Message d'origine- From: Harbs Sent: Monday, April 15, 2013 2:21 PM To: dev@flex.apache.org Subject: Re: Git equiv of viewvc? Nice! I'll add this

[DISCUSS] Components donation (was: Components donation)

2013-04-15 Thread Frédéric THOMAS
Hi all, Jérémy Reynaud, CTO and co-founder of KeepCore, proposes to donated 2 of their components [1], a dual slider[2] and a progress spinner[3], is there any interests accepting those components as part of the Flex-sdk ? I personally think the DualSlider could be a great addition, maybe the

Re: Git equiv of viewvc?

2013-04-15 Thread Harbs
Nice! I'll add this to the web page… On Apr 15, 2013, at 2:37 PM, Frédéric THOMAS wrote: > Now we have FishEye, https://fisheye6.atlassian.com/browse/flex-sdk and > https://fisheye6.atlassian.com/graph/flex-sdk should give you what you need > > -Fred > > -Message d'origine- From: Cyri

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Harbs
Thanks. I changed it. On Apr 15, 2013, at 2:57 PM, Frédéric THOMAS wrote: > 'git format-patch --stdout > .patch' where is the > branch you want your patch be merged into from whether the branch you're > working on, you can omit it if the origin and destination branch are the same > and , the

Re: Components donation

2013-04-15 Thread Erik de Bruin
I don't think a VOTE is strictly necessary. A DISCUSS might be nice, though. Also, we need to make sure all legal obligations are met and all proper documents are filed. When in doubt, we need to check with Apache's legal department, I think. EdB On Mon, Apr 15, 2013 at 2:08 PM, Frédéric THOMAS

Re: Jenkins and git

2013-04-15 Thread Frédéric THOMAS
Once fixed in the non-Jenkins environment, I can give a hand with Git if someone want to fix it in Jenkins. -Fred -Message d'origine- From: OmPrakash Muppirala Sent: Monday, April 15, 2013 3:56 AM To: dev@flex.apache.org Subject: Re: Jenkins and git On Apr 14, 2013 6:52 PM, "Justin M

Re: Components donation

2013-04-15 Thread Frédéric THOMAS
Hi guys, Is there someone who can indicate the next steps or if we need a vote before accepting any new components ? Thanks, -Fred -Message d'origine- From: Frédéric THOMAS Sent: Tuesday, March 12, 2013 10:01 AM To: dev@flex.apache.org Subject: Re: Components donation Hi Jérémy, E

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Frédéric THOMAS
'git format-patch --stdout > .patch' where is the branch you want your patch be merged into from whether the branch you're working on, you can omit it if the origin and destination branch are the same and , the Jira Issue Id relative to your patch. -Fred -Message d'origine- From: H

Re: Git equiv of viewvc?

2013-04-15 Thread Cyrill Zadra
Oh yeah... Even better ;-). Thanks Cyrill On Mon, Apr 15, 2013 at 7:37 PM, Frédéric THOMAS wrote: > Now we have FishEye, https://fisheye6.atlassian.com/browse/flex-sdk and > https://fisheye6.atlassian.com/graph/flex-sdk should give you what you need > > -Fred > > -Message d'origine- From

Re: Git equiv of viewvc?

2013-04-15 Thread Frédéric THOMAS
Now we have FishEye, https://fisheye6.atlassian.com/browse/flex-sdk and https://fisheye6.atlassian.com/graph/flex-sdk should give you what you need -Fred -Message d'origine- From: Cyrill Zadra Sent: Monday, April 15, 2013 12:29 PM To: dev@flex.apache.org Subject: Re: Git equiv of view

[jira] [Resolved] (FLEX-33476) Get Involved Page Outdated

2013-04-15 Thread Harbs (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Harbs resolved FLEX-33476. -- Resolution: Fixed > Get Involved Page Outdated > -- > > Key: FLEX-3

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Harbs
Yeah. I was wondering about that. In the meanwhile, I published it. If someone with more git knowhow wants to change that, feel free… ;-) On Apr 15, 2013, at 12:31 PM, Justin Mclean wrote: > HI, > >> Please check my corrections before I publish it: >> http://flex.staging.apache.org/community-g

RE: [DISCUSS] How do we want to handle Whiteboard?

2013-04-15 Thread Kessler CTR Mark J
Oops, I posted the link [1] in my user page, but not in the dev list. [1] https://github.com/KesslerConsulting/example -Mark -Original Message- From: omup...@gmail.com [mailto:omup...@gmail.com] On Behalf Of OmPrakash Muppirala Sent: Monday, April 15, 2013 4:16 AM To: dev@flex.apache.or

Re: Git equiv of viewvc?

2013-04-15 Thread Cyrill Zadra
On bottom of page https://git-wip-us.apache.org/repos/asf?p=flex-sdk.git all branches are listed. Click tree on "develop" an you'll be there :-). On 15.04.2013, at 16:07, Justin Mclean wrote: > Hi, > >> What is about https://git-wip-us.apache.org/repos/asf?p=flex-sdk.git > That better. > >>

Re: [FalconJS] populating the 'id' property at runtime

2013-04-15 Thread Erik de Bruin
I can't think of no other reason than "it wasn't needed". Unless somehow having an id attribute would mess with JS calls to the object that has the element... But since all JS objects exist in separate namespaces, I don't think it should matter. How about you submit a patch, I create a new public

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Justin Mclean
Hi, Or "git diff"??? Justin

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Justin Mclean
HI, > Please check my corrections before I publish it: > http://flex.staging.apache.org/community-getinvolved.html I go ahead and publish it has to better than what was there before :-) Perhaps someone can commit on "git show" vs "git format-patch" as I'm not sure what the best way of doing it.

[FalconJS] populating the 'id' property at runtime

2013-04-15 Thread Tigran Najaryan
I am trying to understand how to make sure the 'id' property is available on the DOM elements. It looks like if I simply modify function org.apache.flex.core.UIBase.prototype.set_id() to directly assign the 'value' to this.element.id it works, the id property becomes available at runtime and is sh

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Harbs
Please check my corrections before I publish it: http://flex.staging.apache.org/community-getinvolved.html On Apr 15, 2013, at 11:47 AM, Justin Mclean wrote: > Hi, > >> I'm on it. > > Thanks - much appreciated. > > Justin

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Justin Mclean
Hi, > I'm on it. Thanks - much appreciated. Justin

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Harbs
One question: There's a link for [Mustella tests][5] on the page, but there's no link on the bottom. Where's it supposed to link to? On Apr 15, 2013, at 10:54 AM, Justin Mclean wrote: > Hi, > > This page still mentions snv for creating patches - anyone want to fix? > http://flex.apache.org/com

Git merge of README and RELEASE_NOTES

2013-04-15 Thread Justin Mclean
Hi, Can someone go through the git steps required to merge the READ and RELEASE_NOTES files in the 4.9.1 branch into the current develop branch. Thanks, Justin

[jira] [Updated] (FLEX-33476) Get Involved Page Outdated

2013-04-15 Thread Harbs (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Harbs updated FLEX-33476: - Assignee: Harbs > Get Involved Page Outdated > -- > > Key: FLEX-33476

Re: Web site content need updating SVN -> Git

2013-04-15 Thread Harbs
I'm on it. Harbs On Apr 15, 2013, at 10:54 AM, Justin Mclean wrote: > Hi, > > This page still mentions snv for creating patches - anyone want to fix? > http://flex.apache.org/community-getinvolved.html > > Justin >

Re: CS Extensions

2013-04-15 Thread Harbs
I'm a bit crazy for trying to start this right now. I'm off to a conference in less than two weeks, and time is not exactly a commodity in large supply right now… ;-) It will likely remain largely a skeleton for a few weeks, but at least I can get it started. I figure the support will come in s

  1   2   >