Re: GWT Spring integration - what is the best method in late 2010?

2010-09-17 Thread lalit
Hi Jason, I agree that both the approaches are same. But I still have a feeling that gwtDispatch uses Spring MVC infra to do its job. The code that you have posted above has WebApplicationContext. Also I looked into gwtDispatch code and it seems it is using Spring MVC infra. The code I looked

Re: showing all the elements from SuggestOracle in suggestionBox

2010-09-17 Thread Santosh kumar
ya you are rite !! Thank you for replying ..!! On Fri, Sep 10, 2010 at 2:40 PM, ciosbel andrew...@gmail.com wrote: I don't suggest you to do that. I think it's quite misleading for the user. A better solution should be to show a popup with a message like no suggestions found or something

Re: ScrolPanel Question

2010-09-17 Thread Santosh kumar
Hi skippy, ScrollPanel, its automatically adjust the scroll bars. ScrollPanel scrollPanel = new ScrollPanel(); scrollPanel.setSize(width, height); scrollPanel.clear(); RootPanel.get(div-id).clear(); RootPanel.get(div-id).add(scrollPanel); On Sat, Sep 11, 2010 at 2:03 AM, skippy

Re: Custom map

2010-09-17 Thread chinese
It seems to be pretty! I'll try and then I'll communicate my results. Thanks a lot. Bye! On 15 Set, 15:44, Mikael Couzic mikaelcou...@gmail.com wrote: I heard some guys did pretty crazy stuff with OpenLayers, like Tetris- style games. So I guess displaying an image in background and some

Re: Can we run selenium tests in GWT dev mode?

2010-09-17 Thread Andrey
That doesn't work. My question is: how should we run selenium in dev mode? On Sep 16, 6:13 pm, András Csányi sayusi.a...@gmail.com wrote: On 16 September 2010 16:07, Andrey mino...@gmail.com wrote: Or we should compile the app first? I think you can run the test because dev mode uses the

GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread AlexG
Hi @ all, On the Google GWT homepage, I found the GWT-Designer, ready to download. I just want to inform you, that it seems to be available. It´s OpenSource now, so have fun trying it. Greets Alex -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Frame border problem in IE8

2010-09-17 Thread HenrikA
Making HTML content blend into your application using Frames worked well inn all browsers except IE8 (and older ?) where getting rid of the frame borders turned out to be quite tedious. We first resolved it by creating our own IFrame widget, but then resolved it by just extending the Frame class.

Using the same object at the server and client

2010-09-17 Thread Janko
Hi! I am trying to modify the stockwatcher example (http://code.google.com/ webtoolkit/doc/latest/tutorial/appengine.html#data) that the getStocks() in StockServiceImpl.java would return a list of Stocks object defined in com.google.gwt.sample.stockwatcher.server. I am having problems with using

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread aditya sanas
Yeah its a great opensource tool launched by Google. Fun using it. makes client side's job easier than before. I think this would be a great answer for all those questions which were raised in the past about GWT's future. Google is thinking about GWT and making it more and more easier to use.

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread Jaroslav Záruba
Hopefully it will help making the out-of-the-box widget library a little bit richer. :) On Fri, Sep 17, 2010 at 12:45 PM, aditya sanas 007aditya.b...@gmail.comwrote: Yeah its a great opensource tool launched by Google. Fun using it. makes client side's job easier than before. I think this

Re: Frame border problem in IE8

2010-09-17 Thread Thomas Broyer
On Sep 17, 11:13 am, HenrikA henrik.abe...@gmail.com wrote: Making HTML content blend into your application using Frames worked well inn all browsers except IE8 (and older ?) where getting rid of the frame borders turned out to be quite tedious. We first resolved it by creating our own

Re: Using the same object at the server and client

2010-09-17 Thread Janko
PS: I get the did you forget to inherit a required module error.. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Using the same object at the server and client

2010-09-17 Thread Brett Thomas
I think you need to move the stock class from the .server. package to .shared. so the client knows about it On Fri, Sep 17, 2010 at 7:09 AM, Janko janko.sla...@gmail.com wrote: PS: I get the did you forget to inherit a required module error.. -- You received this message because you are

Re: Using the same object at the server and client

2010-09-17 Thread AlexG
Ji Janko, yes you get this Error Message, if the client doesn´t know the source-code of the object. As Brett said, move it to the shared package. Note: You can´t use persisted classes on the client. But in the StockWatcher example there nothing is persisted, so moving your class to the shared

Re: Using the same object at the server and client

2010-09-17 Thread Janko
Thank you for the quick response. I now get the 13:25:23.531 [ERROR] [homework] Line 9: The import com.google.appengine cannot be resolved Line 9 is: import com.google.appengine.api.users.User; I found I need probably inherit it... in what way? what do I need to do? On Sep 17, 1:13 pm, Brett

Re: GWT Eclipse Project not always updating classes

2010-09-17 Thread AlexG
Hi Samuru, maybe you have two instances of your App running? This could be one reason. Make sure, that you close all instances, then clean your project, and retry. The classes in the war/WEB-INF directory are only classes in your server package. Maybe they should be re-enhanced?? You can also

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread aditya sanas
here is the link for the reference - http://code.google.com/webtoolkit/tools/gwtdesigner/features/gwt/smartgwt.html -- Aditya 2010/9/17 Jaroslav Záruba jaroslav.zar...@gmail.com Hopefully it will help making the out-of-the-box widget library a little bit richer. :) On Fri, Sep 17, 2010 at

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread Jaroslav Záruba
That's exactly the framework that made me running back to GWT's native components. On Fri, Sep 17, 2010 at 1:33 PM, aditya sanas 007aditya.b...@gmail.comwrote: here is the link for the reference - http://code.google.com/webtoolkit/tools/gwtdesigner/features/gwt/smartgwt.html -- Aditya

Re: Using the same object at the server and client

2010-09-17 Thread Janko
Hi Alex and Thomas. This is really fast:D I guess the Stock.java is persisted: --- @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Stock { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Long id; @Persistent private User user;

Re: Using the same object at the server and client

2010-09-17 Thread AlexG
Hi again, do you have the App-Engine-Library on your classpath? It seems, that your App is missing this library. Greets On 17 Sep., 13:30, Janko janko.sla...@gmail.com wrote: Thank you for the quick response. I now get the 13:25:23.531 [ERROR] [homework] Line 9: The import

Re: Using the same object at the server and client

2010-09-17 Thread AlexG
Ji Jakob, yes this is a persisted class. The jdo-annotations, tells datanucleus to persist this in the datastore. Yea, I´m sorry but you got me right. I ran into this too, when I started to work with GWT and GAE. The solution is quite simple, you already said it. Make a so called:

GWT and concurrency

2010-09-17 Thread Johannes Lehmann
Hi, here is something that has been puzzeling me (and that may just be because I have misunderstood something trivial): I have read that JavaScript interpreters are usually single threaded. A page on supported language features seems to imply that for this reason, GWT doesn't not honor the

Re: gwt-maven-plugin: include files from src/main/test for gwt:debug

2010-09-17 Thread Thalles
Thanks, I'll have a look at this. Bye Henry On Sep 16, 4:55 pm, Hilco Wijbenga hilco.wijbe...@gmail.com wrote: On 16 September 2010 06:18, Thalles henry.rotz...@googlemail.com wrote: Does anybody have an idea? Thanks in advance!

Gettting an error when the app starts

2010-09-17 Thread harjit.singh
Hi there, When I try to run the app which is compiled in Gwt 2.0 in IE 8 I keep getting this exception quiet a lot. If I run the same app in Firefox, I don't see the error. Here is a stack trace 08:32:38.251 [ERROR] [gwebtop] Uncaught exception escaped java.lang.ExceptionInInitializerError:

Re: How to supply bindAddress

2010-09-17 Thread Nairutee
If you are using an Eclipse IDE, i) you will need to have the latest GWT plugin for Eclipse http://code.google.com/eclipse/docs/getting_started.html . ii) In the Run / Debug configurations in the arguments tab you will need to provide -bindAddress 0.0.0.0 (0 should be replaced by the ip you wish

GWT Complier OutOfMemory issue

2010-09-17 Thread lin.liang
The OutOfMemory exception always happen when the gwt project was complied. The gwt project has 7 modules, and about 5,700 java files. I have a look at gwt docs. It said that when the project became bigger, the complier using the memory more too. However, I have set the memory to 1.7G, it still

Re: Return permutation directly from the server without selection script.

2010-09-17 Thread Helder Suzuki
+1 On Aug 4, 9:17 am, André Moraes andr...@gmail.com wrote: Hi, I saw the presentation of the GWT team and they talked about sending the permutation without sending first the selection script. I can read the HTTP headers and find-out what is the browser which is making the request, this is

Re: GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-17 Thread Eric Clayberg
Anything prior to GWT 2.1M3 does not support the GWT Designer hooks required to provide WYSIWYG editing of UiBinder components. You need at least GWT 2.1M3 for visual editing, and even newer to also support the ui:field attribute and the @UiField annotation. The missing UiBinder template file is

Re: GWT and concurrency

2010-09-17 Thread Thomas Broyer
On Sep 17, 2:17 pm, Johannes Lehmann johannes.lehma...@googlemail.com wrote: Hi, here is something that has been puzzeling me (and that may just be because I have misunderstood something trivial): I have read that JavaScript interpreters are usually single threaded. A page on supported

Re: Gettting an error when the app starts

2010-09-17 Thread Thomas Broyer
On Sep 17, 2:37 pm, harjit.singh harjit.si...@content-studios.com wrote: Hi there, When I try to run the app which is compiled in Gwt 2.0  in IE 8 I keep getting this exception quiet a lot. If I run the same app in Firefox, I don't see the error. Here is a stack trace 08:32:38.251 [ERROR]

Re: GWT and concurrency

2010-09-17 Thread Johannes Lehmann
OK, that is basically what I assumed. This however seems to create concurrency issues, which the synchronized keyword was designed to address. Without any language support such as semaphores or mutexes and without any guarantees regarding preemption, how could I solve a problem such as the above?

Re: Return permutation directly from the server without selection script.

2010-09-17 Thread Etienne Lacazedieu
I wrote such a Linker : /** * This GWT linker creates a properties file which can be used to resolve Permutation Strong name given UserAgent and locale. * * @author Etienne Lacazedieu * */ @LinkerOrder(Order.PRE) public class StrongNameOracleLinker extends AbstractLinker { public static

Re: de-mavenize a project

2010-09-17 Thread Brad
Just grab the GWTUpload jar and add it to your classpath. On Sep 16, 12:20 pm, John nesre...@gmail.com wrote: A few weeks ago I was interested in GWTUpload, and I wanted to install it on Eclipse.  I saw the project maintainer had written: The project has been mavenized,... Well, over the

Re: GWT Complier OutOfMemory issue

2010-09-17 Thread Chris Conroy
That should be more than enough memory to run your compile. Do you have a stack trace for the OOME? FWIW, I have a pending change that should decrease the amount of memory needed to run a compile or DevMode. On Fri, Sep 17, 2010 at 7:19 AM, lin.liang birdandfis...@gmail.com wrote: The

Re: de-mavenize a project

2010-09-17 Thread olivier nouguier
Or learn maven ;) More seriously, you can easy de mavenize aproject, but maven will help you: - mvn dependency:copy-dependencies will copy all dependencies in a folder target/dependency Then you'll just have to add those lib in your build classpath. - mvn eclipse:clean

Re: plugin failed to connect to hosted mode server at 127.0.0.1:9997

2010-09-17 Thread consutes
Hi bouadma abderrazak, are you found the solution? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: GWT Designer Custom widgets

2010-09-17 Thread Eric Clayberg
Definitely, yes! Here are some relevant docs... http://code.google.com/webtoolkit/tools/gwtdesigner/wizards/gwt/composite.html http://code.google.com/webtoolkit/tools/gwtdesigner/features/custom_composites.html On Sep 16, 2:20 pm, marius.andreiana marius.andrei...@gmail.com wrote: Hi, It it

Re: GWT and concurrency

2010-09-17 Thread Thomas Broyer
On Sep 17, 4:13 pm, Johannes Lehmann johannes.lehma...@googlemail.com wrote: OK, that is basically what I assumed. This however seems to create concurrency issues, which the synchronized keyword was designed to address. Without any language support such as semaphores or mutexes and without

