Re: Add Royale to Wiki: Comparison of JavaScript frameworks

2019-08-07 Thread Andrew Wetmore
Thank you @Carlos Rovira 

On Wed, Aug 7, 2019 at 2:09 PM Carlos Rovira 
wrote:

> Hi Andrew,
>
> this is from [1]
>
> Browser Support for ES5 (2009)
> BrowserVersionFrom Date
> Chrome 23 Sep 2012
> Firefox 21 Apr 2013
> IE 9* Mar 2011
> IE / Edge 10 Sep 2012
> Safari 6 Jul 2012
> Opera 15 Jul 2013
>
>
> [1] https://www.w3schools.com/js/js_versions.asp
>
> El lun., 5 ago. 2019 a las 11:31, Andrew Wetmore ()
> escribió:
>
> > Yes, I feel a little bit like a guest at some other group's dinner party.
> >
> > Any thoughts on the minimum versions of the various browsers that we
> > support?
> >
> > On Mon, Aug 5, 2019 at 6:27 AM Carlos Rovira 
> > wrote:
> >
> > > Hi Andrew,
> > >
> > > El lun., 5 ago. 2019 a las 11:14, Andrew Wetmore ( >)
> > > escribió:
> > >
> > > >
> > > > Do we really have a GUI page layout? Is that not more like what Flex
> > > > Builder had?
> > > >
> > >
> > > Yeah, you're right. I was thinking about "layouts" feature, but is
> really
> > > what you say.
> > > The problem with this grids is that sometimes is hard to imagine what
> the
> > > author wants to refer.
> > >
> > > Thanks!
> > >
> > >
> > > >
> > > > --
> > > > Carlos Rovira
> > > > http://about.me/carlosrovira
> > > >
> > > >
> > > >
> > > >
> > >
> >
> >
> > --
> > Andrew Wetmore
> >
> > http://cottage14.blogspot.com/
> >
>
>
> --
> Carlos Rovira
> http://about.me/carlosrovira
>


-- 
Andrew Wetmore

http://cottage14.blogspot.com/


Re: [royale-compiler] branch develop updated: compiler-jx: added inline-constants compiler option for JS builds to optionally inline the values of primitive constants (like Number, String, Boolean, in

2019-08-07 Thread Greg Dove
Hey Josh, that sounds pretty cool. I'm not sure, but it might however be
duplicating some aspects of what GCC already does when it optimizes because
I expect it might do the same types of thing when it processes the @const
annotations in the debug code hints.
Also, for example, strings are only included once in the js-release build
if they are above a minimal length and then accessed by reference
irrespective of what inlining changes were made in the debug code output.
This ends up being similar conceptually to SWF's (and AMF) string tables I
think, although I did not check whether that changed since the ASC 2.0
inlining support.

fyi I have a local compiler branch from FlexJS days where I have bindings
for (static) primitive constants being converted to initialization value
assignments with inline values instead of *actual bindings*, similar to
what I assume you are doing here, but as a way to avoid running binding
code for simple static constant bindings. I will revisit that at some point
soon, It might help improve startup speed for some people.



On Thu, Aug 8, 2019 at 9:09 AM  wrote:

> This is an automated email from the ASF dual-hosted git repository.
>
> joshtynjala pushed a commit to branch develop
> in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
>
>
> The following commit(s) were added to refs/heads/develop by this push:
>  new 61479f5  compiler-jx: added inline-constants compiler option for
> JS builds to optionally inline the values of primitive constants (like
> Number, String, Boolean, int, and uint) instead of referencing them.
> 61479f5 is described below
>
> commit 61479f5cce3c4ea582a1a6a859f1e74ef9256a9f
> Author: Josh Tynjala 
> AuthorDate: Wed Aug 7 13:52:59 2019 -0700
>
> compiler-jx: added inline-constants compiler option for JS builds to
> optionally inline the values of primitive constants (like Number, String,
> Boolean, int, and uint) instead of referencing them.
>
> Defaults to false. It may make sense to switch this to true in the
> future, but it's not stable yet.
>
> Does not yet skip unnecessary goog.require() calls, even though the
> classes may no longer be referenced. Figuring out how to do this should
> reduce the size of release builds.
> ---
>  .../internal/codegen/js/jx/IdentifierEmitter.java  | 37
> +-
>  .../driver/js/goog/JSGoogConfiguration.java| 19 +++
>  2 files changed, 55 insertions(+), 1 deletion(-)
>
> diff --git
> a/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/jx/IdentifierEmitter.java
> b/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/jx/IdentifierEmitter.java
> index 4d42069..f6363ea 100644
> ---
> a/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/jx/IdentifierEmitter.java
> +++
> b/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/jx/IdentifierEmitter.java
> @@ -19,9 +19,12 @@
>
>  package org.apache.royale.compiler.internal.codegen.js.jx;
>
> +import org.apache.royale.abc.ABCConstants;
>  import org.apache.royale.abc.semantics.Namespace;
>  import org.apache.royale.compiler.codegen.ISubEmitter;
>  import org.apache.royale.compiler.codegen.js.IJSEmitter;
> +import org.apache.royale.compiler.constants.IASLanguageConstants;
> +import org.apache.royale.compiler.definitions.IConstantDefinition;
>  import org.apache.royale.compiler.definitions.IDefinition;
>  import org.apache.royale.compiler.definitions.IFunctionDefinition;
>  import
> org.apache.royale.compiler.definitions.IFunctionDefinition.FunctionClassification;
> @@ -37,6 +40,7 @@ import
> org.apache.royale.compiler.internal.codegen.js.goog.JSGoogEmitterTokens;
>  import
> org.apache.royale.compiler.internal.codegen.js.royale.JSRoyaleEmitterTokens;
>  import org.apache.royale.compiler.internal.codegen.js.utils.EmitterUtils;
>  import org.apache.royale.compiler.internal.definitions.*;
> +import org.apache.royale.compiler.internal.projects.RoyaleJSProject;
>  import org.apache.royale.compiler.internal.tree.as
> .BinaryOperatorAssignmentNode;
>  import org.apache.royale.compiler.internal.tree.as
> .BinaryOperatorDivisionAssignmentNode;
>  import org.apache.royale.compiler.internal.tree.as
> .MemberAccessExpressionNode;
> @@ -76,12 +80,43 @@ public class IdentifierEmitter extends JSSubEmitter
> implements
>  && !identifierIsAccessorFunction;
>  boolean emitName = true;
> JSRoyaleEmitter fjs = (JSRoyaleEmitter)getEmitter();
> +RoyaleJSProject project =
> (RoyaleJSProject)getWalker().getProject();
> boolean isCustomNamespace = false;
> boolean isStatic = nodeDef != null && nodeDef.isStatic();
>  if (nodeDef instanceof FunctionDefinition &&
>   fjs.isCustomNamespace((FunctionDefinition)nodeDef))
> -   isCustomNamespace = true;
> +  isCustomNamespace = true;
>
> +if (isStatic
> +&& nodeDef instanceof 

Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)

2019-08-07 Thread Andrew Wetmore
That looks very good, with the list of providers above the qualifications
for getting added to the list.

On Wed, Aug 7, 2019 at 2:18 PM Yishay Weiss  wrote:

> Good to hear Carlos, thanks.
>
>
>
> 
> From: Carlos Rovira 
> Sent: Wednesday, August 7, 2019 7:57:58 PM
> To: dev@royale.apache.org 
> Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)
>
> Hi Piotr, Yshay,
>
> entry is now added and published :)
>
> https://royale.apache.org/royale-commercial-support/
>
>
>
> El mié., 7 ago. 2019 a las 8:07, Piotr Zarzycki (<
> piotrzarzyck...@gmail.com>)
> escribió:
>
> > Hi Carlos,
> >
> > Yishay send you logo off the list. Is it ok ?
> >
> > Thanks,
> > Piotr
> >
> > pon., 5 sie 2019 o 11:32 Piotr Zarzycki 
> > napisał(a):
> >
> > > Yes! I'm ok!
> > >
> > > Thanks for asking.
> > >
> > > pon., 5 sie 2019 o 11:13 Yishay Weiss 
> > napisał(a):
> > >
> > >> Actually, please add a + before the phone number so it links to Skype.
> > >>
> > >>
> > >>
> > >> Piotr, are u ok with being added?
> > >>
> > >>
> > >>
> > >> 
> > >> From: Yishay Weiss 
> > >> Sent: Monday, August 5, 2019 12:09:40 PM
> > >> To: dev@royale.apache.org 
> > >> Subject: RE: Royale Commercial Support Page (was: Fwd: AIR and Royale)
> > >>
> > >> Looks good to me. Thanks.
> > >>
> > >>
> > >>
> > >> 
> > >> From: Carlos Rovira 
> > >> Sent: Monday, August 5, 2019 12:00:08 PM
> > >> To: dev@royale.apache.org 
> > >> Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)
> > >>
> > >> Yeah! sorry :)
> > >>
> > >> https://royale.codeoscopic.com/royale-commercial-support/
> > >>
> > >> El lun., 5 ago. 2019 a las 10:49, Yishay Weiss (<
> yishayj...@hotmail.com
> > >)
> > >> escribió:
> > >>
> > >> >
> > >> > >ok, you can check here the addition before publish.
> > >> >
> > >> > Was there supposed to be a link?
> > >> >
> > >> >
> > >> >
> > >> >
> > >> > El lun., 5 ago. 2019 a las 10:10, Yishay Weiss (<
> > yishayj...@hotmail.com
> > >> >)
> > >> > escribió:
> > >> >
> > >> > > I’ll try to find one. Thanks!
> > >> > >
> > >> > >
> > >> > >
> > >> > > 
> > >> > > From: Carlos Rovira 
> > >> > > Sent: Monday, August 5, 2019 10:59:51 AM
> > >> > > To: dev@royale.apache.org 
> > >> > > Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and
> > Royale)
> > >> > >
> > >> > > Hi Yishay,
> > >> > >
> > >> > > I'm adding it. Could you provide a better logo?
> > >> > > (LOGO (if applies) (PNG, background transparent, good resolution
> (at
> > >> > least
> > >> > > above 800px))
> > >> > > thanks
> > >> > >
> > >> > > El lun., 5 ago. 2019 a las 9:23, Yishay Weiss (<
> > >> yishayj...@hotmail.com>)
> > >> > > escribió:
> > >> > >
> > >> > > > Apache Royale contributor(s): Piotr Zarzycki (committer and PMC
> > >> > member),
> > >> > > > Yishay Weiss (committer and PMC member).
> > >> > > >
> > >> > > > 
> > >> > > > From: Yishay Weiss
> > >> > > > Sent: Monday, August 5, 2019 10:17:52 AM
> > >> > > > To: dev@royale.apache.org 
> > >> > > > Subject: RE: Royale Commercial Support Page (was: Fwd: AIR and
> > >> Royale)
> > >> > > >
> > >> > > >
> > >> > > > Carlos, please add Prominic as well. Thanks.
> > >> > > >
> > >> > > >
> > >> > > >
> > >> > > > Name: Prominic.NET
> > >> > > >
> > >> > > >
> > >> > > >
> > >> > > > Short Description: Prominic.NET is a home-grown, US-based
> hosting
> > >> > > services
> > >> > > > provider, providing services and support to businesses all over
> > the
> > >> > > world.
> > >> > > > Among its products is the Moonshine IDE which is targeted
> > >> specifically
> > >> > at
> > >> > > > Apache Flex and Apache Royale. Our team includes Royale
> > specialists
> > >> > with
> > >> > > > experience in porting Apache Flex applications to Apache Royale.
> > >> > > >
> > >> > > >
> > >> > > >
> > >> > > > Logo: https://1drv.ms/u/s!AgH-0pVQ5zPPxAevfQfnGMANlj0b
> > >> > > >
> > >> > > >
> > >> > > >
> > >> > > > Website URL: https://prominic.net/
> > >> > > >
> > >> > > >
> > >> > > >
> > >> > > > Contact Person: Yishay Weiss
> > >> > > >
> > >> > > >
> > >> > > >
> > >> > > > Contact Email: yishayj...@hotmail.com > yishayj...@hotmail.com
> > >> >
> > >> > > >
> > >> > > >
> > >> > > >
> > >> > > > Contact Phone: 972524512113
> > >> > > >
> > >> > > >
> > >> > > >
> > >> > > > 
> > >> > > > From: Andrew Wetmore 
> > >> > > > Sent: Friday, July 26, 2019 3:35:40 PM
> > >> > > > To: Carlos Rovira 
> > >> > > > Cc: dev@royale.apache.org 
> > >> > > > Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and
> > >> Royale)
> > >> > > >
> > >> > > > I have made a bunch of small text changes. This is a useful
> > >> tutorial!
> > >> > > >
> > >> > > > On Thu, Jul 25, 2019 at 9:59 PM Andrew Wetmore <
> > cottag...@gmail.com
> > >> >
> > >> > > > wrote:
> > >> > > >
> > >> > > > > I will do a text review early 

