Re: [Try-it-now app] Progress thread

2017-11-27 Thread Erik de Bruin
> > I'll point a subdomain of the royalesdk.org domain to it, just because I > > can ;-) > > > > Please don't. We don't want a trademarks discussion at this point :-) > No fun! No fair! :-) EdB -- Ix Multimedia Software Jan Luykenstraat 27 3521 VB Utrecht T. 06-51952295 <06%2051952295>

Re: [Try-it-now app] Progress thread

2017-11-27 Thread OmPrakash Muppirala
On Mon, Nov 27, 2017 at 3:46 PM, Erik de Bruin wrote: > Olaf, > > (We need a NodeJS installation with access to the file system). > > > > How about I give you SSH access to a clean instance with Amazon Linux base > install? Will you be able to take it from there, or would you

Re: [Try-it-now app] Progress thread

2017-11-27 Thread Erik de Bruin
Olaf, (We need a NodeJS installation with access to the file system). > How about I give you SSH access to a clean instance with Amazon Linux base install? Will you be able to take it from there, or would you need me to help with installing the server stack? Do you need a database? In any case,

Re: [Try-it-now app] Progress thread

2017-11-27 Thread OmPrakash Muppirala
On Mon, Nov 27, 2017 at 2:40 PM, Erik de Bruin wrote: > > I believe we committers have some Azure credits with which we can spin up > > some VMs that can host this. The last option is for some of us to pay > and > > host it somewhere. > > > > I've already offered to host any

[Try-it-now app] Progress thread

2017-11-27 Thread Olaf Krueger
Hi, I started to work on an HTML mockup for the UI as the first draft [1] and I wonder if we really should embed this app within the webpage or if we rather should open a new window that contains just the app. (Without the background image at the top, cause it needs a lot of the screen size) I

RE: [royale-asjs] branch develop updated: Fixed event dispatching on tba view change

2017-11-27 Thread Idylog - Nicolas Granon
Hi Harbs, You are right : it is really two different cases. Why not "viewAdded" (when view is assigned to view manager) and "viewChanged" (or selectedViewChanged) ? (and maybe "viewRemoved" ?) If a view is added *and* triggers a "active" view change, both events should fire. Hope this helps

Re: [royale-asjs] branch develop updated: Added failing test for MD5

2017-11-27 Thread Harbs
I locally converted MD5Stream to use BinaryData (so it could run in a JS environment) instead of ByteArray and I got the wrong results for the MD5 hash. > On Nov 27, 2017, at 2:01 PM, Piotr Zarzycki wrote: > > Hi Harbs, > > What do you mean that is doesn't work ? We

Re: [royale-asjs] branch develop updated: Added failing test for MD5

2017-11-27 Thread Piotr Zarzycki
Hi Harbs, What do you mean that is doesn't work ? We are using MD5Stream in the MD5CompareUtil [1] of the installer and it seems to be working pretty well. Do you get some strange results ? [1]

Re: [royale-asjs] branch develop updated: Added failing test for MD5

2017-11-27 Thread Harbs
It turns out that MD5 is completely broken. My theory was that it should migrate from the Flash version and BinaryData should have been a drop-in replacement or ByteArray. Well, the theory didn’t work out and I spent a long time trying to figure out why it’s broken. It seems to be broken in

Re: [royale-asjs] branch develop updated: Fixed event dispatching on tba view change

2017-11-27 Thread Harbs
I’m not sure that viewChanged is the best event to be dispatching here. It turns out that viewChanged is dispatched in two unrelated cases: 1. When the IViewManagerView is assigned to the ViewManagerBase. 2. When the current view is set by the IViewManagerView. The way it is, it’s currently