Re: Google Releases Instantiations Development Tools, Free Of Charge

2010-09-17 Thread Eric Clayberg
We are working hard on UiBinder support and some preliminary support is in the current release (requires GWT 2.1M3 or better). On Sep 16, 1:41 pm, chiappone chiapp...@gmail.com wrote: http://googlewebtoolkit.blogspot.com/2010/09/google-relaunches-instan... This seems like good news, curious if

Re: Frame border problem in IE8

2010-09-17 Thread HenrikA
On Sep 17, 1:01 pm, Thomas Broyer t.bro...@gmail.com wrote: On Sep 17, 11:13 am, HenrikA henrik.abe...@gmail.com wrote: Making HTML content blend into your application using Frames worked well inn all browsers except IE8 (and older ?) where getting rid of the frame borders turned out to

Re: REST vs SOAP for calls to remote server

2010-09-17 Thread marius.andreiana
On Sep 17, 8:45 am, Sunny sravip...@gmail.com wrote: In step 2, on the server, using gwt can I make REST API calls to server B in domain B? Yes. On server/domain A you have * gwt compiled files, including project_nocache.js * assets such as css/images * container.html which loads

Re: Development Mode performance with Chrome

2010-09-17 Thread Michael Kelley
Speaking of other browsers, has anyone successfully gotten a GWT plugin for Firefox 4.0 to work? On Sep 16, 10:13 am, PhilBeaudoin philippe.beaud...@gmail.com wrote: I echo these thoughts. Chrome is easily my favorite browser for everything but testing my GWT apps in dev mode. On Sep 16, 6:04 

Re: GWT Complier OutOfMemory issue

2010-09-17 Thread jocke eriksson
I had this trouble but my project was very small, but my solution was to divide my clientbundles to smaller ones. processing lots of images can consume very much memory. 2010/9/17 Chris Conroy con...@google.com That should be more than enough memory to run your compile. Do you have a stack

Custom Widget Creation - use widgets or elements?

2010-09-17 Thread Falcon
Hey all, I'm creating my own version of a TabPanel that works in standards mode and doesn't require one of the layout panels so that the content area can take up just the amount of space needed for the content inside. I have a panel container (which is a div), tab bar (a ul or ol), and tab

[ERROR] [gmn] Unable to find 'gmn.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-09-17 Thread ziv
hey everybody, I am new to gwt programing, and I could really use some help.. I have been writing a GWT application with eclipse. I have a GMN.JAVA that has a class that I created. and I keep getting this error, what is the problem here? a little about my hierchy:

Re: REST vs SOAP for calls to remote server

2010-09-17 Thread Sunny
Thanks but I need more clarification so let me rephrase my question which is server/domain A has its own portal developed using GWT and server/domain B is not GWT generated code and needs to exposes a API to do CRUD operations from server/domain A so my question is if the API on server/domain B

Re: Development Mode performance with Chrome

2010-09-17 Thread Chris Conroy
FF4 is not yet supported, but it will be soon. On Fri, Sep 17, 2010 at 12:33 PM, Michael Kelley kelley.pixelactive3d.com@ gmail.com wrote: Speaking of other browsers, has anyone successfully gotten a GWT plugin for Firefox 4.0 to work? On Sep 16, 10:13 am, PhilBeaudoin

Re: REST vs SOAP for calls to remote server

2010-09-17 Thread Jeff Chimene
You're using the term server/domain, perhaps that muddies the waters. You might want to make the request from the client to server A. Server A then makes a request of Server B. Server A collects the answer and forwards/reformats it for the client. For example, server A is a custom application,

Re: Gettting an error when the app starts

2010-09-17 Thread harjit.singh
I don't think the issue is related to 4584. I did try to see and check the IE8 mode. It was running in IE7 Standars mode. I changed it to IE8 mode and now I get this java.lang.NoClassDefFoundError: null at com.google.gwt.user.client.ui.PopupPanel.setState(PopupPanel.java: 1387) at

Re: GWT Designer Custom widgets

2010-09-17 Thread markM
What's the code that it's producing look like though? That's been the problem with UI designers in the past is that the code they output is generally not readable by humans. I haven't checked it out yet but maybe this weekend. On Sep 16, 2:25 pm, Kasper Hansen kbhdk1...@gmail.com wrote: I'm

Reverse proxy problem once again

2010-09-17 Thread pete
Hallo, I've looked around several hours to solve this problem, but I just can't figure it out (even though I find many similar posts and tips about it). The set up is quite simple, I have my GWT-Module running at http://localhost:8080/bla and if I address it like this, everything runs fine. I

Re: GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-17 Thread marius.andreiana
Thanks Eric! On Sep 17, 4:41 pm, Eric Clayberg clayb...@google.com wrote: Anything prior to GWT 2.1M3 does not support the GWT Designer hooks required to provide WYSIWYG editing of UiBinder components. You need at least GWT 2.1M3 for visual editing, and even newer to also support the ui:field

EventBus and HandlerManager Classes. Difference?

2010-09-17 Thread Ashton Thomas
I am confused as to when use the abstract class EventBus class that implements HasHandlers: http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/event/shared/EventBus.java and the class HandlerManager that also implements HasHandlers:

An Updated GWT Designer Tutorial

2010-09-17 Thread Chad Lung
I'm posting this in the GWT Group simply because not everyone is aware of the GWT Designer forum yet ( http://forums.instantiations.com/viewforum.php?f=11 ). I have written an updated version of my prior tutorial using the GWT Designer, you can find it here:

Re: An Updated GWT Designer Tutorial

2010-09-17 Thread Jaroslav Záruba
Now when GWT Designer is in Google portfolio, wouldn't it make sense to have mailing list for it, as all Google products/services have? I personally find emails way more comfortable compared to forums. On Fri, Sep 17, 2010 at 9:10 PM, Chad Lung chad.l...@gmail.com wrote: I'm posting this in

Re: An Updated GWT Designer Tutorial

2010-09-17 Thread Jeff Chimene
Yes. However, there's a lot of stored wisdom at that URL. Thanks for the pointer. 2010/9/17 Jaroslav Záruba jaroslav.zar...@gmail.com Now when GWT Designer is in Google portfolio, wouldn't it make sense to have mailing list for it, as all Google products/services have? I personally find

Re: plugin failed to connect to hosted mode server at 127.0.0.1:9997

2010-09-17 Thread Rajeev Dayal
Look at your c:\Windows\system32\drivers\etc\hosts file. What do the entries look like in there? On Fri, Sep 17, 2010 at 11:20 AM, consutes consu...@hotmail.com wrote: Hi bouadma abderrazak, are you found the solution? -- You received this message because you are subscribed to the

Re: GWT Eclipse Project not always updating classes

2010-09-17 Thread Rajeev Dayal
Can you expand on what you mean? How do you know that it puts the old classes back there? On Fri, Sep 17, 2010 at 7:33 AM, AlexG alexander.gauss.ax...@googlemail.com wrote: Hi Samuru, maybe you have two instances of your App running? This could be one reason. Make sure, that you close all

Correct way to use code modules

2010-09-17 Thread Greg Dougherty
I have objects from an external package that I need to use both client side and server side. I added the package to my eclipse project, which took care of the server side, and I created a Module.gwt.xml file to export those classes to the client side. No problem. Except for one thing: Every

Re: Correct way to use code modules

2010-09-17 Thread Jaroslav Záruba
On Fri, Sep 17, 2010 at 10:01 PM, Greg Dougherty dougherty.greg...@mayo.edu wrote: I have objects from an external package that I need to use both client side and server side. I added the package to my eclipse project, which took care of the server side, and I created a Module.gwt.xml file

Re: EventBus and HandlerManager Classes. Difference?

2010-09-17 Thread Thomas Broyer
On Sep 17, 9:05 pm, Ashton Thomas ash...@acrinta.com wrote: I am confused as to when use the abstract class EventBus class that implements HasHandlers:http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/... and the class HandlerManager that also implements

Re: Correct way to use code modules

2010-09-17 Thread Greg Dougherty
That would be the answer. Yes, it was (I had no idea that Property existed), no, it isn't any longer, and now GWT doesn't try to compile it as such. Thank you! Greg On Sep 17, 3:11 pm, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: On Fri, Sep 17, 2010 at 10:01 PM, Greg Dougherty

Re: de-mavenize a project

2010-09-17 Thread John
On Fri, Sep 17, 2010 at 11:06 AM, olivier nouguier olivier.nougu...@gmail.com wrote: Or learn maven ;) There are s many interesting things to learn, rails, groovy, python, and on and on. It's hard to justify taking time to learn something that solves problems you don't have. More

Re: de-mavenize a project

2010-09-17 Thread Thomas Broyer
On Sep 18, 12:10 am, John nesre...@gmail.com wrote: On Fri, Sep 17, 2010 at 11:06 AM, olivier nouguier olivier.nougu...@gmail.com wrote: Or learn maven ;) There are s many interesting things to learn, rails, groovy, python, and on and on.  It's hard to justify taking time to learn

Re: GWT Designer Custom widgets

2010-09-17 Thread Eric Clayberg
The generated code looks great! ;-) It is also highly configurable, so that you can adapt it to almost any style you want. Here's an example of all of the code gen options for GWT Designer... http://code.google.com/webtoolkit/tools/gwtdesigner/preferences/gwt/preferences_code_generation.html The

Re: de-mavenize a project

2010-09-17 Thread John
On Fri, Sep 17, 2010 at 4:06 PM, Thomas Broyer t.bro...@gmail.com wrote: If it's just about *using* GWTUploader, isn't it just a matter of downloading the JAR (it's in the download section) and putting it in your classpath/build path? (and probably commons-upload on the server- side, maybe

[gwt-contrib] Re: GWT Designer for UiBinder?

2010-09-17 Thread Konstantin.Scheglov
I just noticed that it's there but it fails to load with the error: Actually, UiBinder is in the menu but it fails with the error message: Unable to open file /templates/Composite.jvt Please update GWT Designer, new build already includes templates required by UiBinder wizards. --

Re: [gwt-contrib] Re: GWT Designer for UiBinder?

2010-09-17 Thread Patrick Julien
thanks, it works now On Fri, Sep 17, 2010 at 7:58 AM, Konstantin.Scheglov konstantin.scheg...@gmail.com wrote: I just noticed that it's there but it fails to load with the error: Actually, UiBinder is in the menu but it fails with the error message: Unable to open file

Re: [gwt-contrib] Re: GWT Designer for UiBinder?

2010-09-17 Thread Patrick Julien
What is the property that is needed to enable this on existing view? It works on a new file but that's it On Fri, Sep 17, 2010 at 8:43 AM, Patrick Julien pjul...@gmail.com wrote: thanks, it works now On Fri, Sep 17, 2010 at 7:58 AM, Konstantin.Scheglov konstantin.scheg...@gmail.com wrote:

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-17 Thread bobv
http://gwt-code-reviews.appspot.com/886801/diff/28001/15008 File user/src/com/google/gwt/requestfactory/server/ExceptionHandler.java (right): http://gwt-code-reviews.appspot.com/886801/diff/28001/15008#newcode30 user/src/com/google/gwt/requestfactory/server/ExceptionHandler.java:30:

[gwt-contrib] Re: GWT Designer for UiBinder?

2010-09-17 Thread Thomas Broyer
On Sep 17, 2:48 pm, Patrick Julien pjul...@gmail.com wrote: What is the property that is needed to enable this on existing view? It works on a new file but that's it right-click - open with... - Window Builder editor (from memory) There's probably a way to enable it by default but I haven't

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-17 Thread rchandia
http://gwt-code-reviews.appspot.com/886801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-17 Thread rchandia
Oops! I forgot to add RequestFactoryExceptionHandlerTest to RequestFactorySuite http://gwt-code-reviews.appspot.com/886801/diff/28001/15008 File user/src/com/google/gwt/requestfactory/server/ExceptionHandler.java (right): http://gwt-code-reviews.appspot.com/886801/diff/28001/15008#newcode30

[gwt-contrib] Re: Adds support for List collections. Request methods are now permitted to return (issue893801)

2010-09-17 Thread bobv
http://gwt-code-reviews.appspot.com/893801/diff/1/6 File user/src/com/google/gwt/requestfactory/client/impl/JsoCollection.java (right): http://gwt-code-reviews.appspot.com/893801/diff/1/6#newcode25 user/src/com/google/gwt/requestfactory/client/impl/JsoCollection.java:25: void

Re: [gwt-contrib] Re: GWT Designer for UiBinder?

2010-09-17 Thread Patrick Julien
On Fri, Sep 17, 2010 at 9:25 AM, Thomas Broyer t.bro...@gmail.com wrote: On Sep 17, 2:48 pm, Patrick Julien pjul...@gmail.com wrote: What is the property that is needed to enable this on existing view? It works on a new file but that's it right-click - open with... - Window Builder editor

[gwt-contrib] Re: Make DynaTableRf use a ListEditor for the favorites. (issue888801)

2010-09-17 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/01/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Rename PlaceChangeRequesteEvent to PlaceChangeRequestedEvent (issue894801)

2010-09-17 Thread rice
Reviewers: rjrjr, Description: Rename PlaceChangeRequesteEvent to PlaceChangeRequestedEvent Please review this at http://gwt-code-reviews.appspot.com/894801/show Affected files: M user/src/com/google/gwt/app/place/ActivityManager.java D

[gwt-contrib] Re: Rename PlaceChangeRequesteEvent to PlaceChangeRequestedEvent (issue894801)

2010-09-17 Thread rjrjr
no suffix, please. It should be PlaceChangeRequest On 2010/09/17 16:32:11, rice wrote: http://gwt-code-reviews.appspot.com/894801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Rename PlaceChangeRequesteEvent to PlaceChangeRequestedEvent (issue894801)

2010-09-17 Thread דניאל רייס
Sorry, I took the lead from the pre-existing comment on line 35... Dan On Fri, Sep 17, 2010 at 12:36 PM, rj...@google.com wrote: no suffix, please. It should be PlaceChangeRequest On 2010/09/17 16:32:11, rice wrote: http://gwt-code-reviews.appspot.com/894801/show --

[gwt-contrib] Re: Get strong permutation from headers rather than serialized log record (issue880802)

2010-09-17 Thread unnurg
http://gwt-code-reviews.appspot.com/880802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8808 committed - Issue ROO-954: Support for transmitting stack traces for sever excepti...

2010-09-17 Thread codesite-noreply
Revision: 8808 Author: rchan...@google.com Date: Fri Sep 17 05:56:27 2010 Log: Issue ROO-954: Support for transmitting stack traces for sever exceptions. Review at http://gwt-code-reviews.appspot.com/886801 Review by: amitman...@google.com

[gwt-contrib] Re: Rename PlaceChangeRequesteEvent to PlaceChangeRequestedEvent (issue894801)

2010-09-17 Thread דניאל רייס
Fixed and re-uploaded. On Fri, Sep 17, 2010 at 12:36 PM, rj...@google.com wrote: no suffix, please. It should be PlaceChangeRequest On 2010/09/17 16:32:11, rice wrote: http://gwt-code-reviews.appspot.com/894801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8809 committed - Fix 1.5 compatibility in RequestFactoryExceptionHandlerServlet

2010-09-17 Thread codesite-noreply
Revision: 8809 Author: rj...@google.com Date: Fri Sep 17 07:07:03 2010 Log: Fix 1.5 compatibility in RequestFactoryExceptionHandlerServlet http://code.google.com/p/google-web-toolkit/source/detail?r=8809 Modified:

[gwt-contrib] [google-web-toolkit] r8810 committed - Make DynaTableRf use a ListEditor for the favorites....

2010-09-17 Thread codesite-noreply
Revision: 8810 Author: b...@google.com Date: Fri Sep 17 07:40:00 2010 Log: Make DynaTableRf use a ListEditor for the favorites. Fix potential NPE's in AED.Chain. Widen RequestFactoryEditorDriver's type bound to allow it to drive more than just EntityProxy types. Patch by: bobv Review by: rjrjr

[gwt-contrib] Extract a RequestTransport interface and DefaultRequestTransport implementation from RequestFactory. (issue890802)

2010-09-17 Thread bobv
Reviewers: rjrjr, Message: Review requested. Resolves ROO-1417. Description: Extract a RequestTransport interface and DefaultRequestTransport implementation from RequestFactory. This will allow end-users to have arbitrary control over the way RF communicates with the server. Patch by: bobv

Re: [gwt-contrib] Re: Get strong permutation from headers rather than serialized log record (issue880802)

2010-09-17 Thread Ray Ryan
Bob and Unnur, you're on a collision course between this and http://gwt-code-reviews.appspot.com/890802 On Fri, Sep 17, 2010 at 9:58 AM, unn...@google.com wrote: http://gwt-code-reviews.appspot.com/880802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --

[gwt-contrib] Re: Extract a RequestTransport interface and DefaultRequestTransport implementation from RequestFactory. (issue890802)

2010-09-17 Thread rjrjr
http://gwt-code-reviews.appspot.com/890802/diff/1/2 File user/src/com/google/gwt/requestfactory/client/DefaultRequestTransport.java (right): http://gwt-code-reviews.appspot.com/890802/diff/1/2#newcode98 user/src/com/google/gwt/requestfactory/client/DefaultRequestTransport.java:98:

[gwt-contrib] Re: Optimize ResourceOracle refresh by doing multiple oracles at the same time (issue887801)

2010-09-17 Thread conroy
http://gwt-code-reviews.appspot.com/887801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Rename PlaceChangeRequesteEvent to PlaceChangeRequestedEvent (issue894801)

2010-09-17 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/894801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Extract a RequestTransport interface and DefaultRequestTransport implementation from RequestFactory. (issue890802)

2010-09-17 Thread bobv
http://gwt-code-reviews.appspot.com/890802/diff/1/2 File user/src/com/google/gwt/requestfactory/client/DefaultRequestTransport.java (right): http://gwt-code-reviews.appspot.com/890802/diff/1/2#newcode98 user/src/com/google/gwt/requestfactory/client/DefaultRequestTransport.java:98:

[gwt-contrib] [google-web-toolkit] r8811 committed - Rename PlaceChangeRequesteEvent to PlaceChangeRequestEvent...

2010-09-17 Thread codesite-noreply
Revision: 8811 Author: r...@google.com Date: Fri Sep 17 09:11:27 2010 Log: Rename PlaceChangeRequesteEvent to PlaceChangeRequestEvent Review at http://gwt-code-reviews.appspot.com/894801 Review by: rj...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8811 Added:

[gwt-contrib] Re: Optimize ResourceOracle refresh by doing multiple oracles at the same time (issue887801)

2010-09-17 Thread conroy
http://gwt-code-reviews.appspot.com/887801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Extract a RequestTransport interface and DefaultRequestTransport implementation from RequestFactory. (issue890802)

2010-09-17 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/890802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Optimize ResourceOracle refresh by doing multiple oracles at the same time (issue887801)

2010-09-17 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/887801/diff/19001/11 File dev/core/src/com/google/gwt/dev/resource/impl/ResourceOracleImpl.java (right): http://gwt-code-reviews.appspot.com/887801/diff/19001/11#newcode187 dev/core/src/com/google/gwt/dev/resource/impl/ResourceOracleImpl.java:187:

[gwt-contrib] [google-web-toolkit] r8812 committed - Extract a RequestTransport interface and DefaultRequestTransport imple...

2010-09-17 Thread codesite-noreply
Revision: 8812 Author: gwt.mirror...@gmail.com Date: Fri Sep 17 12:21:10 2010 Log: Extract a RequestTransport interface and DefaultRequestTransport implementation from RequestFactory. This will allow end-users to have arbitrary control over the way RF communicates with the server. Patch by:

[gwt-contrib] [google-web-toolkit] r8813 committed - Re-roll issue 887801. Update the embedded Tomcat server and don't let ...

2010-09-17 Thread codesite-noreply
Revision: 8813 Author: con...@google.com Date: Fri Sep 17 13:02:11 2010 Log: Re-roll issue 887801. Update the embedded Tomcat server and don't let callers accidentally refresh 0 oracles. *** Original change description *** Optimize ResourceOracle refresh by doing multiple oracles at the same