Re: Next release

2015-10-27 Thread Thomas Broyer
On Tuesday, October 27, 2015 at 7:15:00 AM UTC+1, bendg25 wrote: > > However back to my original request, I just don't understand, from a > design perspective, why you would want to couple yourself so closely to a > particular version of a web container. > It's not a "container", it's an embed

Re: gwt-dev classpath pollution

2015-10-27 Thread Thomas Broyer
On Tuesday, October 27, 2015 at 9:12:25 AM UTC+1, P.G.Taboada wrote: > > Hi there, > > > gwt-dev ist getting more and more a problem. > > It is packaging a lot of things and putting all of it into development > classpath: commons-logging, old servlet api, etc. > > I have read a few statements h

How to eliminate extra balnk column in CellBrowser

2015-10-26 Thread Thomas Broyer
In which browser are you seeing this? No issue for me in Chrome (for Android). Either that or I didn't understand the issue (a screenshot might help) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving

Re: JsInterop: Casting native javascript objects in gwt

2015-10-26 Thread Thomas Broyer
You may want to use GWT 2.8.0-SNAPSHOT and the new JsInterop annotations; as your usecase maybe is just not supported with the "old" annotations. On Monday, October 26, 2015 at 11:10:28 AM UTC+1, Brian Pedersen wrote: > > I have a dispatch method, exposed through JsInterop, which can take > vari

Re: SEO Google Crawlable experience ?

2015-10-24 Thread Thomas Broyer
On Saturday, October 24, 2015 at 9:52:32 PM UTC+2, Ed wrote: > > Thanks Vassilis, > I just used the Google WebMaster tools to crawl my website (leuker.nl), > and I receive an error when the googlebot crawls the website: > > possible problem with your *.gwt.xml module file. The compile time

Re: HTML Text, Link and Target

2015-10-24 Thread Thomas Broyer
How about post-processing the DOM? Something like: html.setHTML(content); for (Element element : html.getElement().getElementsByTagName(AnchorElement.TAG)) { AnchorElement.as(element).setTarget("_blank"); } On Saturday, October 24, 2015 at 1:16:22 AM UTC+2, Valavanur Man wrote: > > We need to

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

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-22 Thread Thomas Broyer
Aren't public sources copied to launcherDir on startup? Isn't it possible to load the files from the appropriate origin? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an emai

Re: How to insert Image into Column Header of CellTable (GWT)?

2015-10-22 Thread Thomas Broyer
Better actually use a Header with an ImageCell (or ImageRessourceCell) possibly within a CompositeCell if you also want/need text. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, se

Re: Next release

2015-10-20 Thread Thomas Broyer
On Tuesday, October 20, 2015 at 8:50:39 AM UTC+2, Cristiano wrote: > > Hi Thomas, Hi all, > > I've recently studied and "hacked" the code server and I have grown an > opinion about this, let me share some thoughts. > > I do prefer too that Jetty get stripped off from GWT, I find generically > t

Re: Roadmap Question for GWT 3.0

2015-10-19 Thread Thomas Broyer
On Monday, October 19, 2015 at 12:22:19 PM UTC+2, Jens wrote: > > >> * Stick with 2.x and risk being left behind and the project becoming >> neglected due to split effort. >> > > You are not behind when using 2.x: > > GWT 2 = GWT 2.x Compiler + JsInterop + Elemental 1 + Elemental 2 when > relea

Re: Roadmap Question for GWT 3.0

2015-10-16 Thread Thomas Broyer
I think nobody has such information yet; not even Google who are pushing for the change. They do have many apps that use widgets and RPC today (example: Google Groups, the exact app I'm typing this message into) and will need to come up with a migration path for those apps too. On Friday, Octob

Re: Next release

2015-10-16 Thread Thomas Broyer
On Friday, October 16, 2015 at 3:25:04 PM UTC+2, Luis Fernando Planella Gonzalez wrote: > > "classpath conflict is generally not a valid reason, because the part of > GWT that includes Jetty is not concerned about the server side of the > applications" > Unless you run [Super]DevMode, which ru

Re: Next release

2015-10-16 Thread Thomas Broyer
On Thursday, October 15, 2015 at 9:25:40 PM UTC+2, bendg25 wrote: > > Can you ditch the embedded Jetty server please. > Hmm, no. But it'd be interesting to know the reason for that request. For example, a classpath conflict is generally not a valid reason, because the part of GWT that includes J

Re: Welcome page

2015-10-14 Thread Thomas Broyer
What kind of framework/library is this using? Where do those @Event, @Events, and @Start come from? (you may have better chances in the forum for this framework/library) On Wednesday, October 14, 2015 at 11:22:28 AM UTC+2, NewbieGwtUser wrote: > > Hi ! > > I have in my project a RootView and a H

Re: Removing the SuperDevMode code server prompt

2015-10-14 Thread Thomas Broyer
One question remains unanswered: how are you launching SDM / loading the page that you're facing this dialog box? IIRC, the reason it doesn't automatically reloads is to avoid hiding the fact that the CodeServer isn't running at all (and you'd wait forever). I'd suggest deep-diving in the commi

