Re: Eclipse hosted mode in Facebook iframe

2011-06-22 Thread A. Stevko
I answered this question at stackoverflow http://stackoverflow.com/questions/2646544/debug-gwt-inside-facebook-iframe/3283940#3283940 As it is, you cannot use 127.0.0.1 as the url hostname for your facebook app - you'll have to use a dns hostname pointing to the public ip address of your

Post upgrade problems with GWT 2.3.0

2011-06-22 Thread mohit
Hi all, I have just update my GWT 2.1.1 to GWT 2.3.0 Initially I was having problems with smartGWT which I resolved by replacing old SmartGWT jar with the latest nightly build of SmartGwt. I had to add two more jars namely, validation-api-1.0.0.GA.jar validation-api-1.0.0.GA-sources.jar Now my

Re: Eclipse hosted mode in Facebook iframe

2011-06-22 Thread Peter
Thanks! Editing the hosted.html file works. I can also use 127.0.0.1 in the iframe URL, but then I haven't enabled any cross-site request forgery measures. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re : @ImageOptions [Solved]

2011-06-22 Thread Hilco Wijbenga
On 21 June 2011 18:56, Thomas Broyer t.bro...@gmail.com wrote: Could it rather be about how you *use* the ImageResource? See http://code.google.com/p/google-web-toolkit/issues/detail?id=6145 Ah, good call. And I even remember looking at those issues. This should really be flagged by the

Re: Apache Shiro or Spring Security??

2011-06-22 Thread Nicolas Antoniazzi
Here, we use Shiro since it is really easy to integrate. Moreover, Shiro is not tight to Spring... And that's a good thing for us since we use Gin on client and Guice on Server (to not multiply API). 2011/6/22 Elhanan Maayan elh.mailg...@gmail.com we are exploring apache shiro with gwt

Re: onCellClicked alternative?

2011-06-22 Thread Thomas Broyer
From the JavaDoc: *Deprecated.* *add a click handler instead and use getCellForEvent(ClickEvent)http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/HTMLTable.html#getCellForEvent(com.google.gwt.event.dom.client.ClickEvent) to get the cell information

Re: onCellClicked alternative?

2011-06-22 Thread Navindian
Yeah I have done the same.its working for me. Thanks Thomas. On Wed, Jun 22, 2011 at 2:14 PM, Thomas Broyer t.bro...@gmail.com wrote: From the JavaDoc: *Deprecated.* *add a click handler instead and use

Re: FireFox 5.0

2011-06-22 Thread Joris
Hi, I just upgraded to FF5, and now get the message Development Mode requires the Google Web Toolkit Developer Plugin. But it doesn't work for FF5 (Sorry, the GWT Developer Plugin only supports Firefox 3.0 - 4.0 at present). When should it be working for FF5? Thanks! -- You received this

How to see the implementation of interface by GWT (*Differed Binding)

2011-06-22 Thread saurabh saurabh
Hi all, I hope there could be a way to log or see the various implementation of interfaces and class like from RequestFactory : Request , EntityProxy, ValueProxy etc. Any Idea to make a log or something for these implementation. Thanks in advancd -- You received this message because you

Re: Displaying entries of an CellList lazily?

2011-06-22 Thread zeroconf
On Jun 21, 5:33 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Read this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/threa... Thanks for the pointer but unfortunately no solution is given there and this does not describe my use case. The contents in my

Aw: How to see the implementation of interface by GWT (*Differed Binding)

2011-06-22 Thread Jens
You can use the -gen /path/to/folder switch to tell GWT to put all generated classes into that specified folder. -- 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

HTML ids for widgets generated in a celltable

2011-06-22 Thread nirav patani
Hi, Is there a way to add html ids to widgets generated in a celltable. for instance i have cell table whose one column contains only buttons. i wantto set HTML ids for those buttons. Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Pluggable modules

2011-06-22 Thread manstis
Great, lots to play with :) Before I look into writing my own JSNI bridge, I've still been trying to use gwt-exporter, but. I've three GWT applications:- (1) Plugin (inherits Common) (2) Backend (inherits Common) (3) Common Plugin Contains:- ... echoButton.addClickHandler(new

Re: Apache Shiro or Spring Security??

2011-06-22 Thread Juan Pablo Gardella
With spring you can use the same API too, JSR-330. 2011/6/22 Nicolas Antoniazzi nicolas.antonia...@gmail.com Here, we use Shiro since it is really easy to integrate. Moreover, Shiro is not tight to Spring... And that's a good thing for us since we use Gin on client and Guice on Server (to not

Re: Apache Shiro or Spring Security??

2011-06-22 Thread Elhanan Maayan
but... you need .. spring beans... wouldn't that be the point of the spring container? instrument beans managed in it? On Wed, Jun 22, 2011 at 3:25 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: With spring you can use the same API too, JSR-330. 2011/6/22 Nicolas Antoniazzi

Re: HTML ids for widgets generated in a celltable

2011-06-22 Thread xelibrety
The simplest way to add an id to a cell widget is to use the render method. A more complex (and ugly) way is to add an loading state changed handler to the cell list and wait until the table is fully rendered. Then navigate to the specific cell and modify the element.

Integration tests with GWTTestCase

2011-06-22 Thread Robert W
My scenario: I have gwt part communicating with serwer (php) using RequestBuilder. GWT test runner starting internal server on localhost domain, some port but my serwer part is not changeable. Could gwt test runner start width different startup url as dev mode?. I try - Dgwt.args=-startupUrl

NPE when HasDataEditor for field of type List initialize()

2011-06-22 Thread Romain BIARD
Hi, We are using editor framework for CRUD operations with mysql/Hibernate Backend. We managed to create and modify simple fields (String, other proxies entities ...) but we have a NPE while trying to edit a new proxy created by RequestContext.create(); which contains an arraylist of another

Not getting value for nested proxy

2011-06-22 Thread saurabh saurabh
Hi all, again I stuck at a point in RequestFactory. I have nested Entites like public class Person{ private String name; //--other properties private Address address; //-- getters and setters } class Address{ private String city;

Re: Not getting value for nested proxy

2011-06-22 Thread Sydney
See http://code.google.com/webtoolkit/doc/latest/DevGuideRequestFactory.html When querying the server, RequestFactory does not automatically populate relations in the object graph. To do this, use the with() method on a request and specify the related property name as a String: I guess you

Re: How to see the implementation of interface by GWT (*Differed Binding)

2011-06-22 Thread saurabh saurabh
Thanks for the reply, but can you suggest how can I do this in eclipse -- 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 group, send email to

Re: HTML ids for widgets generated in a celltable

2011-06-22 Thread Ben Munge
Just curious, but why do you need ID's? Xelibrety's solution should work but you should be able to add any behavior you want to the objects through GWT without the need for an ID. If you have JavaScript that needs IDs to access them, you might as well just port Xelibrety's code over the JavaScript

Re: Not getting value for nested proxy

2011-06-22 Thread saurabh saurabh
Yes,problem resolved. you are right, the 'with()' part was missing. Thanks a lot. -- 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 group, send

Re: NPE when HasDataEditor for field of type List initialize()

2011-06-22 Thread Thomas Broyer
On Wednesday, June 22, 2011 3:27:35 PM UTC+2, Romain BIARD wrote: Any ideas ? FYI, GWT 2.3 won't fail on edit() or display() (it handles null values) but unfortunately will do on flush() You can wrap your HasDataEditor within a ValueAwareEditor (with @Path()) and force a non-null value

[WARN] Unknown realm: default

2011-06-22 Thread Mikael
In a GWT application I try to use declarative security. Application runs ok in Tomcat. However, in the Development Mode in Eclipse I get following on the console: Starting Jetty on port [WARN] Unknown realm: default And then in browser I get: HTTP ERROR: 500 No realm Is there any way

FTP upload of large files

2011-06-22 Thread Martin Winter
I want to upload large files (up to several GB) from the webuser-pc to the ftp-server. The user should not have to install a plugin or a special software, so I would be glad to have the client in javascript. the java-functionality should be something like :

Problem in deploy

2011-06-22 Thread agalvao
Hello! I'm not sure if this is the right place to make this question, but if you can help or tell me the right place, I would appreciate. After developing the first version of my app, I deployed it to a tomcat server. When I try to access is on a clean computer, the browser asks for development

Re: gwt tree problem - unable to select (highlight) text in FIREFOX

2011-06-22 Thread Osman Erdem Asga
it is probably because of the css rule :focus { -moz-user-select: none; } please check if it is applied. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

UI binder design mode error

2011-06-22 Thread srini malka
HI folks, I created Test.ui.xml UI biner , when i open in design mode i am getting following error: i am using eclips 3.6 and For GWT SDK Plugin   http://dl.google.com/eclipse/plugin/3.6 For GWT Designer  plug in   http://dl.google.com/eclipse/inst/d2gwt/latest/3.6 ERROR:

error in opening zip file

2011-06-22 Thread André Nishimura
Hello I need help! I'm trying to run my application in eclipse but i have this problem: Starting Jetty on port [WARN] Failed startup of context com.google.gwt.dev.shell.jetty.JettyLauncher$WebAppContextWithReload@11afa07

Re: gwt tree problem - unable to select (highlight) text in FIREFOX

2011-06-22 Thread Osman Erdem Asga
I have the same problem with TextBoxes (Actually with any widget inheriting ValueBoxBase). It only happens with Firefox. They work properly on stockwatcher example application but not in mine. I would also appreciate any clue about why this might me happening. Thanks Erdem -- You received

Re: How to see the implementation of interface by GWT (*Differed Binding)

2011-06-22 Thread Rodrigo Chandia
Assuming you compile your GWT project in Eclipse with: (Right click on your project) Google GWT Compile The GWT Compile dialog will appear. Click 'Advanced'. The 'Additional compiler arguments:' box will appear. Type your desired compiler options in there. In this case -gen somefolder El

Re: Problem in deploy

2011-06-22 Thread David Chandler
Correct, no plugin is necessary for production mode. Remove ?gwt.codesvr=x.x.x.x:9997 from the URL. /dmc On Wed, Jun 22, 2011 at 10:25 AM, agalvao anocas.pr...@gmail.com wrote: Hello! I'm not sure if this is the right place to make this question, but if you can help or tell me the right

Re: FireFox 5.0

2011-06-22 Thread ialpert
I did the upgrade/downgrade myself today... Was going to use chrome's version of the plugin but it's really under performing. On Jun 22, 6:05 am, Joris j...@get.be wrote: Hi, I just upgraded to FF5, and now get the message Development Mode requires the Google Web Toolkit Developer Plugin.  

Re: Re: Problem in deploy

2011-06-22 Thread anocas . prata
I'm sorry, where should I do that? Is there a property on compiling or something? Thanks, agalvao Em , David Chandler drfibona...@google.com escreveu: Correct, no plugin is necessary for production mode. Remove ?gwt.codesvr=:9997 from the URL. /dmc On Wed, Jun 22, 2011 at 10:25 AM,

Re: FireFox 5.0

2011-06-22 Thread Samyem Tuladhar
Firefox is automatically upgrading to version 5 today and then GWT plugin stops working. Since they have got the final release out now, it should be considered API frozen now right? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Re: Re: Problem in deploy

2011-06-22 Thread Alain Ekambi
David ment in the *Browser URL*. There you should remove* ?gwt.codesvr=x.x.x.x:9997* 2011/6/22 anocas.pr...@gmail.com I'm sorry, where should I do that? Is there a property on compiling or something? Thanks, agalvao Em , David Chandler drfibona...@google.com escreveu: Correct, no plugin

Re: FireFox 5.0

2011-06-22 Thread Chris Conroy
As I said in my previous mail, there is going to be lag between their release and our ability to support Firefox 5. They released just yesterday, and upgrading the plugin sdks and spinning new builds is not the quickest process in the world. To continue working with GWT Devmode, you should either

Re: FireFox 5.0

2011-06-22 Thread Thad
FireFox 5.0 is out today. I was alerted to it by FireFox 4.0.1, and just downloaded it. On Jun 13, 2:47 pm, Hilco Wijbenga hilco.wijbe...@gmail.com wrote: On 13 June 2011 06:59, john destefano jjdest...@gmail.com wrote: Just updated my OS (Ubuntu 11.04 -64) and got the latest version of

Resources on the History of GWT?

2011-06-22 Thread Jambi
Hey guys, I´m planning to write my bachelor thesis about GWT. I want to write about best practices and a whole bunch of patterns. I also want to write something about the development and history behind GWT. Does anyone know some good resources about that topic? Wikipedia and the google docs don´t

Anchor in UiBinder

2011-06-22 Thread gadev
Hi there, I have a mobile view of an app and when user clicks on the anchor I would like to launch the phones dialer. Apparently this is the html implementation a href=tel:07822232323323 07822232323323/a However there is another thing to be taken into account, my view implements Editor? so

Re: customize animation effect of Tree/TreeItem

2011-06-22 Thread karthik reddy
Any pointers on this would be much appreciated.. -- 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/-/gWRFf4r4Oq8J. To post to this group, send email

Re: UI binder design mode error

2011-06-22 Thread Eric Clayberg
Looks like a JDK issue... http://code.google.com/p/google-web-toolkit/issues/detail?id=4254 If you are using JDK 1.5, give it a try using JDK 1.6. On Jun 22, 10:31 am, srini malka srini.j...@gmail.com wrote: HI folks, I created Test.ui.xml UI biner , when i open in design mode i am getting  

Re: Widget not displayed upon change of place

2011-06-22 Thread Harry
Juan Pablo Gardella gardellajuanpablo@... writes: Hi Harry Can you resolve the problem? If not, in onStop() or onCancel() you must unregistrer your handlers. Not about display regions. Try put your do the placeChangeEvent like this: Scheduler.get().scheduleDeferred(new

Version dates

2011-06-22 Thread Sale
Can someone please sent me a list of all GWT versions with the DATES when they became available? I need it for a research on Java Web Frameworks and their comparision. I've chosse GWT among others and this data is needed for calculating some factors needed for comparision. These data aren't

No source code is available for type java.util.Calendar;

2011-06-22 Thread Ashish
Hi, There is one static methond which is called by onModuleLoad() method. that method use java.util.calendar object. when i try to run this it gives me No source code is available for type java.util.Calendar; Even i have added java source jar file in my java build path. any one can help me on

Re: Version dates

2011-06-22 Thread David Chandler
Funny you should ask, I'm just now updating the wikipedia page... http://en.wikipedia.org/wiki/Google_Web_Toolkit#History See also http://code.google.com/p/google-web-toolkit/downloads/list /dmc On Wed, Jun 22, 2011 at 2:40 PM, Sale throwt...@gmail.com wrote: Can someone please sent me a

Re: Anchor in UiBinder

2011-06-22 Thread Bala Sankar
*a href=tel:#/a* This qualifies to become HTML specification. Google should do this; at least for the Android platform. Thanks, Bala On Wed, Jun 22, 2011 at 10:32 AM, gadev george.agiasog...@newsint.co.ukwrote: Hi there, I have a mobile view of an app and when user clicks on the

Re: No source code is available for type java.util.Calendar;

2011-06-22 Thread Jim Douglas
I'm assuming you meant that you attempted to reference java.util.Calendar in your application. You can't reference arbitrary Java classes in client-side GWT, only the ones that GWT emulates: http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsCompatibility.html

Re: Version dates

2011-06-22 Thread Jim Douglas
http://en.wikipedia.org/wiki/Google_Web_Toolkit#History On Jun 22, 11:40 am, Sale throwt...@gmail.com wrote: Can someone please sent me a list of all GWT versions with the DATES when they became available? I need it for a research on Java Web Frameworks and their comparision. I've chosse GWT

Re: Version dates

2011-06-22 Thread Alain Ekambi
Do i sound biased when i think Gwt4Air should be somewhere in there ? :) In the Wiki i mean. 2011/6/22 David Chandler drfibona...@google.com Funny you should ask, I'm just now updating the wikipedia page... http://en.wikipedia.org/wiki/Google_Web_Toolkit#History See also

Re: Precision problem for ValueBoxBaseLong ?

2011-06-22 Thread Eric Andresen
Kishan, I was able to work around the bug by extending LongParser and LongRenderer with the following: @Override public Long parse(CharSequence object) throws ParseException { if (.equals(object.toString())) { return null; } try { return

UIBinder issue

2011-06-22 Thread Deepak Singh
Hi, I have one UIBinder ABC.ui.xml. htmlpanel div id='main' div id='ws'/div div id='we'/div div id='wd'/div /div /htmlpanel Now i break this into 2 other uibinders named D.ui.xml htmlpanel div id='a'/div /htmlpanel and E.ui.xml htmlpanel div id='b'/div /htmlpanel Now i need to add new D()

Re: UIBinder issue

2011-06-22 Thread Alan Chaney
define a namespace in the ABC.ui.xml xmlns:my=urn:import:com.mycompany.package.for.uistuff // this should be the package of D and E put it just below the namespace for urn:ui:com.google.gwt.uibinder you can call it what you like 'my' is just an example. then htmlpanel div id='main' div

Re: UIBinder issue

2011-06-22 Thread Alan Chaney
and did you really mean htmlpanel? probably should be g:HTMLPanel... Alan On 6/22/2011 1:58 PM, Deepak Singh wrote: Hi, I have one UIBinder ABC.ui.xml. htmlpanel div id='main' div id='ws'/div div id='we'/div div id='wd'/div /div /htmlpanel Now i break this into 2 other uibinders named

Recovering the source

2011-06-22 Thread Nathan Klatt
I don't have much hope for this but is there any way to recover something reasonably approaching the original source of a GWT project given the generated class, html, JavaScript, etc files? A client has given us the generated web application but does not have access to the original source and

Re: FTP upload of large files

2011-06-22 Thread Robert W
You are wrong: ftp client is not related to gwt, worst ftp is not related to most of browser. Every technology has limits. I built client in flash technology, working on theoretically any size of file but divides large file on small chunks and cooperate with server to join them later. Works on

Re: Recovering the source

2011-06-22 Thread Jim Douglas
Without the original source, this will be a rewrite. At best, GWT- generated JavaScript is helpful for debugging IFF it was generated with output style detailed or pretty. Even in this scenario, it's not practical to attempt to reverse-engineer the original Java source. And there's almost no

Re: Widget not displayed upon change of place

2011-06-22 Thread Harry
Harry qxie777@... writes: OK, I kind of understood deferred command now, but mine still not working. -- 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

Re: Recovering the source

2011-06-22 Thread Chris Conroy
If you have the symbol manifest you could recover a decent amount of information. Though, the only hooks for that are for deobfuscating individual stack traces on the server. If I understand your situation correctly, it's as if someone handed you a compiled object file with debugging symbols

What has happened to the GWT designer for Eclipse Indigo?

2011-06-22 Thread Mark
What has happened to the GWT designer for Eclipse Indigo? -- 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 group, send email to

Making GWT ignore fields in models

2011-06-22 Thread Daniel Colchete
Good day everyone! I'm having a problem that already have been discussed a lot but I couldn't find a solution for it online. I have a model called Case1Model that implements Serializable correctly. I started using ORMLite to persist objects on the server (really simple to use). I would like to

Re: What has happened to the GWT designer for Eclipse Indigo?

2011-06-22 Thread David Chandler
Patience, friend. The GPE team works hard to get free software into your hands within hours, but sometimes it takes a day or two. /dmc On Wed, Jun 22, 2011 at 5:55 PM, Mark mayad...@gmail.com wrote: What has happened to the GWT designer for Eclipse Indigo? -- You received this message

[gwt-contrib] [google-web-toolkit] r10363 committed - Cherry pick of r10338, Add a compile-time check against provided UiFie...

2011-06-22 Thread codesite-noreply
Revision: 10363 Author: gwt.mirror...@gmail.com Date: Tue Jun 21 23:18:26 2011 Log: Cherry pick of r10338, Add a compile-time check against provided UiFields for RenderablePanel. http://code.google.com/p/google-web-toolkit/source/detail?r=10363 Modified:

[gwt-contrib] [google-web-toolkit] r10365 committed - Cherry picking r10341 into releases/2.4 for issue 6429

2011-06-22 Thread codesite-noreply
Revision: 10365 Author: zun...@google.com Date: Thu Jun 16 09:57:28 2011 Log: Cherry picking r10341 into releases/2.4 for issue 6429 http://code.google.com/p/google-web-toolkit/source/detail?r=10365 Modified:

[gwt-contrib] [google-web-toolkit] r10366 committed - Cherry-pick r10343 into GWT 2.4 branch.

2011-06-22 Thread codesite-noreply
Revision: 10366 Author: b...@google.com Date: Fri Jun 17 03:59:15 2011 Log: Cherry-pick r10343 into GWT 2.4 branch. http://code.google.com/p/google-web-toolkit/source/detail?r=10366 Added: /releases/2.4/user/src/com/google/web/bindery/requestfactory/vm/testing

[gwt-contrib] [google-web-toolkit] r10367 committed - Integrate r10344 into GWT 2.4 branch.

2011-06-22 Thread codesite-noreply
Revision: 10367 Author: b...@google.com Date: Fri Jun 17 04:22:15 2011 Log: Integrate r10344 into GWT 2.4 branch. http://code.google.com/p/google-web-toolkit/source/detail?r=10367 Modified: /releases/2.4/user/src/com/google/gwt/core/client/impl/WeakMapping.java

[gwt-contrib] [google-web-toolkit] r10368 committed - Integrate r10346 into GWT 2.4 branch.

2011-06-22 Thread codesite-noreply
Revision: 10368 Author: b...@google.com Date: Fri Jun 17 05:16:47 2011 Log: Integrate r10346 into GWT 2.4 branch. http://code.google.com/p/google-web-toolkit/source/detail?r=10368 Modified: /releases/2.4/user/src/com/google/web/bindery/requestfactory/server/Resolver.java

[gwt-contrib] [google-web-toolkit] r10370 committed - Integrate r10342 into GWT 2.4 branch.

2011-06-22 Thread codesite-noreply
Revision: 10370 Author: rj...@google.com Date: Fri Jun 17 11:00:00 2011 Log: Integrate r10342 into GWT 2.4 branch. http://code.google.com/p/google-web-toolkit/source/detail?r=10370 Modified: /releases/2.4/user/src/com/google/gwt/activity/shared/ActivityManager.java

[gwt-contrib] [google-web-toolkit] r10371 committed - Turns off creating archived modules for GWT 2.4 release....

2011-06-22 Thread codesite-noreply
Revision: 10371 Author: zun...@google.com Date: Mon Jun 20 15:02:05 2011 Log: Turns off creating archived modules for GWT 2.4 release. Review by: jbrosenb...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10371 Modified: /releases/2.4/user/build.xml

[gwt-contrib] [google-web-toolkit] r10373 committed - Integrate r10359 into GWT 2.4 branch.

2011-06-22 Thread codesite-noreply
Revision: 10373 Author: gwt.mirror...@gmail.com Date: Wed Jun 22 01:49:11 2011 Log: Integrate r10359 into GWT 2.4 branch. http://code.google.com/p/google-web-toolkit/source/detail?r=10373 Modified: /releases/2.4/user/src/com/google/web/bindery/autobean/shared/ValueCodex.java

[gwt-contrib] [google-web-toolkit] r10374 committed - Cherry picking r10362 into GWT 2.4 release

2011-06-22 Thread codesite-noreply
Revision: 10374 Author: zun...@google.com Date: Tue Jun 21 14:52:10 2011 Log: Cherry picking r10362 into GWT 2.4 release http://code.google.com/p/google-web-toolkit/source/detail?r=10374 Added: /releases/2.4/user/src/com/google/gwt/core/client/ScriptInjector.java

[gwt-contrib] [google-web-toolkit] r10375 committed - rollback of scriptInjector patch - problems found on some version of S...

2011-06-22 Thread codesite-noreply
Revision: 10375 Author: zun...@google.com Date: Wed Jun 22 01:14:16 2011 Log: rollback of scriptInjector patch - problems found on some version of Safari Review at http://gwt-code-reviews.appspot.com/1451818 http://code.google.com/p/google-web-toolkit/source/detail?r=10375

[gwt-contrib] RequestFactory annotation processor generates uncompilable code when there are nested proxies

2011-06-22 Thread Thomas Broyer
I'm trying to add a unit test for issue 5926 and I don't know how to deal with the TypeTokenResolver to easily run the test from within Eclipse. I enabled the requestfactory-apt.jar annotation processor on the gwt-user project and it generates a Java file that cannot be compiled, because it

[gwt-contrib] Switch on incremental compilation. (issue1461802)

2011-06-22 Thread scottb
Reviewers: zundel, Message: Looks ready to go! Please review this at http://gwt-code-reviews.appspot.com/1461802/ Affected files: M dev/core/src/com/google/gwt/dev/jjs/impl/GwtAstBuilder.java Index: dev/core/src/com/google/gwt/dev/jjs/impl/GwtAstBuilder.java diff --git

[gwt-contrib] Remove the pre-GwtAstBuilder compile chain. (issue1465805)

2011-06-22 Thread scottb
Reviewers: jbrosenberg, zundel, Message: Going ahead and putting this out for review, but we'll just toggle the switch first and let the dust settle. Description: - WebModeCompilerFrontEnd - BuildTypeMap - GenerateJavaAST Please review this at http://gwt-code-reviews.appspot.com/1465805/

[gwt-contrib] Remove CompilationUnit.getSource() (issue1462807)

2011-06-22 Thread scottb
Reviewers: zundel, Description: Follow-on to: http://gwt-code-reviews.appspot.com/1465805/ Please review this at http://gwt-code-reviews.appspot.com/1462807/ Affected files: M dev/core/src/com/google/gwt/dev/javac/CachedCompilationUnit.java M

[gwt-contrib] Re: Add more TCK tests. (issue1467803)

2011-06-22 Thread rchandia
LGTM. With nits. http://gwt-code-reviews.appspot.com/1467803/diff/1/user/test/com/google/gwt/validation/tck/ConstraintsGroupsGwtSuite.java File user/test/com/google/gwt/validation/tck/ConstraintsGroupsGwtSuite.java (right):

[gwt-contrib] Re: Fixing a bug in CellTree where refreshing an empty list of children causes an AssertionError tha... (issue1463805)

2011-06-22 Thread jlabanca
committed as r10353 http://gwt-code-reviews.appspot.com/1463805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds hooks to Widget reduce MVP boilerplate and enshrines the app-wide EventBus. (issue1449817)

2011-06-22 Thread jlabanca
Forgot to send these comments earlier. Ignore if they're too late. http://gwt-code-reviews.appspot.com/1449817/diff/4001/user/src/com/google/gwt/user/client/ui/IsEventSource.java File user/src/com/google/gwt/user/client/ui/IsEventSource.java (right):

[gwt-contrib] Re: Adding convenience methods to SafeStylesUtils and SafeStylesBuilder for style properties support... (issue1454808)

2011-06-22 Thread jlabanca
committed as r10356 http://gwt-code-reviews.appspot.com/1454808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Add RequestFactory validator implemented as an annotation processor. (issue1467804)

2011-06-22 Thread bobv
Reviewers: pquislund_google.com, tbroyer, Message: This annotation processor will provide compile-time validation of RequestFactory interfaces. It produces red-squigglies in Eclipse on save. The plan is for this to replace the existing RequestFactoryInterfaceValidator by pre-generating all of

[gwt-contrib] [google-web-toolkit] r10376 committed - Fixing a bug in CellTree where pushing new data that renders to the sa...

2011-06-22 Thread codesite-noreply
Revision: 10376 Author: jlaba...@google.com Date: Wed Jun 22 06:01:15 2011 Log: Fixing a bug in CellTree where pushing new data that renders to the same content results in an invalid state where child are still attached to a stale parent. For example, consider a tree contains IDs

[gwt-contrib] Re: RequestFactory annotation processor generates uncompilable code when there are nested proxies

2011-06-22 Thread BobV
On Wed, Jun 22, 2011 at 4:57 AM, Thomas Broyer t.bro...@gmail.com wrote: I'm trying to add a unit test for issue 5926 and I don't know how to deal with the TypeTokenResolver to easily run the test from within Eclipse. I enabled the requestfactory-apt.jar annotation processor on the gwt-user

[gwt-contrib] Re: Add more TCK tests. (issue1467803)

2011-06-22 Thread nchalko
http://gwt-code-reviews.appspot.com/1467803/diff/1/user/test/com/google/gwt/validation/tck/ConstraintsGroupsGwtSuite.java File user/test/com/google/gwt/validation/tck/ConstraintsGroupsGwtSuite.java (right):

Re: [gwt-contrib] Re: RequestFactory annotation processor generates uncompilable code when there are nested proxies

2011-06-22 Thread Thomas Broyer
On Wed, Jun 22, 2011 at 6:13 PM, BobV b...@google.com wrote: On Wed, Jun 22, 2011 at 4:57 AM, Thomas Broyer t.bro...@gmail.com wrote: I'm trying to add a unit test for issue 5926 and I don't know how to deal with the TypeTokenResolver to easily run the test from within Eclipse. I enabled the

[gwt-contrib] [google-web-toolkit] r10377 committed - Add more TCK tests....

2011-06-22 Thread codesite-noreply
Revision: 10377 Author: ncha...@google.com Date: Wed Jun 22 06:42:43 2011 Log: Add more TCK tests. [JSR 303 TCK Result] 143 of 257 (55.64%) Pass with 22 Failures and 8 Errors. Review at http://gwt-code-reviews.appspot.com/1467803 Review by: rchan...@google.com

[gwt-contrib] Re: RFC: ElementBuilder API (issue1455802)

2011-06-22 Thread jlabanca
There are a few constraints that led to the current API. First, there are dozens of element types, many of which have unique methods. Dumping all of these methods into one uber ElementBuilder would mean a class with hundreds of methods, and we would need a lot of runtime checks to ensure the

[gwt-contrib] Re: Fixing a bug in CellTree where pushing new data that renders to the same content results in an i... (issue1466803)

2011-06-22 Thread jlabanca
committed as r10376 http://gwt-code-reviews.appspot.com/1466803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Remove CompilationUnit.getSource() (issue1462807)

2011-06-22 Thread zundel
LGTM. Can't wait to see how this impacts size of CachedCompilationUnits! http://gwt-code-reviews.appspot.com/1462807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Switch on incremental compilation. (issue1461802)

2011-06-22 Thread zundel
LGTM http://gwt-code-reviews.appspot.com/1461802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Call getContentId to ensure the source has been read (issue1463803)

2011-06-22 Thread stephen . haberman
Note that getSource() is deprecated That's the getSource in CompilationUnit (which I saw the patch for--exciting stuff!). http://gwt-code-reviews.appspot.com/1463803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10378 committed - Ensure contentId is not null when creating a SourceFileCompilationUnit...

2011-06-22 Thread codesite-noreply
Revision: 10378 Author: zun...@google.com Date: Wed Jun 22 09:13:57 2011 Log: Ensure contentId is not null when creating a SourceFileCompilationUnit Patch by: stephen.haberman Review by: zundel Review at: http://gwt-code-reviews.appspot.com/1463803/

[gwt-contrib] Re: Update CompiledClass to use DiskCacheToken (issue1464801)

2011-06-22 Thread zundel
On 2011/06/17 16:28:14, stephenh wrote: Note that because CompiledClass doesn't have a serialVersionUID, this change causes deserialization exceptions against gwtars produced by the old code. Even though technically the serialization format is the same. Committed as r10364 Thanks for the

[gwt-contrib] Update client bundle result caching to track absent resources (issue1466804)

2011-06-22 Thread jbrosenberg
Reviewers: tobyr, zundel, Description: Update client bundle result caching to track absent resources Please review this at http://gwt-code-reviews.appspot.com/1466804/ Affected files: M user/src/com/google/gwt/resources/ext/ResourceGeneratorUtil.java M

[gwt-contrib] Re: Update client bundle result caching to track absent resources (issue1466804)

2011-06-22 Thread jbrosenberg
This change is to correctly respect the default extension search order for resources. So, for example, an image resource is first searched in the order: resourceName.png resourceName.jpg resourceName.gif This change makes sure we verify that if a resolved image is resourceName.jpg, that we

[gwt-contrib] Re: Update client bundle result caching to track absent resources (issue1466804)

2011-06-22 Thread tobyr
LGTM http://gwt-code-reviews.appspot.com/1466804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10379 committed - Switch on GWT incremental compilation....

2011-06-22 Thread codesite-noreply
Revision: 10379 Author: sco...@google.com Date: Wed Jun 22 13:09:08 2011 Log: Switch on GWT incremental compilation. http://gwt-code-reviews.appspot.com/1461802/ http://code.google.com/p/google-web-toolkit/source/detail?r=10379 Modified:

[gwt-contrib] Refactor LoadingStrategy for xsiframe linker and rename it to ScriptLoadingStrategy since it is ... (issue1468802)

2011-06-22 Thread unnurg
Reviewers: zundel, Description: Refactor LoadingStrategy for xsiframe linker and rename it to ScriptLoadingStrategy since it is not inherently tied to the xsiframe linker. Bring it more in line with the XhrLoadingStrategy and give them API compatibility so the xsiframe linker could use either

[gwt-contrib] Re: Refactor LoadingStrategy for xsiframe linker and rename it to ScriptLoadingStrategy since it is ... (issue1468802)

2011-06-22 Thread zundel
LGTM http://gwt-code-reviews.appspot.com/1468802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >