Re: Offtopic: does anyone have a solution to fix error-markers on OSXLion eclipse scroll?

2011-07-26 Thread Gal Dolber
yes, Im using indigo, just tried both configurations and no results... so strange On Tue, Jul 26, 2011 at 3:16 AM, Shawn Brown big.coffee.lo...@gmail.comwrote: The error marker is not shown in the scroll bar, I can't find a solution. thanks Are you using Indigo? Seems to work fine.

Re: Offtopic: does anyone have a solution to fix error-markers on OSXLion eclipse scroll?

2011-07-26 Thread Gal Dolber
So happy! http://stackoverflow.com/questions/6780269/running-eclipse-on-mac-os-x-lion Now I was able to find the solution. Thanks Shawn! On Tue, Jul 26, 2011 at 3:59 AM, Gal Dolber gal.dol...@gmail.com wrote: yes, Im using indigo, just tried both configurations and no results... so strange

Re: Declare an array of panels in UiBinder

2011-07-26 Thread Alexander Orlov
On Tue, Jul 26, 2011 at 1:28 AM, Tomasz Gawel tomaszga...@op.pl wrote: a list or an array? it's not the right place because these are visiual templates, and a visual That (variable list) was basically what I wanted to do. I know that UiBinder is a declarative descriptor but I've thought that

Re: No source code is available for type com.google.gwt.autobean.shared.AutoBean

2011-07-26 Thread Thomas Broyer
inherits name=com.google.gwt.autobean.AutoBean / But I'd first suggest you upgrade to GWT 2.3 (and then 2.4 as soon as it's out) and use inherits name=com.google.web.bindery.autobean.AutoBean/ instead. -- You received this message because you are subscribed to the Google Groups Google Web

Re: Eclipse Analyzing Sources Slow

2011-07-26 Thread Thomas Broyer
On Tuesday, July 26, 2011 5:54:28 AM UTC+2, gutto wrote: Over the weekend my build times have reduced! Perhaps we were having some network issues which were exacerbating the problem. However, it's still slow. I have tracked the cause down to repeated requests for the DTD document

Design layout template with UIBinder or JSP includes?

2011-07-26 Thread ungarida
Which is the best practice to design a page layout template? I'm evaluating the differences between: 1- JSP includes to build up the host page 2- a base UIBinder widget made essentially of html in a common package and composite the other widgets inside it Suggestions? -- You received this

Re: How to package a gwt project into a jar so that it can be included into other projects

2011-07-26 Thread david.herv...@gmail.com
Komal, you have to consider two packaging for your release in order for your project to be used in another project. - one jar for your server side classes (compiled) - one jar for your client side java file (not compiled) that also contains the gwt module, in order the users to include your module

Re: RequestFactory create proxy object serverside

2011-07-26 Thread Jakob Mar
Thanks for your reply Ryan. In my case Foo is just a top of a complicated object graph and yes I want to set the default values, I also want to be able to do calculation on Foo with out persisting it. I guess I could implement it on the client side but that is a lot of work and I am not sure

Re: Aw: Re: Aw: Place Parameters

2011-07-26 Thread Craig Greenhalgh
Hi this now works fine on the from list view page and all is expected in the browser url How do I go about getting the bck and fwd buttons working, or manually altering the url to serve the correct page ? Currently in my Activity Mapper I set the id for the activity based on the incoming

Re: GWT integration to the cloud

2011-07-26 Thread Bademus -
I would like to test new feature [(Issue 6234) RequestContext interfaces can be composed]. But simply by inherite base interface it didn't work. Did I miss new annotation? (Tested with gwt 2.4 beta) -- You received this message because you are subscribed to the Google Groups Google Web

Is XsrfProtectedServiceServlet Exprimental?

2011-07-26 Thread Ali Jalal
Hi, In gwt-2.3.0, first line of javadoc in XsrfProtectedServiceServlet says: EXPERIMENTAL and subject to change. Do not use this in production code. Is it true? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

ChangeHandler does not fire in list

2011-07-26 Thread Vik
Hie I have enable a multiselect listbox. When i click any of the item in the list box the changeHandler fires. However, if I select a item by pressing ctrl then the value change handler is not firing. So, how do i do that? Thankx and Regards Vik Founder http://www.sakshum.org

Re: GWT integration to the cloud

2011-07-26 Thread Raphael André Bauer
Hi, I tried Roo and GWT integration some months ago and the results were devastating. Not only was Roo (coupled with GAE) totally unstable - the GWT support was that limited that it's better to write your own stuff. At the beginning I though that AspectJ is cool. But now I think that AspectJ

Re: Question about the API of Validation

2011-07-26 Thread Adolfo Panizo Touzon
Solved. The problem is in the @Valid constraint (the validator of that constraint doesn´t allow parameterizeds types belonging to the package java.util). I use @Size and works perfectly. Thanks. 2011/7/22 Adolfo Panizo Touzon adolfo.pan...@gmail.com Ok. I have two simple class: Person and

Re: TabLayoutPanel autosize

2011-07-26 Thread gwtomni gwtomni
Unfortunately not yet. but I'm thinking to migrate to GXT 3.0 with the new UIbinder integration. -- 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

Re: Question about the API of Validation

2011-07-26 Thread Nick Chalko
Remember @Valid Foo foo. Just recurses into foo calling the Validator on it. @Valid Integer int. at best will do nothing because the Integer class has no constraints. @Valid is made for your classes that you have put constraints on. -- You received this message because you are subscribed to

Re: Cell Table Data Handling Performance

2011-07-26 Thread John LaBanca
Do you mean CellTable's cache or the data store of your data? CellTable's cache is in a List in HasDataPresenter, which is a package protected presenter implementation that backs all of the cell widgets. Your data can exist anywhere you want, and you can use ListDataProvider or AsyncDataProvider

When do activities get disposed of?

2011-07-26 Thread Craig Greenhalgh
Hi I'm using MVP with activities, places and views. During the start method of the activity, I listen / bind to method on a bus (Errai Bus). When I navigate back to the same place and activity a new set is created (as expected), however if the event is fired, two (or multiple) activities

Tutorial Files inconsistent

2011-07-26 Thread Spundun
The project files posted on this tutorial page http://code.google.com/webtoolkit/doc/latest/tutorial/appengine.html http://code.google.com/p/google-web-toolkit/downloads/detail?name=Tutorial-GettingStarted-2.1.zip and

N-tier with RequestFactory is possible?

2011-07-26 Thread Rafael Dipold
Hi guys, The RequestFactory could be used for comunication between logic tier and presentation tier in desktop like JavaFX, to build data-oriented (CRUD) software where I use GAE to data and logic tier? It's the best choice? Other question: The GWT 2.4 beta avaliable for download already

[GWT] Problem with a RPC calls

2011-07-26 Thread Gabriele
Hi! I have some trouble with my application. It should be a Semantic Annotator Assistent that receive as input a description HTML of a Web API. To upload this description i did a RPC and so i created two classes client-side (DataLoadingService and DataLoadingServiceAsync) and one class

Gin @Inject problem with Logger

2011-07-26 Thread Kotuboy
Hi, I use in the constructor of a class Logger and instantiate it in a gin Module. the class has the @Inject annotation. when i start the application, the following exception was thrown out. [INFO] 1) A binding to java.util.logging.Logger was already configured at [unknown source]. Any Idea??

Can't install GWT on Eclipse Indigo

2011-07-26 Thread Giodude
Hi everybody, I just downloaded Eclipse Indigo for java developers (Eclipse IDE for Java Developers, 122 MB) and I tried to install GWT using the link: http://dl.google.com/eclipse/plugin/3.7 I'm having dependencies problems. I managed to fix some of them by adding to the Eclipse repo list the

Help to set Chart Height in Visualization API

2011-07-26 Thread Rahul Radhakrihsnan
Hi I am not able to fix % for height whereas % is working for witdh (example 100%). I can set height only in pixels AnnotatedTimeLine theChart = new AnnotatedTimeLine(createTable(), createOptions(), 100%, 100% ); is not working AnnotatedTimeLine theChart = new

Opening new browsers window blocked inside GWT application

2011-07-26 Thread Ahmed
Hello, In my gwt, when a clickEvent is fired, i create a webapp using rpc that i deploy on server and i return the url which i used to open a new window...I have to do some process before opening new window , I know it's because of that that browsers block the page but I do not know how to make it

