[gwt-contrib] No longer require RPCs to contain a 'Content-Length' HTTP request header, thus (issue727801)

2010-07-28 Thread fredsa
Reviewers: jat, Description: No longer require RPCs to contain a 'Content-Length' HTTP request header, thus enabling support for XHR with 'Transfer-Encoding: Chunked'. Review by: j...@google.com Please review this at http://gwt-code-reviews.appspot.com/727801/show Affected files: M user/src/

[gwt-contrib] Re: Add two new ClientBundle annotations: (issue714801)

2010-07-28 Thread fredsa
http://gwt-code-reviews.appspot.com/714801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Split LogManager class into an set of Impl classes so that any LogManager calls (issue638802)

2010-07-28 Thread fredsa
LGTM http://gwt-code-reviews.appspot.com/638802/diff/1/2 File user/src/com/google/gwt/logging/LogImpl.gwt.xml (right): http://gwt-code-reviews.appspot.com/638802/diff/1/2#newcode11 user/src/com/google/gwt/logging/LogImpl.gwt.xml:11: correct indentation http://gwt-code-reviews.appspot.com/6388

[gwt-contrib] Partial commit towards making instance methods real. Merged the execution paths (issue726801)

2010-07-28 Thread amitmanjhi
Reviewers: Ray Ryan, Description: Partial commit towards making instance methods real. Merged the execution paths for the syncRequest and RequestObject. Patch by: amitmanjhi Review by: rjrjr (desk review) Please review this at http://gwt-code-reviews.appspot.com/726801/show Affected files:

[gwt-contrib] [google-web-toolkit] r8435 committed - Fix 1.6 style @Overrides, and quiet a warning.

2010-07-28 Thread codesite-noreply
Revision: 8435 Author: rj...@google.com Date: Wed Jul 28 16:58:39 2010 Log: Fix 1.6 style @Overrides, and quiet a warning. http://code.google.com/p/google-web-toolkit/source/detail?r=8435 Modified: /trunk/dev/core/src/com/google/gwt/dev/jjs/impl/BuildTypeMap.java ==

[gwt-contrib] [google-web-toolkit] r8434 committed - Ensure bridgeMethods is initialized, even when constructed from other ...

2010-07-28 Thread codesite-noreply
Revision: 8434 Author: to...@google.com Date: Wed Jul 28 16:37:27 2010 Log: Ensure bridgeMethods is initialized, even when constructed from other subtypes, such as MissingTypeBinding. Review at http://gwt-code-reviews.appspot.com/708802 http://code.google.com/p/google-web-toolkit/source/detai

[gwt-contrib] [google-web-toolkit] r8433 committed - Turn off logging in bikeshed, till Unnur commits her bytecode rewritin...

2010-07-28 Thread codesite-noreply
Revision: 8433 Author: gwt.mirror...@gmail.com Date: Wed Jul 28 18:21:23 2010 Log: Turn off logging in bikeshed, till Unnur commits her bytecode rewriting fix. At the moment, dev mode refresh is broken. Patch by: amitmanjhi,unnurg Review by: unnurg http://code.google.com/p/google-web-toolkit/

[gwt-contrib] [google-web-toolkit] r8432 committed - Rolls back UiBinder AbsolutePanelParser due to breakage of existing co...

2010-07-28 Thread codesite-noreply
Revision: 8432 Author: rj...@google.com Date: Wed Jul 28 13:10:14 2010 Log: Rolls back UiBinder AbsolutePanelParser due to breakage of existing code. http://code.google.com/p/google-web-toolkit/source/detail?r=8432 Deleted: /trunk/user/src/com/google/gwt/uibinder/elementparsers/AbsolutePan

[gwt-contrib] [google-web-toolkit] r8431 committed - Make javax.validation available to gwt clients....

2010-07-28 Thread codesite-noreply
Revision: 8431 Author: gwt.mirror...@gmail.com Date: Wed Jul 28 18:16:13 2010 Log: Make javax.validation available to gwt clients. This is a first step towards supporting JSR-303 in the GWT client. Review at http://gwt-code-reviews.appspot.com/711801 Review by: sp...@google.com http://code.goog

[gwt-contrib] [google-web-toolkit] r8430 committed - Adds UiBinder parser for AbsolutePanel....

2010-07-28 Thread codesite-noreply
Revision: 8430 Author: rj...@google.com Date: Wed Jul 28 11:49:56 2010 Log: Adds UiBinder parser for AbsolutePanel. Patch by konstantin.scheg...@gmail.com Review by rj...@google.com http://gwt-code-reviews.appspot.com/715802/show Review by: robertvaw...@google.com http://code.google.com/p/googl

[gwt-contrib] Split LogManager class into an set of Impl classes so that any LogManager calls (issue638802)

2010-07-28 Thread unnurg
Reviewers: fredsa, Description: Split LogManager class into an set of Impl classes so that any LogManager calls in code will compile out cleanly when logging is disabled Please review this at http://gwt-code-reviews.appspot.com/638802/show Affected files: M user/src/com/google/gwt/logging/Lo

[gwt-contrib] Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-28 Thread unnurg
Reviewers: scottb, Description: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out the LogManager and should work with App Engine apps Review by: sco...@google.com Please review this at http://gwt-code-reviews.appspot.com/725801/show Affected files: M

[gwt-contrib] Ensure bridgeMethods is initialized, even when constructed from other subtypes, such as MissingT... (issue708802)

2010-07-28 Thread tobyr
Reviewers: scottb, Description: Ensure bridgeMethods is initialized, even when constructed from other subtypes, such as MissingTypeBinding. Please review this at http://gwt-code-reviews.appspot.com/708802/show Affected files: M dev/core/src/org/eclipse/jdt/internal/compiler/lookup/BinaryTy

[gwt-contrib] Re: Faster edit-distance computation in JsFunctionClusterer (issue669801)

2010-07-28 Thread avassalotti
On 2010/07/28 22:25:06, Lex wrote: I thought so at first, but it's using find(). So it should still match. Perhaps it matches too many The caret in the regex "^(function |[A-Za-z0-9_$]+=function)" only matches the beginning of a string. So I don't think using find() changes anything. htt

[gwt-contrib] Re: Faster edit-distance computation in JsFunctionClusterer (issue669801)

2010-07-28 Thread Lex Spoon
On Wed, Jul 28, 2010 at 6:15 PM, wrote: > Oh, sorry. I made this comment somewhere else. The problem is the > endStatements() method doesn't use the regex to recognize the other > declaration style. > Ah, yes! Well at the least this code should be moved to a subroutine. I believe the version wit

[gwt-contrib] Re: Faster edit-distance computation in JsFunctionClusterer (issue669801)

2010-07-28 Thread avassalotti
Oh, sorry. I made this comment somewhere else. The problem is the endStatements() method doesn't use the regex to recognize the other declaration style. In addition, I believe the current regex don't match the declaration emitted by the cross-linker. The dot in the name prevent a match. http://g

[gwt-contrib] Re: Adding support for non-propagating events in Cell based widgets. In modern browsers, we make the... (issue720801)

2010-07-28 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/720801/diff/1/4 File user/src/com/google/gwt/cell/client/EditTextCell.java (right): http://gwt-code-reviews.appspot.com/720801/diff/1/4#newcode231 user/src/com/google/gwt/cell/client/EditTextCell.java:231: } else if ("blur".equals(type)) { That's pretty

Re: [gwt-contrib] Add ability to get Boolean types from Record (issue703802)

2010-07-28 Thread Ray Ryan
Thanks. A broader fix for this and most other types has been on the verge of being committed for something like a week now. Stay tuned. On Wed, Jul 28, 2010 at 2:10 PM, wrote: > Reviewers: , > > Description: > If you create a Record that needs to transfer a Boolean type, it fails. > Here is the

[gwt-contrib] Re: Fix warnings and checkstyle errors (issue724801)

2010-07-28 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/724801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Faster edit-distance computation in JsFunctionClusterer (issue669801)

2010-07-28 Thread spoon
http://gwt-code-reviews.appspot.com/669801/diff/20001/21006 File dev/core/src/com/google/gwt/dev/jjs/impl/JsFunctionClusterer.java (right): http://gwt-code-reviews.appspot.com/669801/diff/20001/21006#newcode62 dev/core/src/com/google/gwt/dev/jjs/impl/JsFunctionClusterer.java:62: if (code.startsW

[gwt-contrib] Re: First pass at keyboard navigation (currently only for CellTable) (issue710802)

2010-07-28 Thread jlabanca
Looks good with a few concerns. After we try this out, we should go back and make sure we're covering all of the use cases. http://gwt-code-reviews.appspot.com/710802/diff/1/3 File user/src/com/google/gwt/cell/client/Cell.java (right): http://gwt-code-reviews.appspot.com/710802/diff/1/3#newcod

[gwt-contrib] Re: Begin to convert DynaTableRF sample to using UiBinder. (issue698802)

2010-07-28 Thread rjrjr
http://gwt-code-reviews.appspot.com/698802/diff/1/5 File samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/client/DayFilterWidget.ui.xml (right): http://gwt-code-reviews.appspot.com/698802/diff/1/5#newcode17 samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/client/DayFilterWidget

[gwt-contrib] Re: Patch from Gustav Trede (gustav.tr...@gmail.com) (issue716801)

2010-07-28 Thread rice
http://gwt-code-reviews.appspot.com/716801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] First pass at keyboard navigation (currently only for CellTable) (issue710802)

2010-07-28 Thread rice
Reviewers: jlabanca, Description: First pass at keyboard navigation (currently only for CellTable) Please review this at http://gwt-code-reviews.appspot.com/710802/show Affected files: M user/src/com/google/gwt/cell/client/AbstractCell.java M user/src/com/google/gwt/cell/client/Cell.java

[gwt-contrib] Re: Adding support for non-propagating events in Cell based widgets. In modern browsers, we make the... (issue720801)

2010-07-28 Thread jlabanca
I'll update the change with your recommendations. http://gwt-code-reviews.appspot.com/720801/diff/1/4 File user/src/com/google/gwt/cell/client/EditTextCell.java (right): http://gwt-code-reviews.appspot.com/720801/diff/1/4#newcode231 user/src/com/google/gwt/cell/client/EditTextCell.java:231: } e

[gwt-contrib] Fix warnings and checkstyle errors (issue724801)

2010-07-28 Thread rice
Reviewers: Ray Ryan, Description: Fix warnings and checkstyle errors Please review this at http://gwt-code-reviews.appspot.com/724801/show Affected files: M dev/core/src/com/google/gwt/dev/jdt/TypeRefVisitor.java M dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java M user/

[gwt-contrib] Add ability to get Boolean types from Record (issue703802)

2010-07-28 Thread iscy
Reviewers: , Description: If you create a Record that needs to transfer a Boolean type, it fails. Here is the patch to fix it. Please review this at http://gwt-code-reviews.appspot.com/703802/show Affected files: user/src/com/google/gwt/valuestore/shared/impl/RecordJsoImpl.java Index: user/

[gwt-contrib] Re: Faster edit-distance computation in JsFunctionClusterer (issue669801)

2010-07-28 Thread avassalotti
http://gwt-code-reviews.appspot.com/669801/diff/20001/21006 File dev/core/src/com/google/gwt/dev/jjs/impl/JsFunctionClusterer.java (right): http://gwt-code-reviews.appspot.com/669801/diff/20001/21006#newcode62 dev/core/src/com/google/gwt/dev/jjs/impl/JsFunctionClusterer.java:62: if (code.startsW

[gwt-contrib] Re: Faster edit-distance computation in JsFunctionClusterer (issue669801)

2010-07-28 Thread spoon
http://gwt-code-reviews.appspot.com/669801/diff/20001/21006 File dev/core/src/com/google/gwt/dev/jjs/impl/JsFunctionClusterer.java (right): http://gwt-code-reviews.appspot.com/669801/diff/20001/21006#newcode62 dev/core/src/com/google/gwt/dev/jjs/impl/JsFunctionClusterer.java:62: if (code.startsW

[gwt-contrib] Re: Adding support for non-propagating events in Cell based widgets. In modern browsers, we make the... (issue720801)

2010-07-28 Thread rjrjr
http://gwt-code-reviews.appspot.com/720801/diff/1/4 File user/src/com/google/gwt/cell/client/EditTextCell.java (right): http://gwt-code-reviews.appspot.com/720801/diff/1/4#newcode231 user/src/com/google/gwt/cell/client/EditTextCell.java:231: } else if ("blur".equals(type)) { Are there really no

[gwt-contrib] Re: Make javax.validation available to gwt clients. (issue711801)

2010-07-28 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/711801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8427 committed - Fixed typo

2010-07-28 Thread codesite-noreply
Revision: 8427 Author: drfibona...@google.com Date: Wed Jul 28 13:15:35 2010 Log: Fixed typo http://code.google.com/p/google-web-toolkit/source/detail?r=8427 Modified: /wiki/CssResourceCookbook.wiki === --- /wiki/CssResourceCookbook.wiki Wed May 20 14:49

[gwt-contrib] Re: Renaming ListView.Delegate to ListView.DataProvider. setDataProvider() and setPager() now updat... (issue723801)

2010-07-28 Thread jlabanca
Fixing typo in reviewer rjrjr's email. http://gwt-code-reviews.appspot.com/723801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Renaming ListView.Delegate to ListView.DataProvider. setDataProvider() and setPager() now updat... (issue723801)

2010-07-28 Thread jlabanca
Reviewers: rjrjr_oogle.com, Description: Renaming ListView.Delegate to ListView.DataProvider. setDataProvider() and setPager() now update their delegates automatically. Adding overloads for setDataProvider() and setPager() to optionally choose not to initialize the delegates when they are set.

[gwt-contrib] Re: Fixing a bug in AbstractListViewAdapter where it does not inform new views of the current data s... (issue721801)

2010-07-28 Thread jlabanca
committed as r8425 http://gwt-code-reviews.appspot.com/721801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8426 committed - Call GZIPOutputStream.finish() from RpcServlet.processPost() to ensure...

2010-07-28 Thread codesite-noreply
Revision: 8426 Author: gwt.mirror...@gmail.com Date: Wed Jul 28 10:19:37 2010 Log: Call GZIPOutputStream.finish() from RpcServlet.processPost() to ensure the data received by the browser is properly formatted. Patch by: bobv Review by: tms Review at http://gwt-code-reviews.appspot.com/722801

[gwt-contrib] [google-web-toolkit] r8425 committed - Resubmitting this change because I accidentally included changes from ...

2010-07-28 Thread codesite-noreply
Revision: 8425 Author: jlaba...@google.com Date: Wed Jul 28 08:02:11 2010 Log: Resubmitting this change because I accidentally included changes from another patch the first time I submitted. Fixing a bug in AbstractListViewAdapter where it does not inform new views of the current data size.

[gwt-contrib] [google-web-toolkit] r8424 committed - Rolling back this change because it included changes from a different ...

2010-07-28 Thread codesite-noreply
Revision: 8424 Author: jlaba...@google.com Date: Wed Jul 28 07:12:59 2010 Log: Rolling back this change because it included changes from a different patch. Review at http://gwt-code-reviews.appspot.com/721801 http://code.google.com/p/google-web-toolkit/source/detail?r=8424 Modified: /trunk/

[gwt-contrib] [google-web-toolkit] r8423 committed - Fixing a bug in AbstractListViewAdapter where it does not inform new v...

2010-07-28 Thread codesite-noreply
Revision: 8423 Author: jlaba...@google.com Date: Wed Jul 28 06:51:41 2010 Log: Fixing a bug in AbstractListViewAdapter where it does not inform new views of the current data size. We now cache the data size and pass it to views as they are added. Review at http://gwt-code-reviews.appspot.com

[gwt-contrib] dialog box and other capture-related obscure issue

2010-07-28 Thread lkcl
[apologies i forgot about gwt-contributors group, i initially posted this on gwt users group] this is a courtesy message to inform the GWT team of a potential issue that you might like to investigate: http://code.google.com/p/google-web-toolkit/issues/detail?id=5167 i've been tracking this issue

[gwt-contrib] [google-web-toolkit] r8422 committed - 3 small things:...

2010-07-28 Thread codesite-noreply
Revision: 8422 Author: amitman...@google.com Date: Tue Jul 27 18:10:49 2010 Log: 3 small things: (a) fix checkstyle failures in bikeshed, (b) invoke checkstyle in bikeshed when checkstyle is run in trunk, (c) remove unnecessary @Override Patch by: amitmanjhi,unnurg Review by: unnurg,amitmanjhi h

[gwt-contrib] [google-web-toolkit] r8421 committed - Rollback update to Jetty7 since it is causing classloader problems in...

2010-07-28 Thread codesite-noreply
Revision: 8421 Author: amitman...@google.com Date: Tue Jul 27 17:24:40 2010 Log: Rollback update to Jetty7 since it is causing classloader problems in conjunction with Spring. Will update to Jetty 7.1.6 after fixing these problems. Patch by: jat Review by: amitmanjhi http://code.google.com/p/go

Re: [gwt-contrib] Re: GRIN scene graph for GWT

2010-07-28 Thread Nathan Wells
Thanks for that summary. Very cool project! Nathan Wells On Wed, Jul 28, 2010 at 10:54 AM, ggeorg wrote: > Yes hdcookbook project is a framework that helps seting up a blu-ray > java developemnt enevironment (Blu-ray discs use JavaME for building > menus based on Xlets kind of Applets, the name

[gwt-contrib] Re: - Refactors SpeedTracerLogger so that the start() and stop() methods are static (issue719801)

2010-07-28 Thread scottb
LGTM to me to, w/ minor nits that don't need any further review. http://gwt-code-reviews.appspot.com/719801/diff/18002/26011 File dev/core/src/com/google/gwt/dev/util/log/speedtracer/SpeedTracerLogger.java (right): http://gwt-code-reviews.appspot.com/719801/diff/18002/26011#newcode68 dev/core/s

[gwt-contrib] Re: GRIN scene graph for GWT

2010-07-28 Thread ggeorg
Yes hdcookbook project is a framework that helps seting up a blu-ray java developemnt enevironment (Blu-ray discs use JavaME for building menus based on Xlets kind of Applets, the name comes from JavaTV). GRIN is the scene graph that comes with hdcookbook framework and it is used for the UI. It is

[gwt-contrib] Re: Make javax.validation available to gwt clients. (issue711801)

2010-07-28 Thread nchalko
http://gwt-code-reviews.appspot.com/711801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Call GZIPOutputStream.finish() from RpcServlet.processPost() to ensure the data received by the ... (issue722801)

2010-07-28 Thread bobv
Reviewers: tms, Description: Call GZIPOutputStream.finish() from RpcServlet.processPost() to ensure the data received by the browser is properly formatted. Patch by: bobv Review by: tms Please review this at http://gwt-code-reviews.appspot.com/722801/show Affected files: M user/src/com/googl

[gwt-contrib] Re: Begin to convert DynaTableRF sample to using UiBinder. (issue698802)

2010-07-28 Thread bobv
Review requested. http://gwt-code-reviews.appspot.com/698802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Begin to convert DynaTableRF sample to using UiBinder. (issue698802)

2010-07-28 Thread bobv
Reviewers: Ray Ryan, Description: Begin to convert DynaTableRF sample to using UiBinder. Next step will be to add app-wide event bus to disentangle widget relationships. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/698802/show Affected files: M

[gwt-contrib] Re: - Refactors SpeedTracerLogger so that the start() and stop() methods are static (issue719801)

2010-07-28 Thread conroy
On 2010/07/28 07:11:01, zundel wrote: still LGTM http://gwt-code-reviews.appspot.com/719801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: GRIN scene graph for GWT

2010-07-28 Thread Nathan Wells
I'm a little confused... It seems like the project you link to has more to do with tv's and dvd's... is the browser the "screen" in this case? Also, what is Javelin? the Grin page links to it but it looks like an non-existent project? On Jul 27, 6:56 pm, ggeorg wrote: > OK, I will prepare a first

[gwt-contrib] Re: Fixing a bug in AbstractListViewAdapter where it does not inform new views of the current data s... (issue721801)

2010-07-28 Thread rice
LGTM http://gwt-code-reviews.appspot.com/721801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fixing a bug in AbstractListViewAdapter where it does not inform new views of the current data s... (issue721801)

2010-07-28 Thread jlabanca
Reviewers: Dan Rice, Description: Fixing a bug in AbstractListViewAdapter where it does not inform new views of the current data size. We now cache the data size and pass it to views as they are added. Please review this at http://gwt-code-reviews.appspot.com/721801/show Affected files: M us

[gwt-contrib] Re: - Refactors SpeedTracerLogger so that the start() and stop() methods are static (issue719801)

2010-07-28 Thread zundel
http://gwt-code-reviews.appspot.com/719801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors