Stack Overflow in CodeGenerator

2013-08-16 Thread mukarev
Hi, since we moved from our client-side serialization to GWT Overlay-Types the Ant-build runs into the following error with one of two builds. [java] at com.google.gwt.thirdparty.javascript.jscomp.CodeGenerator.addList(CodeGenerator.java:896) [java] at

Re: GWT JettyLauncher.java How to enable SSL programaticly

2013-08-16 Thread Andrea Boscolo
Or, enable the SSL support of the embedded Jetty server. See http://stackoverflow.com/questions/6370919/how-to-enable-https-in-gwts-jetty and http://stackoverflow.com/questions/15791758/run-gwt-with-https-enabled/15793359#15793359 -- You received this message because you are subscribed to the

Developer plugin for Firefox 23 doesn't work

2013-08-16 Thread Gražvydas Valeika
Hi, I just updated FF to 23. And I see strange behavior. Developer plugin properly installed and shows version 1.23 and latest update date of today, but while starting DevMode application I'm getting 'Development Mode requires the Google Web Toolkit Developer Plugin' prompt. I'm installing

Re: Generics, JSNI and Integer problem

2013-08-16 Thread stole
Thank you very much for your help. This, indeed, solved the problem. On Monday, August 12, 2013 7:55:57 PM UTC+2, Thomas Broyer wrote: You need to wrap your int into a java.lang.Integer using its valueOf or new(). JSNI doesn't do auto-boxing/unboxing. -- You received this message because

Re: GWT website moved to gwtproject.org

2013-08-16 Thread Samyem Tuladhar
The vaadin guys seems to be great at UI stuff.. they should be able to contribute something in this area? On Tuesday, July 30, 2013 11:59:24 AM UTC-4, RyanZA wrote: Something like this would be great: http://scala-lang.org/ On Saturday, July 27, 2013 8:03:07 PM UTC+2, salk31 wrote:

GWT - Label not wrapping text/resizing properly?

2013-08-16 Thread Greg Olmschenk
I've got Labels within the cell of a FlexTable inside of a ScrollPanel which is inside of LayoutPanels. The size of the ScrollPanel (and it's parent LayoutPanels) is set dynamically based on the size of the window of the user's device (so exact CSS sizing is not used). The FlexTable, it's

Using GWT for async calls and serialization

2013-08-16 Thread rjcarr
I have a rather large and rather old project that is nearly 100% GWT. For a number of reasons I'd like redo things and write the UI in manual javascript / html / css. However, it'd be a huge pain to try and serialize all of the data that GWT is currently doing for me. I've been thinking

Re: Using GWT for async calls and serialization

2013-08-16 Thread Jens
GWT Exporter might be useful for you. https://code.google.com/p/gwt-exporter/ -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

ClientBundle problem: The following unobfuscated classes were present in a strict CssResource:

2013-08-16 Thread Laurent Bagno
Hello, I have a problem at the compilation with this error : The following unobfuscated classes were present in a strict CssResource: textb button headerPan [ERROR] [gwtmobileexample] - Generator 'com.google.gwt.resources.rebind.context.InlineClientBundleGenerator' threw an exception while

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-16 Thread Ray Cromwell
My original motivation was like the String.format() case, but with GwtQuery's $() function, since GwtQuery supported compile-time CSS selector parsing, is was really tedious to add them to an interface when all you wanted was $(.foo h1.title) or some such. Later, when doing GWT Exporter I noticed

[gwt-contrib] Initial support for @GwtCreate (code-gen methods)

2013-08-16 Thread Andrés Testi
I've been working on a prototype inspired by Ray Cromwell's proposal for @GwtCreate parameters, borrowing some ideas from Scala implicit macros. I apologize for not to post this in the Possible GWT.create() Improvements thread, but this message is too long to be only a comment. You can check

[gwt-contrib] Initial support for @GwtCreate parameters (code-gen methods)

2013-08-16 Thread Andrés Testi
I've been working on a prototype inspired by Ray Cromwell's proposal for @GwtCreate parameters, borrowing some ideas from Scala implicit macros. I apologize for not to post this in the Possible GWT.create() Improvements thread, but this message is too long to be only a comment. You can check

[gwt-contrib] Initial support for @GwtCreate (code-gen methods)

2013-08-16 Thread Andrés Testi
I've been working on a prototype inspired by Ray Cromwell's proposal for @GwtCreate parameters, borrowing some ideas from Scala implicit macros. I apologize for not to post this in the Possible GWT.create() Improvements thread, but this message is too long to be only a comment. You can check

[gwt-contrib] Re: Initial support for @GwtCreate (code-gen methods)

2013-08-16 Thread Andrés Testi
I forgot to upload the @GwtCreate annotation. You can find It here https://gwt-review.googlesource.com/#/c/4111/ Regards - Andrés El viernes, 16 de agosto de 2013 06:30:15 UTC-3, Andrés Testi escribió: I've been working on a prototype inspired by Ray Cromwell's proposal for @GwtCreate

[gwt-contrib] Re: Initial support for @GwtCreate (code-gen methods)

2013-08-16 Thread Andrés Testi
JEnumTypeTest doesn't fails anymore, I think the issue was solved yesterday :-) -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop

Re: [gwt-contrib] Initial support for @GwtCreate (code-gen methods)

2013-08-16 Thread Ray Cromwell
Andres, this looks amazing! I've been out this week on vacation but returning tomorrow, I'll take a look when I return. On Fri, Aug 16, 2013 at 2:22 AM, Andrés Testi andres.a.te...@gmail.comwrote: I've been working on a prototype inspired by Ray Cromwell's proposal for @GwtCreate parameters,