Re: Bug in mxmlc script

2016-01-11 Thread OmPrakash Muppirala
On Mon, Jan 11, 2016 at 11:11 PM, Alex Harui  wrote:

>
>
> On 1/5/16, 1:07 PM, "omup...@gmail.com on behalf of OmPrakash Muppirala"
>  wrote:
>
> >On Tue, Jan 5, 2016 at 10:12 AM, Alex Harui  wrote:
> >>
> >> IIRC, if you change SDKs, it will copy the index.template.html file from
> >> the SDK folder.
> >>
> >
> >I don't think so.  I've changed SDKs for a project several times; I never
> >had to redo the customizations I had done on index.html.template.  At
> >least
> >FlashBuilder behaves this way.
>
> I was just switching FlexJS SDKs for a project in FB (on Mac).  (Project
> menu, Properties, Flex Compiler, "Use a specific SDK").  Upon hitting OK,
> I get the following alert "Warning. Because you have changed the options
> for the HTML wrapper or the SDK version, all files in the "html-template"
> folder of your project will be overwritten and/or deleted."
>
> Does this not happen to you?
>
>
No, I don't recall seeing that message for a while.  What version of FB are
you using?

Thanks,
Om


> Thanks,
> -Alex
>
>


Re: [FlexJS] US States Map example - pure AS3

2016-01-11 Thread OmPrakash Muppirala
Deepak,

I have been thinking of adding a similar Map component to the Flex SDK.
How urgently do you need this component?
Can you help out with adding this to the Flex SDK?  If I have some help, I
can build it faster.

It should not be very hard and I can help you all the way, as needed.

Thanks,
Om

On Mon, Jan 11, 2016 at 8:55 PM, Deepak MS  wrote:

> Hi there,
> We have a requirement to have a heat map for one of the application. It's
> required for both web and iPad(app). I have a common library for both and
> one of the views needs this heat map(of UK).
>
> Om,
> AS Code: https://gist.github.com/anonymous/d1d8d6d8c544f985e387
> That code seems to be FlexJS specific. Is there something similar which is
> purely using Flex\AIR? I tried to search, but all of them seem to be actual
> maps(like google, modestmap, ArcGIS etc) which needs network connectivity.
> App would be offline, hence I just need to draw that country and highlight
> specific parts of the country based on data.
>
> Kindly let me know how can I go about it.
>
> Cheers!
> Deepak
>
> On Sat, Jun 20, 2015 at 2:34 AM, OmPrakash Muppirala  >
> wrote:
>
> > Here is an updated version of the US states map example with animation
> > added:
> >
> > Demo: http://bigosmallm.github.io/flexjs/mapexample/
> > AS Code: https://gist.github.com/anonymous/d1d8d6d8c544f985e387
> > JS Code: https://gist.github.com/anonymous/08b471bae33a8ffba4d1
> >
> > The entire app was written in ActionScript3.  The compiler took care of
> > creating all the HTML, Javascript and CSS files.  The resulting app runs
> on
> > all browsers (including iOS devices ;-) )
> >
> > Needless to say, this is a huge milestone.  Look forward to more cool
> > stuff!
> >
> > Thanks,
> > Om
> >
>


Re: Bug in mxmlc script

2016-01-11 Thread Alex Harui


On 1/5/16, 1:07 PM, "omup...@gmail.com on behalf of OmPrakash Muppirala"
 wrote:

>On Tue, Jan 5, 2016 at 10:12 AM, Alex Harui  wrote:
>>
>> IIRC, if you change SDKs, it will copy the index.template.html file from
>> the SDK folder.
>>
>
>I don't think so.  I've changed SDKs for a project several times; I never
>had to redo the customizations I had done on index.html.template.  At
>least
>FlashBuilder behaves this way.

I was just switching FlexJS SDKs for a project in FB (on Mac).  (Project
menu, Properties, Flex Compiler, "Use a specific SDK").  Upon hitting OK,
I get the following alert "Warning. Because you have changed the options
for the HTML wrapper or the SDK version, all files in the "html-template"
folder of your project will be overwritten and/or deleted."

Does this not happen to you?

Thanks,
-Alex



Re: [FalconJX] -js-output-type=node

2016-01-11 Thread Alex Harui
Sweet!

On 1/11/16, 8:26 PM, "Josh Tynjala"  wrote:

>You would need to use a utility like externc or dts2as, if you wanted to
>get code suggestions in an IDE or strict type checking with the compiler.
>
>Out of the box, dynamic access will always work:
>
>var example_module:Object = require("example");
>
>You can access anything on example_module because it's an Object, but if
>you make a typo, or try to access something that doesn't exist, the
>compiler won't complain. Ideally, we'd like to avoid that.
>
>However, if you find some externs or TypeScript definitions, you can
>create
>a SWC with externc or dts2as. Then, you'll be able to specify a type on
>the
>result of require() to give the full APIs to the compiler and IDEs:
>
>var example_module:example = require("example");
>
>You'd simply add the SWC to the external library path, similar to
>playerglobal.swc, js.swc, or any other third party JS library.
>
>I should mention that I added a node.swc to FlexJS, built from externs.
>Right now, it only defines the signature of require(), but I'd like for us
>to expand it to provide APIs for all of Node's built-in modules.
>
>- Josh
>On Jan 11, 2016 6:30 PM, "OmPrakash Muppirala" 
>wrote:
>
>> I am trying to digest how this works.  So, if I npm install a random
>> module, what would I need to do to make the code complete, compiler,
>>etc.
>> to work with that new module?
>>
>> Thanks,
>> Om
>>
>> On Mon, Jan 11, 2016 at 5:29 PM, OmPrakash Muppirala
>>> >
>> wrote:
>>
>> > Whoaaa!
>> >
>> > On Mon, Jan 11, 2016 at 5:25 PM, Josh Tynjala 
>> > wrote:
>> >
>> >> FalconJX just got Node.js support today.
>> >>
>> >> //--- begin HelloNode.as
>> >>
>> >> package
>> >> {
>> >> public class HelloNode
>> >> {
>> >> public function HelloNode()
>> >> {
>> >> trace("Hello Node!");
>> >> trace(process.version);
>> >> }
>> >> }
>> >> }
>> >> var process:Object = require("process");
>> >>
>> >> //--- end HelloNode.as
>> >>
>> >> //--- begin usage
>> >>
>> >> asnodec HelloNode.as
>> >> node bin/js-debug/index.js
>> >>
>> >> //--- end usage
>> >>
>> >> I'm sure there are bugs. I probably forgot to add something
>>important in
>> >> the build script, but it works on my machine! :)
>> >>
>> >> - Josh
>> >>
>> >
>> >
>>



Re: Build failed in Jenkins: MD5Checker #7992

2016-01-11 Thread Alex Harui


On 1/11/16, 8:25 PM, "Justin Mclean"  wrote:

>Hi,
>
>What up with this the MD5 hashes look identical?

Well, it wants the cacheID's updated so it doesn't have to download
everything just-in-case.  I'll try to update them.

-Alex



Re: [FlexJS] US States Map example - pure AS3

2016-01-11 Thread Deepak MS
Hi there,
We have a requirement to have a heat map for one of the application. It's
required for both web and iPad(app). I have a common library for both and
one of the views needs this heat map(of UK).

Om,
AS Code: https://gist.github.com/anonymous/d1d8d6d8c544f985e387
That code seems to be FlexJS specific. Is there something similar which is
purely using Flex\AIR? I tried to search, but all of them seem to be actual
maps(like google, modestmap, ArcGIS etc) which needs network connectivity.
App would be offline, hence I just need to draw that country and highlight
specific parts of the country based on data.

Kindly let me know how can I go about it.

Cheers!
Deepak

On Sat, Jun 20, 2015 at 2:34 AM, OmPrakash Muppirala 
wrote:

> Here is an updated version of the US states map example with animation
> added:
>
> Demo: http://bigosmallm.github.io/flexjs/mapexample/
> AS Code: https://gist.github.com/anonymous/d1d8d6d8c544f985e387
> JS Code: https://gist.github.com/anonymous/08b471bae33a8ffba4d1
>
> The entire app was written in ActionScript3.  The compiler took care of
> creating all the HTML, Javascript and CSS files.  The resulting app runs on
> all browsers (including iOS devices ;-) )
>
> Needless to say, this is a huge milestone.  Look forward to more cool
> stuff!
>
> Thanks,
> Om
>


Re: git commit: [flex-sdk] [refs/heads/develop] - fixed warning

2016-01-11 Thread Andy Dufilie
I just searched and I could not find any open JIRA issue.
Thanks for the pointer.

Andy

On Mon, Jan 11, 2016 at 11:22 PM, Justin Mclean 
wrote:

> Hi,
>
> Think there might be a JIRA re this issue, seem to recall something about
> it. For more serious issues don’t forget to raise a JIRA, that way we can
> easily track what been fixed come release time.
>
> Thanks,
> Justin
>
> > On 12 Jan 2016, at 2:48 pm, adufi...@apache.org wrote:
> >
> > Repository: flex-sdk
> > Updated Branches:
> >  refs/heads/develop 386c8bb00 -> 991f2c294
> >
> >
> > fixed warning
> >
> > Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
> > Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/991f2c29
> > Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/991f2c29
> > Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/991f2c29
> >
> > Branch: refs/heads/develop
> > Commit: 991f2c294422da189c0f80f63829623895995da6
> > Parents: 386c8bb
> > Author: Andy Dufilie 
> > Authored: Mon Jan 11 22:47:37 2016 -0500
> > Committer: Andy Dufilie 
> > Committed: Mon Jan 11 22:47:37 2016 -0500
> >
> > --
> > frameworks/projects/framework/src/mx/binding/Binding.as | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> > --
> >
> >
> >
> http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/991f2c29/frameworks/projects/framework/src/mx/binding/Binding.as
> > --
> > diff --git a/frameworks/projects/framework/src/mx/binding/Binding.as
> b/frameworks/projects/framework/src/mx/binding/Binding.as
> > index 15bef54..a8c569a 100644
> > --- a/frameworks/projects/framework/src/mx/binding/Binding.as
> > +++ b/frameworks/projects/framework/src/mx/binding/Binding.as
> > @@ -426,7 +426,7 @@ public class Binding
> > catch(error:Error)
> > {
> >   if (error is ItemPendingError) {
> > - error.addResponder(new EvalBindingResponder(this,
> object));
> > + (error as ItemPendingError).addResponder(new
> EvalBindingResponder(this, object));
> >   if (BindingManager.debugDestinationStrings[destString])
> >   {
> >   trace("Binding: destString = " + destString + ",
> error = " + error);
> >
>
>


Re: Build failed in Jenkins: MD5Checker #7992

2016-01-11 Thread Justin Mclean
Hi,

What up with this the MD5 hashes look identical?

Thanks,
Justin


Re: [FalconJX] -js-output-type=node

2016-01-11 Thread Josh Tynjala
You would need to use a utility like externc or dts2as, if you wanted to
get code suggestions in an IDE or strict type checking with the compiler.

Out of the box, dynamic access will always work:

var example_module:Object = require("example");

You can access anything on example_module because it's an Object, but if
you make a typo, or try to access something that doesn't exist, the
compiler won't complain. Ideally, we'd like to avoid that.

However, if you find some externs or TypeScript definitions, you can create
a SWC with externc or dts2as. Then, you'll be able to specify a type on the
result of require() to give the full APIs to the compiler and IDEs:

var example_module:example = require("example");

You'd simply add the SWC to the external library path, similar to
playerglobal.swc, js.swc, or any other third party JS library.

I should mention that I added a node.swc to FlexJS, built from externs.
Right now, it only defines the signature of require(), but I'd like for us
to expand it to provide APIs for all of Node's built-in modules.

- Josh
On Jan 11, 2016 6:30 PM, "OmPrakash Muppirala"  wrote:

> I am trying to digest how this works.  So, if I npm install a random
> module, what would I need to do to make the code complete, compiler, etc.
> to work with that new module?
>
> Thanks,
> Om
>
> On Mon, Jan 11, 2016 at 5:29 PM, OmPrakash Muppirala  >
> wrote:
>
> > Whoaaa!
> >
> > On Mon, Jan 11, 2016 at 5:25 PM, Josh Tynjala 
> > wrote:
> >
> >> FalconJX just got Node.js support today.
> >>
> >> //--- begin HelloNode.as
> >>
> >> package
> >> {
> >> public class HelloNode
> >> {
> >> public function HelloNode()
> >> {
> >> trace("Hello Node!");
> >> trace(process.version);
> >> }
> >> }
> >> }
> >> var process:Object = require("process");
> >>
> >> //--- end HelloNode.as
> >>
> >> //--- begin usage
> >>
> >> asnodec HelloNode.as
> >> node bin/js-debug/index.js
> >>
> >> //--- end usage
> >>
> >> I'm sure there are bugs. I probably forgot to add something important in
> >> the build script, but it works on my machine! :)
> >>
> >> - Josh
> >>
> >
> >
>


Re: git commit: [flex-sdk] [refs/heads/develop] - fixed warning

2016-01-11 Thread Justin Mclean
Hi,

Think there might be a JIRA re this issue, seem to recall something about it. 
For more serious issues don’t forget to raise a JIRA, that way we can easily 
track what been fixed come release time.

Thanks,
Justin

> On 12 Jan 2016, at 2:48 pm, adufi...@apache.org wrote:
> 
> Repository: flex-sdk
> Updated Branches:
>  refs/heads/develop 386c8bb00 -> 991f2c294
> 
> 
> fixed warning
> 
> Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
> Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/991f2c29
> Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/991f2c29
> Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/991f2c29
> 
> Branch: refs/heads/develop
> Commit: 991f2c294422da189c0f80f63829623895995da6
> Parents: 386c8bb
> Author: Andy Dufilie 
> Authored: Mon Jan 11 22:47:37 2016 -0500
> Committer: Andy Dufilie 
> Committed: Mon Jan 11 22:47:37 2016 -0500
> 
> --
> frameworks/projects/framework/src/mx/binding/Binding.as | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> --
> 
> 
> http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/991f2c29/frameworks/projects/framework/src/mx/binding/Binding.as
> --
> diff --git a/frameworks/projects/framework/src/mx/binding/Binding.as 
> b/frameworks/projects/framework/src/mx/binding/Binding.as
> index 15bef54..a8c569a 100644
> --- a/frameworks/projects/framework/src/mx/binding/Binding.as
> +++ b/frameworks/projects/framework/src/mx/binding/Binding.as
> @@ -426,7 +426,7 @@ public class Binding
> catch(error:Error)
> {
>   if (error is ItemPendingError) {
> - error.addResponder(new EvalBindingResponder(this, object));
> + (error as ItemPendingError).addResponder(new 
> EvalBindingResponder(this, object));
>   if (BindingManager.debugDestinationStrings[destString])
>   {
>   trace("Binding: destString = " + destString + ", error 
> = " + error);
> 



Re: draft blog post for 4.15 release

2016-01-11 Thread Nicholas Kwiatkowski
I'll push the docs tomorrow. My network connection is acting weird right
now and the svn was erroring out.
On Jan 11, 2016 5:53 PM, "Justin Mclean"  wrote:

> Hi,
>
> All done (except the new ASDocs). someone mind tweeting about from the
> official account?
>
> Thanks,
> Justin


Re: [FalconJX] -js-output-type=node

2016-01-11 Thread OmPrakash Muppirala
I am trying to digest how this works.  So, if I npm install a random
module, what would I need to do to make the code complete, compiler, etc.
to work with that new module?

Thanks,
Om

On Mon, Jan 11, 2016 at 5:29 PM, OmPrakash Muppirala 
wrote:

> Whoaaa!
>
> On Mon, Jan 11, 2016 at 5:25 PM, Josh Tynjala 
> wrote:
>
>> FalconJX just got Node.js support today.
>>
>> //--- begin HelloNode.as
>>
>> package
>> {
>> public class HelloNode
>> {
>> public function HelloNode()
>> {
>> trace("Hello Node!");
>> trace(process.version);
>> }
>> }
>> }
>> var process:Object = require("process");
>>
>> //--- end HelloNode.as
>>
>> //--- begin usage
>>
>> asnodec HelloNode.as
>> node bin/js-debug/index.js
>>
>> //--- end usage
>>
>> I'm sure there are bugs. I probably forgot to add something important in
>> the build script, but it works on my machine! :)
>>
>> - Josh
>>
>
>


Re: [FalconJX] -js-output-type=node

2016-01-11 Thread OmPrakash Muppirala
Whoaaa!

On Mon, Jan 11, 2016 at 5:25 PM, Josh Tynjala  wrote:

> FalconJX just got Node.js support today.
>
> //--- begin HelloNode.as
>
> package
> {
> public class HelloNode
> {
> public function HelloNode()
> {
> trace("Hello Node!");
> trace(process.version);
> }
> }
> }
> var process:Object = require("process");
>
> //--- end HelloNode.as
>
> //--- begin usage
>
> asnodec HelloNode.as
> node bin/js-debug/index.js
>
> //--- end usage
>
> I'm sure there are bugs. I probably forgot to add something important in
> the build script, but it works on my machine! :)
>
> - Josh
>


[FalconJX] -js-output-type=node

2016-01-11 Thread Josh Tynjala
FalconJX just got Node.js support today.

//--- begin HelloNode.as

package
{
public class HelloNode
{
public function HelloNode()
{
trace("Hello Node!");
trace(process.version);
}
}
}
var process:Object = require("process");

//--- end HelloNode.as

//--- begin usage

asnodec HelloNode.as
node bin/js-debug/index.js

//--- end usage

I'm sure there are bugs. I probably forgot to add something important in
the build script, but it works on my machine! :)

- Josh


Re: draft blog post for 4.15 release

2016-01-11 Thread OmPrakash Muppirala
Here is the link to the tweet:
https://twitter.com/ApacheFlex/status/686690759479656448

Please help publicize, by retweeting it.

Justin, thanks for shepherding this release!

Thanks,
Om

On Mon, Jan 11, 2016 at 3:04 PM, OmPrakash Muppirala 
wrote:

> On Mon, Jan 11, 2016 at 2:53 PM, Justin Mclean 
> wrote:
>
>> Hi,
>>
>> All done (except the new ASDocs). someone mind tweeting about from the
>> official account?
>>
>
> I can do that.
>
> Thanks,
> Om
>
>
>>
>> Thanks,
>> Justin
>
>
>


Re: draft blog post for 4.15 release

2016-01-11 Thread OmPrakash Muppirala
On Mon, Jan 11, 2016 at 2:53 PM, Justin Mclean  wrote:

> Hi,
>
> All done (except the new ASDocs). someone mind tweeting about from the
> official account?
>

I can do that.

Thanks,
Om


>
> Thanks,
> Justin


Re: draft blog post for 4.15 release

2016-01-11 Thread Justin Mclean
Hi,

All done (except the new ASDocs). someone mind tweeting about from the official 
account?

Thanks,
Justin

Re: AW: AW: AW: AW: AW: [FlexJS] Maven-friendly folders

2016-01-11 Thread Alex Harui
OK, frameworks/project/HTML has been refactored.  I'm going to wait to see
if changes are needed before replicating this to other folders so I only
have to visit each of those folders once.

Time to do something fun for a few days.

-Alex

On 1/11/16, 1:00 PM, "Alex Harui"  wrote:

>I have started on this rename.  I have reworked the
>frameworks/project/Core folder and pushed it to a new branch called
>"mavenfolders".  Please take a look and provide feedback.  I'll do HTML
>next.  Then I'll proceed on the other folders.
>
>Thanks,
>-Alex
>
>On 12/21/15, 7:48 AM, "Alex Harui"  wrote:
>
>>OK.  I think we have a plan.
>>
>>My goal for the holiday break is to fix as many bugs as I can.  If I get
>>through the ones I know about, then I'll start on this.  I'll probably
>>just do the Core and HTML folders and get your ok before doing the rest.
>>
>>I'll also look at the BlazeDS ant script.
>>
>>Thanks,
>>-Alex 
>>
>>On 12/21/15, 1:18 AM, "Christofer Dutz" 
>>wrote:
>>
>src/main/resources/compile-asjs-config.xml and
>src/main/resources/compile-config.xml are build scripts too and should
>reside in the root of the module alongside the build.xml.

These -config files aren't Ant scripts, but rather more like
flex-config.xml.  Should they still go in src/main/resources?
>>>
>>>They definitely bekong in "src/main/resources" in that case.
>>>
>>>
>>>
>>>Von: Alex Harui 
>>>Gesendet: Montag, 21. Dezember 2015 09:17
>>>An: dev@flex.apache.org
>>>Betreff: Re: AW: AW: AW: AW: [FlexJS] Maven-friendly folders
>>>
>>>On 12/19/15, 3:37 AM, "Christofer Dutz" 
>>>wrote:
>>>
Ok .. so the build.xml shouldn't be in src/test/flex as ist's not
test-code, but the ant script running the tests ... it should be in the
root of the module.
>>>
>>>That build.xml is the Ant script for the tests.  It gets called by the
>>>root build.xml which I guess I forgot to list.  Is it ok to have
>>>build.xml
>>>files elsewhere in the folder tree besides root?
>>>

src/main/resources/compile-asjs-config.xml and
src/main/resources/compile-config.xml are build scripts too and should
reside in the root of the module alongside the build.xml.
>>>
>>>These -config files aren't Ant scripts, but rather more like
>>>flex-config.xml.  Should they still go in src/main/resources?
>>>

By the way .. I got the ok to re-relase the jburg lib in a version that
works with java 1.6 and 1.7. I will probably do that during the
holidays.
>>>
>>>Yay!
>>>

Would this be a valid option if you started moving things and adjusting
the ant build to those changes and then I would try to setup a maven
build in parallel and we could streamline any adjustments needed? As
the
pom.xml would simply reside next to the ant script I don't think
there's
a need to create a branch for this ...
>>>
>>>Yes, sound like a good plan, once I truly understand where everything
>>>should go.
>>>
>>>-Alex
>>>


Von: Alex Harui 
Gesendet: Samstag, 19. Dezember 2015 01:27
An: dev@flex.apache.org
Betreff: Re: AW: AW: AW: [FlexJS] Maven-friendly folders

OK, not sure how easy this will be to read, but below is a snippet of a
current SWC folder listing and what I think should be the new folders.
I'm not sure what to do with the output of the flexunit tests.

 current listing -

.actionScriptProperties
.flexLibProperties
... and other hidden FB Project files

as/defaults.css
as/src
as/src/HTMLClasses.as
as/src/org
as/src/org/apache
as/src/org/apache/flex
as/src/org/apache/flex/core
as/src/org/apache/flex/core/IScrollingLayoutParent.as
as/src/org/apache/flex/html
as/src/org/apache/flex/html/accessories
as/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.as
as/src/org/apache/flex/html/Alert.as
... and other AS source

as/tests
as/tests/build.xml
as/tests/FlexUnitFlexJSApplication.mxml
as/tests/FlexUnitFlexJSApplication.swf
as/tests/flexUnitTests
as/tests/flexUnitTests/DataGridColumnTester.as
as/tests/flexUnitTests/DataGridColumnTesterTest.as
as/tests/out
as/tests/out/html
as/tests/out/html/all-tests.html
as/tests/out/html/allclasses-frame.html
as/tests/out/html/alltests-errors.html
as/tests/out/html/alltests-fails.html
as/tests/out/html/alltests-skipped.html
as/tests/out/html/flexUnitTests
as/tests/out/html/flexUnitTests/0_DataGridColumnTesterTest.html
as/tests/out/html/flexUnitTests/package-frame.html
as/tests/out/html/flexUnitTests/package-summary.html
as/tests/out/html/index.html
as/tests/out/html/overview-frame.html
as/tests/out/html/overview-summary.html
as/tests/out/html/stylesheet.css
as/tests/out/TEST-flexUnitTests.DataGridColumnTesterTest.xml
as/tests/out/TESTS-TestSuites.xml

basic-

Re: draft blog post for 4.15 release

2016-01-11 Thread Nicholas Kwiatkowski
Thanks for catching that.  It's been fixed.

On Mon, Jan 11, 2016 at 4:30 PM, Paul Hastings 
wrote:

> In the binaries page, dependencies section, there's a reference to 4.14
> release when I think you meant 4.15.
>


[ANNOUNCE] Apache Flex 4.15.0 released

2016-01-11 Thread Justin Mclean
Hi,

The Apache Flex community is pleased to announce the release of Apache
Flex 4.15.0.

Apache Flex is a highly productive, open source application framework for
building and maintaining expressive applications that deploy consistently
on all major browsers, desktops and devices (including smartphones,
tablets and tv).

Apache Flex 4.15.0 is a update to Apache Flex 4.14.1 that adds support for
the latest Flash Player and AIR runtimes, several bug fixes and TLF tables
and speed improvements.

Apache Flex is available in source form from the following download page:
http://flex.apache.org/download-source.html 


It's recommended you install Apache Flex by using the Apache Flex IDE
installer:
http://flex.apache.org/installer.html 

When downloading from a mirror site, please remember to verify the
downloads using signatures or MD5 hashes.

For more information on Apache Flex, visit the project home page:
http://flex.apache.org 

Thank you for using Apache Flex,
The Apache Flex Community

Re: Updated Flash player / AIR hashes

2016-01-11 Thread Alex Harui


On 1/11/16, 1:42 PM, "omup...@gmail.com on behalf of OmPrakash Muppirala"
 wrote:
>
>You are right, it is still building 4.15.0
>http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_nightly/lastSuccessf
>ulBuild/artifact/out/apache-flex-sdk-4.15.0-bin.tar.gz
>seems to be working.
>
>I think flex-sdk-description.xml needs to be updated.
>
>Thanks,
>Om
>

For some reason, that build hadn't run since the 9th and when I looked,
there was no schedule for it.  Not sure how that can be.  Anyway, I
re-applied a nightly schedule and kicked off a build.  I'm not sure
flex-sdk-description needed changing.

-Alex



Re: [FalconJX] Is it time to delete the FalconJS code?

2016-01-11 Thread Alex Harui
I will probably just tag the repo unless someone speaks up really wanting
a branch.

-Alex

On 1/11/16, 1:45 PM, "Andy Dufilie"  wrote:

>Setting a tag seems like the best way.
>
>git tag mytagname
>git push origin mytagname
>
>then do whatever you want.
>
>On Mon, Jan 11, 2016 at 4:10 PM, OmPrakash Muppirala
>
>wrote:
>
>> Maybe this will work (based on this stackoverflow answer [1])
>>
>> 1.  Move the code to its own branch.
>>
>> 2.  Then tag the branch:
>> git tag archive/ 
>>
>> 3.  Then delete the branch
>> git branch -d 
>>
>> To restore the branch:
>>
>> git checkout -b  archive/
>>
>> 
>>http://stackoverflow.com/questions/1307114/how-can-i-archive-git-branches
>>
>> On Mon, Jan 11, 2016 at 1:05 PM, Michael Schmalle <
>> teotigraphix...@gmail.com
>> > wrote:
>>
>> > Can't you just create a tag like "Last know existence of FalconJS"
>>commit
>> > then delete. Or were other people saying they still wanted to code
>> > somewhere, seems to me that was some of the conversation.
>> >
>> > Mike
>> >
>> > On Mon, Jan 11, 2016 at 4:02 PM, Alex Harui  wrote:
>> >
>> > > Does anybody have an actual set of steps to create some sort of
>> archival
>> > > branch or can I just delete this project?
>> > >
>> > > -Alex
>> > >
>> > > On 12/21/15, 7:50 AM, "Michael Schmalle" 
>> > > wrote:
>> > >
>> > > >Well garbage is relative. I didn't mean it in a derogatory way,
>>only
>> > that
>> > > >the original authors were the ones that could understand it.
>> > > >
>> > > >As far as FlaconJX, I wrote that as a prototype based off of my
>>prior
>> > > >experience with AST traversing and the visitor pattern. That was
>> almost
>> > 3
>> > > >years ago now so as far as it actually getting refactored on an
>> > > >application
>> > > >level with compilation unit passes, it never happened! :)
>> > > >
>> > > >When iw rote the front and backend I was more using the Flex
>>compiler
>> > as a
>> > > >template, and was slowing digesting how the multithreaded
>>compilation
>> > > >worked in Falcon.
>> > > >
>> > > >It that compiler was a full time/part time paid job for myself I
>>could
>> > > >easily put time into actually optimizing and documenting how the
>> > > >compiler(Falcon) end actually runs. But that is not the case so we
>> have
>> > to
>> > > >guess right now what actually could be changed.
>> > > >
>> > > >Besides, my solution was just one and there may be other ways that
>>the
>> > > >compiler could transpile as to js way faster but it's what I knew
>>at
>> the
>> > > >time and had already done it in a few other projects.
>> > > >
>> > > >Mike
>> > > >
>> > > >On Mon, Dec 21, 2015 at 10:44 AM, Alex Harui 
>> wrote:
>> > > >
>> > > >> @Harbs,
>> > > >>
>> > > >> I don't know enough about Git and branching to know if this is
>>the
>> > right
>> > > >> way to "archive" stuff before deleting, but I would think that
>> branch
>> > > >> would need special handling after it is created because any
>>attempt
>> to
>> > > >> merge with that branch might result in the deletion of that code.
>> > > >>
>> > > >> @Mark & Mike,
>> > > >>
>> > > >> Where would you create such an archive folder such that it
>>doesn't
>> > show
>> > > >>up
>> > > >> when grep-ing the code?  IMO, that's the goal: on GitHub and
>> locally,
>> > I
>> > > >> don't want these files to be found by search tools.
>> > > >>
>> > > >> @Mike,
>> > > >>
>> > > >> I would caution against calling that code base "garbage".  It
>>worked
>> > > >>well
>> > > >> enough to produce the early prototypes, and you never know when
>>we
>> > might
>> > > >> want to seek the advice and participation of its author.  Yeah,
>>some
>> > > >>parts
>> > > >> of it were really hard to learn, but it did do things that I had
>>to
>> go
>> > > >>fix
>> > > >> again in FalconJX, and I think FalconJX still runs several of the
>> > phases
>> > > >> of the CompilationUnit code that we may need to stop doing some
>>day
>> > for
>> > > >> performance reasons and go through another round of bug fixing
>>when
>> we
>> > > >>do,
>> > > >> because semantic errors seem to be caught during reduction.
>> FalconJS
>> > > >>was
>> > > >> leveraging the CompilationUnit phases.
>> > > >>
>> > > >> -Alex
>> > > >>
>> > > >> On 12/21/15, 3:27 AM, "Michael Schmalle"
>>> >
>> > > >> wrote:
>> > > >>
>> > > >> >Yup, I agree, it doesn't really need to be deleted but it needs
>>to
>> be
>> > > >>so
>> > > >> >far away from FalconJX that a common dev wouldn't mistake it for
>> > > >>anything
>> > > >> >other than archived history.
>> > > >> >
>> > > >> >The code is garbage, another reason why FalconJX even exists, I
>> hated
>> > > >>that
>> > > >> >code with a passion. :)
>> > > >> >
>> > > >> >Mike
>> > > >> >
>> > > >> >On Mon, Dec 21, 2015 at 6:03 AM, Kessler CTR Mark J <
>> > > >> >mark.kessler@usmc.mil> wrote:
>> > > >> >
>> > > >> >> Might as well make an archive folder that's generic and we can
>> put
>> > > >> >> anything else we want to keep but don't want in the main
>>source
>> > > >>areas.
>> > >

Re: [FalconJX] Is it time to delete the FalconJS code?

2016-01-11 Thread Andy Dufilie
Setting a tag seems like the best way.

git tag mytagname
git push origin mytagname

then do whatever you want.

On Mon, Jan 11, 2016 at 4:10 PM, OmPrakash Muppirala 
wrote:

> Maybe this will work (based on this stackoverflow answer [1])
>
> 1.  Move the code to its own branch.
>
> 2.  Then tag the branch:
> git tag archive/ 
>
> 3.  Then delete the branch
> git branch -d 
>
> To restore the branch:
>
> git checkout -b  archive/
>
> http://stackoverflow.com/questions/1307114/how-can-i-archive-git-branches
>
> On Mon, Jan 11, 2016 at 1:05 PM, Michael Schmalle <
> teotigraphix...@gmail.com
> > wrote:
>
> > Can't you just create a tag like "Last know existence of FalconJS" commit
> > then delete. Or were other people saying they still wanted to code
> > somewhere, seems to me that was some of the conversation.
> >
> > Mike
> >
> > On Mon, Jan 11, 2016 at 4:02 PM, Alex Harui  wrote:
> >
> > > Does anybody have an actual set of steps to create some sort of
> archival
> > > branch or can I just delete this project?
> > >
> > > -Alex
> > >
> > > On 12/21/15, 7:50 AM, "Michael Schmalle" 
> > > wrote:
> > >
> > > >Well garbage is relative. I didn't mean it in a derogatory way, only
> > that
> > > >the original authors were the ones that could understand it.
> > > >
> > > >As far as FlaconJX, I wrote that as a prototype based off of my prior
> > > >experience with AST traversing and the visitor pattern. That was
> almost
> > 3
> > > >years ago now so as far as it actually getting refactored on an
> > > >application
> > > >level with compilation unit passes, it never happened! :)
> > > >
> > > >When iw rote the front and backend I was more using the Flex compiler
> > as a
> > > >template, and was slowing digesting how the multithreaded compilation
> > > >worked in Falcon.
> > > >
> > > >It that compiler was a full time/part time paid job for myself I could
> > > >easily put time into actually optimizing and documenting how the
> > > >compiler(Falcon) end actually runs. But that is not the case so we
> have
> > to
> > > >guess right now what actually could be changed.
> > > >
> > > >Besides, my solution was just one and there may be other ways that the
> > > >compiler could transpile as to js way faster but it's what I knew at
> the
> > > >time and had already done it in a few other projects.
> > > >
> > > >Mike
> > > >
> > > >On Mon, Dec 21, 2015 at 10:44 AM, Alex Harui 
> wrote:
> > > >
> > > >> @Harbs,
> > > >>
> > > >> I don't know enough about Git and branching to know if this is the
> > right
> > > >> way to "archive" stuff before deleting, but I would think that
> branch
> > > >> would need special handling after it is created because any attempt
> to
> > > >> merge with that branch might result in the deletion of that code.
> > > >>
> > > >> @Mark & Mike,
> > > >>
> > > >> Where would you create such an archive folder such that it doesn't
> > show
> > > >>up
> > > >> when grep-ing the code?  IMO, that's the goal: on GitHub and
> locally,
> > I
> > > >> don't want these files to be found by search tools.
> > > >>
> > > >> @Mike,
> > > >>
> > > >> I would caution against calling that code base "garbage".  It worked
> > > >>well
> > > >> enough to produce the early prototypes, and you never know when we
> > might
> > > >> want to seek the advice and participation of its author.  Yeah, some
> > > >>parts
> > > >> of it were really hard to learn, but it did do things that I had to
> go
> > > >>fix
> > > >> again in FalconJX, and I think FalconJX still runs several of the
> > phases
> > > >> of the CompilationUnit code that we may need to stop doing some day
> > for
> > > >> performance reasons and go through another round of bug fixing when
> we
> > > >>do,
> > > >> because semantic errors seem to be caught during reduction.
> FalconJS
> > > >>was
> > > >> leveraging the CompilationUnit phases.
> > > >>
> > > >> -Alex
> > > >>
> > > >> On 12/21/15, 3:27 AM, "Michael Schmalle"  >
> > > >> wrote:
> > > >>
> > > >> >Yup, I agree, it doesn't really need to be deleted but it needs to
> be
> > > >>so
> > > >> >far away from FalconJX that a common dev wouldn't mistake it for
> > > >>anything
> > > >> >other than archived history.
> > > >> >
> > > >> >The code is garbage, another reason why FalconJX even exists, I
> hated
> > > >>that
> > > >> >code with a passion. :)
> > > >> >
> > > >> >Mike
> > > >> >
> > > >> >On Mon, Dec 21, 2015 at 6:03 AM, Kessler CTR Mark J <
> > > >> >mark.kessler@usmc.mil> wrote:
> > > >> >
> > > >> >> Might as well make an archive folder that's generic and we can
> put
> > > >> >> anything else we want to keep but don't want in the main source
> > > >>areas.
> > > >> >>
> > > >> >>
> > > >> >> -Mark
> > > >> >>
> > > >>
> > > >>
> > >
> > >
> >
>


Re: Updated Flash player / AIR hashes

2016-01-11 Thread OmPrakash Muppirala
On Mon, Jan 11, 2016 at 1:36 PM, Justin Mclean 
wrote:

> Hi,
>
> > I just tested 4.15 with AIR/FP 18, 19 and 20 on Windows 7.  It seems to
> be
> > working fine.
>
> Thanks for that.
>
> Just looked at the google stats and there been 50+ installs of 4.15.0
> already with only a handful of installation errors. (Which is within normal
> range of errors.)
>
> However the install of the nightly is broken. What needs to be done to
> jerkin box to fix this?
>
> Here’s the log:
>
> Downloading Apache Flex SDK from:
> http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_nightly/lastSuccessfulBuild/artifact/out/apache-flex-sdk-4.16.0-bin.tar.gz
> Unable to download Apache Flex SDK
> Aborting Installation
>
> (My guess is that it's still building 4.15 not 4.16.)
>

You are right, it is still building 4.15.0
http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_nightly/lastSuccessfulBuild/artifact/out/apache-flex-sdk-4.15.0-bin.tar.gz
seems to be working.

I think flex-sdk-description.xml needs to be updated.

Thanks,
Om


>
> Thanks,
> Justin


Re: Updated Flash player / AIR hashes

2016-01-11 Thread Justin Mclean
Hi,

> I just tested 4.15 with AIR/FP 18, 19 and 20 on Windows 7.  It seems to be
> working fine.

Thanks for that.

Just looked at the google stats and there been 50+ installs of 4.15.0 already 
with only a handful of installation errors. (Which is within normal range of 
errors.)

However the install of the nightly is broken. What needs to be done to jerkin 
box to fix this?

Here’s the log:

Downloading Apache Flex SDK from: 
http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_nightly/lastSuccessfulBuild/artifact/out/apache-flex-sdk-4.16.0-bin.tar.gz
Unable to download Apache Flex SDK
Aborting Installation

(My guess is that it's still building 4.15 not 4.16.)

Thanks,
Justin

Re: draft blog post for 4.15 release

2016-01-11 Thread Paul Hastings
In the binaries page, dependencies section, there's a reference to 4.14
release when I think you meant 4.15.


Re: draft blog post for 4.15 release

2016-01-11 Thread Nicholas Kwiatkowski
I'll add FlexJS to the news section.

Otherwise, blog is posted and website is live.

-Nick

On Mon, Jan 11, 2016 at 4:00 PM, OmPrakash Muppirala 
wrote:

> >
> >
> > I do notice that the news section seem to be missing the latest FlexJS
> > release.
> >
>
> Mind adding a quick blurb for FlexJS 0.5.0 while you are there?
>
> Thanks,
> Om
>


[4.15.0] # Apache Flex SDK 4.15.0 nightly build 163: Successful

2016-01-11 Thread flex . ci . builds
flex-sdk_release-candidate - Build #163 - Successful

Changes since last build:
[jmclean] update version to 4.16.0


For more information, check the console output at 
http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_release-candidate/163/.

Re: Updated Flash player / AIR hashes

2016-01-11 Thread OmPrakash Muppirala
On Sat, Jan 9, 2016 at 5:31 PM, Justin Mclean 
wrote:

> Hi,
>
> Just updated the hash and a few paths in the Flex installer and I’m
> testing out on OS X that everything is working. Someone mind testing on
> windows for me? In particular FP/AIR version 18, 19 and 20.
>

I just tested 4.15 with AIR/FP 18, 19 and 20 on Windows 7.  It seems to be
working fine.

Thanks,
Om


>
> Thanks,
> Justin


Re: Installer updated for 4.15

2016-01-11 Thread OmPrakash Muppirala
On Mon, Jan 11, 2016 at 12:26 PM, Justin Mclean  wrote:

> Hi,
>
> > Is there any reason why Flash/Air 18 is preselected instead of the latest
> > version?
>
> Versions 18 is the extended support release. But we could make it default
> to 20, what do others think?
>

+1


>
> There’s also this issue [2]
>
> Thanks,
> Justin
>
> 1.
> http://blogs.adobe.com/flashplayer/2015/05/upcoming-changes-to-flash-players-extended-support-release-2.html
> 2.
> http://blogs.adobe.com/flashplayer/2015/12/issues-downgrading-from-air-20-mac.html


Re: [FalconJX] Is it time to delete the FalconJS code?

2016-01-11 Thread OmPrakash Muppirala
Maybe this will work (based on this stackoverflow answer [1])

1.  Move the code to its own branch.

2.  Then tag the branch:
git tag archive/ 

3.  Then delete the branch
git branch -d 

To restore the branch:

git checkout -b  archive/

http://stackoverflow.com/questions/1307114/how-can-i-archive-git-branches

On Mon, Jan 11, 2016 at 1:05 PM, Michael Schmalle  wrote:

> Can't you just create a tag like "Last know existence of FalconJS" commit
> then delete. Or were other people saying they still wanted to code
> somewhere, seems to me that was some of the conversation.
>
> Mike
>
> On Mon, Jan 11, 2016 at 4:02 PM, Alex Harui  wrote:
>
> > Does anybody have an actual set of steps to create some sort of archival
> > branch or can I just delete this project?
> >
> > -Alex
> >
> > On 12/21/15, 7:50 AM, "Michael Schmalle" 
> > wrote:
> >
> > >Well garbage is relative. I didn't mean it in a derogatory way, only
> that
> > >the original authors were the ones that could understand it.
> > >
> > >As far as FlaconJX, I wrote that as a prototype based off of my prior
> > >experience with AST traversing and the visitor pattern. That was almost
> 3
> > >years ago now so as far as it actually getting refactored on an
> > >application
> > >level with compilation unit passes, it never happened! :)
> > >
> > >When iw rote the front and backend I was more using the Flex compiler
> as a
> > >template, and was slowing digesting how the multithreaded compilation
> > >worked in Falcon.
> > >
> > >It that compiler was a full time/part time paid job for myself I could
> > >easily put time into actually optimizing and documenting how the
> > >compiler(Falcon) end actually runs. But that is not the case so we have
> to
> > >guess right now what actually could be changed.
> > >
> > >Besides, my solution was just one and there may be other ways that the
> > >compiler could transpile as to js way faster but it's what I knew at the
> > >time and had already done it in a few other projects.
> > >
> > >Mike
> > >
> > >On Mon, Dec 21, 2015 at 10:44 AM, Alex Harui  wrote:
> > >
> > >> @Harbs,
> > >>
> > >> I don't know enough about Git and branching to know if this is the
> right
> > >> way to "archive" stuff before deleting, but I would think that branch
> > >> would need special handling after it is created because any attempt to
> > >> merge with that branch might result in the deletion of that code.
> > >>
> > >> @Mark & Mike,
> > >>
> > >> Where would you create such an archive folder such that it doesn't
> show
> > >>up
> > >> when grep-ing the code?  IMO, that's the goal: on GitHub and locally,
> I
> > >> don't want these files to be found by search tools.
> > >>
> > >> @Mike,
> > >>
> > >> I would caution against calling that code base "garbage".  It worked
> > >>well
> > >> enough to produce the early prototypes, and you never know when we
> might
> > >> want to seek the advice and participation of its author.  Yeah, some
> > >>parts
> > >> of it were really hard to learn, but it did do things that I had to go
> > >>fix
> > >> again in FalconJX, and I think FalconJX still runs several of the
> phases
> > >> of the CompilationUnit code that we may need to stop doing some day
> for
> > >> performance reasons and go through another round of bug fixing when we
> > >>do,
> > >> because semantic errors seem to be caught during reduction.  FalconJS
> > >>was
> > >> leveraging the CompilationUnit phases.
> > >>
> > >> -Alex
> > >>
> > >> On 12/21/15, 3:27 AM, "Michael Schmalle" 
> > >> wrote:
> > >>
> > >> >Yup, I agree, it doesn't really need to be deleted but it needs to be
> > >>so
> > >> >far away from FalconJX that a common dev wouldn't mistake it for
> > >>anything
> > >> >other than archived history.
> > >> >
> > >> >The code is garbage, another reason why FalconJX even exists, I hated
> > >>that
> > >> >code with a passion. :)
> > >> >
> > >> >Mike
> > >> >
> > >> >On Mon, Dec 21, 2015 at 6:03 AM, Kessler CTR Mark J <
> > >> >mark.kessler@usmc.mil> wrote:
> > >> >
> > >> >> Might as well make an archive folder that's generic and we can put
> > >> >> anything else we want to keep but don't want in the main source
> > >>areas.
> > >> >>
> > >> >>
> > >> >> -Mark
> > >> >>
> > >>
> > >>
> >
> >
>


Re: [FalconJX] Is it time to delete the FalconJS code?

2016-01-11 Thread Michael Schmalle
Can't you just create a tag like "Last know existence of FalconJS" commit
then delete. Or were other people saying they still wanted to code
somewhere, seems to me that was some of the conversation.

Mike

On Mon, Jan 11, 2016 at 4:02 PM, Alex Harui  wrote:

> Does anybody have an actual set of steps to create some sort of archival
> branch or can I just delete this project?
>
> -Alex
>
> On 12/21/15, 7:50 AM, "Michael Schmalle" 
> wrote:
>
> >Well garbage is relative. I didn't mean it in a derogatory way, only that
> >the original authors were the ones that could understand it.
> >
> >As far as FlaconJX, I wrote that as a prototype based off of my prior
> >experience with AST traversing and the visitor pattern. That was almost 3
> >years ago now so as far as it actually getting refactored on an
> >application
> >level with compilation unit passes, it never happened! :)
> >
> >When iw rote the front and backend I was more using the Flex compiler as a
> >template, and was slowing digesting how the multithreaded compilation
> >worked in Falcon.
> >
> >It that compiler was a full time/part time paid job for myself I could
> >easily put time into actually optimizing and documenting how the
> >compiler(Falcon) end actually runs. But that is not the case so we have to
> >guess right now what actually could be changed.
> >
> >Besides, my solution was just one and there may be other ways that the
> >compiler could transpile as to js way faster but it's what I knew at the
> >time and had already done it in a few other projects.
> >
> >Mike
> >
> >On Mon, Dec 21, 2015 at 10:44 AM, Alex Harui  wrote:
> >
> >> @Harbs,
> >>
> >> I don't know enough about Git and branching to know if this is the right
> >> way to "archive" stuff before deleting, but I would think that branch
> >> would need special handling after it is created because any attempt to
> >> merge with that branch might result in the deletion of that code.
> >>
> >> @Mark & Mike,
> >>
> >> Where would you create such an archive folder such that it doesn't show
> >>up
> >> when grep-ing the code?  IMO, that's the goal: on GitHub and locally, I
> >> don't want these files to be found by search tools.
> >>
> >> @Mike,
> >>
> >> I would caution against calling that code base "garbage".  It worked
> >>well
> >> enough to produce the early prototypes, and you never know when we might
> >> want to seek the advice and participation of its author.  Yeah, some
> >>parts
> >> of it were really hard to learn, but it did do things that I had to go
> >>fix
> >> again in FalconJX, and I think FalconJX still runs several of the phases
> >> of the CompilationUnit code that we may need to stop doing some day for
> >> performance reasons and go through another round of bug fixing when we
> >>do,
> >> because semantic errors seem to be caught during reduction.  FalconJS
> >>was
> >> leveraging the CompilationUnit phases.
> >>
> >> -Alex
> >>
> >> On 12/21/15, 3:27 AM, "Michael Schmalle" 
> >> wrote:
> >>
> >> >Yup, I agree, it doesn't really need to be deleted but it needs to be
> >>so
> >> >far away from FalconJX that a common dev wouldn't mistake it for
> >>anything
> >> >other than archived history.
> >> >
> >> >The code is garbage, another reason why FalconJX even exists, I hated
> >>that
> >> >code with a passion. :)
> >> >
> >> >Mike
> >> >
> >> >On Mon, Dec 21, 2015 at 6:03 AM, Kessler CTR Mark J <
> >> >mark.kessler@usmc.mil> wrote:
> >> >
> >> >> Might as well make an archive folder that's generic and we can put
> >> >> anything else we want to keep but don't want in the main source
> >>areas.
> >> >>
> >> >>
> >> >> -Mark
> >> >>
> >>
> >>
>
>


Re: draft blog post for 4.15 release

2016-01-11 Thread Justin Mclean
Hi,

> The link from News to
> https://blogs.apache.org/flex/entry/apache_flex_4_15_released is not active
> yet?

Right so order of tasks needs to be:
1. publish blog post
2. publish web site
3. send announcement

Thanks,
Justin


Re: [FalconJX] Is it time to delete the FalconJS code?

2016-01-11 Thread Alex Harui
Does anybody have an actual set of steps to create some sort of archival
branch or can I just delete this project?

-Alex

On 12/21/15, 7:50 AM, "Michael Schmalle"  wrote:

>Well garbage is relative. I didn't mean it in a derogatory way, only that
>the original authors were the ones that could understand it.
>
>As far as FlaconJX, I wrote that as a prototype based off of my prior
>experience with AST traversing and the visitor pattern. That was almost 3
>years ago now so as far as it actually getting refactored on an
>application
>level with compilation unit passes, it never happened! :)
>
>When iw rote the front and backend I was more using the Flex compiler as a
>template, and was slowing digesting how the multithreaded compilation
>worked in Falcon.
>
>It that compiler was a full time/part time paid job for myself I could
>easily put time into actually optimizing and documenting how the
>compiler(Falcon) end actually runs. But that is not the case so we have to
>guess right now what actually could be changed.
>
>Besides, my solution was just one and there may be other ways that the
>compiler could transpile as to js way faster but it's what I knew at the
>time and had already done it in a few other projects.
>
>Mike
>
>On Mon, Dec 21, 2015 at 10:44 AM, Alex Harui  wrote:
>
>> @Harbs,
>>
>> I don't know enough about Git and branching to know if this is the right
>> way to "archive" stuff before deleting, but I would think that branch
>> would need special handling after it is created because any attempt to
>> merge with that branch might result in the deletion of that code.
>>
>> @Mark & Mike,
>>
>> Where would you create such an archive folder such that it doesn't show
>>up
>> when grep-ing the code?  IMO, that's the goal: on GitHub and locally, I
>> don't want these files to be found by search tools.
>>
>> @Mike,
>>
>> I would caution against calling that code base "garbage".  It worked
>>well
>> enough to produce the early prototypes, and you never know when we might
>> want to seek the advice and participation of its author.  Yeah, some
>>parts
>> of it were really hard to learn, but it did do things that I had to go
>>fix
>> again in FalconJX, and I think FalconJX still runs several of the phases
>> of the CompilationUnit code that we may need to stop doing some day for
>> performance reasons and go through another round of bug fixing when we
>>do,
>> because semantic errors seem to be caught during reduction.  FalconJS
>>was
>> leveraging the CompilationUnit phases.
>>
>> -Alex
>>
>> On 12/21/15, 3:27 AM, "Michael Schmalle" 
>> wrote:
>>
>> >Yup, I agree, it doesn't really need to be deleted but it needs to be
>>so
>> >far away from FalconJX that a common dev wouldn't mistake it for
>>anything
>> >other than archived history.
>> >
>> >The code is garbage, another reason why FalconJX even exists, I hated
>>that
>> >code with a passion. :)
>> >
>> >Mike
>> >
>> >On Mon, Dec 21, 2015 at 6:03 AM, Kessler CTR Mark J <
>> >mark.kessler@usmc.mil> wrote:
>> >
>> >> Might as well make an archive folder that's generic and we can put
>> >> anything else we want to keep but don't want in the main source
>>areas.
>> >>
>> >>
>> >> -Mark
>> >>
>>
>>



Re: AW: AW: AW: AW: AW: [FlexJS] Maven-friendly folders

2016-01-11 Thread Alex Harui
I have started on this rename.  I have reworked the
frameworks/project/Core folder and pushed it to a new branch called
"mavenfolders".  Please take a look and provide feedback.  I'll do HTML
next.  Then I'll proceed on the other folders.

Thanks,
-Alex

On 12/21/15, 7:48 AM, "Alex Harui"  wrote:

>OK.  I think we have a plan.
>
>My goal for the holiday break is to fix as many bugs as I can.  If I get
>through the ones I know about, then I'll start on this.  I'll probably
>just do the Core and HTML folders and get your ok before doing the rest.
>
>I'll also look at the BlazeDS ant script.
>
>Thanks,
>-Alex 
>
>On 12/21/15, 1:18 AM, "Christofer Dutz"  wrote:
>
src/main/resources/compile-asjs-config.xml and
src/main/resources/compile-config.xml are build scripts too and should
reside in the root of the module alongside the build.xml.
>>>
>>>These -config files aren't Ant scripts, but rather more like
>>>flex-config.xml.  Should they still go in src/main/resources?
>>
>>They definitely bekong in "src/main/resources" in that case.
>>
>>
>>
>>Von: Alex Harui 
>>Gesendet: Montag, 21. Dezember 2015 09:17
>>An: dev@flex.apache.org
>>Betreff: Re: AW: AW: AW: AW: [FlexJS] Maven-friendly folders
>>
>>On 12/19/15, 3:37 AM, "Christofer Dutz" 
>>wrote:
>>
>>>Ok .. so the build.xml shouldn't be in src/test/flex as ist's not
>>>test-code, but the ant script running the tests ... it should be in the
>>>root of the module.
>>
>>That build.xml is the Ant script for the tests.  It gets called by the
>>root build.xml which I guess I forgot to list.  Is it ok to have
>>build.xml
>>files elsewhere in the folder tree besides root?
>>
>>>
>>>src/main/resources/compile-asjs-config.xml and
>>>src/main/resources/compile-config.xml are build scripts too and should
>>>reside in the root of the module alongside the build.xml.
>>
>>These -config files aren't Ant scripts, but rather more like
>>flex-config.xml.  Should they still go in src/main/resources?
>>
>>>
>>>By the way .. I got the ok to re-relase the jburg lib in a version that
>>>works with java 1.6 and 1.7. I will probably do that during the
>>>holidays.
>>
>>Yay!
>>
>>>
>>>Would this be a valid option if you started moving things and adjusting
>>>the ant build to those changes and then I would try to setup a maven
>>>build in parallel and we could streamline any adjustments needed? As the
>>>pom.xml would simply reside next to the ant script I don't think there's
>>>a need to create a branch for this ...
>>
>>Yes, sound like a good plan, once I truly understand where everything
>>should go.
>>
>>-Alex
>>
>>>
>>>
>>>Von: Alex Harui 
>>>Gesendet: Samstag, 19. Dezember 2015 01:27
>>>An: dev@flex.apache.org
>>>Betreff: Re: AW: AW: AW: [FlexJS] Maven-friendly folders
>>>
>>>OK, not sure how easy this will be to read, but below is a snippet of a
>>>current SWC folder listing and what I think should be the new folders.
>>>I'm not sure what to do with the output of the flexunit tests.
>>>
>>> current listing -
>>>
>>>.actionScriptProperties
>>>.flexLibProperties
>>>... and other hidden FB Project files
>>>
>>>as/defaults.css
>>>as/src
>>>as/src/HTMLClasses.as
>>>as/src/org
>>>as/src/org/apache
>>>as/src/org/apache/flex
>>>as/src/org/apache/flex/core
>>>as/src/org/apache/flex/core/IScrollingLayoutParent.as
>>>as/src/org/apache/flex/html
>>>as/src/org/apache/flex/html/accessories
>>>as/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.as
>>>as/src/org/apache/flex/html/Alert.as
>>>... and other AS source
>>>
>>>as/tests
>>>as/tests/build.xml
>>>as/tests/FlexUnitFlexJSApplication.mxml
>>>as/tests/FlexUnitFlexJSApplication.swf
>>>as/tests/flexUnitTests
>>>as/tests/flexUnitTests/DataGridColumnTester.as
>>>as/tests/flexUnitTests/DataGridColumnTesterTest.as
>>>as/tests/out
>>>as/tests/out/html
>>>as/tests/out/html/all-tests.html
>>>as/tests/out/html/allclasses-frame.html
>>>as/tests/out/html/alltests-errors.html
>>>as/tests/out/html/alltests-fails.html
>>>as/tests/out/html/alltests-skipped.html
>>>as/tests/out/html/flexUnitTests
>>>as/tests/out/html/flexUnitTests/0_DataGridColumnTesterTest.html
>>>as/tests/out/html/flexUnitTests/package-frame.html
>>>as/tests/out/html/flexUnitTests/package-summary.html
>>>as/tests/out/html/index.html
>>>as/tests/out/html/overview-frame.html
>>>as/tests/out/html/overview-summary.html
>>>as/tests/out/html/stylesheet.css
>>>as/tests/out/TEST-flexUnitTests.DataGridColumnTesterTest.xml
>>>as/tests/out/TESTS-TestSuites.xml
>>>
>>>basic-as-manifest.xml
>>>basic-manifest.xml
>>>... and other manifests
>>>
>>>build.xml
>>>compile-asjs-config.xml
>>>compile-config.xml
>>>
>>>js/out/HTMLClasses.js
>>>js/out/org
>>>js/out/org/apache
>>>js/out/org/apache/flex
>>>js/out/org/apache/flex/html
>>>js/out/org/apache/flex/html/accessories
>>>js/out/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js
>>>js/out/org/apache/flex/html/Alert.js
>>>
>>> end curren

Re: draft blog post for 4.15 release

2016-01-11 Thread OmPrakash Muppirala
>
>
> I do notice that the news section seem to be missing the latest FlexJS
> release.
>

Mind adding a quick blurb for FlexJS 0.5.0 while you are there?

Thanks,
Om


Re: draft blog post for 4.15 release

2016-01-11 Thread OmPrakash Muppirala
The link from News to
https://blogs.apache.org/flex/entry/apache_flex_4_15_released is not active
yet?

Everything else looks good!

Thanks,
Om

On Mon, Jan 11, 2016 at 12:54 PM, Justin Mclean 
wrote:

> Hi,
>
> Someone mind checking these pages for the 4.5 update:
> http://flex.staging.apache.org
> http://flex.staging.apache.org/download-source.html
> http://flex.staging.apache.org/download-binaries.html
>
> Before we make everything live and send out the announcement.
>
> Is there anything else we have forgotten?
>
> I do notice that the news section seem to be missing the latest FlexJS
> release.
>
> Thanks,
> Justin


Re: draft blog post for 4.15 release

2016-01-11 Thread Justin Mclean
Hi,

Someone mind checking these pages for the 4.5 update:
http://flex.staging.apache.org
http://flex.staging.apache.org/download-source.html
http://flex.staging.apache.org/download-binaries.html

Before we make everything live and send out the announcement.

Is there anything else we have forgotten?

I do notice that the news section seem to be missing the latest FlexJS release.

Thanks,
Justin

Re: draft blog post for 4.15 release

2016-01-11 Thread Justin Mclean
Hi,

> I'm good.

Much appreciated.

>  It looks like the mirrors are good to go as well (from the ones
> I've checked).

If you scroll to the bottom of [1] you'll see a nice little age graph called 
age histogram that’s what I normally go in.

Thanks,
Justin

1.https://www.apache.org/mirrors/index.html



Re: Installer updated for 4.15

2016-01-11 Thread Justin Mclean
Hi,

> Is there any reason why Flash/Air 18 is preselected instead of the latest
> version?

Versions 18 is the extended support release. But we could make it default to 
20, what do others think?

There’s also this issue [2]

Thanks,
Justin

1.http://blogs.adobe.com/flashplayer/2015/05/upcoming-changes-to-flash-players-extended-support-release-2.html
2. 
http://blogs.adobe.com/flashplayer/2015/12/issues-downgrading-from-air-20-mac.html

Re: [FALCONJX][FLEXJS] "as" keyword handling

2016-01-11 Thread Alex Harui
OK, I have pushed changes so that all mucking with the output is
controlled by compiler flags.  They are:

-remove-circulars
-js-output-optimization=

None of these options are on by default, so you may start seeing errors
when compiling your app and need to add one or more of these options
because what -remove-circulars did was on by default before this commit.

The -remove-circulars options scans the goog.require lines in every .JS
file in the app and starting with the main app, chases down the tree of
class dependencies and removes goog.requires that have already been seen
in order to prevent Google Closure Compiler from seeing a circular
dependency.

I have implemented two optimization strategies:
-js-output-optimization=skipAsCoercions does not generate Language.as
calls where it sees the "as" keyword used in casting/coercion.  You can
also control Language.as calls with special asdoc tags
"@flexjsignorecoercion "
-js-output-optimization=skipFunctionCoercions does not generate
Language.as calls for uses of "function" coercions if it finds the no
try-catch blocks in the function surrounding the code.

Interestingly, this means that we can implement other strategies as well
and let folks choose.  I pondered whether to implement a strategy called
"SkipAsAfterIs" that would skip the Language.as call if it found the "as"
was immediately preceded by an "is" check.  Or another strategy called
"skipAsUnlessAssignment" that would skip the Language.as call if it found
the "as" was used outside an assignment expression such as (foo as
Bar).someProperty.

I have updated the examples to use some of these flags since they would
otherwise report circular dependency errors.

I'm now going start on the folder renaming and other refactoring to get a
more Maven-friendly folder structure in the flex-asjs repo.

-Alex

On 1/8/16, 11:52 PM, "Alex Harui"  wrote:

>
>
>On 1/8/16, 11:39 PM, "jude"  wrote:
>
>>I would expect it to keep the same behavior and take a performance hit in
>>exchange. You can always add the option to "speed up" the JS version by
>>removing any of the casting methods. Have you tested the difference with
>>it
>>and without it in JS?
>
>I haven't, but it is not always a cheap function call.
>
>>
>>
>>*"...but the Google Closure Compiler implies that you should have
>>goog.require statements for all dependencies in an output file, and then
>>complains about circular dependencies if you do."*
>>It seems like the problem is with the Google Closure Compiler. That
>>sounds
>>broken to me.
>
>Google is insisting that you should use interfaces and not have classes
>depend on other classes.  So they will say it isn't broken.  I've just
>about finished putting all of these options into compiler options.  None
>of them will be on by default so you will all get to see where Google
>thinks you have circularities.
>
>What the defaults are when we release will depend on customer feedback.
>
>-Alex
>



Re: Installer updated for 4.15

2016-01-11 Thread OK
Nicholas Kwiatkowski-2 wrote
> The installer bypasses all the proxy settings because of the HTTPS fix.

Thanks for the info!
I've installed 4.15.0 successfully at home now.
Using the same Windows 7 machine, but connecting my home network instead of
the restrictive company network.

Is there any reason why Flash/Air 18 is preselected instead of the latest
version?

Thanks Justin for beeing the release manager!

Olaf
 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Installer-updated-for-4-15-tp51174p51188.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Installer updated for 4.15

2016-01-11 Thread Nicholas Kwiatkowski
That is not the case anymore.  The installer bypasses all the proxy
settings because of the HTTPS fix.

-Nick

On Mon, Jan 11, 2016 at 4:10 AM, Justin Mclean 
wrote:

> Hi,
>
> > (Sometimes I've problems with the installer cause in my company I'm
> behind a
> > proxy but I always could select the installation directory)
>
> Check what your proxy setting are in IE (for https) as that what I believe
> all AIR applications on windows use.
>
> The first call is a https call to get the config XML which may be falling
> because of this.
>
> Thanks,
> Justin


Re: draft blog post for 4.15 release

2016-01-11 Thread Nicholas Kwiatkowski
I'm good.  It looks like the mirrors are good to go as well (from the ones
I've checked).

-Nick

On Sun, Jan 10, 2016 at 11:32 PM, Justin Mclean  wrote:

> Hi,
>
> > I've got this staged as soon as you are good for us to publish it.
>
> Thanks for the help. I was planing on announcing (after checking the
> mirrors) in about 2 hours. That work for you?
>
> Justin


Re: Installer updated for 4.15

2016-01-11 Thread Justin Mclean
Hi,

> Why in the logs I see [1] instead this one [2] ?
> 
> [1] https://github.com/swfobject/swfobject/archive/
> [2] https://github.com/swfobject/swfobject/archive/swfobject_2_2.zip

Here’s the lines I get in the log for a successful install:
Downloading 2.2.zip from: https://github.com/swfobject/swfobject/archive
Validating download: 
/Users/justinmclean/Documents/ApacheFlex4.15Test/in/swfobject_2_2.zip

Which are possibly a little less than optional.

Thanks,
Justin



Re: Welcome Andy Dufilie as Apache Flex Commiter

2016-01-11 Thread Michael Schmalle
Ther other day I was thinking to myself, in this day and age where most JS
is minified at the least at the time it gets to the client, no body really
knows what you actually made the app with other than maybe your html
markup, So it's the same old story, it only matters what the client sees
and if ActionScript can do it, it doesn't matter.

Josh, I am curious what you have going. Are you attempting a prototype of
Feathers in JS?

Mike

On Sun, Jan 10, 2016 at 11:48 PM, Josh Tynjala 
wrote:

> Welcome, Andy! ActionScript definitely deserves the opportunity to go head
> to head with other languages that can transpile to JS. Looking forward to
> working with you!
>
> - Josh
> On Jan 10, 2016 6:54 PM, "Andy Dufilie"  wrote:
>
> > Thanks all for the warm welcome!
> >
> > I'm using FlexJS to port the non-UI framework of
> > http://github.com/WeaveTeam/Weave so my company can build a new
> > open-source
> > data visualization framework in HTML5.  It's a great test case for FlexJS
> > because of its size and how tightly coupled it is with the nuances of
> > ActionScript.  Alex has fixed many of the problems I've run into, and I'm
> > looking forward to fixing more myself.  I want to help make FlexJS a
> solid
> > alternative to TypeScript and other languages targeting JavaScript.
> >
> > Andy
> >
> > On Sun, Jan 10, 2016 at 11:17 AM, Michael Schmalle <
> > teotigraphix...@gmail.com> wrote:
> >
> > > Heh, I noticed that last commit and it wasn't a pull request! Welcome
> > Andy
> > > and it's great you are working on the compiler.
> > >
> > > Can you tell us a little about what you are aiming to do with your
> > > projects?
> > >
> > > Mike
> > >
> > > On Sun, Jan 10, 2016 at 10:40 AM, Harbs  wrote:
> > >
> > > > Welcome Andy!
> > > >
> > > > It great to have you on board!
> > > >
> > > > Harbs
> > > >
> > > > On Jan 10, 2016, at 5:39 PM, Alex Harui  wrote:
> > > >
> > > > > Hi folks,
> > > > >
> > > > > The Apache Flex PMC is excited to welcome Andy Dufilie as our
> newest
> > > > > committer!  Andy has recently been contributing great bugs reports
> > and
> > > > > fixes for FlexJS and FalconJX which has earned him the merit to
> > become
> > > a
> > > > > committer (yes, you can become a committer the same way).
> > > > >
> > > > > Please join us in welcoming him as a committer to the Apache Flex
> > > > project.
> > > > >
> > > > > Welcome Andy!
> > > > > -Alex
> > > > >
> > > >
> > > >
> > >
> >
>


Re: Installer updated for 4.15

2016-01-11 Thread Anton Bondarenko
hi, installed successfully.
OS Windows 8.1
log in file

---
с ув., Антон Б.

2016-01-11 13:19 GMT+04:00 Andy Dufilie :

> The installer worked for me on Windows, though it took a long time to
> download everything.
>
> I didn't get any error, but the swfobject url should probably have
> /{branch}.zip at the end:
> https://github.com/swfobject/swfobject/archive/master.zip
> or
> https://github.com/swfobject/swfobject/archive/2.2.zip
>
> On Mon, Jan 11, 2016 at 4:11 AM, Justin Mclean 
> wrote:
>
> > Hi,
> >
> > > I've just tried installer and wasn't able to download everything for
> sdk.
> > > It's stuck on downloading swf object.
> >
> > Not sure what we can do there. Does anyone have a working for swf object?
> >
> > Thanks,
> > Justin
> >
>
Installer version 3.2.0 (windows)
Using Locale: ru_RU
Àäðåñ çåðêàëà ñêà÷èâàíèÿ SDK ó ñëóæáû CGI ïîëó÷åí.
SDK version Apache Flex SDK 4.15.0
AIR version 20.0
Flash Player version 20.0
Ñîçäà¸ì äîìàøíþþ ïàïêó äëÿ Apache Flex
Ñîçäà¸ì âðåìåííóþ ïàïêó
Ñêà÷èâàåì Apache Flex SDK èç: 
http://apache-mirror.rbc.ru/pub/apache/flex/4.15.0/binaries/apache-flex-sdk-4.15.0-bin.zip
Ïðîâåðÿì MD5 öèôðîâóþ ïîäïèñü Apache Flex
Öèôðîâàÿ ïîäïèñü MD5 Apache Flex SDK ñêà÷àííûõ ôàéëîâ ñîâïàäàåò ñ îðèãèíàëîì. 
Ôàéë íå ïîâðåæä¸í.
Ðàñïàêîâûâàåì: C:\Flex_4_15\temp\apache-flex-sdk-4.15.0-bin.zip
Çàêîí÷èëè ðàñïàêîâûâàòü: C:\Flex_4_15\temp\apache-flex-sdk-4.15.0-bin.zip
Ñêà÷èâàåì Adobe AIR Runtime Kit äëÿ Windows èç: 
http://airdownload.adobe.com/air/win/download/20.0//AdobeAIRSDK.zip
Validating download: C:\Flex_4_15/in/AdobeAIRSDK.zip
Çàêîí÷èëè ðàñïàêîâûâàòü: C:\Flex_4_15/in/AdobeAIRSDK.zip
Óñòàíàâëèâàåì Flash Player playerglobal.swc èç: 
http://fpdownload.macromedia.com/get/flashplayer/updaters/20//playerglobal20_0.swc
Validating download: C:\Flex_4_15/frameworks/libs/player/20.0/playerglobal.swc
Ñêà÷èâàåì 2.2.zip èç: https://github.com/swfobject/swfobject/archive
Validating download: C:\Flex_4_15/in/swfobject_2_2.zip
Ñêà÷èâàíèå çàâåðøåíî
Ñêà÷èâàåì OSMF2_0.swc?format=raw èç: 
http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/frameworks/libs
Validating download: C:\Flex_4_15/frameworks/libs/osmf.swc
Ñêà÷èâàåì afe.jar?format=raw èç: 
http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib
Validating download: C:\Flex_4_15/lib/external/optional/afe.jar
Ñêà÷èâàåì aglj40.jar?format=raw èç: 
http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib
Validating download: C:\Flex_4_15/lib/external/optional/aglj40.jar
Ñêà÷èâàåì flex-fontkit.jar?format=raw èç: 
http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib
Validating download: C:\Flex_4_15/lib/external/optional/flex-fontkit.jar
Ñêà÷èâàåì rideau.jar?format=raw èç: 
http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/lib
Validating download: C:\Flex_4_15/lib/external/optional/rideau.jar
Óñòàíàâëèâàåì êîíôèãóðàöèîííûå ôàéëû äëÿ èñïîëüçîâàíèÿ ñ IDE
C:\Flex_4_15 is now an IDE compatible folder
Óñòàíîâêà çàâåðøåíà


Re: Installer updated for 4.15

2016-01-11 Thread piotrz
Why in the logs I see [1] instead this one [2] ?


[1] https://github.com/swfobject/swfobject/archive/
[2] https://github.com/swfobject/swfobject/archive/swfobject_2_2.zip

Piotr



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Installer-updated-for-4-15-tp51174p51182.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Installer updated for 4.15

2016-01-11 Thread Tom Chiverton

https://github.com/swfobject/swfobject/blob/master/swfobject/swfobject.js ?

On 11/01/16 09:11, Justin Mclean wrote:

Not sure what we can do there. Does anyone have a working for swf object?




Re: Installer updated for 4.15

2016-01-11 Thread Andy Dufilie
The installer worked for me on Windows, though it took a long time to
download everything.

I didn't get any error, but the swfobject url should probably have
/{branch}.zip at the end:
https://github.com/swfobject/swfobject/archive/master.zip
or
https://github.com/swfobject/swfobject/archive/2.2.zip

On Mon, Jan 11, 2016 at 4:11 AM, Justin Mclean  wrote:

> Hi,
>
> > I've just tried installer and wasn't able to download everything for sdk.
> > It's stuck on downloading swf object.
>
> Not sure what we can do there. Does anyone have a working for swf object?
>
> Thanks,
> Justin
>


Re: Installer updated for 4.15

2016-01-11 Thread Justin Mclean
Hi,

> Not sure what we can do there. Does anyone have a working for swf object?

Actually this works for me:
https://github.com/swfobject/swfobject/archive/swfobject_2_2.zip

Although I’m not sure that it really needs to be https rather than http.

Thanks,
Justin

Re: Installer updated for 4.15

2016-01-11 Thread Justin Mclean
Hi,

> I've just tried installer and wasn't able to download everything for sdk.
> It's stuck on downloading swf object. 

Not sure what we can do there. Does anyone have a working for swf object?

Thanks,
Justin


Re: Installer updated for 4.15

2016-01-11 Thread Justin Mclean
Hi,

> (Sometimes I've problems with the installer cause in my company I'm behind a
> proxy but I always could select the installation directory)

Check what your proxy setting are in IE (for https) as that what I believe all 
AIR applications on windows use.

The first call is a https call to get the config XML which may be falling 
because of this.

Thanks,
Justin

Re: Installer updated for 4.15

2016-01-11 Thread OK
Hi,

Justin Mclean wrote
> Someone mind testing it on windows for me?

I've just tried to install 4.15.0 by using the installer on windows 7 but
I've got an #2031 error.
The error is thrown directly after finishing the first step (before choosing
the installation directory).

(Sometimes I've problems with the installer cause in my company I'm behind a
proxy but I always could select the installation directory)

Log:
==
Installer version 3.2.0 (windows)
Using Locale: en_US
Fetched the SDK download mirror URL from the CGI.
Error #2031
Installation aborted

Olaf





--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Installer-updated-for-4-15-tp51174p51176.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Installer updated for 4.15

2016-01-11 Thread piotrz
Hi Justin,

I've just tried installer and wasn't able to download everything for sdk.
It's stuck on downloading swf object. [1] I pasted url [2] to web browser
and got 404 - page not found.


[1] https://paste.apache.org/cbAw
[2] https://github.com/swfobject/swfobject/archive

Piotr



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Installer-updated-for-4-15-tp51174p51175.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Installer updated for 4.15

2016-01-11 Thread Justin Mclean
Hi,

I’ve updated the installer config file so it picks up the new 4.15 SDK release. 
Someone mind testing it on windows for me?

I can’t send the announcement out until the web site links are updated (as it 
refers to the site). Once that is done and assuming everything is good with the 
site and installer I’ll send the announcement out.

Thanks,
Justin