Build failed in Jenkins: royale-asjs_MXTests #606

2019-03-20 Thread Apache Royale CI Server
See -- [...truncated 2.02 MB...] [mxmlc] using source file:

Jenkins build is back to normal : royale-asjs #2075

2019-03-20 Thread Apache Royale CI Server
See

Jenkins build is back to normal : royale-asjs_jsonly #2655

2019-03-20 Thread Apache Royale CI Server
See

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Carlos Rovira
Hi Josh, just rebuild all, build TDJ and build my own app and is working fine again. Congrats and thanks for the quick fix! :) El mié., 20 mar. 2019 a las 23:59, Josh Tynjala () escribió: > I have confirmed that my latest compiler commit fixes TourDeJewel. Sorry > for the trouble! > > - Josh >

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Josh Tynjala
I have confirmed that my latest compiler commit fixes TourDeJewel. Sorry for the trouble! - Josh On 2019/03/20 19:51:27, Carlos Rovira wrote: > Thanks Josh, > > I was looking to your commits and since all is code and there's no config > things, I was confused and not understanding how the

Re: [royale-asjs] branch develop updated: amfchannel: ensure headers are not undefined, this is needed in shared enviroments when the application can be hosted in a domain but served through other dom

2019-03-20 Thread Carlos Rovira
Hi Alex, I'm sorry to say that with != null now my app fails silently without report any error. The first attempt to login don't do nothing Reverting back to != undefined works. So I think there's some bug that's affecting this. I switch back again until we found a solution El mié., 20 mar. 2019

Build failed in Jenkins: royale-asjs_jsonly #2654

2019-03-20 Thread Apache Royale CI Server
See Changes: [carlosrovira] fix datefield commit breaking build -- [...truncated 1.89 MB...] [mxmlc]

Re: PopUpManager question

2019-03-20 Thread Alex Harui
A few thoughts... 1) It is hard to follow these threads without more context. I think Royale is going to require that folks make it clear which components they are using. Flex always had a primary set (MX then later, Spark) so we could make assumptions about what components you are

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Carlos Rovira
Thanks Josh, I was looking to your commits and since all is code and there's no config things, I was confused and not understanding how the fail could be happening Now this seems to explain the issue thanks for getting to the problem Carlos El mié., 20 mar. 2019 a las 20:48, Josh Tynjala ()

Re: [royale-asjs] branch develop updated: Update DateField.as

2019-03-20 Thread Carlos Rovira
Hi Yishay, didn't see your email just commited a fix for this, but I should not be doing this @pushmina.k...@d-bz.com please, as I state some hours ago. You should try as much as possible to commit reliable code. If this code directly doesn't compile, it means you didn't try it. We all can

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Josh Tynjala
I've determined that hoisting is having trouble with chained variables, like these: var bead:IBead, i:uint, n:uint; Working on a fix. (I was seeing different behavior with a nightly build vs Maven because the framework in the nightly was built before my hoisting changes) - Josh On

RE: PopUpManager question

2019-03-20 Thread Kessler CTR Mark J
>Take into account that Jewel already has most of the things you mention: >Alert, PopUp, SnackBar, ToolTip...maybe you just need to do some managers, >beads, or things that complete your needs. The Alert we cannot use at all because it uses a third party load (cloudflare) and is not baked

Build failed in Jenkins: royale-asjs_jsonly #2652

2019-03-20 Thread Apache Royale CI Server
See Changes: [carlosrovira] refactor from brackets notation to dot notation using null instead -- [...truncated 1.56 MB...] [java]

Re: [royale-asjs] branch develop updated: amfchannel: ensure headers are not undefined, this is needed in shared enviroments when the application can be hosted in a domain but served through other dom

2019-03-20 Thread Carlos Rovira
Hi Alex, thanks for explaining, I thought that was different. I'll change to != null El mié., 20 mar. 2019 a las 18:57, Alex Harui () escribió: > Hi Carlos, > > AIUI, both AS on Flash and JS in the browser handle "!=" (and not "!==") > the same, which is that whether an property is undefined

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Carlos Rovira
Hi Josh, glad you already could get to the problem I think the problem can be just a matter of configuration Maybe the latest changes need some compiler option? or something was added to some config that was not done for maven? Until now we always could configure ANT, MAVEN and other builds just

Re: [Non-DoD Source] Re: PopUpManager question

2019-03-20 Thread Carlos Rovira
Hi Mark, El mié., 20 mar. 2019 a las 17:52, Kessler CTR Mark J () escribió: > Carlos, > I did look into that. But it was too simplified for us as an > enterprise solution. We needed the holistic approach to all popup types; > it's the only way to keep the layers straight. Multi-level /

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Alex Harui
FWIW, Maven should output a target/compile-app-config.xml that might be usable in VSCode. HTH, -Alex On 3/20/19, 10:53 AM, "Josh Tynjala" wrote: No, I built with VSCode, which uses the regular command line compiler from the SDK. I updated/installed all repos and built

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Josh Tynjala
No, I built with VSCode, which uses the regular command line compiler from the SDK. I updated/installed all repos and built TourDeJewel with Maven. I can now see the errors that you describe. It seems that Maven executes the compiler differently somehow. This could be tricky to debug. - Josh

RE: [royale-asjs] branch develop updated: Update DateField.as

2019-03-20 Thread Yishay Weiss
This breaks the build with [java] C:\dev\flexjs\royale-asjs\frameworks\projects\MXRoyale\src\main\royale\mx\controls\DateField.as(1590): col: 20 Error: A ccess of possibly undefined property _minYear. [java] [java] return _minYear; [java]

Re: [royale-asjs] branch develop updated: amfchannel: ensure headers are not undefined, this is needed in shared enviroments when the application can be hosted in a domain but served through other dom

2019-03-20 Thread Carlos Rovira
Hi Alex, the problem is that msg is an Object and headers is not coming so is undefined, not null, and the property doesn't exits. So if I understand right the right way would be to check != undefined. If in this scenario I could change for != null I can do it, but I tough is not valid El mié.,

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Carlos Rovira
Hi Josh, that's very strange since a mate working with me found the same problem as me... he is on windows while I'm on mac, and he found as me the same problem doing in his laptop the same as me: we both run a script that updates from git, then pass maven in three repos and then construct SDK.

RE: [Non-DoD Source] Re: PopUpManager question

2019-03-20 Thread Kessler CTR Mark J
Carlos, I did look into that. But it was too simplified for us as an enterprise solution. We needed the holistic approach to all popup types; it's the only way to keep the layers straight. Multi-level / layered popups, alerts, notification handling / toasts / snackbar, and we will add

RE: PopUpManager question

2019-03-20 Thread Yishay Weiss
Just a comment on why this might have happened and how to deal with similar problems. For PAYG reasons, in the basic component set, styles aren’t changed in the runtime automatically. That may be why it wasn’t updated originally. Your solution is the simplest way to get around this, and

RE: PopUpManager question

2019-03-20 Thread Yishay Weiss
Are you using MXRoyale? If so, this [1] exists. [1] https://github.com/apache/royale-asjs/blob/develop/frameworks/projects/MXRoyale/src/main/royale/mx/managers/PopUpManager.as From: Kessler CTR Mark J Sent: Wednesday, March 20, 2019 1:56:41 PM To:

Build failed in Jenkins: royale-asjs_jsonly #2651

2019-03-20 Thread Apache Royale CI Server
See Changes: [carlosrovira] jewel themes: ensure we can change fonts in one point. Also fix browsers -- [...truncated 1.56 MB...]

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Josh Tynjala
In my initial tests, I am unable to reproduce this issue. I overlayed the latest compiler changes onto the latest nightly build, and a clean compile of TourDeJewel is running correctly in Chrome. I tried with js-default-initializers set to both true and false. Now, I am running `ant

Re: [royale-asjs] branch develop updated: amfchannel: ensure headers are not undefined, this is needed in shared enviroments when the application can be hosted in a domain but served through other dom

2019-03-20 Thread Alex Harui
Hi Carlos, I guess that’s ok, but I expected you would just test for “!= null”. Is null an allowed value with a different meaning than undefined? -Alex From: Carlos Rovira Date: Wednesday, March 20, 2019 at 2:44 AM To: "dev@royale.apache.org" , Alex Harui Subject: Re: [royale-asjs] branch

Re: PopUpManager question

2019-03-20 Thread Carlos Rovira
Hi Mark, In Jewel there's a PopUp component. You can see it working in Tour De Jewel here: http://royale.apache.org/tourdejewel/ (is one of the latest options in the drawer menu on the left) Carlos El mié., 20 mar. 2019 a las 15:50, Kessler CTR Mark J () escribió: > Never mind, Figured it

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Carlos Rovira
Thank Josh! :) El mié., 20 mar. 2019 a las 15:14, Josh Tynjala () escribió: > I'm looking into it! > > - Josh > > On 2019/03/20 08:42:43, Carlos Rovira wrote: > > Hi, I can confirm that the problem is in the latest three commits in > > royale-compiler repo. > > @Josh Tynjala , hope you can

RE: PopUpManager question

2019-03-20 Thread Kessler CTR Mark J
Never mind, Figured it out. I'll switch over to using this style. container.element.style.zIndex; -Mark K -Original Message- From: Kessler CTR Mark J Sent: Wednesday, March 20, 2019 7:57 AM To: dev@royale.apache.org Subject: PopUpManager question I finally got a chance to get back

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Josh Tynjala
I'm looking into it! - Josh On 2019/03/20 08:42:43, Carlos Rovira wrote: > Hi, I can confirm that the problem is in the latest three commits in > royale-compiler repo. > @Josh Tynjala , hope you can take a look. Is easy > to check testing with Tour De Jewel app > > thanks in advance > >

Build failed in Jenkins: royale-asjs_jsonly #2650

2019-03-20 Thread Apache Royale CI Server
See -- [...truncated 1.57 MB...] [java] Compiling file: org.apache.royale.express.HSlider [java] Writing file:

Re: PopUpManager question

2019-03-20 Thread Piotr Zarzycki
Hi Mark, If you could provide also whether you are using Basic, Emulation components or Jewel - that would be helpful. Thanks, Piotr śr., 20 mar 2019 o 13:03 Kessler CTR Mark J napisał(a): > I finally got a chance to get back to testing out a conversion of one of > small apps. I only have

PopUpManager question

2019-03-20 Thread Kessler CTR Mark J
I finally got a chance to get back to testing out a conversion of one of small apps. I only have this week to work on it. We couldn't find a working PopUpManager, so we created one. It works pretty good however we tried to update the z-index on the popup directly using a style, but something

Build failed in Jenkins: royale-asjs_jsonly #2649

2019-03-20 Thread Apache Royale CI Server
See Changes: [noreply] Update DateField.as -- [...truncated 1.57 MB...] [java] Compiling file: org.apache.royale.express.HSlider

Build failed in Jenkins: royale-asjs_jsonly #2648

2019-03-20 Thread Apache Royale CI Server
See Changes: [carlosrovira] fix warnings -- [...truncated 1.89 MB...] [mxmlc]

Build failed in Jenkins: royale-asjs #2074

2019-03-20 Thread Apache Royale CI Server
See Changes: [carlosrovira] fix warnings -- [...truncated 2.40 MB...] [mxmlc] org.apache.royale.core.SimpleStatesImpl depends on

Re: [royale-asjs] branch develop updated: amfchannel: ensure headers are not undefined, this is needed in shared enviroments when the application can be hosted in a domain but served through other dom

2019-03-20 Thread Carlos Rovira
Hi Alex, you're right. I committed a different notation that removes warnings. Let me know if is ok for you. thanks El mié., 20 mar. 2019 a las 1:49, Alex Harui () escribió: > Carlos, > > This change is causing warnings. Are you not getting the same warnings? > > -Alex > >

Build failed in Jenkins: royale-asjs_jsonly #2647

2019-03-20 Thread Apache Royale CI Server
See Changes: [carlosrovira] fixes build due to latest changes when adding chromeColor to UIComponent -- [...truncated 1.89 MB...]

Re: Tour De Jewel not working after latest changes

2019-03-20 Thread Carlos Rovira
Hi, I can confirm that the problem is in the latest three commits in royale-compiler repo. @Josh Tynjala , hope you can take a look. Is easy to check testing with Tour De Jewel app thanks in advance Carlos El mié., 20 mar. 2019 a las 9:10, Carlos Rovira () escribió: > Hi > > I'm getting

Build failed in Jenkins: royale-asjs #2073

2019-03-20 Thread Apache Royale CI Server
See Changes: [aharui] fix pom for Express [carlosrovira] jewel validator: set default position as middle-right. Improve styles [noreply] Update AdvancedDataGrid.as [noreply] Update

Tour De Jewel not working after latest changes

2019-03-20 Thread Carlos Rovira
Hi I'm getting black page with Tour de Jewel when compile against latest changes of yesterday I'm trying to get where is the problem. Here's the browser fails: Uncaught SyntaxError: Unexpected token if base.js:2485 Uncaught TypeError: Cannot read property 'prototype' of undefined at

Build failed in Jenkins: royale-asjs_jsonly #2646

2019-03-20 Thread Apache Royale CI Server
See Changes: [noreply] Update SkinnableTextBase.as [noreply] Update UIComponent.as [noreply] Update ComboBase.as -- [...truncated 1.65

Re: [royale-asjs] branch develop updated: Update UIComponent.as

2019-03-20 Thread Carlos Rovira
Hi Pashmina, please ensure build stability when committing this change need to update SkinnableComponent in SparkRoyale. I just committed the fix thanks El mié., 20 mar. 2019 a las 8:17, escribió: > This is an automated email from the ASF dual-hosted git repository. > > pushminakazi pushed a

Build failed in Jenkins: royale-asjs_jsonly #2645

2019-03-20 Thread Apache Royale CI Server
See Changes: [noreply] Update AdvancedDataGrid.as -- [...truncated 1.89 MB...] [mxmlc]