Re: Dev Plugin for Firefox 5

2011-07-15 Thread tdk
On 14 Jul., 15:16, Thomas Broyer t.bro...@gmail.com wrote: The latest version of the plugin is compatible with Firefox 5. I use it every working day. what's the version number of the plugin? Mine is 1.0.10401 and when I installed FF 5 it complained that this plugin is not compatible with FF 5

Re: Dev Plugin for Firefox 5

2011-07-15 Thread Michael Vogt
Hello. what's the version number of the plugin? Mine is 1.0.10401 and when I installed FF 5 it complained that this plugin is not compatible with FF 5 and the disabled it. I just checked. I have the same versions (FF and plugin) running here, and it works fine. Unfortunately don't know what

Re: is there a way to identify clickevent coming from which button?

2011-07-15 Thread Abduxkur Ablimit
public XXButton extend Button{ private long id; // getter setter } From: Jim Douglas jdou...@basis.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Tuesday, July 12, 2011 12:53 AM Subject: Re: is there a way to identify clickevent coming

Requestfactory: Filter results

2011-07-15 Thread opn
Hello, I am using RequestFactory quite successfully in my project so far to fetch all kind of data. To populate the relationships between the entities the only way I know is to use .with(this).with(that). I am a bit concerned about that, because the number of data will grow over the time and I

Re: GWT 2.4: RequestFactory versus GWT-RPC

2011-07-15 Thread Thomas Broyer
Hmm, shouldn't it have been for trunk? I believe @ExtraTypes and polymorphism support are not in 2.3, only in the upcoming 2.4. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Using TextResources in UiBinder

2011-07-15 Thread Thomas Broyer
ui:text from={res.myTextResource.getText / ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/-PZ3Xd1zRNoJ. To post to this group, send email to

Re: Cloning an array?

2011-07-15 Thread Thomas Broyer
System.arraycopy *is* emulated. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/7JWDyHuF-Q8J. To post to this group, send email to

Re: Dev Plugin for Firefox 5

2011-07-15 Thread Thomas Broyer
Try installing from http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi Also, it just happened to me that Windows might not be supported. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT Editor with dynamic ListBox problem

2011-07-15 Thread Mauro Bertapelle
The subject of setValue is not a list of acceptable values but the single item in the model data Use a ValueListBox, and in presenter call setAcceptableValues to fill list box before calling driver.edit On Jul 15, 7:48 am, vinayak kulkarni bkvina...@gmail.com wrote: Hi, Problem: How to use

Re: best architecture for GWT + Spring

2011-07-15 Thread Ernesto Reig
But you are talking about option #2 with GWT-RPC, what about option #2 with RequestFactory? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this

Re: GWT Editor with dynamic ListBox problem

2011-07-15 Thread vinayak kulkarni
I agree with you to call setAcceptableValue() before driver.edit But, i have a different problem.. I need to edit the subEditor, which is ValueListBox Presenter call driver.edit() on a widget ModelView. ModelView has inner widget(sub editor) ValueListBox ex: ModelView implements EditorModel

Re: GWT Editor with dynamic ListBox problem

2011-07-15 Thread Mauro Bertapelle
In View define a: HasConstrainedValue getMyListValueWidget(); in Presenter: view.getMyListValueWidget().setAcceptableValue(values); driver.edit(); On Jul 15, 11:16 am, vinayak kulkarni bkvina...@gmail.com wrote: I agree with you to call setAcceptableValue() before driver.edit But, i have a

GWT compiler error with ListType

2011-07-15 Thread pierre
Hi all, I have the following error from GWT compiler, event if the User module is included: __ Compiling module com.soladhoc.friends.Friends Validating newly compiled units [ERROR] Errors in 'file:/C:/Users/Pierre/workspace-GAE/Friends/

Re: GWT compiler error with ListType

2011-07-15 Thread Magno Machado
Looks like you're referencing a server-side class On Fri, Jul 15, 2011 at 7:22 AM, pierre phper...@gmail.com wrote: Hi all, I have the following error from GWT compiler, event if the User module is included: __ Compiling module com.soladhoc.friends.Friends

Aw: GWT compiler error with ListType

2011-07-15 Thread Jens
You probably imported something wrong in your NamedListProxy file. You have imported com.google.gwt.i18n.*server*.Type.ListType but every code thats in a *server* package is not seen by the GWT compiler and thats why you get that error. You have to remove that import in your NamedListProxy. --

Place Parameters

2011-07-15 Thread Craig Greenhalgh
Hi, Whats the best way to pass parameters from one place/activity to another place/activity ? I have a simple list place and would like to link into a view place Many thanks Craig -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Aw: Place Parameters

2011-07-15 Thread Jens
In your ListActivity just call placeController.goTo(new DetailPlace(parameters)) when an item is selected in the list. The ListActivity define the parameter values and the DetailActivity uses them. Is that what you mean? -- J. -- You received this message because you are subscribed to the

Re: GWT Editor with dynamic ListBox problem

2011-07-15 Thread Tom Meech
I've also been wondering about the best practice when using ListBox widgets and editors. My concern is when widgets in an editor have some dependencies. For example, country and city listboxes with the values of the city listbox dependant on the selected country. The best way I can think of

Re: Need suggestions on supporting both Web and Desktop front-end.

2011-07-15 Thread Warren Tang
The info is quite valuable. Thanks. BTW. The application shows blank page in IE9 but works fine in the latest Firefox and Chrome. To Alain: By run real java code I mean the java code (business logic) should not be compiled to javascript (with the GWT compiler). Instead it should run natively

my biggest problem with gwt

2011-07-15 Thread Dennis Haupt
it's the speed. not the execution speed, that one is good enough. what i mean is the compilation speed. compiling my complete java project takes 30 seconds. compiling the tiny gwt part of it takes 91 seconds. activating the hosted mode takes about 1-2 minutes (didn't measure, feels like it).

Re: best architecture for GWT + Spring

2011-07-15 Thread Tom Meech
I've been using GWT-Dispatch http://code.google.com/p/gwt-dispatch with Spring and have been very happy with the results. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: my biggest problem with gwt

2011-07-15 Thread Juan Pablo Gardella
mmm I work in this manner. I use maven, but is the same. 1) Make the war (mvn package). Only the first time. 2) Start dev mode. 3) Open browser (I use IE, is the fastest in dev mode). Wait at first time a minute. 4) Test the app and modify code. 5) Refresh page in IE. Wait 10s aprox. 6) Repeat 4)

