Configuring Ant for SDK build (WAS: Error compiling SDK)

2013-03-30 Thread Tigran Najaryan
Solved the problem. It turned out I had flexTasks.jar from an earlier Flex SDK in my Ant "lib" directory. Copied the new flexTasks.jar from Apache SDK 4.9.1 to the Ant and the build went without any problems. Apparently the mxmlc task from the old flexTasks.jar had problem accepting the target-pl

How to use Flex 4.9.1 in Flash Builder 4.6 not supporting Design Mode?

2013-03-30 Thread Sebastian Mohr
Hopefully, my answer [1] meets with your approval here. If you would like to add something to this matter, please comment. [1] http://www.linkedin.com/groups/how-use-apache-491-in-4296888.S.227529893?qid=e1b4c17f-c8bc-4b47-9117-4cb0047cee74&trk=group_most_popular-0-b-ttl&goback=%2Egde_4296888_memb

Re: [DISCUSS] Apache Flex SDK Installer 2.5 RC4 (was: [DISCUSS] Apache Flex SDK Installer 2.5 RC3)

2013-03-30 Thread Frédéric THOMAS
Justin, Did you update ? I fixed it and pushed it yesterday, look at my rat.report [1]. Thanks, -Fred [1] * Summary --- Generated at: 2013-03-29T16:11:38+01:00 Notes: 4 Binaries: 0 Archives: 0 Standards: 53 Apache Licensed: 53 Generate

Re: Configuring Ant for SDK build (WAS: Error compiling SDK)

2013-03-30 Thread Alex Harui
OK, glad you got it working. Fellow committers: Should we add a 'Troubleshooting' section to the README or RELEASE_NOTES? -Alex On 3/30/13 1:22 AM, "Tigran Najaryan" wrote: > Solved the problem. It turned out I had flexTasks.jar from an earlier Flex > SDK in my Ant "lib" directory. > > Copied

External repo looks ok (was Re: Update about Utilities repo migration)

2013-03-30 Thread Alex Harui
A unix diff of the flex-external repo reports no errors. It can be opened for read-write. On 3/29/13 12:02 AM, "Om" wrote: > Hi, > > The flex-utilities git repo is now read/write. It is available here: > https://git-wip-us.apache.org/repos/asf/flex-utilities.git > > Also, https://git-wip-us

Re: [FalconJx] progress update

2013-03-30 Thread Alex Harui
Hi Erik, I finally got time to try to switch over to FalconJX. It produces js files and the app shows up, but the console shows an exception and the interactivity of the application is mostly broken because the generated js code has snippets like this: models.MyModel.prototype.set_labelText = fu

Re: [FalconJx] progress update

2013-03-30 Thread Erik de Bruin
I left out FlexGlobals on purpose, I plan to bring the Google Closure way of dealing with events to FlexJS. The GC way is not dependent on DOM based events and fits very snugly with the way Flex handles events. In the mean time I've a method in the "main" HTML that is called Event and that passes

Re: [FalconJx] progress update

2013-03-30 Thread Alex Harui
I'm not seeing anything like that in the HTML wrapper. Safari is definitely throwing on exception on "new Event". Any idea what I'm doing wrong? On 3/30/13 7:54 AM, "Erik de Bruin" wrote: > I left out FlexGlobals on purpose, I plan to bring the Google Closure > way of dealing with events to F

Re: [FalconJx] progress update

2013-03-30 Thread Erik de Bruin
Maybe I'm doing something wrong... the example on my p.a.o works for you? http://people.apache.org/~erikdebruin/flexjs/ Maybe try Chrome? EdB On Sat, Mar 30, 2013 at 4:01 PM, Alex Harui wrote: > I'm not seeing anything like that in the HTML wrapper. Safari is definitely > throwing on except

Re: [FalconJx] progress update

2013-03-30 Thread Erik de Bruin
Nope, Safari works well for me, and there doesn't need to be the extra method in the main HTML anymore, I remember. Weird. EdB On Sat, Mar 30, 2013 at 4:13 PM, Erik de Bruin wrote: > Maybe I'm doing something wrong... the example on my p.a.o works for you? > > http://people.apache.org/~erikdeb

Re: [FalconJx] progress update

2013-03-30 Thread Erik de Bruin
Or, it might have something to do with your last ASJS commit... remove flash.*.* from implicit imports... If you revert that locally, does FalconJx work? It wasn't there yesterday, so that's the only difference in code between you and me. We need to set up functional testing for Falcon/FlexJS soon

Re: [FalconJx] progress update

2013-03-30 Thread Alex Harui
I put your app in the debugger and get the same exception. And selecting from the dropdownlist doesn't change anything. On 3/30/13 8:13 AM, "Erik de Bruin" wrote: > Maybe I'm doing something wrong... the example on my p.a.o works for you? > > http://people.apache.org/~erikdebruin/flexjs/ > >

Re: [FalconJx] progress update

2013-03-30 Thread Alex Harui
On 3/30/13 7:54 AM, "Erik de Bruin" wrote: > I left out FlexGlobals on purpose, I plan to bring the Google Closure > way of dealing with events to FlexJS. The GC way is not dependent on > DOM based events and fits very snugly with the way Flex handles > events. BTW, do we need a DOM event for

Re: [FalconJx] progress update

2013-03-30 Thread Erik de Bruin
Hi, >From [1]: "Closure Library provides the advantage of a consistent event model that works the same way in all browsers." And the GC Compiler takes care of any overhead, it can very efficiently re-compile "goog" based Javascript. More so than "manual" JS like FlexGlobals. And we're using the G

Re: [FalconJx] progress update

2013-03-30 Thread Erik de Bruin
Did you try to put the flash.*.* thing back (revert your latest commit)? EdB On Sat, Mar 30, 2013 at 4:20 PM, Erik de Bruin wrote: > Or, it might have something to do with your last ASJS commit... remove > flash.*.* from implicit imports... If you revert that locally, does > FalconJx work? It

Re: [FalconJx] progress update

2013-03-30 Thread Alex Harui
No, because I ran the link to your app in the debugger in Safari and I get the exception. I don't think the flash.*.* thing is involved in your version right? If you run http://people.apache.org/~erikdebruin/flexjs/ in the JS debugger it doesn't send exceptions to the console? And changing the se

Re: [FalconJx] progress update

2013-03-30 Thread Om
Probably not related to what you guys are discussing, but Erik's latest changes send to have caused the list to look more like a drop down list. This used to work fine in both versions a couple of days ago. Thanks, Om On Mar 30, 2013 9:34 AM, "Alex Harui" wrote: > No, because I ran the link to y

Re: Configuring Ant for SDK build (WAS: Error compiling SDK)

2013-03-30 Thread Justin Mclean
Hi > Fellow committers: Should we add a 'Troubleshooting' section to the README > or RELEASE_NOTES? +1 sounds like a similar issue to what I had the other day. I was unable to find how it determined which lib (ant/lib or lib) directory it was using. Justin

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Frédéric THOMAS
note that the windows binaries still need to be regenerated Why ? -Fred -Message d'origine- From: jmcl...@apache.org Sent: Sunday, March 31, 2013 1:52 AM To: comm...@flex.apache.org Subject: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Justin Mclean
HI, >> note that the windows binaries still need to be regenerated > > Why ? Well I guess they probably don't as it was only a header that was using a comment but the source package is incorrect. Also looks like the version number changes (build.number, and XML config files) were not checked i

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Justin Mclean
HI, > Currently I'm unable to push into git so can't check the changes I made into > utilities. I can do a git pull no error but a git push gives: "fatal: Could not read from remote repository." And it doesn't ask for user name and password. Justin

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Justin Mclean
Hi, Here's the required diffs. Justin

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Justin Mclean
Hi, Seems you can't post .diff files to teh list -rather annoying so here the text of those files: commit c124956efb15f51092d3ff1c6730d85a8648845d Author: Justin Mclean Date: Sun Mar 31 11:29:34 2013 +1100 Updated build number to 2.5.3 for RC4 diff --git a/installer/build.number b/insta

Re: Configuring Ant for SDK build (WAS: Error compiling SDK)

2013-03-30 Thread Alex Harui
On 3/30/13 4:49 PM, "Justin Mclean" wrote: > Hi > >> Fellow committers: Should we add a 'Troubleshooting' section to the README >> or RELEASE_NOTES? > +1 sounds like a similar issue to what I had the other day. I was unable to > find how it determined which lib (ant/lib or lib) directory it w

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Alex Harui
Justin, my copy of Tracker.mxml, which I pulled from Git 12 hours ago, has the header. There should have been no reason for you to need to add it. On 3/30/13 8:27 PM, "Justin Mclean" wrote: > Hi, > > Seems you can't post .diff files to teh list -rather annoying so here the text > of those fil

Re: Configuring Ant for SDK build (WAS: Error compiling SDK)

2013-03-30 Thread Om
On Mar 30, 2013 8:55 PM, "Alex Harui" wrote: > > > > > On 3/30/13 4:49 PM, "Justin Mclean" wrote: > > > Hi > > > >> Fellow committers: Should we add a 'Troubleshooting' section to the README > >> or RELEASE_NOTES? > > +1 sounds like a similar issue to what I had the other day. I was unable to > >

Google Closure Events (was Re: [FalconJx] progress update)

2013-03-30 Thread Alex Harui
I read up a little on Google Closure Events. I was hoping to find some information on why it takes that much javascript to implement a brand new event model when it appears (at least from my perspective) that the only rogue browser is IE8. I think I'm going to forge ahead with my custom approxima

Re: [FalconJx] progress update

2013-03-30 Thread Alex Harui
I put in an Event and CustomEvent class in the html and got past the exceptions, but it still craps out with another exception later in dispatchEvent. You would have had to override the dispatchEvent in UIBase.as to ever see this app respond to a change in the dropdownlist. Do you have strong obj

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Justin Mclean
Hi, > Justin, my copy of Tracker.mxml, which I pulled from Git 12 hours ago, has > the header. There should have been no reason for you to need to add it. Look like git://git.apache.org/flex-utilities.git is out of sync and I was (probably mistakenly) using that as the git URL. Huge potential

[VOTE] Release InstallApacheFlex 2.5.3 - RC4

2013-03-30 Thread Frédéric THOMAS
*Issues addressed in this Release Candidate:* 1. Enable Flex SDK download stats tracking 2. https://issues.apache.org/jira/browse/FLEX-33426 (UI fix for license screen (show regular checkboxes)) 3. https://issues.apache.org/jira/browse/FLEX-33151 (Auto-update logic fix) 4. French and Dutch l

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Alex Harui
Om says to use this: https://git-wip-us.apache.org/repos/asf/flex-utilities.git If git.apache.org is the mirrors, I don't know if we got the mirrors working again, so I guess that means we haven't. On 3/30/13 9:58 PM, "Justin Mclean" wrote: > Hi, > >> Justin, my copy of Tracker.mxml, which I

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Justin Mclean
Hi, > Om says to use this: > https://git-wip-us.apache.org/repos/asf/flex-utilities.git That really needs to be in the README or RELEASE_NOTE on how to get the source. Certainly would of saved me some time. Justin

Re: Configuring Ant for SDK build (WAS: Error compiling SDK)

2013-03-30 Thread Justin Mclean
Hi, > OK, but which file should have the troubleshooting section: README or > RELEASE_NOTES? Either is fine by me README is probably better as it's not release version related. Justin

Re: [FalconJx] progress update

2013-03-30 Thread Erik de Bruin
Not at all. But I don't understand. The online example runs fine for me with full functionality and no exceptions or anything in the console. I'll spend some time on this after the weekend. EdB On Sunday, March 31, 2013, Alex Harui wrote: > I put in an Event and CustomEvent class in the html a

Git URLs

