Re: Unable to deploy GWT updates

2011-05-12 Thread David Chandler
Yes, there was an issue with Google Apps accounts in GPE 2.3.0. Can you update the plugin and try again? It should be fixed in 2.3.1, but some folks are still reporting problems. Thanks, /dmc On Wed, May 11, 2011 at 10:46 PM, Owen Ilagan oila...@systemacorp.comwrote: I just had a thought,

Using servlet with GWT application in eclipse designer

2011-05-12 Thread Hugues Aubuchon
I have a gwt client app that need to call a servlet to get the data. The call to the servlet need to be inside the same server because of browsers security feature. I can figure out how to do it in production mode, but I want to do it also in development mode to avoid compiling the app for every

Re: Workaround for Embedded objects

2011-05-12 Thread Hamzeh
I am not sure, but try: public enum PermissionEnum implements Serializable{ ... On May 11, 5:23 pm, Jerome Thoma thoma...@googlemail.com wrote: Could you please provide more information on using enums? I am trying to use a custom enum type: public enum PermissionEnum{ ...} in an EntityProxy

Disabling Symbol Maps?

2011-05-12 Thread davekor
My Google AppEngine+GWT application has grown so large that the generated GWT .symbolMap files are now 11mb to 12mb in size. Unfortunately, AppEngine supports a maximum file size of up to 10MB, and refuses to let me deploy the my app to the GAE servers. I understand that the .symbolMap files are

Re: GWT/GPE 2.3 unable to sign in with Google Apps account

2011-05-12 Thread jpenninkhof
Alex, this doesn't seem to work for me too... Same error message: The scope parameter was bad or missing. GPE 2.3.1 is available and has the fix for signing into Google Apps accounts:http://dl.google.com/eclipse/plugin/3.6Please let us know if this doesn't fix the problem. -- You received

Problem in sending large size of data from GWT client to server by cross domain scripting

2011-05-12 Thread Renee Lau
Dear All, I have followed the tutorial and the application is able to make cross site communication with GET request and query string in the URL. However, one of the function of my application is to send the XML String to the server from the GWT client in cross domain environment. The GET

Re: Using -compileReport and JUnit

2011-05-12 Thread Raphael André Bauer
On Wed, May 11, 2011 at 10:48 PM, chris.ruffalo chris.ruff...@gmail.com wrote: I'm working on a GWT extension library and would like to get a compile report.  My project is just an adjunct to GWT and doesn't have any UI.  I will be creating samples when the library is finished but the bulk of

Re: GWT Validator with Editor Framework

2011-05-12 Thread dm.shodan
Have anybody realized how editors and jsr 303 validation work with GWT 2.3 coming? Validation API was add to gwt sdk. But when I try to make validation like in keyvez ...@gmail.com example code, the rezult is the same he errors are never thrown from client side or server side. Thank for any

Re: Problem in sending large size of data from GWT client to server by cross domain scripting

2011-05-12 Thread Thomas Broyer
There are tricks using a hidden form (FormPanel in GWT), but well, they're a bit hackish... (what's hackish is communicating the result back to your app: you have to send a redirect to a page that's the same origin as the app, and this will call 2 FormPanel.SubmitEvent to be fired; or you could

Re: new browser window without menu toolbars?

2011-05-12 Thread Gary Rich
Magnus, Have you considered using a GWT DialogBox instead of a new browser window? This can easily be populated with programmatically generated html or from a UiBinder template and needs no url. The default project generated by the Google Plugin for Eclipse provides a good example. Gary --

GWT Activity - Places = DialogBox ?

2011-05-12 Thread Bertrand
Hi guys, I'm trying to use the GWT Activity Place model, but I'm having some troubles with it about how to use my activities. I've got a LoginActivity which drives the user to another activity : DemandsActivity. My DemandsActivity manages a view (DemandsView) which displays a simple list of

Can GPE automatically generate EntityProxy for Entity types? Similar to UiBinder wizard.

2011-05-12 Thread -sowdri-
Hi, Can this feature be implemented? If yes, how to raise a request to the GPE team?? This could save a lot of time and boilerplate code. Thanks, -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Speeding up RPC response

2011-05-12 Thread Carlos
hello, am using String[] as returned type all the RPC calls and sometimes this array of strings is of size 3000 which makes it somehow slow, it takes over 5 to 6 sec i used Liststring and it didn't make any differences. The object am using in the server side is not serializable so i can't send it

Re: Using servlet with GWT application in eclipse designer

2011-05-12 Thread khiem nguyen
there's a http packet (client-side) when u can create http-request ( i think RequestBuilder ) to your server, u can then get/post... handle response from client side. On Thu, May 12, 2011 at 5:45 AM, Hugues Aubuchon haubuc...@gmail.comwrote: I have a gwt client app that need to call a servlet

Re: Can GPE automatically generate EntityProxy for Entity types? Similar to UiBinder wizard.

2011-05-12 Thread Thomas Broyer
Isn't that what's coming in the 2.4 version? From the announcementhttp://googlewebtoolkit.blogspot.com/2011/05/android-meet-app-engine-app-engine-meet.html : You specify the model objects that will be used between client and server, and GPE generates the RPC service, DTOs, and client-side

How can I create a singleton server side to handle embedded db transactions

2011-05-12 Thread John Doran
Hi all, I'm using GWT with neo4j, its an embedded graph db. It working well but because its embedded only one client can work with it at a time(cant create a connection to it while in use). I was thinking of a work around to have one class server side that can handle this instance. I'm using RPC

Best practice for implementing an active field

2011-05-12 Thread Jambi
Hey guys, maybe you have a good solution for this. I have a menu with some image buttons that have three different states: Inactive, hover, active. The activity or presenter to the corresponding button should trigger their own button to active and the active buttons should not be triggered

Re: Can GPE automatically generate EntityProxy for Entity types? Similar to UiBinder wizard.

2011-05-12 Thread -sowdri-
That's wonderful, Thanks Thomas! -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: Data-binding, Konckout.js

2011-05-12 Thread Artem Nikulchenko
We are using Editors a lot. And they are coll (at least much cooler than it was before). But they are still far way from full data binding as shown in Knockout.js (or as it's done in Silverlight). I'm not a fan of Silverlight and hope that GWT would remove all this plug-ins soon, but watching GWT

Add a ValueChangeHandler to an Editor

2011-05-12 Thread Ido
Hi, Is it possible to add a ValueChangeHandler to an Editor? Thanks a lot, Ido -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send

ListEditor broken in GWT 2.3

2011-05-12 Thread -sowdri-
Dear All, Actual code reduced to demonstrate the problem. // widget public interface LocationPrefEditView extends IsWidget, EditorLocationPrefProxy, HasMask, HasPresenterPresenter, HasVisibility { ValueListBoxString state(); ValueListBoxString city(); // .. omitted

Re: really nice - NOT: new gpe seems to completely break gwt designer

2011-05-12 Thread cri
This was not my problem since I did not have GWT Designer 8.1.x installed. And, the first thing I did to attempt to correct the problem was to go into installed software and uninstalled all GWT / WindowBuilder components. After I restarted Eclipse, I still had the same problem. At point, I

Java Developer with Banking Exp

2011-05-12 Thread Kevin
Hi All Location : west des moines, IA Duration : 6+months 8+ years of hands-on java web application development experience Must have excellent communication skills 6+ years of extensive Spring experience, including knowledge of most features of this framework 6+ years of extensive

R: Re: IE8 shows only my application's first page

2011-05-12 Thread Alessio unibs
Someone can help me? -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

QA Analyst with Banking Exp

2011-05-12 Thread Kevin
Hi All Position: QA Analyst Location: Chandler, AZ Duration: 7 months contract (plus possibility of extension) Position Description: · Position will be only QA resource for a new project/development effort building out a web-based recognition application with back end approval

Static HTML page, do I have to use absolute positioning?

2011-05-12 Thread Chris
One issue I am having with GWT is that I know have some non-GWT elements within my HTML page, i.e. an HTML 5 canvas, some random divs and so forth...I'm finding that I *must* absolute position these elements...otherwise they will never be positioned correctly. The absolute positioning is mucking

Re: Speeding up RPC response

2011-05-12 Thread matttai
Hi Carlos, What is the object types that you are returning from the server? If possible try breaking up the object and return only the fields that you need eg. If you have 3000 Person objects and you only require their firstName + LastName only, then populate only those fields on query or create

Re: Best practice for implementing an active field

2011-05-12 Thread matttai
Hi Michael, I can't think of an approach using CSS, but if I were to attack this I'd try to use either an ImageButton or an Image widget. Both widgets support mouseOverHandlers which would cover handling your hover state, whilst you can toggle the appearance of an active/inactive state with

Re: Speeding up RPC response

2011-05-12 Thread Steve
No matter what you do, if you're getting a large amount of data from the server it's going to take time to transfer the data *and* to have the data transformed into client-usable code. There are a couple of ways we've gotten around long server calls -- First of all, as mattai says, if you know

Re: IE8 shows only my application's first page

2011-05-12 Thread Steve
On May 11, 7:53 am, Alessio unibs cecchia...@libero.it wrote: GoodMorning everybody. I'm using GWT 2.0.4 and in IE8 appears only my application's first page and when i click on a button, IE8 shows a white page and in the bottom-left corner shows a signal error. What can i do? Thanks in

Re: Custom Clickable Cell with CellTable

2011-05-12 Thread matttai
Hi Adam, What exactly is it that you are trying to achieve by doing this? If you wish to find the cell that was clicked and manipulate it you can also do it this way : Add clickHandler to table/grid Call getSource() on received clickEvent Cast source to grid/flextable Call

Thanks GWT Devs

2011-05-12 Thread Jeff Larsen
Thanks so much for all the great talks at io this year. I didn't get to see all of them in person, but everyone that I saw was fantastic. I learned something new in each one. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: MouseMove Events for CellTable / FlexTable

2011-05-12 Thread matttai
Maybe attach the handler to the table and get the cell source when the event is triggered. Get the row index from the returned cell, remove all highlight style from the table and add a highlight style to the row. Not sure how efficient this would be though given the event would need to be

Re: really nice - NOT: new gpe seems to completely break gwt designer

2011-05-12 Thread Eric Clayberg
Based on your description and the error, it sounds like you had some prior version installed. Those release notes apply to any earlier (pre 8.1.x) versions of GWT Designer / WindowBuilder as well. On May 12, 6:27 am, cri chuck.irvine...@gmail.com wrote: This was not my problem since I did not

Re: MouseMove Events for CellTable / FlexTable

2011-05-12 Thread Boris Lenzinger
Hi, I had found something like about this on the internet. The following code is some hint on how to do this. Boris class Table extends FlexTable { private String headerStyle = nostyle; public Table(TableDataSource source, String stylePrefix) { super(); this.setCellPadding(1);

Re: MouseMove Events for CellTable / FlexTable

2011-05-12 Thread SVR
I actually ended up using addCellPreviewHandler of the celltable to add a CellPreviewEvent.Handler for the table. thanks On Thu, May 12, 2011 at 11:21 AM, Boris Lenzinger boris.lenzin...@gmail.com wrote: Hi, I had found something like about this on the internet. The following code is some

UiBinder and child HTML 'widgets'

2011-05-12 Thread Geoffrey Wiseman
Just to give a little background, I've been doing GWT for a while, but I'm pretty new to UiBinder. I'm starting to fold it in to some of the GWT work I'm doing, and I certainly like some aspects of it. I'm building a page with a lot of repeating display elements that don't require any events (a

Re: GPE 3.6, breaks again for UIBinder files

2011-05-12 Thread mats
On 12 Mai, 04:57, John Gentilin gent...@gmail.com wrote: Seems that while initializing GWT Development Mode, it has a problem finding my entry point class.. It's there right where it thinks it should be.. I have the same problem while initializing GWT Designer. Building from Ant buildfile

GWT Module does not start

2011-05-12 Thread Marcus
Hello since two days I'm not able to start my gwt app. I would like to give you some error messages, but there are no error messages. Everything compiles fine. The server launches without a single error message. So everything seems ok, but when U call the URL of the host page, the gwt module does

pass variable from JavaScript to GWT

2011-05-12 Thread donnerhall
Hello, i got a small question that really puts me under pressure because I'm unable to solve the problem: I am using JavaScript which gives me a String and I wanna use this value in GWT for my methods, e.g. in Java. To do so, I've written a method in GWT that looks like that: --- String a = ;

GWT + Google Gears

2011-05-12 Thread Karen
We have an application on the cloud using AppEngine + GWT. We want give an option to our users to use it when acess to internet is not avaible temporarily. They continious using system even when internet is broken. After that, system has to synchronize with AppEngine. Contact if you are

Restrict the date format in the DateBox

2011-05-12 Thread Raji
Hi , I am using GWT 2.2 Datebox. My code is as follows DateBox dateBox = new DateBox(); dateBox.setFormat(new DateBox.DefaultFormat(DateTimeFormat.getFormat(ddMMMyy) )); Right now if i enter date like 02/03/2011 it is converted in to 03Feb11. But my requirement is if the user enters date

CellTree - How to show root node?

2011-05-12 Thread Renato Beserra
Hi, I have a problem with the CellTree Widget. The thing is I followed the example at http://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/user/cellview/client/CellTree.html and it works ok. But the widget has a blank space at the top, due to the hidden root node. So my first

Need a tool to find out client side coverage .

2011-05-12 Thread Abhijit Rai
Hi all, Had a query regarding code coverage for the client packages of GWT, would really appreciate anyone could help out. I have a client heavy application ( J2EE , GWT ) having 500K lines client code. We want to automate our test cases and we need to test the code coverage for these 500K lines

DateBox converts the invalid date automatically

2011-05-12 Thread Raji
Hi, I am using GWT 2.2 DateBox component in my application. In that if i enter the invalid date such as 30 Feb, 2011 it is converted in to March 2, 2011 automatically. I want to remove this feature. Instead if enter 30 Feb, 2011 the DateBox component should throw error. Can anyone help me out

Re: Thanks GWT Devs

2011-05-12 Thread nino ekambi
Is it possible to see the talks somewhere online ? 2011/5/12 Jeff Larsen larse...@gmail.com Thanks so much for all the great talks at io this year. I didn't get to see all of them in person, but everyone that I saw was fantastic. I learned something new in each one. -- You received this

Re: Thanks GWT Devs

2011-05-12 Thread David Chandler
We'll have all the talks and slides up by the end of the week and I'll post back then. /dmc On Thu, May 12, 2011 at 9:31 AM, nino ekambi jazzmatad...@googlemail.comwrote: Is it possible to see the talks somewhere online ? 2011/5/12 Jeff Larsen larse...@gmail.com Thanks so much for all the

Re: GWT/GPE 2.3 unable to sign in with Google Apps account

2011-05-12 Thread David Chandler
Thanks for the updates, everyone. The GPE team is looking into this. /dmc On Wed, May 11, 2011 at 10:25 AM, jpenninkhof j...@penninkhof.com wrote: Alex, this doesn't seem to work for me too... Same error message: The scope parameter was bad or missing. GPE 2.3.1 is available and has the

Re: commnication from jsp to client side code of gwt

2011-05-12 Thread Paul Stockley
Check this post I made https://groups.google.com/forum/#!searchin/google-web-toolkit/author:Paul$20Stockley/google-web-toolkit/BsQui2kesRI/3KLATnRav1AJ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Thanks GWT Devs

2011-05-12 Thread nino ekambi
Nice David. Danke ! :) 2011/5/12 David Chandler drfibona...@google.com We'll have all the talks and slides up by the end of the week and I'll post back then. /dmc On Thu, May 12, 2011 at 9:31 AM, nino ekambi jazzmatad...@googlemail.comwrote: Is it possible to see the talks somewhere

Re: GPE 3.6, breaks again for UIBinder files

2011-05-12 Thread cri
This sounds very similar to a problem that I was having getting GWT Designer to come up. Try deleting the Google plugins then do a search of your workspace .plugins directory for any file having google in its filename. If you find any delete them. Then re-install the google plugins and try again.

Re: UiBinder and child HTML 'widgets'

2011-05-12 Thread Thomas Broyer
What I don't understand is why Stat is not a Widget if you want to use it like a Widget. -- 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-toolkit@googlegroups.com. To unsubscribe from this

Re: Empty Response From HTTP Request

2011-05-12 Thread A. Stevko
Hi Nick, Are you saying that the server response is empty or that RequestBuilder does not recognize the response? If its the former, the server is not recognizing something in the request like the browser code headers. If its the latter, then I would compare the content-type and formatting of the

Style in the Stockwatcher example

2011-05-12 Thread Bill
In Step 7: Apply Style for the Stockwatcher example it states: iWhen you created the StockWatcher application, webAppCreator generated the application style sheet (StockWatcher.css) and added a pointer to it in the module XML file (StockWatcher.gwt.xml)./i Is this correct? It appears the

Re: UiBinder and child HTML 'widgets'

2011-05-12 Thread Gal Dolber
In real its ok what you are doing(in theory Widget should be used only when you need events), but the truth is that gwt's panels don't have any support for UiObjects so you need to use Widget. On Thu, May 12, 2011 at 10:07 AM, Thomas Broyer t.bro...@gmail.com wrote: What I don't understand is

is there a way i can get the gwt documentation as offline file?

2011-05-12 Thread Elhanan
i would like to print it, so i can read it more comfortably.. -- 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to

How to disable drag and top on mouse move over image?

2011-05-12 Thread erebrus
Hi, I'm doing a widget to allow the user to crop an image. I have an image in an absolute panel, and then a box on top that indicates the area to crop. I want the user to be able to move the mouse and move the crop box around. However, since there is an image behind, what I get instead is the

HasEditorErrors and HasDataEditor

2011-05-12 Thread Tim
Hi, I'm using the editor framework in my application and enjoying the automatic propagation of errors. However, some of my sub-editors are CellTable based HasDataEditors which aren't implementing HasEditorErrors. Here's an example of how I'm defining an editor for a list of Phone numbers:

Re: How to disable drag and top on mouse move over image?

2011-05-12 Thread Cristiano
on the html's img tag put onmousedown=return false; On 12 Mag, 20:10, erebrus ereb...@gmail.com wrote: Hi, I'm doing a widget to allow the user to crop an image. I have an image in an absolute panel, and then a box on top that indicates the area to crop. I want the user to be able to move

Re: UiBinder and child HTML 'widgets'

2011-05-12 Thread Geoffrey Wiseman
On May 12, 1:07 pm, Thomas Broyer t.bro...@gmail.com wrote: What I don't understand is why Stat is not a Widget if you want to use it like a Widget. [nod] I've changed it to being a widget in the meantime. Basically, I need a reusable piece of display content, but it doesn't need any events,

Re: UiBinder and child HTML 'widgets'

2011-05-12 Thread Geoffrey Wiseman
On May 12, 1:22 pm, Gal Dolber gal.dol...@gmail.com wrote: In real its ok what you are doing(in theory Widget should be used only when you need events), but the truth is that gwt's panels don't have any support for UiObjects so you need to use Widget. So even HTMLPanel can't easily absorb HTML

Re: How to disable drag and top on mouse move over image?

2011-05-12 Thread erebrus
And since I'm creating the image progamatically (new Image()), how to I add a tag to the html? On May 12, 8:10 pm, Cristiano cristiano.costant...@gmail.com wrote: on the html's img tag put onmousedown=return false; On 12 Mag, 20:10, erebrus ereb...@gmail.com wrote: Hi, I'm doing a

Re: Using -compileReport and JUnit

2011-05-12 Thread chris.ruffalo
I solved it by making an empty sample project. I figured that since the JUnit compilation was happening that there would be some way to interface with the compiler under it. Chris On May 12, 4:01 am, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Wed, May 11, 2011 at 10:48 PM,

Re: gwt memory leak ?

2011-05-12 Thread khiem nguyen
i patched the released version 2.3.0 with the second patchset ( not the first one for WeakMap), refactored the code to use the new requestfactory package (which is now in gwt.web.bindary...), i dont get OutOfMemoryException anymore but the load test leads to jvm-crashed (with 100%cpu load).

Re : Re: UiBinder and child HTML 'widgets'

2011-05-12 Thread Thomas Broyer
It's not HTML vs. Widget, it's innerHTML vs. DOM's document.createElement/appendChild. So in GWT, as soon as you start making reusable components, you're breaking the innerHTML layer and have to introduce a Widget. The point of HTML vs. Widget is: don't use FlexTable/Grid/FlowPanel for layout

Problem passing a SetValueProxy as a parameter in RequestFactory?

2011-05-12 Thread Eric Andresen
I have an application that creates a SetMyClassProxy (a ValueProxy), and sends that set across the wire using the RequestFactory. When I add 3 distinct elements into the set and fire the context, I only get one item in the set on the server side. What is interesting is that I can see my

Re: GPE 3.6, breaks again for UIBinder files

2011-05-12 Thread John Gentilin
I went one step further and deleted both my Eclipse Workspace dirs then reinstalled with no luck.. @cri, I think I had the same problem as you when I first upgraded to 2.3, but my brute force reinstall of eclipse fixed it. This problem only came in with the latest 5/9 release. What GPE version

Re: pass variable from JavaScript to GWT

2011-05-12 Thread gpike
If I understand your question correctly, you want to use a value that has been populated by JavaScript then it should be as simple as: public final native String getValue() /*-{ return $wnd.a; }-*/; but if you are wanting to pass the value to the JavaScript then it would be like: public

Re: Empty Response From HTTP Request

2011-05-12 Thread Nick Apperley
Every time a request is made with RequestBuilder an empty response is returned from the server. If the request is made using just the web browser in an empty tab a non empty response is returned from the server that is displayed directly (in Firefox). With the latter the expected response is

Re: Empty Response From HTTP Request

2011-05-12 Thread Nick Apperley
What is really weird is that the timeouts are occurring with making a request via JsonRequestBuilder yet the Glassfish server has received the request successfully. I have been digging through the Glassfish server logs and found an identical set of entries for 2 requests that were made (one from

GWT/Tomcat and java.lang.NoClassDefFoundError!

2011-05-12 Thread ramoq
I am trying to use some of the objects in the catalina.jar in tomcat (ie. HTTPRequest, Realm.java, ... you get the idea) however, I always get a NoClassFoundException error. Code complies correctly,the gwt app (war file) is deployed with no errors. I get this when trying to use any of the

Re: RequestFactoryEditorDriver example?

2011-05-12 Thread -sowdri-
Dear All, Actual code reduced to demonstrate the problem. // widget public interface LocationPrefEditView extends IsWidget, EditorLocationPrefProxy, HasMask, HasPresenterPresenter, HasVisibility { ValueListBoxString state(); ValueListBoxString city(); // .. omitted

Re: Custom Clickable Cell with CellTable

2011-05-12 Thread Adam
Matt thanks for the response. By default the celltable wires up click events for the cell (aka div). The problem is when I click on any text in the table/ table it's swallowing the click event and therefore the celltable is never notified that I clicked in the cell. Here's an example of what

Re: Empty Response From HTTP Request

2011-05-12 Thread A. Stevko
Can you at least see the size of the response like in an apache log file? Try using FireBug's Net Panel to see the request/response size/duration. On Thu, May 12, 2011 at 4:25 PM, Nick Apperley napper...@gmail.com wrote: What is really weird is that the timeouts are occurring with making a

[gwt-contrib] Re: Rescues cached entries from jar files that are the same, save for the timestamp. (issue1441803)

2011-05-12 Thread zundel
http://gwt-code-reviews.appspot.com/1441803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Autoformats user/super and user/test-super (issue1442805)

2011-05-12 Thread zundel
Reviewers: rjrjr, scottb, Description: Autoformats user/super and user/test-super Please review this at http://gwt-code-reviews.appspot.com/1442805/ Affected files: M user/super/com/google/gwt/benchmarks/translatable/com/google/gwt/benchmarks/client/Benchmark.java M

[gwt-contrib] Re: Autoformats user/super and user/test-super (issue1442805)

2011-05-12 Thread rjrjr
http://gwt-code-reviews.appspot.com/1442805/diff/1/user/super/com/google/gwt/benchmarks/translatable/com/google/gwt/benchmarks/client/Benchmark.java File user/super/com/google/gwt/benchmarks/translatable/com/google/gwt/benchmarks/client/Benchmark.java (right):

[gwt-contrib] Re: Autoformats user/super and user/test-super (issue1442805)

2011-05-12 Thread zundel
http://gwt-code-reviews.appspot.com/1442805/diff/1/user/super/com/google/gwt/benchmarks/translatable/com/google/gwt/benchmarks/client/Benchmark.java File user/super/com/google/gwt/benchmarks/translatable/com/google/gwt/benchmarks/client/Benchmark.java (right):

[gwt-contrib] Re: Autoformats user/super and user/test-super (issue1442805)

2011-05-12 Thread Eric Ayers
I had to drag Alex into this. I thought I'd move the process along by mass formatting from eclipse UI on the package or project level, but that also skips our GWT specific tweaks. On Thu, May 12, 2011 at 12:24 PM, zun...@google.com wrote:

[gwt-contrib] Re: Removing the recently added RPC test for LogRecord, as it seems to (issue1447803)

2011-05-12 Thread Unnur Gretarsdottir
Hmmm - that link doesn't work for me - did this issue get reverted? On Wed, May 11, 2011 at 1:02 PM, schen...@google.com wrote: Reviewers: unnurg, Description: Removing the recently added RPC test for LogRecord, as it seems to cause more problems than it is worth. Please review this at

[gwt-contrib] Re: Rescues cached entries from jar files that are the same, save for the timestamp. (issue1441803)

2011-05-12 Thread zundel
http://gwt-code-reviews.appspot.com/1441803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Misc gwtc cleanups (issue1446802)

2011-05-12 Thread zundel
LGTM http://gwt-code-reviews.appspot.com/1446802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Rescues cached entries from jar files that are the same, save for the timestamp. (issue1441803)

2011-05-12 Thread scottb
LGTM w/nits, no need to re-review. http://gwt-code-reviews.appspot.com/1441803/diff/3010/dev/core/src/com/google/gwt/dev/javac/CachedCompilationUnit.java File dev/core/src/com/google/gwt/dev/javac/CachedCompilationUnit.java (right):

[gwt-contrib] [google-web-toolkit] r10179 committed - Misc gwtc cleanups....

2011-05-12 Thread codesite-noreply
Revision: 10179 Author: sco...@google.com Date: Thu May 12 10:09:08 2011 Log: Misc gwtc cleanups. http://gwt-code-reviews.appspot.com/1446802/ Review by: zun...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10179 Modified:

[gwt-contrib] [google-web-toolkit] r10180 committed - Rescues cached entries from jar files that are the same, save for the ...

2011-05-12 Thread codesite-noreply
Revision: 10180 Author: zun...@google.com Date: Thu May 12 10:40:46 2011 Log: Rescues cached entries from jar files that are the same, save for the timestamp. Also updates the key value used for the cache to include the prefix for RerootedResource instances. Review at

[gwt-contrib] Adding additional testing for GWT RPC. Some custom serialized objects (issue1441804)

2011-05-12 Thread schenney
Reviewers: unnurg, Description: Adding additional testing for GWT RPC. Some custom serialized objects were previously untested, at least explicitly. Testing put in place now provides coverage to test future changes. Please review this at http://gwt-code-reviews.appspot.com/1441804/ Affected

[gwt-contrib] Re: Adding additional testing for GWT RPC. Some custom serialized objects (issue1441804)

2011-05-12 Thread tobyr
http://gwt-code-reviews.appspot.com/1441804/diff/1/user/test/com/google/gwt/user/client/rpc/LoggingRPCTest.java File user/test/com/google/gwt/user/client/rpc/LoggingRPCTest.java (right):

[gwt-contrib] Enables on the persistent unit cache by default. (issue1448801)

2011-05-12 Thread zundel
Reviewers: tobyr, scottb, jbrosenberg, Description: Enables on the persistent unit cache by default. Please review this at http://gwt-code-reviews.appspot.com/1448801/ Affected files: M dev/core/src/com/google/gwt/dev/javac/UnitCacheFactory.java Index:

[gwt-contrib] Re: Enables on the persistent unit cache by default. (issue1448801)

2011-05-12 Thread zundel
I know the paint is still drying on the last patch I submitted for the Persistent Unit Cache, but no real problems have been reported in... weeks! I think its ready to be on by default. http://gwt-code-reviews.appspot.com/1448801/ --

[gwt-contrib] Re: Adding additional testing for GWT RPC. Some custom serialized objects (issue1441804)

2011-05-12 Thread schenney
http://gwt-code-reviews.appspot.com/1441804/diff/1/user/test/com/google/gwt/user/client/rpc/LoggingRPCTest.java File user/test/com/google/gwt/user/client/rpc/LoggingRPCTest.java (right):

[gwt-contrib] Re: Enables on the persistent unit cache by default. (issue1448801)

2011-05-12 Thread Scott Blum
SGTM. At some point I'll have to deal with versioning for the embedded GWT ASTs, but I can burn that bridge when I come to it. On Thu, May 12, 2011 at 6:48 PM, zun...@google.com wrote: I know the paint is still drying on the last patch I submitted for the Persistent Unit Cache, but no real

[gwt-contrib] Fix checkstyle 'info' warnings (issue1446803)

2011-05-12 Thread rice
Reviewers: rjrjr, Description: Fix checkstyle 'info' warnings Please review this at http://gwt-code-reviews.appspot.com/1446803/ Affected files: M dev/core/src/com/google/gwt/core/linker/SimpleAppCacheLinker.java M dev/core/src/com/google/gwt/dev/javac/CompilationProblemReporter.java M

[gwt-contrib] [google-web-toolkit] r10181 committed - Fix checkstyle 'info' warnings...

2011-05-12 Thread codesite-noreply
Revision: 10181 Author: gwt.mirror...@gmail.com Date: Thu May 12 17:18:09 2011 Log: Fix checkstyle 'info' warnings Review at http://gwt-code-reviews.appspot.com/1446803 Review by: rj...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10181 Modified:

[gwt-contrib] Experimental attempt to add EventBus support to Widgets (issue1447804)

2011-05-12 Thread rice
Reviewers: rjrjr, Description: Experimental attempt to add EventBus support to Widgets Modify the MobileWebApp sample to use the new feature Please review this at http://gwt-code-reviews.appspot.com/1447804/ Affected files: M