Re: Target Deadline (31-JUL) for Porting

2019-07-21 Thread Alina Kazi
Hi Alex, We can check #3 if #1 will work. For #1 Yishay said: I would make changes in org.apache.royale.html.supportClasses.Viewport.as I am waiting for the changes. Thanks, -Alina Kazi On Sat, 20 Jul 2019, 10:16 AM Alex Harui, wrote: > I thought #3 was fixed by Yishay, and #1 was discussed an

Re: Target Deadline (31-JUL) for Porting

2019-07-21 Thread Alina Kazi
#2 : https://github.com/apache/royale-asjs/issues/404 On Sun, 21 Jul 2019, 2:58 PM Alina Kazi, wrote: > Hi Alex, > We can check #3 if #1 will work. > For #1 Yishay said: I would make changes in > org.apache.royale.html.supportClasses.Viewport.as > I am waiting for the changes. > > Thanks, > -Ali

RE: Target Deadline (31-JUL) for Porting

2019-07-21 Thread Yishay Weiss
Hi Alina, I think you misunderstood my comment here [1]. I was giving you guidance on how I think this can be resolved. Do you think you can do this? Thanks, Yishay [1] https://github.com/apache/royale-asjs/issues/432#issuecomment-512145887 From: Alina Kazi Se

Re: Target Deadline (31-JUL) for Porting

2019-07-21 Thread Alina Kazi
Hi Yishay, I can't. Can you please help me more to resolve the issue. On Sun, 21 Jul 2019, 3:29 PM Yishay Weiss, wrote: > Hi Alina, > > > > I think you misunderstood my comment here [1]. I was giving you guidance > on how I think this can be resolved. Do you think you can do this? > > > > Tha

Re: Target Deadline (31-JUL) for Porting

2019-07-21 Thread Alex Harui
#2 is awaiting a response from Pashmina or others on your team. Greg and I have asked for additional information. -Alex From: Alina Kazi Reply-To: "users@royale.apache.org" Date: Sunday, July 21, 2019 at 3:16 AM To: "users@royale.apache.org" Subject: Re: Target Deadline (31-JUL) for Porting

Re: embed Royale web app into existing web page having corporate header/footer?

2019-07-21 Thread Carlos Rovira
Hi, some options to do that: 1.- use htmlTemplate compiler option to add html to the html template that loads the app. Check Tour De Jewel. It uses it to setup fonts from google for example in Maven pom.xml you can see this line: ${basedir}/target/javascript/bin/js-debug/jewel-example-index-te

Re: embed Royale web app into existing web page having corporate header/footer?

2019-07-21 Thread gkk gb
Thanks so much Carlos. Just to be sure, both methods below would work to insert into an existing website that was not created using Royale, right? That is, the Royale part of the web page (which can include view states, etc.) can get inserted within a set of tags, such as or tags, directly in

Re: embed Royale web app into existing web page having corporate header/footer?

2019-07-21 Thread Carlos Rovira
htmlTemplate is a compiler directive. In that way you customize the index.html that loads you app. There's some tokens that compiler uses to inject the js code that will load the royale app, so you can decorate the html page. So this is "out" the application code and is normal html ok? In the othe

Re: embed Royale web app into existing web page having corporate header/footer?

2019-07-21 Thread gkk gb
I think the 2nd method (html:Div) enables one to inject HTML code into an existing Royale application, and isn't what I'm after (I'm trying to inject a small Royale application into a webpage of a very large existing Drupal website). I'm still not sure about the first method (htmlTemplate). Wo

Re: embed Royale web app into existing web page having corporate header/footer?

2019-07-21 Thread Alex Harui
How would you like it to work? Royale is really about encapsulating common patterns in building web apps/sites. The htmlTemplate options requires that you pass the compiler a file with a template like this one: https://raw.githubusercontent.com/apache/royale-asjs/develop/examples/royale/TourDe