Re: Please welcome Maurice Amsellem as our newest committer

2013-09-29 Thread Cyrill Zadra
Welcome Maurice! On Sun, Sep 29, 2013 at 4:40 PM, Erik de Bruin wrote: > Hi, > > I am pleased to announce that the Project Management Committee (PMC) > for Apache Flex has invited Maurice Amsellem to become a committer and > he has accepted. > > Maurice has been very active on the mailing lists

Re: Next release of Apache Flex

2013-09-23 Thread Cyrill Zadra
Hi I ran into a very strange RTE in ToolTipManagerImpl with ADG. In jira i a provided an example to reproduce ( usually everything works fine but in some cases the error is thrown ) and a patch. I didn't commit patch yet because i'm not really sure if it's the correct way to fix. Mustella tes

[OT] Recording of 360|Stack Web Session: This is your app on Web Components

2013-09-20 Thread Cyrill Zadra
Ist there a recording of this session? -> http://360stackwebsession2-estw.eventbrite.com/ Cyrill

Re: Convention on JIRA Issues

2013-09-18 Thread Cyrill Zadra
There is a JIRA version "Apache FlexUnit 4.2". Maybe an additional JIRA Component named FlexUnit would be helpful. Cyrill On 18.09.2013, at 19:46, "Michael A. Labriola" wrote: > > How should we specify bugs for things like FlexUnit when entering them in > JIRA to keep things a bit separate.

FlexUnit Tutorials

2013-09-16 Thread Cyrill Zadra
Hi Just pushed a branch FlexUnitTutorials in flexunit repo. It contains all tutorial sources (binaries are excluded). As an example I added a downloads.xml to Unit1/Start/FlexUnit4Training, which contains download targets for each library. A FlexUnit tutorial user could checkout the source code fo

Re: FlexUnit License

2013-09-15 Thread Cyrill Zadra
Ib.swc will need examining to find the classes within and > >hopefully the author of those classes. > > > >I'll try to find time to do that in about 14 hours if you haven't already. > > > >-Alex > > > >On 9/14/13 4:29 AM, "Cyrill Zadra&qu

Re: FlexUnit License

2013-09-14 Thread Cyrill Zadra
clue what kind of license flexunit1lib has. Cyrill On Fri, Sep 13, 2013 at 6:30 PM, Erik de Bruin wrote: > The first two are OK, the third may need something extra, according to [1] > > EdB > > 1: http://www.apache.org/legal/3party.html > > On Fri, Sep 13, 2013 at 3:58 PM, Cyr

FlexUnit License

2013-09-13 Thread Cyrill Zadra
Hi Just updated README file, which lists now all thirdparty libraries with its licenses. There are a few Apache libraries, which can be automatically downloaded in my opinion. Are BSD, MIT and CPL 1.0 compatible with Apache? Do those libraries need a prompt for a user to accept the license before

Re: [Falcon] compiling all framework SWCs

2013-09-12 Thread Cyrill Zadra
Hi Erik Some of them are already raised as JIRA [1]. regards Cyrill [1] https://issues.apache.org/jira/issues/?jql=project%20%3D%20FLEX%20AND%20component%20%3D%20Falcon%20AND%20status%20%3D%20Open%20ORDER%20BY%20priority%20DESC On Thu, Sep 12, 2013 at 5:06 PM, Erik de Bruin wrote: > Hi, > >

Re: [?Falcon?] AdvandedDataGrid error

2013-09-12 Thread Cyrill Zadra
nIndex]' is null it > will never enter the block with the assignment to 'o', therefor 'o' > can't be null. > > EdB > > > > On Thu, Sep 12, 2013 at 11:41 AM, Cyrill Zadra > wrote: > > Shouldn't there be an additiona

Re: [?Falcon?] AdvandedDataGrid error

2013-09-12 Thread Cyrill Zadra
Shouldn't there be an additional null check? o = rowIndicators[columnIndex]; if (o != null && o.parent) o.parent.removeChild(o); On Thu, Sep 12, 2013 at 10:34 AM, Erik de Bruin wrote: > I'd go with: > > var rowIndicators:Object = cellSelectionIndicators[rowData.uid]; > if (rowIndicator

Re: [?Falcon?] AdvandedDataGrid error

2013-09-12 Thread Cyrill Zadra
definitely :D.. thanks.. and change it to .. var columnIndicator:Sprite; if (rowIndicators) { columnIndicator = rowIndicators[columnIndex]; if (columnIndicator != null) { o = columnIndicator; if (o.parent) o.parent.removeChild(o); delete rowIndicators[columnIndex]; if (!atLeastOneProperty(rowInd

Re: [?Falcon?] AdvandedDataGrid error

2013-09-12 Thread Cyrill Zadra
Anybody cares if I change that line from var columnIndicator:Sprite; if (rowIndicators && (columnIndicator = rowIndicators[columnIndex])) { to var columnIndicator:Sprite = rowIndicators[columnIndex]; if (rowIndicators && columnIndicator != null) { Cyrill On Wed, Sep 11, 2013 at 4:42 PM, Er

Re: [Falcon]

2013-09-09 Thread Cyrill Zadra
e.org/jira/browse/FLEX-33718 On Fri, Sep 6, 2013 at 2:14 PM, Cyrill Zadra wrote: > Hi Falcon devs :) > > In last days I found few falcon errors and raised JIRA for them. > > There are two which we need to decide if we have to make Falcon less > strict or update code in

Re: [Falcon]

2013-09-06 Thread Cyrill Zadra
thingy that I need to set to tell the compiler where to look? I tried > > 'source-path' with full and relative paths, but the error remains. > > > > EdB > > > > > > > > On Fri, Sep 6, 2013 at 4:56 PM, Alex Harui wrote: > >> For the const

[Falcon]

2013-09-06 Thread Cyrill Zadra
Hi Falcon devs :) In last days I found few falcon errors and raised JIRA for them. There are two which we need to decide if we have to make Falcon less strict or update code in SDK and Mustella. https://issues.apache.org/jira/browse/FLEX-33714 https://issues.apache.org/jira/browse/FLEX-33706 I

Re: [Falcon] BasicTests compiles and runs

2013-09-03 Thread Cyrill Zadra
ime to test the old bugs and mustella against today's Falcon > and update the bugs, that would be great. > > Thanks, > -Alex > > On 9/3/13 8:18 PM, "Cyrill Zadra" wrote: > > >In JIRA [1] there are already a few bugs with examples posted. > > > &g

Re: [Falcon] BasicTests compiles and runs

2013-09-03 Thread Cyrill Zadra
In JIRA [1] there are already a few bugs with examples posted. Some time ago I started an google spreadsheet [2] for mustella tests compiled with Falcon. There were still some compile errors. [1] https://issues.apache.org/jira/issues/?jql=project%20%3D%20FLEX%20AND%20labels%20%3D%20Falcon%20AND%2

FlexUnit open pull request from github

2013-09-03 Thread Cyrill Zadra
Hi There are still 4 patches for FlexUnit in JIRA which needs approvment by their author. They only have to approve the move to Apache through a JIRA comment . I tried to get in contact with them but was only successful with one person. https://issues.apache.org/jira/browse/FLEX-33571 https://iss

Re: [jira] [Updated] (FLEX-33488) FlexUnit

2013-08-28 Thread Cyrill Zadra
I don't mind changing it to "FlexUnit 4.2". I just don't have the rights in JIRA so if somebody with privileges can update version label. Cyrill On Thu, Aug 29, 2013 at 12:57 PM, Justin Mclean wrote: > Hi, > > > You mean for instance "FlexUnit 4.2" instead of "FlexUnit Next"? > Yep. > > > But

Re: [jira] [Updated] (FLEX-33488) FlexUnit

2013-08-28 Thread Cyrill Zadra
You mean for instance "FlexUnit 4.2" instead of "FlexUnit Next"? But which number for next version should we use? Cyrill On Thu, Aug 29, 2013 at 12:09 PM, Justin Mclean wrote: > Hi, > > A small suggestion can we not use "FlexUnit Next" as after more than one > version has been released you don

Re: FlexUnit JIRA Releases

2013-08-28 Thread Cyrill Zadra
Thank you! On Thu, Aug 29, 2013 at 11:58 AM, Alex Harui wrote: > added > > On 8/28/13 8:43 PM, "Cyrill Zadra" wrote: > > >Hi > > > >Last version of FlexUnit was 4.1 if I'm correct. Can somebody with rights > >add two new version in JIRA? &g

FlexUnit JIRA Releases

2013-08-28 Thread Cyrill Zadra
Hi Last version of FlexUnit was 4.1 if I'm correct. Can somebody with rights add two new version in JIRA? * FlexUnit 4.1 * and als next version maybe FlexUnit 4.2 or FlexUnit Next? Thanks Cyrill

Re: FlexUnit

2013-08-28 Thread Cyrill Zadra
Great! .. I pushed my changes always to "makeFlexUnitApacheReady". Shall I merge those changes also to develop branch and continue to work on this one? Cyrill On Thu, Aug 29, 2013 at 3:29 AM, Michael A. Labriola < labri...@digitalprimates.net> wrote: > > In the FlexUnit repo right now there is

Re: adobe flex 4.6 source code

2013-08-16 Thread Cyrill Zadra
; menu where you choose "Source" which should > have a link to the opensource.adobe.com repo. > > On 8/15/13 7:24 PM, "Cyrill Zadra" wrote: > > >Hi there > > > >This belongs not direct to apache flex but is there a public repository > >for >

adobe flex 4.6 source code

2013-08-15 Thread Cyrill Zadra
Hi there This belongs not direct to apache flex but is there a public repository for adobe flex 4.6. I was searching the web but all I could find is a sourceforge project http://sourceforge.net/adobe/flexsdk/wiki/Flex%20SDK/which has no sources. Cyrill

FlexUnit release

2013-08-01 Thread Cyrill Zadra
33488 Cyrill On Wed, Jul 31, 2013 at 1:18 PM, Erik de Bruin wrote: > Great work Cyrill! > > Are you planning on doing a release or will that be some time in the future? > > EdB > > > > On Wed, Jul 31, 2013 at 2:55 AM, Cyrill Zadra wrote: >> Hi >> >> Finally

FlexUnit jenkins job up and running

2013-07-30 Thread Cyrill Zadra
Hi Finally FlexUnit jenkins job is up and running. Job details and results can be found here -> https://builds.apache.org/job/flex-flexunit/ Cyrill

Re: Attention: another possible show stopper, please verify

2013-07-26 Thread Cyrill Zadra
With following steps I could create new flash builder projects again with no errors. 1) Changed element in flex-sdk-description.xml from 4.10.0 to 4.9.0 2) Configure SDK in Flash Builder 3) Create new Project with newly configured SDK My sdk was installed with Apache Flex Installer. So I would s

Re: Attention: another possible show stopper, please verify

2013-07-26 Thread Cyrill Zadra
Hi Erik Yes I can also reproduce. When I choose Flex SDK 4.6 instead of an Apache Flex SDK to create a project it uses a correct template. Is there somwhere still a bug database for flash builder? regards Cyrill On Fri, Jul 26, 2013 at 7:12 PM, Justin Mclean wrote: > Hi, > > Can reproduce. Loo

Re: [VOTE] Apache Flex 4.10.0 Release Candidate 3

2013-07-23 Thread Cyrill Zadra
Hi +1 binding Finally had a moment to test a few things. Testing on Windows 7, Flash Player 11.7 and AIR 11.7 * installed sdk rc3 through installer * imported sdk in flash builder 4.7 * compiled and tested successfully a small mobile project * compiled and tested successfully a small web projec

Re: FlexUnit

2013-06-23 Thread Cyrill Zadra
f the owner/author of the source files did not give permission, we can't > host them in Apache Git. > > On 6/22/13 10:56 PM, "Cyrill Zadra" wrote: > >>Or maybe we should just add those projects to our flexunit git repo in >>a new folder called FlexUnitExamples.

Re: FlexUnit

2013-06-22 Thread Cyrill Zadra
Or maybe we should just add those projects to our flexunit git repo in a new folder called FlexUnitExamples. And on the website we can reference our git repo. Cyrill On Sun, Jun 23, 2013 at 1:45 PM, Cyrill Zadra wrote: > For each FlexUnit tutorial unit there is a flash builder example > p

Re: FlexUnit

2013-06-22 Thread Cyrill Zadra
ct? Cyrill On Sun, Jun 23, 2013 at 1:11 PM, Alex Harui wrote: > What are these binaries? Why do we not have source for them? > > On 6/22/13 8:26 PM, "Cyrill Zadra" wrote: > >>Hi Nick >> >>It would be great if you can help with web content. I just uploaded

Re: FlexUnit

2013-06-22 Thread Cyrill Zadra
Hi Nick It would be great if you can help with web content. I just uploaded to JIRA all flexunit web content except the flash builder project files, which are referenced. As Mike mentioned they contain external binaries which can't be distributed through Apache. So what are we going to to with th

[jira] [Updated] (FLEX-33490) FlexUnit Tutorials

2013-06-22 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33490?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33490: Attachment: FlexUnitTutorials-tutorial-examples-excluded.zip > FlexUnit Tutori

Re: FlexUnit

2013-06-13 Thread Cyrill Zadra
Hey Mike > As code is here now, etc. I am going to begin taking the external build > server down. Eventually the website should also be downed and all traffic > redirect here. I think build server can be taken down. But maybe it's better to wait for a first release of FlexUnit under Apache befo

Re: FlexUnit Wiki Status

2013-06-08 Thread Cyrill Zadra
Thanks Mike.. I'll have a look at it. Cyrill On Wed, Jun 5, 2013 at 7:57 AM, Michael A. Labriola wrote: >>.. you could add those files to >>https://issues.apache.org/jira/browse/FLEX-33490. If possible also html web >>content as a zip archive. So that we have got everything collected here at >

Re: FlexUnit Wiki Status

2013-06-02 Thread Cyrill Zadra
.. you could add those files to https://issues.apache.org/jira/browse/FLEX-33490. If possible also html web content as a zip archive. So that we have got everything collected here at apache. Cyrill On Fri, May 31, 2013 at 1:19 AM, Michael A. Labriola wrote: >>Mhh good question... I don't know if

Re: [VOTE] Oprtional MVC/IOC Frameworks Donation: Swiz Framework Donation

2013-06-02 Thread Cyrill Zadra
+1 On 02.06.2013, at 17:57, Carlos Rovira wrote: > This vote comes from an original vote thread declared as null (see original > thread for info about motivations): > > http://markmail.org/message/o6zjmorfh4lxuygo > > The new vote thread is considering the donation of the optional MVC/IOC > Sw

Re: [VOTE] Let's move JIRA emails to a new list

2013-05-31 Thread Cyrill Zadra
+1 On Fri, May 31, 2013 at 6:54 PM, Kessler CTR Mark J wrote: > +1 > > Will be happy to be able to filter the messages apart from the dev messages > more easily. > > -Mark > > -Original Message- > From: Erik de Bruin [mailto:e...@ixsoftware.nl] > Sent: Friday, May 31, 2013 6:47 AM > To:

Re: FlexUnit Wiki Status

2013-05-29 Thread Cyrill Zadra
Hi Mike My keys Ctrl, V and C still need rest ;-). Mhh good question... I don't know if we have to generate mdtext files or if it's possible to move over the html itself. Does anybody know? Thanks Cyrill On Tue, May 28, 2013 at 7:57 AM, Michael A. Labriola wrote: >>http://docs.flexunit.org/ind

Re: [VOTE] Swiz Framework Donation to Apache Flex

2013-05-29 Thread Cyrill Zadra
+1 On Thu, May 30, 2013 at 10:08 AM, Frédéric THOMAS wrote: > +1 (binding) > > -Message d'origine- From: Justin Mclean > Sent: Thursday, May 30, 2013 3:21 AM > > To: dev@flex.apache.org > Subject: Re: [VOTE] Swiz Framework Donation to Apache Flex > > Hi, > >> -1 Binding, unless there are

FlexUnit Wiki Status

2013-05-27 Thread Cyrill Zadra
Hi FlexUnit's wiki is now migrated from http://docs.flexunit.org/index.php?title=Main_Page to https://cwiki.apache.org/confluence/display/FLEX/FlexUnit. There are still format errors but the linking issues should be all fixed by now. Happy reading ;-). Cyrill

[jira] [Resolved] (FLEX-33491) FlexUnit Wiki

2013-05-26 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra resolved FLEX-33491. - Resolution: Fixed Fix Version/s: Apache Flex Next Moved docs.flexunit.org over to https

[jira] [Commented] (FLEX-33571) Adds class-level rules

2013-05-26 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13667253#comment-13667253 ] Cyrill Zadra commented on FLEX-33571: - Wrote an E-Mail to https://github

[jira] [Commented] (FLEX-33572) further implemented the automated sonatype OSS deployment of the FlexUnit artifacts

2013-05-25 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13667211#comment-13667211 ] Cyrill Zadra commented on FLEX-33572: - Wrote an E-Mail to https://github.com/Slev

Re: Jenkins build and FlexUnit needs installed SDK

2013-05-25 Thread Cyrill Zadra
>What's the issue? Can it run the install scripts to create a working SDK? >Could it use the release target version? First I had an issoue with ant library (flexTasks.jar). In a installed SDK it's ${FLEX_HOME}/ant/lib/flexTasks.jar and in a builded sdk it's ${FLEX_HOME}/lib/flexTasks.jar. So I up

Re: FlexUnit

2013-05-25 Thread Cyrill Zadra
I created for each pullrequest a JIRA issue. Would it be enough if those commiter give their ok through a comment on JIRA task? https://issues.apache.org/jira/browse/FLEX-33571 https://issues.apache.org/jira/browse/FLEX-33572 https://issues.apache.org/jira/browse/FLEX-33573 https://issues.apache.o

[jira] [Updated] (FLEX-33575) Working timeout for hanging tests and passing arguments to ADL

2013-05-25 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33575: Attachment: 8.patch We need confirmation from https://github.com/llamahunter to apply this patch

[jira] [Created] (FLEX-33575) Working timeout for hanging tests and passing arguments to ADL

2013-05-25 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33575: --- Summary: Working timeout for hanging tests and passing arguments to ADL Key: FLEX-33575 URL: https://issues.apache.org/jira/browse/FLEX-33575 Project: Apache Flex

[jira] [Created] (FLEX-33573) Escape type attribute in CIListener emitted tags.

2013-05-25 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33573: --- Summary: Escape type attribute in CIListener emitted tags. Key: FLEX-33573 URL: https://issues.apache.org/jira/browse/FLEX-33573 Project: Apache Flex Issue

[jira] [Updated] (FLEX-33574) Adds the ability to specify jvm arguments to use for the mxmlc command.

2013-05-25 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33574?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33574: Attachment: 9.patch We need confirmation from https://github.com/kennelbound to apply this patch

[jira] [Updated] (FLEX-33573) Escape type attribute in CIListener emitted tags.

2013-05-25 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33573?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33573: Attachment: 11.patch We need confirmation from https://github.com/yjo to apply this patch

[jira] [Updated] (FLEX-33572) further implemented the automated sonatype OSS deployment of the FlexUnit artifacts

2013-05-25 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33572: Attachment: 12.patch We need confirmation from https://github.com/SlevinBE to apply this patch

[jira] [Created] (FLEX-33574) Adds the ability to specify jvm arguments to use for the mxmlc command.

2013-05-25 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33574: --- Summary: Adds the ability to specify jvm arguments to use for the mxmlc command. Key: FLEX-33574 URL: https://issues.apache.org/jira/browse/FLEX-33574 Project: Apache

[jira] [Updated] (FLEX-33571) Adds class-level rules

2013-05-25 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33571: Attachment: 13.patch We need a confirmation from https://github.com/alewisohn to apply this patch

[jira] [Created] (FLEX-33572) further implemented the automated sonatype OSS deployment of the FlexUnit artifacts

2013-05-25 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33572: --- Summary: further implemented the automated sonatype OSS deployment of the FlexUnit artifacts Key: FLEX-33572 URL: https://issues.apache.org/jira/browse/FLEX-33572

[jira] [Created] (FLEX-33571) Adds class-level rules

2013-05-25 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33571: --- Summary: Adds class-level rules Key: FLEX-33571 URL: https://issues.apache.org/jira/browse/FLEX-33571 Project: Apache Flex Issue Type: Improvement

FlexUnit - FlexUnit4AirCIListener targets player 10.0.0

2013-05-25 Thread Cyrill Zadra
Hey Mike FlexUnit4AirCIListener build.xml needs flashplayer version 10.0.0 (-target-player=10.0.0). Is there any specific reason that only this projects targets this player or can it be removed? Cyrill

Jenkins build and FlexUnit needs installed SDK

2013-05-25 Thread Cyrill Zadra
I tried to configure jenkins job for flexunit but at the end I figured out it needs a installed Apache Flex SDK on jenkins server and can't just use a sdk builded by flex-sdk jenkins job. Is there anyone who can help me here out to get an SDK 4.9.1 installation on windows jenkins server? Thanks C

Re: FlexUnit

2013-05-23 Thread Cyrill Zadra
MANIFEST.MF isn't really helpful to me :(. Manifest-Version: 1.0 Ant-Version: Apache Ant 1.7.0 Project-Name: Saxon-HE Created-By: 10.0-b19 (Sun Microsystems Inc.) Main-Class: net.sf.saxon.Transform On Fri, May 24, 2013 at 11:31 AM, Michael A. Labriola wrote: >>I have no idea which version saxon9

[jira] [Assigned] (FLEX-33491) FlexUnit Wiki

2013-05-23 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra reassigned FLEX-33491: --- Assignee: Cyrill Zadra > FlexUnit Wiki > - > >

Re: FlexUnit

2013-05-23 Thread Cyrill Zadra
I have no idea which version saxon9he.jar archive file has In folder FlexUnit4Test\libs\build. Anyone who can help here out? Cyrill On Wed, May 22, 2013 at 9:53 PM, Cyrill Zadra wrote: > Just to let you know.. I pushed a branch "makeFlexUnitApacheReady" to > flex-flexunit re

Re: FlexUnit

2013-05-23 Thread Cyrill Zadra
> FWIW, there are also a number of great pull requests currently open on the > repo. I have not applied any of them during this process as I was honestly > unsure of how to handle that after we donated the code but before Apache > imported it. So, if anyone is inclined, I think there is good stu

Re: FlexUnit

2013-05-22 Thread Cyrill Zadra
Just to let you know.. I pushed a branch "makeFlexUnitApacheReady" to flex-flexunit repos. It contains following work: * removed license headers * added apache headers * removed most of the jar's and swc and added downloads.xml to download swc and jars * added a rat-report ant task. following swc

Re: [VOTE] Use GitHub based Whiteboard

2013-05-21 Thread Cyrill Zadra
+1 ... Thank you Om. On 22.05.2013, at 03:57, OmPrakash Muppirala wrote: > Hi, > > Here is the proposal [1] > > Here is [DISCUSS] thread [2] > > Please vote as follows: > > +1 (Approve) > -1 (Don't approve) with a reason > 0 (Don't care) > > Also denote binding if you are a PMC member. > >

Re: FlexUnit

2013-05-21 Thread Cyrill Zadra
But I can't find fluint version 1_2 on http://code.google.com/p/fluint/ .. or is it https://fluint.googlecode.com/files/fluint-1.1.1.swc ? Cyrill On Tue, May 21, 2013 at 10:25 PM, Michael A. Labriola wrote: >> fluint-1_2.swc >>I think this is part of the current flex unit - not 100% sure. Code i

Re: FlexUnit

2013-05-21 Thread Cyrill Zadra
Hi In flex unit projects following external swc are used. So if I understood it correct those swc needs to be removed and during build process process there should be an ant task, which downloads those files. FlexUnit1Lib.swc hamcrest-as3-flex-1.1.3.swc CoverageAgent.swc fluint-1_2.swc mock-as3.s

[jira] [Updated] (FLEX-33357) Jenkins job for Falcon projects

2013-05-17 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33357?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33357: Description: Projects: compiler - run on windows, mac os x and linux compiler.tests - should run

Re: FlexUnit

2013-05-16 Thread Cyrill Zadra
Is there already such a script, which was used for flex-sdk or falcon project? Cyrill On 5/16/13, Justin Mclean wrote: > Hi, > >> If everything is ok I'll start to remove all binaries >> and add necessary license headers (for this task I need rat?) . > > Rat will check that files have licences b

Re: FlexUnit

2013-05-15 Thread Cyrill Zadra
x/git/flex- >>> flexunit/FlexUnit4AirCIListener/build.xml. >>> >>> Since I don't have that version (way too old!), it's probably not the >>> repo's fault. >>> >>> I'll leave this up to the experts now :-) >>> >>>

Re: FlexUnit

2013-05-15 Thread Cyrill Zadra
gt; On May 15, 2013, at 9:30 AM, Carlos Rovira > wrote: > >> Great! I voted it right now >> >> thanks >> >> 2013/5/15 Cyrill Zadra >> >>> https://issues.apache.org/jira/browse/INFRA-6152 >>> >>> Cyrill >>> >>> On 1

Re: FlexUnit

2013-05-14 Thread Cyrill Zadra
https://issues.apache.org/jira/browse/INFRA-6152 Cyrill On 15.05.2013, at 12:12, Justin Mclean wrote: > Hi, > >> I'm still waiting for Infra .. They need to import github flexunit repos. > > What's the INFRA JIRA? > > Justin

Re: FlexUnit

2013-05-14 Thread Cyrill Zadra
I'm still waiting for Infra .. They need to import github flexunit repos. Cyrill On 15.05.2013, at 10:45, Justin Mclean wrote: > Hi, > > What the situation with Flex Unit donation is there any hold ups or is it > just that people don't have time? > > Thanks, > Justin >

Re: [Poll] Apache Flex next version number

2013-05-10 Thread Cyrill Zadra
Number 1 sounds great. On Fri, May 10, 2013 at 9:15 PM, Nicholas Kwiatkowski wrote: > My vote is for #1, as you already guessed from my commits ;) > > > On Thu, May 9, 2013 at 11:46 PM, Justin Mclean > wrote: > >> Hi, >> >> Assuming we start working on a new release in the near future what shoul

Re: [Mentor] & [PPMC] FlexUnit

2013-04-28 Thread Cyrill Zadra
Jira task to move flexunit sources https://issues.apache.org/jira/browse/INFRA-6152 is still open.. It might help to speed up the migration if you vote for this task. Thx Cyrill

Re: [FalconJX] JSGoogEmitter.emitMethod

2013-04-16 Thread Cyrill Zadra
shouldn't handle this properly, just want > to make sure I understand the test case. > > EdB > > > > On Mon, Apr 15, 2013 at 3:17 PM, Cyrill Zadra wrote: >> HI Erik >> >> Got following scenario: >> >> public function TestClass() >>

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 ClasstCastException

2013-04-15 Thread Cyrill Zadra
chnical detail: if you're using Eclipse, can you please use > this 'formatter' before committing code: > > https://issues.apache.org/jira/browse/FLEX-33485 > > There are some whitespace issues with your commit that will confuse > the diffs between committers. >

[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 Cyrill Zadra
-Message d'origine- From: Cyrill Zadra > Sent: Monday, April 15, 2013 12:29 PM > To: dev@flex.apache.org > Subject: Re: Git equiv of viewvc? > > > On bottom of page https://git-wip-us.apache.org/repos/asf?p=flex-sdk.git all > branches are listed. > > Click tree on "de

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: Git equiv of viewvc?

2013-04-15 Thread Cyrill Zadra
What is about https://git-wip-us.apache.org/repos/asf?p=flex-sdk.git and for branch 'develop' https://git-wip-us.apache.org/repos/asf?p=flex-sdk.git;a=tree;h=refs/heads/develop;hb=develop ? Sent from my iPhone On 15.04.2013, at 15:10, Justin Mclean wrote: > Hi, > > When we were in SVN we ha

[FalconJx] JSGoogEmitter ClasstCastException

2013-04-14 Thread Cyrill Zadra
Hi Just pushed a fix to develop branch which fixes a ClassCastException for following scenario. package vo { public interface ITestInterface { } } package vo { public class TestObject implements ITestInterface { public function TestObject() { } } } Erik you may have a review look at it

[jira] [Created] (FLEX-33494) Migrate open jira issues from adobe

2013-04-14 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33494: --- Summary: Migrate open jira issues from adobe Key: FLEX-33494 URL: https://issues.apache.org/jira/browse/FLEX-33494 Project: Apache Flex Issue Type: Sub-task

[jira] [Created] (FLEX-33493) Migrate FlexUnit build scripts

2013-04-14 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33493: --- Summary: Migrate FlexUnit build scripts Key: FLEX-33493 URL: https://issues.apache.org/jira/browse/FLEX-33493 Project: Apache Flex Issue Type: Sub-task

Re: [Mentor] & [PPMC] FlexUnit

2013-04-14 Thread Cyrill Zadra
> There were only a few open issues. We will need to recreate as they were > apparently lost when Adobe's jira moved. Are those in adobe's jira? Tried to find them but without succes. Cyrill

[jira] [Updated] (FLEX-33492) Migrate FlexUnit open pull request

2013-04-14 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33492?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33492: Description: https://github.com/flexunit/flexunit/pulls > Migrate FlexUnit open pull requ

[jira] [Updated] (FLEX-33492) Migrate FlexUnit open pull request

2013-04-14 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33492?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33492: Summary: Migrate FlexUnit open pull request (was: Migrate Open Pull Request) > Migr

[jira] [Created] (FLEX-33492) Migrate Open Pull Request

2013-04-14 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33492: --- Summary: Migrate Open Pull Request Key: FLEX-33492 URL: https://issues.apache.org/jira/browse/FLEX-33492 Project: Apache Flex Issue Type: Sub-task

Re: [Mentor] & [PPMC] FlexUnit

2013-04-14 Thread Cyrill Zadra
Infra task to import git repo is created. https://issues.apache.org/jira/browse/INFRA-6152 Sent from my iPhone On 14.04.2013, at 11:20, "Michael A. Labriola" wrote: >> Just to double check: The sources on >> https://github.com/flexunit/flexunit are the most up-to-date? > > Yes, those are th

Re: [Mentor] & [PPMC] FlexUnit

2013-04-13 Thread Cyrill Zadra
> Right now the version in git references the FlexUnit .9 swc and the > hamcrest.swc. Adobe hasn't donated FlexUnit .9 so we really can't just > include that and although there was talk of moving hamcrest here, that hasn't > happened. A long while ago, I made a version that removed these depende

[jira] [Created] (FLEX-33491) FlexUnit Wiki

2013-04-13 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33491: --- Summary: FlexUnit Wiki Key: FLEX-33491 URL: https://issues.apache.org/jira/browse/FLEX-33491 Project: Apache Flex Issue Type: Sub-task Reporter

[jira] [Created] (FLEX-33490) FlexUnit Tutorials

2013-04-13 Thread Cyrill Zadra (JIRA)
Cyrill Zadra created FLEX-33490: --- Summary: FlexUnit Tutorials Key: FLEX-33490 URL: https://issues.apache.org/jira/browse/FLEX-33490 Project: Apache Flex Issue Type: Sub-task

Re: [FALCON] Jenkins job

2013-04-13 Thread Cyrill Zadra
Well maybe I should have said windows and mac os x? I thought it's not possible to build a sdk on linux. Cyrill On Sun, Apr 14, 2013 at 3:15 AM, Gordon Smith wrote: > What part is Windows-only? > > - Gordon > > -Original Message- > From: Cyrill Zadra [mailto

Re: [Mentor] & [PPMC] FlexUnit

2013-04-13 Thread Cyrill Zadra
Just to double check: The sources on https://github.com/flexunit/flexunit are the most up-to-date? Cyrill On Sun, Apr 14, 2013 at 4:29 AM, Michael A. Labriola wrote: >>Beside the source code there is also documentation wiki, asdoc, open issues >>(are there open issues? :)) we might bring over t

[jira] [Commented] (FLEX-33120) Please check support for ExactValue initializer

2013-04-13 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33120?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13631116#comment-13631116 ] Cyrill Zadra commented on FLEX-33120: - In dev list ( http://markmail.org/th

[jira] [Updated] (FLEX-33120) Please check support for ExactValue initializer

2013-04-13 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33120?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33120: Component/s: MXML Compiler > Please check support for ExactValue initiali

[jira] [Updated] (FLEX-33120) Please check support for ExactValue initializer

2013-04-13 Thread Cyrill Zadra (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33120?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Cyrill Zadra updated FLEX-33120: Attachment: workiingExample.jpg Adding compiler option -keep-generated-actionscript=true solves

  1   2   3   >