[gwt-contrib] Re: New JsInterop document

2015-10-23 Thread Jens
What about method overloading on Java side? Doesn't seem to be mentioned in the doc so I guess its not supported and we would need to rename methods on Java side? E.g. class Foo { @JsMethod(name = "send") public native void sendString(String s) @JsMethod(name = "send") public native

Re: [gwt-contrib] Re: New JsInterop document

2015-10-23 Thread 'Goktug Gokdogan' via GWT Contributors
Yes, no overloads in Java side as we don't automatically generate dispatch. Either you need to rename or you can create a send(Object) and dispatch manually to other methods. On Fri, Oct 23, 2015 at 1:57 AM, Jens wrote: > What about method overloading on Java side?

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

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,

[gwt-contrib] Re: GWT 2.8 Release

2015-10-23 Thread Jens
> This one seems like it has to affect everyone: > > https://github.com/gwtproject/gwt/issues/9108 > > https://code.google.com/p/google-web-toolkit/issues/detail?id=9177 > > It requires that you do tricks with the linker or manually clear cached > files in the browser after every GWT compile to

Re: [gwt-contrib] GWT 2.8 Release

2015-10-23 Thread Juan Pablo Gardella
Great work! Thanks. Is there any release note to GWT 2.8? On 23 October 2015 at 01:55, 'Goktug Gokdogan' via GWT Contributors < google-web-toolkit-contributors@googlegroups.com> wrote: > In the last few months, we had important progress on JsInterop and finally > it looks like we will be able to

Re: [gwt-contrib] Digest for google-web-toolkit-contributors@googlegroups.com - 4 updates in 2 topics

2015-10-23 Thread Arnaud TOURNIER
Hi ! I have a question : do you already plan that the JsInterop spec will be the same to be implemented in GWT 3.0 ? Meaning, if one invests time to master the new JsInterop api, will he have to learn something new when switching to GWT 3 or most of the concepts will stay (which i both hope and

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 >>

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

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

Re: [gwt-contrib] Digest for google-web-toolkit-contributors@googlegroups.com - 4 updates in 2 topics

2015-10-23 Thread 'Goktug Gokdogan' via GWT Contributors
JsInterop is designed for both current GWT compiler and the new compiler that we are working on. So you should be fine learning and mastering JsInterop. On Fri, Oct 23, 2015 at 5:27 AM, Arnaud TOURNIER wrote: > Hi ! > > I have a question : do you already plan that the

Re: [gwt-contrib] Re: GWT 2.8 Release

2015-10-23 Thread 'Goktug Gokdogan' via GWT Contributors
We will look at the problem next week and hopefully find a good fix by the RC. On Fri, Oct 23, 2015 at 8:42 AM, Jens wrote: > > This one seems like it has to affect everyone: >> >> https://github.com/gwtproject/gwt/issues/9108 >> >>

[gwt-contrib] GWT 2.8 Release

2015-10-23 Thread 'Goktug Gokdogan' via GWT Contributors
In the last few months, we had important progress on JsInterop and finally it looks like we will be able to start the release process for 2.8 in a few weeks. So if you believe a patch needs to be part of the RC release, this is a good time to engage. I know there will be questions about Java8 so

[gwt-contrib] New JsInterop document

2015-10-23 Thread 'Goktug Gokdogan' via GWT Contributors
As we are getting close to 2.8 release I wrote a new document that is concentrating on jsinterop features to be released in 2.8: https://docs.google.com/document/d/10fmlEYIHcyead_4R1S5wKGs1t2I7Fnp_PaNaa7XTEk0/edit# Please share your feedback. Thanks, Goktug -- You received this message

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

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

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

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