Re: uncaught java.lang.indexoutofboundsexception

2015-10-09 Thread Thomas Broyer
On Friday, October 9, 2015 at 12:32:59 PM UTC+2, NewbieGwtUser wrote: > > I already expected my error and it worked fine by removing the = operator. > > but unfortunately when I wanted to add the real code expected to be run > within the for loop, I have had the same exception, and I also had on

Re: simulate F11 Key event with gwt

2015-10-07 Thread Thomas Broyer
;> $doc.cancelFullscreen(); >>> } else if (element.mozRequestFullScreen) { >>> $doc.mozCancelFullScreen(); >>> } else if (element.webkitRequestFullScreen) { >>> $doc.webkitCancelFullSc

Re: simulate F11 Key event with gwt

2015-10-07 Thread Thomas Broyer
If you mean "going fullscreen", there's an API for that (see also browser support and known issues at http://caniuse.com/#feat=fullscreen ) With GWT, you'll have to use JSNI to call those functions. On Wednesday, October 7, 2015 a

Re: Could not find com.google.gwt.dom.client.MRODOMImplMozilla in types compiled from source. Is the source glob too strict?

2015-10-06 Thread Thomas Broyer
On Tuesday, October 6, 2015 at 3:48:07 PM UTC+2, JonL wrote: > > If you are extending it, you should give it its own package name within > your own package structure so that it is caught up by the compiler > correctly. There is no need to keep it in the same package. IF you need > to access

Re: GWT DataGrid does not display, CellTable does

2015-10-02 Thread Thomas Broyer
On Friday, October 2, 2015 at 1:14:34 AM UTC+2, Patrick May wrote: > > My application consists of a SplitLayoutPanel that has a StackLayoutPanel > with two menu selections on the left and a DeckLayoutPanel on the right. > The DeckLayoutPanel has two subpanels, one a SimpleLayoutPanel containing

Re: Problems GWT2.7 superdevmode + tomcat server

2015-10-01 Thread Thomas Broyer
Server-side is not GWT's deal. "Compile in load" is only about the client. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegrou

Re: Removing the SuperDevMode code server prompt

2015-09-28 Thread Thomas Broyer
On Monday, September 28, 2015 at 10:23:18 AM UTC+2, Jens wrote: > > > That sounds like what I have been after. I can't see that feature in the >> 2.7.0 download - is it in the 2.8 builds? >> > > I would say so as I use it and never had an issue with any prompts. > Actually no. It is in 2.7 [1]

Re: Jar file detected in WAR but not in DevMode

2015-09-25 Thread Thomas Broyer
DevMode does not support Servlets 3.0: https://github.com/gwtproject/gwt/issues/8456 On Friday, September 25, 2015 at 10:21:06 AM UTC+2, Scarlet wrote: > > Hi, > > I'am using GWT 2.7 with GXT 3 for my application, > > I follow steps described in this link : ( > http://piotrnowicki.com/2011/03/usi

Problems GWT2.7 superdevmode + tomcat server

2015-09-11 Thread Thomas Broyer
The general idea is: * launch your app the same you'd normally do (for production), except you don't need to compile your GWT client code, and you have to serve static assets from a directory (i.e. not a packaged WAR but an "exploded" one, or if you're of an "self-contained executable jar" kind

Re: Dead links on http://www.gwtproject.org

2015-09-07 Thread Thomas Broyer
On Monday, September 7, 2015 at 1:36:36 PM UTC+2, Stefan Falk wrote: > > Hi! > > Somehow every link on > http://www.gwtproject.org/doc/latest/DevGuideLogging.html appears to be > broken. But I've seen a lot more broken links to images and/or other > websites. What is the reason for all the dea

Re: CSS ignored in SuperDev Mode GWT 2.6.1

2015-09-04 Thread Thomas Broyer
On Friday, September 4, 2015 at 11:54:36 AM UTC+2, Davide Micheletti wrote: > > Hi all, > i just upgraded my GWT apps from 2.5.1 to 2.6.1 and i start the SuperDev > Mode. > It compile everything right but when i launch the app my CSS file is > ignored. > Here the Warn > [WARN] ignored get reque

(Gwt Bootstrap) Split Layout Panel has an issue when I use that in a BootStrap container

2015-08-30 Thread Thomas Broyer
Does the container implements ProvidesResize? Otherwise, are you sizing the SplitLayoutPanel explicitly? -- 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 g

Re: Support for GWT 2.0.3, com.extjs.gxt 2.2.0-gwt2 with IE 11

2015-08-26 Thread Thomas Broyer
On Wednesday, August 26, 2015 at 4:20:07 PM UTC+2, Narasimhulu Bysani wrote: > > please let me know to which versions i need to update GWT and GXT versions > ? > Any reason for not using the latest ones? > > On Wednesday, August 26, 2015 at 1:38:54 PM UTC+5:30, T

Re: Support for GWT 2.0.3, com.extjs.gxt 2.2.0-gwt2 with IE 11

2015-08-26 Thread Thomas Broyer
On Wednesday, August 26, 2015 at 8:35:00 AM UTC+2, Narasimhulu Bysani wrote: > > Hi All, > > Currently my application was developed with the combination of GWT 2.0.3, > com.extjs.gxt 2.2.0-gwt2 . Now we got a new requirement saying that it > should support for IE 11. Please let me know the simp

Re: RequestFactory - update entity

2015-08-24 Thread Thomas Broyer
The first question that comes to mind is: where does 'object' come from? (and why is it frozen) On Monday, August 24, 2015 at 9:10:30 PM UTC+2, Manuel wrote: > > Hi everyone, > > Im using the requestFactory and want to update an entity. The problem is, > its frozen. > > I get an entityProxy pass

Re: GWT 2.7.0 is here

2015-08-20 Thread Thomas Broyer
2.7 shipped with a bug regarding the mtime of the nocache.js file. Does it work better if you "touch" the file before you deploy it? -- 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

Re: Polymer Integration in the next GWT versions?

2015-08-20 Thread Thomas Broyer
On Thursday, August 20, 2015 at 11:19:27 AM UTC+2, Vassilis Virvilis wrote: > > Hi, > > On the JsInterop front... > > I believe I have done my homework and look around for the JsInterop and > found some presentations and went through them. > > Right now I am depending on some js libraries (D3, h

Re: Issues with Super Dev Mode

2015-08-20 Thread Thomas Broyer
On Thursday, August 20, 2015 at 12:10:38 PM UTC+2, abdul wrote: > > I am facing lot of issue while Migrating Dev Mode to Super Dev Mode and > mine is very huge project build on top of GWT.I nearly can't believe that > GWT Super Dev Mode has been gradually implemented over years without really

Re: Chrome and SEVERE: CLIENT EXCEPTION: com.google.gwt.user.client.rpc.StatusCodeException: 0

2015-08-19 Thread Thomas Broyer
You should find a bit more info (not necessarily useful, but you won't know until you see it) in the "Network" tab in the Chrome Developer Tools. A status=0 might also mean that the request has been aborted. On Wednesday, August 19, 2015 at 12:23:58 AM UTC+2, Mandy Shen wrote: > > Thanks for the

Re: UiBinder + CssResource + @ClassName = Error

2015-08-17 Thread Thomas Broyer
On Monday, August 17, 2015 at 6:18:05 PM UTC+2, DaveC wrote: > > I get the same error if I use {style.defaultStyle}. > Then I guess maybe @ClassName is not supported with "implicit CssResources" in UiBinder (aka )… > Could you clarify why {style.panel-default} is not a valid value? > Things

Re: How to Use Super Dev Mode for Maven based GWT Application

2015-08-17 Thread Thomas Broyer
Answered on SO: https://stackoverflow.com/q/32048107/116472 On Monday, August 17, 2015 at 12:31:00 PM UTC+2, abdul wrote: > > I have multiple Maven Based GWT Project which are using Classic Dev Mode > earlier now i am upgrading the GWT version to 2.7 which will not support > classic DevMode and

Re: UiBinder + CssResource + @ClassName = Error

2015-08-15 Thread Thomas Broyer
Have you tried using {style.defaultStyle} in your attribute? {style.panel-default} is not a valid value AFAICT, but maybe it'd be detected only later (and is hidden by the current error) On Wednesday, August 5, 2015 at 11:28:37 AM UTC+2, DaveC wrote: > > Hi, > > I have the following UiBinder: >

Re: [ANN] Elemento - HTML templates and other goodies for GWT Elemental

2015-08-12 Thread Thomas Broyer
IMO, the appropriate way to deal with this is to have a separate tool turn the template into Java, then have an annotation processor (if needed) tie everything together (e.g. extend the generated code and implementing/overriding a few methods, etc.) How to trigger the intermediate tool and whet

gwtproject.org Images not displaying

2015-08-08 Thread Thomas Broyer
You can actually help fixing those by proposing the changes: click on the github icon in the page title, that'll get you to an editing form for the markdown source in github and you'll create a pull request within a click. -- You received this message because you are subscribed to the Google Gr

Re: Download link for GWT 2.8 SNAPSHOT SDK?

2015-08-07 Thread Thomas Broyer
Downloading 2 (or up to 5 JARs I suppose) is probably easier and faster than building it, but YMMV. -- 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 google

Re: gwt-maven-archetypes multiple project setup

2015-08-05 Thread Thomas Broyer
This is just how Maven works. A workaround is to create a POM with that declare both projects as submodules and run Maven on it instead: mvn -f workspace.pom gwt:codeserver (this is basically what "resolve dependencies from the workspace" do in Eclipse) -- You received this message because you

Re: Not finding Elemental classes

2015-08-01 Thread Thomas Broyer
On Saturday, August 1, 2015 at 5:25:40 PM UTC+2, Ali Akhtar wrote: > > Hi, > > I'm not finding any of the elemental classes / code. I'm > including gwt-user , gwt-dev , and gwt-servlet (all 2.8.0-SNAPSHOT) as > dependencies. But, the elemental.dom and elemental.dom imports are failing. > Do I

Re: gwt-maven-archetypes multiple project setup

2015-07-29 Thread Thomas Broyer
On Wednesday, July 29, 2015 at 2:52:57 PM UTC+2, William Davis wrote: > > So I figured out that if I do a maven install a war is generated in the > server project, however my servlet classes from the libraries were not > copied into the war. Still looking into that... > "'mvn install' is an an

Re: gwt-maven-archetypes multiple project setup

2015-07-29 Thread Thomas Broyer
On Wednesday, July 29, 2015 at 4:05:24 PM UTC+2, William Davis wrote: > > So I found a solution, but I am a little unclear why it works and what is > the best practice. Before when it wasn't working I had this dependency in > my server project: > > com.gwt.library > library-core-serv

Re: gwtgallery.appspot.com dead ?

2015-07-29 Thread Thomas Broyer
On Wednesday, July 29, 2015 at 11:00:07 AM UTC+2, STB Land wrote: > > GWT Gallery site seems to be dead, > unfortunately > it's referenced twice by GWT official site in Resources section > . > > This message just for the

Re: GWT CellTable-How to Move the Sorting Arrow from Left to Right side

2015-07-27 Thread Thomas Broyer
There's a setSortIconStartOfLine in AbstractHeaderOrFooterBuilder. On Monday, July 27, 2015 at 11:42:42 AM UTC+2, Mohammed Sameen wrote: > > I Would like to move the sorting arrow from left to right side in the cell > table header which is shown in below image[image: enter image description > he

Re: class file has wrong file version 51.0, should be 49.0

2015-07-25 Thread Thomas Broyer
On Wednesday, June 17, 2015 at 2:35:34 PM UTC+2, frank ho wrote: > > my environment is : > > windows 7, 32 bit, two jdk, one is 1.5, another is 1.7, google gwt, jetty, > ant, two eclipse, one is kepler, another is luna. > > > for kepler, I set its jdk is 1.5, and use ant to compile and jar, th

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread Thomas Broyer
On Friday, July 24, 2015 at 4:13:45 PM UTC+2, William Davis wrote: > > I think I figured something out. In the "base" project, in the parent pom, > I only defined the three modules in that project like this: > > base-client > base-shared > base-server > > > but I changed it to ad

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread Thomas Broyer
On Friday, July 24, 2015 at 3:06:22 PM UTC+2, William Davis wrote: > > That is great news! I hope I can get your much appreciated assistance to > help me figure out what I am doing wrong, because as of right now it isn't > working for me. I am sure there is something I haven't configured proper

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread Thomas Broyer
On Friday, July 24, 2015 at 2:33:22 PM UTC+2, William Davis wrote: > > Will the gwt-lib projects work with incremental compile or will I have to > stop the dev mode, rebuild the library, and run again? > One of the goals of net.ltgt.gwt.maven:gwt-maven-plugin was to properly support multimodul

gwt-maven-archetypes multiple project setup

2015-07-23 Thread Thomas Broyer
If it's reusable then it's a gwt-lib, not a gwt-app. Next, create any number of gwt-app depending on the gwt-lib, even possibly one with just a simple EntryPoint and module.gwt.xml, and no customization. -- You received this message because you are subscribed to the Google Groups "Google Web T

Re: How to use maven command line to download 2.8 snapshot?

2015-07-18 Thread Thomas Broyer
On Friday, July 10, 2015 at 7:01:07 AM UTC+2, Alex Luya wrote: > > Hello, > I am complete new to maven,after some googling I got command lines > like this: > > mvn dependency:get \ > -DrepoUrl=https:// > oss.sonatype.org/content/repositories/google-snapshots/com/google/ \ > -Dartifa

Re: confounding rpc serialization exception

2015-07-16 Thread Thomas Broyer
See https://github.com/gwtproject/gwt/issues/3071 On Thursday, July 16, 2015 at 2:35:46 PM UTC+2, Shawn wrote: > > I added a list containing a class that implements Serializable, has a > public no arg constructor, and contains only strings. Now I get an rpc > serialization exception: > > > com.

Re: using a simple class to access data from any database using GWT RPC

2015-07-15 Thread Thomas Broyer
Well, what did you expect from a message posted more than 8 YEARS AGO ‽ GWT-RPC doc: http://www.gwtproject.org/doc/latest/DevGuideServerCommunication.html#DevGuideRemoteProcedureCalls Dynatable sample (as of 2.7.0): https://gwt.googlesource.com/gwt/+/2.7.0/samples/dynatable/ (mirror on GitHub:

Re: Modules in the gwt.xml

2015-07-11 Thread Thomas Broyer
On Saturday, July 11, 2015 at 8:05:15 PM UTC+2, Manuel wrote: > > Hi everyone, > > gwt projects have a gwt.xml file. When using other modules, i blindly > followed the instruction and add some > > inside the gwt.xml. > > Does this tell my project, that there is a jar with this module name tha

Re: GWT caching on different browsers

2015-07-11 Thread Thomas Broyer
On Saturday, July 11, 2015 at 4:28:30 PM UTC+2, gocelticsp...@gmail.com wrote: > > A customer of our GWT 2.6.1 based product that runs on Tomcat has > requested to not have to cache our application every time we deploy a new > version. I have read many posts about various methods to prevent t

Re: Unwanted DataGrid cell padding / indentation

2015-07-04 Thread Thomas Broyer
That style comes from the default DataGrid styling: https://github.com/gwtproject/gwt/blob/2.7.0/user/src/com/google/gwt/user/cellview/client/DataGrid.css Pass a custom ClientBundle and CssResource to the DataGrid constructor to change it. -- You received this message because you are subscribe

[ANN] gwt-places: the PlaceHistoryMapper generator ported as an annotation processor

2015-06-30 Thread Thomas Broyer
Hi all, I just pushed out gwt-places to GitHub: https://github.com/tbroyer/gwt-places This is a port of the PlaceHistoryMapper generator as an annotation processor: I copied the code from GWT proper and replaced uses of com.google.gwt.core.ext. with javax.lang.model. and javax.annotation.proce

Re: Cell Widgets in GWT 3.0

2015-06-25 Thread Thomas Broyer
it. There might be ways to ease migration to new technologies/APIs rather than really port the existing ones, particularly if/when the alternative is better. > > On Tuesday, June 23, 2015 at 6:01:50 PM UTC-3, Thomas Broyer wrote: >> >> Videos about GWT 3.0 were by Google, not

Re: Cell Widgets in GWT 3.0

2015-06-23 Thread Thomas Broyer
Videos about GWT 3.0 were by Google, not the Steering Committee. That being said, it might be the same. My gut feeling is Sencha would help there, afaict GXT is all about widgets. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubsc

Re: How to rescue Classic Dev Mode?

2015-06-23 Thread Thomas Broyer
Google (who proposed that change of direction) has only internal *customers*; we outside Google are not customers, we're a community of users of a FLOSS project. Sencha and Vaadin, and to some extent Arcbees and RedHat, *do* have customers though, and they don't seem to disagree with those chang

Re: Can an interface serve as proxy for more than one class in RequestFactory?

2015-06-21 Thread Thomas Broyer
On Sunday, June 21, 2015 at 9:29:01 PM UTC+2, Aldo wrote: > > HI, > > I know this is an old thread, but I'm having a similar problem. > > I have a class A that is an entity on my server side and a class B that > extends A (with PrimaryKeyJoinColumn). So, in other words I have: > > @Entity > @Inh

Re: How to rescue Classic Dev Mode?

2015-06-21 Thread Thomas Broyer
On Sunday, June 21, 2015 at 9:35:35 PM UTC+2, Lukas Glowania wrote: > > Which announcements in particular would make it to a dead end? > The new compiler, JSNI (removed) vs. JsInterop (doesn't work in DevMode). That would require rewriting a whole lot of DevMode for GWT 3.0. -- You received t

Re: How to rescue Classic Dev Mode?

2015-06-21 Thread Thomas Broyer
On Sunday, June 21, 2015 at 6:38:13 PM UTC+2, Lukas Glowania wrote: > > Hi, > > like many people i think Super Dev Mode is quite a pain. Of course SDM and > its IDE support is getting better and better, but i guess it will always > feel workaroundish compared to Dev Mode. > > So what could be d

Re: Important videos from GWT Meet-up 2015

2015-06-21 Thread Thomas Broyer
On Sunday, June 21, 2015 at 11:17:50 AM UTC+2, James Horsley wrote: > > Also worth noting that, outside of GWT-RPC, I think that many of the > current major GWT features (widgets, uibinder, etc.) could be ported by the > community such that only minor code changes are necessary. I would even >

Re: Research on Elemental

2015-06-19 Thread Thomas Broyer
See https://gwt.googlesource.com/gwt/+/master/eclipse/README.txt -- 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 google-web-toolkit+unsubscr...@googlegroup

Re: GWT 2.6 Compatibility with Java 1.5

2015-06-16 Thread Thomas Broyer
Sorry, I answered to your mail to the Guava list before seeing this message in the moderation queue (and once approved, it didn't show up immediately, hence my belated response here): https://groups.google.com/d/msg/guava-discuss/Uordkib4G4w/jg26fYxWYa8J There, I wrote: According to https://git

Re: GWT 2.8.0 forEach, Consumer, Function, Streams and other Java 8 stuff

2015-06-15 Thread Thomas Broyer
On Monday, June 15, 2015 at 3:49:10 PM UTC+2, Ivan Hetman wrote: > > Thanks, got it. But why don't release special GWT 2.8 version with source > level 1.8 only? Without improved collection API Java 8 benefits in GWT are > low. > You can write lambdas and use defender methods in your own interf

Re: GWT 2.8.0 forEach, Consumer, Function, Streams and other Java 8 stuff

2015-06-11 Thread Thomas Broyer
You cannot use "classic" DevMode with a Java 7 JVM and -sourceLevel 8, and that includes GWTTestCases (unless run in prod mode); so forcing sourceLevel 8 would mean requiring Java 8, and because of issues with using a Java 8 JDK while targeting a Java 7 runtime JVM, this is not something we can

Re: GWT 2.8.0 forEach, Consumer, Function, Streams and other Java 8 stuff

2015-06-11 Thread Thomas Broyer
On Thursday, June 11, 2015 at 2:58:09 PM UTC+2, Ivan Hetman wrote: > > Hi. I used GWT 2.8.0-SNAPSHOT to try it on my projects to reduce > boilerplate code. But I was confused when I tried listeners.forEach() and > compiler said that there is no such method in Set (i. e. Iterable). Also as > i n

Re: GWT 2.7.0 RequestFactory + Spring + JPA + Hibernate optimistic locking implementation

2015-06-10 Thread Thomas Broyer
On Wednesday, June 10, 2015 at 12:21:03 PM UTC+2, Anton Mityagin wrote: > > In general, it is unclear why the guys at Google have made the RF this way. > If you look at the changes between the various milestones and RCs of GWT 2.1, and then 2.1.1 and 2.2, you'll see that RF is totally different

Re: gwt 2.0.0 in eclipse Luna & gwt plugin version 3.8.0

2015-06-09 Thread Thomas Broyer
On Tuesday, June 9, 2015 at 10:50:38 AM UTC+2, Oleg Marchuk wrote: > > Hi, All > > I try to setup fresh eclipse Luna 4.4.2 with gwt plugin version > 3.8.0v201410302155-rel-r44. My application uses gwt 2.0.0 version. > > When I add gwt 2.0.0 SDK to the plugin it says: > > PATH:\gwt-codeserv

Re: help! maven gwt plugin - "All Codehaus services have now been terminated."

2015-06-02 Thread Thomas Broyer
it clone" using "mvn site:run", and the doc for the various goals is always accessible locally using "mvn gwt:help". > On Mon, Jun 1, 2015 at 11:22 PM, Thomas Broyer wrote: > >> The code is (and has for years) hosted at >> https://github.com/g

help! maven gwt plugin - "All Codehaus services have now been terminated."

2015-06-01 Thread Thomas Broyer
The code is (and has for years) hosted at https://github.com/gwt-maven-plugin/gwt-maven-plugin and the mailing list at https://groups.google.com/d/forum/codehaus-mojo-gwt-maven-plugin-users -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: Strange exception (IncompatibleClassChangeError) as super dev mod starts

2015-05-29 Thread Thomas Broyer
On Friday, May 29, 2015 at 10:27:31 AM UTC+2, Hezouat Zahir wrote: > > > Thanks but I tried to launch my jetty separately but I got this issue > again : > > java.lang.IllegalArgumentException: Object of class > 'org.eclipse.jetty.webapp.WebAppContext' is not of type > 'org.eclipse.jetty.webap

Re: Strange exception (IncompatibleClassChangeError) as super dev mod starts

2015-05-28 Thread Thomas Broyer
work. Try launching your Jetty server separately and launching SuperDevMode through the CodeServer. > On Thursday, May 28, 2015 at 4:46:32 PM UTC+2, Thomas Broyer wrote: >> >> >> >> On Thursday, May 28, 2015 at 3:56:13 PM UTC+2, Hezouat Zahir wrote: >>> &g

Re: Strange exception (IncompatibleClassChangeError) as super dev mod starts

2015-05-28 Thread Thomas Broyer
On Thursday, May 28, 2015 at 3:56:13 PM UTC+2, Hezouat Zahir wrote: > > > We are using jetty-annotations because we use spring framework . Moreover, > we have chosen jetty 8.1.12.v20130726 and not jetty 9 and so we should > change version of jetty. > “…or just don't put jetty-annotations on t

Re: Strange exception (IncompatibleClassChangeError) as super dev mod starts

2015-05-28 Thread Thomas Broyer
On Thursday, May 28, 2015 at 3:11:23 PM UTC+2, Hezouat Zahir wrote: > > Hello all, > > We migrated to GWT 2.7 and we are facing to this issue (I know that it's a > problem with asm version but jetty-annotations has a dependency to asm 3.1 > ). > Jetty-annotations was updated to ASM 4 in Jetty

Re: GWT 2.7 with Designer

2015-05-24 Thread Thomas Broyer
On Saturday, May 23, 2015 at 7:33:10 PM UTC+2, Lenny Grover wrote: > > Is there any possibility of getting this merged into an official 2.7.1 > release (like the earlier 2.6.1 release) and into the upcoming 2.8 release? > No. Just like the hotfix in 2.6.1 was only committed only to the releases

Issue with Generated Sources (by RestyGWT) not Compiling, When including a class from an external GWT module.

2015-05-22 Thread Thomas Broyer
Does it work better if you use a real dependency on your sources jar (java-source or sources) rather than the hack? -- 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 a

Re: Have GWT 2.7.0 SuperDevMode reuse old compile-n files from last run

2015-05-21 Thread Thomas Broyer
On Thursday, May 21, 2015 at 1:48:30 PM UTC+2, salek.tala...@googlemail.com wrote: > > Answering my own question: > This seems to work if you start SDM from the Eclipse Plugin (=as Web > Application) and not as normal Java Application. > Also, you do not need the bookmarklets then, a recompile

Re: Third Party Library for GWT validation

2015-05-20 Thread Thomas Broyer
On Wednesday, May 20, 2015 at 4:40:17 PM UTC+2, Chad Vincent wrote: > > (GWT responses use GSON, a Google-modified JSON, and are converted to POJO > post-receive.) > Huh!?!?!?! GWT-RPC uses its own serialization formats (plural: server-to-client is based on JS object literals –there's a patch

GWT Compiler Task

2015-05-20 Thread Thomas Broyer
Have a look at the samples (either download the GWT SDK as a zip file, or browse the source online), some if them use Ant. You can also use the WebAppCreator (or Eclipse new project wizard) to generate a skeleton project with an optional Ant script (have a look at the getting-started docs onlin

Re: I need help with this 503 error

2015-05-20 Thread Thomas Broyer
I suggest you upgrade GWT from 2.6.0 (look at your stacktrace) to 2.6.1 or 2.7.0 (and yes, that means downloading then manually as there's no Eclipse Plugin for those versions). The version of the Google Plugin for Eclipse doesn't really matter here. -- You received this message because you are

I need help with this 503 error

2015-05-19 Thread Thomas Broyer
First thing is to try with GWT 2.6.1 (or better, 2.7) as 2.6.0 is known to have classloader issues in webapps. -- 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

Re: Exception whit the GWT 2.7

2015-05-06 Thread Thomas Broyer
On Wednesday, May 6, 2015 at 8:20:54 PM UTC+2, Marcin Kurzawa wrote: > > What is the preferred way to graphically design GWT gui (developing in > eclipse) when GWT Designer is phased out? Does that mean we'll have to do > all that tedious work all manually typing out the code for gui layouts? >

Re: migrating from css to gss (gwt 2.7) - CellWidgets compile errors ?

2015-05-06 Thread Thomas Broyer
Widgets have not yet been updated to GSS; it should be done by the 2.8 release (there was an attempt already –last week IIRC– but it had to be reverted) On Wednesday, May 6, 2015 at 4:46:44 PM UTC+2, Thomas Lacroix wrote: > > Hi, > I am migrating from css to gss using gwt 2.7 and the compile fai

Re: Petty easy OAuth with GWT

2015-05-05 Thread Thomas Broyer
On Monday, May 4, 2015 at 10:09:43 PM UTC+2, Juan Pablo Gardella wrote: > > Awesome!! About: > > *Twitter and GitHub have custom authentication workflows and are not > supported by gwt-oauth2 by default.* > > Is it plugable the "workflow" in the framework? > More importantly: OAuth is not abou

Re: Synchronized code after a service call

2015-05-03 Thread Thomas Broyer
On Sunday, May 3, 2015 at 12:14:08 AM UTC+2, Alireza Rezaei Mahdiraji wrote: > > > Hi Jens, > > Thanks for extensive answers, there are several things for me to learn. > > My application is a bit different, I am not loading data from db, rather I > have a list of db which > I want to check db

Re: GWT 2.7.0 DevMode not allowing multiple GWT Modules

2015-05-03 Thread Thomas Broyer
On Sunday, May 3, 2015 at 3:57:13 AM UTC+2, tbb wrote: > > Thanks Thomas. > > I might give that a try, but even if it worked, it would still be a pretty > clunky. Anyway chance that could be easily fixed? > "Classic" DevMode is very unlikely to receive any fix. Patches would probably be accept

Re: GWT 2.7.0 DevMode not allowing multiple GWT Modules

2015-05-02 Thread Thomas Broyer
IIRC this could be due to a "cache expiration" in the mapping from module "short names" (e.g. "portal") to their "fully-qualified name" (e.g. "com.xyz.ModuleB"). One workaround *could* be to load both modules fast enough after DevMode startup that the mapping is not reclaimed. On Saturday, May

Re: GWT Breadcrumb widget

2015-04-29 Thread Thomas Broyer
gwtbootstrap3 has a Breadcrumbs widget , and you can probably customize the style/theme to make it look like http://bootsnipp.com/snippets/featured/triangle-breadcrumbs-arrows On W

Re: Java 8 is Compatable with GWT 2.6 or 2.7

2015-04-28 Thread Thomas Broyer
Answered on SO: https://stackoverflow.com/a/29916083/116472 On Tuesday, April 28, 2015 at 9:39:50 AM UTC+2, Abdul wrote: > > Hi, > I have application which is developed using *GWT 2.6 and Java 7*.Now I > am updating it to *Java 8 with 2.6.* > >1. Is GWT 2.6 is Compatible with Java 8.Will it

Re: Can't Get Breakpoints to Work with Ecliose Luna and GWT 2.7

2015-04-25 Thread Thomas Broyer
See https://groups.google.com/forum/#!topic/google-web-toolkit/eUQTnSUECxw On Saturday, April 25, 2015 at 6:56:29 PM UTC+2, Ray Jantz wrote: > > Hi, > > I've done a lot of programming, but am new to web development. I > installed Eclipse Luna and GWT 2.6 plugin and have beat my head against the

Re: Chrome prompts me to install GWT Developer Plugin even though the plugin is already installed

2015-04-19 Thread Thomas Broyer
must say I don't quite understand: the plugin no longer works in Firefox for more than a year now, and you only notice *now* that "classic" DevMode is "deprecated"?! > > Em sexta-feira, 17 de abril de 2015 12:17:44 UTC-3, Thomas Broyer escreveu: >> >&

Re: GWT doesn't support My latest browser

2015-04-19 Thread Thomas Broyer
On Sunday, April 19, 2015 at 9:15:23 AM UTC+2, ERIK GUNAWAN wrote: > > Help me pleas Please precise: do you mean for development or in production? if in development, using "classic" (legacy) DevMode or SuperDevMode? And finally, what browser are you talking about? -- You received this m

Re: SuperDevMode Running With GWT 2.6.1 (ant/Command Line)

2015-04-19 Thread Thomas Broyer
Did you stumble on https://stackoverflow.com/a/18333050/116472 during your research? If you did, was there something missing there? I might create a new question on SO and copy/paste that answer as a "community wiki"; or maybe copy/paste that to my blog, to make it easier to find (given that it'

Re: GWT web content from a Java servlet

2015-04-18 Thread Thomas Broyer
On Friday, April 17, 2015 at 10:59:49 PM UTC+2, eho...@usdataworks.com wrote: > > I've tried looking for answers to this question, but the terms are so > common that I can't find anything useful. Either that or I don't know the > right term to include in my search. > > My goal is to provide GW

<    5   6   7   8   9   10   11   12   13   14   >