Re: Client-side Serialization for HTML5 LocalStorage. JSON?

2011-06-17 Thread Harald Pehl
Take a look at Piriti: http://code.google.com/p/piriti/. It's an XML / POJO mapper based on annotations and deferred binding. The actual mapping code is generated for you. You can have it inside your beans or configure the mapping in extra interfaces. Currently serialization to/from JSON is

Re: Deploy in Tomcat

2011-06-17 Thread redjhawk
And the manifest generated? On Jun 16, 11:55 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Can you paste the complete stacktrace? 2011/6/15 IHateSoda mguillaum...@gmail.com Hi everybody, My application works in hosted mode. I'm trying to deploy my application in

Change gauge colors

2011-06-17 Thread ArnoNyhm
Hi, how can i change in gwt the colors for the red, yellow and green zone? in the javascript visualisation api there is a method called greenColor, but i cant found something equal for gwt. is there andy trick? regards arno -- You received this message because you are subscribed to the Google

Hide CellList on selection of cell

2011-06-17 Thread Piro
Hi all, i use cell list to select one of customers, and at selection (through SelectionChangeEvent.Handler ) i hide this list. Problem is that on selection cell receives focus, but list is hidden and exception is thrown: com.google.gwt.core.client.JavaScriptException: (Error): Can't move focus to

Re: gwt-dev.jar and embedded Tomcat; Conflicts!

2011-06-17 Thread Thomas Broyer
Why are you running client-side unit tests (GWTTestCase) and server-side unit tests or integration tests (the ones using your embedded Tomcat) with the same classpath? *That*, in my opinion, is the issue. -- You received this message because you are subscribed to the Google Groups Google Web

Re: Sending large nested DTO object over RPC - Browser freezes

2011-06-17 Thread Jambi
How long does it take when you run the compiled code? I think the hosted mode could be the problem here. On 15 Jun., 22:34, ciosbel andrew...@gmail.com wrote: Try to use this to better inspect RPC serialization/deserialization and round trip timings.http://code.google.com/p/gwt-debug-panel/ --

Re: Hide CellList on selection of cell

2011-06-17 Thread Thomas Broyer
How about slightly delaying the moment when you hide the list? Scheduler.get().scheduleDeferred(...) ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Aw: Sending large nested DTO object over RPC - Browser freezes

2011-06-17 Thread Jens
Hosted mode is really slow when it comes to serialization/deserialization with GWT RPC. In my experience the Firefox GWT plugin does the best job and handle it a way faster than in other browsers. I think even in compiled mode you would recognize some delay at least in IE. Maybe its faster to

Re: Blocking client side execution until server executes the service completely

2011-06-17 Thread ankit
thnks 4 all ur replies...but my problem is combobox model is loading data from the server and as u know GWT server connection is all asynchronous so what should i do so that data must load on the model before viewing on to the UI. is there any way i can halt the execution or know that data

Re: Blocking client side execution until server executes the service completely

2011-06-17 Thread Paul Robinson
You still haven't embraced asynchronous behaviour. (1) Display a message in the UI that says you're loading data (2) Make the call to the server to ask for data (3) In the callback, build whatever UI structures you require, and replace the loading message with the real thing Paul On 17/06/11

Aw: Re: Blocking client side execution until server executes the service completely

2011-06-17 Thread Jens
See Pauls answer. In addition if you do not want to hide the combo box, just set a message to it and disable it. Then load you combo box data and when its done clear the combo box, fill in the data and re-enable it. -- J. -- You received this message because you are subscribed to the Google

Re: Load the GWT component after the page renders

2011-06-17 Thread lemaiol
Hi Esteban, You have already two linkers that you can use: xs and xsiframe. The first is not supported in dev mode and is a little old. I would recommend to use the xsiframe linker. The problem is the scarce documentation about linkers and some side effects that they could have on your

Re: Caching rpc payload in local storage

2011-06-17 Thread lemaiol
Hi timmys, Here an example with the payload embedded in the host page. Hope it helps, Berto public static YourDomainObject getEmbeddedYourDomainObject() { SerializationStreamFactory serializationStreamFactory = GWT.create(IYoutRemoteService.class); try { String

Re: Pluggable modules

2011-06-17 Thread lemaiol
Yes, I think those changes in the event bus (also in the packages) is to share the code in Android. This thread:https://groups.google.com/group/google-web-toolkit-contributors/brows... led me to believe EventBus was going to become available outside of GWT however I see the commits have

gwt-compile issue

2011-06-17 Thread Navindian
I have imported working project. It is giving the following error. please let me know asap. Compiling module com.ge.inds.evse.io.EVSEGRI [ERROR] Unexpected java.lang.NoSuchFieldError: reportUnusedDeclaredThrownExceptionIncludeDocCommentReference at

Re: Pluggable modules

2011-06-17 Thread lemaiol
I followed the basic ideas of application's linking and loading: - The GWT host page is the loader. So you have to know how to discover the modules to be loaded. + KIS: have a class on the server side that know modules' ids, names and URL's and generate the GWT host page using a JSP. + Best

Re: MVP or Activities/Places for stockwatcher example?

2011-06-17 Thread David Chandler
Have you seen http://code.google.com/webtoolkit/articles/mvp-architecture.html? It presents the basic MVP pattern without 3rd party frameworks or Activities Places. /dmc On Thu, Jun 16, 2011 at 11:27 AM, ustad ustadha...@gmail.com wrote: Hi all, I'm new to GWT (and more of an advanced

Re: Expenses example appears broken

2011-06-17 Thread David Chandler
Hi Thad, Sounds like you missed a step in the http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/expenses/README-MAVEN.txt - To load a set of initial data choose: LoadExpensesDB.html Browse to this URL first to generate sample data to populate the UI. HTH, /dmc On Wed,

No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module?

2011-06-17 Thread Zgouingo
Hello everyone, I know there has already been some subjects about this kind of error, but this time I honnestly can't understand what's happening. Let me introduce my project : I'm just beginning in the world of GWT. I followed some tutorials, and I try to do a RPC exchange in my project. I

RequestFactory serialization with concrete classes

2011-06-17 Thread isern
Hi fellas, I was wondering if there's a chance that a concrete POJO could be used as an EntityProxy when serializing a graph via the RequestFactory framework. I mean, for most of the cases it works okay as an interface, but sometimes it'd be nice if I could put some client logic on those objects

Re: gwt-compile issue

2011-06-17 Thread Juan Pablo Gardella
Can you show the classpath? 2011/6/17 Navindian navind...@gmail.com I have imported working project. It is giving the following error. please let me know asap. Compiling module com.ge.inds.evse.io.EVSEGRI [ERROR] Unexpected java.lang.NoSuchFieldError:

Re: Local filesystem access

2011-06-17 Thread Norberto
An Applet of Java: http://es.wikipedia.org/wiki/Applet_Java On Jun 15, 3:22 pm, gwt.user gwt.u...@yahoo.fr wrote: Applet ? What s that ? :) Either you use HTML5 API (really limited) or flash(gwt4air) -- You received this message because you are subscribed to the Google Groups Google Web

Ang.: Aw: Sending large nested DTO object over RPC - Browser freezes

2011-06-17 Thread Jonas
It definitely was hosted mode that was the problem. When compiled and deployed it takes only a couple of seconds, somewhere around 5 seconds for very large files which is still a bit too long for me to be satisfied. I think I will give JSON a shot. Thanks all for the feedback. -- You received

Re: Expenses example appears broken

2011-06-17 Thread Thad
That's it! Thanks. I skipped over that whole section on In Eclipse... and jumped right to the command line. Nice example. On Jun 17, 7:51 am, David Chandler drfibona...@google.com wrote: Hi Thad, Sounds like you missed a step in

Re: Load the GWT component after the page renders

2011-06-17 Thread Thomas Broyer
On Thursday, June 16, 2011 9:16:07 PM UTC+2, esteban wrote: Thanks for the response. Actually, putting the script at the end of your page, is not enough in my case. The idea of making my own linker doesn't like me a lot either. The document.write() problem was the reason why I wrote the

Re: Ext GWT 3.0 Developer Preview 1

2011-06-17 Thread Ezequiel Palumbo
I really like ExtGWT's way. I'll be waiting for the updates. Ezequiel.- On 17 jun, 05:16, Alain Ekambi jazzmatad...@googlemail.com wrote: Looks pretty promising i would say 2011/6/17 Juan Pablo Gardella gardellajuanpa...@gmail.com Great work folks!! 2011/6/16 Gal Dolber

Re: GWT Mobile Application

2011-06-17 Thread gianni
Deploy your app to a local web server on your laptop, then hit the IP of the laptop followed by the port, on your device. Make sure the device and the laptop are on the same network. Your device would connect on wifi. I use MAMP to run my local web server, and I use port 8080. On my laptop I can

Re: Client-side Serialization for HTML5 LocalStorage. JSON?

2011-06-17 Thread Thad
On the server side, I use the JSON code from http://www.json.org/java/index.html and serialize a String across the GWT RPC boundary. It's a bit different from GWT's client JSON, but it's worked for me. On Jun 16, 9:06 pm, Evan Ruff evan.r...@gmail.com wrote: Hey guys, Similar to my

Re: GWT, MVP, GIN, code splitting?

2011-06-17 Thread Ahmed
First of all thank you for your reply:) In fact I'm a beginner and I just discovered GWT and i dont understand many pattern like the activity pattern but in regard to mvp im using the GWT-Presenter Framework. brief the binding is done in this way bindPresenter ( Presenter.class,

Re: MVP or Activities/Places for stockwatcher example?

2011-06-17 Thread Thad
In the 3rd item of http://groups.google.com/group/google-web-toolkit/browse_frm/thread/ba4b88d2d54b0cd I found these links: http://95.110.143.4/layoutmvp/layoutmvp.tar.gz http://95.110.143.4/layoutmvp/layoutmvp.html Read the tread. I found Mauro's example *very helpful* (but I've still a ways

Re: Module Strong Name

2011-06-17 Thread bconoly
Yeah, didn't think it would be easy, I've resorted to getting the context and looking for the gwt.rpc file. So far I've only seen one per GWT compilation, would that change? Or is it always 1 gwt.rpc file? On Jun 16, 4:15 pm, Thomas Broyer t.bro...@gmail.com wrote: There's no easy way, because

Re: GWT, MVP, GIN, code splitting?

2011-06-17 Thread Thomas Broyer
I don't know how they diverge, but GWT-Platform is originally a fork of GWT Presenter, and supports code splitting out of the box with just a few annotations here and there: http://code.google.com/p/gwt-platform/ Hint: search for gwt-presenter on the project's home page. I never used either so

Aw: Re: Aw: Re: Aw: Re: Question about new activities on place changes

2011-06-17 Thread Jens
Ok a Custom CachingActivityMapper was easy to implement and works but there is still a case I am not happy with. If a user bookmarks EmployeePlace(1,123) and 123 gets deleted the activity would redirect to EmployeePlace(1, null) to keep the URL in sync (activity can not preselect the deleted

Re: MVP or Activities/Places for stockwatcher example?

2011-06-17 Thread Ustad
@Thad: Thanks so much... Downloaded both tar balls with and without GIN integration This demo is very slick looking! Hoping there's good documentation in it! Cheers mate! On Fri, Jun 17, 2011 at 10:06 AM, Thad thad.humphr...@gmail.com wrote: In the 3rd item of

Re: GWT and Maven

2011-06-17 Thread SrArcos
Thanks to all! It has been helpful. I have now other error message from Hudson. The error is: [code] The attribute 'Hudson-Build-Number' may not occur more than once in the same section. [/code] But I have just found that it may be due to using the version 2.0.1 of maven-war-plugin. On Monday I

Re: Aw: Re: Aw: Re: Aw: Re: Question about new activities on place changes

2011-06-17 Thread Thomas Broyer
Because you activity lasts longer than a place, it should listen to PlaceChangeEvent (as if it were a singleton, except that it can be garbage collected and will be recreated if you go to another activity in the mean time), or the ActivityMapper should update it with the new place. But

How can I run a GWT application in full screen mode

2011-06-17 Thread Néstor Boscán
How can I run a GWT application in full screen mode so the user doesn't have control to minimize or change to another application. Regards, Néstor Boscán -- 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: How can I run a GWT application in full screen mode

2011-06-17 Thread A. Stevko
Yes but this has little to do with GWT and everything to do with the browser and os features. Switching applications is OS dependent. Opening a browser full screen and removing the toolbars and navigation elements is basic browser features. 2011/6/17 Néstor Boscán nesto...@gmail.com How can

SmartGWT: LiveGrid with own DataSource

2011-06-17 Thread Go2one
Hi all, I want to use SmartGWT's LiveGrid but I'm currently using the asyncronous service entry point to ask my server for data. The Interface returns Java(script) Objects. Is there a way to use this instead of an XML Datasource (like in the Examples)? Are there any tutorials? Overriding the

Re: override locale in datebox

2011-06-17 Thread Dennis Haupt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 my requirement is to be able to change the locale on the fly. i've cheated by asking the server for a date format which i get out of a simpledateformat via reflection. Am 17.06.2011 05:19, schrieb John A. Tamplin: GWT is only running one locale at a

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

2011-06-17 Thread Jens Teglhus Møller
Anyone? I'm trying to create an 'windows explorer' like interface with a CellTree on the left and a CellTable on the right (so when i click on a node in the tree i get the details in the table). It works nicely except that i can not click the root node. Its a bit of a showstopper. Best regards

Dev Mode gwt.rpc file

2011-06-17 Thread bconoly
Hey All, 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

How can I create a celltable of images?

2011-06-17 Thread dadada
Hi, can someone please show me the easy way of creating a celltable of images? Not imageresource. 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. To

Re: How do you disable user selection on a CellList?

2011-06-17 Thread Jim Douglas
Thomas, Thanks again for pointing me in the right direction. It ended up being a bit more involved than I expected, but it seems to be working ok. Here's the code for anyone else who might be interested: private final CellListString m_cellList = new CellListString(new TextCell());

Is it ever possible for an asynchronous service method's callback to get called without yielding to the browser's event loop?

2011-06-17 Thread Tad
Is the AsyncCallback framework implemented in such a way that when a RemoteService method is called, is it a GUARANTEE that the browser's event loop will execute at least one cycle before its callback (i.e. onSuccess or onFailure) gets called? For example: ...some code...

28 June. HTML5 Features in Google Web Toolkit, with Dmitry Buzdin. Free talk.

2011-06-17 Thread James Chesters
Come join the London HTML5 user group and learn how Google Web Toolkit (GWT) adopts HTML5's yet-to-come standard. You will understand why GWT is becoming more important with appearance of HTML 5 features and how can it help you to build advanced Web applications. Get more info and sign up here:

Re: override locale in datebox

2011-06-17 Thread John Tamplin
On Fri, Jun 17, 2011 at 1:12 PM, Dennis Haupt d.haup...@googlemail.comwrote: my requirement is to be able to change the locale on the fly. i've cheated by asking the server for a date format which i get out of a simpledateformat via reflection. Right, all of GWT's i18n support is designed to

Re: Client-side Serialization for HTML5 LocalStorage. JSON?

2011-06-17 Thread Evan Ruff
Ah thanks! This is what I was looking for. Thanks! E -- 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/-/RIuHSIYjRs0J. To post to this group, send

GMail like selection combobox

2011-06-17 Thread joel
In GMail there is a combobox that shows a checkbox, you can drop-down the box and get the selections such as all/none... If you click the checkbox it will checkmark all your emails... How can I make that widget with GWT? J -- You received this message because you are subscribed to the Google

Re: Is it ever possible for an asynchronous service method's callback to get called without yielding to the browser's event loop?

2011-06-17 Thread Thomas Broyer
GWT-RPC makes use of RequestBuilder, which is based on XMLHttpRequest. XMLHttpRequest (XHR) uses events to communicate back with the code, so anything happening on an XHR results in an event being pushed on the event queue, and dequeued by the event loop. Does that answer your question? More

Re: How can I create a celltable of images?

2011-06-17 Thread dadada
Alright. private static class ColorCell extends ImageCell { @Override public void render(com.google.gwt.cell.client.Cell.Context context, String value, SafeHtmlBuilder sb) { // Always do a null check on the value. Cell widgets can pass

Help with Designing UI

2011-06-17 Thread Myth17
I want to make a mobile web Application UI where The application will have a main screen(which occupies all screen area) a stack of-- TextArea and Two Buttons.Clicking on the first buttons should give me a popup where I mark some tags about the text and after I am done click the second

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

2011-06-17 Thread zundel
http://gwt-code-reviews.appspot.com/1451818/ -- 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-17 Thread rjrjr
http://gwt-code-reviews.appspot.com/1449817/diff/4001/user/src/com/google/gwt/user/client/ui/Widget.java File user/src/com/google/gwt/user/client/ui/Widget.java (right): http://gwt-code-reviews.appspot.com/1449817/diff/4001/user/src/com/google/gwt/user/client/ui/Widget.java#newcode302

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

2011-06-17 Thread pdr
http://gwt-code-reviews.appspot.com/1407803/diff/5001/user/src/com/google/gwt/user/tools/WebAppCreator.java File user/src/com/google/gwt/user/tools/WebAppCreator.java (right): http://gwt-code-reviews.appspot.com/1407803/diff/5001/user/src/com/google/gwt/user/tools/WebAppCreator.java#newcode461

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

2011-06-17 Thread codesite-noreply
Updates: Status: Fixed Comment #7 on issue 5166 by mrruss...@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 this change.) -- You received this message because you were CC'd on the

[gwt-contrib] [google-web-toolkit] r10346 committed - Make Request.with() additive when used with different root objects....

2011-06-17 Thread codesite-noreply
Revision: 10346 Author: gwt.mirror...@gmail.com Date: Fri Jun 17 03:15:41 2011 Log: Make Request.with() additive when used with different root objects. Delay resolving invocation results until all results have been processed. Separate Resolver's path-processing code from client

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

2011-06-17 Thread fredsa
http://gwt-code-reviews.appspot.com/1407803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

2011-06-17 Thread fredsa
http://gwt-code-reviews.appspot.com/1407803/diff/5001/user/src/com/google/gwt/user/tools/WebAppCreator.java File user/src/com/google/gwt/user/tools/WebAppCreator.java (right): http://gwt-code-reviews.appspot.com/1407803/diff/5001/user/src/com/google/gwt/user/tools/WebAppCreator.java#newcode461

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

2011-06-17 Thread pdr
LGTM http://gwt-code-reviews.appspot.com/1407803/diff/10001/user/src/com/google/gwt/user/tools/WebAppCreator.java File user/src/com/google/gwt/user/tools/WebAppCreator.java (right):

[gwt-contrib] Updated rpc generator result caching to support full cacheability (issue1464802)

2011-06-17 Thread jbrosenberg
Reviewers: tobyr, zundel, Description: Updated rpc generator result caching to support full cacheability Also added support for changes to relevant properties and custom field serializers Please review this at http://gwt-code-reviews.appspot.com/1464802/ Affected files: A

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

2011-06-17 Thread fredsa
http://gwt-code-reviews.appspot.com/1407803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

2011-06-17 Thread fredsa
http://gwt-code-reviews.appspot.com/1407803/diff/10001/user/src/com/google/gwt/user/tools/WebAppCreator.java File user/src/com/google/gwt/user/tools/WebAppCreator.java (right):

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

2011-06-17 Thread pdr
On 2011/06/17 15:36:34, fredsa wrote: http://gwt-code-reviews.appspot.com/1407803/diff/10001/user/src/com/google/gwt/user/tools/WebAppCreator.java File user/src/com/google/gwt/user/tools/WebAppCreator.java (right):

[gwt-contrib] Update XML doc to make it clearer that 'compiler.emulatedStack' should no longer be used. (issue1462804)

2011-06-17 Thread fredsa
Reviewers: bobv, Description: Update XML doc to make it clearer that 'compiler.emulatedStack' should no longer be used. Review by: b...@google.com Please review this at http://gwt-code-reviews.appspot.com/1462804/ Affected files: M user/src/com/google/gwt/core/EmulateJsStack.gwt.xml

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

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

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

2011-06-17 Thread jlabanca
http://gwt-code-reviews.appspot.com/1454808/diff/1/user/src/com/google/gwt/safecss/SafeCss.gwt.xml File user/src/com/google/gwt/safecss/SafeCss.gwt.xml (right): http://gwt-code-reviews.appspot.com/1454808/diff/1/user/src/com/google/gwt/safecss/SafeCss.gwt.xml#newcode21

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

2011-06-17 Thread jlabanca
I implemented SafeStylesHostedModeUtils with some basic checks for the style name and extensive checks for the style value. The name is easier because it has a limited set of rules. The value has a lot of rules, such as matching parenthesis, escaping characaters, and handling quotes and URLs.

[gwt-contrib] Use CompilationUnitBuilder.create factory method. (issue1465801)

2011-06-17 Thread stephen . haberman
Reviewers: zundel, http://gwt-code-reviews.appspot.com/1465801/diff/1/dev/core/src/com/google/gwt/dev/javac/CompilationUnitBuilder.java File dev/core/src/com/google/gwt/dev/javac/CompilationUnitBuilder.java (left):

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

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

[gwt-contrib] Re: Make TypeTokenResolver and RequestFactory's annotation processor easier to integrate with Adroid... (issue1462801)

2011-06-17 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/1462801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Update gwt-module.dtd: (issue1466801)

2011-06-17 Thread fredsa
Reviewers: rjrjr, Description: Update gwt-module.dtd: - Add support for set-property-fallback, e.g. set-property-fallback name=locale value=en/ - Add support for fallback-value attribute to extend-property, e.g. extend-property name=user.agent values=ie9 fallback-value=ie8 / Fixes issues: 4787,

[gwt-contrib] Re: Update gwt-module.dtd: (issue1466801)

2011-06-17 Thread fredsa
http://gwt-code-reviews.appspot.com/1466801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10347 committed - New projects should always have a DTD specified in their template .gwt...

2011-06-17 Thread codesite-noreply
Revision: 10347 Author: fre...@google.com Date: Fri Jun 17 06:12:25 2011 Log: New projects should always have a DTD specified in their template .gwt.xml module file Also, fix broken NoNag version check logic. Review at http://gwt-code-reviews.appspot.com/1407803 Review by:

[gwt-contrib] Re: Update gwt-module.dtd: (issue1466801)

2011-06-17 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/1466801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10348 committed - Make TypeTokenResolver and RequestFactory's annotation processor easie...

2011-06-17 Thread codesite-noreply
Revision: 10348 Author: b...@google.com Date: Fri Jun 17 10:00:12 2011 Log: Make TypeTokenResolver and RequestFactory's annotation processor easier to integrate with Adroid ADT build process by generating a pre-populated TypeTokenBuilder class. This avoids the need to manipulate

[gwt-contrib] [google-web-toolkit] r10349 committed - Update bootstrap requestfactory-apt.jar to reflect changes in r10348.

2011-06-17 Thread codesite-noreply
Revision: 10349 Author: gwt.mirror...@gmail.com Date: Fri Jun 17 13:08:11 2011 Log: Update bootstrap requestfactory-apt.jar to reflect changes in r10348. http://code.google.com/p/google-web-toolkit/source/detail?r=10349 Modified: /tools/lib/requestfactory/requestfactory-apt.jar

[gwt-contrib] Re: Use the provided key in all decisions about whether the selections have changed. (issue1465802)

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

[gwt-contrib] Re: New projects should always have a DTD specified in their template .gwt.xml module file (issue1407803)

2011-06-17 Thread fredsa
Committed in r10347 http://gwt-code-reviews.appspot.com/1407803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Turns on reading from archives by default. (issue1461801)

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

[gwt-contrib] Re: Turns on reading from archives by default. (issue1461801)

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

[gwt-contrib] Re: Turns on reading from archives by default. (issue1461801)

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

[gwt-contrib] Re: Turns on reading from archives by default. (issue1461801)

2011-06-17 Thread stephen . haberman
http://gwt-code-reviews.appspot.com/1461801/diff/4005/dev/core/src/com/google/gwt/dev/ArchivePreloader.java File dev/core/src/com/google/gwt/dev/ArchivePreloader.java (right): http://gwt-code-reviews.appspot.com/1461801/diff/4005/dev/core/src/com/google/gwt/dev/ArchivePreloader.java#newcode65

[gwt-contrib] Re: Updated rpc generator result caching to support full cacheability (issue1464802)

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

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

2011-06-17 Thread skybrian
http://gwt-code-reviews.appspot.com/1454808/diff/4001/user/src/com/google/gwt/safecss/shared/SafeStylesBuilder.java File user/src/com/google/gwt/safecss/shared/SafeStylesBuilder.java (right):

[gwt-contrib] Re: Turns on reading from archives by default. (issue1461801)

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

[gwt-contrib] Re: Turns on reading from archives by default. (issue1461801)

2011-06-17 Thread zundel
http://gwt-code-reviews.appspot.com/1461801/diff/4005/dev/core/src/com/google/gwt/dev/ArchivePreloader.java File dev/core/src/com/google/gwt/dev/ArchivePreloader.java (right): http://gwt-code-reviews.appspot.com/1461801/diff/4005/dev/core/src/com/google/gwt/dev/ArchivePreloader.java#newcode65

[gwt-contrib] Re: Updated rpc generator result caching to support full cacheability (issue1464802)

2011-06-17 Thread zundel
LGTM http://gwt-code-reviews.appspot.com/1464802/diff/2002/user/src/com/google/gwt/user/rebind/rpc/ProxyCreator.java File user/src/com/google/gwt/user/rebind/rpc/ProxyCreator.java (right):

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

2011-06-17 Thread t . broyer
http://gwt-code-reviews.appspot.com/1454808/diff/4001/user/src/com/google/gwt/safecss/shared/SafeStylesBuilder.java File user/src/com/google/gwt/safecss/shared/SafeStylesBuilder.java (right):

[gwt-contrib] Re: Turns on reading from archives by default. (issue1461801)

2011-06-17 Thread stephen . haberman
FYI this archiving feature won't be on by default in the GWT 2.4 release. Cool, I was wondering about that. I'll likely stay with trunk. http://gwt-code-reviews.appspot.com/1461801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors