Re: GWT Widget styling using CSS and UiBinder

2011-07-08 Thread vik
Thanks for the reply Rob. I did try the piece of code you have pasted even previously but it did not work. Even a simple rule like a color change or a bg-color change within all the parenthesis don't work. This technique doesn't work if I put it in the ui.xml nor does it work in a .css file

Re: GWT Designer Eclipse Problem

2011-07-08 Thread Navindian
Even I have tried a lot to get GWT Designer working. Can anybody suggest the right usage of GWT Designer? On Sat, Jun 4, 2011 at 3:51 PM, Noor baken...@gmail.com wrote: Hi, I am using Ubuntu , Eclipse 3.5 with GWT designer. But when I placing a control on the my interface, the whole

Re: Google plugin for Eclipse withou WindowBuilder (GWT Designer)

2011-07-08 Thread Sebastian
Forget about it, the new update on the Designers beta Version fixed the problem. It now runs like a charm 2011/7/6 Sebastian open.sebast...@gmail.com Hello Vrto, may I ask which Ubuntu Version do you use? Is it 32 or 64 Bit? I am using 11.04 with AMD64 and can´t get the Designer running at

Re: GWT Designer Eclipse Problem

2011-07-08 Thread Sebastian
The same here with Ubuntu 11.04 x64 and Eclipse Indigo. My installed libWebKit Versions are libwebkitgtk-1.0.so.0.6.0 and libwebkitgtk-3.0.so.0.6.0. Tried the workaround but had no luck with it. 2011/7/7 Alexander Mitin alexander.mi...@gmail.com Try this workaround: 1. Open terminal and

Gwt touch ui

2011-07-08 Thread Gal Dolber
Is anyone doing some open source work on gwt + touch ui? This demo is totally incredible http://dev.sencha.com/deploy/touch/examples/kitchensink/ We must have this implemented with gwt -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/

Re: Gwt touch ui

2011-07-08 Thread Alain Ekambi
gwt4air 2.2 will actually have a Gwt Touch module Stay tuned :) 2011/7/8 Gal Dolber gal.dol...@gmail.com Is anyone doing some open source work on gwt + touch ui? This demo is totally incredible http://dev.sencha.com/deploy/touch/examples/kitchensink/ We must have this implemented with gwt

Re: GWT Widget styling using CSS and UiBinder

2011-07-08 Thread Rob Coops
Here is what I did to test this: !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui xmlns:p1=urn:import:com.google.gwt.user.datepicker.client g:HTMLPanel p1:DatePicker/

Re: CellTable with SimplePager displaying GAE datastore data in async

2011-07-08 Thread Ioan Agopian
What framework are you using to connect to the datastore? I've not used JDO or JPA, but in Objectify you can set an offset and a limit on a query. In onRangeChanged you can get them like this: Range range = display.getVisibleRange(); Integer offset = range.getStart(); Integer limit =

Re: Gwt touch ui

2011-07-08 Thread Gal Dolber
Hi Alain, touch support with flash? do you mean only for android devices? On Fri, Jul 8, 2011 at 3:27 AM, Alain Ekambi jazzmatad...@googlemail.comwrote: gwt4air 2.2 will actually have a Gwt Touch module Stay tuned :) 2011/7/8 Gal Dolber gal.dol...@gmail.com Is anyone doing some open

Re: Gwt touch ui

2011-07-08 Thread Alain Ekambi
Not Flash. Pure Gwt based solution 2011/7/8 Gal Dolber gal.dol...@gmail.com Hi Alain, touch support with flash? do you mean only for android devices? On Fri, Jul 8, 2011 at 3:27 AM, Alain Ekambi jazzmatad...@googlemail.comwrote: gwt4air 2.2 will actually have a Gwt Touch module Stay

Re: Gwt touch ui

2011-07-08 Thread Gal Dolber
great news! thanks Alain On Friday, July 8, 2011, Alain Ekambi jazzmatad...@googlemail.com wrote: Not Flash.Pure Gwt based solution 2011/7/8 Gal Dolber gal.dol...@gmail.com Hi Alain,touch support with flash? do you mean only for android devices? On Fri, Jul 8, 2011 at 3:27 AM, Alain Ekambi

Re: Recursive Editors

2011-07-08 Thread Thomas Broyer
You need a *subeditor* for the foos. I.e. have FooEditor (implements EditorFoo) contain a subeditor for @Path(foos), of type CompositeEditorListFoo, Foo, FooEditor (or ListEditorFoo, FooEditor). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: RequestFactory: Usage of the EntityService / EntityLocator / ServiceLocator pattern

2011-07-08 Thread Thomas Broyer
ServiceLocator is the only mean you can use instance methods in your service, instead of static methods. It's up to you to choose. I believe both will continue to be supported (I can't see any reason it wouldn't be) -- You received this message because you are subscribed to the Google Groups

Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Thomas Broyer
On Thursday, July 7, 2011 5:46:44 PM UTC+2, Eugen Paraschiv wrote: Yes, I am aware that if I don't include the tokenizer in the mapping, it works fine. The problem with that is that it's an all or nothing solution, whereas I'm looking for a programatic way of choosing when the navigation

Re: CellTable with SimplePager displaying GAE datastore data in async

2011-07-08 Thread George Agiasoglou
Hi Ioan, thank you for your reply. Indeed I use objectify and to be honest I have not used the offset ever, however, when I was looking what's the best feature to use I stamped upon this thread https://groups.google.com/d/topic/objectify-appengine/tkC103e2ILQ/discussion and so I have only

Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Abduxkur Ablimit
you said:first abc:null and then, automatically abc:1. That messes with the history completely - back now clearly won't work (will go to abc:null). this is because of ur ABCActivity is not singlton, if it is singlton it wont call the method(probably initial method) which will

Re: RequestFactory: Usage of the EntityService / EntityLocator / ServiceLocator pattern

2011-07-08 Thread Alexander Orlov
On Jul 8, 10:42 am, Thomas Broyer t.bro...@gmail.com wrote: ServiceLocator is the only mean you can use instance methods in your service, instead of static methods. It's up to you to choose. I believe both I'm rather interested in what's the more elegant way to manage persistence via RF. -Alex

Re: RequestFactory: Usage of the EntityService / EntityLocator / ServiceLocator pattern

2011-07-08 Thread Thomas Broyer
All things 'static' are generally seen as not elegant in Java, so using a ServiceLocator would make more elegant. YMMV. Also, elegant doesn't necessarily match with pragmatic, so there might be additional costs to making things elegant. If you ask me, I'd go with instance methods and a

Re: GWT 2.4 - Mobile Web App

2011-07-08 Thread Joe Chahoud
Okay, I have found that the ScrollPanel implements already touch events and do a scroll event on mobile devices. However, I have found that on IPhone4, the scrolling is smooth, fast, whereas on Android Froyo and Android Gingerbread, the scrolling isn't fast, it just slides vertically or

Re: Linking multiple GWT applciations..

