UIBinder Loading Panel

2010-03-29 Thread JB70
Hi, This is another newbie question. I have set up a left navigation panel and would like to know how to display a panel when a link is clicked? I want to display the FormPanel when a validation link is clicked on the left panel.Thanks for your answers. !DOCTYPE ui:UiBinder SYSTEM

notification of server side shutdown within Servlet

2010-03-29 Thread Hamlet D'Arcy
I need to be notified when the server side of my GWT application is shutting down . Specifically, one of my RemoteServiceServlet subclasses is initializing a resource that must be properly released when the system shuts down (an ehcache cache to be exact). In other frameworks I have used, I was

Re: notification of server side shutdown within Servlet

2010-03-29 Thread Muhammad Saifullah
Every servlet is HttpServlet so destroy() method resides in HttpServlet. so you need to override that destroy() in your class and before shutting down of your application server instruction pointer of VM automatically enters into the overrided destroy() method and if you write resource cleaning

Re: Few Openings in UI

2010-03-29 Thread Ralf B
Details? On Mon, Mar 29, 2010 at 5:56 AM, sridevi macherla sridevimache...@gmail.com wrote: Hi, Few openings in User Interface on Java/J2EE in my organization, anyone willing to relocate to bangalore and are interested.  Can send me their resumes at the earliest. Profile: Exp 4+ UI:

Re: panel set width with percentage

2010-03-29 Thread Pondmouse
I haven't used % with those widgets before, but if you can't do it why not try get the browser Window.getClientWidth() and then fire a resize event to keep sizes in check On Mar 27, 5:21 pm, kozura koz...@gmail.com wrote: Try using one of the new LayoutPanels rooted in RootLayoutPanel, these

Re: Session management in GWT

2010-03-29 Thread olivier nouguier
Hi, Do you mean I GWT (ui) code when talk in admindashboard.jsp. If true: provide a service (GWT-RPC/json) to retrieve information from. else: not a GWT question. On Mon, Mar 29, 2010 at 6:20 AM, Vik vik@gmail.com wrote: Hie I have a index.html page with a login module (build in gwt)

Re: Object nog in gwt.rpc file?

2010-03-29 Thread Ed
Thanks for the idea Kozura. I just solved the issue after spending staring at the issue more and more... The problem was quite simple, I was just looking in the wrong direction. One of the nested-nested-nested association of Administrator wasn't implementing Serializable. Because of lack of

Safari Windows takes 100% on example page

2010-03-29 Thread mably
Hi everybody, Does anyone know why Safari on Windows takes 100% CPU when displaying this simpe example page : http://gwt.google.com/samples/Showcase/Showcase.html I've the same problem on my GWT 2.0 application, it's quite annoying for my Safari users. Is Safari on Windows not fully compatible

getCookie() doesn't find a cookie set in the RPC Servlet

2010-03-29 Thread Paul
I'm setting a cookie in my GWT RPC Servlet: public class NiueRpcServiceImpl extends RemoteServiceServlet implements NiueRpcService { javax.servlet.http.Cookie c = new Cookie(SessionId, ); c.setValue(1234); c.setMaxAge(-1); HttpServletResponse

RE: Few Openings in UI

2010-03-29 Thread Manish Kumar
Hi Sri Could I please know a bit more detailed information on the requirement and about the company? Regards Manish From: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of sridevi macherla Sent: Monday, March 29, 2010 10:26 AM To:

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Ian Bambury
It's OK on my machine What versions are you running? Ian http://examples.roughian.com On 29 March 2010 11:44, mably fm2...@mably.com wrote: Hi everybody, Does anyone know why Safari on Windows takes 100% CPU when displaying this simpe example page :

Re: Few Openings in UI

2010-03-29 Thread sridevi macherla
Hi Manish, This openiings for Java 4- 8 years of experience and GWT would be much more advantage. for Netapp bangalore. bye On Mon, Mar 29, 2010 at 10:54 AM, Manish Kumar man...@oakdeneindia.comwrote: Hi Sri Could I please know a bit more detailed information on the requirement and

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Francois MASUREL
Hi Ian, thanx for your answer. I'm running Safari for Windows v4.0.5 on Windows XP SP3 (I have the same pb at home on Vista). The page loads fine, but the wheel on the right of the address bar keeps running and CPU goes up to 100%. Some javascript seems to be looping indefinitely, I can pause

Re: Blur before click

2010-03-29 Thread Subhrajyoti Moitra
some mouse over/out listeners on the popup so you know if the mouse is inside of it, and set a flag so you know not to hide it if the mouse is in it. Then maybe also hide it separately when the user makes a selection.. Thanks for this tip. this idea got the job done and more. thanks again!!

Re: Few Openings in UI

2010-03-29 Thread Ralf B
Amazing. I think I will take it, I don't need to know about anything about your project -- if you have one -- logistics, pay, company/team information etc. I guess for you its enough to tell that you have a job and an internet connection. Good luck! :D Ralf On Mon, Mar 29, 2010 at 1:25 PM,

Internationalization via GWT

2010-03-29 Thread zizou84
Hi I would like to use gwt intrernationalization i have succeded to use Static String Internationalization method and i have added in my HTML page meta id=langue name=gwt:property content=locale=fr Now , i would like to change the language from my login page;I have added in my login form a

Re: Can someone brief out about MVP

2010-03-29 Thread gengstrand
In MVC, the model is heavy with business rules and data access, the view contains the presentation logic, and the controller is typically a framework component with an XML configuration to drive it. In MVP, the model is lightweight POJO value objects, the view is mockable, and the presentation is

Re: Modifying gwt-user.jar

2010-03-29 Thread rvd
Well, I almost have it right. I downloaded the 1.4 version from http://google-web-toolkit.googlecode.com/svn/releases/1.4 but doing so introduced a bug that had been removed by 1.4.62. So, what version did I actually compile by downloading and compiling from the 1.4 version tree.? Should it

PagingScrollTable running example please???

2010-03-29 Thread crojay78
Hi, I am searching for a running example for PagingScrollTable from incubator project. Can somebody provide me something, for me its always easier to understand the stuff by playing a bit with the code. I found a maven example but I could import it to eclipse so that it works. Thanks a lot --

Re: Multiple entry points or multiple widgets?

2010-03-29 Thread ome
By module inheriting I meant inherits ... in the config of the main application as well as you mentioned the places where the app makes calls to this submodules directly. Thanx a lot for the detailed recommendation anyway. I think we'll stick to this model in the end, as it is still not difficult

Re: GWT Incubator scrolltable

2010-03-29 Thread crojay78
Hi, i am also interested in the source code of this, it's easier to understand the stuff... Hopefully somebody provide it... Thanks On 21 Mrz., 21:31, Kwame iweg...@gmail.com wrote: Does anyone have the full source code for this paging scroll table

Re: GWT Incubator scrolltable

2010-03-29 Thread mariyan nenchev
Download the jar lib? -- 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 google-web-toolkit+unsubscr...@googlegroups.com.

Problem with Asynchronous callback

2010-03-29 Thread Andrea
I have the method getAddress() that take in input an array of cities. For each city I use the Asyncronous method getLatLng() that return me the coordinates and I save them in an ArrayList called listaCoordinateCittaUtente. But when I use the ArrayList after the call of the method getAddress() it

Re: closing port

2010-03-29 Thread Rajeev Dayal
Are you using the Google Plugin for Eclipse? When you say that the project did not terminate normally, what exactly happened? Did you kill the GWT Java process? On Fri, Mar 26, 2010 at 1:28 PM, imgnik ytbr...@gmail.com wrote: if my gwt project did not terminate properly, the localhost port

Re: Problem with Asynchronous callback

2010-03-29 Thread Eric Ayers
I think you can trace what's going on by putting in a few calls to Window.alert(). The calls to getLatLng() have to go across to Google's servers and may take many milliseconds to return. You need some kind of mechanism to make sure all of the LatLngCallbacks fire before looking at

Re: Multiple entry points or multiple widgets?

2010-03-29 Thread kozura
Ah right inherit keyword, not OO inheritance, they probably should have used import or include instead to be more correct! Good luck with your app, I wouldn't worry at all about compile time if you get a good user and development experience. On Mar 29, 9:13 am, ome max.okoro...@gmail.com wrote:

Re: Problem with Asynchronous callback

2010-03-29 Thread kozura
Hi Andrea, I assume you mean the listaCoordinateCittaUtente list doesn't have any data after this call? This is the point of an asynchronous call, you can't predict how long the call will take to come back from the server, so you actually need to design your app to use the data only once it is

Re: Problem with Asynchronous callback

2010-03-29 Thread Andrea
Thanks for your answer. It's only few days that I use this technology so please tell me how I can make my RPC call takes the entire list at once. I can't understand the first solution, can you give me an example of it?? Andrea On 29 Mar, 17:54, kozura koz...@gmail.com wrote: Hi Andrea, I

Re: PagingScrollTable running example please???

2010-03-29 Thread Felipe
HI, Here's an example : publicMyClass implement EntryPoint , PageLoadHandler { public void onModuleLoad() { tableModel = new TestTableModel(); cachedTableModel = new CachedTableModelTestModel(tableModel);

scrolling table and RPC data

2010-03-29 Thread jaga
I need a ScrollTable to behave as a PagingScrollTable with regards to pulling data from a server, but without paging. I thought I could use ScrollHandler to hear when scrolling has stopped. Then I could request more data from the server from row m to n and add it to my existing cache. Anyone got

Re: Problem with Asynchronous callback

2010-03-29 Thread kozura
Sync version: ListLatLng getLatLngs(ListString addresses); Async version: void getLatLngs(ListString addresses, AsyncCallbackListLatLng cb); onSuccess(ListLatLng result) { listaCoordinateCittaUtente = result; doStuffWithResults...; } -- You received this message because you are

Re: Service per Servlet?

2010-03-29 Thread cetina
Thanks for your information. :) On Mar 28, 7:34 am, Dan danpr...@gmail.com wrote: You can have many methods in oneservice. It works fine for me, and is certainly less work. It would be a good idea for the methods in serviceImpl to call other methods to do the work, so the source for that

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Ian Bambury
Yep, does the same for me on 4 - I was on 3.x before because I get fed up with Apple trying to take over my PC every time you load anything - iTunes, Apple Update and so on - Netscape used to do that and look what happened to them. Anyway, I installed 4.something and it does the same for me.

image help

2010-03-29 Thread Chris
does anyone know if there is a way to disable someone from right clicking on an image and being able to save it? i am trying to make an application where people can purchase images but if they can just right click it and Save Image As there isn't any point. Any suggestions would be great.

Re: help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-29 Thread aish sundar
Hi Keith, Thanks a lot for the detailed steps. We are in the process of integrating the projects. However we have some doubts in the process. 1) FooServer -(i) I am assuming this can be the pre-existing Dynamic Web project, which we want to integrate with the GWT project. So from my example,

Re: help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-29 Thread aish sundar
Hi Keith, Thanks a lot for the detailed steps. We are in the process of integrating the projects. However we have some doubts in the process. 1) FooServer -(i) I am assuming this can be the pre-existing Dynamic Web project, which we want to integrate with the GWT project. So from my example,

Re: help integrating GWT project to an existing Web Project (on Tomcat) within Eclipse

2010-03-29 Thread aish sundar
Hi Keith, Thanks a lot for the detailed steps. We are in the process of integrating the projects. However we have some doubts in the process. 1) FooServer -(i) I am assuming this can be the pre-existing Dynamic Web project, which we want to integrate with the GWT project. So from my example,

Re: image help

2010-03-29 Thread Sudeep S
i am not sure if this is a right approach...how about placing a transparent div over the image. would that work. On Tue, Mar 30, 2010 at 12:22 AM, Chris thechris...@gmail.com wrote: does anyone know if there is a way to disable someone from right clicking on an image and being able to save it?

Re: Problem with Asynchronous callback

2010-03-29 Thread Sripathi Krishnan
Andrea, You must read the great beer analogy out here - http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/faca1575f306ba0f?pli=1 --Sri On 29 March 2010 22:47, kozura koz...@gmail.com wrote: Sync version: ListLatLng getLatLngs(ListString addresses); Async version:

Re: image help

2010-03-29 Thread Sripathi Krishnan
but if they can just right click it and Save Image As there isn't any point. Disabling right click is no solution. Its trivial to figure out the link of the image and then download it directly. Div overlays also won't help. As long as the user can see it, there is always going to be a way for

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Brendan Kenny
hmm, I get the same thing. Some of my own GWT projects do it as well, whether local or remote, but not all of them. this is in safari 4.0.4 on Windows 7. does anyone know the specifics of the logic of the loading... wheel and what would cause it not to cease? -profiling of my projects within

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Brendan Kenny
Also worth noting that the showcase will cease with the loading if you just open the rich text area under text input on the left. Other projects I have that have the same problem don't have rich text areas or code splitting, though. On Mar 29, 5:47 pm, Brendan Kenny bcke...@gmail.com wrote:

Announcing Mvp4g 1.1.0: EventBus + MVP architecture just a few annotations away

2010-03-29 Thread plcoirier
Like the previous version, Mvp4g 1.1.0 helps you build GWT applications easily following best practices shown by Ray Ryan (MVP, Event Bus and Dependency Injection), but now it is even easier because you can do it with only one Java interface and a few annotations (and you now have a strongly-typed

Re: getCookie() doesn't find a cookie set in the RPC Servlet

2010-03-29 Thread Paul
Ok, I tracked it down. When setting the cookie in the servlet, I need to set the path, then the gwt client can see the cookie. javax.servlet.http.Cookie c = new Cookie(SessionId, ); c.setValue(1234); c.setMaxAge(-1); c.setPath(/);

Re: image help

2010-03-29 Thread abhiram wuntakal
Hey I have this not-so-technical work around for u. Apply a Mouse over handler for the image. on a mouse-over, just change the image to some other image (probably a smaller one which says Dude, U cant download this!!!) and again on a Mouse-out bring back the original image. Guess that will

Re: Session management in GWT

2010-03-29 Thread Vik
hie yes gwt (ui)/ can u please point me to a bit more details on gwt-rpc/json mechanism on doing so? Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Mon, Mar 29, 2010 at 2:39 PM, olivier nouguier olivier.nougu...@gmail.com wrote: Hi, Do you mean I GWT (ui) code

Re: Scroll techniques for mobile phones

2010-03-29 Thread Vasem Want
I think you are missing the calibration event for the android , usually we have event only for one hardware but for android u will have to handle an extra handler On Thu, Mar 25, 2010 at 2:18 PM, Sekhar sek...@allurefx.com wrote: How are folks (or is anyone) doing page scrolls for GWT apps on

Re: [gwt-contrib] Re: CSS Selector Engine

2010-03-29 Thread Manuel Carrasco Moñino
Hello, I have been using gwtquery for months in many projects where SEO is needed. Is in these kinds of projects with a lot of javascript and SEO, that GWT + gwtquery combination is a fantastic solution (test, reusing, compression, ...). Unfortunately gwtquery has not been updated in a year (I

[gwt-contrib] Re: Comment on UsingOOPHM in google-web-toolkit

2010-03-29 Thread codesite-noreply
Comment by ap.forrest: When we log into our product we launch a new browser window, also we unfortunately use iFrames as a result of legacy code. Both scenarios make it awkward to set the 'gwt.hosted' property on the appropriate URLs. Has anyone else had a similar issue or aware of a

[gwt-contrib] Re: Comment on CodeSplitting in google-web-toolkit

2010-03-29 Thread codesite-noreply
Comment by alyxandorjames: Note to everyone reading this, This guide is somewhat dated. FOR UP TO DATE GUIDELINES, GO TO http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html For more information: http://code.google.com/p/google-web-toolkit/wiki/CodeSplitting --

[gwt-contrib] Re: RPC policy files usage?

2010-03-29 Thread Ed
Hi, This issue was driving me nuts.. It costs me so much time to update these policy files (re-deploy/restart server). I even ended up with around 100 policy files whereas I only need about 10 (for different gwt app's against the same backend), but I didn't dare to clean them as I didn't know

[gwt-contrib] [google-web-toolkit] r7804 committed - Eclipse code formatter, do not insert space before array initializer....

2010-03-29 Thread codesite-noreply
Revision: 7804 Author: sco...@google.com Date: Mon Mar 29 04:39:30 2010 Log: Eclipse code formatter, do not insert space before array initializer. This change fixes the conflict with checkstyle when initializing an anootation value with an array.

[gwt-contrib] [google-web-toolkit] r7805 committed - Add a HasKey interface and a maxColumns param for SideBySideTreeView...

2010-03-29 Thread codesite-noreply
Revision: 7805 Author: r...@google.com Date: Mon Mar 29 04:52:13 2010 Log: Add a HasKey interface and a maxColumns param for SideBySideTreeView Note: the location of the getKey() method needs further thought Review at http://gwt-code-reviews.appspot.com/277801 Review by: j...@google.com

[gwt-contrib] [google-web-toolkit] r7808 committed - Edited wiki page through web user interface.

2010-03-29 Thread codesite-noreply
Revision: 7808 Author: sp...@google.com Date: Mon Mar 29 08:30:22 2010 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=7808 Modified: /wiki/CodeSplitting.wiki === --- /wiki/CodeSplitting.wiki

[gwt-contrib] [google-web-toolkit] r7807 committed - Checkstyle fixes

2010-03-29 Thread codesite-noreply
Revision: 7807 Author: r...@google.com Date: Mon Mar 29 05:18:51 2010 Log: Checkstyle fixes http://code.google.com/p/google-web-toolkit/source/detail?r=7807 Modified: /trunk/bikeshed/src/com/google/gwt/sample/bikeshed/stocks/client/StocksDesktop.java

[gwt-contrib] [google-web-toolkit] r7809 committed - Mail sample app to work on selection concepts

2010-03-29 Thread codesite-noreply
Revision: 7809 Author: r...@google.com Date: Mon Mar 29 05:42:31 2010 Log: Mail sample app to work on selection concepts http://code.google.com/p/google-web-toolkit/source/detail?r=7809 Added: /trunk/bikeshed/src/com/google/gwt/bikeshed/list/shared/SelectionModel.java

[gwt-contrib] Remove JDK 1.6-isms; fix a checkstyle warning (issue281801)

2010-03-29 Thread rice
Reviewers: Lex, Description: Remove JDK 1.6-isms; fix a checkstyle warning Please review this at http://gwt-code-reviews.appspot.com/281801/show Affected files: M dev/core/src/com/google/gwt/core/linker/IFrameLinker.java M

[gwt-contrib] [google-web-toolkit] r7810 committed - Making a snapshot branch as a direct copy from trunk at r7809.

2010-03-29 Thread codesite-noreply
Revision: 7810 Author: sp...@google.com Date: Mon Mar 29 09:55:42 2010 Log: Making a snapshot branch as a direct copy from trunk at r7809. http://code.google.com/p/google-web-toolkit/source/detail?r=7810 Added: /branches/snapshot-2010.03.26 --

Re: [gwt-contrib] Remove JDK 1.6-isms; fix a checkstyle warning (issue281801)

2010-03-29 Thread Scott Blum
Dan, I actually just submitted without review the @Overrides removals. On Mon, Mar 29, 2010 at 12:29 PM, r...@google.com wrote: Reviewers: Lex, Description: Remove JDK 1.6-isms; fix a checkstyle warning Please review this at http://gwt-code-reviews.appspot.com/281801/show Affected

Re: [gwt-contrib] Remove JDK 1.6-isms; fix a checkstyle warning (issue281801)

2010-03-29 Thread Scott Blum
On Mon, Mar 29, 2010 at 1:05 PM, Scott Blum sco...@google.com wrote: Dan, I actually just submitted without review the @Overrides removals. Well, not the one in CrossSiteLoadingStrategy, my patch was older. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe

[gwt-contrib] [google-web-toolkit] r7811 committed - Removing interface @Overrides for Java 1.5 compatibility....

2010-03-29 Thread codesite-noreply
Revision: 7811 Author: sco...@google.com Date: Mon Mar 29 07:02:30 2010 Log: Removing interface @Overrides for Java 1.5 compatibility. Review by: sp...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=7811 Modified:

[gwt-contrib] [google-web-toolkit] r7812 committed - Deleting this manually created snapshot branch. There's a new script ...

2010-03-29 Thread codesite-noreply
Revision: 7812 Author: sp...@google.com Date: Mon Mar 29 10:28:53 2010 Log: Deleting this manually created snapshot branch. There's a new script in town. http://code.google.com/p/google-web-toolkit/source/detail?r=7812 Deleted: /branches/snapshot-2010.03.26 --

[gwt-contrib] [google-web-toolkit] r7813 committed - Created new snapshot branch via:...

2010-03-29 Thread codesite-noreply
Revision: 7813 Author: sp...@google.com Date: Mon Mar 29 10:31:06 2010 Log: Created new snapshot branch via: svn cp -r7809 https://google-web-toolkit.googlecode.com/svn/trunk \ https://google-web-toolkit.googlecode.com/svn/branches/snapshot-2010.03.29-r7809

[gwt-contrib] Skeletal support for tracking generator dependencies and skipping (issue283801)

2010-03-29 Thread spoon
Reviewers: Lex, Description: Skeletal support for tracking generator dependencies and skipping reruns of generators. Please review this at http://gwt-code-reviews.appspot.com/283801/show Affected files: M dev/core/src/com/google/gwt/dev/DevModeBase.java M

[gwt-contrib] Re: Skeletal support for tracking generator dependencies and skipping (issue283801)

2010-03-29 Thread spoon
There are three main parts to focus on: 1. The interface RuleRealizeCache is what must be implemented to track dependencies and decide when a previous result can be reused. Please see the comments in that file for how the API works. 2. ResourceOracle can have a dependency tracker plugged into

[gwt-contrib] Re: Add support for creating Grid elements using UiBinder. (issue154810)

2010-03-29 Thread rjrjr
Thanks for your patience, Marko, and sorry to be so inconsiderate of your time. http://gwt-code-reviews.appspot.com/154810/diff/1001/1002 File user/src/com/google/gwt/uibinder/elementparsers/GridParser.java (right): http://gwt-code-reviews.appspot.com/154810/diff/1001/1002#newcode37

[gwt-contrib] Re: Add support for creating Grid elements using UiBinder. (issue154810)

2010-03-29 Thread rjrjr
One other note: your patch is very likely to land after http://gwt-code-reviews.appspot.com/241801, and may need to be tweaked. Take a look at the element parser changes there to get a feel for it. http://gwt-code-reviews.appspot.com/154810/show --

[gwt-contrib] Make ServletValidator not use Jetty (issue284801)

2010-03-29 Thread scottb
Reviewers: bobv, Message: Please review. Description: See http://code.google.com/p/google-web-toolkit/issues/detail?id=4760 Please review this at http://gwt-code-reviews.appspot.com/284801/show Affected files: M dev/core/src/com/google/gwt/dev/ServletValidator.java M

[gwt-contrib] SelectionScriptLinker was setting the wrong timestamp on (issue287801)

2010-03-29 Thread spoon
Reviewers: scottb, Description: SelectionScriptLinker was setting the wrong timestamp on the generated selection script when used in production mode. It mistakenly thought it was in dev mode. Review by: sco...@google.com Please review this at http://gwt-code-reviews.appspot.com/287801/show

[gwt-contrib] Re: SelectionScriptLinker was setting the wrong timestamp on (issue287801)

2010-03-29 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/287801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject.

[gwt-contrib] The servlet now reads the enum name from a properties file. Thus, the servlet (issue286802)

2010-03-29 Thread amitmanjhi
Reviewers: Ray Ryan, Description: The servlet now reads the enum name from a properties file. Thus, the servlet portion responsible for all READ operations is a stock servlet. Patch by: amitmanjhi Review by: rjrjr (desk review) Please review this at

[gwt-contrib] Re: The servlet now reads the enum name from a properties file. Thus, the servlet (issue286802)

2010-03-29 Thread rjrjr
LGTM, with one comment nit below. http://gwt-code-reviews.appspot.com/286802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors To unsubscribe from this group, send email to google-web-toolkit-contributors+unsubscribegooglegroups.com or reply to this email with the words

[gwt-contrib] BinaryEmittedArtifact now forces subclasses to implement getLastModified. (issue288801)

2010-03-29 Thread scottb
Reviewers: Lex, Message: Please review. Description: Also: - Link.legacyLink once again deletes the module output directory, fixing r6497. - Intermediate linking individual permutations into a jar now preserves the timestamp. Please review this at

[gwt-contrib] Removes the completely spurious generatedResource directory. (issue289801)

2010-03-29 Thread scottb
Reviewers: jat, bobv, Description: The generatedResource directory was an artifact of earlier times. We were literally writing generated resources out to temporary files, just so we could immediately read them back in. This should speed up generators by avoiding most disk I/O. Please review

[gwt-contrib] Implements a reduced scope ValueStore. It's responsible for posting change events (issue290801)

2010-03-29 Thread rjrjr
Reviewers: amitmanjhi, Description: Implements a reduced scope ValueStore. It's responsible for posting change events to the event bus, and for collecting changes to domain objects. You can tell it's working because the editing feature of the Expense app now actually refreshes its table. Review