Jenkins build is back to normal : royale-asjs_MXTests #1023

2019-08-07 Thread Apache Royale CI Server
See 




Re: Add Royale to Wiki: Comparison of JavaScript frameworks

2019-08-07 Thread Carlos Rovira
Hi Andrew,

this is from [1]

Browser Support for ES5 (2009)
BrowserVersionFrom Date
Chrome 23 Sep 2012
Firefox 21 Apr 2013
IE 9* Mar 2011
IE / Edge 10 Sep 2012
Safari 6 Jul 2012
Opera 15 Jul 2013


[1] https://www.w3schools.com/js/js_versions.asp

El lun., 5 ago. 2019 a las 11:31, Andrew Wetmore ()
escribió:

> Yes, I feel a little bit like a guest at some other group's dinner party.
>
> Any thoughts on the minimum versions of the various browsers that we
> support?
>
> On Mon, Aug 5, 2019 at 6:27 AM Carlos Rovira 
> wrote:
>
> > Hi Andrew,
> >
> > El lun., 5 ago. 2019 a las 11:14, Andrew Wetmore ()
> > escribió:
> >
> > >
> > > Do we really have a GUI page layout? Is that not more like what Flex
> > > Builder had?
> > >
> >
> > Yeah, you're right. I was thinking about "layouts" feature, but is really
> > what you say.
> > The problem with this grids is that sometimes is hard to imagine what the
> > author wants to refer.
> >
> > Thanks!
> >
> >
> > >
> > > --
> > > Carlos Rovira
> > > http://about.me/carlosrovira
> > >
> > >
> > >
> > >
> >
>
>
> --
> Andrew Wetmore
>
> http://cottage14.blogspot.com/
>


-- 
Carlos Rovira
http://about.me/carlosrovira


RE: Royale Commercial Support Page (was: Fwd: AIR and Royale)

2019-08-07 Thread Yishay Weiss
Good to hear Carlos, thanks.




From: Carlos Rovira 
Sent: Wednesday, August 7, 2019 7:57:58 PM
To: dev@royale.apache.org 
Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)

Hi Piotr, Yshay,

entry is now added and published :)

https://royale.apache.org/royale-commercial-support/



El mié., 7 ago. 2019 a las 8:07, Piotr Zarzycki ()
escribió:

> Hi Carlos,
>
> Yishay send you logo off the list. Is it ok ?
>
> Thanks,
> Piotr
>
> pon., 5 sie 2019 o 11:32 Piotr Zarzycki 
> napisał(a):
>
> > Yes! I'm ok!
> >
> > Thanks for asking.
> >
> > pon., 5 sie 2019 o 11:13 Yishay Weiss 
> napisał(a):
> >
> >> Actually, please add a + before the phone number so it links to Skype.
> >>
> >>
> >>
> >> Piotr, are u ok with being added?
> >>
> >>
> >>
> >> 
> >> From: Yishay Weiss 
> >> Sent: Monday, August 5, 2019 12:09:40 PM
> >> To: dev@royale.apache.org 
> >> Subject: RE: Royale Commercial Support Page (was: Fwd: AIR and Royale)
> >>
> >> Looks good to me. Thanks.
> >>
> >>
> >>
> >> 
> >> From: Carlos Rovira 
> >> Sent: Monday, August 5, 2019 12:00:08 PM
> >> To: dev@royale.apache.org 
> >> Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)
> >>
> >> Yeah! sorry :)
> >>
> >> https://royale.codeoscopic.com/royale-commercial-support/
> >>
> >> El lun., 5 ago. 2019 a las 10:49, Yishay Weiss ( >)
> >> escribió:
> >>
> >> >
> >> > >ok, you can check here the addition before publish.
> >> >
> >> > Was there supposed to be a link?
> >> >
> >> >
> >> >
> >> >
> >> > El lun., 5 ago. 2019 a las 10:10, Yishay Weiss (<
> yishayj...@hotmail.com
> >> >)
> >> > escribió:
> >> >
> >> > > I’ll try to find one. Thanks!
> >> > >
> >> > >
> >> > >
> >> > > 
> >> > > From: Carlos Rovira 
> >> > > Sent: Monday, August 5, 2019 10:59:51 AM
> >> > > To: dev@royale.apache.org 
> >> > > Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and
> Royale)
> >> > >
> >> > > Hi Yishay,
> >> > >
> >> > > I'm adding it. Could you provide a better logo?
> >> > > (LOGO (if applies) (PNG, background transparent, good resolution (at
> >> > least
> >> > > above 800px))
> >> > > thanks
> >> > >
> >> > > El lun., 5 ago. 2019 a las 9:23, Yishay Weiss (<
> >> yishayj...@hotmail.com>)
> >> > > escribió:
> >> > >
> >> > > > Apache Royale contributor(s): Piotr Zarzycki (committer and PMC
> >> > member),
> >> > > > Yishay Weiss (committer and PMC member).
> >> > > >
> >> > > > 
> >> > > > From: Yishay Weiss
> >> > > > Sent: Monday, August 5, 2019 10:17:52 AM
> >> > > > To: dev@royale.apache.org 
> >> > > > Subject: RE: Royale Commercial Support Page (was: Fwd: AIR and
> >> Royale)
> >> > > >
> >> > > >
> >> > > > Carlos, please add Prominic as well. Thanks.
> >> > > >
> >> > > >
> >> > > >
> >> > > > Name: Prominic.NET
> >> > > >
> >> > > >
> >> > > >
> >> > > > Short Description: Prominic.NET is a home-grown, US-based hosting
> >> > > services
> >> > > > provider, providing services and support to businesses all over
> the
> >> > > world.
> >> > > > Among its products is the Moonshine IDE which is targeted
> >> specifically
> >> > at
> >> > > > Apache Flex and Apache Royale. Our team includes Royale
> specialists
> >> > with
> >> > > > experience in porting Apache Flex applications to Apache Royale.
> >> > > >
> >> > > >
> >> > > >
> >> > > > Logo: https://1drv.ms/u/s!AgH-0pVQ5zPPxAevfQfnGMANlj0b
> >> > > >
> >> > > >
> >> > > >
> >> > > > Website URL: https://prominic.net/
> >> > > >
> >> > > >
> >> > > >
> >> > > > Contact Person: Yishay Weiss
> >> > > >
> >> > > >
> >> > > >
> >> > > > Contact Email: yishayj...@hotmail.com yishayj...@hotmail.com
> >> >
> >> > > >
> >> > > >
> >> > > >
> >> > > > Contact Phone: 972524512113
> >> > > >
> >> > > >
> >> > > >
> >> > > > 
> >> > > > From: Andrew Wetmore 
> >> > > > Sent: Friday, July 26, 2019 3:35:40 PM
> >> > > > To: Carlos Rovira 
> >> > > > Cc: dev@royale.apache.org 
> >> > > > Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and
> >> Royale)
> >> > > >
> >> > > > I have made a bunch of small text changes. This is a useful
> >> tutorial!
> >> > > >
> >> > > > On Thu, Jul 25, 2019 at 9:59 PM Andrew Wetmore <
> cottag...@gmail.com
> >> >
> >> > > > wrote:
> >> > > >
> >> > > > > I will do a text review early tomorrow.
> >> > > > >
> >> > > > > On Thu, Jul 25, 2019 at 7:54 PM Carlos Rovira <
> >> > carlosrov...@apache.org
> >> > > >
> >> > > > > wrote:
> >> > > > >
> >> > > > >> Hi!
> >> > > > >>
> >> > > > >> New commercial support page is ready and published. Andrew, I
> get
> >> > some
> >> > > > of
> >> > > > >> the texts from other apache webs, but anyway some review for
> your
> >> > part
> >> > > > >> would be great! :)
> >> > > > >>
> >> > > > >> https://royale.apache.org/royale-commercial-support/
> >> > > > >>
> >> > > > >> Anyone that wants to be listed, 

Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)

2019-08-07 Thread Carlos Rovira
Hi Piotr, Yshay,

entry is now added and published :)

https://royale.apache.org/royale-commercial-support/



El mié., 7 ago. 2019 a las 8:07, Piotr Zarzycki ()
escribió:

> Hi Carlos,
>
> Yishay send you logo off the list. Is it ok ?
>
> Thanks,
> Piotr
>
> pon., 5 sie 2019 o 11:32 Piotr Zarzycki 
> napisał(a):
>
> > Yes! I'm ok!
> >
> > Thanks for asking.
> >
> > pon., 5 sie 2019 o 11:13 Yishay Weiss 
> napisał(a):
> >
> >> Actually, please add a + before the phone number so it links to Skype.
> >>
> >>
> >>
> >> Piotr, are u ok with being added?
> >>
> >>
> >>
> >> 
> >> From: Yishay Weiss 
> >> Sent: Monday, August 5, 2019 12:09:40 PM
> >> To: dev@royale.apache.org 
> >> Subject: RE: Royale Commercial Support Page (was: Fwd: AIR and Royale)
> >>
> >> Looks good to me. Thanks.
> >>
> >>
> >>
> >> 
> >> From: Carlos Rovira 
> >> Sent: Monday, August 5, 2019 12:00:08 PM
> >> To: dev@royale.apache.org 
> >> Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)
> >>
> >> Yeah! sorry :)
> >>
> >> https://royale.codeoscopic.com/royale-commercial-support/
> >>
> >> El lun., 5 ago. 2019 a las 10:49, Yishay Weiss ( >)
> >> escribió:
> >>
> >> >
> >> > >ok, you can check here the addition before publish.
> >> >
> >> > Was there supposed to be a link?
> >> >
> >> >
> >> >
> >> >
> >> > El lun., 5 ago. 2019 a las 10:10, Yishay Weiss (<
> yishayj...@hotmail.com
> >> >)
> >> > escribió:
> >> >
> >> > > I’ll try to find one. Thanks!
> >> > >
> >> > >
> >> > >
> >> > > 
> >> > > From: Carlos Rovira 
> >> > > Sent: Monday, August 5, 2019 10:59:51 AM
> >> > > To: dev@royale.apache.org 
> >> > > Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and
> Royale)
> >> > >
> >> > > Hi Yishay,
> >> > >
> >> > > I'm adding it. Could you provide a better logo?
> >> > > (LOGO (if applies) (PNG, background transparent, good resolution (at
> >> > least
> >> > > above 800px))
> >> > > thanks
> >> > >
> >> > > El lun., 5 ago. 2019 a las 9:23, Yishay Weiss (<
> >> yishayj...@hotmail.com>)
> >> > > escribió:
> >> > >
> >> > > > Apache Royale contributor(s): Piotr Zarzycki (committer and PMC
> >> > member),
> >> > > > Yishay Weiss (committer and PMC member).
> >> > > >
> >> > > > 
> >> > > > From: Yishay Weiss
> >> > > > Sent: Monday, August 5, 2019 10:17:52 AM
> >> > > > To: dev@royale.apache.org 
> >> > > > Subject: RE: Royale Commercial Support Page (was: Fwd: AIR and
> >> Royale)
> >> > > >
> >> > > >
> >> > > > Carlos, please add Prominic as well. Thanks.
> >> > > >
> >> > > >
> >> > > >
> >> > > > Name: Prominic.NET
> >> > > >
> >> > > >
> >> > > >
> >> > > > Short Description: Prominic.NET is a home-grown, US-based hosting
> >> > > services
> >> > > > provider, providing services and support to businesses all over
> the
> >> > > world.
> >> > > > Among its products is the Moonshine IDE which is targeted
> >> specifically
> >> > at
> >> > > > Apache Flex and Apache Royale. Our team includes Royale
> specialists
> >> > with
> >> > > > experience in porting Apache Flex applications to Apache Royale.
> >> > > >
> >> > > >
> >> > > >
> >> > > > Logo: https://1drv.ms/u/s!AgH-0pVQ5zPPxAevfQfnGMANlj0b
> >> > > >
> >> > > >
> >> > > >
> >> > > > Website URL: https://prominic.net/
> >> > > >
> >> > > >
> >> > > >
> >> > > > Contact Person: Yishay Weiss
> >> > > >
> >> > > >
> >> > > >
> >> > > > Contact Email: yishayj...@hotmail.com yishayj...@hotmail.com
> >> >
> >> > > >
> >> > > >
> >> > > >
> >> > > > Contact Phone: 972524512113
> >> > > >
> >> > > >
> >> > > >
> >> > > > 
> >> > > > From: Andrew Wetmore 
> >> > > > Sent: Friday, July 26, 2019 3:35:40 PM
> >> > > > To: Carlos Rovira 
> >> > > > Cc: dev@royale.apache.org 
> >> > > > Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and
> >> Royale)
> >> > > >
> >> > > > I have made a bunch of small text changes. This is a useful
> >> tutorial!
> >> > > >
> >> > > > On Thu, Jul 25, 2019 at 9:59 PM Andrew Wetmore <
> cottag...@gmail.com
> >> >
> >> > > > wrote:
> >> > > >
> >> > > > > I will do a text review early tomorrow.
> >> > > > >
> >> > > > > On Thu, Jul 25, 2019 at 7:54 PM Carlos Rovira <
> >> > carlosrov...@apache.org
> >> > > >
> >> > > > > wrote:
> >> > > > >
> >> > > > >> Hi!
> >> > > > >>
> >> > > > >> New commercial support page is ready and published. Andrew, I
> get
> >> > some
> >> > > > of
> >> > > > >> the texts from other apache webs, but anyway some review for
> your
> >> > part
> >> > > > >> would be great! :)
> >> > > > >>
> >> > > > >> https://royale.apache.org/royale-commercial-support/
> >> > > > >>
> >> > > > >> Anyone that wants to be listed, please follow instructions!! :)
> >> > > > >>
> >> > > > >>
> >> > > > >>
> >> > > > >>
> >> > > > >> El vie., 7 jun. 2019 a las 15:51, Andrew Wetmore (<
> >> > > cottag...@gmail.com
> >> > > > >)
> >> > > > >> escribió:
> >> > > > 

Build failed in Jenkins: royale-asjs_MXTests #1022

2019-08-07 Thread Apache Royale CI Server
See 


--
[...truncated 880.00 KB...]
[mxmlc] scanning for overrides: ObjectUtil
[mxmlc] scanning for overrides: SolidBorderUtil
[mxmlc] scanning for overrides: StringTrimmer
[mxmlc] scanning for overrides: StringUtil
[mxmlc] scanning for overrides: Timer
[mxmlc] scanning for overrides: UIUtils
[mxmlc] scanning for overrides: Effect
[mxmlc] scanning for overrides: Transition
[mxmlc] scanning for overrides: IFill
[mxmlc] scanning for overrides: SolidColor
[mxmlc] scanning for overrides: IExternalizable
[mxmlc] scanning for overrides: Proxy
[mxmlc] scanning for overrides: CursorBookmark
[mxmlc] scanning for overrides: ICollectionView
[mxmlc] scanning for overrides: IList
[mxmlc] scanning for overrides: IViewCursor
[mxmlc] scanning for overrides: ListCollectionView
[mxmlc] scanning for overrides: ListCollectionViewCursor
[mxmlc] scanning for overrides: ListCollectionViewBookmark
[mxmlc] scanning for overrides: ArrayCollection
[mxmlc] scanning for overrides: ArrayList
[mxmlc] scanning for overrides: XMLListCollection
[mxmlc] scanning for overrides: CanvasLayout
[mxmlc] scanning for overrides: Flex
[mxmlc] scanning for overrides: BoxDirection
[mxmlc] scanning for overrides: HBox
[mxmlc] scanning for overrides: PanelTitleBar
[mxmlc] scanning for overrides: DataGridColumn
[mxmlc] scanning for overrides: Button
[mxmlc] scanning for overrides: ISelectable
[mxmlc] scanning for overrides: CheckBox
[mxmlc] scanning for overrides: IFocusManagerComponent
[mxmlc] scanning for overrides: ComboBase
[mxmlc] scanning for overrides: ComboBox
[mxmlc] scanning for overrides: ScrollControlBase
[mxmlc] scanning for overrides: ListBase
[mxmlc] scanning for overrides: DataGrid
[mxmlc] scanning for overrides: DateField
[mxmlc] scanning for overrides: Label
[mxmlc] scanning for overrides: List
[mxmlc] scanning for overrides: MenuBar
[mxmlc] scanning for overrides: NumericStepper
[mxmlc] scanning for overrides: RadioButton
[mxmlc] scanning for overrides: RadioButtonGroup
[mxmlc] scanning for overrides: TextArea
[mxmlc] scanning for overrides: ITextInput
[mxmlc] scanning for overrides: TextInput
[mxmlc] scanning for overrides: ITextFieldFactory
[mxmlc] scanning for overrides: Singleton
[mxmlc] scanning for overrides: ListEvent
[mxmlc] scanning for overrides: MenuEvent
[mxmlc] scanning for overrides: MouseEvent
[mxmlc] scanning for overrides: PropertyChangeEventKind
[mxmlc] scanning for overrides: Matrix
[mxmlc] scanning for overrides: Matrix
[mxmlc] scanning for overrides: IFocusManagerComplexComponent
[mxmlc] scanning for overrides: IFocusManagerGroup
[mxmlc] scanning for overrides: IResourceBundle
[mxmlc] scanning for overrides: ResourceManagerImpl
[mxmlc] scanning for overrides: ResourceModuleInfo
[mxmlc] scanning for overrides: ResourceEventDispatcher
[mxmlc] scanning for overrides: ResourceBundleProxy
[mxmlc] scanning for overrides: GroupBase
[mxmlc] scanning for overrides: SkinnableComponent
[mxmlc] scanning for overrides: ButtonBase
[mxmlc] scanning for overrides: Button
[mxmlc] scanning for overrides: ErrorArray
[mxmlc] scanning for overrides: RunCodeEvent
[mxmlc] scanning for overrides: PasswordInputBead
[mxmlc] scanning for overrides: ITileLayout
[mxmlc] scanning for overrides: TileLayout
[mxmlc] scanning for overrides: LocaleUtils
[mxmlc] scanning for overrides: StringPadder
[mxmlc] scanning for overrides: UIDUtil
[mxmlc] scanning for overrides: IStroke
[mxmlc] scanning for overrides: CursorError
[mxmlc] scanning for overrides: SortError
[mxmlc] scanning for overrides: ISort
[mxmlc] scanning for overrides: Sort
[mxmlc] scanning for overrides: IXMLNotifiable
[mxmlc] scanning for overrides: XMLListAdapter
[mxmlc] scanning for overrides: FlexChildInfo
[mxmlc] scanning for overrides: BaseListData
[mxmlc] scanning for overrides: IFactory
[mxmlc] scanning for overrides: IUITextField
[mxmlc] scanning for overrides: UITextField
[mxmlc] scanning for overrides: CollectionEvent
[mxmlc] scanning for overrides: CollectionEventKind
[mxmlc] scanning for overrides: LocaleSorter
[mxmlc] scanning for overrides: LocaleID
[mxmlc] scanning for overrides: LocaleRegistry
[mxmlc] scanning for overrides: ResourceBundle
[mxmlc] scanning for overrides: ArrayUtil
[mxmlc] scanning for overrides: StringUtil
[mxmlc] scanning for overrides: UIDUtil
[mxmlc] scanning for overrides: DataGroup
[mxmlc] scanning for overrides: LayoutBase
[mxmlc] scanning for overrides: BasicLayout
[mxmlc] scanning for overrides: IBinaryDataInput

Build failed in Jenkins: royale-asjs_MXTests #1021

2019-08-07 Thread Apache Royale CI Server
See 


Changes:

[greg.dove] Aligning Language tests between manualtests project and RoyaleUnit

[greg.dove] Adding a compatibility package to manualtests/UnitTests to permit

[greg.dove] Mirror existing RoyaleUnit tests in manualtests/UnitTests (swap to

[greg.dove] Migrate other manualtests/UnitTests to alternate assertion methods 
to

--
[...truncated 878.73 KB...]
[mxmlc] scanning for overrides: ObjectUtil
[mxmlc] scanning for overrides: SolidBorderUtil
[mxmlc] scanning for overrides: StringTrimmer
[mxmlc] scanning for overrides: StringUtil
[mxmlc] scanning for overrides: Timer
[mxmlc] scanning for overrides: UIUtils
[mxmlc] scanning for overrides: Effect
[mxmlc] scanning for overrides: Transition
[mxmlc] scanning for overrides: IFill
[mxmlc] scanning for overrides: SolidColor
[mxmlc] scanning for overrides: IExternalizable
[mxmlc] scanning for overrides: Proxy
[mxmlc] scanning for overrides: CursorBookmark
[mxmlc] scanning for overrides: ICollectionView
[mxmlc] scanning for overrides: IList
[mxmlc] scanning for overrides: IViewCursor
[mxmlc] scanning for overrides: ListCollectionView
[mxmlc] scanning for overrides: ListCollectionViewCursor
[mxmlc] scanning for overrides: ListCollectionViewBookmark
[mxmlc] scanning for overrides: ArrayCollection
[mxmlc] scanning for overrides: ArrayList
[mxmlc] scanning for overrides: XMLListCollection
[mxmlc] scanning for overrides: CanvasLayout
[mxmlc] scanning for overrides: Flex
[mxmlc] scanning for overrides: BoxDirection
[mxmlc] scanning for overrides: HBox
[mxmlc] scanning for overrides: PanelTitleBar
[mxmlc] scanning for overrides: DataGridColumn
[mxmlc] scanning for overrides: Button
[mxmlc] scanning for overrides: ISelectable
[mxmlc] scanning for overrides: CheckBox
[mxmlc] scanning for overrides: IFocusManagerComponent
[mxmlc] scanning for overrides: ComboBase
[mxmlc] scanning for overrides: ComboBox
[mxmlc] scanning for overrides: ScrollControlBase
[mxmlc] scanning for overrides: ListBase
[mxmlc] scanning for overrides: DataGrid
[mxmlc] scanning for overrides: DateField
[mxmlc] scanning for overrides: Label
[mxmlc] scanning for overrides: List
[mxmlc] scanning for overrides: MenuBar
[mxmlc] scanning for overrides: NumericStepper
[mxmlc] scanning for overrides: RadioButton
[mxmlc] scanning for overrides: RadioButtonGroup
[mxmlc] scanning for overrides: TextArea
[mxmlc] scanning for overrides: ITextInput
[mxmlc] scanning for overrides: TextInput
[mxmlc] scanning for overrides: ITextFieldFactory
[mxmlc] scanning for overrides: Singleton
[mxmlc] scanning for overrides: ListEvent
[mxmlc] scanning for overrides: MenuEvent
[mxmlc] scanning for overrides: MouseEvent
[mxmlc] scanning for overrides: PropertyChangeEventKind
[mxmlc] scanning for overrides: Matrix
[mxmlc] scanning for overrides: Matrix
[mxmlc] scanning for overrides: IFocusManagerComplexComponent
[mxmlc] scanning for overrides: IFocusManagerGroup
[mxmlc] scanning for overrides: IResourceBundle
[mxmlc] scanning for overrides: ResourceManagerImpl
[mxmlc] scanning for overrides: ResourceModuleInfo
[mxmlc] scanning for overrides: ResourceEventDispatcher
[mxmlc] scanning for overrides: ResourceBundleProxy
[mxmlc] scanning for overrides: GroupBase
[mxmlc] scanning for overrides: SkinnableComponent
[mxmlc] scanning for overrides: ButtonBase
[mxmlc] scanning for overrides: Button
[mxmlc] scanning for overrides: ErrorArray
[mxmlc] scanning for overrides: RunCodeEvent
[mxmlc] scanning for overrides: PasswordInputBead
[mxmlc] scanning for overrides: ITileLayout
[mxmlc] scanning for overrides: TileLayout
[mxmlc] scanning for overrides: LocaleUtils
[mxmlc] scanning for overrides: StringPadder
[mxmlc] scanning for overrides: UIDUtil
[mxmlc] scanning for overrides: IStroke
[mxmlc] scanning for overrides: CursorError
[mxmlc] scanning for overrides: SortError
[mxmlc] scanning for overrides: ISort
[mxmlc] scanning for overrides: Sort
[mxmlc] scanning for overrides: IXMLNotifiable
[mxmlc] scanning for overrides: XMLListAdapter
[mxmlc] scanning for overrides: FlexChildInfo
[mxmlc] scanning for overrides: BaseListData
[mxmlc] scanning for overrides: IFactory
[mxmlc] scanning for overrides: IUITextField
[mxmlc] scanning for overrides: UITextField
[mxmlc] scanning for overrides: CollectionEvent
[mxmlc] scanning for overrides: CollectionEventKind
[mxmlc] scanning for overrides: LocaleSorter
[mxmlc] scanning for overrides: LocaleID
[mxmlc] scanning for overrides: LocaleRegistry
[mxmlc] scanning for overrides: 

Jenkins build is back to normal : royale-asjs_MXTests #1020

2019-08-07 Thread Apache Royale CI Server
See 




Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)

2019-08-07 Thread Piotr Zarzycki
Hi Carlos,

Yishay send you logo off the list. Is it ok ?

Thanks,
Piotr

pon., 5 sie 2019 o 11:32 Piotr Zarzycki 
napisał(a):

> Yes! I'm ok!
>
> Thanks for asking.
>
> pon., 5 sie 2019 o 11:13 Yishay Weiss  napisał(a):
>
>> Actually, please add a + before the phone number so it links to Skype.
>>
>>
>>
>> Piotr, are u ok with being added?
>>
>>
>>
>> 
>> From: Yishay Weiss 
>> Sent: Monday, August 5, 2019 12:09:40 PM
>> To: dev@royale.apache.org 
>> Subject: RE: Royale Commercial Support Page (was: Fwd: AIR and Royale)
>>
>> Looks good to me. Thanks.
>>
>>
>>
>> 
>> From: Carlos Rovira 
>> Sent: Monday, August 5, 2019 12:00:08 PM
>> To: dev@royale.apache.org 
>> Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)
>>
>> Yeah! sorry :)
>>
>> https://royale.codeoscopic.com/royale-commercial-support/
>>
>> El lun., 5 ago. 2019 a las 10:49, Yishay Weiss ()
>> escribió:
>>
>> >
>> > >ok, you can check here the addition before publish.
>> >
>> > Was there supposed to be a link?
>> >
>> >
>> >
>> >
>> > El lun., 5 ago. 2019 a las 10:10, Yishay Weiss (> >)
>> > escribió:
>> >
>> > > I’ll try to find one. Thanks!
>> > >
>> > >
>> > >
>> > > 
>> > > From: Carlos Rovira 
>> > > Sent: Monday, August 5, 2019 10:59:51 AM
>> > > To: dev@royale.apache.org 
>> > > Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and Royale)
>> > >
>> > > Hi Yishay,
>> > >
>> > > I'm adding it. Could you provide a better logo?
>> > > (LOGO (if applies) (PNG, background transparent, good resolution (at
>> > least
>> > > above 800px))
>> > > thanks
>> > >
>> > > El lun., 5 ago. 2019 a las 9:23, Yishay Weiss (<
>> yishayj...@hotmail.com>)
>> > > escribió:
>> > >
>> > > > Apache Royale contributor(s): Piotr Zarzycki (committer and PMC
>> > member),
>> > > > Yishay Weiss (committer and PMC member).
>> > > >
>> > > > 
>> > > > From: Yishay Weiss
>> > > > Sent: Monday, August 5, 2019 10:17:52 AM
>> > > > To: dev@royale.apache.org 
>> > > > Subject: RE: Royale Commercial Support Page (was: Fwd: AIR and
>> Royale)
>> > > >
>> > > >
>> > > > Carlos, please add Prominic as well. Thanks.
>> > > >
>> > > >
>> > > >
>> > > > Name: Prominic.NET
>> > > >
>> > > >
>> > > >
>> > > > Short Description: Prominic.NET is a home-grown, US-based hosting
>> > > services
>> > > > provider, providing services and support to businesses all over the
>> > > world.
>> > > > Among its products is the Moonshine IDE which is targeted
>> specifically
>> > at
>> > > > Apache Flex and Apache Royale. Our team includes Royale specialists
>> > with
>> > > > experience in porting Apache Flex applications to Apache Royale.
>> > > >
>> > > >
>> > > >
>> > > > Logo: https://1drv.ms/u/s!AgH-0pVQ5zPPxAevfQfnGMANlj0b
>> > > >
>> > > >
>> > > >
>> > > > Website URL: https://prominic.net/
>> > > >
>> > > >
>> > > >
>> > > > Contact Person: Yishay Weiss
>> > > >
>> > > >
>> > > >
>> > > > Contact Email: yishayj...@hotmail.com> >
>> > > >
>> > > >
>> > > >
>> > > > Contact Phone: 972524512113
>> > > >
>> > > >
>> > > >
>> > > > 
>> > > > From: Andrew Wetmore 
>> > > > Sent: Friday, July 26, 2019 3:35:40 PM
>> > > > To: Carlos Rovira 
>> > > > Cc: dev@royale.apache.org 
>> > > > Subject: Re: Royale Commercial Support Page (was: Fwd: AIR and
>> Royale)
>> > > >
>> > > > I have made a bunch of small text changes. This is a useful
>> tutorial!
>> > > >
>> > > > On Thu, Jul 25, 2019 at 9:59 PM Andrew Wetmore > >
>> > > > wrote:
>> > > >
>> > > > > I will do a text review early tomorrow.
>> > > > >
>> > > > > On Thu, Jul 25, 2019 at 7:54 PM Carlos Rovira <
>> > carlosrov...@apache.org
>> > > >
>> > > > > wrote:
>> > > > >
>> > > > >> Hi!
>> > > > >>
>> > > > >> New commercial support page is ready and published. Andrew, I get
>> > some
>> > > > of
>> > > > >> the texts from other apache webs, but anyway some review for your
>> > part
>> > > > >> would be great! :)
>> > > > >>
>> > > > >> https://royale.apache.org/royale-commercial-support/
>> > > > >>
>> > > > >> Anyone that wants to be listed, please follow instructions!! :)
>> > > > >>
>> > > > >>
>> > > > >>
>> > > > >>
>> > > > >> El vie., 7 jun. 2019 a las 15:51, Andrew Wetmore (<
>> > > cottag...@gmail.com
>> > > > >)
>> > > > >> escribió:
>> > > > >>
>> > > > >>> This is s great idea
>> > > > >>>
>> > > > >>> On Fri, Jun 7, 2019, 6:24 AM Carlos Rovira, <
>> > carlosrov...@apache.org
>> > > >
>> > > > >>> wrote:
>> > > > >>>
>> > > > >>> > Hi,
>> > > > >>> >
>> > > > >>> > I'll be creating a page on the website in the following days
>> > with a
>> > > > >>> list of
>> > > > >>> > third party providers that offers commercial support for
>> Apache
>> > > > >>> Royale, in
>> > > > >>> > the lines we saw in the links shared by Dave Fisher as
>> examples
>> > in
>> > > > >>> other
>> > > > >>> > Apache products.
>> > > > >>> >

How following variable is being generated systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted

2019-08-07 Thread Piotr Zarzycki
Hi Guys,

We have again Maven build on hold cause of one of the machine simply
switched OFF. I raised INFRA issue, but I'm not sure when they fix it. The
only reason that I didn't switch to different machine is that environment
variable -systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted -
How it is being generated on specific machine ?

Thanks,
-- 

Piotr Zarzycki

Patreon: *https://www.patreon.com/piotrzarzycki
*