Aw: Re: Strange History Behaviour

2011-06-21 Thread Sven
We just made a custom PlaceController and Historian to share some log messages. Most of the google methods are private so that we can't just override them implementing our log messages. You mentioned GWT.setUncaughtExceptionHandler and i already placed it in my code. But it may be the wrong

Re: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-06-21 Thread Alain Ekambi
Hello Yusuf, I m glad you got it to work. I took a look at the link you provided. Looks pretty :) Maybe you want to change the backgroundColor to white ? You can do that by calling *Applicaton.get().setStyle(backgroundColor, #FF);* * * in the initHandler * * Little complicated for now i have

Re: Re : Re: CellTree with SingleSelectionModel will not fire event for root node (GWT 2.3)

2011-06-21 Thread Jens
Hi Thanks for the tip, but my problem is not loading the nodes, its only selection the root node that causes me problems (or did i miss something in the mentioned thread?). Best regards Jens On Jun 19, 3:40 pm, mkkm...@gmail.com mkkm...@gmail.com wrote: Hi, Try

Aw: Re: Strange History Behaviour

2011-06-21 Thread Sven
UPDATE: after try catching in my AbstractClientFactory i found something: protected EventBus createEventBus() { return new SimpleEventBus() { @Override public void fireEvent(Event? event) { try {

Re: When will get Multiple-File-Input(input type=file multiple= /) supported?

2011-06-21 Thread Alex Luya
How to get file list? can you post a code split to show how to do it? -- public static native void getFiles() /*-{ var input =th...@com.domain.client.clx::fileUpload; for (var i = 0; i input.files.length;

Re: RequestFactory with Collections of ValueProxy in a ValueProxy

2011-06-21 Thread Alexandre Ardhuin
it looks like http://code.google.com/p/google-web-toolkit/issues/detail?id=6354 Alexandre. 2011/6/20 Alexandre Ardhuin alexandre.ardh...@gmail.com Hi all, I face a very strange behavior on requestFactory with GWT-2.3. Sometimes, java.util.SetT collections are not deserialized as expected

Re: Highlight a selected map marker based on a custom icon.

2011-06-21 Thread Thomas Lefort
Have you tried implementing your own marker, ie extending overlay? mind you there are a few things you'll miss out on, eg drag for instance but it's pretty straightforward and you can add the dom elements you like, and change their style. On Jun 20, 4:00 pm, MeiAestro jmalbre...@gmx.de wrote:

Re: GWT Context2d - drawing text - fontsize

2011-06-21 Thread ghost23
Works! :o) Thanks On 20 Jun., 17:58, Thomas Broyer t.bro...@gmail.com wrote: Seehttp://diveintohtml5.org/canvas.html#text Which translates in GWT into: context2d.setFont(bold 12px sans-serif); -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Re : Re: CellTree with SingleSelectionModel will not fire event for root node (GWT 2.3)

2011-06-21 Thread mkkm...@gmail.com
Yes, it's the end of the code: // defining *private SingleSelectionModelMyType selectionModel =** new SingleSelectionModelMyType();* // inside TreeViewModel ctor (or in a better place) * selectionModel.addSelectionChangeHandler(new SelectionChangeEvent.Handler() {** public void

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-21 Thread Paul Robinson
On 20/06/11 21:21, Hilco Wijbenga wrote: On 20 June 2011 11:59, Nathan Klattn8kl...@gmail.com wrote: I've inherited a GWT project and I'm receiving the following compiler error (more info below): [java] [ERROR] Line 51: No source code is available for type java.lang.NoSuchFieldError; did

Re: Aw: Re: Strange History Behaviour

2011-06-21 Thread Thomas Broyer
try { super.fireEvent(event); } catch (UmbrellaException ue) { for (Throwable t : ue.getCauses()) { // here, use your code that prints the stack-trace; and if it's not enough, loop over the getCause() hierarchy } } An UncaughtExceptionHandler is a global catch: basically, your GWT code

Aw: Re: Strange History Behaviour

2011-06-21 Thread Sven
I solved it You won't believe it... My View is currently using a third party calendar which needs to be implemented via native js. Deep in my UmbrellaExceptions I found something like $wnd.Calendar is null or wrong type. However this was firing an event which got recognized by GWT an

Re: When will get Multiple-File-Input(input type=file multiple= /) supported?

2011-06-21 Thread Thomas Broyer
On Tuesday, June 21, 2011 9:11:28 AM UTC+2, Alex Luya wrote: How to get file list? can you post a code split to show how to do it? -- public static native void getFiles() /*-{ var input

Aw: Re: Strange History Behaviour

2011-06-21 Thread Sven
This showed me the root of the problem ;) import com.google.web.bindery.event.shared.UmbrellaException; ... ... private void checkAndPrintException(Throwable ex) { if(ex instanceof UmbrellaException){ LOG.debug(UMBRELLA EXCEPTION FOUND); UmbrellaException umbEx =

Re: Incompatibility between RequestFactory and JPA collections with orphanRemoval=true

2011-06-21 Thread Ryan McFall
Thanks for the help interpreting the JSON. After I posted the original message I noted that it looked like only objects referenced in collections were being updated. The interesting part of your description of how the diffs are built is that I took the call to RequestContext#edit on the proxy

Re: Pluggable modules

2011-06-21 Thread manstis
Hi, Thanks for your invaluable help. I'm mashing together a simple example for me to learn from that has a single statically defined plug-in. I am growing to believe I need to deploy each plug-in as a separate WAR on a web-server. Is this true, or have I missed something? I am also using

Re: GWT plugin with eclipse indigo

2011-06-21 Thread Lwando Mjila
Oh ok, thanks, what about smartgwt? On Jun 20, 2:44 pm, Thomas Broyer t.bro...@gmail.com wrote: Seehttps://twitter.com/#!/googledevtools/status/81811661354319872 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Incompatibility between RequestFactory and JPA collections with orphanRemoval=true

2011-06-21 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/web/bindery/requestfactory/shared/impl/AbstractRequestContext.java Actually, passing a proxy to a method implicitly edit()s it (see retainArg, called from addInvocation, called by the generated

Re: EasyGWT 1.1.0 is finally here!

2011-06-21 Thread J.Ganesan
Thank you. In another two days, we will put up a demo running in GAE . It will be easier for you to get familiarized with API. J.Ganesan www.DataStoreGwt.com On Jun 21, 6:02 am, Alfredo Quiroga-Villamil laww...@gmail.com wrote: I just checked outhttp://www.datastoregwt.com/. I  could not agree

Re: building custom event differently to avoid boiler plate coding?

2011-06-21 Thread Ramon Salla
+1 to this! -- 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/-/SAqQBT-i0iAJ. To post to this group, send email to

השב: Re: building custom event differently to avoid boiler plate coding?

2011-06-21 Thread Elhanan
thanks, i was thinking about maybe starting a blog called the no-boilerplate series to post shortcuts such as these i come with, but i thought surely folks have more experience then me, in these things.. -- You received this message because you are subscribed to the Google Groups Google Web

Re: GWT Project Structure Frontend/Backend

2011-06-21 Thread Ramon Salla
Yes. We are already doing this. We started using RequestBuilder and Json (Des)Serialization but we ended up using plain RPC services as development is so much easier. We are wrapping some of those RPC services with REST using jersey. We have two dependent projects one with server code and the

Re: GWT Project Structure Frontend/Backend

2011-06-21 Thread Elhanan Maayan
i'm unfamiliar with SOP and gwt policy files, i havn't tried much of rpc aside form the fact that each service should only object of input and object of output both extending RequesInput and RequestOutput interfaces (generic wise) to avoid break method signature incase of changes . i then moved

Re: GWT Project Structure Frontend/Backend

2011-06-21 Thread Juan Pablo Gardella
You can use gwt-dispatch if you use RPC. 2011/6/21 Elhanan Maayan elh.mailg...@gmail.com i'm unfamiliar with SOP and gwt policy files, i havn't tried much of rpc aside form the fact that each service should only object of input and object of output both extending RequesInput and

Re : Re: Re : Re: CellTree with SingleSelectionModel will not fire event for root node (GWT 2.3)

2011-06-21 Thread mkkm...@gmail.com
Can you post your getNodeInfo methdo code ? -- 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/-/fhH98t5si6wJ. To post to this group, send email to

UML (Ecore) integration Android

2011-06-21 Thread Dave K
I've made an Ecore diagram and some generated code. I want to use the generated model in an Android project but I can't get it to work. I've added the UML project to the build path and can call classes form it. After compiling no error is given but when I use it in the emulator or phone it crashes

Re: GWT 2.4 - What and when?

2011-06-21 Thread cri
What's new in GWT 2.4? On Jun 20, 3:50 pm, Thomas Broyer t.bro...@gmail.com wrote: See also:https://twitter.com/#!/googledevtools/status/81811661354319872 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-06-21 Thread Iqbal Yusuf
Well a BIG THANK YOU Alain. I'm just enjoying your brilliant cooked up library. :) That link I put up just for you to test so I haven't done anything yet. Since all my video contents are up in the Amazon CloudFront cloud it was vital that I could stream video using rtmp protocol using your tool.

setting the default number of tree nodes to display in celltree

2011-06-21 Thread DevJodie
Hi all, Is there a way to set the number of tree nodes to be displayed in celltree? setDefaultNodeSize() works only for the child nodes. There should be a way to set the default number of nodes to be displayed for the tree nodes that are already open. Does anybody know a way to do that? Thanks

Re: Re : Re: Re : Re: CellTree with SingleSelectionModel will not fire event for root node (GWT 2.3)

2011-06-21 Thread Jens Teglhus Møller
Hi I have trimmed down my tree to a minimal example root node with one child both strings and here it works (should of course have done this before my initial post :-(), i suspect it to be related to some generics stuff that i'm clueless about. I will have to dig deeper into this. Sorry for the

Displaying entries of an CellList lazily?

2011-06-21 Thread zeroconf
Dear GWT devs, I would like to display entries of a CellList in a lazy manner, similar to the Table Widgets of SWT. That is, the data is not populated before its row is displayed. Unfortunately, I didn't figured out how this can be done with the CellList or CellTable. The list contains about

Re: Unable to load module entry point class

2011-06-21 Thread Ben Munge
Can you post your code for WelcomePage? On Jun 20, 11:42 am, SCK guyedj...@gmail.com wrote: Hi, I'm new developer in GWT. I try somthing and when I want to Run the application, I get error Failed to load Module. See error in below: [ERROR] Unable to load module entry point class

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-21 Thread Ben Munge
In your GWT console double click the individual errors and you should get a more detailed stack trace. It likely is something wrong with your code rather then a missing import/resource. I've gotten a similar error in the past and it's not overly intuitive. On Jun 20, 1:59 pm, Nathan Klatt

Re: Dev Mode gwt.rpc file

2011-06-21 Thread Tim
   I'm trying to write code to retrieve the serialization policy manually and ran into an issue.  My compiled GWT code outputs a gwt.rpc file indicating what can and cannot be serialized for my app but when I deploy dev mode that file is no where on my file system. Is this in some hidden

Problem with GWT Service results

2011-06-21 Thread Jose Luis Hernandez
Hello! I have a problem. I am calling to server side on GWT. The results of call is an ArrayList (result). Inside onSuccess method another ArrayList is wrapped with the result. However, if I want to use ArrayList lista outside of onSuccess method it contains 0 elements, but inside is like result

Streaming

2011-06-21 Thread Khadija FERJANI
Hello everybody Can someone help me with ideas or links about VideoStreaing over GWT please. Thanks -- Cordialement, Khadija FERJANI Élève ingénieur à la faculté des sciences de Tunis. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

How to call a rest web service from gwt mobile application

2011-06-21 Thread syruss
Hi all, I have created a mobile application using GWT.I have successfully created the UI part but i have to call a rest web service from GWT mob app. What i have tried is 1.I have called the rest web service using HttpUrlConnection in java its working fine as web app but if i deployed the app

Compiler Deprecated warnings

2011-06-21 Thread Nuno R
Hi, I'm using SDK 2.1.0 on a project and using incubator (gwt- incubator-20101117-r1766.jar) for the FastTree widget. When i compile the project, compiler throws deprecated warnings on widgets that aren't used on the project code. As all i can see, FastTree and FastTreeItem doesn't have any

nocache.js and DOM XSS

2011-06-21 Thread Glen
Hi, I am supporting a couple of older GWT apps (version 1.4) and the IT Security audit is red-flagging the nocache.js files of these apps with DOM XSS vulnerabilities. More specifically, the code highlighted looks to be the use of document.location.href (i.e. the page URL). My understanding is

Displaying images from server folder

2011-06-21 Thread nikd
Hi, I'm totally new to this area of programming, and I would like to know if it is possible to display using GWT the contents of a (random - in path) folder that resides in server and which are images. Also, is it possible to add custom controls to the GWT that will create and/or manipulate

Eclipse hosted mode in Facebook iframe

2011-06-21 Thread Peter
Hi, We're developing a Facebook app with GWT but can't get the hosted mode in Eclipse to work inside Facebook's iframe. Have anyone got this working? It would make it simpler to debug some issues. We've tried using the dev plugins for Firefox 4, Explorer 7 and Chrome 12. Firefox and Explorer

Re: GMail like selection combobox

2011-06-21 Thread Ben Munge
It's a pretty simple Widget. The checkbox itself is simply a standard check box. The event would check all if clicked and unchecked all if unchecked. The box around it is simply a div styled as a button with a click event. The click event shows the dropdown which is simply another collection of

java.lang.ExceptionInInitializerError

2011-06-21 Thread hongjie86...@yahoo.com.cn
I am a begginner of GWT.I used gwt-2.3.0.When I debug the sample of DynaTable under gwt-2.3.0, I encounted some question I can't solve as the following. when I debug DynaTable ,Jetty print out the Exception in the following: java.lang.ExceptionInInitializerError at

Re: Displaying entries of an CellList lazily?

2011-06-21 Thread Juan Pablo Gardella
Read this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/f539d58327a351d3?pli=1 2011/6/21 zeroconf dimweth...@gmail.com Dear GWT devs, I would like to display entries of a CellList in a lazy manner, similar to the Table Widgets of SWT. That is, the data is not

Re: Problem with GWT Service results

2011-06-21 Thread Daniel Mauricio Patino León
RootPanel.get(mainContainer).add(new Label(Array lista 2: +lista.toString())); RootPanel.get().add(new Label(String.valueOf(Array lista 2: +lista.size(; for(int i = 0; i lista.size(); i++){ RootPanel.get().add(new Label(BOTON +i));

Re: Eclipse hosted mode in Facebook iframe

2011-06-21 Thread mohamed salah
On Tue, Jun 21, 2011 at 4:12 PM, Peter peter.sundqv...@gmail.com wrote: Hi, We're developing a Facebook app with GWT but can't get the hosted mode in Eclipse to work inside Facebook's iframe. Have anyone got this working? It would make it simpler to debug some issues. We've tried using the

Re: Streaming

2011-06-21 Thread Alain Ekambi
May i suggest : http://www.gwt4air.appspot.com/#mx.controls.VideoDisplay Best, Alain 2011/6/20 Khadija FERJANI ferjani.khad...@gmail.com Hello everybody Can someone help me with ideas or links about VideoStreaing over GWT please. Thanks -- Cordialement, Khadija FERJANI Élève ingénieur

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-21 Thread Nathan Klatt
Makes perfect sense - thanks so much for the reply and the link! -- 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/-/96qmqceSNOQJ. To post to this

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-21 Thread Nathan Klatt
Thanks for the idea - right now I'm strictly command-line (on a remote server) but I'll add this to my list of Reasons to Develop on My Local Machine with a GUI. :) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

Re: How to call a rest web service from gwt mobile application

2011-06-21 Thread Juan Pablo Gardella
See http://restygwt.fusesource.org/ 2011/6/21 syruss navinkumar...@gmail.com Hi all, I have created a mobile application using GWT.I have successfully created the UI part but i have to call a rest web service from GWT mob app. What i have tried is 1.I have called the rest web service

Re: Error while updating/installing the Eclipse plugin

2011-06-21 Thread Piro
Are you installing over internet? You can try installation from packed installation site. http://code.google.com/intl/en-EN/eclipse/docs/install-from-zip.html On 20. Jún, 20:00 h., ToddySM todd...@gmail.com wrote: I am hitting an error while updating/installing the plugin. Here the details:

GWT and CORS with file uploads

2011-06-21 Thread Alan Chaney
Hi My company is developing a REST API for an asset management system and we wish to add support for CORS both in the server (comparatively easy) and also in GWT client applications. One use case for this API is a GWT application where the user uploads a file from their local filing system.

Standard vs Quirks mode also use of DecoratorPanel in Standard mode

2011-06-21 Thread Myth17
Hello Can someone describe the advantages/disadvantages of Standard vs Quirks mode. Also when to use which? (I googled around but couldnt not find something describing the issue in detail) Also I have an app in standard mode and I want to use something like DecoratorPanel for the Stylized

@ImageOptions

2011-06-21 Thread Hilco Wijbenga
Hi all, I've been using @ImageOptions to scale (PNG) images. This mostly worked in GWT 2.2 but now that I've moved to GWT 2.3 most images fail quietly and don't display (meaning that src=# instead of the inlined image at runtime). public interface MyResources extends ClientBundle {

Aw: How to call a rest web service from gwt mobile application

2011-06-21 Thread Jens
Is the web service you want to call accessible on the same protocol://domain:port as your GWT app? Normally RequestBuilder should work fine for requesting rest web services but maybe you have been run into the Same Origin Policy http://en.wikipedia.org/wiki/Same_origin_policy? If thats the

Re: Pluggable modules

2011-06-21 Thread lemaiol
Hi Mike, I am growing to believe I need to deploy each plug-in as a separate WAR on a web-server. Is this true, or have I missed something? In the case of my architecture, it is even a requirement that every plugin will be deployed as an own WAR file. It allows different teams working in

Re: Context Menu in CellTable

2011-06-21 Thread André Salvati
Ok, following 1) I've got the code bellow. Now, how can I define an event handler on a view which wraps this CellTable?? These handlers are suposed to be defined by view and not by cells!! public class TextCellNX extends AbstractSafeHtmlCellString { public TextCellNX() {

Re: Context Menu in CellTable

2011-06-21 Thread André Salvati
Should I use EventBus even when the event is generated by an inner component? What would be a good design? Thanks. -- 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.

Re: RadioButton exception on create in IE9

2011-06-21 Thread Benju
I also have this problem with GWT 2.3.0 and creating buttons. On May 13, 7:13 am, piXi slop...@gmail.com wrote: Helow, First my develop enviroment : Windows 7 x64 Netbeans 7.0 ( tried also 6.9.1) Gwt4nb 2.10 GWT2.2.0 today I have upgraded my html to HTML5 and have encountered this

Re: השב: Re: building custom event differently to avoid boiler plate coding?

2011-06-21 Thread Alex D.
You shouldn't use custom events for every possible event in your app, imo -- or, even better, identify the best events that match as much as possible. What you're suggesting by this is removing the strong-type event definitions provided by Java. Of couse, you can work with a class called

Apache Shiro or Spring Security??

2011-06-21 Thread Fabricio Pizzichillo
Hello everyone. What security and authentication framework works well with a GWT application ? Someone used some as Apache-Shiro or Spring-Security? What do you recommend? thanks Fabricio -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Apache Shiro or Spring Security??

2011-06-21 Thread Juan Pablo Gardella
I use spring security and works. Is robust and mature. 2011/6/21 Fabricio Pizzichillo fpizzichi...@gmail.com Hello everyone. What security and authentication framework works well with a GWT application? Someone used some as Apache-Shiro or Spring-Security? What do you recommend? thanks

Re: Apache Shiro or Spring Security??

2011-06-21 Thread Fabricio Pizzichillo
thanks, I'll do some research on how to integrate 2011/6/21 Juan Pablo Gardella gardellajuanpa...@gmail.com I use spring security and works. Is robust and mature. 2011/6/21 Fabricio Pizzichillo fpizzichi...@gmail.com Hello everyone. What security and authentication framework works well

Re : @ImageOptions

2011-06-21 Thread Thomas Broyer
Could it rather be about how you *use* the ImageResource? See http://code.google.com/p/google-web-toolkit/issues/detail?id=6145 -- 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: השב: Re: building custom event differently to avoid boiler plate coding?

2011-06-21 Thread Elhanan Maayan
first off you probably mean the strong type definitions provided by GWT, not java right? second, that's not what i'm suggesting, i don't want to use events for enable disable buttons, but i do want to use to create logical messages, that a work process has ended/started, or basically whatever

Re: Apache Shiro or Spring Security??

2011-06-21 Thread Juan Pablo Gardella
good luck 2011/6/21 Fabricio Pizzichillo fpizzichi...@gmail.com thanks, I'll do some research on how to integrate 2011/6/21 Juan Pablo Gardella gardellajuanpa...@gmail.com I use spring security and works. Is robust and mature. 2011/6/21 Fabricio Pizzichillo fpizzichi...@gmail.com

Re: Apache Shiro or Spring Security??

2011-06-21 Thread Juan Pablo Gardella
I do a simple sample https://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Homethat integrate with spring security, but is very basic. Have server side protected method too with jsr-250. I can't said anything about apache shiro, but if you choose spring security you will no have problems

customize animation effect of Tree/TreeItem

2011-06-21 Thread karthik reddy
I went through the code in Tree/TreeItem and seems like the animation duration( I think this governs how slow/fast the the tree collapses with the slide down effect) is hard-coded and set to private: private static final int ANIMATION_DURATION = 200; Hoping against hope: Is there any other

Re: Apache Shiro or Spring Security??

2011-06-21 Thread Elhanan Maayan
we are exploring apache shiro with gwt integration, the reason is first of all, you don't spring beans for it, and 2nd is that also provides for session management which spring security does not. even folks at spring forums say shiro has much broader scope then security .. On Wed, Jun 22, 2011

onCellClicked alternative?

2011-06-21 Thread Navindian
PFA class. I am able to implement onCellClicked event with this. Looks like with the latest gwt 2.3.3, it is deprecated. Please suggest alternate way of implementing this in the flextable. Thanks navindian -- You received this message because you are subscribed to the Google Groups Google Web

Re: Eclipse hosted mode in Facebook iframe

2011-06-21 Thread Peter
I think you misunderstood. We don't want to create an iframe in GWT code. Our GWT page is loaded in an iframe. The URL of the iframe is http://127.0.0.1:/Page.html?gwt.codesvr=127.0.0.1:9997;. But this doesn't work with the development mode in Eclipse. -- You received this message

[gwt-contrib] Re: Don't allow DataflowOptimizer to perform constant transformation on expressions with side-effects. (issue1467801)

2011-06-21 Thread zundel
LGTM, just some comments. http://gwt-code-reviews.appspot.com/1467801/diff/1/dev/core/test/com/google/gwt/dev/jjs/impl/gflow/DataflowOptimizerTest.java File dev/core/test/com/google/gwt/dev/jjs/impl/gflow/DataflowOptimizerTest.java (right):

[gwt-contrib] Re: Disabling test for null on getBrowserById for DOM elements without DTD when running on Chrome 11... (issue1462805)

2011-06-21 Thread rchandia
On 2011/06/20 18:48:41, tobyr wrote: LGTM Submitted as of r10354 http://gwt-code-reviews.appspot.com/1462805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

2011-06-21 Thread jlabanca
http://gwt-code-reviews.appspot.com/1451818/diff/8002/user/src/com/google/gwt/core/client/ScriptInjector.java File user/src/com/google/gwt/core/client/ScriptInjector.java (right):

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

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

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

2011-06-21 Thread zundel
http://gwt-code-reviews.appspot.com/1451818/diff/8002/user/src/com/google/gwt/core/client/ScriptInjector.java File user/src/com/google/gwt/core/client/ScriptInjector.java (right):

[gwt-contrib] Issue 6504: AutoBean doesn't support enums with anonymous enum values (issue1467802)

2011-06-21 Thread t . broyer
Reviewers: bobv, rjrjr, Description: Issue 6504: AutoBean doesn't support enums with anonymous enum values Please review this at http://gwt-code-reviews.appspot.com/1467802/ Affected files: M user/src/com/google/web/bindery/autobean/shared/ValueCodex.java M

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

2011-06-21 Thread jlabanca
Full review this time. http://gwt-code-reviews.appspot.com/1451818/diff/10011/user/src/com/google/gwt/core/client/ScriptInjector.java File user/src/com/google/gwt/core/client/ScriptInjector.java (right):

[gwt-contrib] Cleans up the mobile web app sample for 2.4. (issue1468801)

2011-06-21 Thread rchandia
Reviewers: jlabanca, Description: Cleans up the mobile web app sample for 2.4. Please review this at http://gwt-code-reviews.appspot.com/1468801/ Affected files: M samples/mobilewebapp/pom.xml M

[gwt-contrib] Re: Cleans up the mobile web app sample for 2.4. (issue1468801)

2011-06-21 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1468801/diff/1/samples/mobilewebapp/src/main/java/com/google/gwt/sample/mobilewebapp/client/mobile/MobileTaskReadView.java File samples/mobilewebapp/src/main/java/com/google/gwt/sample/mobilewebapp/client/mobile/MobileTaskReadView.java (right):

[gwt-contrib] Re: Don't allow DataflowOptimizer to perform constant transformation on expressions with side-effects. (issue1467801)

2011-06-21 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1467801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Cleans up the mobile web app sample for 2.4. (issue1468801)

2011-06-21 Thread rchandia
http://gwt-code-reviews.appspot.com/1468801/diff/1/samples/mobilewebapp/src/main/java/com/google/gwt/sample/mobilewebapp/client/mobile/MobileTaskReadView.java File samples/mobilewebapp/src/main/java/com/google/gwt/sample/mobilewebapp/client/mobile/MobileTaskReadView.java (right):

[gwt-contrib] Re: Cleans up the mobile web app sample for 2.4. (issue1468801)

2011-06-21 Thread rchandia
http://gwt-code-reviews.appspot.com/1468801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Don't allow DataflowOptimizer to perform constant transformation on expressions with side-effects. (issue1467801)

2011-06-21 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1467801/diff/1/dev/core/test/com/google/gwt/dev/jjs/impl/gflow/DataflowOptimizerTest.java File dev/core/test/com/google/gwt/dev/jjs/impl/gflow/DataflowOptimizerTest.java (right):

[gwt-contrib] Re: Issue 6504: AutoBean doesn't support enums with anonymous enum values (issue1467802)

2011-06-21 Thread bobv
LGTM. Will commit and integrate into 2.4 branch. http://gwt-code-reviews.appspot.com/1467802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10357 committed - Updated rpc generator result caching to support full cacheability...

2011-06-21 Thread codesite-noreply
Revision: 10357 Author: jbrosenb...@google.com Date: Tue Jun 21 04:31:29 2011 Log: Updated rpc generator result caching to support full cacheability Also added support for changes to relevant properties and custom field serializers Review at

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

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

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

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

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

2011-06-21 Thread zundel
Updated patch. http://gwt-code-reviews.appspot.com/1451818/diff/10011/user/src/com/google/gwt/core/client/ScriptInjector.java File user/src/com/google/gwt/core/client/ScriptInjector.java (right):

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

2011-06-21 Thread jlabanca
http://gwt-code-reviews.appspot.com/1451818/diff/10011/user/src/com/google/gwt/core/client/ScriptInjector.java File user/src/com/google/gwt/core/client/ScriptInjector.java (right):

[gwt-contrib] Re: Cleans up the mobile web app sample for 2.4. (issue1468801)

2011-06-21 Thread rchandia
submitted as r10358 http://gwt-code-reviews.appspot.com/1468801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Improve GwtAstBuilder output when stack emulation is enabled. (issue1460801)

2011-06-21 Thread scottb
http://gwt-code-reviews.appspot.com/1460801/diff/1/dev/core/src/com/google/gwt/dev/jjs/impl/GwtAstBuilder.java File dev/core/src/com/google/gwt/dev/jjs/impl/GwtAstBuilder.java (left):

[gwt-contrib] [google-web-toolkit] r10359 committed - Support anonymous enum types in AutoBean ValueCodex....

2011-06-21 Thread codesite-noreply
Revision: 10359 Author: gwt.mirror...@gmail.com Date: Tue Jun 21 10:47:41 2011 Log: Support anonymous enum types in AutoBean ValueCodex. Issue 6504. http://gwt-code-reviews.appspot.com/1467802/ Patch by: t.broyer Review by: bobv

[gwt-contrib] [google-web-toolkit] r10360 committed - Don't allow DataflowOptimizer to perform constant transformation on ex...

2011-06-21 Thread codesite-noreply
Revision: 10360 Author: gwt.mirror...@gmail.com Date: Tue Jun 21 10:56:04 2011 Log: Don't allow DataflowOptimizer to perform constant transformation on expressions with side-effects. Review at http://gwt-code-reviews.appspot.com/1467801

[gwt-contrib] Re: Improve GwtAstBuilder output when stack emulation is enabled. (issue1460801)

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

[gwt-contrib] Adds a static factory method to create Event.Type using type (issue1462806)

2011-06-21 Thread bduff
Reviewers: rjrjr, Description: Adds a static factory method to create Event.Type using type inference (to avoid having to duplicate generic type parameters). Please review this at http://gwt-code-reviews.appspot.com/1462806/ Affected files: M

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

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

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

2011-06-21 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1451818/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

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

[gwt-contrib] Re: A general purpose script injection class for injecting a script directly (issue1451818)

2011-06-21 Thread zundel
http://gwt-code-reviews.appspot.com/1451818/diff/5008/user/src/com/google/gwt/core/client/ScriptInjector.java File user/src/com/google/gwt/core/client/ScriptInjector.java (right):

  1   2   >