Re: YFiles, EPL, Apache

2020-02-03 Thread Carlos Rovira
diagramming part using "classic" > TypeScript/JavaScript and wrapping the resulting component up in a > small > Royale component with a tiny API surface is the superios and more > efficient approach. > > > From: Yishay Weiss<mailto:yishayj...@hotmai

Re: Jewel TodoMVC Example

2020-02-02 Thread Carlos Rovira
xample showing the use of > SharedObject. So, if you don't have any problem with it I prefer to revert > to SharedObject. > > Thanks for updating Routing :), do you plan to move to it's own > library/swc? > > thanks! > > Carlos > > > > > > El dom., 2 feb. 20

Re: Jewel TodoMVC Example

2020-02-02 Thread Carlos Rovira
do you plan to move to it's own library/swc? thanks! Carlos El dom., 2 feb. 2020 a las 23:57, Carlos Rovira () escribió: > Thanks Andrew and Harbs, > @Harbs, I'll check it and get back to you. > > El dom., 2 feb. 2020 a las 15:49, Andrew Wetmore () > escribió: > >>

Re: Quick check on Express Datagrid

2020-02-02 Thread Carlos Rovira
ColumnList" > lookupOnly="true" /> > > 2. Changing the following in Express defaults.css : > > .DataGridColumnList { ...styles follow > > (remove '.') to: > > DataGridColumnList { ...styles follow > > > Those 2 small changes appear to fix the

Re: ClassSelectorList

2020-02-02 Thread Carlos Rovira
ad of element? I would > think that the class names should be applied to the element rather than the > positioner. -- Carlos Rovira http://about.me/carlosrovira

Re: Jewel TodoMVC Example

2020-02-02 Thread Carlos Rovira
th the router. > > > > Something is odd with Jewel ToggleButtons and state. I’m not sure what it > > is, but once the buttons are clicked once, they never revert to an > > unselected state. > > > > Can you look at the feature/router branch and see if you can f

Re: [royale-asjs] branch develop updated: License header for .md files

2020-02-02 Thread Carlos Rovira
/royale-asjs.git > > > > > > The following commit(s) were added to refs/heads/develop by this push: > > new 55a5494 License header for .md files > > 55a5494 is described below > > > > commit 55a549464338cfff39ef8922cd4e7bb85ea2c26d > > Author: Carl

Re: Jewel TodoMVC Example

2020-01-31 Thread Carlos Rovira
occurs when you create an entry, then double click > to edit it, and remove all the contents from the entry. The app seems to > get into a funny state. I think the best behavior would be to delete the > entry if it is saved with no contents. > > a > > On Fri, Jan 31, 20

Re: Jewel TodoMVC Example

2020-01-31 Thread Carlos Rovira
" : > > Carlos, > > This is simply amazing. Great job on porting the standard TodoMVC app to > Royale! > > Om > > On Thu, Jan 30, 2020 at 2:27 PM Carlos Rovira > wrote: > > Hi All, > > just upload a first version of TodoMVC to the website. It imp

Changes in Core IDateChooserModel interface breaking Jewel

2020-01-30 Thread Carlos Rovira
interface that is not the main one used by the rest of sets? Actually I was reported from three different people about this problem, and said I was reported to you Thanks! -- Carlos Rovira http://about.me/carlosrovira

Jewel TodoMVC Example

2020-01-30 Thread Carlos Rovira
. -- Carlos Rovira http://about.me/carlosrovira

Re: SharedObject should be in Storage lib

2020-01-30 Thread Carlos Rovira
> > wrote: > > > > > > > > I don't know LSO or the Storage SWC that well, but there > is > > some > > > sort of LocalStorageProvider.as file already in Storage. > > > > >

Re: [royale-asjs] branch develop updated: shared-object: Move LSO to Storage since is not flex

2020-01-30 Thread Carlos Rovira
s/develop by this push: > new 3209e52 shared-object: Move LSO to Storage since is not flex > 3209e52 is described below > > commit 3209e52d831c8121a1a86f08a86088bde0fa4911 > Author: Carlos Rovira > AuthorDate: Thu Jan 30 18:07:36 2020 +0100 > >

Re: SharedObject should be in Storage lib

2020-01-30 Thread Carlos Rovira
should > go in MXRoyale. A more platform-independent API for local storage should > go in Storage. I don't know what is already there. > > > > My 2 cents, > > -Alex > > > > On 1/30/20, 7:23 AM, "Carlos Rovira" > wrote: > > > >Hi,

SharedObject should be in Storage lib

2020-01-30 Thread Carlos Rovira
Hi, I was searching for some Flex counter part to the LSO classes in MXRoyale but didn't find anything. So if nobody opposite I'll move to the Storage library that seems its natural place. Thanks -- Carlos Rovira http://about.me/carlosrovira

Fwd: [MAVEN-BUILD] Royale-asjs - Build # 2597 - Still Failing

2020-01-30 Thread Carlos Rovira
://builds.apache.org/job/Royale-asjs/2597/ to view the results. -- Carlos Rovira http://about.me/carlosrovira

Re: [royale-asjs] branch develop updated: ToolTipRemovalWhenItemRemoved: new bead to abstract best practice showcased in #697

2020-01-28 Thread Carlos Rovira
is push: > new 93c5612 ToolTipRemovalWhenItemRemoved: new bead to abstract best > practice showcased in #697 > 93c5612 is described below > > commit 93c5612fb36e8c450d6b8c2ff2b69b789c8461ee > Author: Carlos Rovira > AuthorDate: Tue Jan 28 10:34:22 2020 +0100 > >

Re: SWF Graphics api emulation -WIP

2020-01-28 Thread Carlos Rovira
how you would for swf here} >> >> >> On Tue, Jan 21, 2020 at 8:18 AM Greg Dove wrote: >> >> > Thanks for checking that, Carlos. I think it should be quick to add this >> > to Royale after I am back from vacation. >> > >> > >>

Re: SWF Graphics api emulation -WIP

2020-01-28 Thread Carlos Rovira
You can look at all the tests and compare them visually > >> side-by-side > >> > > between html5 and Flash. > >> > > 2. if you see bitmapData referenced as a variable in the code > display > >> on > >> > > the main screen, you can do things with it. For example, in the link > >> > above > >> > > it shows 'bitmapData0' being referenced as a var. In that case if > you > >> > typed > >> > > 'bitmapData0.dispose()' in the javascript console, it will run that > >> code > >> > in > >> > > both javascript and flash, you will see the drawn content that used > >> that > >> > > bitmapdata as a fill or stroke suddenly 'unpaint' itself visually. > You > >> > > could also use fillRect, and setPixel etc to run that code in both > >> > > javascript and flash. Note that BitmapData api is not yet fleshed > out > >> > very > >> > > much at all. > >> > > 3. You can (at least on Chome and some other browsers) send the > >> currently > >> > > executed code to the javascript console. You can then copy, paste, > and > >> > > change some values before pressing enter to execute the same code > with > >> > > different settings. It will then run that code in both javascript > and > >> > > flash. > >> > > 3. You can open the javascript console and do a bunch of arbitrary > >> stuff. > >> > > When you are doing that, simply imagine you already have imports for > >> > > Matrix, BitmapData, Rectangle, and that you can simple type > >> > > 'graphics.{myGraphicsMethodHere}' for the target graphics context. > >> > > > >> > > >> > >> > >> -- > >> Carlos Rovira > >> http://about.me/carlosrovira > >> > > > -- Carlos Rovira http://about.me/carlosrovira

Re: Renderers doesn't support States

2020-01-28 Thread Carlos Rovira
XML States > support would go in a subclass of MXMLItemRenderer. > > My 2 cents, > -Alex > > On 1/27/20, 10:58 AM, "Carlos Rovira" wrote: > > Hi, > > today while working on a TodoMVC version in Royale notice that > ItemRenderers does

Renderers doesn't support States

2020-01-27 Thread Carlos Rovira
Hi, today while working on a TodoMVC version in Royale notice that ItemRenderers does not support States. So I'm going to add it, but want to ask the best point to do. IMO it could be in MXMLItemRenderer. thoughts? -- Carlos Rovira http://about.me/carlosrovira

Re: [VSCode - asconfigc] sdk referenced in tasks.json

2020-01-27 Thread Carlos Rovira
se, > "problemMatcher": [], > "group": "build" > } > > We should not require users to install asconfigc from npm. It's an extra > step that adds unnecessary complexity for new contributors. > > -- > Josh Tynjala > Bowler Hat LLC &l

[VSCode - asconfigc] sdk referenced in tasks.json

2020-01-27 Thread Carlos Rovira
ramework}" ], I want to propose to change in all framework, unless someone see some problem in doing that, avoiding the hardcoded paths for windows or depend on ROYALE_HOME, that users could not have set. I asume that asconfigc is used by people using VSCode so they have settings.json with as3mxml.sdk.framework defined -- Carlos Rovira http://about.me/carlosrovira

Re: [royale-asjs] branch develop updated: Missing imports