Re: position of selected row in a celltable

2011-07-26 Thread Deepak Singh
Anyone kindly help on the issue. On Mon, Jul 25, 2011 at 11:28 PM, Deepak Singh deepaksingh...@gmail.comwrote: I also tried a lot but could not get to it. I think we need to raise this to gwt team. Regards Deepak On Mon, Jul 25, 2011 at 10:57 PM, BST babusri...@gmail.com wrote: I did

Re: When do activities get disposed of?

2011-07-26 Thread Juan Pablo Gardella
See this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/fee377e1bb1947ea?pli=1 the solution. 2011/7/26 Craig Greenhalgh craig.greenha...@intersoftsolutions.co.uk Hi I'm using MVP with activities, places and views. During the start method of the activity, I

App runs dev-mode but doesn't run if deployed

2011-07-26 Thread tanteanni
We are developing our first gwt app in meantime i pushed some releases and all went fine. The last things we did was experimenting with css/clientbundle and exceptionhandling/ logging. All is still working in Dev-Mode but today we tried to deploy the war on Tomcat (first time for this

Re: Making the Slider Bar included in the Google Web Toolkit Incubator Vertical

2011-07-26 Thread Novice Programmer
Thanks for the suggestion, I tried it out but the default vertical bar didn't have the style I was looking for and I didn't want to spend the time figuring out how to create my own bar's using the framework. I ended up using the vertical bar from Smart Gwt. -- You received this message because

Re: Opening new browsers window blocked inside GWT application

2011-07-26 Thread Andy
You can't open a window outside of the event handler for the click event or it will be blocked. Here are 2 options that might work: 1) Open the window with a URL passing enough context to determine the final destination. Your server could respond with a redirect if necessary. 2) Open the window

Aw: App runs dev-mode but doesn't run if deployed

2011-07-26 Thread Jens
First take a look into the generated war file and verify that its correctly packaged (just unzip it). If really nothing happens it seems like your war does not contain the app javascript files or its a path problem. You can also look into FireBug or similar to see if any requests result in a

Re: N-tier with RequestFactory is possible?

2011-07-26 Thread David Chandler
Hi Rafael, try the 2.4 RC (expected later today) and be sure to see the updated docs at http://code.google.com/webtoolkit/doc/latest/DevGuideRequestFactory.html. /dmc On Mon, Jul 25, 2011 at 5:15 PM, Rafael Dipold dip...@gmail.com wrote: Hi guys, The RequestFactory could be used for

Re: Can't install GWT on Eclipse Indigo

2011-07-26 Thread David Chandler
Hi Giodude, See this thread: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/f26bebbd2884da45/5a947f76d5fe256e /dmc On Tue, Jul 26, 2011 at 7:41 AM, Giodude amojo...@gmail.com wrote: Hi everybody, I just downloaded Eclipse Indigo for java developers (Eclipse IDE for

Re: Is XsrfProtectedServiceServlet Exprimental?

2011-07-26 Thread David Chandler
Good catch. There is still some minor work going on here, but looks like a leftover comment. /dmc On Tue, Jul 26, 2011 at 4:19 AM, Ali Jalal ali.jal...@gmail.com wrote: Hi, In gwt-2.3.0, first line of javadoc in XsrfProtectedServiceServlet says: EXPERIMENTAL and subject to change. Do not use

How to handle dependencies in minor UI controls within the MVP framework.

2011-07-26 Thread DrG
I aim to have a discussion on best practices with regards to the MVP framework and minor UI Controls. Imagine a typical MVP entity in your application where the view element is made up of many interesting UI controls. Some UI Controls contain further UI controls as the application is

Animated counter widget with digits

2011-07-26 Thread Ice13ill
Hello, is there an animated counter widget that simulates digit changes ? Like the ones in these images: http://www.animationlibrary.com/sc/59/Counters/ -- 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 Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-26 Thread macagain
i thought there were many many people at google who use macs... and that gwt is used in many projects internally. surely, the intersection is not a small group? or is it a crock? is it because of stuff like this that the plus team won't use gwt? On Monday, July 25, 2011 4:29:18 PM UTC-6,

Re: Can't set styles with GWT Designer / UiBinder

2011-07-26 Thread trout
I have the same problem. I installed the full version of GWT Designer but the GWT Designer that opens with my UI Binder files is the basic version with out style and CSS support built in. How do you fix this? -- You received this message because you are subscribed to the Google Groups

Re: Can't set styles with GWT Designer / UiBinder

2011-07-26 Thread Jeff Larsen
if you go to the xml view you can always do the following g:Label addStyleNames=foo bar baz/ etc -- 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: Animated counter widget with digits

2011-07-26 Thread Teguh Budisetioko
Dear Sirs,   I can't came in your googlegroups, because I haven't google email, thank you.   Best Regards,   Teguh Budisetioko From: Ice13ill andrei.fifi...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Tuesday, July 26, 2011 11:55 PM Subject: Animated counter widget

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-26 Thread Jurriaan Mous
A workaround: We fixed it with downloading http://support.apple.com/downloads/Safari_4_0_3 and extracting Safari.app from the dmg its Applications folder with a trial of http://www.macupdate.com/app/mac/6812/pacifist It works both on Snow Leopard as on Lion. You can rename the old Safari so you

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-26 Thread Eric Ridge
On Tue, Jul 26, 2011 at 12:57 PM, Jurriaan Mous m...@lable.org wrote: A workaround: We fixed it with downloading http://support.apple.com/downloads/Safari_4_0_3 and extracting Safari.app from the dmg its Applications folder with a trial of http://www.macupdate.com/app/mac/6812/pacifist Hey,

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-26 Thread Eric Ridge
On Mon, Jul 25, 2011 at 6:29 PM, Eric Ridge eeb...@gmail.com wrote: On Mon, Jul 25, 2011 at 5:55 PM, David Chandler drfibona...@google.com wrote: Good luck, Eric :-) It likely requires non-trivial changes (which is why the GWT team hasn't done it yet). It's not clear yet what'll be

Re: Multiple dialog boxes

2011-07-26 Thread Ben Imp
You can tell the dialogs to be non-modal (ie. setModal(false)). That should allow you to have multiple dialogs up and interact with all of them. -Ben -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-26 Thread David Chandler
Eric, Thank you for your investigation and for dialing down the tone a bit. I'm pleased that the GWT team has done such a good job in the past that you've come to expect not only a great, free toolkit, but also updates delivered within days of new browser and OS releases. Unfortunately, the

Re: SimpleEventBus : why such a non-predictive behavior implementation ?

2011-07-26 Thread david.herv...@gmail.com
No body concerned ? On 25 juil, 10:50, david.herv...@gmail.com david.herv...@gmail.com wrote: Hi, I'm facing a problem when using the simple implementation of the EventBus. // register widget B to be notified when WidgetA trigger an event register handler of WidgetB on WidgetA.EventType

page background color

2011-07-26 Thread Robert Lockwood
I'm really new at all this but really frustrated in that I cannot change the page background color in the GWT example MyWebApp that demonstrates Asynch. I put this in the CSS file, both as the first item and then as the last. (Tried other things as well.) body { background-color: #D2; }

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-26 Thread Eric Ridge
On Tue, Jul 26, 2011 at 3:53 PM, David Chandler drfibona...@google.com wrote: Eric, Thank you for your investigation and for dialing down the tone a bit. I'm just disappointed. I'm sure all of the Mac users out there feel a bit abandoned right now. I'm pleased that the GWT team has done

Re: page background color

2011-07-26 Thread Jeff Chimene
On 07/26/2011 01:12 PM, Robert Lockwood wrote: I'm really new at all this but really frustrated in that I cannot change the page background color in the GWT example MyWebApp that demonstrates Asynch. I put this in the CSS file, both as the first item and then as the last. (Tried other

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-26 Thread Thomas Broyer
On Tue, Jul 26, 2011 at 9:53 PM, David Chandler wrote: It is not typical to announce vacation on the GWT group, but I wanted to give Thomas Broyer a message to link to in response to any Why hasn't the GWT team responded to X threads that may emerge. Ha! Pretty bad timing actually: I'll be on

Dynamic CSS

2011-07-26 Thread sanjay kanwar
Hi There, I have two Css background color and i want to show one color at a time when a certain kind of condition fulfill. Confused how to proceeed. any help or example (sample) would be great. Thx in Advance -- Regards Sam -- You received this message because you are subscribed to the Google

Re: page background color

2011-07-26 Thread Anky
Did you try putting a DOT before your CSS code .body { background-color: #D2; } If you want to set this to a panel then use panel.setStylePrimaryName(body); Also check whether you have included the name of your CSS file in html file Compile and re-run your app Best -Ankit On Jul 26,

Re: SimpleEventBus : why such a non-predictive behavior implementation ?

2011-07-26 Thread Gal Dolber
I am, but your post is too long to read :) For what I understood, I had a similar problem, and I solved it encapsulating the create widgetC in a DeferredCommand (for your example). Its really hard for me to understand the modification you purpose, maybe someone from google could see it. But I

Re: Dynamic CSS

2011-07-26 Thread Anky
Try this. Use the 1st CSS as the base CSS where each of the widget uses setStylePrimaryName(NamOfCssClass). On the desired event, use setStyleName(NameOf2ndCssClass) method for each widget. This method temporarily replaces the primary style with this 2nd style. Now if you want to switch back to

gwtc won't compile with org.springframework.xxx_3.0.5.RELEASE jars

2011-07-26 Thread Robert
I'm working with GWT 2.3.0. Whenever I add any org.springframework.xxx_3.0.5.RELEASE jars to my GWT project (i.e., I put them in WEB-INF/lib/), gwtc will hang (seems to get caught in an infinite loop, no output in the console other than gwtc:). However, devmode works fine. I discovered that if I

Hosted mode with remote JDO datastore

2011-07-26 Thread wovie
Is it possible to connect to a remote datastore (for example, my application's datastore on GAE) while running in hosted mode? I'm guessing that it would have something to do with this line in jdoconfig.xml: property name=javax.jdo.option.ConnectionURL value=appengine/ I'd appreciate it if

Re: GWT Developer Plugin on Safari 5.1 (OS X Lion 10.7) doesn't load

2011-07-26 Thread alexkrishnan
Just an added tip for the extract-the-old-safair-method to make it clearer when I'm using the older Safari and the newer Safari. I downloaded the WebKit nightly build (webkit.org) then copied the gold-rimmed icon from webkit to the old version of Safari, so that I can visually tell the old and

Re: page background color

2011-07-26 Thread Robert Lockwood
Using the .body had no effect. Where does panel.setStylePrimaryName(body); go? In the CSS file? Thanks, Nate On Tue, Jul 26, 2011 at 1:38 PM, Anky ankit.khujn...@gmail.com wrote: Did you try putting a DOT before your CSS code .body { background-color: #D2; } If you want to set

Re: page background color

2011-07-26 Thread Jeff Chimene
On 07/26/2011 02:14 PM, Robert Lockwood wrote: Using the .body had no effect. Where does panel.setStylePrimaryName(body); go? In the CSS file? Thanks, Nate It doesn't go in the CSS file. Did you take a look at the CSS via Firebug as I suggested? If your HTML looks like body . . .

Re: Dynamic CSS

2011-07-26 Thread Philippe Blanc
Hello Sam, Ankit method will works great. But you can also manipulate the Style object directly via Element.getStyle().setProperty(backgroundColor, #FF00FF);

DockPanel not working properly inside another panel

2011-07-26 Thread Omid Rad
Hi, I'm having a headache why I cannot get a DockPanel inside another Panel to work. In the UiBinder code snippet below, only the g:north/ layers are displayed and for some reason the other ones are not shown. Is it a GWT bug? ui:style .panel {border: 3px solid black;}

Re: page background color

2011-07-26 Thread Robert Lockwood
I installed FireBug lite in my Chrome browser and inspected the css and html files which appear to be identical to my project files. I edited the body to read body class=.data to match the CSS file but that did not solve the problem. I'm not using the panel statement as I don't know where it

Re: page background color

2011-07-26 Thread Philippe Blanc
It's body class=data without the dot when declared in HTML - the dot in the CSS file mean class On Jul 27, 2011, at 12:15 AM, Robert Lockwood wrote: I installed FireBug lite in my Chrome browser and inspected the css and html files which appear to be identical to my project files. I

Re: page background color

2011-07-26 Thread Jeff Chimene
On 07/26/2011 03:15 PM, Robert Lockwood wrote: I installed FireBug lite in my Chrome browser and inspected the css and html files which appear to be identical to my project files. I edited the body to read body class=.data to match the CSS file but that did not solve the problem. I'm not

Re: page background color

2011-07-26 Thread Philippe Blanc
lol! in fact my brain automatically removed the '.' in your response. But that suddenly hit me in Robert's response. On Jul 27, 2011, at 12:37 AM, Jeff Chimene wrote: On 07/26/2011 03:15 PM, Robert Lockwood wrote: I installed FireBug lite in my Chrome browser and inspected the css and html

Re: page background color

2011-07-26 Thread Robert Lockwood
Thank you all, it worked. Now to address the next problem. I have a pocket guide to CSS and an introduction to HTML 5 but they have not helped much. Nate On Tue, Jul 26, 2011 at 3:40 PM, Philippe Blanc mecha...@gmail.com wrote: lol! in fact my brain automatically removed the '.' in your

Re: DockPanel not working properly inside another panel

2011-07-26 Thread Omid K. Rad
After trying out different types of Panels instead of HTMLPanel I discovered that replacing HTMLPanel with SimpleLayoutPanel would do the trick. But again I still expect this to work with other panels too. Is it by design, or do I need to open an issue? On Tue, Jul 26, 2011 at 5:32 PM, Omid Rad

xxx.ui.xml is not in GWT client package

2011-07-26 Thread kim young ill
hi there as long as gwt-project get a deeper/complexer package layout, gwt-designer fails to open with message You are attempting to use UiBinder for ...ui.xml, however it is not in GWT client package. compile/running just fine, but gwt-designer is useless, is there a way to fix it without

RequestFactory: Generate history token on the server-side.

2011-07-26 Thread Aidan O'Kelly
This doesn't seem possible as getHistoryToken() is a method of RequestFactory, and no corresponding method in RequestFactoryServlet. Can I do this somehow, (without patching RF source ! ) If not, worth opening an issue/feature request? I have some workarounds for my case, but it would be nicer

Re: xxx.ui.xml is not in GWT client package

2011-07-26 Thread Magno Machado
I haven't this issue, but for me gwt-designer is useless too :( Anyway... Is your .ui.xml actualy in a client package? On Tue, Jul 26, 2011 at 8:26 PM, kim young ill khi...@googlemail.comwrote: hi there as long as gwt-project get a deeper/complexer package layout, gwt-designer fails to open

Re: GWT 2.2 and gwt-maps.jar not compatible

2011-07-26 Thread André Nunes
Hi, how i can rebuild gwt-maps ?? I using gwt 2.3, what version of gwt-maps i should use ? tkxs ! -- 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

[gwt-contrib] Remove final keyword from IsRenderable-overrides in Composite. (issue1504802)

2011-07-26 Thread rdcastro
Reviewers: rjrjr, Description: Remove final keyword from IsRenderable-overrides in Composite. Review by: rj...@google.com Please review this at http://gwt-code-reviews.appspot.com/1504802/ Affected files: M user/src/com/google/gwt/user/client/ui/Composite.java Index:

[gwt-contrib] Re: Remove final keyword from IsRenderable-overrides in Composite. (issue1504802)

2011-07-26 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/1504802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Add font-face support to CssResource. (issue1502806)

2011-07-26 Thread bobv
Reviewers: rjrjr, Message: This is a re-spin of a patch that was written back in October but that got dropped. The original patch is at http://gwt-code-reviews.appspot.com/943802. Description: Add font-face support to CssResource. Patch by: bobv Review by: rjrjr Please review this at

[gwt-contrib] Re: Add font-face support to CssResource. (issue1502806)

2011-07-26 Thread Ray Ryan
Unnur, would you be comfortable taking this? On Tue, Jul 26, 2011 at 12:12 PM, b...@google.com wrote: Reviewers: rjrjr, Message: This is a re-spin of a patch that was written back in October but that got dropped. The original patch is at

[gwt-contrib] Include enclosing class in generated class name (issue1499804)

2011-07-26 Thread nchalko
Reviewers: rchandia, Description: Include enclosing class in generated class name Please review this at http://gwt-code-reviews.appspot.com/1499804/ Affected files: M user/src/com/google/gwt/validation/rebind/AbstractCreator.java Index: