Re: Interested in GWT client-side JSON serialization and deserialization?

2010-09-24 Thread Harald Pehl
In case you’re interested: I’ve written another JSON mapper which also comes with XML support. Feel free to take a look at it: http://code.google.com/p/piriti/ - Harald On Sep 23, 6:19 pm, lineman78 linema...@gmail.com wrote: This is way too complex, just stick to overlay objects and the

Re: GWT DESIGNER NOT WORKING WITH GWT SDK 2.0.4

2010-09-24 Thread Alessio unibs
Thank you for answers. Now i try to understand if in my GWT library there are some errors. And also i will try to install e new clean Eclipse; if i have problems yet, i post them here. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: CPU utilization on IE6.0 because of Mousemove event

2010-09-24 Thread sm
Hi George, Thank you very much. We were using DialogBox panel which was causing problem. There is one more entity like this, still trying to figure out. Thanks, Sunil On Sep 23, 12:43 am, George Georgovassilis g.georgovassi...@gmail.com wrote: Hello Sunil, Maybe some widgets you use implement

Reducing the CPU utilization on the IE browser

2010-09-24 Thread sm
Hi, I our project we are expirencing high CPU utilizations on I.E6.0 Browser. At times during RPC calls CPU utilization stays at 100%. Its stays at that number for few seconds till the page is rendered. We are using GWT 2.0.3. Can you please provide some tips/best practices that can be coded to

Re: can't find my GWT version

2010-09-24 Thread Thomas Broyer
On Sep 24, 5:28 am, Didier DURAND durand.did...@gmail.com wrote: Hi, the static method getVersion() on class GWT (so GWT.getVersion()) gives it programmatically. So, if you put your jars alternatively in your classpath, you will find the version of each of them Alternatively, just

Re: GWT DESIGNER NOT WORKING WITH GWT SDK 2.0.4

2010-09-24 Thread Alessio unibs
Hi guys, i downloaded also the sdk GWT 2.0.4 and i imported that instead the one included in gwt eclipse plugin, but watching in the jar file gwt-dev.jar, the class com.google.gwt.dev.shell.ie.util.Utils is not inside. I'm here with a friend and she installed eclipse 3.6; In her eclipse all work

Re: Basic purpose of onEnsureDebugId

2010-09-24 Thread Thomas Broyer
On Sep 23, 7:54 pm, Hilco Wijbenga hilco.wijbe...@gmail.com wrote: On 16 July 2010 02:14, Thomas Broyer t.bro...@gmail.com wrote: The whole notion of debug ID is only useful if you do run selenium or webdriver (or similar) tests, and you therefore need widgets to have an ID, and moreover

GWT 2.1 M3 API changed? AsyncListViewAdapter, SimplePager, etc

2010-09-24 Thread Paul Schwarz
Dear all, I have been working on an app that uses those light weight Data Widget Presenters using GWT 2.1 M1. I was always aware of the comments in the javadoc saying something like this API could change. Now I've changed to GWT 2.1 M3 and indeed much of my CellTable and CellList code no longer

Re: CPU utilization on IE6.0 because of Mousemove event

2010-09-24 Thread George Georgovassilis
Hello Sunil, Sounds about right - DialogBox installs a MouseMove and MouseOver handler. Maybe you'd want to extend the class and overwrite the contstructor in order to register fewer events (i.e. leave MouseMove out) - though I'm not sure how this would affect the functionality. On

Re: GWT 2.1 M3 API changed? AsyncListViewAdapter, SimplePager, etc

2010-09-24 Thread Paul Stockley
I posted some info here http://groups.google.com/group/google-web-toolkit/browse_thread/thread/eb428e2e8d922f16/e864076c94c48c30#e864076c94c48c30 On Sep 24, 5:45 am, Paul Schwarz paulsschw...@gmail.com wrote: Dear all, I have been working on an app that uses those light weight Data Widget

GWT 2.1M(anything)

2010-09-24 Thread Roger Studner
The onKeyPress events.. when you check for a modifying (shift, control, if they hit the enter key). On OSX *all* of these report 0. Thus, I mean, you can't really use onKeyPress to check for the ENTER key.. well.. ever ;) Roger -- You received this message because you are subscribed to the

Grid data issue

2010-09-24 Thread naveen
Hi team, am using gwt 2.1 version, am trying to fill the data in to the simple grid. The data is huge, so in IE it is throwing error saying Script on this page is causing IE to run slowly... please refer the attached screenshot. Any suggestions are welcome. Thanks Naveen -- You received this

Grid data issue

2010-09-24 Thread naveen
Hi team, am using gwt 2.1 version, am trying to fill the data in to the simple grid. The data is huge, so in IE it is throwing error saying Script on this page is causing IE to run slowly. End Script. . Any suggestions are welcome. Thanks Naveen -- You received this message because you are

Re: GWT 2.1M(anything)

2010-09-24 Thread Christian Goudreau
Well, it's because you have to use KeyDown or KeyUp events for these :D I had to change my masked textbox for that when upgrading to gwt 2.1 Cheers, On Fri, Sep 24, 2010 at 8:17 AM, Roger Studner rstud...@gmail.com wrote: The onKeyPress events.. when you check for a modifying (shift, control,

Re: GWT 2.1M(anything)

2010-09-24 Thread Roger Studner
Thanks Christian. I did tons of GWT up until 1.6 and then got pulled away. So i'm digesting so many of the changes that obvious things skip by my brain when i'm stuck in the weeds hah Thanks! Roger On Sep 24, 2010, at 8:43 AM, Christian Goudreau wrote: Well, it's because you have to use

(GWT 2.1 M3 question) Mouse events in a custom Cell (Data Presentation Widgets)

2010-09-24 Thread Paul Schwarz
Hi all, Using GWT 2.1 M1 I had a working example of a CellList with a custom- built Cell implementation that expects click events, double click events, right click events, and so on. The effect was that the CellList is really a calendar of sorts, each page was a list of days in a month.

Re: GWT Designer crash with eclipse 3.6

2010-09-24 Thread Noor
Hi, thanks for replying I have used the prescribe method that is getting the site for the appopriate eclipse version then based on the site installing it from eclipse The design of the GWT is launching but as soon as I take a control from the toolbox, eclipse crash -- You received this

Re: (GWT 2.1 M3 question) Mouse events in a custom Cell (Data Presentation Widgets)

2010-09-24 Thread Paul Schwarz
Ahh... got it! The constructor of CalendarCell now looks like this: public CalendarCell() { super(click);// this can be a list of strings } ... which seems to be a very elegant fix to as issue I reported a while ago:

GWT has DListElement, but not dt or dd?

2010-09-24 Thread Falcon
GWT has a DListElement ( http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/dom/client/DListElement.html ) but I'm unable to find a corresponding dt or dd. Do I need to make my own dt and dd or do they exist somewhere else that I'm just missing? Seems a bit odd to provide the

Re: GWT has DListElement, but not dt or dd?

2010-09-24 Thread Thomas Broyer
On Sep 24, 4:13 pm, Falcon msu.fal...@gmail.com wrote: GWT has a DListElement (http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/g... ) but I'm unable to find a corresponding dt or dd. Do I need to make my own dt and dd or do they exist somewhere else that I'm just

Issue about adding image icons into FlowPanel

2010-09-24 Thread Michelle Mu
I need to add some small image icons(16*16) into a flowPanel. But the image icons do not lay on a line. Each image icon occupies one line. Can some one tells me what the problem is. My code sample is below: FlowPanel toolPanel = new FlowPanel();

Re: GWT Designer crash with eclipse 3.6

2010-09-24 Thread Jean-Christophe SAAD DUPUY
Hi. Wich jdk are you using? On my eclipse installation, it seems to crash with the sun JDK 1.6.0.20 but works well with openJdk 1.6. --- Jean-Christophe Saad-Dupuy On Fri, Sep 24, 2010 at 2:55 PM, Noor baken...@gmail.com wrote: Hi, thanks for replying I have used the prescribe method that

GWT Developer Plugin not working in Namoroka (Firefox) Linux x86_64

2010-09-24 Thread Juan Miguel Cejuela
I can't get the GWT Developer Plugin working in Namoroka Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100724 Firefox/3.6.8 I install successfully the plugin, or at least I see it in my list of add-ons, but the browser keeps me again to install it again and again. Somebody got

Datastore

2010-09-24 Thread trevor
Having trouble in finding how to use Datastore or BigTable in GWT. I have developed using Python and usd datastore. Where should I look -- 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: GWT and MCV

2010-09-24 Thread Foued Elguenbri
you can use GWT+GXT, the framework implements MVC. if you talk about the hole application MVC, it is simple you link the GWT services with your core services using spring and gwt-dispatcher. http://code.google.com/p/gwt-dispatch/ -- Cordialement. Foued

Re: Datastore

2010-09-24 Thread David Chandler
You can use any of GWT's client / server protocols to connect to a servlet running on App Engine that in turn calls the Datastore. See the App Engine docs and forum for Datastore questions. The following links may help on the GWT side:

Re: GWT and MCV

2010-09-24 Thread Jason Hatton
MVC isn't ideal for rich client applications that are heavily event oriented. Too much ceremony for not a lot of value add to that testability is harder with MVC. With MVP you can get near 100% coverage by having everything in the presenter and keep to the practice of the View only holds UI

possible bug? menuBar.getElement().setId() has no effect

2010-09-24 Thread marius.andreiana
Would somebody please confirm if menuBar.getElement().setId() works? MenuBar menuBar; //add items, I'm doing it from UiBinder... menuBar.getElement().setId(id); // inspect the dom - doesn't seem to have any effect when you setClass() also doesn't work. getHTML() works. If the widget which

Re: GWT has DListElement, but not dt or dd?

2010-09-24 Thread Falcon
Yeah, that's fine. I've gone ahead and made DTElement and DDElement (I guess technically that should be DTermElement and DDefinitionElement, but ugh) so I can make a DListPanel. Is there a better way to mix HTML and widgets programmatically? I've made a custom TabPanel (that has a header and

Re: Issue about adding image icons into FlowPanel

2010-09-24 Thread Falcon
Each PushButton is wrapped in a div, which is a block-level element. You'll need to change the divs to inline, inline-block, or float them in the PushButton style settings. On Sep 23, 3:15 pm, Michelle Mu mmumail2...@gmail.com wrote: I need to add some small image icons(16*16) into a flowPanel.

Re: Issue about adding image icons into FlowPanel

2010-09-24 Thread Michelle Mu
Falcon, Thanks for reply. I am using the code below to display the images. Can you tell me how to lay the images inline? public interface Images extends ClientBundle { @Source(OPEN.JPG) ImageResource open(); @Source(CUT.JPG)

Re: upgrade from GWT 2.1 to GWT 2.2

2010-09-24 Thread Fernando
there's no gwt 2.2... isn't it smart gwt, ext gwt or a gwt milestone? On Sep 24, 1:49 am, navS naveenkumarnl1...@gmail.com wrote: Hi team, currently am using GWT 2.1, now i have to upgrade it to version 2.2. how do i start doing it. Thanks naveen -- You received this message because you

looking for a gwt programmer in Haifa

2010-09-24 Thread ziv
to instruct face2face on the use of gwt on basic matters like inhereting modules, etc. tnu yad, anashim.. -- 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

Re: looking for a gwt programmer in Haifa

2010-09-24 Thread Christian Goudreau
Why face 2 face ? Skype or Something like Elluminate (Free for 3 users and less) could do the job :D Cheers, On Fri, Sep 24, 2010 at 1:11 PM, ziv zivli...@gmail.com wrote: to instruct face2face on the use of gwt on basic matters like inhereting modules, etc. tnu yad, anashim.. -- You

Re: GWT Designer crash with eclipse 3.6

2010-09-24 Thread Noor
I am using Mac Os. so i must check if openjdk exist for mac!! Thanks Jean, may be u have given me a hint because I'm in a great problem as if I get gwt launching on my mac, I will not loose much in designing the interface!! -- You received this message because you are subscribed to the Google

Re: GWT Designer crash with eclipse 3.6

2010-09-24 Thread Eric Clayberg
What kind of OSX hardware are you running this on? Can you try it using OSX 10.6.4? We are not able to reproduce this on any pf the Macs that we have available to us, so we need to know more about your specific configuration. On Sep 23, 11:30 am, Noor baken...@gmail.com wrote: After lots of

Re: GWT Designer crash with eclipse 3.6

2010-09-24 Thread Noor
it is iMac -- 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. For more

Simple CellList example 2.1 M3

2010-09-24 Thread nogridbag
Are there any CellList or CellTable examples using GWT 2.1 M3? Of the few examples I can find, they are all out dated. A simple hello world example will suffice. Looking at old examples and google IO talks, they use ListViewAdapter which appears to be replaced with ListDataProvider. I'm

Re: GWT Designer not available ...

2010-09-24 Thread Eric Clayberg
If you are using ui:field, you need to be using a newer build of GWT than 2.1M3 for this to work. You can create your own GWT build using the latest code in the GWT repository or wait for then next GWT update. On Sep 23, 4:06 am, umemy mjae...@brandsmill.de wrote: We are enjoying the same

Programming issue with splitlayoutpanel

2010-09-24 Thread tibo_fr
Hi everybody! I'm a green horn in gwt programming - nobod's perfect... I would like to create a composite widget, laying out with a splitlayoutpanel, which could work like the Microsoft Windows Explorer in Details Mode with the following characteristics : - all the widgtets in the splitlayout

Re: Modify files in .jar libraries

2010-09-24 Thread daniela iervolino
The fact is that I'm not allowed to modify the file in .jar packet. I want to change some code in libraries to allowing the double click management with image widget... So my problem is to add a handler to Image.java file in gwt-user.jar packet.. But I can't!! Maybe it's a permission matter? On

Re: Difficult running a GWTTestCase

2010-09-24 Thread Arthur Kalmenson
If you're running the test directly through Eclipse, what I've found that you have to do is to edit your test configuration and add all your source folders to the classpath. -- Arthur Kalmenson On Sun, Sep 12, 2010 at 3:37 PM, A2Person1978 amarzumkhaw...@gmail.com wrote: Hi, I seek advice

Save clickable images

2010-09-24 Thread daniela iervolino
Hi! I have a question for you.. The matter is: I have an image that I've uploaded from my file system and it's shown in a page of my web app. Then I created a system to move some images (for example little balls) on the previous image (by drag and drop mechanism). So I want to store this resulting

Re: Modify files in .jar libraries

2010-09-24 Thread Eric
On Sep 24, 3:30 pm, daniela iervolino daniela.ie...@gmail.com wrote: The fact is that I'm not allowed to modify the file in .jar packet. I want to change some code in libraries to allowing the double click management with image widget... So my problem is to add a handler to Image.java file

incubator compile error

2010-09-24 Thread aras...@gmail.com
Hi all, I apologies in advance if this forum is not intended for questions related to incubator, but I could not find anywhere better. I followed the instruction on http://code.google.com/docreader/#p=google-web-toolkit-incubators=google-web-toolkit-incubatort=MakingIncubatorBetter and I get this

Re: Invalid version number errror after upgrading from 2.1 M2 to M3

2010-09-24 Thread bohemian
FYI clearing the browser cache worked for 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: incubator compile error

2010-09-24 Thread Chris Conroy
Looks related to a change I recently put in. Make sure your gwt-trunk is up to date. On Fri, Sep 24, 2010 at 5:42 PM, aras...@gmail.com aras...@gmail.comwrote: Hi all, I apologies in advance if this forum is not intended for questions related to incubator, but I could not find anywhere

Re: Google Web Toolkit Developer Plugin

2010-09-24 Thread GhostCoder
Thomas: Thank You, this worked for me. I hope this helps someone else. Have a great day! On Sep 23, 8:16 am, Thomas Broyer t.bro...@gmail.com wrote: On Sep 23, 7:09 am, GhostCoder ghost4c...@gmail.com wrote: I'm trying to install the FireFox Developer Plugin for: Mozilla/5.0 (X11; U;

[gwt-contrib] Re: Delete EditorSupportGenerator, and various tweaks on the way to making (issue912802)

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

[gwt-contrib] [google-web-toolkit] r8862 committed - Fixes Collection of value types and proxies as parameters to RequestFa...

2010-09-24 Thread codesite-noreply
Revision: 8862 Author: cromwell...@google.com Date: Thu Sep 23 21:25:47 2010 Log: Fixes Collection of value types and proxies as parameters to RequestFactory methods. Also fixes Enum and Date params. Review at http://gwt-code-reviews.appspot.com/883802

[gwt-contrib] Re: Fixing a bug with images used in CellTree, CellBrowser, and IconCellDecorator in browsers that b... (issue912801)

2010-09-24 Thread jlabanca
committed as r8860 http://gwt-code-reviews.appspot.com/912801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8864 committed - explicitly set the external_attr on the zipinfo to prevent creating an...

2010-09-24 Thread codesite-noreply
Revision: 8864 Author: con...@google.com Date: Fri Sep 24 08:04:50 2010 Log: explicitly set the external_attr on the zipinfo to prevent creating an archive with empty permissions also, make the version string pattern a bit more lenient since the newer jars have changed their format. Review

[gwt-contrib] Re: Resolves ROO-1447. (issue921801)

2010-09-24 Thread bobv
Updated with the following tests and the fixes to make them work: - setter collection behavior - dummy creates involving collections. Also did some code cleanup in the files I touched this morning. The warning spam was making it difficult to see newly-introduced problems.

[gwt-contrib] [google-web-toolkit] r8865 committed - Adding null check to AbstractHasDataTestBase#testSetTabIndex to fix br...

2010-09-24 Thread codesite-noreply
Revision: 8865 Author: jlaba...@google.com Date: Fri Sep 24 04:03:46 2010 Log: Adding null check to AbstractHasDataTestBase#testSetTabIndex to fix broken tests. I assumed RegExp.exec() would return an empty MatchResult if nothing matched, but it actually returns null (as the JavaDoc says).

[gwt-contrib] Re: Adding null check to AbstractHasDataTestBase#testSetTabIndex to fix broken tests. I assumed RegE... (issue868802)

2010-09-24 Thread jlabanca
committed as r8865 http://gwt-code-reviews.appspot.com/868802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Extract a default timeout constant in JUnitShell. (issue917801)

2010-09-24 Thread fabbott
LGTM http://gwt-code-reviews.appspot.com/917801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix IncompatibleRemoteServiceException in GWTTestCases under JUnit4. (issue916801)

2010-09-24 Thread fabbott
LGTM http://gwt-code-reviews.appspot.com/916801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8866 committed - Fix IncompatibleRemoteServiceException in GWTTestCases under JUnit4....

2010-09-24 Thread codesite-noreply
Revision: 8866 Author: sco...@google.com Date: Fri Sep 24 06:17:22 2010 Log: Fix IncompatibleRemoteServiceException in GWTTestCases under JUnit4. http://gwt-code-reviews.appspot.com/916801/show Review by: fabb...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8866

[gwt-contrib] Use generics for EntityProxyId (issue888802)

2010-09-24 Thread rice
Reviewers: rjrjr, cromwellian, amitmanjhi, Description: Use generics for EntityProxyId This affects the public API of FindRequest, which requires generator changes Clean up generics in general Remove some other warnings Please review this at http://gwt-code-reviews.appspot.com/02/show

[gwt-contrib] Re: GWT implementation of json2.js parse and stringify, plus removal of json2.js dependency from RF.... (issue922801)

2010-09-24 Thread Ray Ryan
Joel, any chance of you getting to this today? That would be huge. On Fri, Sep 24, 2010 at 1:15 PM, cromwell...@google.com wrote: Reviewers: jgw, rjrjr, Description: GWT implementation of json2.js parse and stringify, plus removal of json2.js dependency from RF. This is a slice of a much

[gwt-contrib] Re: GWT implementation of json2.js parse and stringify, plus removal of json2.js dependency from RF.... (issue922801)

2010-09-24 Thread jgw
On 2010/09/24 20:17:34, rjrjr wrote: Joel, any chance of you getting to this today? That would be huge. On Fri, Sep 24, 2010 at 1:15 PM, mailto:cromwell...@google.com wrote: Reviewers: jgw, rjrjr, Description: GWT implementation of json2.js parse and stringify, plus removal of

[gwt-contrib] remove SeriaizableLogRecord and SerializableThrowable (issue875803)

2010-09-24 Thread unnurg
Reviewers: scottb, Description: remove SeriaizableLogRecord and SerializableThrowable Please review this at http://gwt-code-reviews.appspot.com/875803/show Affected files: M samples/hello/war/Hello.html A user/src/com/google/gwt/core/client/impl/SerializableThrowable.java M

[gwt-contrib] Re: Resolves ROO-1447. (issue921801)

2010-09-24 Thread rjrjr
LGTM As we discussed, putting the new JSO in the master value store feels skeevey but should do no harm for this patch. Landing this lets us proceed. We have uncovered a pretty serious problem with the api, the fact that requests are not responsible for their own creates. I'll log a follow up

[gwt-contrib] Re: Resolves ROO-1447. (issue921801)

2010-09-24 Thread rjrjr
To be clear, all these comments are nits. If you need to submit and follow up to get to them, that's cool. On 2010/09/24 21:48:40, rjrjr wrote: LGTM As we discussed, putting the new JSO in the master value store feels skeevey but should do no harm for this patch. Landing this lets us

[gwt-contrib] Re: Use generics for EntityProxyId (issue888802)

2010-09-24 Thread amitmanjhi
LGTM except noted below. http://gwt-code-reviews.appspot.com/02/diff/1/22 File user/src/com/google/gwt/requestfactory/client/impl/RequestFactoryJsonImpl.java (right): http://gwt-code-reviews.appspot.com/02/diff/1/22#newcode191

[gwt-contrib] Re: GWT Development shell no longer cuts off the Launch Default Browser and Copy to Clipboard (issue758801)

2010-09-24 Thread conroy
On 2010/09/15 19:23:39, knorton wrote: Possible to throw a screenshot comparison up on http://imgur.com/? On 2010/09/15 19:16:00, jat wrote: On Wed, Sep 15, 2010 at 3:10 PM, mailto:con...@google.com wrote: fred, i'd love to see this go in. LGTM. My objection to it as written revolves

[gwt-contrib] Re: Resolves ROO-1447. (issue921801)

2010-09-24 Thread amitmanjhi
LGTM. I just realized that I had 2 comments on the FavoritesWidget, other than the on-phone comments about DeltaValueStore. Just nits. http://gwt-code-reviews.appspot.com/921801/diff/8001/9005 File samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/client/widgets/FavoritesWidget.java

[gwt-contrib] Re: Add logging example to the dist (issue913801)

2010-09-24 Thread Ray Ryan
LGTM On Thu, Sep 23, 2010 at 10:18 AM, unn...@google.com wrote: Reviewers: rjrjr, Description: Add logging example to the dist Please review this at http://gwt-code-reviews.appspot.com/913801/show Affected files: M samples/build.xml Index: samples/build.xml

[gwt-contrib] Re: Cleanup for Roo-1401. Refactored the commit method so that it is easier for it (issue920801)

2010-09-24 Thread amitmanjhi
http://gwt-code-reviews.appspot.com/920801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Cleanup for Roo-1401. Refactored the commit method so that it is easier for it (issue920801)

2010-09-24 Thread rjrjr
LGTM one name nit http://gwt-code-reviews.appspot.com/920801/diff/3/3001 File user/src/com/google/gwt/requestfactory/client/impl/DeltaValueStoreJsonImpl.java (right): http://gwt-code-reviews.appspot.com/920801/diff/3/3001#newcode128

[gwt-contrib] [google-web-toolkit] r8868 committed - Cleanup for Roo-1401. Refactored the commit method so that it is easie...

2010-09-24 Thread codesite-noreply
Revision: 8868 Author: amitman...@google.com Date: Fri Sep 24 15:24:22 2010 Log: Cleanup for Roo-1401. Refactored the commit method so that it is easier for it to process additional WriteOperations. Patch by: amitmanjhi Review by: robertvawter Review at

[gwt-contrib] [google-web-toolkit] r8869 committed - GWT implementation of json2.js parse and stringify, plus removal of js...

2010-09-24 Thread codesite-noreply
Revision: 8869 Author: cromwell...@google.com Date: Fri Sep 24 19:41:56 2010 Log: GWT implementation of json2.js parse and stringify, plus removal of json2.js dependency from RF. This is a slice of a much more ambitious JSON library that unified client and server JSON APIs into a single