2013-03-30 Thread Justin Mclean
Hi, Does anyone know if these are the final URLs we should be using: I've migrated the repos as follows: https://git-wip-us.apache.org/repos/asf/flex-falcon.git https://git-wip-us.apache.org/repos/asf/flex-sdk.git https://git-wip-us.apache.org/repos/asf/flex-tlf.git https://git-wip-us.apache.org/

Re: [FalconJx] progress update

2013-03-30 Thread Alex Harui
I hit this link in Mac Safari: http://people.apache.org/~erikdebruin/flexjs/ I turn on JavaScript debugging. I hit refresh on the address bar. It halts on MyModel.js line 30. It doesn't do that for you? On 3/30/13 10:33 PM, "Erik de Bruin" wrote: > Not at all. But I don't understand. The onlin

Re: Google Closure Events (was Re: [FalconJx] progress update)

2013-03-30 Thread Erik de Bruin
Alex, just checking before I spend too much time on this: with FlexJS, is it always going to be "your way or the highway"? EdB On Sunday, March 31, 2013, Alex Harui wrote: > I read up a little on Google Closure Events. I was hoping to find some > information on why it takes that much javascri

Re: [FalconJx] progress update

2013-03-30 Thread Erik de Bruin
Even on my iPhone all functionality of the demo app is working fine. What isn't working for you? EdB On Sunday, March 31, 2013, Alex Harui wrote: > I hit this link in Mac Safari: > http://people.apache.org/~erikdebruin/flexjs/ > I turn on JavaScript debugging. > I hit refresh on the address ba

Re: svn commit: r1689 - in /dev/flex/installer/2.5/RC4/binaries: apache-flex-sdk-installer-2.5.3-bin.dmg apache-flex-sdk-installer-2.5.3-bin.dmg.asc apache-flex-sdk-installer-2.5.3-bin.dmg.md5

2013-03-30 Thread Om
http://flex.apache.org/dev-sourcecode.html has the correct urls. The link to "browse repository" is pointing to the read-only mirrors, we might want to fix that. Thanks, Om On Sat, Mar 30, 2013 at 10:18 PM, Justin Mclean wrote: > Hi, > > > Om says to use this: > > https://git-wip-us.apache.org

Re: Google Closure Events (was Re: [FalconJx] progress update)

2013-03-30 Thread Alex Harui
On 3/30/13 10:39 PM, "Erik de Bruin" wrote: > Alex, just checking before I spend too much time on this: with FlexJS, is > it always going to be "your way or the highway"? I don't think so. What gave you that impression? If it was the tone of my last post, I apologize. I am actually trying

Re: [FalconJx] progress update

2013-03-30 Thread Alex Harui
If I pick from the dropdown list, other things are supposed to update. They don't for me. This is bizarre. What code in your link supports "new Event"? On 3/30/13 10:42 PM, "Erik de Bruin" wrote: > Even on my iPhone all functionality of the demo app is working fine. What > isn't working for

Re: Git URLs

2013-03-30 Thread Om
On Sat, Mar 30, 2013 at 10:36 PM, Justin Mclean wrote: > Hi, > > Does anyone know if these are the final URLs we should be using: > I've migrated the repos as follows: > https://git-wip-us.apache.org/repos/asf/flex-falcon.git > https://git-wip-us.apache.org/repos/asf/flex-sdk.git > https://git-wip

Re: [VOTE] Release InstallApacheFlex 2.5.3 - RC4

2013-03-30 Thread Cyrill Zadra
+1 * Update of installer worked * Installation of flex sdk 4.9.1 worked. Found some typos in german locale, which I'll push in a minute. Thank you all. On Sun, Mar 31, 2013 at 4:07 PM, Frédéric THOMAS wrote: > > *Issues addressed in this Release Candidate:* > > 1. Enable Flex SDK download sta

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

2013-03-30 Thread Alex Harui (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Harui reassigned FLEX-33450: - Assignee: Alex Harui > RTE - PopupManager mx.controls.DataGrid >

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

2013-03-30 Thread Alex Harui (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33450?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13618264#comment-13618264 ] Alex Harui commented on FLEX-33450: --- Here's a possible workaround. It doesn't solve the