HTML Text, Link and Target

2015-10-23 Thread Valavanur Man
We need to display notes entered in a RichTextArea widget on a webpage. The notes or content of the RichTextArea are displayed in another page as HTML output. If the notes contain any HREF links, clicking on the link changes the webpage on the current tab. We would like to set the target of th

Re: SEO Google Crawlable experience ?

2015-10-23 Thread Ed
Thanks Vassillis. I wasn't aware of the new scheme, I will have a closer look at it. So basically you are saying that I don't have to do nothing as Google is able to crawl my GWT site? BTW: how did you support the old schme (create the static pages) ? - Ed -- You received this message because

Re: What is j2cl?

2015-10-23 Thread Thomas Broyer
On Saturday, October 24, 2015 at 12:14:17 AM UTC+2, Marko wrote: > > I see the term "j2cl" comming up in several threads connected with GWT > 3.0. What does it mean? > > I speculate that this is a "Java-to-Closure-Library" transpiler, which > would be GREAT, because you wouldn't depend on JRE e

What is j2cl?

2015-10-23 Thread Marko
I see the term "j2cl" comming up in several threads connected with GWT 3.0. What does it mean? I speculate that this is a "Java-to-Closure-Library" transpiler, which would be GREAT, because you wouldn't depend on JRE emulation library anymore and GWT 3.0 would be safe from "Oracle copyright law

Re: SEO Google Crawlable experience ?

2015-10-23 Thread Vassilis Virvilis
In 2009 google issued the ajax crawling proposal https://developers.google.com/webmasters/ajax-crawling/docs/getting-started?hl=en The proposal basically says that for every url of the form http://www.foo.com/page#!var=value where the URL fragment (staff after #) are not visible to the server side

SEO Google Crawlable experience ?

2015-10-23 Thread Ed
How did you make your GWT site Crawlable by Google ? Please share your experience? According to the Goolge info (link ): To make it crawlable you should generate the static content and make it accessible through specified url's. I am cur

Re: SuperDevMode and same origin policy

2015-10-23 Thread Thomas Broyer
On Friday, October 23, 2015 at 1:14:31 PM UTC+2, Jens wrote: > > > Thomas, you are right. I had some conditional logic which chose which >> scripts should be loaded in production or dev mode (original or minified >> and merged) but I used GWT.isProdMode() and forgot that in SDM it returns >> t

Re: SuperDevMode and same origin policy

2015-10-23 Thread Jens
> Thomas, you are right. I had some conditional logic which chose which > scripts should be loaded in production or dev mode (original or minified > and merged) but I used GWT.isProdMode() and forgot that in SDM it returns > true... Sorry for that. > You can use the following in your conditio

Re: SuperDevMode and same origin policy

2015-10-23 Thread Greg
Thomas, you are right. I had some conditional logic which chose which scripts should be loaded in production or dev mode (original or minified and merged) but I used GWT.isProdMode() and forgot that in SDM it returns true... Sorry for that. On Thursday, October 22, 2015 at 10:36:57 PM UTC+2, Th