Re: Frameworks

2010-08-26 Thread Alek
mvp4g - very nice and simple framework. We use it in our project http://code.google.com/p/mvp4g/ On Aug 19, 4:51 pm, Alexei Telles alexeitel...@gmail.com wrote: Hi everybody. I've searching for some gwt news and I 've seen many new gwt tools on the internet. We could list here in this

Re: GWT serialization

2010-08-26 Thread Harald Pehl
I agree: Of course the GWT serialization is the most straightforward way for the communication. And I would recommend to use it as long as you don't have any special requirements. When you have one client and one server there's no reason for using XML or JSON. But as soon your client isn't the

Re: Plugin based web application

2010-08-26 Thread Alek
I'm also interested about this question. Waiting for any answers (just thinking about DHTML injecting)... On Aug 24, 12:07 pm, Ludovic Raulet ludovic.rau...@gmail.com wrote: Hello, I'm working on a web management framework developed in GWT (2.0.3). We display some kind of widgets (something

Re: Plugin based web application

2010-08-26 Thread Gal Dolber
You can achieve that goal using a jsni communication channel. I don't know what kind of communication do you need between the framework and the widgets, but you can event share Overlay objects. I'll do it this way: your framework declare a global javascript function and when a widget is loaded

Re: Question about one detail from StockWatcher sample.

2010-08-26 Thread M. Eduard
As I see this will be new instance of ClickHandler - new ClickHandler() { public void onClick(ClickEvent event) { int removedIndex = stocks.indexOf(symbol); stocks.remove(removedIndex); stocksFlexTable.removeRow(removedIndex+1); } } There is now such field in

Re: Deselect items in a CellTree with MultiSelectionModel

2010-08-26 Thread jaga
I suppose this is relevant for a CellTable too? The code which does the selection is in model object. The object'implements Comparable and the equals, compareTo and hashCode. Is it possible to pass in a flag which says whether the row is selected, then return false for the equals? On Aug 20,

GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread stuckagain
Hi, Since I get no response from the GWT dev-team on reported bugs I am beginning to wonder about the future of GWT. It looks like stability of the existing features is not very high on the list. I've heard excuses in all the previous release that you guys were going to sort out long-standing

Gwt multiple modules

2010-08-26 Thread Thomas Van Driessche
Hi All, I need another module in my gwt project. Do i need to define a new gwt.xml file? And how do you descide which module gets displayed on the page, because it needs to be dependent from something so i can choose which module i need to work with... Does each module have a different js file?

Application accessible from desktop and web both

2010-08-26 Thread dgiscool
Hello, I need to develop an application with following features and want to understand if GWT can be used to develop this application or is it the right technology to use ? 1) Backend is in Java and uses MySQL 2) Desktop based UI to create some datafiles and data will be stored in MySQL DB. This

Re: Gwt multiple modules

2010-08-26 Thread AlexG
Hi Thomas, I have something similar like you, I think. Okay, first .. YES, you have to define a new gwt.xml file, if you want to use your module on the clientside of your main-module. I don´t exactly know, but I think not, that an extra js is created, You have to make your new module visible to

Invalid version number errror after upgrading from 2.1 M2 to M3

2010-08-26 Thread Magno Machado
After I updated the GWT version on my project, I wasn't able to launch the app anymore. I receive this error: Invalid version number 2.0 passed to external.gwtOnLoad(), expected 2.1; your hosted mode bootstrap file may be out of date; if you are using -noserver try recompiling and redeploying your

Re: Running gwt js on second server

