On Tue, Apr 9, 2013 at 10:18 PM, Alex Harui wrote:
> Good progress. I didn't look at your implementation, but some comments
> inline.
>
>
> On 4/9/13 7:40 PM, "OmPrakash Muppirala" wrote:
>
> > Hi,
> >
> > Here is some more experimental work based on FXG to SVG transformation.
> >
> >
> http://
[
https://issues.apache.org/jira/browse/FLEX-33482?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13627529#comment-13627529
]
Tigran Najaryan commented on FLEX-33482:
The exact command line is:
mxmlc
+env.P
Good progress. I didn't look at your implementation, but some comments
inline.
On 4/9/13 7:40 PM, "OmPrakash Muppirala" wrote:
> Hi,
>
> Here is some more experimental work based on FXG to SVG transformation.
>
> http://people.apache.org/~bigosmallm/fxg2svg/buttonskinjs/embedButtons.html
>
I probably do not understand enough of the problem you are describing, and
probably don't have enough smarts to provide anything of value, but, for
what it is worth:
A. The cygwin version of the 'cp' utility has a '-p' option which, in my
experience, keeps its promise; the target file will have p
Gordon, does rename have the same issue?
On 4/9/13 8:18 PM, "Gordon Smith" wrote:
> Background: I'm trying to get 'git status' to report nothing after simply
> doing a build of the SDK (which is what you expect because you haven't changed
> any source files). The problem is that a of flex-conf
The .mxi is a source file so it shouldn't be in gitignore. The Extension
Manager changes its permissions to executable for unknown reason. I thought
I checked in an .mxi file with executable permissions to try to cure this
problem. Maybe I put it in the wrong branch or maybe it didn't work on
Wi
Hi,
> If you do 'git status --ignored' after 'ant clean', it will reveal any
> (normally-ignored) build output that didn't get cleaned.
Any reason why these are ignored?
# modules/compiler/src/java/flex2/compiler/mxml/ParseException.java
# modules/compiler/src/java/flex2/compiler/mx
If you do 'git status --ignored' after 'ant clean', it will reveal any
(normally-ignored) build output that didn't get cleaned.
- Gordon
Hi,
JFYI I'm running into a similar issue in windows in OSX. FlexComponentKit.mxi
seems to have differing permissions but not sure if it should be added to
.gitignore or not.
You may also need to modify build.properties depending on your setup (eg TLF
path) - how do we deal with that?
Thanks
On Apr 9, 2013 7:40 PM, "OmPrakash Muppirala" wrote:
>
> Hi,
>
> Here is some more experimental work based on FXG to SVG transformation.
>
>
http://people.apache.org/~bigosmallm/fxg2svg/buttonskinjs/embedButtons.html
>
> This time, all the skin states are in one .svg file along with the JS:
>
> ht
Background: I'm trying to get 'git status' to report nothing after simply doing
a build of the SDK (which is what you expect because you haven't changed any
source files). The problem is that a of flex-config.xml and a
of Version.java in our Ant scripts seem to misbehave on Cygwin and have the
Hi,
Here is some more experimental work based on FXG to SVG transformation.
http://people.apache.org/~bigosmallm/fxg2svg/buttonskinjs/embedButtons.html
This time, all the skin states are in one .svg file along with the JS:
http://people.apache.org/~bigosmallm/fxg2svg/buttonskinjs/buttonSkin.svg
Yeah... seemed pretty odd, but I'm assuming it's because the new AIR has
only been tested with the new Falcon compiler, and not "old" compiler..
-Nick
On Tue, Apr 9, 2013 at 9:51 PM, Justin Mclean wrote:
> Hi,
>
> AIR 3.7 is out but no Apache Flex compatible version yet.
>
> http://labs.adobe.co
Hi,
AIR 3.7 is out but no Apache Flex compatible version yet.
http://labs.adobe.com/technologies/flashruntimes/air/
"We are continuing to release beta updates of AIR 3.7.x, including the addition
of the AIR SDK for Flex developers."
A little odd that they have a release version and are continu
[
https://issues.apache.org/jira/browse/FLEX-33169?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13627343#comment-13627343
]
Matt Krokosz commented on FLEX-33169:
-
After pulling my hair out on this one and tryin
And then I discovered that, even with my own dependency generator, when you
pass this set to the closure compiler for optimization it barfs on the
circularity and there won't be any working around that.
I'm testing out a change to the dependency list logic to try to detect
circularities up front.
Ok, too much effort (time) to create "project" like test cases right
now (so we can test dependencies between files), I'll add that to my
ToDo list.
I did see that the "getAllImports()" method the compiler provides
apparently doesn't resolve dependencies (like I expected it to do,
since in the com
[
https://issues.apache.org/jira/browse/FLEX-33169?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13627069#comment-13627069
]
Fréderic Cox commented on FLEX-33169:
-
This is one of those issues that causes people
I'm writing test cases for all of the issues you mentioned to see how
the current code behaves (and so we can test the new code if it's
needed).
EdB
On Tue, Apr 9, 2013 at 2:05 PM, Alex Harui wrote:
> I still think using imports is insufficient.
>
> Here's a simple example:
>
> ClassA.as
> pac
Sorry, I should have checked the commit emails. I have alerted Infra about
this. Hopefully they will fix it soon.
Thanks,
Om
On Tue, Apr 9, 2013 at 10:14 AM, Gordon Smith wrote:
> It didn't change at all.
>
> - Gordon
>
> -Original Message-
> From: omup...@gmail.com [mailto:omup...@gm
I still think using imports is insufficient.
Here's a simple example:
ClassA.as
package comps
{
public class A
{
public function A()
{
var foo = new B();
}
}
}
ClassB.as
package comps
{
public class B
{
public function B()
The FalconJX::MXMLFlexJSEmitter implementation keeps track of which
types ("instances") are actually used in the MXML and writes the
"goog.requires" from that list.
The FalconJX::JSGoogEmitter (the parent class of JSFlexJSEmitter) uses
the "getAllImports" method on the ScopedNode representing the
On 4/9/13 9:52 AM, "Erik de Bruin" wrote:
> Ah, hard for me to review ;-)
>
> Do you plan to commit it, or do you want me to look at the current
> implementation and try to fix that?
>
If it builds the test app and my customer's app then I will check it in. It
sounds like you agree that usi
Hmm. The new website no longer shows who is committer-only. We should
probably keep that around for vote counting purposes.
I think you're the only one added since the last vote.
Here are the PMC ids:
aharui
bigosmallm
cframpton
cherreman
cmastrandrea
erikdebruin
espenskogen
frishy
fthomas
gord
It didn't change at all.
- Gordon
-Original Message-
From: omup...@gmail.com [mailto:omup...@gmail.com] On Behalf Of OmPrakash
Muppirala
Sent: Tuesday, April 09, 2013 7:24 AM
To: dev@flex.apache.org
Subject: Re: Git commit emails
On Apr 9, 2013 5:42 AM, "Erik de Bruin" wrote:
>
> I hav
Can you please copy your exact command line arguments to here (or in a
comment on the JIRA ticket)? I remember that the relative paths only
resolve when the inputs exactly match and all resources are correctly
"positioned" with regard to the files being published...
EdB
On Tue, Apr 9, 2013 at 1
+1 binding.
All my usual tests pass.
Thanks,
Om
On Apr 8, 2013 6:15 AM, "Frédéric THOMAS" wrote:
> +1
>
> Thanks guys,
> -Fred (Win7 64, fr_FR)
>
> On 4/5/13 6:35 PM, "Frédéric THOMAS" wrote:
>
>
>> *Issues addressed in this Release Candidate:*
>>
>> 1. Enable Flex SDK download stats tracking
I'll try to write some tests that reproduce this. Let's not change any
code until we have a way to pinpoint the issue?
EdB
On Tue, Apr 9, 2013 at 11:24 AM, Alex Harui wrote:
> I don't have a test case I can make public. It appears to be ClassA
> requires ClassB requires ClassC requires ClassA
Thanks Alex,
I thought about taking another Vote as example already but where can I find
the list of the PMC Members to make the difference between binding and and
no binding votes ?
-Fred
-Message d'origine-
From: Alex Harui
Sent: Monday, April 08, 2013 8:51 PM
To: dev@flex.apache
Ah, hard for me to review ;-)
Do you plan to commit it, or do you want me to look at the current
implementation and try to fix that?
EdB
On Tue, Apr 9, 2013 at 10:49 AM, Alex Harui wrote:
> Locally.
>
>
>
>
> Sent via the PANTECH Discover, an AT&T 4G LTE smartphone.
>
> Erik de Bruin wrote:
org.apache.flex.compiler.internal.codegen.mxml.flexjs.MXMLFlexJSEmitter.java
is a good place to start :-)
EdB
On Tue, Apr 9, 2013 at 10:13 AM, Tigran Najaryan wrote:
>> Also, the current FlexJS implementation for both MXML and AS contains
>> several "giant" methods that simply beg to be broken
[
https://issues.apache.org/jira/browse/FLEX-33482?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626803#comment-13626803
]
Tigran Najaryan commented on FLEX-33482:
Yes, everything is on drive D:
I don't have a test case I can make public. It appears to be ClassA
requires ClassB requires ClassC requires ClassA. Which is all valid because
the circularity doesn't involve prototype definitions.
When I was working with FalconJS, I tried the calcdeps.py and it kept
complaining about circular
[
https://issues.apache.org/jira/browse/FLEX-33482?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626754#comment-13626754
]
Alex Harui commented on FLEX-33482:
---
Is all of the code on the same drive? Google expec
Locally.
Sent via the PANTECH Discover, an AT&T 4G LTE smartphone.
Erik de Bruin wrote:
Locally? Or did I miss a commit?
EdB
On Tue, Apr 9, 2013 at 8:10 AM, Alex Harui wrote:
> I think I have copied the Falconjs implementation to falconjx.
>
>
>
>
> Sent via the PANTECH Discover, an AT
Tigran Najaryan created FLEX-33482:
--
Summary: FalconJX generates incorrect paths in deps.js
Key: FLEX-33482
URL: https://issues.apache.org/jira/browse/FLEX-33482
Project: Apache Flex
Issue T
> Also, the current FlexJS implementation for both MXML and AS contains
> several "giant" methods that simply beg to be broken up into more
> manageable sets of support functions which maybe even share some
> common code (like the emission of JSDoc type headers)... That might also
> be a good way
Well, maybe my email client is messing things up, but my commits this
afternoon show up like:
git commit: %(subject)s
while I expected:
git commit [%(repo_name)s]: %(subject)s
EdB
On Tue, Apr 9, 2013 at 9:23 AM, OmPrakash Muppirala
wrote:
> On Apr 9, 2013 5:42 AM, "Erik de Bruin" wrote:
>
On Apr 9, 2013 5:42 AM, "Erik de Bruin" wrote:
>
> I have the feeling I read an update on this somewhere in one of the
> INFRA messages, but I can't find it... Anyway, the git commit emails
> are still not formatted the way we discussed.
>
> EdB
>
>
I was told by Infra that this issue was fixed.
[
https://issues.apache.org/jira/browse/FLEX-33479?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626630#comment-13626630
]
Abhishek Dwevedi commented on FLEX-33479:
-
@ Frederic, Do you believe its a bug or
[
https://issues.apache.org/jira/browse/FLEX-33481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Erik de Bruin resolved FLEX-33481.
--
Resolution: Fixed
> Improve README for FalconJX compiler
>
Locally? Or did I miss a commit?
EdB
On Tue, Apr 9, 2013 at 8:10 AM, Alex Harui wrote:
> I think I have copied the Falconjs implementation to falconjx.
>
>
>
>
> Sent via the PANTECH Discover, an AT&T 4G LTE smartphone.
>
> Erik de Bruin wrote:
>
>
> None of my test cases (and none of my real
I think I have copied the Falconjs implementation to falconjx.
Sent via the PANTECH Discover, an AT&T 4G LTE smartphone.
Erik de Bruin wrote:
None of my test cases (and none of my real world code, I think they're
lazy) uses wildcard imports, so I wasn't aware of this. But since they
are a f
[
https://issues.apache.org/jira/browse/FLEX-33481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Erik de Bruin updated FLEX-33481:
-
Assignee: Erik de Bruin
> Improve README for FalconJX compiler
>
I have the feeling I read an update on this somewhere in one of the
INFRA messages, but I can't find it... Anyway, the git commit emails
are still not formatted the way we discussed.
EdB
On Wed, Mar 27, 2013 at 12:44 PM, Om wrote:
> I made this request to INFRA a while ago. I will ping them a
> Ah, you are correct... This is part of the README for the SDK, but isn't
part of
> the README for Falcon(JS/JX). Since most developers will have built the
SDK
> before getting to the compiler(s), we got away with this ;-)
My mistake. Since it is in the README for the SDK and it is a pre-requisit
Tigran Najaryan created FLEX-33481:
--
Summary: Improve README for FalconJX compiler
Key: FLEX-33481
URL: https://issues.apache.org/jira/browse/FLEX-33481
Project: Apache Flex
Issue Type: Docu
Also, the current FlexJS implementation for both MXML and AS contains
several "giant" methods that simply beg to be broken up into more
manageable sets of support functions which maybe even share some
common code (like the emission of JSDoc type headers)... That might
also be a good way to get you
> Forking the Google code to our project doesn't seem like the best option.
Yes, that what concerns me too.
> We may consider donating your solution to the Closure project, which is
> Open Source...
That may be a solution in the long term but I am not sure that helps to fix
the bug in Falcon compi
Ah, you are correct... This is part of the README for the SDK, but
isn't part of the README for Falcon(JS/JX). Since most developers will
have built the SDK before getting to the compiler(s), we got away with
this ;-)
Another addition to the README, via a JIRA ticket?
EdB
On Tue, Apr 9, 2013 a
Ah, and a good way to start would be to create a JIRA ticket about the
need for a better README and to attach a patch for that issue with the
content of what you wrote in your original email. That should get you
(and us) going on the road of coding and patching and will go some way
towards getting
Not sure where do I report this.
If you get a Flash Player error when trying to run the compiler tests make
sure to add full path to directory falcon/compiler.tests to your Flash Player
trust file (for location see
http://livedocs.adobe.com/flex/3/html/help.html?content=security2_25.html)
Wi
> The other approach is to copy the DepsGenerator and PathUtil classes to
> FalconJX code base and fix it there. Technically this approach works, I
> tried it. The fix to PathUtil is trivial to do, only a few lines must be
> modified to make it handle Windows paths correctly. I did not need to touc
Unfortunately I could not find a workaround to this. Played with the paths
trying to fool DepsGenerator but it didn't work.
The other approach is to copy the DepsGenerator and PathUtil classes to
FalconJX code base and fix it there. Technically this approach works, I
tried it. The fix to PathUtil
[
https://issues.apache.org/jira/browse/FLEX-33480?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626407#comment-13626407
]
Justin Mclean commented on FLEX-33480:
--
Fixed in Apache next. Attached is pt_PT textL
[
https://issues.apache.org/jira/browse/FLEX-33480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Justin Mclean resolved FLEX-33480.
--
Resolution: Fixed
Fix Version/s: Apache Flex 4.10.0
> Build error when locale is set
[
https://issues.apache.org/jira/browse/FLEX-33480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Justin Mclean updated FLEX-33480:
-
Attachment: textLayout_rb.swc
pt_PT textLayout compiled resources
> Build error
[
https://issues.apache.org/jira/browse/FLEX-33480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Justin Mclean reassigned FLEX-33480:
Assignee: Justin Mclean
> Build error when locale is set to pt_PT
> ---
[
https://issues.apache.org/jira/browse/FLEX-33480?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626378#comment-13626378
]
Justin Mclean edited comment on FLEX-33480 at 4/9/13 8:19 AM:
--
[
https://issues.apache.org/jira/browse/FLEX-33480?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626378#comment-13626378
]
Justin Mclean commented on FLEX-33480:
--
Looks like issue is that pt_PT, en_GB, en_CA,
[
https://issues.apache.org/jira/browse/FLEX-33480?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626369#comment-13626369
]
Justin Mclean edited comment on FLEX-33480 at 4/9/13 8:07 AM:
--
[
https://issues.apache.org/jira/browse/FLEX-33480?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626369#comment-13626369
]
Justin Mclean commented on FLEX-33480:
--
Confirmed and it also happens for some other
On Tue, Apr 9, 2013 at 8:23 AM, Dave Fisher wrote:
> ...The gist is that this PMC is responsible for keeping the IP in shape and
> doing the work in the open
I'd also add that whoever commits (or pushes, in the Git model) to the
Apache repository (where all releases must be cut from) takes
r
None of my test cases (and none of my real world code, I think they're
lazy) uses wildcard imports, so I wasn't aware of this. But since they
are a feature of AS, we need to be able to handle them. The compiler
seems to be the proper handler for this, so I'll have a look at how
FalconJS does this a
Alex,
The current 'publisher' part of FalconJx uses the vanilla
'DepsGenerator' functionality of the Closure Compiler. Do you have a
minimal test case of the kind of circular dependency you are talking
about? It seems like that should be something that Google should have
encountered and be able to
The "self = this" needs to be more clever, you are correct. At one
point in my race to understand all things ASJS it was probably
convenient to add this to each function body and use "self" instead of
"this". JS does require a lot more "this" than AS, so adding one
reference or another didn't seem
copy files over and see if you can merge and commit/push
What would mean deleting the current tree and copy the new one over and not
only copy over the existing tree as it would be a problem if parts of the
tree have been renamed or moved, right ?
The main difference is it easier to check ou
67 matches
Mail list logo