Re: Using GWT for a large UI project

2010-09-02 Thread Maxim
Marius you wrote: but one of our goals is to use plain browser functionality, available on all devices. Recently I changed my mind a little bit in connection to that - this goal is more technical than commercial. Users want certain functionality, if functionality demands plugin - they will

Re: RPC SerializationException when going from GWT 1.7 to GWT 2.0.4

2010-09-02 Thread Blagoja Chavkoski
Hi, I would say...try with the normal implement Serializable but its important to add for the classes Uniq serilizationUID and i think will work... regards On Mon, Aug 30, 2010 at 11:35 PM, Ken Wielechowski ken.wielechow...@gmail.com wrote: In going from GWT 1.7 to GWT 2.0.4, I am getting

I18N with texts from db.

2010-09-02 Thread xworker
Hi all I want to build a system with I18N where the texts in key/value pairs wich I want to load from a webservice and cached in the server part of GWT. I have done this before in JSF applications with hashmaps and now I'm about to implement it in GWT. Which I18N construct would be best to use

Re: Deselect items in a CellTree with MultiSelectionModel

2010-09-02 Thread jaga
I got this to multiple selection to work properly by adding a ButtonCell adjacent to the CheckboxCell. The code is in Bike Shed. The ButtonCell is also bound to the Selection Model. This takes care of what seem to be two bugs: 1) the CheckboxCell is not firing a setFieldUpdater event 2) the

incubator paging scrolling table current page text box resize

2010-09-02 Thread mariyan nenchev
Hi, At the moment current page text box from incubator paging scrolling table is with static width. When the user enters number that is bugger part of the number will be hidden. How to make this text box resize dynamically according to the number length? Regards. -- You received this message

Layout is not displayed

2010-09-02 Thread Florian Rhomberg
Hello! Can someone tell me why the following code is only displayed if I start my application in Eclispse. When I compile my project and try the application in eclispe without gwt.codesvr=127.0.0.1:9997 or with a tomcat server the panel is empty. public class DiagnosisHomeDesktop {

Re: Piriti xml read error

2010-09-02 Thread Harald Pehl
Hi, the idea of the XPath expression is to select an element/node/ atrtribute which contains all necessary information for the mapping. In case of Bus.PickUpPointOptions you have to select a list of Option elements: public class Bus { public interface BusReader extends XmlReaderBus {} public

Serialization Exception on the Client with Bags

2010-09-02 Thread cokol
hello, I'm using TO of kind: Action { String a,b; ArrayListContainer list; } class Contianer implements IsSerializable { Integer i; MySerializableClass c; } and service: interface MyService implements RemoteService { void call(Action act); } which fails with exception (see below) when I

Re: CellTable and CeckboxCell

2010-09-02 Thread jaga
I got the multiple selection to work as I and Jocke want by adding a ButtonCell adjacent to the CheckboxCell. The code is in Bike Shed. The ButtonCell is also bound to the Selection Model. This takes care of what seem to be two bugs: 1) the CheckboxCell is not firing a setFieldUpdater event 2) the

How to run my DETAILED/PRETTY compiled GWT application locally / on app engine?

2010-09-02 Thread Ingo Jaeckel
hello everyone, i want to profile the client side code of my gwt application honeycrm. a lot of times i read i just have to compile my application with pretty or detailed output style. then i should run and profile it e.g. with firebug. compiling my app with another output style is easy i.e.

Re: Serialization Exception on the Client with Bags

2010-09-02 Thread cokol
SOLVED. see issue On 2 Sep., 11:56, cokol eplisc...@googlemail.com wrote: hello, I'm using TO of kind: Action {  String a,b;  ArrayListContainer list;} class Contianer implements IsSerializable {  Integer i;  MySerializableClass c; } and service: interface MyService implements

Re: Problems with gwt plugin and eclipse

2010-09-02 Thread TBirch
Alex, Thanks for your help. I've tried everything I can think of. I will just have to continue using an older version of eclipse and the gwt plugin for now as they work okay on both machines. Terry On Sep 1, 9:53 am, AlexG alexander.gauss.ax...@googlemail.com wrote: Hi TBirch, hmmm it really

TabLayoutPanel expand to fit content?

2010-09-02 Thread Falcon
I'm pretty new to the GWT layout system. Since I'm using standards mode I really should use TabLayoutPanel instead of TabPanel. However, I need the content area of each tab to fill all of the vertical and horizontal space of its parent. How do I accomplish that? Thanks! -- You received this

Howto access instance method from external JavaScript?

2010-09-02 Thread KaiWeing
Hello, I am looking for a way to post to my event bus via user defined javascript. This is what I came up with, but the event is not fired. What's wrong? // I call this during onModuleLoad public native void registerExternalEventSink() /*-{ $wnd.fireExternalEvent =

Re: Caching Images

2010-09-02 Thread Jeff Chimene
Your requirements aren't compatible w/ image bundle. It looks like you'll have to rely on the browser cache. On Tue, Aug 31, 2010 at 8:06 AM, pete superp...@geekcity.de wrote: Hello, I'm kind of confused how to proceed in the following scenario: I am writing on a card game, the cards have a

gwt-test-utills test case

2010-09-02 Thread suersh babu
Hi, I using eclipse 3.4.2 with gwt 2.0.4 ,to test my gwt i have decided to test using gwt-test-utils so i have edited pom.xml accordingly also i added all jar which needed. but when i test it gives this error , i am using junit 4. java.lang.NoClassDefFoundError: AbstractGWTEasyMockTest at

Re: Can not download gwt developer plugin

2010-09-02 Thread Chris Ramsdale
There was an update on our side yesterday and the Developer Plugin page has been restored. Please let us know if you still experience problems. -- Chris On Fri, Aug 27, 2010 at 5:47 PM, Chris Ramsdale cramsd...@google.comwrote: You can also use this link in the interim:

Re: How to run my DETAILED/PRETTY compiled GWT application locally / on app engine?

2010-09-02 Thread Chris Conroy
When you run from eclipse, you are running in DevMode which does not cause a recompile. If you compile your app as you like (with DETAILED or PRETTY), run from Eclipse, and then strip the ?gwt.codesvr fragment from your URL, you'll be served up the DETAILED or PRETTY compiled version that you

How can I develop GWT apps with GAE Python?

2010-09-02 Thread Shedokan
Hello, I am developing an app which is mainly based on ajax and has a backend of GAE Python. Currently I'm just compiling the App and copying it to the GAE directory, but it's just too much hassle waiting 20seconds to compile it each time instead of the live development mode. Is there any way of

Re: incubator paging scrolling table current page text box resize

2010-09-02 Thread mariyan nenchev
Any ideas? -- 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

Re: How to run my DETAILED/PRETTY compiled GWT application locally / on app engine?

2010-09-02 Thread ingo
hello chris, thank you so much for your explanation. i did not know for example that stripping away the ?gwt.codesrv fragment runs my gwt app in javascript mode. that is very very useful, thanks for the hint. i already identified some of my applications hotspots and fixed them! i summed up my

Re: Using GWT for a large UI project

2010-09-02 Thread lineman78
I completely agree with marius on the plugin requirement for silverlight. Also, until M$ decides to make a full version of Silverlight available on Linux it will never become popular. Since the majority of the people that use Linux are software devs, it would make sense that you would want to

Re: Speed-Optimization of an application (RPCs, Architecture)

2010-09-02 Thread Olivier TURPIN
in a near future if you need to play with command pattern you could find some interesting hints with thoses articles : - Tutorial explaining the basics of gwt-dispatch : http://borglin.net/gwt-project/?page_id=283 - Nice articles about batching with gwt-dispatch (by the M. David Chandler)

Re: Howto access instance method from external JavaScript?

2010-09-02 Thread Thomas Broyer
On Sep 2, 4:11 pm, KaiWeing kaiwe...@gmx.net wrote: Hello, I am looking for a way to post to my event bus via user defined javascript. This is what I came up with, but the event is not fired. What's wrong? // I call this during onModuleLoad public native void registerExternalEventSink()

Separate modules for separate views?

2010-09-02 Thread Riley
I'm making an application that will have two types of users, type A and type B. Type A users need MUCH MORE functionality than type B users - in fact, type B users will only be able to see a single screen, while type A will see more than ten. I don't want all of the stuff for type A users to be

How much do you charge for your GWT/development services?

2010-09-02 Thread Jambi
Hey guys, I know that this isn´t maybe the right place to talk about money. But we are offering a service like any other (but maybe in a better way ;) ). I´m just interested how much you guys think is an average price/hour to charge for a GWT project (And let´s say that you have a average

Re: Separate modules for separate views?

2010-09-02 Thread Riley
Naturally, though I'd been looking for these answers for an hour before I posted here, I discovered that if I used the google plugin to create a new HTML page, it automatically configured whatever it needs to configure to support two separate HTML pages with different modules different entry

Re: UiBinder causes build to fail with out of memory

2010-09-02 Thread Jeff Chimene
It's entirely possible you're at a boundary. I've seen the same behavior: one more entry in a uibinder file and out of memory. You don't say what your current stack size is. I use -Xmx512m -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

ChangeHandler for Element?

2010-09-02 Thread ams
I'd like to add a ChangeHandler to a SelectElement, instead of turning it into a ListBox. I've tried ListBox.wrap, but that gets an assertion since it is not attached to the RootPanel. It seems you could do a JSNI call to but I've not figured this out yet. Here is a small sample to under stand.

Re: Separate modules for separate views?

2010-09-02 Thread yeti
No, but GWT recommended us to merge trivial modules into one TOP module to make sure the loaded sequence. Undoubtedly, your way is correct as well. I have a project with the same logic, and for it, I created several Layouts and swiched them on TOP module via commands from server-side code that

Getting Started Doc - Server Error

2010-09-02 Thread Kenneth Jacker
[ Ubuntu 10.4/64bit; gwt-2.0.4; tomcat-6.0.24 ] I've been working - step-by-step -- through the Get Started with the GWT SDK document: http://code.google.com/webtoolkit/gettingstarted.html The app works fine in Development Mode, but fails with the following dialog when I run in

[gwt-contrib] Re: Fix the escaping done by UrlBuilder. (issue754803)

2010-09-02 Thread t . broyer
I don't quite understand what this change in RemoteServiceServlet has to do with UrlBuilder... http://gwt-code-reviews.appspot.com/754803/diff/21001/22002 File user/src/com/google/gwt/user/server/rpc/RemoteServiceServlet.java (right):

[gwt-contrib] Re: Fix DevMode memory leaks by attaching cache lifetimes to the GeneratorContext (issue826802)

2010-09-02 Thread scottb
Okay, so here's my main issue with the general idea. As far as I can tell, the lifetime of the 'storage' is the same as the lifetime of generator instances. I sort of see how it's expedient to have it accessible via GeneratorContext... however, the downside is you give up static typing and red

[gwt-contrib] Re: Add SafeHtml support to ui widgets. (issue829801)

2010-09-02 Thread pdr
http://gwt-code-reviews.appspot.com/829801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes a strange compiler bug where types generated into new packages may not be found. (issue831802)

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

[gwt-contrib] [google-web-toolkit] r8697 committed - Remove the unnecessary dependency of the expenses sample on AspectJ....

2010-09-02 Thread codesite-noreply
Revision: 8697 Author: amitman...@google.com Date: Thu Sep 2 04:06:39 2010 Log: Remove the unnecessary dependency of the expenses sample on AspectJ. Patch by: amitmanjhi Review by: rjrjr (tbr) http://code.google.com/p/google-web-toolkit/source/detail?r=8697 Modified:

[gwt-contrib] Re: Fix DevMode memory leaks by attaching cache lifetimes to the GeneratorContext (issue826802)

2010-09-02 Thread conroy
On 2010/09/02 13:44:49, scottb wrote: Okay, so here's my main issue with the general idea. As far as I can tell, the lifetime of the 'storage' is the same as the lifetime of generator instances. I thought we agreed after discussing the previous patch for this that the GeneratorContext was

[gwt-contrib] Re: Add SafeHtml support to ui widgets. (issue829801)

2010-09-02 Thread rice
http://gwt-code-reviews.appspot.com/829801/diff/7001/8002 File user/src/com/google/gwt/user/User.gwt.xml (right): http://gwt-code-reviews.appspot.com/829801/diff/7001/8002#newcode51 user/src/com/google/gwt/user/User.gwt.xml:51: inherits name=com.google.gwt.safehtml.SafeHtml / Maybe alphabetize?

[gwt-contrib] Re: Fix DevMode memory leaks by attaching cache lifetimes to the GeneratorContext (issue826802)

2010-09-02 Thread conroy
http://gwt-code-reviews.appspot.com/826802/diff/3001/4001 File dev/core/src/com/google/gwt/core/ext/GeneratorContext.java (right): http://gwt-code-reviews.appspot.com/826802/diff/3001/4001#newcode88 dev/core/src/com/google/gwt/core/ext/GeneratorContext.java:88: * com / google / gwt / core /

[gwt-contrib] Re: Fixes a strange compiler bug where types generated into new packages may not be found. (issue831802)

2010-09-02 Thread zundel
http://gwt-code-reviews.appspot.com/831802/diff/5001/3004 File dev/core/src/com/google/gwt/dev/jdt/AbstractCompiler.java (right): http://gwt-code-reviews.appspot.com/831802/diff/5001/3004#newcode257 dev/core/src/com/google/gwt/dev/jdt/AbstractCompiler.java:257: } Are we going to need to loop

[gwt-contrib] Re: Fixes a strange compiler bug where types generated into new packages may not be found. (issue831802)

2010-09-02 Thread scottb
http://gwt-code-reviews.appspot.com/831802/diff/5001/3004 File dev/core/src/com/google/gwt/dev/jdt/AbstractCompiler.java (right): http://gwt-code-reviews.appspot.com/831802/diff/5001/3004#newcode257 dev/core/src/com/google/gwt/dev/jdt/AbstractCompiler.java:257: } The short answer is no: the

[gwt-contrib] Re: Fixes a strange compiler bug where types generated into new packages may not be found. (issue831802)

2010-09-02 Thread Eric Ayers
LGTM2 On Thu, Sep 2, 2010 at 11:30 AM, sco...@google.com wrote: http://gwt-code-reviews.appspot.com/831802/diff/5001/3004 File dev/core/src/com/google/gwt/dev/jdt/AbstractCompiler.java (right): http://gwt-code-reviews.appspot.com/831802/diff/5001/3004#newcode257

[gwt-contrib] [google-web-toolkit] r8698 committed - Fixes a strange compiler bug where types generated into new packages m...

2010-09-02 Thread codesite-noreply
Revision: 8698 Author: sco...@google.com Date: Thu Sep 2 05:59:40 2010 Log: Fixes a strange compiler bug where types generated into new packages may not be found. The bug happened to me when generating types into a package which didn't exist on disk, in this

[gwt-contrib] Re: Add SafeHtml support to ui widgets. (issue829801)

2010-09-02 Thread jlabanca
http://gwt-code-reviews.appspot.com/829801/diff/7001/8003 File user/src/com/google/gwt/user/client/ui/ButtonBase.java (right): http://gwt-code-reviews.appspot.com/829801/diff/7001/8003#newcode50 user/src/com/google/gwt/user/client/ui/ButtonBase.java:50: extra spaces

[gwt-contrib] [google-web-toolkit] r8699 committed - Revert r8691 due to api break...

2010-09-02 Thread codesite-noreply
Revision: 8699 Author: rj...@google.com Date: Thu Sep 2 06:12:48 2010 Log: Revert r8691 due to api break [Was: Add debugging information to CssResource.] http://code.google.com/p/google-web-toolkit/source/detail?r=8699 Deleted:

[gwt-contrib] [google-web-toolkit] r8700 committed - This should have been in r8671

2010-09-02 Thread codesite-noreply
Revision: 8700 Author: fabb...@google.com Date: Thu Sep 2 09:18:59 2010 Log: This should have been in r8671 http://code.google.com/p/google-web-toolkit/source/detail?r=8700 Modified: /trunk/eclipse/settings/code-style/gwt-checkstyle.xml === ---

[gwt-contrib] Re: Adding support for Direction.LINE_START/END to DockLayoutPanel and SplitLayoutPanel. (issue828801)

2010-09-02 Thread jlabanca
http://gwt-code-reviews.appspot.com/828801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding support for Direction.LINE_START/END to DockLayoutPanel and SplitLayoutPanel. (issue828801)

2010-09-02 Thread jlabanca
Patch Set 2 updates DOMRtlTest, which was never really in RTL mode until DockLayoutPanelRtlTest came along. The body isn't put into RTL mode until RootPanel.get() is called, but DOMRtlTest never called it. I also renamed DockLayoutPanelTestRtl to DockLayoutPanelRtlTest.

[gwt-contrib] [google-web-toolkit] r8701 committed - Support adding code-gen/runtime related classes directly to the second...

2010-09-02 Thread codesite-noreply
Revision: 8701 Author: to...@google.com Date: Thu Sep 2 07:29:17 2010 Log: Support adding code-gen/runtime related classes directly to the secondary JDT compilation for the GWT AST. Review at http://gwt-code-reviews.appspot.com/830801

[gwt-contrib] Fixes a bug in LayoutImplIE8 where we convert the unit conversition to an integer before multipl... (issue834801)

2010-09-02 Thread jlabanca
Reviewers: rice, Description: Fixes a bug in LayoutImplIE8 where we convert the unit conversition to an integer before multiplying by the height/width, resulting in too much rounding. For example, 12pt becomes 12px instead of 15px because the conversion factor (1.33) is converted to 1. We now

[gwt-contrib] Re: Fixes a bug in LayoutImplIE8 where we convert the unit conversition to an integer before multipl... (issue834801)

2010-09-02 Thread rice
LGTM http://gwt-code-reviews.appspot.com/834801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix DevMode memory leaks by attaching cache lifetimes to the GeneratorContext (issue826802)

2010-09-02 Thread jat
I'll review the rest separately, but I wanted to get this to you first. http://gwt-code-reviews.appspot.com/826802/diff/3001/4001 File dev/core/src/com/google/gwt/core/ext/GeneratorContext.java (right): http://gwt-code-reviews.appspot.com/826802/diff/3001/4001#newcode74

[gwt-contrib] Re: Fix DevMode memory leaks by attaching cache lifetimes to the GeneratorContext (issue826802)

2010-09-02 Thread jat
The i18n stuff looks good except where commented. http://gwt-code-reviews.appspot.com/826802/diff/3001/4004 File dev/core/src/com/google/gwt/dev/javac/StandardGeneratorContext.java (right): http://gwt-code-reviews.appspot.com/826802/diff/3001/4004#newcode402

[gwt-contrib] RR : Factor a bean-like-object editor framework out of the RequestFactory editor work. (issue835801)

2010-09-02 Thread bobv
Reviewers: rjrjr, Message: Review requested. The SimpleBeanEditorDriver will be used to test general Editor framework behavior without requiring the use of RequestFactory. Description: Factor a bean-like-object editor framework out of the RequestFactory editor work. Add editor.client.adapters

[gwt-contrib] [google-web-toolkit] r8704 committed - Missing file from SafeHtml work + whitespace fix

2010-09-02 Thread codesite-noreply
Revision: 8704 Author: r...@google.com Date: Thu Sep 2 09:08:23 2010 Log: Missing file from SafeHtml work + whitespace fix http://code.google.com/p/google-web-toolkit/source/detail?r=8704 Modified:

[gwt-contrib] Re: Add SafeHtml support to ui widgets. (issue829801)

2010-09-02 Thread pdr
http://gwt-code-reviews.appspot.com/829801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8705 committed - Fixes a bug in LayoutImplIE8 where we convert the unit conversition to...

2010-09-02 Thread codesite-noreply
Revision: 8705 Author: jlaba...@google.com Date: Thu Sep 2 09:39:09 2010 Log: Fixes a bug in LayoutImplIE8 where we convert the unit conversition to an integer before multiplying by the height/width, resulting in too much rounding. For example, 12pt becomes 12px instead of 15px because the

[gwt-contrib] Adding RTL support to the images used in CellTree. Removing automatic keyboard focus from the co... (issue836801)

2010-09-02 Thread jlabanca
Reviewers: rice, Description: Adding RTL support to the images used in CellTree. Removing automatic keyboard focus from the constructor because it can result in an IndexOutOfBoundsEception if the tree nodes are loaded asynchronously. Please review this at

[gwt-contrib] Re: Fix DevMode memory leaks by attaching cache lifetimes to the GeneratorContext (issue826802)

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

[gwt-contrib] Re: Adding RTL support to the images used in CellTree. Removing automatic keyboard focus from the co... (issue836801)

2010-09-02 Thread rice
LGTM http://gwt-code-reviews.appspot.com/836801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: RR : Factor a bean-like-object editor framework out of the RequestFactory editor work. (issue835801)

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

[gwt-contrib] [google-web-toolkit] r8707 committed - Added tests for constraint violations....

2010-09-02 Thread codesite-noreply
Revision: 8707 Author: amitman...@google.com Date: Thu Sep 2 10:56:13 2010 Log: Added tests for constraint violations. Patch by: amitmanjhi Review by: robertvawter,fabbott http://code.google.com/p/google-web-toolkit/source/detail?r=8707 Modified: /trunk/user/build.xml

[gwt-contrib] Refactoring the Showcase sample to use standards mode, and make use of LayoutPanels. The new Sho... (issue837801)

2010-09-02 Thread jlabanca
Reviewers: rice, Description: Refactoring the Showcase sample to use standards mode, and make use of LayoutPanels. The new Showcase looks different, but the features are the same. The main menu is now a CellTree backed by a TreeViewModel. The Application class, which used to perform active

[gwt-contrib] Re: Fix the escaping done by UrlBuilder. (issue754803)

2010-09-02 Thread t . broyer
In brief: URIs (RFC 3986) is a mess, and back to URL.encode for the path in UrlBuilder? (with a second pass though) http://gwt-code-reviews.appspot.com/754803/diff/21001/22002 File user/src/com/google/gwt/user/server/rpc/RemoteServiceServlet.java (right):

[gwt-contrib] Renamed *Record* to *Proxy*. Also renamed variables in a few classes. (issue825802)

2010-09-02 Thread amitmanjhi
Reviewers: rjrjr, Description: Renamed *Record* to *Proxy*. Also renamed variables in a few classes. Renamed DataTransferObject - ProxyFor. patch by: amitmanjhi Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/825802/show Affected files: M

[gwt-contrib] Re: Fix DevMode memory leaks by attaching cache lifetimes to the GeneratorContext (issue826802)

2010-09-02 Thread jat
LGTM for i18n parts. http://gwt-code-reviews.appspot.com/826802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Renamed *Record* to *Proxy*. Also renamed variables in a few classes. (issue825802)

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

[gwt-contrib] Re: Renamed *Record* to *Proxy*. Also renamed variables in a few classes. (issue825802)

2010-09-02 Thread rjrjr
LGTM On 2010/09/02 23:35:48, amitmanjhi wrote: http://gwt-code-reviews.appspot.com/825802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8708 committed - Add @UiChild annotation to specify how UiBinder should add a child ele...

2010-09-02 Thread codesite-noreply
Revision: 8708 Author: son...@google.com Date: Thu Sep 2 13:27:55 2010 Log: Add @UiChild annotation to specify how UiBinder should add a child element. Patch by: sonnyf Reviw by: bobv, rjrjr Review at http://gwt-code-reviews.appspot.com/794801

[gwt-contrib] Re: Change UiBinder Message generation to use consistent examples for HTML and Widget placeholders t... (issue838801)

2010-09-02 Thread rjrjr
Wow, nice to see it's such a small change. And using tag rather than span is a good choice. Rather than having that funky protected field, how about adding an overload of nextPlaceholder that doesn't take an example, and defaults to tag On 2010/09/02 23:40:14, mbx wrote:

[gwt-contrib] [google-web-toolkit] r8709 committed - Rolling back the following due to test failures:...

2010-09-02 Thread codesite-noreply
Revision: 8709 Author: j...@google.com Date: Thu Sep 2 14:24:35 2010 Log: Rolling back the following due to test failures: Added tests for constraint violations. Patch by: amitmanjhi Review by: robertvawter,fabbott http://code.google.com/p/google-web-toolkit/source/detail?r=8709 Modified:

[gwt-contrib] incubator and gwt 2.1

2010-09-02 Thread Cameron Braid
What is the plan to bring incubator into compatability with gwt 2.1 ? Cheers Cameron -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Clarify EditorDriver behavior with combinations of Editor mix-in interfaces through brute-force ... (issue840801)

2010-09-02 Thread bobv
Reviewers: rjrjr, Message: Review requested. Description: Clarify EditorDriver behavior with combinations of Editor mix-in interfaces through brute-force testing. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/840801/show Affected files: M

[gwt-contrib] Re: Clarify EditorDriver behavior with combinations of Editor mix-in interfaces through brute-force ... (issue840801)

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

[gwt-contrib] [google-web-toolkit] r8710 committed - Clarify EditorDriver behavior with combinations of Editor mix-in inter...

2010-09-02 Thread codesite-noreply
Revision: 8710 Author: b...@google.com Date: Thu Sep 2 16:22:41 2010 Log: Clarify EditorDriver behavior with combinations of Editor mix-in interfaces through brute-force testing. Patch by: bobv Review by: rjrjr Review at http://gwt-code-reviews.appspot.com/840801

[gwt-contrib] RR: Add statistics to optimizers (issue841801)

2010-09-02 Thread zundel
Reviewers: scottb, robertvawter, cromwellian, Description: RR: Add statistics to optimizers Updates the compiler optimizers to returns statistics about each pass instead of a simple boolean. This could be used to analyze the effectiveness of an individual optimizer, tune the compiler for code

[gwt-contrib] Re: RR: Add statistics to optimizers (issue841801)

2010-09-02 Thread cromwellian
On 2010/09/03 03:38:46, zundel wrote: Just a general comment, if you want to get even more granularity, look at this old path of mine, which instrumented MethodInliner to give really good information on exactly how many times something was inlined vs not, and a count of the failure types, which

[gwt-contrib] Re: RR: Add statistics to optimizers (issue841801)

2010-09-02 Thread Eric Ayers
I'm looking for feedback on this proposed change, mainly, is the statistical information worth the added complexity? Currently, this only dumps out a diagnostic when you specify -Dgwt.jjs.traceMethods=com.google.gwt.dev.jjs.JavaToJavaScriptCompiler.optimize on the Compiler command line.