2010-08-26 Thread Stefan Bachert
Hi Pieter, your approach does not support ClientBundle. And the link href is missing a double slash (http://..;). Maybe a typo. You probably need to deliver addition headers with your page (Access-Control-Allow-Origin) in order to overcome SOP. (Take care which browser really support this)

Re: font-size doesn't increase but in Word does it

2010-08-26 Thread Stefan Bachert
Hi, the code look not wrong but incomplete. Which html is really produced? Does it work on standard conforming browsers like chrome/ff/safari? Stefan Bachert http://gwtword.de On 24 Aug., 16:12, Ricardo.M ricardo.mar...@gmail.com wrote: I open Microsoft Word and write a text Hello World then

DateTimeConstantsImpl_pt_BR.properties - File is missing

2010-08-26 Thread Diego Lovison
eras = a.C., d.C. eraNames = Antes de Cristo, Depois de Cristo narrowMonths = J, F, M, A, M, J, J, A, S, O, N, D months = Janeiro, Fevereiro, Março, Abril, Maio, Junho, Julho, Agosto, Setembro, Outubro, Novembro, Dezembro shortMonths = Jan, Fev, Mar, Abr, Mai, Jun, Jul, Ago, Set, Out, Nov, Dez

IE6 RPC Failure

2010-08-26 Thread Charlie M
Hi All, I am having an issue with my GWT app. The first RPC call it makes fails in IE6. It works correctly in all other browsers including later IE versions. I have followed the Server Side code through with a Debuger and its not throwing an exceptions and nothing is logged on the server.

Re: Piriti xml read error

2010-08-26 Thread Harald Pehl
Hi Deepak I finally managed to take a closer look to your issues. I created a playground project with some simple gwt tests. These tests parse the XML you supplied and map the results to StationDetails and Station class. I found out that your code / mapping annotations needed some minor

Re: Running gwt js on second server

2010-08-26 Thread Charlie M
On Aug 26, 11:26 am, Stefan Bachert stefanbach...@yahoo.de wrote: Hi Pieter, your approach does not support ClientBundle. And the link href is missing a double slash (http://..;). Maybe a typo. You probably need to deliver addition headers with your page (Access-Control-Allow-Origin) in

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread Christian Goudreau
Didn't read everything but: How come I can not use CssResource with the standard widgets of GWT ? This is easy to do... I even like more the old widgets then the new Cell widget for css customization. And as far sa I can tell, a big majority of the bug I've seen so far are often because the

Re: Invalid version number errror after upgrading from 2.1 M2 to M3

2010-08-26 Thread Gal Dolber
Remove the generated folder in the war directory and run again. 2010/8/26 Magno Machado magn...@gmail.com After I updated the GWT version on my project, I wasn't able to launch the app anymore. I receive this error: Invalid version number 2.0 passed to external.gwtOnLoad(), expected 2.1;

Re: GWT 2.1 M3 is now available

2010-08-26 Thread Nathan Wells
Thanks Chris! Keep up the excellent work guys! On Aug 25, 3:51 pm, Chris Ramsdale cramsd...@google.com wrote: That's a great point, and we'll be there with M4. There's a Google snapshot repository that we'll be using for the next milestone and subsequent RCs. It's a single repo where we'll

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread Ed
This is easy to do... I even like more the old widgets then the new Cell widget for css customization. Did you try it ? Because it's hard, and in many cases, espcially with dependent styles not possible! Have a look as this issue and the related topic...:

Window.open not working on Chrome 5 ( GWT 2.0.4 )

2010-08-26 Thread hermis
Hello all, I can't seem to get Chrome to open a new window using the Window.open() function. It seems to work fine if the function is called from a click handler, but not when called directly. Using Firefox and Internet Explorer the following code launches a window on load and a new window each

Re: Running gwt js on second server

2010-08-26 Thread Pieter
Thank you for all your suggestions, I will explorer and update this post with what I come up with. -- 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-tool...@googlegroups.com. To unsubscribe from

Unable to find type entrypointclass after change in project structure

2010-08-26 Thread Premkumar
Hi All, I am working on a gwt module that is built using maven build system. I had a working module that had the following project structure. project-name/src/main/java/pkg1/pkg2/pkg3/EntryPoingClass project-name/src/man/resources/pkg1/pkg2/ModuleDef.gwt.xml The module definition was looking

Re: js syntaxerror in ie8

2010-08-26 Thread julien
The problem can be reproduced on my computer with the scaffold demo app and using IE8, by creating a new employee with name: é When the client app try to retrieve all employees to display the employee list, the exception appears and the list is never shown. What do you think about this ? By the

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread PhilBeaudoin
On Aug 26, 7:06 am, Ed post2edb...@gmail.com wrote: This is easy to do... I even like more the old widgets then the new Cell widget for css customization. Did you try it ? Because it's hard, and in many cases, espcially with dependent styles not possible! Have a look as this issue and

GWT serialization with fine-grained control

2010-08-26 Thread João Ferreira
Hi all I have this DTO that i use in my GWT RPCs but also in other parts of my application. I had to improve the (java) serialization performance and now this class implements externalizable. In my serialization methods i use GzipStream to compress and uncompress the serialzed strem. I know

Re: Can not download gwt developer plugin

2010-08-26 Thread Guillaume Lasnier
Hi, I have the same problem not being able to install the GWT developer plugin on any browser because the link is broken. Google please help, this is critical!!! Please find below the install url for each plugin I got using the cached page on Google: firefox-old : {

Re: GWT 2.1 M3 is now available

2010-08-26 Thread sam samy
hi please register to this website and get irancell mobile charge free. www.malardiha.com/signup.php malardiha.com On 8/26/10, Chris Ramsdale cramsd...@google.com wrote: That's a great point, and we'll be there with M4. There's a Google snapshot repository that we'll be using for the next

GWT hosted mode is extremly slow

2010-08-26 Thread haimke
I am using GWT 2.0.3, firefox 3.6.8, gwt plugin, Eclipse Galileo, embedded Jetty gwt compilation time ~1minute and its the app running speed is ok but using hosted mode in firefox (or IE) is terribly slow and unpredictable. sometimes firefox is stuck for 30 seconds, sometimes for 8 minutes

Difficulty with GWT Developer Plugin Chrome Firefox

2010-08-26 Thread Chris Rowland
I'm doing some work with the most recent version of GWT (have been working using the old hosted mode for quite a while) and I'm having issues getting the developer addin installed in Chrome and Firefox. When pasting the URL provided by the eclipse plugin, IE prompted to install the addin and it

War takes more space

2010-08-26 Thread sathya ayyanar
I am using GWT. In this, WAR folder takes more memory. When i reduce my source file also it doesn't get reduced. What are all files/folder must be needed in WAR? Please give suggestion about needs of each file and folder? Some of folders are images, smartG, Web-INF, sc, LS, js, pieces(In this, Sc

MVP Framework? Am I missing something?

2010-08-26 Thread Toji
I feel like I'm missing something here. Looking at the release notes (http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html) for the upcoming 2.1 they talk about a Model/View/Presentation Framework, which sounds like something I would love to use. Poking around the rest of the site for

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread chrisr
When we report bugs on other opensource projects (like struts in the past or eclipse and many others) the new bug reports are quickly detected and you get some basic feedback... right now the issue tracker seems like you guys are using the SUN bug database. On a note loosely related to

Memory Leak IE7 GWT 2.0.4

2010-08-26 Thread chrisr
I created a simple application in an attempt to reproduce a memory leak issue in our decently large GWT application. This test application basically contains a split panel with a button on the left, and a tab panel full of large blocks of text on the right. Clicking the reload button fires the

Memory Leak IE7 GWT 2.0.4

2010-08-26 Thread chrisr
I created a simple application in an attempt to reproduce a memory leak issue in our decently large GWT application. This test application basically contains a split panel with a button on the left, and a tab panel full of large blocks of text on the right. Clicking the reload button fires the

Re: GWT 2.1 M3 is now available

2010-08-26 Thread Jason Stratton
Yes they are, versionned as 2.1-SNAPSHOT. Example with com.google.gwt::gwt-user:http://google-web-toolkit.googlecode.com/svn/2.1.0.M3/gwt/maven/com/g... OK. I am admittedly new to Maven, but I'm missing something. (Something simple, I imagine.) Here's the updates I've made to my pom.xml:

Re: MVP Framework? Am I missing something?

2010-08-26 Thread David Chandler
Toji, You have correctly identified the only MVP articles written by the GWT team, and these do not refer to forthcoming 2.1 features. You can expect to see more documentation on the new MVP features in 2.1 when it's actually released. In the mean time, if you're new to MVP, there are several

Re: Invalid version number errror after upgrading from 2.1 M2 to M3

2010-08-26 Thread David Chandler
You may also need to clear browser cache to refresh the hosted.html file which the plugin uses to read the version. /dmc David Chandler Google Web Toolkit Team On Aug 26, 9:06 am, Gal Dolber gal.dol...@gmail.com wrote: Remove the generated folder in the war directory and run again. 2010/8/26

Re: Database and GWT

2010-08-26 Thread barnaclehead
I am not sure how much community involvement there is in the development side but I know from browsing the dev list there is some. Jason seems to be the man. It currently offers everything I have needed in my projects and really mostly keeps out of your way. Barry On Aug 24, 6:51 am, gcstang

Re: Database and GWT

2010-08-26 Thread barnaclehead
I am not sure how much community involvement there is in the development side but I know from browsing the dev list there is some. Jason seems to be the man. It currently offers everything I have needed in my projects and really mostly keeps out of your way. Barry On Aug 24, 6:51 am, gcstang

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread Christian Goudreau
Here's my example... say you want to customize MenuBar from GWT. You have to declare in your CssResource file some styles. @ClassName(mesy-MainMenu) String mesyMainMenu(); @ClassName(mesy-Separator) String mesySeparator(); Those are my two style, you don't need anything else, since everything

Re: GWT 2.1 M3 is now available

2010-08-26 Thread Jason Stratton
I seem to have got it right now: repositories repository idgwt-dev/id urlhttp://google-web-toolkit.googlecode.com/svn/2.1.0.M3/gwt/ maven/url /repository /repositories pluginRepositories pluginRepository idgwt-dev/id urlhttp://google-web-toolkit.googlecode.com/svn/2.1.0.M3/gwt/

Re: GWT serialization with fine-grained control

2010-08-26 Thread Paul Robinson
No, there's no way to mark only part of a class for server-side. You can use different versions of a class in the client and server by using the super-source technique though. That would mean having two different implementations of the same class. João Ferreira wrote: Hi all I have this DTO

Re: Recommended approach for web services on the GWT/GAE stack?

2010-08-26 Thread Arthur Kalmenson
If GWT is your only client, why not just use GWT-RPC? -- Arthur Kalmenson On Thu, Aug 19, 2010 at 12:08 AM, Bayard Randel k...@bestpractice.org.nz wrote: Hi there, Being relatively new to the java ecosystem, I'm finding the myriad of options for providing web services a little

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread David Chandler
David, Thank for your honest feedback and your enthusiasm for GWT. Google uses GWT in many other apps besides Wave and continues to increase investment in GWT as part of Google's overall interest in improving user experience on the Web. In addition, it is an open source project with a very active

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread Ikai L (Google)
To add to David's answer: we use GWT extensively internally and externally as well. There are a number of products that launch quickly using GWT/App Engine. One of the ads tools administrative interfaces also runs on GWT. While Wave was definitely the highest profile GWT application, just keep

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread David Chandler
Chris, Unfortunately, we have to manually approve posts from new members to control spam. We typically review postings from new members several times a day. After that, your posts should appear immediately. /dmc David Chandler Google Web Toolkit Team On Aug 26, 9:06 am, chrisr

BlackBerry6 and GWT

2010-08-26 Thread myapplicationquestions
Hi All, BlackBerry6 uses webkit so GWT webapp should work as it is but i wanted to know if anyone has tried developing a web application focused primarily for blackberry6? Thanks, Parag -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread stuckagain
The @external part is what I don't like. This makes it impossible to obfuscate and thus optimize the generated code. The CssResource stuff also has the added benefit that you can not make a mistake in stylenames since it is checked at compile time. For the rest of your email, I just want to say

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread Christian Goudreau
The @external part is what I don't like. This makes it impossible to obfuscate and thus optimize the generated code. Yeah well, right, but in that case, it doesn't really matter, in the following, the only part that will no get obfuscated is : gwt-MenuItem . The external style you use are the

Re: GWT hosted mode is extremly slow

2010-08-26 Thread jocke eriksson
I found out that if you split your ClientBundles, memory consumptions goes down. So if you have large ClientBundles with many images try to divide them. Worked for me. 2010/8/26 haimke haim.schind...@gmail.com I am using GWT 2.0.3, firefox 3.6.8, gwt plugin, Eclipse Galileo, embedded Jetty

GWT Flash Killer (beta)

2010-08-26 Thread powwow
http://www.bluedojo.com/ I thought I'd like to share with the GWT Discussion Group of a Flash Killer application that is written with GWT. It's a work in progress. :-) Build animations without Flash. No Flash plug-in required for animations to play. Runs in any web browser including IE,

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread stuckagain
David, On Aug 26, 7:54 pm, David Chandler drfibona...@google.com wrote: David, At this time, there is a lot of activity around the 2.1 release, and you can get some sense of this by watching the SVN trunk. In addition, the GWT team has considerably stepped up maven support (see recent I've

Re: GWT Flash Killer (beta)

2010-08-26 Thread Christian Goudreau
Juste one word: AWESOME Cheers, PS: I that that in fact, I wrote more than one word. On Thu, Aug 26, 2010 at 2:45 PM, powwow jimmy.w...@gmail.com wrote: http://www.bluedojo.com/ I thought I'd like to share with the GWT Discussion Group of a Flash Killer application that is written with

Re: GWT and Spring - More Generation Options

2010-08-26 Thread Christiana Thompson
For more information on this topic, please join us for a free webinar on Tuesday, August 31, 2010 at 11:00 AM – 12:00 PM CDT This webinar deep dives into the new Google Web Toolkit (GWT) scaffolding options that are available in MyEclipse for Spring 8.6. We’ll cover the following: -- How does it

Re: GWT Flash Killer (beta)

2010-08-26 Thread Gal Dolber
Great job!! 2010/8/26 Christian Goudreau goudreau.christ...@gmail.com Juste one word: AWESOME Cheers, PS: I that that in fact, I wrote more than one word. On Thu, Aug 26, 2010 at 2:45 PM, powwow jimmy.w...@gmail.com wrote: http://www.bluedojo.com/ I thought I'd like to share with

Re: GWT Flash Killer (beta)

2010-08-26 Thread Gal Dolber
Any tutorial? :P 2010/8/26 Gal Dolber gal.dol...@gmail.com Great job!! 2010/8/26 Christian Goudreau goudreau.christ...@gmail.com Juste one word: AWESOME Cheers, PS: I that that in fact, I wrote more than one word. On Thu, Aug 26, 2010 at 2:45 PM, powwow jimmy.w...@gmail.com wrote:

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread Ed
The @external part is what I don't like. This makes it impossible to I agree with this (stuckagain was just a bit faster then me...) Like mentioned in the doc. @external is there for legacy support. I don't like the write legacy code... Said that: Especially when having large projects with

Re: GWT Flash Killer (beta)

2010-08-26 Thread powwow
Tutorials are coming soon...quite busy here. I guess its targeted towards Flash developers since a Flash developer could easily build animations since it is similar to the Flash IDE. Jim On Aug 26, 12:05 pm, Gal Dolber gal.dol...@gmail.com wrote: Any tutorial? :P 2010/8/26 Gal Dolber

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread Ed
I read through the newsgroup thread but I must say I don't agree with everything that was said there. CssResources are really great, just too bad that they were not retrofitted to the existing widgets. I agree with you, I also was a bit suprised that it wasn't fully used by the GWT widgets,

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread Christian Goudreau
That is: using Clientbundles/CssResources in reusable components. Suppose your component has also ImageSources and CssResources and I want to inject mine such that I change the style and images... How do you accomplish that? Yeah well in that case I would have to redesign this in a way

Re: GWT hosted mode is extremly slow

2010-08-26 Thread haimke
I don't knows what ClientBundles are, and I am not using images so I probably don't have it at all. I find it awkward how could Google develop Gmail and Wave using GWT when it works so slow using hosted mode. -- You received this message because you are subscribed to the Google Groups Google

Re: GWT hosted mode is extremly slow

2010-08-26 Thread Gal Dolber
Gwt isn't the problem... java is a pig How big is your app? If it is really big and you are instantiating everything when it loads it will be really slow. You need to code-split everything so you will get instantiated only what you are working on, when you lunch development mode. GWT.runAsync or

GwtCreateResource GWT-RPC Service/ServiceAsync interfaces -- how?

2010-08-26 Thread Xlorep DarkHelm
Ok, I made a ClientBundle, and am trying to put my RPC endpoints into the bundle, and getting a weird error. The relevant pieces are: public interface Resources extends ClientBundle { @ClassType(Display.Service.class) GwtCreateResourceDisplay.ServiceAsync displaySvc();

Updated maven strategy for GWT

2010-08-26 Thread Peter Ondruska
http://googlewebtoolkit.blogspot.com/2010/08/updated-maven-strategy-for-gwt.html As part of the GWT team's ongoing work to provide better maven support, we are now publishing GWT milestones and release candidates to the Google snapshot repository. GWT 2.1M3 is now available as version

Re: GWT Flash Killer (beta)

2010-08-26 Thread Isuru Madusanka
Simply amazing! Expecting tutorial on that! On Fri, Aug 27, 2010 at 12:38 AM, powwow jimmy.w...@gmail.com wrote: Tutorials are coming soon...quite busy here. I guess its targeted towards Flash developers since a Flash developer could easily build animations since it is similar to the Flash

Re: Recommended approach for web services on the GWT/GAE stack?

2010-08-26 Thread Bayard Randel
GWT is the only client, but I also need to provide a web service that can receive and serialise json posted from a different web application. I'm just uncertain about what the best way to implement this service is on the GWT/GAE stack is.. using a servlet? On Aug 27, 5:41 am, Arthur Kalmenson

Is there a searchbar widget for data presentation widgets?

2010-08-26 Thread Jambi
Hej Folks, I´m pretty new to GWT so I´m still learning. So my question is, if there is existing something like a interactive searchbar you can combine with the new data presentation widgets? I think i´ve seen it working before in some Google I/O video, but i´m not sure which video it was. best

Re: Is there a searchbar widget for data presentation widgets?

2010-08-26 Thread Jambi
Ok: I just found the part of the I/O where the widget is shown: http://www.youtube.com/watch?v=_ToKWo_hcOkfeature=channel -- 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: click event in dialogbox

2010-08-26 Thread aditya sanas
yeah it is possible. you just need to create Anchor(String ) from GWT and register a onclick event for this anchor as Anchor.addClickHandler(); using this you will be able to bind onclick with the link you desired. -- Aditya On Thu, Aug 26, 2010 at 5:19 AM, emilioF tarr...@gmail.com wrote:

Google Web Toolkit Developer Plugin for Firefox - where is it?

2010-08-26 Thread Rich
Hello, I am trying to install Google Web Toolkit Developer Plugin for Firefox on a new Windows 7 (64bit) computer with FireFox 3.6.8 . On a different computer, I have a version of FireFox 3.6.8 that is using Google Web Toolkit Developer Plug-in for Firefox version 1.0.7511 so I know that it can

[gwt-contrib] [google-web-toolkit] r8649 committed - Fix boolean properties, and punch up tests....

2010-08-26 Thread codesite-noreply
Revision: 8649 Author: gwt.mirror...@gmail.com Date: Wed Aug 25 23:35:42 2010 Log: Fix boolean properties, and punch up tests. Review at http://gwt-code-reviews.appspot.com/755802 Review by: cromwell...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8649 Added:

Re: [gwt-contrib] RR: allow CheckBox to accept null?

2010-08-26 Thread Johan Rydberg
On 8/25/10 6:16 PM, Ray Ryan wrote: The use case is dealing with boolean values that may be null, and really a check box is just the wrong UI there. Withdrawn. I know of at least one data binding framework, gwt-pectin, that signals no value using null. As a work-around gwt-pectin has it's own

[gwt-contrib] [google-web-toolkit] r8650 committed - Temporarily disable GwtSafeHtmlUtilsTest until IE fix...

2010-08-26 Thread codesite-noreply
Revision: 8650 Author: p...@google.com Date: Thu Aug 26 03:07:17 2010 Log: Temporarily disable GwtSafeHtmlUtilsTest until IE fix Review by: j...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8650 Modified:

[gwt-contrib] Fixing regex.split test failure due to inconsistent browser implementations. (issue801801)

2010-08-26 Thread pdr
Reviewers: conroy, Description: Fixing regex.split test failure due to inconsistent browser implementations. Review by: con...@google.com Please review this at http://gwt-code-reviews.appspot.com/801801/show Affected files: M user/src/com/google/gwt/safehtml/shared/SafeHtmlUtils.java M

[gwt-contrib] Re: Fixing regex.split test failure due to inconsistent browser implementations. (issue801801)

2010-08-26 Thread conroy
On 2010/08/26 14:52:08, pdr wrote: LGTM http://gwt-code-reviews.appspot.com/801801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixing regex.split test failure due to inconsistent browser implementations. (issue801801)

2010-08-26 Thread jat
The bug isn't here -- the bug is instead in RegExp.split behaving differently across platforms. Why not fix that rather than leaving it broken and working around it here? http://gwt-code-reviews.appspot.com/801801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Allow RPC stats system extensions (issue751801)

2010-08-26 Thread Lex Spoon
I don't know anything about the *current* stats support in RPC. Judging from the revision logs, it looks like Bob might have added that system. Added to the CC. -Lex On Tue, Aug 24, 2010 at 5:29 PM, Pascal Muetschard pmuetschard...@google.com pmuetschard%2...@google.com wrote: Could I

[gwt-contrib] [google-web-toolkit] r8652 committed - Fixing regex.split test failure due to inconsistent browser implementa...

2010-08-26 Thread codesite-noreply
Revision: 8652 Author: p...@google.com Date: Thu Aug 26 05:38:09 2010 Log: Fixing regex.split test failure due to inconsistent browser implementations. Review at http://gwt-code-reviews.appspot.com/801801 Review by: con...@google.com

[gwt-contrib] Re: Fixing regex.split test failure due to inconsistent browser implementations. (issue801801)

2010-08-26 Thread pdr
On 2010/08/26 15:21:38, jat wrote: The bug isn't here -- the bug is instead in RegExp.split behaving differently across platforms. Why not fix that rather than leaving it broken and working around it here? You're right and fixing regex.split is top of my todo list. I chose to revert back

[gwt-contrib] [google-web-toolkit] r8653 committed - These were in the submit for r8652, not sure why they didn't update th...

2010-08-26 Thread codesite-noreply
Revision: 8653 Author: gwt.mirror...@gmail.com Date: Thu Aug 26 09:38:32 2010 Log: These were in the submit for r8652, not sure why they didn't update then! http://code.google.com/p/google-web-toolkit/source/detail?r=8653 Modified:

[gwt-contrib] Re: Fix the escaping done by UrlBuilder. (issue754803)

2010-08-26 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/754803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add ability to use @UiChild annotation to specify how GWT should add a child element. (issue794801)

2010-08-26 Thread rjrjr
http://gwt-code-reviews.appspot.com/794801/diff/14001/13003 File user/src/com/google/gwt/uibinder/client/UiChild.java (right): http://gwt-code-reviews.appspot.com/794801/diff/14001/13003#newcode29 user/src/com/google/gwt/uibinder/client/UiChild.java:29: * safely called. If no limit is

[gwt-contrib] Add DynaTableRf to the distribution, and fix some checkstyle issues. (issue775805)

2010-08-26 Thread rjrjr
Reviewers: unnurg, Description: Add DynaTableRf to the distribution, and fix some checkstyle issues. Pave the way a bit for LoggingExample. Please review this at http://gwt-code-reviews.appspot.com/775805/show Affected files: A eclipse/samples/LogExample/.checkstyle A

[gwt-contrib] Re: Add DynaTableRf to the distribution, and fix some checkstyle issues. (issue775805)

2010-08-26 Thread unnurg
LGTM On 2010/08/26 20:20:23, rjrjr wrote: http://gwt-code-reviews.appspot.com/775805/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add debugging information to CssResource. (issue770801)

2010-08-26 Thread rjrjr
LGTM Nice, one minor nit. As we said offline, it'd be good to get Simon Stewart's take on this. http://gwt-code-reviews.appspot.com/770801/diff/1/10 File user/src/com/google/gwt/resources/rg/CssResourceGenerator.java (right): http://gwt-code-reviews.appspot.com/770801/diff/1/10#newcode979

[gwt-contrib] [google-web-toolkit] r8654 committed - Add DynaTableRf to the distribution, and fix some checkstyle issues....

2010-08-26 Thread codesite-noreply
Revision: 8654 Author: gwt.mirror...@gmail.com Date: Thu Aug 26 14:18:16 2010 Log: Add DynaTableRf to the distribution, and fix some checkstyle issues. Pave the way a bit for LoggingExample. Review at http://gwt-code-reviews.appspot.com/775805 Review by: unn...@google.com

[gwt-contrib] Lose idiotic, inflexible password block. (issue779803)

2010-08-26 Thread rjrjr
Reviewers: amitmanjhi, Description: Lose idiotic, inflexible password block. Please review this at http://gwt-code-reviews.appspot.com/779803/show Affected files: M user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java Index:

[gwt-contrib] Re: Lose idiotic, inflexible password block. (issue779803)

2010-08-26 Thread Amit Manjhi
LGTM On Thu, Aug 26, 2010 at 2:31 PM, rj...@google.com wrote: Reviewers: amitmanjhi, Description: Lose idiotic, inflexible password block. Please review this at http://gwt-code-reviews.appspot.com/779803/show Affected files: M

[gwt-contrib] Adding RTL support to Cell Widgets. CellBrowser opens from the right in RTL mode. CellTree open... (issue783802)

2010-08-26 Thread jlabanca
Reviewers: rjrjr_gooogle.com, Description: Adding RTL support to Cell Widgets. CellBrowser opens from the right in RTL mode. CellTree open/close icons appear on the right in RTL mode. IconCell shows the image on the right. As part of this change, I had to change the location of the ruler in

[gwt-contrib] [google-web-toolkit] r8655 committed - Lose idiotic, inflexible password block....

2010-08-26 Thread codesite-noreply
Revision: 8655 Author: rj...@google.com Date: Thu Aug 26 12:58:56 2010 Log: Lose idiotic, inflexible password block. Review at http://gwt-code-reviews.appspot.com/779803 Review by: amitman...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8655 Modified:

[gwt-contrib] Re: CurrencyList now uses pure Java in dev mode. (issue771803)

2010-08-26 Thread scottb
http://gwt-code-reviews.appspot.com/771803/diff/1/2 File user/src/com/google/gwt/i18n/client/CurrencyList.java (right): http://gwt-code-reviews.appspot.com/771803/diff/1/2#newcode209 user/src/com/google/gwt/i18n/client/CurrencyList.java:209: return new CurrencyDataImpl(USD, $, 2, US$); Meh,

[gwt-contrib] RR: design doc for ValueStore and Events

2010-08-26 Thread Amit Manjhi
https://wave.google.com/wave/#restored:search,restored:wave:googlewave.com%252Fw%252Bywx8dL_XC The wave linked above describes how ValueStore and firing of data events (creates, updates, and deletes) will work in GWT 2.1. It should be world readable, and editable by everyone in

[gwt-contrib] Re: Initial support for round-trip edits in the DynaTableRF sample. (issue767801)

2010-08-26 Thread bobv
Ready for another look. http://gwt-code-reviews.appspot.com/767801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: RR: allow CheckBox to accept null?

2010-08-26 Thread Ray Ryan
Andrew, how would this be? CheckBox cb = new CheckBox(); cb.setValue(null); assertFalse(cb.getValue()); rjrjr On Thu, Aug 26, 2010 at 5:57 PM, Andrew Pietsch andrew.piet...@gmail.comwrote: I personally would like to see it support null, not because null is a valid UI state but

[gwt-contrib] Re: Removed Object.typeId from generated class prototypes, and from the compilation and linkage phas... (issue751803)

2010-08-26 Thread scottb
Mostly looks good, just some style/simplicity comments on JProgram. Thanks for the cleanups I noticed you did along the way. http://gwt-code-reviews.appspot.com/751803/diff/1/4 File dev/core/src/com/google/gwt/dev/jjs/ast/JProgram.java (right):

[gwt-contrib] Rudimentary exception handling. (issue803801)

2010-08-26 Thread rjrjr
Reviewers: cromwellian, Description: Rudimentary exception handling. Please review this at http://gwt-code-reviews.appspot.com/803801/show Affected files: M user/src/com/google/gwt/requestfactory/client/impl/AbstractRequest.java M

[gwt-contrib] Re: Rudimentary exception handling. (issue803801)

2010-08-26 Thread Ray Ryan
This is to be coupled with a simple UncaughtExceptionHandler in the entry point: GWT.setUncaughtExceptionHandler(new GWT.UncaughtExceptionHandler() { public void onUncaughtException(Throwable e) { Window.alert(Error: + e.getMessage());

[gwt-contrib] Re: Adding RTL support to Cell Widgets. CellBrowser opens from the right in RTL mode. CellTree open... (issue783802)

2010-08-26 Thread rjrjr
LGTM, presuming the following is cleared up The RTL changes look good. Saw a few unrelated changes too, though. Were they on purpose? Bad diff, maybe? http://gwt-code-reviews.appspot.com/783802/diff/1/6 File user/src/com/google/gwt/user/cellview/client/CellBasedWidgetImplTrident.java (right):

  1   2   >