2020-01-27 Thread Carlos Rovira
.jewel.beads.controls > import org.apache.royale.utils.OSUtils; > import org.apache.royale.utils.PointUtils; > import org.apache.royale.utils.UIUtils; > + import org.apache.royale.events.Event; > > /** > * The ToolTip class is a specialty bead that can be used with > > -- Carlos Rovira http://about.me/carlosrovira

Re: ItemRenderer musings (was Re: "has" vs "is": sharing code, swapping out subsystems, and more...)

2020-01-27 Thread Carlos Rovira
er assumes the data is a String, the > latter assumes the data is an instance of an object. > > A renderer in the Express package can have more if statements and check if > labelField is being used or not. > > D) We might look at abstracting the computation of the label for a > renderer. That feels like it would be too heavy in many cases, but right > now we call getLabelFromData anyway. > > Thoughts? > -Alex > > > > > -- Carlos Rovira http://about.me/carlosrovira

Re: Apache Royale Jewel - ToolTip issues

2020-01-24 Thread Carlos Rovira
ick on one of those options, > the selected item must disappear. > > The problem: the element we select disappears, but the tooltip that is > being displayed is not deleted and stills showing when his parent is gone. > > -- Carlos Rovira http://about.me/carlosrovira

Re: Building Royale project with Maven throws NPE

2020-01-23 Thread Carlos Rovira
Right, I know it El jue., 23 ene. 2020 a las 16:59, Piotr Zarzycki (< piotrzarzyck...@gmail.com>) escribió: > CRLF problem and build issue with ant distribution are two separate issues. > > czw., 23 sty 2020 o 16:39 Carlos Rovira > napisał(a): > > > Hi, > > &

Re: Building Royale project with Maven throws NPE

2020-01-23 Thread Carlos Rovira
> why that happen. > > [1] > > http://apacheroyaleci2.westus2.cloudapp.azure.com:8080/job/royale-asjs_jsonly/676/ > > czw., 23 sty 2020 o 16:30 Carlos Rovira > napisał(a): > > > Hi Piotr, > > > > great to hear that :) > > additionally I had confirmat

Re: Building Royale project with Maven throws NPE

2020-01-23 Thread Carlos Rovira
mal and I was able to produce > release/debug files. > > śr., 22 sty 2020 o 16:05 Piotr Zarzycki > napisał(a): > > > Build is in progress. Once it's finish I will check -> > > https://builds.apache.org/job/Royale-compiler/1257/ > > > > śr., 22 sty 2020 o 15:

Re: Maven Distribution SDK fixed and working for IDEs

2020-01-23 Thread Carlos Rovira
install > -P -main,utils > > It looks like that those profiles also deprecated - can you confirm ? > > Thanks, > Piotr > > śr., 22 sty 2020 o 18:37 Carlos Rovira > napisał(a): > > > Hi Piotr, > > > > it surprise me that due all the chan

Re: Generating Royale API report failing on Mac

2020-01-22 Thread Carlos Rovira
/bin/sh^M: bad interpreter: No such file or directory > > Do you have any idea why it may happen ? > > That usually means that the mxmlc script has Windows line endings. > > -Alex > > > -- Carlos Rovira http://about.me/carlosrovira

Re: Maven Distribution SDK fixed and working for IDEs

2020-01-22 Thread Carlos Rovira
> [1] https://github.com/piotrzarzycki21/puremvc-as3-multicore-framework > > Thanks, > Piotr > > śr., 22 sty 2020 o 12:29 Piotr Zarzycki > napisał(a): > > > Ok let's wait to see whether someone actually know what is the version. > > > > śr., 22 sty 202

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
Hi Piotr, latest commit seems to fix the problem. Let me know if all is now ok sorry for the inconvenience Carlos El mié., 22 ene. 2020 a las 13:51, Carlos Rovira () escribió: > Hi Piotr, > > I can see the problem is related to my latest commit in compiler to solve > the GOOG_

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
Hi Piotr, I can see the problem is related to my latest commit in compiler to solve the GOOG_HOME problem. going to fix it El mié., 22 ene. 2020 a las 13:31, Carlos Rovira () escribió: > Hi Piotr, > > ok, now I understand... It's clear that I broke something since trying to &g

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
for the confusion! :) El mié., 22 ene. 2020 a las 13:27, Carlos Rovira () escribió: > Hi Piotr, > > before understand the mistake, I downloaded and tested SDK from Jenkins > (build #2552 that was the latest created) and build TDJ with VSCode and all > worked ok (the same output as with Mav

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
ith above error. Maybe that > closure upgrade - I don't know. I look forward to hear more from someone > what could know the reason of my issue. > > śr., 22 sty 2020 o 13:16 Carlos Rovira > napisał(a): > > > Hi Piotr, > > > > El mié., 22 ene. 2020 a las 13:00, Piotr Z

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
s the same as always. Other case will be if we can change Jenkins to build with distribution and then provide that SDK to download, that will be the proper way, and what the rest of projects using maven does in fact. > -- > Carlos Rovira > http://about.me/carlosrovira > > > >

Re: Routing (was Re: Spectrum Components)

2020-01-22 Thread Carlos Rovira
;>> > >>> To do #1, you need to remove the href from the elements (or > use something else such as a div or li). > >>> > >>> If you use href links, the logic of actually switching the views > should be handled by the router, so

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
> http://apacheroyaleci2.westus2.cloudapp.azure.com:8080/job/royale-asjs_jsonly/ > ? > > śr., 22 sty 2020 o 12:32 Carlos Rovira > napisał(a): > > > Hi Piotr, > > > > one thing I already said is that currently Maven distribution is SWF and > > JS, (not JS

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
s.apache.org/job/Royale-asjs/2551/ and that > >> https://builds.apache.org/job/Royale-compiler/1255/ - Those builds > >> should contains your changes. > >> > >> śr., 22 sty 2020 o 11:58 Carlos Rovira > >> napisał(a): > >> > >>> Hi P

Re: Maven Distribution SDK fixed and working for IDEs

2020-01-22 Thread Carlos Rovira
g. > > I see this in Maven: > > com.google.javascript > closure-compiler > v20181210 > > > org.clojure > google-closure-library > 0.0-20190213-2033d5d9 > > > śr., 22 sty 2020 o 10:52 Carlos Rovira > napisał(a): > > > Hi Alex, > > &

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
; > > > Piotr Zarzycki > > > > Patreon: *https://www.patreon.com/piotrzarzycki > > <https://www.patreon.com/piotrzarzycki>* > > > > > -- > > Piotr Zarzycki > > Patreon: *https://www.patreon.com/piotrzarzycki > <https://www.patreon.com/piotrzarzycki>* > -- Carlos Rovira http://about.me/carlosrovira

Re: Building Royale project with Maven throws NPE

2020-01-22 Thread Carlos Rovira
asjs_jsonly/665/ > > Thanks, > -- > > Piotr Zarzycki > > Patreon: *https://www.patreon.com/piotrzarzycki > <https://www.patreon.com/piotrzarzycki>* > -- Carlos Rovira http://about.me/carlosrovira

Re: Maven Distribution SDK fixed and working for IDEs

2020-01-22 Thread Carlos Rovira
for both. thanks El mié., 22 ene. 2020 a las 2:41, Alex Harui () escribió: > You may not want the latest closure library. You probably want one that > is compatible with the closure compiler. > > HTH, > -Alex > > On 1/21/20, 5:20 PM, "Carlos Rovira" wrote: &g

Re: Maven Distribution SDK fixed and working for IDEs

2020-01-21 Thread Carlos Rovira
exists for ANT and MAVEN artifacts. @Piotr Zarzycki let me know if you can get it work with latest changes just done. Thanks El mar., 21 ene. 2020 a las 17:53, Carlos Rovira () escribió: > Hi Piotr, > > yes, you're using an old command, maven was extremely simplified thanks to >

Re: Routing (was Re: Spectrum Components)

2020-01-21 Thread Carlos Rovira
:31, Harbs () escribió: > Oops. I thought this email went out yesterday… > > I have very little time today. > > Can you show me the code you tried? > > > On Jan 20, 2020, at 8:01 PM, Carlos Rovira > wrote: > > > > Hi Harbs, > > > > thanks for add

Re: Routing (was Re: Spectrum Components)

2020-01-21 Thread Carlos Rovira
Hi Harbs, do you have time to add Router to TDJ? Thanks El lun., 20 ene. 2020 a las 19:01, Carlos Rovira () escribió: > Hi Harbs, > > thanks for adding this. I think it will deserve some blog example, since > is something people requested in social media. > Can you please ad

Re: Maven Distribution SDK fixed and working for IDEs

2020-01-21 Thread Carlos Rovira
ean install -DskipTests -Drat.skip=true > -Dgenerate.swf.swcs=true > > -DdistributionTargetFolder=/Users/piotr/Downloads/royale/test_release > > > > Thanks, > > Piotr > > > > > > wt., 21 sty 2020 o 12:44 Carlos Rovira > > napisał(a): > > > >>

Re: [VSCode] Tour De Jewel assets are not copied

2020-01-21 Thread Carlos Rovira
gt; > > > On Tue, Jan 21, 2020 at 6:24 AM Carlos Rovira > wrote: > > > Hi Josh, > > > > TDJ has in asconfigc.json configured "copySourcePathAssets": true > > > > I was expecting all files in "resources/assets" was copied to js-debug &g

[VSCode] Tour De Jewel assets are not copied

2020-01-21 Thread Carlos Rovira
e maven code to copy it. In VSCode I don't know how that is handled but I suppose we need something to do that copy of files automatically. What can I do to solve this for compiling TDJ with VSCode? Thanks -- Carlos Rovira http://about.me/carlosrovira

Re: Maven Distribution SDK fixed and working for IDEs

2020-01-21 Thread Carlos Rovira
ers could know how to do that. > > > > Thanks, > > Piotr > > > > wt., 21 sty 2020 o 12:12 Carlos Rovira > > napisał(a): > > > > > Hi, > > > > > > just fixed the maven distribution, and now it creates a valid SDK that > >

Re: Maven Distribution SDK fixed and working for IDEs

2020-01-21 Thread Carlos Rovira
you provide on mailing list command to build framework > with distribution, so users could know how to do that. > > Thanks, > Piotr > > wt., 21 sty 2020 o 12:12 Carlos Rovira > napisał(a): > >> Hi, >> >> just fixed the maven distribution, and now it creates

Maven Distribution SDK fixed and working for IDEs

2020-01-21 Thread Carlos Rovira
and we get finally to have two independent ways of building separated one from the other. I'll be doing some refining this days with classpaths since I left some versions hardcoded that I want to remove to make it valid as we change versions. I'll be upgrading maven docs to reflect this change.

Re: [royale-asjs] branch develop updated: Added Router

2020-01-20 Thread Carlos Rovira
Hi Alex, I think one of the problems is something I just get to know recently in other discussion. With ANT all SWCs are available. With Maven you set dependencies when you need it. I don't like how ANT manages it (don't know if is something we set that way, or something ANT imposes). I think

Re: [royale-asjs] branch develop updated: Added Router

2020-01-20 Thread Carlos Rovira
gt; >+ * @playerversion AIR 2.6 > >+ * @productversion Royale 0.9.7 > >+ */ > >+public function renderState():void > >+{ > >+ setState(); > >+ if(syncState) > >+ { > >+assert(_strand is IStatesObject,"syncState can only be > used on IStatesObjects"); > >+(_strand as IStatesObject).currentState = > _routeState.state; > >+ } > >+ dispatchEvent(new Event("stateChange")); > >+} > >+private function setTitle():void > >+{ > >+ COMPILE::JS > >+ { > >+if(window.history.state){ > >+ document.title = window.history.state["title"]; > >+} else { > >+ document.title = initialTitle; > >+} > >+ } > >+} > >+/** > >+ * Goes forward in the history > >+ * @langversion 3.0 > >+ * @playerversion Flash 10.2 > >+ * @playerversion AIR 2.6 > >+ * @productversion Royale 0.9.7 > >+ */ > >+public function forward():void{ > >+ COMPILE::JS > >+ { > >+ window.history.forward(); > >+ setTitle(); > >+ parseHash(); > >+ } > >+} > >+/** > >+ * Goes backwards in the history > >+ * @langversion 3.0 > >+ * @playerversion Flash 10.2 > >+ * @playerversion AIR 2.6 > >+ * @productversion Royale 0.9.7 > >+ */ > >+public function back():void{ > >+ COMPILE::JS > >+ { > >+ window.history.back(); > >+ setTitle(); > >+ parseHash(); > >+ } > >+} > >+ > >+/** > >+ * Moved the specified number of steps (forward or > backwards) in the history > >+ * calling it with 0 or no value will reload the page. > >+ * @langversion 3.0 > >+ * @playerversion Flash 10.2 > >+ * @playerversion AIR 2.6 > >+ * @productversion Royale 0.9.7 > >+ */ > >+public function go(steps:int=0):void{ > >+ COMPILE::JS > >+ { > >+ window.history.go(steps); > >+ parseHash(); > >+ } > >+} > >+ > >+ } > >+} > >\ No newline at end of file > > > > -- Carlos Rovira http://about.me/carlosrovira

Re: ms.messaging.Consumer

2020-01-20 Thread Carlos Rovira
well. El lun., 20 ene. 2020 a las 18:38, Yishay Weiss () escribió: > Hi, > > We are evaluating some client needs and have run across code using > mx.messaging.Consumer. Has anyone got this working? Are there examples? > > Thanks. > > -- Carlos Rovira http://about.me/carlosrovira

Re: Routing (was Re: Spectrum Components)

2020-01-20 Thread Carlos Rovira
t;>>> > >>>> > >> > https://github.com/unhurdle/spectrum-royale/blob/master/SpectrumBrowser/src/view/MainView.mxml#L131 > >>>> > >>>> here: > >>>> > >>>> > >> > https://github.com/unhurdle/s

Re: Spectrum Components

2020-01-20 Thread Carlos Rovira
t;> harbs.li...@gmail.com>> wrote: > >>>> > >>>> FYI, I’ve been working on filling out a demo the Spectrum Royale > >> components: > >>>> https://unhurdle.github.io/spectrum-royale/ < > >> https://unhurdle.github.io/spectrum-royale/> > >>>> > >>>> I’m going to be filling them out over the next week… > >>>> > >>>> Harbs > >>> > >> > >> > > > > -- > > Andrew Wetmore > > > > http://cottage14.blogspot.com/ > > -- Carlos Rovira http://about.me/carlosrovira

Re: Weird exception with using [Bindable] on top of VO properties and class itself

2020-01-19 Thread Carlos Rovira
s://github.com/apache/royale-asjs/issues/639#issuecomment-576011588 > > > Thanks, > -- > > Piotr Zarzycki > > Patreon: *https://www.patreon.com/piotrzarzycki > <https://www.patreon.com/piotrzarzycki>* > -- Carlos Rovira http://about.me/carlosrovira

Re: SWF Graphics api emulation -WIP

2020-01-19 Thread Carlos Rovira
ch at all. > > 3. You can (at least on Chome and some other browsers) send the currently > > executed code to the javascript console. You can then copy, paste, and > > change some values before pressing enter to execute the same code with > > different settings. It will then run that code in both javascript and > > flash. > > 3. You can open the javascript console and do a bunch of arbitrary stuff. > > When you are doing that, simply imagine you already have imports for > > Matrix, BitmapData, Rectangle, and that you can simple type > > 'graphics.{myGraphicsMethodHere}' for the target graphics context. > > > -- Carlos Rovira http://about.me/carlosrovira

Re: Powered-by Royale logo?

2020-01-18 Thread Carlos Rovira
.protection.outlook.com/?url=http%3A%2F%2Fcottage14.blogspot.com%2Fdata=02%7C01%7Caharui%40adobe.com%7C58e534818c544cb04c2b08d79b8b6f18%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637148895476946717sdata=qvNMdq%2B5IAjopjCGrIBc0cM5kR8jwKuDS37d9KEhxU8%3Dreserved=0 > > > > > > > > -- > Andrew Wetmore > > http://cottage14.blogspot.com/ > -- Carlos Rovira http://about.me/carlosrovira

Re: Build failed in Jenkins: Royale_ASDoc_Example #500

2020-01-17 Thread Carlos Rovira
ineStroke = > defaultStroke; > [java] ^ > [java] > [java] > C:\jenkins\workspace\royale-asjs\frameworks\projects\SparkRoyale\src\main\royale\spark\skins\spark\FormItemSkin.mxml(169): > col: 30 Data binding will not be able to detect assignments to 'x'. > [java] > [java] [java] ^ > [java] > [java] > C:\jenkins\workspace\royale-asjs\frameworks\projects\SparkRoyale\src\main\royale\spark\skins\spark\FormItemSkin.mxml(169): > col: 83 Data binding will not be able to detect assignments to 'y'. > [java] > [java] [java] >^ > [java] > [java] 78.3401256 seconds > [java] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 -Xms384m > -Xmx2g > [java] Java Result: 3 > > BUILD FAILED > < > http://apacheroyaleci2.westus2.cloudapp.azure.com:8080/job/Royale_ASDoc_Example/500/artifact/examples/royale/ASDoc/build.xml>:50: > The following error occurred while executing this line: > < > http://apacheroyaleci2.westus2.cloudapp.azure.com:8080/job/Royale_ASDoc_Example/500/artifact/examples/royale/ASDoc/build.xml>:156: > condition satisfied > > Total time: 5 minutes 54 seconds > Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 -Xms384m -Xmx2g > Build step 'Invoke Ant' marked build as failure > Skipped archiving because build is not successful > -- Carlos Rovira http://about.me/carlosrovira

Re: To Do MVC

2020-01-17 Thread Carlos Rovira
r site: > http://todomvc.com/ > > Any takers? ;-) > > Harbs -- Carlos Rovira http://about.me/carlosrovira

hasOwnProperty() not working ( was Re: "has" vs "is": sharing code, swapping out subsystems, and more...)

2020-01-17 Thread Carlos Rovira
4110fd011b617949c1faae5f158/frameworks/projects/MXRoyale/src/main/royale/mx/charts/renderers/CircleItemRenderer.as#L141 > > From: Carlos Rovira<mailto:carlosrov...@apache.org> > Sent: Thursday, January 16, 2020 11:50 AM > To: dev@royale.apache.org<mailto:dev@royale.apache.or

Re: "has" vs "is": sharing code, swapping out subsystems, and more...

2020-01-16 Thread Carlos Rovira
tored into a "has". But I wonder how many other things could. > I'm > > not sure I would move everything that could be moved into a shared > bead. > > We'd have to think about the overhead on small components and apps. > But > > for MXML support and Item Renderer support, it seems to make sense. > > > > Anyway, I will look into refactoring the item renderer code in a > few days > > unless feedback indicates otherwise. Bugs like #676 and #681 > inspired this > > post. > > > > Of course, I could be wrong... > > -Alex > > > > > > > -- Carlos Rovira http://about.me/carlosrovira

Re: Fixing Maven Distribution

2020-01-16 Thread Carlos Rovira
ect, > based on instructions from asconfig.json. - I bet it will fail with SDK > prepared with Maven. > > Thanks, > Piotr > > > śr., 15 sty 2020 o 23:50 Carlos Rovira > napisał(a): > > > Hi Piotr, > > > > Finally I get some time to get over this is

Re: empty class names

2020-01-16 Thread Carlos Rovira
n 1/15/20, 2:20 PM, "Carlos Rovira" wrote: > > We're already using UIBase APIs in HTML elements. Example is used in > all > screens in Tour De Jewel check this link [1], for an example with Pre > tag. > > I understand that's how it is currently coded

Fixing Maven Distribution

2020-01-15 Thread Carlos Rovira
y button for running in a browser. So far so good :) I remember you said the SDK was not valid since it was not able to run from IDE. I'm trying to understand what's the problem. Can you elaborate over that? Thanks -- Carlos Rovira http://about.me/carlosrovira

Re: empty class names

2020-01-15 Thread Carlos Rovira
I’d like to get rid of the empty assignments. I can either do > that in UIBase, or in the HTML package for those classes. > > > >My preference is to add it to UIBase — both because I think it > belongs there and because it’s going to be very messy adding it to > subclasses. The code is in the middle of addedToParent. > > > >Thoughts? > >Harbs > > > > > > -- Carlos Rovira http://about.me/carlosrovira

Re: [royale-asjs] branch develop updated: Reversed logic on number lookup in AllCSSValuesImpl

2020-01-15 Thread Carlos Rovira
OMPILE::JS > > +protected function processNumberStyle(prop:String,value:*):*{ > > +if (colorStyles[prop]) > > +value = CSSUtils.attributeFromColor(value); > > +else if (numericStyles[prop]) > > +return value; > > +return value + 'px'; > > +} > > > > COMPILE::JS > > private var ss:CSSStyleSheet; > > @@ -871,12 +876,7 @@ package org.apache.royale.core > > if (value === undefined) > > continue; > > if (typeof(value) == 'number') { > > -if (colorStyles[p]) > > -value = CSSUtils.attributeFromColor(value); > > -else if (numericStyles[p]) > > -value = value.toString(); > > -else > > -value = value.toString() + 'px'; > > +value = processNumberStyle(p,value); > > } > > else if (p == 'backgroundImage' && value.indexOf('url') > != 0) { > > value = 'url(' + value + ')'; > > > > -- Carlos Rovira http://about.me/carlosrovira

Re: empty class names

2020-01-15 Thread Carlos Rovira
ckage for those classes. > > My preference is to add it to UIBase — both because I think it belongs > there and because it’s going to be very messy adding it to subclasses. The > code is in the middle of addedToParent. > > Thoughts? > Harbs -- Carlos Rovira http://about.me/carlosrovira

Re: Trying to make the daily build with maven, but is broken

2020-01-14 Thread Carlos Rovira
Hi, The problem is that "img" now is not allowed in html:Div some of the latest changes make it invalid. @Harbs I commented the two images in RoyaleSite. Hope you can take a look to fix it and restore that tow images back Thanks El mar., 14 ene. 2020 a las 8:21, Carlos Rovira () escri

Re: Private vars in MXML

2020-01-14 Thread Carlos Rovira
hat there’s no compiler error while specifying private > var > >> values in MXML. > >> > >> It looks like it’s compiled “correctly” too. > >> > >> I assume this is a bug? > >> > >> Harbs > > -- Carlos Rovira http://about.me/carlosrovira

Re: Evaluating brackets

2020-01-14 Thread Carlos Rovira
Hi, what's clear is that sometimes trying to do this kind of things in mxml is difficult, and I remember experimenting a lot in Flex doing things like that. As well thinking in adding more texts and other things in MXML for TDJ and sometimes is not easy or we can do it. As you notice is the long

Re: Spectrum Components

2020-01-13 Thread Carlos Rovira
Mon, Jan 13, 2020 at 5:28 PM Carlos Rovira > wrote: > > > Right Andrew, > > > > Other sibling node can be MDL too. For what I understand MDL is like > > Spectrum, both are js/css libraries that conform UI Sets in js. In Royale > > we're wrapping it to make av

Re: Evaluating brackets

2020-01-13 Thread Carlos Rovira
evaluating the brackets in > the text. > > FWIW, I also tried: > style="white-space:break-spaces;"/> > > and got the same result. > > I think this is a bug. Thoughts? > > Harbs > > -- Carlos Rovira http://about.me/carlosrovira

Trying to make the daily build with maven, but is broken

2020-01-13 Thread Carlos Rovira
PPED* [*INFO*] Apache Royale: Framework: Libs: TLF *SKIPPED* -- Carlos Rovira http://about.me/carlosrovira

Re: Spectrum Components

2020-01-13 Thread Carlos Rovira
Wetmore () escribió: > What if we added a page under "Frameworks and Libraries", sibling to > "Crux", called "Spectrum Royale"? Plenty of room then to add pages about > other flavors of using CSS and JS libraries with Royale. > > a > > On Mon, Jan 1

Re: Spectrum Components

2020-01-13 Thread Carlos Rovira
to break the demo into > > separate pages. (It could be that made sense anyway.) > > > > > > It’s not a complete one-to-one comparison, but I’m going to try and > make > > it as close as I can. Once I’m done, we can write about it more > > intelligently. :-) >

Re: Spectrum Components

2020-01-13 Thread Carlos Rovira
ade sense anyway.) > > > > It’s not a complete one-to-one comparison, but I’m going to try and make > it as close as I can. Once I’m done, we can write about it more > intelligently. :-) > > > > Harbs > > > >> On Jan 13, 2020, at 4:35 PM, Carlos Rovira <

Re: Spectrum Components

2020-01-13 Thread Carlos Rovira
act: > https://www.evernote.com/l/AI-kSFHyYHFCWou_2mp4I-jqIB1toKyMryU < > https://www.evernote.com/l/AI-kSFHyYHFCWou_2mp4I-jqIB1toKyMryU> > > This confirms my suspicion that we have a huge performance advantage with > Royale… > > Harbs > > > On Jan 13, 2020, at 3:06 PM, Carl

Re: Spectrum Components

2020-01-13 Thread Carlos Rovira
urdle.github.io/spectrum-royale/ < > >> https://unhurdle.github.io/spectrum-royale/> > >> > >> I’m going to be filling them out over the next week… > >> > >> Harbs > > > > > > > > -- > > Andrew Wetmore > > > > http://cottage14.blogspot.com/ > > -- Carlos Rovira http://about.me/carlosrovira

Re: YFiles, EPL, Apache

2020-01-12 Thread Carlos Rovira
https://raw.githubusercontent.com/honzabrecka/ts-to-goog/master/externs/yfiles.extern.js > [3] https://github.com/honzabrecka/ts-to-goog/blob/master/LICENSE > [4] https://github.com/DefinitelyTyped/DefinitelyTyped/issues/23310 > -- Carlos Rovira http://about.me/carlosrovira

Re: List of existing emulations?

2020-01-10 Thread Carlos Rovira
z3HEl9tnb2ZwBQD78yONc%3Dreserved=0 > > > > > > > > > > > > > -- > > > > > > Piotr Zarzycki > > > > > > Patreon: * > > > https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzyckidata=02%7C01%7Caharui%40adobe.com%7C86c5f33547d54719083808d79509d73a%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637141741811092694sdata=ugd7%2FGV881ex4Xd5KhtheUORNaUCEMwAlFIQhFsChtU%3Dreserved=0 > > > < > > > https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzyckidata=02%7C01%7Caharui%40adobe.com%7C86c5f33547d54719083808d79509d73a%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637141741811092694sdata=ugd7%2FGV881ex4Xd5KhtheUORNaUCEMwAlFIQhFsChtU%3Dreserved=0 > > >* > > > > > > > > > > -- > > Andrew Wetmore > > > > > > > https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcottage14.blogspot.com%2Fdata=02%7C01%7Caharui%40adobe.com%7C86c5f33547d54719083808d79509d73a%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637141741811092694sdata=O%2Fs0YqiZgsTKYl8n8CKa2cz3HEl9tnb2ZwBQD78yONc%3Dreserved=0 > > > > > > > > -- > Andrew Wetmore > > http://cottage14.blogspot.com/ > -- Carlos Rovira http://about.me/carlosrovira

Re: Flexlib Emulation

2020-01-09 Thread Carlos Rovira
yale instead of Flex and does > not push the artifacts to the same folder as flexlib. You may want to call > this project royalelib instead. > > If you are more familiar with Ant, it is fine to just start with Ant. At > some point we will make builds work for both Ant and Maven. > > Thanks, > -Alex > > Thanks for your advice in advance. > > > -- Carlos Rovira http://about.me/carlosrovira

Re: Jewel: PopUpView.as exception

2020-01-09 Thread Carlos Rovira
gt; +_popUp.addClass("open"); > > COMPILE::JS > { > //avoid scroll in html > document.body.classList.add("viewport"); > //cancelAnimationFrame(rq); > } > } > > > Thank you, > Hiedra. > -- Carlos Rovira http://about.me/carlosrovira

Re: Error after compiled develop branch

2020-01-08 Thread Carlos Rovira
our attention Carlos. > > We already compile. > I will be attentive to progress. > > Thank you, > Hiedra > > -Mensaje original- > De: Carlos Rovira > Enviado el: miércoles, 8 de enero de 2020 16:03 > Para: dev@royale.apache.org > Asunto: Re: Error aft

Re: CSS Downloaded Twice (was Re: Including CSS in apps)

2020-01-08 Thread Carlos Rovira
lse. > ok I think I understand now the reasons. Thanks > > If someone wants to try using getComputedStyle, they should create a > branch, build some tests, and see if there is a better way. > > -Alex > > > > Thanks > > > -- > Carlos Rovira &g

Re: Error after compiled develop branch

2020-01-08 Thread Carlos Rovira
sun.reflect.NativeMethodAccessorImpl.invoke > (NativeMethodAccessorImpl.java:62) > at sun.reflect.DelegatingMethodAccessorImpl.invoke > (DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke (Method.java:498) > at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced > (Launcher.java:282) > at org.codehaus.plexus.classworlds.launcher.Launcher.launch > (Launcher.java:225) > at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode > (Launcher.java:406) > at org.codehaus.plexus.classworlds.launcher.Launcher.main > (Launcher.java:347) > [ERROR] > > Has it happened to someone else? > How can I report this error if it is? > > Thank you, > Hiedra. > -- Carlos Rovira http://about.me/carlosrovira

CSS Downloaded Twice (was Re: Including CSS in apps)

2020-01-07 Thread Carlos Rovira
? - What means that framework code doesn't need to call "getComputedStyles()"? and why should framework do that? Thanks -- Carlos Rovira http://about.me/carlosrovira

Re: Including CSS in apps

2020-01-07 Thread Carlos Rovira
e a file in a SWC. Then folks could have > images, css, js, whatever, added to the output file. I think that wouldn't > be too hard to do. There is already code in the compiler copying stuff out > of a SWC > > > > My 2 cents, > > -Alex > > > >> On Jan 6, 2020, at 8:56 PM, Alex Harui > wrote: > >> > >> But is that CSS platform-specific, or will that same CSS be needed if > you were to try to implement Spectrum in SWF? IMO, that's a key question > for how we solve this problem. > > > > > > > > -- Carlos Rovira http://about.me/carlosrovira

Re: Apache Royale PMC member joins the ASF staff

2020-01-07 Thread Carlos Rovira
Great Andrew! :) El dom., 5 ene. 2020 a las 20:05, Harbs () escribió: > Nice. :-) > > > > On Jan 5, 2020, at 8:34 PM, Andrew Wetmore wrote: > > > > https://blogs.apache.org/infra/entry/another-oar-in-the-water > > > > -- > > Andrew Wetmore > >

Re: About Jewel Table component

2020-01-07 Thread Carlos Rovira
rted by you and Piotr is welcomed to know more. I think this component has some useful features like the HTML/table layout, the colapsan/rowspan feature and the header label alignments. Of course is very oriented to the HTML world ;) Thanks! -- Carlos Rovira http://about.me/carlosrovira

CSS styles in minified .js

2020-01-05 Thread Carlos Rovira
Hi, I'm seeing CSS styles in TourDeJewel release version .js Strings like: '.jewel.item.primary.hovered',function(){this.background=3976689} Is this right? I expected styles coming from minified css Thanks -- Carlos Rovira http://about.me/carlosrovira

Re: About Jewel Table component

2020-01-05 Thread Carlos Rovira
> We've been using it as a grid replacement. We'll probably switch to grid > now that you've got that working. > ________ > From: Carlos Rovira > Sent: Friday, January 3, 2020 5:50:24 PM > To: dev@royale.apache.org > Subject: About Jewel Table compon

About Jewel Table component

2020-01-03 Thread Carlos Rovira
ts about it? I just updated the TDJ example to remove the "Work In Progress" warning. My intention is left the component in its current way, but depend of others comment to finish my decision Thanks! :) -- Carlos Rovira http://about.me/carlosrovira

Re: Jewel ButtonBar and DataGrid first iteration! :)

2019-12-29 Thread Carlos Rovira
ink adding sorting columns on header click ? > > Regards > > Le 28.12.2019 11:37, Carlos Rovira a écrit : > > Hi all, > > just want to share a tweet about the latest iteration of Jewel DataGrid. > This covers scrolling and other issues with dimensions and sizing. > Will t

Jewel inherintance fixed

2019-12-29 Thread Carlos Rovira
things that use to be more internal or hidden. -- Carlos Rovira http://about.me/carlosrovira

defaults x, y in UIBase

2019-12-28 Thread Carlos Rovira
suppose it the most coherent if no one oppose. -- Carlos Rovira http://about.me/carlosrovira

Re: Trying an implementation "inheritWidth" function on StyledUIBase

2019-12-28 Thread Carlos Rovira
> > 3.- *Duplicating `style.width` instruction*. In setWidth the > > > positioner.style.width is set to "NaNpx" then we reach the > > > "setInheritWidth" to remove to null. No collateral problems, but > just > > seems > > &

<    5   6   7   8   9   10   11   12   13   14   >