Re: Reusing a pre-existing service layer

2011-05-31 Thread J.Ganesan
Looks like your client classes will go much beyond emulated JRE in GWT. Also, you need source code of all the classes which go to client- side. Try to identify server-only classes and non-server-only classes. The latter has to to conform to emulated JRE and the source code is to be made available.

Ang.: Gwt Compilation

2011-05-31 Thread Rikard Hultén
1. Sounds like you don't have the gwt-server query param set. You should be surfing to something like localhost:?gwt-server.. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: I am using xsrf and I am getting Compilation error ?

2011-05-31 Thread suersh babu
This issue occured because of no disk space, so I delete the temp files, now this module is compiling. On Mon, May 30, 2011 at 10:51 AM, suersh babu sureshgbab...@gmail.comwrote: Hi, I am using GWT 2.3 with MVP frame work, also I am using xsrf in my module when I try to compile my module I

Re: Using custom LocalMessages apart from Locales

2011-05-31 Thread tim
On Tuesday, May 31, 2011 2:28:38 AM UTC+2, Juan Pablo Gardella wrote: Perhaps with maven filtershttp://maven.apache.org/guides/getting-started/index.html#How_do_I_filter_resource_files. You can replace properties in process-resources before compilation. This is actually a good idea but

Re: Using custom LocalMessages apart from Locales

2011-05-31 Thread Thomas Broyer
You'll have to make factories/providers of your Messages/Constants interfaces, that you'll switch using deferred binding on the other property. interface MyMessages extends Messages { … } interface MyMessagesFactory { MyMessages get(); } class Dist1MessagesFactory implements MyMessagesFactory

Re: gwt servlet thread, timer,reload

2011-05-31 Thread ArnoNyhm
Thx. i have created my timertask class, but where in the servlet i make the call? On 31 Mai, 07:41, J.Ganesan j.gane...@datastoregwt.com wrote: Since the servlet runs under J2SE, you can go for java.util.Timer  and java.util.TimerTask. J.Ganesanwww.DataStoreGwt.com On May 31, 5:08 am, Juan

SplitLayoutPanel Sizing?

2011-05-31 Thread Nick Apperley
In the application (using GWT 2.3) there is a SplitLayoutPanel with a widget on the left (East) and one on the right (West). When viewing the application in both FF 3.6 and FF 4 the combo box in the left side of the SplitLayoutPanel has its end chopped off. No resizing of the SplitLayoutPanel with

Exception java.lang.UnsatisfiedLinkError:

2011-05-31 Thread ArnoNyhm
Hi, i get this exception in my project. in another project everything is working good. i don´t know what the problem is :( Exception in thread main java.lang.UnsatisfiedLinkError: com.google.gwt.visualization.client.DataTable.create()Lcom/google/gwt/ visualization/client/DataTable; at

Re: gwt servlet thread, timer,reload

2011-05-31 Thread khiem nguyen
you can start your timer-process from something which starts with your webapp, for example in a ServletContextListener-implementations init method HTH On Tue, May 31, 2011 at 10:43 AM, ArnoNyhm etechniker@googlemail.comwrote: Thx. i have created my timertask class, but where in the

Canvas dimensions

2011-05-31 Thread Thomas Lefort
Hi, I have a canvas in a hidden panel. It is created before the panel is made visible. The problem I'd like to set its DOM width to 100% but I have a problem with the setCoordinateSpaceWidth then as I cannot get the canvas dimension via getOffsetWidth as the canvas is not visible. I don't even

Re: GWT 2.3 composite editor // setValue called twice

2011-05-31 Thread Sebastian Beigel
Hi Patrick, that's true, but it was an example only. You surely should do what you said but it's still unnecessary (and potentially harmful for the performance) to do this call twice (by the framework!), so I think it's a bug in GWT's editor code that should be fixed there and not be worked

Re: gwt servlet thread, timer,reload

2011-05-31 Thread Adolfo Panizo Touzon
Hi Arno, I have relatively little experience in this, but if you want some action program for xtime, gwt offers mechanisms for such coordination. I would recommend that you take a look at Timerhttp://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/Timer.html . My

Re: gwt servlet thread, timer,reload

2011-05-31 Thread ArnoNyhm
ah ok, i suspect somthing like this, thx. On 31 Mai, 11:13, khiem nguyen khi...@googlemail.com wrote: you  can start  your timer-process from something which starts with your webapp, for example in a ServletContextListener-implementations init method HTH On Tue, May 31, 2011 at 10:43 AM,

Re: Canvas dimensions

2011-05-31 Thread Adolfo Panizo Touzon
Hi Cheers, I read long ago according to where the application runs for certain parameterschanged the settings. GetOffsetWidth I think is one of them. Can it be? 2011/5/31 Thomas Lefort lefortho...@gmail.com Hi, I have a canvas in a hidden panel. It is created before the panel is made

Re: Overriding a css style loclly

2011-05-31 Thread Adolfo Panizo Touzon
Hi lalit, try it with this ui:style field='reportStyle' @external gwt-Label; .gwt-Label{ color: #000 !Important; } /ui:style I founded it herehttp://stackoverflow.com/questions/2322779/gwt-theme-style-overrides-my-css-style

Re: Big Daddy example problems

2011-05-31 Thread Adolfo Panizo Touzon
Can the application runs in other port?? 2011/5/30 Zachariah Young zpyo...@gmail.com @bbgott I'm getting the same issue also on Ubuntu. The solutions work just fine on Windows. Could it be that Ubuntu has the port blocked or something? Also what did u hard code to get the Android

Re: GWT CellList Drag and Drop

2011-05-31 Thread Jee
Thanks. I tried to implement you given example in eclipse Helios. But i got errors in SortableCellDragAndDropHandler Class Please guide to solve problems 1.$(draggedCell).css(CSS.DISPLAY.with(Display.NONE)); --- The method with(Style.Display) is undefined for the type DisplayProperty

Re: how do i add a tooltip to a column header in a celltable ?

2011-05-31 Thread Juan Pablo Gardella
For example in your column. 2011/5/31 Celinio cel...@gmail.com thanks for your answer. I had already explored that onBrowserEvent(...) possibility. Where do i add that OnBrowserEvent(...) method to exactly ? On Tue, May 31, 2011 at 2:31 AM, Juan Pablo Gardella

Re: how do i add a tooltip to a column header in a celltable ?

2011-05-31 Thread Celinio
Do you suggest something like this ? It's not firing any event when I move the mouse over ColumnmyDTO, String utilisateurVerrouColumn = new ColumnmyDTO, String( new ClickableTextCell(blablaRender)) { public String getValue(myDTO d) { return something; } protected void

Re: how do i add a tooltip to a column header in a celltable ?

2011-05-31 Thread Celinio
hmm looks like i needed to use the new signature of the method : public void onBrowserEvent(Cell.Context context, Element elem, DemandeBean object, NativeEvent event) { ...} However the method is called

Using RequestBuilder to communicate with a RESTful API on another port

2011-05-31 Thread Alexander Orlov
I want to write a RESTful GWT frontend for a RESTful backend. The problem is that the backend code (server) is written in Go and can't run on the same port as GWT's dev server (port 9997). Due to XMLHttpRequest's (the underlying class behind RequestBuilder) security restrictions I can't

Re: Using RequestBuilder to communicate with a RESTful API on another port

2011-05-31 Thread Thomas Broyer
If you do not have server-side code in Java, then you can just start the DevMode in -noserver- mode and point it to your Go server, see http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#How_do_I_use_my_own_server_in_development_mode_instead_of_GWT's Otherwise, you

Re: Using RequestBuilder to communicate with a RESTful API on another port

2011-05-31 Thread Alexander Orlov
On May 31, 2:16 pm, Thomas Broyer t.bro...@gmail.com wrote: If you do not have server-side code in Java, then you can just start the DevMode in -noserver- mode and point it to your Go server, see http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebu... Yep, I guess that's what

Re: GWT CellList Drag and Drop

2011-05-31 Thread Julien Dramaix
You are using an old version of gwtquery. Download the last stable version of GwtQuery compatible with the gwt version you are using : http://code.google.com/p/gwtquery/wiki/Downloads The last version of the draggable plugin :

Re: Using custom LocalMessages apart from Locales

2011-05-31 Thread Tim Eggert
Hi Thomas, thanks a lot! I've tried your advice right now and it works absolutely fine for all cases where we can inject the LocalMessages. There is only one problem since we also use the LocalMessages within the UiBinder xml templates. There we currently reference the LocalMessages as a

Re: GWT CellList Drag and Drop

2011-05-31 Thread Jee
Below jars are being used.But facing the issue with WITH gquery-dnd-bundle-1.0.3 gwtquery-1.0.0-2.3.0 droppable-plugin-1.0.6 gwt 2.3 $(draggedCell).css(CSS.DISPLAY.with(Display.NONE)); $(draggedCell).css(CSS.DISPLAY.with(Display.BLOCK)); please let us know how to proceed. Thanks Jee On

Re: GWT CellList Drag and Drop

2011-05-31 Thread icamts
Hi, add draggable-plugin-1.0.4, remove gquery-dnd-bundle-1.0.3. If you're not using Maven move droppable-plugin-1.0.6 before gwt 2.3 library in compilation order. Hope it helps. Cheers, Luca On 31 Mag, 15:16, Jee sundarra...@gmail.com wrote: Below jars are being used.But facing the issue with

Re: Big Daddy example problems

2011-05-31 Thread Ed
Try running netstat as root on the linux machine to determine if the port is in use On Tue, May 31, 2011 at 6:07 AM, Adolfo Panizo Touzon adolfo.pan...@gmail.com wrote: Can the application runs in other port?? 2011/5/30 Zachariah Young zpyo...@gmail.com @bbgott I'm getting the same issue

Re: Using custom LocalMessages apart from Locales

2011-05-31 Thread Thomas Broyer
An ui:with/ translates into a GWT.create() call (unless you @UiField(provided=true) the field in your Java class). Because you're now GWT.create()ing the LocalMessagesFactory, you'll have to change you ui.xml files to ui:with field=localMessage

Re: SplitLayoutPanel Sizing?

2011-05-31 Thread icamts
May be you are missing to put SplitLayoutPanel in a RootLayoutPanel. Alternatively you can provide explicit size, see Recipes here: http://code.google.com/intl/it-IT/webtoolkit/doc/latest/DevGuideUiPanels.html#Recipes Cheers, Luca On 31 Mag, 10:54, Nick Apperley napper...@gmail.com wrote: In

Re: GWT CellList Drag and Drop

2011-05-31 Thread Jee
Hi, Its working fine now. Because i have missed one jar file in class path. If you have time, please create an article about CellList re-order. Thanks Jee On May 31, 6:33 pm, icamts ica...@gmail.com wrote: Hi, add draggable-plugin-1.0.4, remove gquery-dnd-bundle-1.0.3. If you're not using

Re: Action on a ImageResourceCell

2011-05-31 Thread Sydney
I actually followed this tutorial and now it works fine: http://webcentersuite.blogspot.com/2011/03/custom-gwt-clickable-cell-with-images.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Best Practise: Database Java Backend

2011-05-31 Thread Gambo
Hi there, maybe there were some answers serveral times on this topic but I couldnt find them. I am looking for a best practise of gwt project setup with java backend. As usual we are setting up our database first and then doing the object relation mapping afterwards, creating DTOs and client

Re: Action on a ImageResourceCell

2011-05-31 Thread Jambi
Are you using this cell in a cellList or in a cellTable? I´m also stucking with creating a clickable Image Cell On 31 Mai, 16:16, Sydney sydney.henr...@gmail.com wrote: I actually followed this tutorial and now it works

Re: GWT/GPE 2.3 unable to sign in with Google Apps account

2011-05-31 Thread Henrik Strand
FYI http://code.google.com/p/google-web-toolkit/issues/detail?id=6410 -- 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

Whats the use of this(); in the AppEngine Example

2011-05-31 Thread jmbz84
Hello, I'm completing the tutorial of GWT with Google App Engine http://code.google.com/intl/es/webtoolkit/doc/1.6/tutorial/appengine.html In one example I see this: public Stock(User user, String symbol) { this(); this.user = user; this.symbol = symbol; } What's the use of the

Canvas clear rectangle

2011-05-31 Thread ihsan ciftci
I think canvas should contain a method to clear entire canvas regardless of current context. The clearing approach with Integer.MIN-MAX works great on chrome,safar,opera but not ie and ff. /* * canvas.getContext2d().save(); * canvas.getContext2d().setTransform(1,0,0,1,0,0); *

Can't get gwt remote service (path) to work

2011-05-31 Thread AppEngineNoob
Hi, I have an app named thinpost, where client-side code lives in com.mthusain.thinpost.client.* and server-side code lives in com.mthusain.thinpost.server.* . I have made a service (for RPC with AppEngine JDO) called ThinpostService. The ThinpostServiceAsync code lives in the client-side whereas

Scroller

2011-05-31 Thread strut
I have a situation where i have a grid in a gridpanel and on the top of it there are two check boxes which are added to a normal panel and which inturn is added to a multifieldpanel. Now for grid panel i have set auto scroll is true. But when i want scroll the grid i want the checkboxes to be

Uibinder xml auto-complete freezes

2011-05-31 Thread Selva
Hi, I have installed the Google Plugin for Eclipse 3.6 (Version: 2.4.0.ms1_r36v201105101332, ID com.google.gdt.eclipse.suite.e36.feature.feature.group) from update site http://dl.google.com/eclipse/plugin/beta/3.6. While editing ui.xml files with UiBinder Template Editor or WindowBuilder

Re: ScrollPanel steals focus from FlexTable

2011-05-31 Thread petrstepanov
MickeyR mnrooney@... writes: Oh MickeyR I am currently working on the same issue: FlexTable (file list) wrapped with a FocusPanel is placed inside a ScrollPanel. But currently I even cannot capture the keyDownEvent with the FocusPanel. Would you be so kind to email me your source code please?

Re: Whats the use of this(); in the AppEngine Example

2011-05-31 Thread Patrick Julien
it's calling the default constructor On Mon, May 30, 2011 at 4:39 PM, jmbz84 jmb...@gmail.com wrote: Hello, I'm completing the tutorial of GWT with Google App Engine http://code.google.com/intl/es/webtoolkit/doc/1.6/tutorial/appengine.html In one example I see this:  public Stock(User

Re: Using custom LocalMessages apart from Locales

2011-05-31 Thread Tim Eggert
Thanks for your explanation. We will do it like this for now ;) Best regards, Tim -- 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,

Re: GWT/GPE 2.3 unable to sign in with Google Apps account

2011-05-31 Thread Alex Humesky
Henrik, all, We've determined that the problem is that certain OAuth scopes aren't supported for Google Apps accounts still on the old Google Apps infrastructure, i.e. un-migrated accounts. The solution is to migrate your accounts to the new Google Apps infrastructure. Please see

Reflection Class Generator

2011-05-31 Thread Adolfo Panizo Touzon
Can somebody the function about de class Generator and all the similar classes which is contained int he packpage com.google.gwt.core.ext, it´s used for deferred binding? Maybe if I want use reflection in my app, I must use these classes?? -- El precio es lo que pagas. El valor es lo que

Re: Best Practise: Database Java Backend

2011-05-31 Thread J.Ganesan
On May 31, 7:33 pm, Gambo mark.vanv...@gmail.com wrote: Hi there, maybe there were some answers serveral times on this topic but I couldnt find them. I am looking for a best practise of gwt project setup with java backend. As usual we are setting up our database first and then doing the

Re: Using RequestBuilder to communicate with a RESTful API on another port

2011-05-31 Thread Alexander Orlov
On May 31, 2:16 pm, Thomas Broyer t.bro...@gmail.com wrote: If you do not have server-side code in Java, then you can just start the DevMode in -noserver- mode and point it to your Go server, seehttp://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebu... To accomplish this I use

New GWT /App engine site

2011-05-31 Thread ale
Hello everyone. I am very happy to introduce you to a site made by me and my friend Giorgio. http://www.youtrail.com The website ha been completely developed with GWT, and deployed on the app engine. The main theme of the site are the outdoor sports/activities: you can find some trail with

Re: Using RequestBuilder to communicate with a RESTful API on another port

2011-05-31 Thread Alexander Orlov
On May 31, 5:32 pm, Alexander Orlov alexander.or...@loxal.net wrote: Any tips how I can use the -noserver with Maven or IntelliJ (I don't use Eclipse)? Ok, I've got it :) The ?gwt.codesvr=127.0.0.1:9997 parameter was missing. So basically my Go server plays Jetty. -- You received this

Re: Using RequestBuilder to communicate with a RESTful API on another port

2011-05-31 Thread Thomas Broyer
Er, no. Without the gwt.codesvr, you run the compiled JS (or if you didn't mvn gwt:compile, you run the almost-empty *.nocache.js generated by DevMode so you can use it (the DevMode)), with gwt.codesvr your trigger the DevMode browser plugin which connects back to the DevMode app (listening at

Re: Best Practise: Database Java Backend

2011-05-31 Thread Paul Robinson
Or you could use Hibernate to generate your database schema from your object model. On 31/05/11 16:31, J.Ganesan wrote: On May 31, 7:33 pm, Gambomark.vanv...@gmail.com wrote: Hi there, maybe there were some answers serveral times on this topic but I couldnt find them. I am looking for a

Re: Exception while dispatching incoming RPC call

2011-05-31 Thread Juan M
I solved it by editing the datastore-indexes-auto in WAR- WEB-INF. it was: datastore-index kind=Stock ancestor=false source=auto property name=user direction=asc/ property name=createDate direction=asc/ /datastore-index changed to: datastore-index kind=Stock

Re: Best Practise: Database Java Backend

2011-05-31 Thread Juan Pablo Gardella
See this samplehttps://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home. There the database is generate and populated at runtime. Util to prototype. 2011/5/31 Paul Robinson ukcue...@gmail.com Or you could use Hibernate to generate your database schema from your object model. On 31/05/11

GPE 2.4 Removing C2DM

2011-05-31 Thread msanztru
Hi GPE devs, I have been playing with the GPE 2.4. It looks great. One comment though and a related question. Comment: When you create an Android + App Engine project it creates it incorporating the C2DM. It would be nice to have the option to create the project without this functionality,

Problem with cookies cleaning on tab closing

2011-05-31 Thread Cibeles
Hi, i need to clean the user cookies (particulary the session ones) when the last tab or window of my application is closed, i've tried with: Window.addWindowClosingHandler(new ClosingHandler() { @Override public void onWindowClosing(ClosingEvent

Re: New GWT /App engine site

2011-05-31 Thread Rich Dean
Nice. On May 31, 11:52 am, ale aleee...@gmail.com wrote: Hello everyone. I am very happy to introduce you to a site made by me and my friend Giorgio. http://www.youtrail.com The website ha been completely developed with GWT, and deployed on the app engine. The main theme of the site are

XML validation with XSD (SXML Schema) validation in GWT

2011-05-31 Thread Michaël
Hi, After a lot of research on the web I don't find how to validate a XML file with a XSD (XML Schema) in GWT (2.3.0). I saw that on the JSE 6 there is a SchemaFactory class, but not in GWT. So, how can I do this validation? Best regards. -- You received this message because you are

A question about CellList and SelectionModel

2011-05-31 Thread ManoOjo
Hello, I'm newbie on GWT and App Engine and I have a question. I have a CellList with a SingleSelectionModel. It works correctly but I would like to set an init selection. I'm using selectionModel.setSelected(selectedTest,true) and it works but the problem is that I don't know how to make the

Layout Showcase

2011-05-31 Thread Bruno Santos
I'm making a website using GWT, but I'm not good with layout, so I wonder if I use the layout of the GWT Showcase, and if I can do what I should be able to use it? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: New GWT /App engine site

2011-05-31 Thread David Chandler
Friendly reminder: the appropriate place to post sites built with GWT is gwtgallery.appspot.com. Folks can subscribe to the Recent projects RSS feed to keep up with the latest projects built with GWT. Let's preserve the GWT group for technical discussion about GWT. Thanks, /dmc On Tue, May 31,

Re: Action on a ImageResourceCell

2011-05-31 Thread Sydney
In a CellTable -- 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 google-web-toolkit+unsubscr...@googlegroups.com. For

Re: XML validation with XSD (SXML Schema) validation in GWT

2011-05-31 Thread Jeff Chimene
On 05/31/2011 08:52 AM, Michaël wrote: Hi, After a lot of research on the web I don't find how to validate a XML file with a XSD (XML Schema) in GWT (2.3.0). I saw that on the JSE 6 there is a SchemaFactory class, but not in GWT. So, how can I do this validation? Best regards. You

Aw: Uibinder xml auto-complete freezes

2011-05-31 Thread daniel brelovsky
hi, if you are behind a proxy have a look here: https://groups.google.com/d/topic/google-web-toolkit/2j0RulDMfgc/discussion -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Uibinder xml auto-complete freezes

2011-05-31 Thread Magno Machado
I have the same issue (although I didn't check it when I'm not on internet), and I'm not behind a proxy I used the same workarround On Tue, May 31, 2011 at 4:34 PM, daniel brelovsky d.brelov...@googlemail.com wrote: hi, if you are behind a proxy have a look here:

Direct Client Need: Java/GWT Developer in SFO, CA

2011-05-31 Thread Manish Savale
Hello, This is a Direct Client requirement for a Sr. Java-J2EE/GWT developer. The client has interviewed quite a few candidates and rejected as none came with recent verifiable experience in GWT/GXT. Kindly review the JD and let me know if you'd be interested in this assignment. Role:

REQ: Java/GWT Developer in SFO, CA

2011-05-31 Thread Manish Savale
Hello This is a Direct Client requirement for a Sr. Java-J2EE/GWT developer. The client has interviewed quite a few candidates and rejected as none came with recent verifiable experience in GWT/GXT. Kindly review the JD and email me your updated resume at mani...@tts-consulting.com Role:

GWT on server-side...Google Maps..

2011-05-31 Thread -guliyev-
Hello, I need a suggestion on implementing GWT application for my server-side part of project, but I don't know where to start (I'm newbie in GWT)...And I have to use Google maps API in my server-side --- this app will continuously get some coordinates from maps, calculate it in GWT (Java code)

R: Re: New GWT /App engine site

2011-05-31 Thread ale
Sorry, I will publish there! Thanks. Alessandro -- 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: Re: New GWT /App engine site

2011-05-31 Thread Gal Dolber
Looks really nice! A few things: - Its taking too long to load the results on a the 'list view' and there is no loading animation - The popups on the maps are collapsing - Same as point 1 for many other places, add loading feedback wherever you hit the server Regards On Tue, May

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

2011-05-31 Thread gwt.user
How do i use RPC with the gwt4air Flex API ? Cant get it to work. Thx -- 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

EMF Error

2011-05-31 Thread Pavel Byles
Trying to get RequestFactory to work but I am getting: Server Error: Could not initialize class myproject.com.server.domain.EMF at the line that contains this code: ListCountry list = em.createQuery(select c from Country c ).getResultList(); Anyone have any ideas? -- -Pav -- You received

creating war

2011-05-31 Thread Navindian
How to create a war out of GWT Web application project? -- 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

[gwt-contrib] Re: Added -XdisableSoycHtml command line flag for disabling HTML compile report generation. This wil... (issue1450807)

2011-05-31 Thread zundel
LGTM w/ nit http://gwt-code-reviews.appspot.com/1450807/diff/1/dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java File dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java (right):

[gwt-contrib] CompileModule creates a serialized set of compilation units to represent (issue1448808)

2011-05-31 Thread zundel
Reviewers: scottb, tobyr, jbrosenberg, Description: CompileModule creates a serialized set of compilation units to represent a GWT module as a module.gwt file. This is intended to be run when building a library to support incremental compilation of a module. Please review this at

[gwt-contrib] Re: Format comments to 100 columns to match code format (issue1450808)

2011-05-31 Thread pdr
I wasn't able to find that in the style guide or discussion when it was changed. 80 code / 100 comments feels inconsistent. On 2011/05/29 23:06:55, zundel wrote: Leaving comments at 80 was intentional as per the style guide, I thought. On May 29, 2011 6:43 PM, mailto:p...@google.com wrote:

[gwt-contrib] Re: Added -XdisableSoycHtml command line flag for disabling HTML compile report generation. This wil... (issue1450807)

2011-05-31 Thread dconnelly
http://gwt-code-reviews.appspot.com/1450807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Consolidates all methodDependencies files into one per split point. (issue1453802)

2011-05-31 Thread zundel
Reviewers: dconnelly, Description: Consolidates all methodDependencies files into one per split point. Please review this at http://gwt-code-reviews.appspot.com/1453802/ Affected files: M dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java D

[gwt-contrib] Re: Consolidates all methodDependencies files into one per split point. (issue1453802)

2011-05-31 Thread dconnelly
http://gwt-code-reviews.appspot.com/1453802/diff/1/dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java File dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java (right):

[gwt-contrib] Re: Consolidates all methodDependencies files into one per split point. (issue1453802)

2011-05-31 Thread zundel
http://gwt-code-reviews.appspot.com/1453802/diff/1/dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java File dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java (right):

[gwt-contrib] cleanups to soyc HTML report generation code. (issue1447811)

2011-05-31 Thread zundel
Reviewers: dconnelly, Description: cleanups to soyc HTML report generation code. Please review this at http://gwt-code-reviews.appspot.com/1447811/ Affected files: M dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java Index:

[gwt-contrib] Re: Adds ability to query the generator context whether a rebind rule exists for a given type (issue1450806)

2011-05-31 Thread rjrjr
http://gwt-code-reviews.appspot.com/1450806/diff/3002/dev/core/src/com/google/gwt/core/ext/GeneratorContext.java File dev/core/src/com/google/gwt/core/ext/GeneratorContext.java (right):

[gwt-contrib] Re: Change the wrapElement API to receive the id and a parent element. I also ported some of the boo... (issue1446811)

2011-05-31 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/1446811/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] GWT support for Chrome Frame (issue1449808)

2011-05-31 Thread fabiomfv
Reviewers: jgw, jlabanca, Description: GWT support for Chrome Frame http://code.google.com/p/google-web-toolkit/issues/detail?id=5166 Please review this at http://gwt-code-reviews.appspot.com/1449808/ Affected files: M user/src/com/google/gwt/user/rebind/UserAgentPropertyGenerator.java

[gwt-contrib] Re: GWT support for Chrome Frame (issue1449808)

2011-05-31 Thread jgw
On 2011/05/31 16:42:35, fabiomfv wrote: LVVTGM. http://gwt-code-reviews.appspot.com/1449808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10243 committed - Fix warnings in samples/expenses...

2011-05-31 Thread codesite-noreply
Revision: 10243 Author: gwt.mirror...@gmail.com Date: Fri May 27 11:03:45 2011 Log: Fix warnings in samples/expenses Review at http://gwt-code-reviews.appspot.com/1447810 Review by: jlaba...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10243 Modified:

[gwt-contrib] Re: cleanups to soyc HTML report generation code. (issue1447811)

2011-05-31 Thread dconnelly
LGTM On 2011/05/31 16:06:31, zundel wrote: http://gwt-code-reviews.appspot.com/1447811/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10246 committed - Added -XdisableSoycHtml command line flag for disabling HTML compile r...

2011-05-31 Thread codesite-noreply
Revision: 10246 Author: dconne...@google.com Date: Tue May 31 04:51:05 2011 Log: Added -XdisableSoycHtml command line flag for disabling HTML compile report generation. This will not affect SOYC XML output. Review at http://gwt-code-reviews.appspot.com/1450807 Review by:

[gwt-contrib] [google-web-toolkit] r10247 committed - Consolidates all methodDependencies files into one per split point....

2011-05-31 Thread codesite-noreply
Revision: 10247 Author: zun...@google.com Date: Tue May 31 04:59:43 2011 Log: Consolidates all methodDependencies files into one per split point. Review at http://gwt-code-reviews.appspot.com/1453802 Review by: dconne...@google.com

[gwt-contrib] [google-web-toolkit] r10248 committed - Reintroduces JsInliner patch (3rd time is a charm?). Fix for issue 57...

2011-05-31 Thread codesite-noreply
Revision: 10248 Author: gwt.mirror...@gmail.com Date: Tue May 31 10:42:42 2011 Log: Reintroduces JsInliner patch (3rd time is a charm?). Fix for issue 5707. With minor tweaks to Ray Cromwell's original version of this patch. Review at http://gwt-code-reviews.appspot.com/1451802

[gwt-contrib] [google-web-toolkit] r10249 committed - IsRenderable should not extend SafeHtmlRenderer anymore....

2011-05-31 Thread codesite-noreply
Revision: 10249 Author: rdcas...@google.com Date: Tue May 31 07:26:19 2011 Log: IsRenderable should not extend SafeHtmlRenderer anymore. Review at http://gwt-code-reviews.appspot.com/1446811 http://code.google.com/p/google-web-toolkit/source/detail?r=10249 Modified:

[gwt-contrib] [google-web-toolkit] r10250 committed - GWT support for Chrome Frame...

2011-05-31 Thread codesite-noreply
Revision: 10250 Author: fabio...@google.com Date: Tue May 31 07:28:25 2011 Log: GWT support for Chrome Frame http://code.google.com/p/google-web-toolkit/issues/detail?id=5166 Review at http://gwt-code-reviews.appspot.com/1449808

[gwt-contrib] Re: Issue 5166 in google-web-toolkit: Add GWT support for Google Chrome Frame

2011-05-31 Thread codesite-noreply
Updates: Summary: Add GWT support for Google Chrome Frame Cc: google-w...@googlegroups.com Comment #6 on issue 5166 by fabio...@google.com: Add GWT support for Google Chrome Frame http://code.google.com/p/google-web-toolkit/issues/detail?id=5166 (No comment was entered for

[gwt-contrib] [google-web-toolkit] r10251 committed - cleanups to soyc HTML report generation code....

2011-05-31 Thread codesite-noreply
Revision: 10251 Author: gwt.mirror...@gmail.com Date: Tue May 31 08:05:59 2011 Log: cleanups to soyc HTML report generation code. Review at http://gwt-code-reviews.appspot.com/1447811 Review by: dconne...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10251

[gwt-contrib] Re: UnifyAst (issue1451804)

2011-05-31 Thread zundel
http://gwt-code-reviews.appspot.com/1451804/diff/1/dev/core/src/com/google/gwt/dev/jjs/ast/JDeclaredType.java File dev/core/src/com/google/gwt/dev/jjs/ast/JDeclaredType.java (right):

[gwt-contrib] Re: Adds ability to query the generator context whether a rebind rule exists for a given type (issue1450806)

2011-05-31 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1450806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds ability to query the generator context whether a rebind rule exists for a given type (issue1450806)

2011-05-31 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1450806/diff/3002/dev/core/src/com/google/gwt/core/ext/GeneratorContext.java File dev/core/src/com/google/gwt/core/ext/GeneratorContext.java (right):

[gwt-contrib] Re: Adds ability to query the generator context whether a rebind rule exists for a given type (issue1450806)

2011-05-31 Thread Ray Ryan
LGTM On Tue, May 31, 2011 at 1:39 PM, jbrosenb...@google.com wrote: http://gwt-code-reviews.appspot.com/1450806/diff/3002/dev/core/src/com/google/gwt/core/ext/GeneratorContext.java File dev/core/src/com/google/gwt/core/ext/GeneratorContext.java (right):

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1380806)

2011-05-31 Thread Christoph Kern
On Tue, May 3, 2011 at 09:17, t.bro...@gmail.com wrote: On 2011/05/03 16:11:37, xtof wrote: http://gwt-code-reviews.appspot.com/1380806/diff/28033/user/src/com/google/gwt/safehtml/shared/SafeUri.java File user/src/com/google/gwt/safehtml/shared/SafeUri.java (right):

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1380806)

2011-05-31 Thread t . broyer
On 2011/05/31 23:38:17, xtof wrote: My apologies dropping the response on this thread (I'd missed the last question and had assumed this was good to submit). Also, I didn't realize that I actually need to fetch and submit this patch (I'm not part of GWT team proper and wasn't familiar with

[gwt-contrib] Convert samples/mobilewebapp to use maven. This paves the way to converting the sample to use GI... (issue1450809)

2011-05-31 Thread rjrjr
Reviewers: jlabanca, drfibonacci, rchandia, Description: Convert samples/mobilewebapp to use maven. This paves the way to converting the sample to use GIN and Objectify. mvn gwt:run works as expected, and importing into eclipse as a maven project works fine too. README-MAVEN.txt includes

  1   2   >