2011-07-08 Thread Alex Dobjanschi
So you want to have a single app (your dashboard, but independently develop each game as a totally separated gwt app, is that right? Total flexibility, no? First, there have been countless questions about how to communicate between 2 (supposedly) independent GWT apps. Secondly, this design,

Re: Application will not run outside dev mode (gwt 2.3)

2011-07-08 Thread Jens
Hi Ok, I managed to locate and fix the problem, which I suspect is a GWT bug. What it had was something like this: public final static MyRpcServiceAsync rpc = GWT.create(MyRpcService.class); public void onModuleLoad() { rpc.bootstrap(new AsyncCallbackBootstrap() { ...

Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Eugen Paraschiv
I get where you're coming from with this, but consider this scenario: I now have the following entities in the list: 1, 2, 3, so the first element in the list would be 1. When going to the list, I would go to abc:1 which is fine - 1 will be selected and nothing else will happen (a place changed

Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Eugen Paraschiv
That is true. In my case however, making the activity a singleton introduces a degree of complexity into the system, and I would rather not deal with that complexity unless I have to. If your use case is such that you need the client-side caching and you have done proper profiling and reached this

Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Thomas Broyer
On Friday, July 8, 2011 12:57:01 PM UTC+2, Eugen Paraschiv wrote: I get where you're coming from with this, but consider this scenario: I now have the following entities in the list: 1, 2, 3, so the first element in the list would be 1. When going to the list, I would go to abc:1 which

Aw: Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Jens
Am Freitag, 8. Juli 2011 12:57:01 UTC+2 schrieb Eugen Paraschiv: Perhaps the solution is to consider abc:null as a place where no element is selected and then let the user select the element. Thats what I do when a user visits a place the first time after a fresh app start. Once the user

Aw: Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Jens
And what about user experience? If the user actually bookmarks abc:null and the app treats abc:null as select the first entry in the list then the selection may change over time if some editing is done (adding/removing items). If the user is unexperienced and is not interested in the url thing

Re: Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Eugen Paraschiv
Good point about the user experience - it does have a potentially high degree of inconsistency if I make abc:null select the first entry, same as abc:1 this time and abc:2 the next. I will do as you suggest, abc:null will select nothing, and it will be up to the user to actually select something

Re: Aw: Is it possible to go to a new Place without inserting a new history item?

2011-07-08 Thread Eugen Paraschiv
To answer some of your feedback - there is a single Activity for the entire page. About the calculation of the URL, the reason behind URL recalculation each time was to be able to navigate to abc:id directly and bypass the entire problem with first going to abc:null and handling that scenario.

Re: GWT + Spring Security

2011-07-08 Thread Renato Beserra
Hi Kevin, thanks for your answer. I tried to do it on the interface my server-side code uses as the implementation contract but I was using a JSR-250 annotation @RolesAllowed, which wasn't on my client scope. I just tried the @PreAuthorize annotation and it seems to work on the client-side. Do I

Re: RequestFactory: Usage of the EntityService / EntityLocator / ServiceLocator pattern

2011-07-08 Thread Alexander Orlov
On Jul 8, 11:51 am, Thomas Broyer t.bro...@gmail.com wrote: If you ask me, I'd go with instance methods and a ServiceLocator (and dependency injection), Is there anywhere a concrete code sample for this pattern? I'm considering to use Dep. Injection too. Thx again for the info! -Alex -- You

Re: CellTable with SimplePager displaying GAE datastore data in async

2011-07-08 Thread George Agiasoglou
Ioan it works fine, thank you! -George -- 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/-/UtFKujFHj4kJ. To post to this group, send email to

Re: RequestFactory: Usage of the EntityService / EntityLocator / ServiceLocator pattern

2011-07-08 Thread Thomas Broyer
See http://wanderingcanadian.posterous.com/guiced-up-gwt-requestfactory and https://github.com/mgenov/injecting-request-factory -- 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: Working with GWT 2.3 and MyBatis

2011-07-08 Thread Fabricio Pizzichillo
Hello. The problem is a missing XML file where the configuration database, and so gives an error of IO. bye Fabricio 2011/6/28 Geraldo Lopes geraldo...@gmail.com Gwt is persistent agnostic. It looks like your client code is referencing server code. When you compile the client code it gets

Re: GWT + Spring Security

2011-07-08 Thread Kevin Jordan
You'll need to have your service invoked as a Spring Bean somehow to make the annotations take effect. It won't work as just a servlet entry in your web.xml. DispatcherServlet is one of the easiest way to make it do that. On Jul 8, 7:11 am, Renato Beserra renatobese...@gmail.com wrote: Hi

Re: GWT + Spring Security

2011-07-08 Thread Renato Beserra
You just solved my doubt. The DispatcherServlet looks very simple with your explanation and I will try to use it. Thank you very much! Best Regards, 2011/7/8 Kevin Jordan ke...@kjordan.net You'll need to have your service invoked as a Spring Bean somehow to make the annotations take effect.

Re: secure widgets

2011-07-08 Thread Alberto Sarubbi
looks to me like a dead end for developing security sensitive UI with GWT. thank you Robert. -- 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: Youtube iFrame z-index problem

2011-07-08 Thread jhulford
Presumably you're using Internet Explorer...which has issues showing HTML elements over other objects on the page that are rendered natively by the OS (iframes, flash, select boxes, etc). To get around this limitation, GWT utilizes a hack where you put an iframe shim behind the popup panel's

Re: secure widgets

2011-07-08 Thread David Chandler
In order to write a secure rich Web app, you need to think in terms of protecting the data, not the UI itself. This is true for any JS application, not just GWT. /dmc On Fri, Jul 8, 2011 at 9:44 AM, Alberto Sarubbi asaru...@gmail.com wrote: looks to me like a dead end for developing security

Re: Recursive Editors

2011-07-08 Thread Jeff Larsen
Thanks Thomas and Gal. Now I'm getting. [ERROR] [editorsampleproject] - Cycle detected in editor graph. Editor type com.google.gwt.editor.client.adapters.ListEditor at path foos can be reached again at path foos..foos I'm probably just going to abandon this and just manually get/set the

Re: Why no GWT for Calendar API?

2011-07-08 Thread Jeffrey Chimene
On 7/7/2011 8:38 PM, Jim Douglas wrote: With 328 stars, it's the most popular open issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=603 Thanks, but I'm asking about a GWT binding for the Google Calendar API, not j.u.Calendar. Cheers, jec -- You received this message

Re: secure widgets

2011-07-08 Thread Williame
Agreed. What the client sends to the server can be the wild west. Never trust it. My recipe, YMMV, but my apps hide display of access limited objects on the client side(all are there in the js) but more to avoid confusion to users than as a security measure. The real security is on the

Re: Why no GWT for Calendar API?

2011-07-08 Thread Jim Douglas
Hmm, ok. Well, I see that the request was closed as not planned: http://code.google.com/p/gwt-google-apis/issues/detail?id=157 And this response from 2008 suggests working with the Java API on the server or the JavaScript API on the client:

Re: Why no GWT for Calendar API?

2011-07-08 Thread Jeffrey Chimene
On 7/8/2011 7:47 AM, Jim Douglas wrote: Hmm, ok. Well, I see that the request was closed as not planned: http://code.google.com/p/gwt-google-apis/issues/detail?id=157 And this response from 2008 suggests working with the Java API on the server or the JavaScript API on the client:

Re: secure widgets

2011-07-08 Thread will0
In protecting the data as David rightly suggests, you can protect the UI by returning SC_UNAUTHORIZED if an unauthenticated user attempts to access any remote service. I've overridden the RequestFactory onResponseReceived function which redirects to a login page if the response is

Re: Why no GWT for Calendar API?

2011-07-08 Thread zundel
There is a third party binding to the GData api for calendar: http://code.google.com/p/gwt-gdata/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Getting absolute paths an Editor from a Violation picked up from RequestContext onViolation

2011-07-08 Thread will0
I'm using round-trip validation for my entities - i.e. I pick up any violations from RequestContext.onViolation then populate errors in the UI via an EditorVisitor. This mostly works well except I can't figure out how to get absolute paths of sub-editors from a violation. In my EditorVisitor

Re: Youtube iFrame z-index problem

2011-07-08 Thread KevMo
By default flash will display on top of everything else, regardless of any z-index Try adding ?wmode=Opaque to the end of you iFrame src URL. On Jul 7, 7:16 am, tobirius t.herrm...@alkacon.com wrote: I am struggling to put UI elements above an embedded youtube iframe. No z-index seems large

Re: Linking multiple GWT applciations..

2011-07-08 Thread Gautam Kowshik
Thanks for the comments Alex and Robert, I'm aware that this decoupling is against GWT's philosophy. The reason I'm still trying to keep it separate is because these are actually separate projects (each game) with different developers working on each part with separate svn code repos.

Re: TabLayoutPanel selectTab() not working correctly

2011-07-08 Thread Mark Wengranowski
Making some progress but still having the same problem. If i change my onClick event to onMouseDown it works. Why it works on the mousedown and not the onclick im not sure. It seems to be something to do with the order that events are being triggered. If i call the add function to add a tab to

Encountered a problem while deploying

2011-07-08 Thread SwaminathanG
Hi, When i deployed a project created with smartGWT, i got this following error Unable to update app: Error posting to URL: https://appengine.google.com/api/appversion/clonefiles?app_id=pojomarketversion=1; 500 Internal Server Error htmlhead meta http-equiv=content-type

Re: secure widgets

2011-07-08 Thread Alberto Sarubbi
we actually protect EVERY call to our server validating the user rights before proceeding to the service execution. it just doesn't seem right to show a user a button that he can't click because he don't have the permission to do. it sounds more logical not showing the button at all. of course,

Re: Why no GWT for Calendar API?

2011-07-08 Thread Thomas Broyer
You don't need JSNI, there's a JsDatehttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/core/client/JsDate.htmlclass. Also, have a look at GodaTime, or JodaTime-GWT. The JodaTime is much cleaner and easier to use, and close to what's coming to Java 8 (JSR-310, alpha code

Re: Google plugin for Eclipse withou WindowBuilder (GWT Designer)

2011-07-08 Thread Eric Clayberg
Glad to hear that! On Jul 8, 2:21 am, Sebastian open.sebast...@gmail.com wrote: Forget about it, the new update on the Designers beta Version fixed the problem. It now runs like a charm 2011/7/6 Sebastian open.sebast...@gmail.com Hello Vrto, may I ask which Ubuntu Version do you

Re: Getting absolute paths an Editor from a Violation picked up from RequestContext onViolation

2011-07-08 Thread Thomas Broyer
Why aren't you using RequestFactoryEditorDriver#setViolationshttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/requestfactory/client/RequestFactoryEditorDriver.html#setViolations(java.lang.Iterable) ? -- You received this message because you are subscribed to the Google

Re: secure widgets

2011-07-08 Thread David Chandler
Agreed! Don't show the button if the user doesn't have permissions. But also check perms on the server to protect against hackers. /dmc On Fri, Jul 8, 2011 at 2:54 PM, Alberto Sarubbi asaru...@gmail.com wrote: we actually protect EVERY call to our server validating the user rights before

Re: Pluggable modules

2011-07-08 Thread manstis
Great, success. Thanks. So I conclude it is impossible to pass a Java object from one GWT application client space, through JSNI to another GWT application client space even with the XS linker option. It only appears possible using JavaScriptObject subclasses, i.e. JScript overlays. I might

Re: Pluggable modules

2011-07-08 Thread manstis
Should anybody else search for something similar and stumbles across this thread there is a working example at git://github.com/manstis/gwt-plugins.git On Jul 8, 8:50 pm, manstis michael.ans...@gmail.com wrote: Great, success. Thanks. So I conclude it is impossible to pass a Java object from

Spring Security with GWT

2011-07-08 Thread Sven
Hi people, I am using GWT 2.3 and Spring Security 3. To explain my application structure a little bit. My WebContent folder contains: WebContent/ -WEB-INF/ -login.html -logout.html -secure/ ---index.html Starting my application and trying to

Re: secure widgets

2011-07-08 Thread Rob Coops
The idea behind security is simple, trust no one and trust nothing... only when who ever tries to access and authenticates them self and is authorized to access what ever it is the are attempting to access allow this action. So try and hide anything that a user should not have access to. This

Re: Getting absolute paths an Editor from a Violation picked up from RequestContext onViolation

2011-07-08 Thread will0
I guess because I was using SimpleBeanEditorDriver which doesn't have that method (until 2.4 is released I now see). Thanks for pointing it out. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Simulating button click in DialogBox with key event?

2011-07-08 Thread jscheller
I know I'm missing something obvious here, but what's the current correct approach to catching a keyboard event to close a DialogBox or do something similar (i.e., simulate clicking the Save or OK button)? I found an older example that uses onNativePreviewEvent() that seems to be unsupported now,

[gwt-contrib] Why are symbolMaps files not gzipped?

2011-07-08 Thread Thomas Broyer
The subject says it all: why are symbolMaps files not gzipped? Each permutation produces, for our project, a 41Mb file. Fortunately we're only producing 2 permutations, but it still makes more than 80M that we don't (yet?) use, and there's no switch to turn them off. Gzipping brings the file

[gwt-contrib] Re: This patch substantially reduces the overhead of Java types in the output by minimizing vtable s... (issue1447821)

2011-07-08 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1447821/diff/6053/dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java File dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java (right):

[gwt-contrib] Re: JsoNormalizer did not give unique names to devirtualized (issue1467812)

2011-07-08 Thread jbrosenberg
I'm not sure why the JsNamer classes (e.g. JsPrettyNamer) don't already do the right thing (don't they?). They definitely do have naming disambiguation logic, etc. Is there something more fundamental here?

[gwt-contrib] [google-web-toolkit] r10423 committed - Updating npapi plugin to remove gwtId from Jso objects (idenity fix),...

2011-07-08 Thread codesite-noreply
Revision: 10423 Author: cod...@google.com Date: Thu Jul 7 08:33:00 2011 Log: Updating npapi plugin to remove gwtId from Jso objects (idenity fix), adds a second map in LocalObjects. Review at http://gwt-code-reviews.appspot.com/1469803

[gwt-contrib] Re: Fix JsInliner, to properly handle name scope tracking after multi-level inlining. Was causing l... (issue1472803)

2011-07-08 Thread jbrosenberg
I've deleted that comment (it was incorrect). The issue turns out to be an interaction between the JsInliner and JsObfuscateNamer. The issue is with how JsInliner manages the scope for names that are hoisted to new scopes via inlining. This fix solves the test-cases provided in the original

[gwt-contrib] [google-web-toolkit] r10424 committed - Un-breaking the code due to failed test case with htmlunit...

2011-07-08 Thread codesite-noreply
Revision: 10424 Author: cod...@google.com Date: Thu Jul 7 10:09:23 2011 Log: Un-breaking the code due to failed test case with htmlunit Review by: con...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10424 Deleted: /trunk/plugins/npapi/NPVariantUtil.h

[gwt-contrib] [google-web-toolkit] r10425 committed - Integrating r3302 from GWT 1.5 back into trunk. The change fixes a bu...

2011-07-08 Thread codesite-noreply
Revision: 10425 Author: jlaba...@google.com Date: Thu Jul 7 10:26:33 2011 Log: Integrating r3302 from GWT 1.5 back into trunk. The change fixes a bug in Tree where opening a TreeItem while another node is selected causes the Tree to scroll to scroll to the selected node (opening

[gwt-contrib] Re: Integrating r3302 from GWT 1.5 back into trunk. The change fixes a bug in Tree where opening a ... (issue1467813)

2011-07-08 Thread jlabanca
committed as r10425 http://gwt-code-reviews.appspot.com/1467813/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Implements UiBinder rendering for Cells. (issue1466809)

2011-07-08 Thread jlabanca
http://gwt-code-reviews.appspot.com/1466809/diff/3020/user/src/com/google/gwt/uibinder/client/AbstractUiRenderer.java File user/src/com/google/gwt/uibinder/client/AbstractUiRenderer.java (right):

[gwt-contrib] [google-web-toolkit] r10427 committed - Update bootstrap requestfactory-apt.jar to r10426.

2011-07-08 Thread codesite-noreply
Revision: 10427 Author: gwt.mirror...@gmail.com Date: Fri Jul 8 07:03:55 2011 Log: Update bootstrap requestfactory-apt.jar to r10426. http://code.google.com/p/google-web-toolkit/source/detail?r=10427 Modified: /tools/lib/requestfactory/requestfactory-apt.jar

[gwt-contrib] Re: Implements UiBinder rendering for Cells. (issue1466809)

2011-07-08 Thread rchandia
http://gwt-code-reviews.appspot.com/1466809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Use erasure to handle wildcard types in RfValidator. (issue1467814)

2011-07-08 Thread bobv
Reviewers: pquitslund, Description: Use erasure to handle wildcard types in RfValidator. Restore FindRequest to 2.4 parameterization. Patch by: bobv Review by: pquitslund Please review this at http://gwt-code-reviews.appspot.com/1467814/ Affected files: M

[gwt-contrib] Re: Implements UiBinder rendering for Cells. (issue1466809)

2011-07-08 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1466809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Use erasure to handle wildcard types in RfValidator. (issue1467814)

2011-07-08 Thread rchandia
On 2011/07/08 15:40:34, bobv wrote: LGTM http://gwt-code-reviews.appspot.com/1467814/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Implements UiBinder rendering for Cells. (issue1466809)

2011-07-08 Thread rchandia
http://gwt-code-reviews.appspot.com/1466809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix JsInliner, to properly handle name scope tracking after multi-level inlining. Was causing l... (issue1472803)

2011-07-08 Thread zundel
lgtm http://gwt-code-reviews.appspot.com/1472803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: RR: Retiring Safari 3 in a future release of GWT

2011-07-08 Thread Eric Ayers
Any other sentiments? On Tue, Jul 5, 2011 at 10:04 AM, Jeff Larsen larse...@gmail.com wrote: Good riddance. I wish it was possible to do the same with IE versions 9. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors -- Eric Ayers | Software Engineer | zun...@google.com

[gwt-contrib] Bypass RfValidatorTest when no JDK is available. (issue1465810)

2011-07-08 Thread bobv
Reviewers: rchandia, Description: Bypass RfValidatorTest when no JDK is available. Patch by: bobv Review by: rchandia Please review this at http://gwt-code-reviews.appspot.com/1465810/ Affected files: M user/test/com/google/web/bindery/requestfactory/apt/RfValidatorTest.java Index:

[gwt-contrib] Re: Bypass RfValidatorTest when no JDK is available. (issue1465810)

2011-07-08 Thread rchandia
On 2011/07/08 17:35:42, bobv wrote: LGTM http://gwt-code-reviews.appspot.com/1465810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10428 committed - Use erasure to handle wildcard types in RfValidator....

2011-07-08 Thread codesite-noreply
Revision: 10428 Author: gwt.mirror...@gmail.com Date: Fri Jul 8 07:22:32 2011 Log: Use erasure to handle wildcard types in RfValidator. Restore FindRequest to 2.4 parameterization. Patch by: bobv Review by: rchandia Review at http://gwt-code-reviews.appspot.com/1467814

[gwt-contrib] [google-web-toolkit] r10429 committed - Update bootstrap requestfactory-apt.jar to r10428.

2011-07-08 Thread codesite-noreply
Revision: 10429 Author: gwt.mirror...@gmail.com Date: Fri Jul 8 10:51:57 2011 Log: Update bootstrap requestfactory-apt.jar to r10428. http://code.google.com/p/google-web-toolkit/source/detail?r=10429 Modified: /tools/lib/requestfactory/requestfactory-apt.jar

[gwt-contrib] [google-web-toolkit] r10430 committed - Update 2.4 branch with selective build fixes from trunk....

2011-07-08 Thread codesite-noreply
Revision: 10430 Author: b...@google.com Date: Fri Jul 8 07:56:17 2011 Log: Update 2.4 branch with selective build fixes from trunk. Review by: mrruss...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10430 Modified:

[gwt-contrib] RFC: Breaking change to CellTable

2011-07-08 Thread John LaBanca
If you do not use Cell Widgets, you can ignore this email. * We recently introduced a new ElementBuilder APIhttp://code.google.com/p/google-web-toolkit/source/detail?r=10412 for building elements using either DOM manipulation or string concatenation with innerHTML. It allows us to optimize for

[gwt-contrib] Re: Adding all supported element builders to the ElementBuilder API. This is a follow-on change for... (issue1463812)

2011-07-08 Thread rchandia
On 2011/07/07 19:40:35, jlabanca wrote: LGTM. Did not check *all* methods and classes, though. http://gwt-code-reviews.appspot.com/1463812/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: This patch substantially reduces the overhead of Java types in the output by minimizing vtable s... (issue1447821)

2011-07-08 Thread cromwellian
http://gwt-code-reviews.appspot.com/1447821/diff/6053/dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java File dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java (right):

[gwt-contrib] Re: This patch substantially reduces the overhead of Java types in the output by minimizing vtable s... (issue1447821)

2011-07-08 Thread cromwellian
http://gwt-code-reviews.appspot.com/1447821/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: This patch substantially reduces the overhead of Java types in the output by minimizing vtable s... (issue1447821)

2011-07-08 Thread jbrosenberg
LGTM http://gwt-code-reviews.appspot.com/1447821/diff/20001/dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java File dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaAST.java (right):

[gwt-contrib] [google-web-toolkit] r10432 committed - Fix JsInliner, to properly handle name scope tracking after multi-leve...

2011-07-08 Thread codesite-noreply
Revision: 10432 Author: jbrosenb...@google.com Date: Fri Jul 8 10:47:24 2011 Log: Fix JsInliner, to properly handle name scope tracking after multi-level inlining. Was causing local variable name collisions after obfuscation. Fixes issue 5936. Review at

[gwt-contrib] After an enum is ordinalized, any static methods generated as staticImpl's should no longer be c... (issue1467815)

2011-07-08 Thread jbrosenberg
Reviewers: cromwellian, scottb, zundel, Description: After an enum is ordinalized, any static methods generated as staticImpl's should no longer be considered as such, since there is no longer an instantated instance being passed as the first arg to the method (this instance has been transformed

[gwt-contrib] Re: After an enum is ordinalized, any static methods generated as staticImpl's should no longer be c... (issue1467815)

2011-07-08 Thread cromwellian
LGTM, needs test? http://gwt-code-reviews.appspot.com/1467815/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Implements UiBinder rendering for Cells. (issue1466809)

2011-07-08 Thread stephen . haberman
Is it okay to make that public? I think it is OK. We usually publish them in the Wiki, but Docs is getting so good that I wanted to try it this way. Using docs makes sense. Will it eventually be made public? Perhaps copy/pasted over into the wiki for posterity?