Re: my biggest problem with gwt

2011-07-15 Thread Aidan O'Kelly
There is a google IO session which covers speeding up the compile process during development, it is in the second half of a talk on the compiler in general. http://www.youtube.com/watch?v=qT6ZsQBM7kY Also, if you are working on client side code, a lot of the time you don't need to go through the

Re: my biggest problem with gwt

2011-07-15 Thread Rob Coops
On Fri, Jul 15, 2011 at 1:23 PM, Dennis Haupt d.haup...@googlemail.comwrote: it's the speed. not the execution speed, that one is good enough. what i mean is the compilation speed. compiling my complete java project takes 30 seconds. compiling the tiny gwt part of it takes 91 seconds.

Re: best architecture for GWT + Spring

2011-07-15 Thread Juan Pablo Gardella
I vote option #2 with gwt-dispatch too. 2011/7/15 Tom Meech tom.me...@gmail.com I've been using GWT-Dispatch http://code.google.com/p/gwt-dispatch with Spring and have been very happy with the results. -- You received this message because you are subscribed to the Google Groups Google Web

Re: my biggest problem with gwt

2011-07-15 Thread dreamer
=activating the hosted mode takes about 1-2 minutes (didn't measure, feels like it). debugging like this takes forever. Yep. Documentation says use this mode always during development, never to compile. Bringing up dev mode URL is taking time (with debug option). Not sure selecting particular

Re: my biggest problem with gwt

2011-07-15 Thread Alain Ekambi
I m pretty sure the GWT team is allready on making dev mode run even faster. I heard they are obsessed about speed @Google :) But when you think about it a second what devmode does you will see that performance is pretty good right now. I mean this is Javabyte code remotelly manipulating your

Re: my biggest problem with gwt

2011-07-15 Thread vinayak kulkarni
This is because GWT compiles the javascript for all the browsers.. around 5 browsers - 10 permutations.. For the development mode, you can compile only for one browser. Ex: for IE, use the below property in *.gwt.xml file This would reduce your compile time.. -- You received this message

Re: my biggest problem with gwt

2011-07-15 Thread vinayak kulkarni
http://www.coderanch.com/t/480416/GWT/Improved-Compiler-Performance-GWT-Reduce -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/tW9IXgx_VHQJ. To

Re: my biggest problem with gwt

2011-07-15 Thread Magno Machado
For compiler speed, on development builds you can reduce the number of permutations (restrict user agents, locales, etc) I have a sample app here which does that: https://bitbucket.org/magnomp/gradlegwt, but uses Gradle for build. Anyway, most of the time you will be using devmode, not the

Re: Internal Compiler Error / Xerces

2011-07-15 Thread dreamer
Hi, Did you see more in stack trace beyond line 81 ? There must be some thing Caused by. = Abstract method error - as per javadoc Thrown when an application tries to call an abstract method Yes this incompatibility between jars and some time jvm or simply non implemented abstract method I

Re: Internal Compiler Error / Xerces

2011-07-15 Thread Jörn Gersdorf
Hi all, thank you for your hints. I throw out the EAR-Lib path from the project's classpath (where JBoss' XercesImpl.jar was in) and now I'm down to a different error. My current problem is that the GWT compiler started from the Google Eclipse Plugin seems to use the project's classpath. Now in

Re: GWT 2.4: RequestFactory versus GWT-RPC

2011-07-15 Thread Elhanan Maayan
considering it's talking about requestfactory-server.jar hmm, pretty much yea:) (is 2.4 THAT close?) On Fri, Jul 15, 2011 at 11:38 AM, Thomas Broyer t.bro...@gmail.com wrote: Hmm, shouldn't it have been for trunk? I believe @ExtraTypes and polymorphism support are not in 2.3, only in the

Duplicate GWT-RPC requests?

2011-07-15 Thread Néstor Boscán
Hi I have an application that looks like is duplicating the GWT-RPC request code. Of course it could be a number of other reasons but I wanted to ask if anyone has seen a case where duplicate GWT-RPC requests occurs?. Regards, Néstor Boscán -- You received this message because you are

Re: A gwt-sample. Integrate Spring, JPA2.

2011-07-15 Thread Juan Pablo Gardella
Thanks for the correction :) On Jul 15, 12:27 am, Craig Mitchell craig...@gmail.com wrote: This is the active thread:   https://groups.google.com/forum/#!topic/google-web-toolkit/kZwRAds9two -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Using TextResources in UiBinder

2011-07-15 Thread Isaac Truett
Looks like ui:text was added last year. There's also a ui:safehtml a few months ago, but that doesn't appear to have made it into a release yet (?). @David Is there documentation for UiBinder beyond Declarative Layout with UiBinderhttp://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html

Re: CellTree: Horizontal Scrollbar impossible?

2011-07-15 Thread Jeff Larsen
You can always walk up the dom and change the div. It is kinda hacky, but it will work. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Dev Plugin for Firefox 5

2011-07-15 Thread tdk
On 15 Jul., 10:51, Thomas Broyer t.bro...@gmail.com wrote: Try installing fromhttp://code.google.com/p/google-web-toolkit/source/browse/trunk/plugi... Also, it just happened to me that Windows might not be supported. great, it now works! thanks a lot, Tom. Now if I could find an updated

Re: Aw: Place Parameters

2011-07-15 Thread Craig Greenhalgh
I've got the link working and add parameters to my place. I use gin so I have placeProviders: TypeViewPlace viewPlace = typeViewPlaceProvider.get(); viewPlace.setId(type.getId()); placeController.goTo(viewPlace); How in my ViewActivity to I get these parameters back in then load

CheckBoxes with Labels in CellList

2011-07-15 Thread Alexander Orlov
I want to build a CheckBox List like... |===| | x label0 | | x label1 | | x label2 | |===| ...using CellList and I've done the following: { final ListBoolean checks = Arrays.asList(true, false, true, true, false); final CheckboxCell checkboxCell = new

Re: Dev Plugin for Firefox 5

2011-07-15 Thread Chris Conroy
Windows is supported. Also, the trunk prebuilt xpi and the one served through the auto updater are exactly the same (I just double checked this myself) For version 1.0.10401, the sha1 sum is: fdae31ce05d5df5aae55abe62af7bb8f4143e0a8 The only explanation I can think is perhaps you installed an

how to access all checkboxes that have a name that begins with abc?

2011-07-15 Thread Dennis Haupt
hi community, i'm in a gwt module that is part of a bigger page, and i need to know which checkboxes that are on this page are selected. i know what the names of these boxes are, but i don't know how many there are. how can i a) get them all and b) find out which ones are checked from inside my

Re: my biggest problem with gwt

2011-07-15 Thread Dennis Haupt
that helped most, thanks 2011/7/15 vinayak kulkarni bkvina...@gmail.com This is because GWT compiles the javascript for all the browsers.. around 5 browsers - 10 permutations.. For the development mode, you can compile only for one browser. Ex: for IE, use the below property in *.gwt.xml

Re: my biggest problem with gwt

2011-07-15 Thread Dennis Haupt
switching to dev mode took 41 seconds, chrome became responsive again about ~30 seconds after that. gut feeling wins. 2011/7/15 Rob Coops rco...@gmail.com On Fri, Jul 15, 2011 at 1:23 PM, Dennis Haupt d.haup...@googlemail.comwrote: it's the speed. not the execution speed, that one is good

Aw: Re: Aw: Place Parameters

2011-07-15 Thread Jens
In your ActivityMapper's getActivity(Place place) method you have to set the Place into your activity before returning it. I also use GIN so I have ActivityProviders in my ActivityMapper. All my activities extend a custom super class that provides a setPlace(Place place) method and a typically

Re: RequestFactory: Client-side Methods in EntityProxy/ValueProxy

2011-07-15 Thread Thomas Broyer
Put it in a helper class, passing a FooProxy as argument (or an interface implemented by both Foo and FooProxy, if you want to share the code with the server). I can't imagine any other mean. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: my biggest problem with gwt

2011-07-15 Thread Paul Robinson
Chrome is slow in dev mode. Try firefox instead. On 15/07/11 16:12, Dennis Haupt wrote: switching to dev mode took 41 seconds, chrome became responsive again about ~30 seconds after that. gut feeling wins. -- You received this message because you are subscribed to the Google Groups Google

Re: my biggest problem with gwt

2011-07-15 Thread dreamer
just off topic. what is life cycle in dev mode? Is it java byte code all the way to browser (plug in )? (I mean no java script any where) On Jul 15, 8:24 am, Paul Robinson ukcue...@gmail.com wrote: Chrome is slow in dev mode. Try firefox instead. On 15/07/11 16:12, Dennis Haupt wrote:

Re: how to access all checkboxes that have a name that begins with abc?

2011-07-15 Thread dreamer
One way is build your own collection (ArrayList) and make accessible, with setter and getter ,just like in any java class. On Jul 15, 8:07 am, Dennis Haupt d.haup...@googlemail.com wrote: hi community, i'm in a gwt module that is part of a bigger page, and i need to know which checkboxes that

Re: Duplicate GWT-RPC requests?

2011-07-15 Thread dreamer
Check in hosted mode with debug. sure multiple events are plugged in some where. On Jul 15, 6:01 am, Néstor Boscán nesto...@gmail.com wrote: Hi I have an application that looks like is duplicating the GWT-RPC request code. Of course it could be a number of other reasons but I wanted to ask if

Re: my biggest problem with gwt

2011-07-15 Thread Chris Conroy
http://code.google.com/p/google-web-toolkit/wiki/DesignOOPHM gives a decent overview and specs out the wire protocol. High level: The bootstrap page detects the ?gwt.codesvr= fragment, and tries to load the plugin. The plugin then validates the permissions. Assuming the permissions are good, it

Re: GWT 2.4: RequestFactory versus GWT-RPC

2011-07-15 Thread David Chandler
We jumped the gun a bit, but 2.4 is pretty close to becoming latest :-) /dmc On Friday, July 15, 2011, Thomas Broyer wrote: Hmm, shouldn't it have been for trunk? I believe @ExtraTypes and polymorphism support are not in 2.3, only in the upcoming 2.4. -- You received this message because

Re: how to access all checkboxes that have a name that begins with abc?

2011-07-15 Thread Aidan O'Kelly
import com.google.gwt.dom.client.Document; import com.google.gwt.dom.client.Element; import com.google.gwt.dom.client.NodeList; . . . NodeListElement elementList = Document.get().getElementsByTagName(input); This will give you a list of all HTML 'input' elements on the page, you can loop through

Aw: how to access all checkboxes that have a name that begins with abc?

2011-07-15 Thread Jens
I guess you have to use something like: for(Element e : Document.get().getElementsByTagName(input)) { if(e instanceof InputElement) { InputElement ie = (InputElement) e; if(checkbox.equals(ie.getType()) ie.getName().startsWith(abc) (ie.isChecked() || ie.isDefaultChecked())) { //do

Auditing GWT projects

2011-07-15 Thread SrArcos
Hello all. I was wondering if there are any official list of check of code for use with CheckStyle, PMD and FindBugs to audit GWT Proyects. I use three xml for the three plugins with eclipse: CheckStyle, PMD and FindBugs; to check java code, but GWT is a bit diferent than java standard code.

Re: how to access all checkboxes that have a name that begins with abc?

2011-07-15 Thread Jeff Chimene
On 07/15/2011 08:59 AM, dreamer wrote: One way is build your own collection (ArrayList) and make accessible, with setter and getter ,just like in any java class. On Jul 15, 8:07 am, Dennis Haupt d.haup...@googlemail.com wrote: hi community, i'm in a gwt module that is part of a bigger

Which UiField type is this ?

2011-07-15 Thread JC
I want to switch the center section to different components. But which field type is aaa in the java code ? g:center ui:field='aaa' size=7.7 @UiField FIELD?? aaa; -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Problem with updating data with JDO

2011-07-15 Thread chille
Hello, I managed it to insert some data with JDO. Also i can update some variables with the following code (i postet just the relevant, executed parts of the code): PersistenceManager pmUserSession = PMF.get().getPersistenceManager(); Transaction txUserSession =

How do I exchange blobs between modules

2011-07-15 Thread Joop
LS I want to show pictures on my side and the option to upload these pictures via a secured html (with login). I created an UploadImagesEntrypoint.java with a .gwt.xml-module (module rename-to='uploadimages'). With this I can login, upload an show the uploaded images. Works perfect! But now I'm

Not able to install 2.4 Beta version of GPE

2011-07-15 Thread sumit kumar
Hi, I am trying to get GPE 2.4 beta for my eclipse helios 3.6 SR2 but I am not able to do so. It always is giving me this error: An error occurred while collecting items to be installed session context was:(profile=epp.package.jee, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect,

Re: my biggest problem with gwt

2011-07-15 Thread Michael Allan
Dennis Haupt wrote: that helped most, thanks More on that here: http://code.google.com/webtoolkit/doc/latest/FAQ_DebuggingAndCompiling.html#Can_I_speed_up_the_GWT_compiler? The allowable values for user.agent are defined here:

Re: best architecture for GWT + Spring

2011-07-15 Thread 刘斌
GWT MVP+Spring MVC+ spring back-end + hibernate use the spring service bean to deal with bussiness logic integrate with hibernate, use gwt_sl connect GWT RPC with spring service bean, so you configuration all concentrate in the spring xml file rather than add servlet to web.xml 2011/7/14 Ernesto

com.google.gwt.user.client.rpc.SerializationException

2011-07-15 Thread Vivek
Hi all, I am new to Spring Hibernate and GWT. And I am creating an application but there is an error this page.. Please help to resolving this problem.. Caused by: com.google.gwt.user.client.rpc.SerializationException: Type 'org.hibernate.collection.PersistentBag' was not included in the set

Re: best architecture for GWT + Spring

2011-07-15 Thread Jeff Larsen
Why Spring-MVC? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/5c5WlTh2S_EJ. To post to this group, send email to

Aw: Which UiField type is this ?

2011-07-15 Thread Jens
You have to use g:center size=7.7 g:SimplePanel ui:field=centerContainer / /g:center And then its @UiField SimplePanel centerContainer. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: CellTree: Horizontal Scrollbar impossible?

2011-07-15 Thread Derek
The get showcase has horizontal scrolling. http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellSampler On Jul 15, 9:02 am, opn open...@gmx.net wrote: I hope it's not impossible right now to get a horizontal scrollbar with a cellTree growing large in x-direction, but I just can not find

Re: math error: modulo

2011-07-15 Thread Alan Chaney
What other languages? In Java '%' in this case means the remainder of the remainder of dividing -1 by 12 is -1, as is -13 %12 or -25 % 12. I'd be interested to know which other language does what you say. HTH Alan On 7/15/2011 3:07 PM, seven.reeds wrote: int x = 0; int y = -1; x = y %

Re: math error: modulo

2011-07-15 Thread Jeff Chimene
On 07/15/2011 03:25 PM, Alan Chaney wrote: What other languages? In Java '%' in this case means the remainder of the remainder of dividing -1 by 12 is -1, as is -13 %12 or -25 % 12. I'd be interested to know which other language does what you say.

XSRF Initial Token Generation

2011-07-15 Thread batosai
Hi , I am trying to add XSRF protection to my app using the newly introduced method in 2.3 http://code.google.com/webtoolkit/doc/latest/DevGuideSecurityRpcXsrf.html , but I was wondering when and where is the value of the cookie (not the token) gets generated or set. I know that the token is

Re: math error: modulo

2011-07-15 Thread Seven Reeds
on redhat perl -e'print STDOUT (-1 % 12), \n;' yeilds 11 I thought php gave 11 but i tried it again and it is giving me -1. php -r'echo (-1 % 12),\n;' Nuts. Well, a math friend tells me that modulo operators are flakey and that he always writes his own to make sure he knows what he will get.

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

2011-07-15 Thread codesite-noreply
Comment by gal.dol...@gmail.com: Is this working already? I cannot get it working For more information: http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2011-07-15 Thread codesite-noreply
Comment by gal.dol...@gmail.com: Is this working already? just compiled trunk and it doesn't seems to do anything For more information: http://code.google.com/p/google-web-toolkit/wiki/ConditionalProperties -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10460 committed - Replace SafeHtmlTemplates with ElementBuilder in RenderablePanel

2011-07-15 Thread codesite-noreply
Revision: 10460 Author: rdcas...@google.com Date: Fri Jul 15 09:31:20 2011 Log: Replace SafeHtmlTemplates with ElementBuilder in RenderablePanel http://code.google.com/p/google-web-toolkit/source/detail?r=10460 Modified: /trunk/user/src/com/google/gwt/user/client/ui/Composite.java

[gwt-contrib] [google-web-toolkit] r10461 committed - More robust fix, escaping all args to the glass panel display code

2011-07-15 Thread codesite-noreply
Revision: 10461 Author: unn...@google.com Date: Fri Jul 15 15:31:39 2011 Log: More robust fix, escaping all args to the glass panel display code http://code.google.com/p/google-web-toolkit/source/detail?r=10461 Modified: