convert the comma separated number into the valid double number

2010-08-20 Thread Santosh kumar
Hi, I want to get the value (for example 10,000.00) from the text box, but i am getting only 10.0 from that text box using DOM. (But i am getting right values which are below 1,000.00) Is there any logic to convert the comma separated number which are in the text into the valid double number...

Missing resource file after deployed to App Engine- works fine in local

2010-08-20 Thread Gift
Hi, I am developing code in Eclipse using GWT. I saved my resource files under the root of war directory, my code works fine when I am in my eclipse and my code can read the file I stored. However, after I uploaded the code to app engine, it looks like the app engine is been missing the

Asynchronous Loading of Compiled Script

2010-08-20 Thread eggsy84
Hi all, Not posted for a while so hello again! I have written a small piece of GWT code that people can to their website and it performs a few JSONP requests and the like. It functions in a similar way as that of the Google Analytics code in terms of a small piece of code anyone can add to their

Re: Asynchronous Loading of Compiled Script

2010-08-20 Thread eggsy84
Sorry didn't mean to post please see full message below: Hi all, Not posted for a while so hello again! I have written a small piece of GWT code that people can to their website and it performs a few JSONP requests and the like. It functions in a similar way as that of the Google Analytics code

Re: Accessing shared package class from client code

2010-08-20 Thread vikky8118
hi Thomas, Thanks a bunch, that idea really works for me. Awesome. Kudos. Hey Deepak, I have not yet worked on RequestBuilder - but after seeing the javadoc, with very little knowledge, I am guessing this might be what you are looking for - you need to write the code here - RequestBuilder's

Re: display result of ListString from server side method into TabPanel

2010-08-20 Thread AlexG
Hi Ichi, as Sean told, I guess you want to get some Data from the Datastore and show these data to the user, using a TabPanel. So you should implement a Service (RPC for example) to get the ListString from the datastore/server to the client. Send the ListString back to the client, there you can

Re: Asynchronous Loading of Compiled Script

2010-08-20 Thread eggsy84
To add a bit more on this there are various ways in which the client can asynchronously load my external javascript http://ntt.cc/2008/02/10/4-ways-to-dynamically-load-external-javascriptwith-source.html However, my GWT Java/Javascript code *must* not be executed until the DOM has fully loaded.

GWT offline messaging application

2010-08-20 Thread Shaji
Hi, Any one aware of offline application to send messages to user community in portal like facebook? Is there any framework or examples I can find? Please let me know. Thanks Mohammed Ahmed -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Instantations gwt-builder

2010-08-20 Thread markomina
Any estimation of timetable? New project could be starting soon and we need gui-gesign tool... On 11 elo, 17:47, cokol eplisc...@googlemail.com wrote: as soon as google finalises the transition :) On 11 Aug., 14:54, markomina minam...@hotmail.com wrote: Instantations had gwt-builder which I

Re: Deselect items in a CellTree with MultiSelectionModel

2010-08-20 Thread rhmoller
I have been digging through the source code for GWT 2.1.0.M2. All click events result in adding to the selection. There is no support for deselecting items in any of the cell widgets. I have filed this issue for it: http://code.google.com/p/google-web-toolkit/issues/detail?id=5223 On Aug 19,

Re: Reusing GWT Localization in Server Side Code

2010-08-20 Thread Stefan Bachert
Hi, you may consider to use the localized property files with the classical resource bundle However, localisation is a presentation topic which in general should be cover on client side. The server should be in general not locale aware. (no permutation selection) Stefan Bachert

Does GWT support Servlet 3.0

2010-08-20 Thread Nil
Hi, I am new to GWT. I would like to know : 1. Does GWT support Servlet 3.0 ? If yes, then are there any code changes needed from the developer ? 2. Does GWT support Tomcat 7.0 ? Both Tomcat 7.0 and Servlet 3.0 are still in beta stages, but we plan to use GWT + Servlet 3.0 + Tomcat 3.0 for a

Erreur 404 GWT

2010-08-20 Thread kiafr
Hi im new with gwt i create a new project with gwt with the IDE Eclipse. i clear all the code in the class entry point so that in the html page to load my own code the problem is that when i execute my application i got this error msg: HTTP ERROR 404 Problem accessing /WebExample.html.

GWT running wrong methods

2010-08-20 Thread Pascal
So i am relatively new to GWT. i had some examples and stuff working without a problem but right now i am experiencing a real strange behaviour by GWT. I had a method called query(sql) that should retrieve a resultSet from a database given the sql-String as a parameter. Then the compiler threw an

How to make Cross Site GWT work in servlet (doOptions)

2010-08-20 Thread jmich
Hi, I've been trying to get gwt to work cross site for some time now, but I'm stuck, so hope someone can help me out. This is what I did so far: - added the xs linker to my gwt.xml - made servlet for my service which overrides doOptions - GWT compiled and deployed to my jetty server - made a

mobilescrollpanel entry point?

2010-08-20 Thread asianCoolz
i try to use mobilescrollpanel in my project. in my project, i put inherits name=com.google.gwt.mobile.Mobile/ but when i open up Mobile.gwt.xml, there is not entry point pre- defined. i get below error: Module has no entry points defined how to fix it? -- You received this message

Re: Reusing GWT Localization in Server Side Code

2010-08-20 Thread Maxim
Well, our solution is to keep dictionaries ( property files ) server- side ( actually in server-side client-specific plugin ). Client loads appropriate property file by GWT-RPC request. For each string which is used on the client there is a separate method in ClientMessages class, say String

Re: Reusing GWT Localization in Server Side Code

2010-08-20 Thread Maxim
Stefan you wrote: The server should be in general not locale aware. what about notification ? Normally notification messages are localized. Maxim http://www.projectkaiser.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: convert the comma separated number into the valid double number

2010-08-20 Thread Thomas Dvornik
Hey Santosh, I think the simplest way is to replace the commas with nothing. Double.valueOf(10,000.00.replaceAll(,, )); You can also use the NumberFormat utility. try { NumberFormat.getInstance(Locale.US).parse(10,000.00).doubleValue(); } catch (ParseException e) {

external jars

2010-08-20 Thread Jason M
I'm trying to import a jar file with pojo classes and am getting: Unable to find 'de/vogella/gwt/module/model.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source? I followed this tutorial: http://www.vogella.de/articles/GWT/ar01s08.html and

Re: external jars

2010-08-20 Thread Jason M
Ok..just figured this out. I was putting the .gwt.xml file in the wrong package; i was putting it in the package with the class and not the parent one. On Aug 20, 9:29 am, Jason M jason.milli...@gmail.com wrote: I'm trying to import a jar file with pojo classes and am getting: Unable to find

Re: external jars

2010-08-20 Thread Bhaskar
Have u inherited in gwt.xml file ? On Fri, Aug 20, 2010 at 7:59 PM, Jason M jason.milli...@gmail.com wrote: I'm trying to import a jar file with pojo classes and am getting: Unable to find 'de/vogella/gwt/module/model.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include

Re: How to make Cross Site GWT work in servlet (doOptions)

2010-08-20 Thread Thomas Broyer
On 19 août, 20:31, jmich jes...@allinsite.dk wrote: Hi, I've been trying to get gwt to work cross site for some time now, but I'm stuck, so hope someone can help me out. This is what I did so far:  - added the xs linker to my gwt.xml  - made servlet for my service which overrides

Re: GWT running wrong methods

2010-08-20 Thread Thomas Broyer
On 20 août, 09:34, Pascal lightzo...@googlemail.com wrote: So i am relatively new to GWT. i had some examples and stuff working without a problem but right now i am experiencing a real strange behaviour by GWT. I had a method called query(sql) that should retrieve a resultSet from a

App engine key added with String

2010-08-20 Thread suersh babu
Hi, I am a beginner to the app engine , and i am using eclipse 3.4.2 with gwt 2.0 , with app engine 1.3.5 sdk . when ever try to store the entity into the app engine datastore the key is added with some string after that kind and it id is added. So what is that string meant ,Is it any

not show time in date picker

2010-08-20 Thread Tushar
How to show only date and not time in date picker? -- 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 this group, send email to

Re: Does GWT support Servlet 3.0

2010-08-20 Thread Thomas Broyer
On 20 août, 10:34, Nil nilendra.j...@gmail.com wrote: Hi, I am new to GWT. I would like to know : 1. Does GWT support Servlet 3.0 ? If yes, then are there any code changes needed from the developer ? Neither GWT-RPC (including deRPC) or the upcoming RequestFactory support Servlet 3.0;

Android app inventor

2010-08-20 Thread Gal Dolber
Hi, I just got my android app inventor invitation... and you know what? it is completely made with gwt! :D -- 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

Google's commitment to GWT

2010-08-20 Thread David Pinn
Perhaps it's the demise of Wave; or maybe I've just been hanging out with too many Ruby fan boys; but I'm nervous about the future of GWT. I have a huge investment in GWT, in terms of learning and effort, not to mention a sizeable and growing code base. Please tell me that GWT isn't going away.

Re: Android app inventor

2010-08-20 Thread Jim Douglas
There's a long discussion about it here, starting @ 24:30: http://www.javaposse.com/java_posse_315_newscast_for_july_16th_2010 On Aug 20, 9:03 am, Gal Dolber gal.dol...@gmail.com wrote: Hi, I just got my android app inventor invitation... and you know what? it is completely made with gwt! :D

Re: App engine key added with String

2010-08-20 Thread Jeff Schnitzer
The string is an encoded representation of the key. See the keyToString() and stringToKey() methods on http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/KeyFactory.html This is just how the Datastore Viewer renders Keys. Jeff On Fri, Aug 20, 2010 at 8:14 AM,

Re: not show time in date picker

2010-08-20 Thread Gal Dolber
datepicker.setFormat() 2010/8/20 Tushar tsk...@gmail.com How to show only date and not time in date picker? -- 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

GWT 2.0.4 app does not work with Java JDK 1.5

2010-08-20 Thread Greg Dougherty
I have a GWT app I was building using a 1.6 JDK. However, the place where I want to deploy it only has Tomcat 5, running jdk 1.5. So I changed my compiler settings to 1.5 compliance, and a 1.5 jdk, and rebuild. After I got rid of all my @Override annotations, it compiled. If I zip up my war

Re: Android app inventor

2010-08-20 Thread Jeff Chimene
On Fri, Aug 20, 2010 at 9:17 AM, Jim Douglas jdoug...@basis.com wrote: There's a long discussion about it here, starting @ 24:30: http://www.javaposse.com/java_posse_315_newscast_for_july_16th_2010 The discussion following that segment is particularly amusing given the recent Oracle v.

App does not display in IE 7

2010-08-20 Thread Greg Dougherty
I have a web app that displays just fine in the Mozilla browsers, but does not display at all in IE 7 (totally blank screen). I'm deploying this through Tomcat (see previous message about Development Mode not working with JDK 1.5), so I can't usefully follow it in the debugger (the issues are on

Re: Android app inventor

2010-08-20 Thread Jim Douglas
http://groups.google.com/group/javaposse/browse_thread/thread/f9091fa860bec8a9# On Aug 20, 10:19 am, Jeff Chimene jchim...@gmail.com wrote: On Fri, Aug 20, 2010 at 9:17 AM, Jim Douglas jdoug...@basis.com wrote: There's a long discussion about it here, starting @ 24:30:

Re: Images only show sometimes

2010-08-20 Thread GKotta
So it turns out that the problem was that I was clipping the images using the setVisibleRect() method in the image class. I didn't actually need to clip the images so displaying the whole image solved the problem. I don't know why clipping an image would cause it to only show sometimes, though.

read images stored in datastore

2010-08-20 Thread GKotta
Hi, I am getting a file access denied when I try to send an image in the datastore as an attachment in an email. Is there any way around this? I was thinking that there should be some way to use the datastore api to read the file but I don't know how to do that. This is the part of my code where

Re: Does Timer class only last one session + images as an attachment in an email

2010-08-20 Thread GKotta
Hi cokol, could you explain how I would use the api to access the file? On Aug 12, 12:44 am, cokol eplisc...@googlemail.com wrote: you should not read the images from datastore using HTTP but rather use the API for that, if you really want first to load a stream from a HTTP connection and

blobstore not allowing access to a file 1 mb with one api call + zip files

2010-08-20 Thread GKotta
Hi, I have my users upload a zip file full of images (all of which are less than 1 mb, so theoretically, I should be able to access each image with one api call.) The problem is that this doesn't work in practice. I want to use the blobstore to upload the zip file then put each individual image

Why not put FooService and FooServiceAsync in one file?

2010-08-20 Thread mkh
Given tight linkage between the service and it async counterpart, I wonder why the convention is not to put these together in one file, much like a GwtEvent and its EventHandler: public interface AccountsService extends RemoteService { AccountRequestDto update(AccountRequestDto request)

Re: Missing resource file after deployed to App Engine- works fine in local

2010-08-20 Thread Gift
I might have not explained this in detail. So my problem is the program work fine in my eclipse however, after I deploy it to App engine, it stopped working. Thanks, On Aug 20, 2:08 am, Gift liwufi...@gmail.com wrote: Hi, I am developing code in Eclipse using GWT. I saved my resource files

Re: Android app inventor

2010-08-20 Thread Jeff Chimene
On 08/20/2010 10:33 AM, Jim Douglas wrote: http://groups.google.com/group/javaposse/browse_thread/thread/f9091fa860bec8a9# 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

How to define a human readable URL?

2010-08-20 Thread Thamizharasu S
Hi All, How to define human readable URL for GWT application? any idea... - Thamizharasu S -- 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 this

Re: Why not put FooService and FooServiceAsync in one file?

2010-08-20 Thread Greg Dougherty
Java requires that public classes and public interfaces be in their own files, with a file name that matches the class / interface name. So unless you want to put your client and server code in the same package, your idea's a non-starter. And, IIUC, you CAN'T put the client and server code in

Re: How to define a human readable URL?

2010-08-20 Thread Gal Dolber
Not sure what exactly you mean 2010/8/20 Thamizharasu S zaru...@gmail.com Hi All, How to define human readable URL for GWT application? any idea... - Thamizharasu S -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Missing resource file after deployed to App Engine- works fine in local

2010-08-20 Thread Gift
I tried the following code String jobDataFileResourceName = servletContext.getRealPath() + /WEB-INF + /jobs_ + info.getName() + .txt; InputStream stream =new FileInputStream(jobDataFileResourceName); but

Re: Frameworks

2010-08-20 Thread ALEXEI BARBONI
Thank you very much As soon as I have some news about these tools I'll try to post my experiences here to help new GWT developers. :) Alexei Telles 2010/8/19 Robert Munteanu robert.munte...@gmail.com You can take advantage of two stable, solid frameworks insipired by Ray Ryan's Best

Re: Introducing Guit: a next generation gwt framework

2010-08-20 Thread Peter Simun
Thomas, is gwtgallery still alive? No, new frameworks are there from Jun 09. Maybe that's the reason why to create something, where is possible to submit new framework. Peter On 19. Aug, 12:41 h., Matt H matt2...@gmail.com wrote: Well, it's made with GWT of course! On Aug 19, 12:18 am, Thomas

Re: Google's commitment to GWT

2010-08-20 Thread Falcon
I would imagine that Google will continue to improve GWT so that they can build future applications themselves. I would think the big two they would use internally would be Closure and GWT, so as long as Google is making web-based apps, I doubt you have much to worry about, as they need the tools

Re: Google's commitment to GWT

2010-08-20 Thread Daniel Jue
Google would not drop support until they had something better to replace it, and a migration plan for the GWT developers. From a rational point of view, they would choose this path and keep developers' mindshare rather than loose it to some other platform/company. They might not be making money

Re: read images stored in datastore

2010-08-20 Thread GKotta
So I solved this problem by emailing using the datastore's mail api instead of javamail. By doing so, you can access the blob as a array of bytes and send that array as an attachment. On Aug 20, 10:38 am, GKotta guruko...@gmail.com wrote: Hi, I am getting a file access denied when I try to

Re: Google's commitment to GWT

2010-08-20 Thread Thomas Broyer
On 20 août, 18:11, David Pinn dp...@byandlarge.net wrote: Perhaps it's the demise of Wave; or maybe I've just been hanging out with too many Ruby fan boys; but I'm nervous about the future of GWT. I have a huge investment in GWT, in terms of learning and effort, not to mention a sizeable and

Now with Google Font API released, how to integrate with RTA

2010-08-20 Thread Karthikeyan Radhakrishna
Hi All, Any idea how we can integrate the Google Font API with the GWT Rich text Area? Regards, Karthik -- 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

Re: Now with Google Font API released, how to integrate with RTA

2010-08-20 Thread Thomas Broyer
On 21 août, 02:05, Karthikeyan Radhakrishna karthik@gmail.com wrote: Hi All, Any idea how we can integrate the Google Font API with the GWT Rich text Area? See http://code.google.com/p/google-web-toolkit/issues/detail?id=1052 -- You received this message because you are subscribed to

Re: create another servlet in gwt project

2010-08-20 Thread mdwarne
You can create another servlet for file upload in the same Web application. I have another servlet that I use to create PDF files, so I know this works. Make sure you configure your new servlet, and your servlet URL mapping in your web.xml file. Then make sure you post your data to the new

Re: Problems creating my first reusable module: import cannot be resolved

2010-08-20 Thread Sleeveen
Thanks for the responses - much appreciated. The root cause turned out to be a few things. 1. My Eclipse environment was in some weird state. After restarting Eclipse, things became much more obvious. 2. Hyphens in the .gwt.xml name were a no-no 3. Class.newInstance() isn't supported in the

Re: convert the comma separated number into the valid double number

2010-08-20 Thread Santosh kumar
Hi Thomas, Thank You for replying... ya its working ... i got expected output. On Fri, Aug 20, 2010 at 7:46 PM, Thomas Dvornik amp...@gmail.com wrote: Hey Santosh, I think the simplest way is to replace the commas with nothing. Double.valueOf(10,000.00.replaceAll(,, )); You can also

[gwt-contrib] [google-web-toolkit] r8588 committed - Disable failing test until RequestFactory stops leaning...

2010-08-20 Thread codesite-noreply
Revision: 8588 Author: rj...@google.com Date: Thu Aug 19 21:07:59 2010 Log: Disable failing test until RequestFactory stops leaning on class.getName() Review by: cromwell...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8588 Added:

[gwt-contrib] Re: We were broken by both -XdisableClassMetaData and plain old web (issue787801)

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

[gwt-contrib] [google-web-toolkit] r8589 committed - We were broken by both -XdisableClassMetaData and plain old web...

2010-08-20 Thread codesite-noreply
Revision: 8589 Author: gwt.mirror...@gmail.com Date: Fri Aug 20 00:49:52 2010 Log: We were broken by both -XdisableClassMetaData and plain old web mode. Fixed. Review at http://gwt-code-reviews.appspot.com/787801 Review by: cromwell...@google.com

[gwt-contrib] Restores our new friend ValueListBox, and muzzles a couple of his (issue788801)

2010-08-20 Thread rjrjr
Reviewers: amitmanjhi, Description: Restores our new friend ValueListBox, and muzzles a couple of his unit tests which seem to fail on FireFox. The widget works well manually, and M3 needs it. Review by: amitman...@google.com Please review this at

[gwt-contrib] Re: Restores our new friend ValueListBox, and muzzles a couple of his (issue788801)

2010-08-20 Thread Amit Manjhi
LGTM On Fri, Aug 20, 2010 at 1:30 AM, rj...@google.com wrote: Reviewers: amitmanjhi, Description: Restores our new friend ValueListBox, and muzzles a couple of his unit tests which seem to fail on FireFox. The widget works well manually, and M3 needs it. Review by: amitman...@google.com

[gwt-contrib] Re: Makes Widget.addDomHandler public, so that helpers can add keyboard handlers to panels without c... (issue779802)

2010-08-20 Thread jgw
On 2010/08/19 12:00:39, gryder wrote: Well, I had thought there was a good reason to keep these protected, but I can't seem to find any problem with making them public. LGTM. http://gwt-code-reviews.appspot.com/779802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: RR : Add ui:import to UiBinder to allow access to static fields. (issue781801)

2010-08-20 Thread Ray Ryan
LGTM It occurs to me that the enum variant isn't all that useful, since we'll treat them as literals for you, but it's still a long-saught feature. Thanks. On Fri, Aug 20, 2010 at 7:27 AM, j...@google.com wrote: On 2010/08/19 16:56:54, bobv wrote: This patch allows ui.xml files to refer to

[gwt-contrib] [google-web-toolkit] r8590 committed - Add tag for the 2.0.4 branch....

2010-08-20 Thread codesite-noreply
Revision: 8590 Author: sco...@google.com Date: Fri Aug 20 08:28:23 2010 Log: Add tag for the 2.0.4 branch. $ svn cp https://google-web-toolkit.googlecode.com/svn/releases/2...@8340 https://google-web-toolkit.googlecode.com/svn/tags/2.0.4

[gwt-contrib] [google-web-toolkit] r8591 committed - tr...@r8376 was merged into this branch...

2010-08-20 Thread codesite-noreply
Revision: 8591 Author: sco...@google.com Date: Fri Aug 20 08:42:07 2010 Log: tr...@r8376 was merged into this branch SafeASTVisitor unilaterally avoids visiting error/unreachable local types svn merge -c8376 --ignore-ancestry https://google-web-toolkit.googlecode.com/svn/trunk

[gwt-contrib] Re: Public: Start of a sample application showing GWT validation. (issue760802)

2010-08-20 Thread nchalko
http://gwt-code-reviews.appspot.com/760802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8592 committed - Fix when update events get fired....

2010-08-20 Thread codesite-noreply
Revision: 8592 Author: gwt.mirror...@gmail.com Date: Fri Aug 20 09:16:55 2010 Log: Fix when update events get fired. Patch by: amitmanjhi Review by: rjrjr, cromwellian http://code.google.com/p/google-web-toolkit/source/detail?r=8592 Modified:

[gwt-contrib] [google-web-toolkit] r8593 committed - Restores our new friend ValueListBox, and muzzles a couple of his...

2010-08-20 Thread codesite-noreply
Revision: 8593 Author: rj...@google.com Date: Fri Aug 20 04:22:09 2010 Log: Restores our new friend ValueListBox, and muzzles a couple of his unit tests which seem to fail on FireFox. The widget works well manually, and M3 needs it. Review at http://gwt-code-reviews.appspot.com/788801 Review

[gwt-contrib] [google-web-toolkit] r8594 committed - Introduce an interface for widgets that have a setEnabled method....

2010-08-20 Thread codesite-noreply
Revision: 8594 Author: j...@google.com Date: Fri Aug 20 04:37:13 2010 Log: Introduce an interface for widgets that have a setEnabled method. Review by: jlaba...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8594 Added:

[gwt-contrib] [google-web-toolkit] r8595 committed - Add ui:import to UiBinder to allow access to static fields....

2010-08-20 Thread codesite-noreply
Revision: 8595 Author: b...@google.com Date: Fri Aug 20 04:44:06 2010 Log: Add ui:import to UiBinder to allow access to static fields. Patch by: bobv Review by: jgw Suggested by: sonnyf Review at http://gwt-code-reviews.appspot.com/781801

[gwt-contrib] [google-web-toolkit] r8596 committed - Allow to keep size of Widget on DeckPanel....

2010-08-20 Thread codesite-noreply
Revision: 8596 Author: j...@google.com Date: Fri Aug 20 04:56:10 2010 Log: Allow to keep size of Widget on DeckPanel. Review: http://gwt-code-reviews.appspot.com/732802 Review by: jlaba...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8596 Modified:

[gwt-contrib] [google-web-toolkit] r8597 committed - Fixed a bug in JsonRequestProcessor wherein a fast test run could resu...

2010-08-20 Thread codesite-noreply
Revision: 8597 Author: amitman...@google.com Date: Fri Aug 20 05:05:26 2010 Log: Fixed a bug in JsonRequestProcessor wherein a fast test run could result in failure, because the two Date() calls would return the same millis. Patch by: amitmanjhi Review by: rjrjr, cromwellian (tbr)

[gwt-contrib] [google-web-toolkit] r8598 committed - Makes Widget.addDomHandler public, so that helpers can add keyboard ha...

2010-08-20 Thread codesite-noreply
Revision: 8598 Author: gry...@google.com Date: Fri Aug 20 05:23:44 2010 Log: Makes Widget.addDomHandler public, so that helpers can add keyboard handlers to panels without creating new widgets or DOM elements. Review at http://gwt-code-reviews.appspot.com/779802 Review by: j...@google.com

[gwt-contrib] Re: Added all safehtml packages. (issue771801)

2010-08-20 Thread pdr
http://gwt-code-reviews.appspot.com/771801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added all safehtml packages. (issue771801)

2010-08-20 Thread pdr
http://gwt-code-reviews.appspot.com/771801/diff/25001/26004 File user/src/com/google/gwt/safehtml/shared/OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml.java (right): http://gwt-code-reviews.appspot.com/771801/diff/25001/26004#newcode31

[gwt-contrib] [google-web-toolkit] r8599 committed - Get rid of yellow background during cell selection

2010-08-20 Thread codesite-noreply
Revision: 8599 Author: gwt.mirror...@gmail.com Date: Fri Aug 20 10:57:11 2010 Log: Get rid of yellow background during cell selection http://code.google.com/p/google-web-toolkit/source/detail?r=8599 Modified: /trunk/user/src/com/google/gwt/user/cellview/client/CellTree.css

[gwt-contrib] [google-web-toolkit] r8600 committed - ant test needs these jars...

2010-08-20 Thread codesite-noreply
Revision: 8600 Author: k...@google.com Date: Fri Aug 20 07:59:07 2010 Log: ant test needs these jars Review at http://gwt-code-reviews.appspot.com/785801 Review by: ncha...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8600 Modified: /trunk/user/build.xml

[gwt-contrib] Always use unix-style line endings in Generators. (issue776803)

2010-08-20 Thread scottb
Reviewers: bobv, rjrjr, Description: This makes for consistent output across operating systems. In particular, it makes Windows output unix-style. Please review this at http://gwt-code-reviews.appspot.com/776803/show Affected files: M

[gwt-contrib] Re: Remove non-determinism in ImageRseourceGenerator. (issue769802)

2010-08-20 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/769802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: chrome broken

2010-08-20 Thread John LaBanca
Do you see this error every time, or just intermittently? Thanks, John LaBanca jlaba...@google.com On Thu, Aug 19, 2010 at 11:58 PM, Pascal Patry i...@invalidip.com wrote: On Thursday, August 19, 2010 23:50:44 Ray Cromwell wrote: That's interesting, because Longs are supposed to be

[gwt-contrib] Re: Always use unix-style line endings in Generators. (issue776803)

2010-08-20 Thread bobv
Change LGTM, but why is this a problem in practice? Isn't the generated source transient? http://gwt-code-reviews.appspot.com/776803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8601 committed - Created 2.1M3 branch from tr...@8598....

2010-08-20 Thread codesite-noreply
Revision: 8601 Author: rda...@google.com Date: Fri Aug 20 11:25:36 2010 Log: Created 2.1M3 branch from tr...@8598. svn copy -r 8598 https://google-web-toolkit.googlecode.com/svn/trunk https://google-web-toolkit.googlecode.com/svn/branches/2.1M3

[gwt-contrib] Re: Added all safehtml packages. (issue771801)

2010-08-20 Thread rice
LGTM http://gwt-code-reviews.appspot.com/771801/diff/11002/15011 File user/src/com/google/gwt/safehtml/shared/SafeHtmlUtils.java (right): http://gwt-code-reviews.appspot.com/771801/diff/11002/15011#newcode79 user/src/com/google/gwt/safehtml/shared/SafeHtmlUtils.java:79: * Test 1, complex

[gwt-contrib] Re: HasEnabled (issue757801)

2010-08-20 Thread jgw
On 2010/08/13 15:01:58, johan.rydberg wrote: Done! On Fri, Aug 13, 2010 at 4:00 PM, mailto:jlaba...@google.com wrote: @johan - Can you sign a Contributor License Agreement so we can include your code: http://code.google.com/legal/individual-cla-v1.0.html If you scroll to the bottom,

[gwt-contrib] Re: Always use unix-style line endings in Generators. (issue776803)

2010-08-20 Thread rjrjr
LGTM if you scatter some notes explaining why. On 2010/08/20 18:25:49, bobv wrote: Change LGTM, but why is this a problem in practice? Isn't the generated source transient? http://gwt-code-reviews.appspot.com/776803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: chrome broken

2010-08-20 Thread Pascal Patry
On Friday, August 20, 2010 14:24:47 John LaBanca wrote: Do you see this error every time, or just intermittently? Every time with a RequestObjectLong. I suspect any other kind of request using RequestObject would also trigger it. As I previously mentioned, it's a chrome only issue. --

[gwt-contrib] ClientBundleWithLookup.getResource(String) now uses a HashMap in DevMode. (issue789801)

2010-08-20 Thread scottb
Reviewers: bobv, Description: This is the first of a couple of patches that will remove certain JSNI code paths in generated code from being traversed in DevMode. This should allow DevMode to run faster. Please review this at http://gwt-code-reviews.appspot.com/789801/show Affected files:

Re: [gwt-contrib] Re: Always use unix-style line endings in Generators. (issue776803)

2010-08-20 Thread Chris Conroy
well, that would at least partially explain this: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/5d026150c1d31b6f?hl=en# On Fri, Aug 20, 2010 at 2:48 PM, rj...@google.com wrote: LGTM if you scatter some notes explaining why. On 2010/08/20 18:25:49, bobv wrote:

[gwt-contrib] [google-web-toolkit] r8602 committed - Updated common.ant.xml to copy pom.xml (if found) to build/out...

2010-08-20 Thread codesite-noreply
Revision: 8602 Author: gwt.mirror...@gmail.com Date: Fri Aug 20 08:26:19 2010 Log: Updated common.ant.xml to copy pom.xml (if found) to build/out Added .place-holder to ensure war dir existence Review at http://gwt-code-reviews.appspot.com/782801 Review by: r...@google.com

[gwt-contrib] Re: Always use unix-style line endings in Generators. (issue776803)

2010-08-20 Thread Scott Blum
On Fri, Aug 20, 2010 at 2:25 PM, b...@google.com wrote: Change LGTM, but why is this a problem in practice? Isn't the generated source transient? It is, except when you use the -gen flag because you actually want to see the generated output. What I was seeing is that, in some cases, the line

Re: [gwt-contrib] Re: Always use unix-style line endings in Generators. (issue776803)

2010-08-20 Thread John Tamplin
On Fri, Aug 20, 2010 at 3:12 PM, Chris Conroy con...@google.com wrote: well, that would at least partially explain this: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/5d026150c1d31b6f?hl=en# That might explain why the compiled code was different, but wouldn't explain

[gwt-contrib] [google-web-toolkit] r8603 committed - Snip a stray logging line....

2010-08-20 Thread codesite-noreply
Revision: 8603 Author: gwt.mirror...@gmail.com Date: Fri Aug 20 08:33:30 2010 Log: Snip a stray logging line. Review by: amitman...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8603 Modified:

Re: [gwt-contrib] Re: Always use unix-style line endings in Generators. (issue776803)

2010-08-20 Thread Chris Conroy
Yeah, that's why I qualified it with partially. I guess the logical answer if he's getting different behavior would be that he is in fact not compiling the same code or is using a different version of the SDK. On Fri, Aug 20, 2010 at 3:16 PM, John Tamplin j...@google.com wrote: On Fri, Aug 20,

Re: [gwt-contrib] Re: chrome broken

2010-08-20 Thread John LaBanca
We tracked it down to a Chrome dev mode oddity. Chrome dev mode adds a __gwt_ObjectId attribute to all objects passed between Java and JSNI. I'm testing a simple fix now. Thanks, John LaBanca jlaba...@google.com On Fri, Aug 20, 2010 at 3:08 PM, Pascal Patry i...@invalidip.com wrote: On

Re: [gwt-contrib] Re: chrome broken

2010-08-20 Thread Pascal Patry
On Friday, August 20, 2010 15:31:55 John LaBanca wrote: We tracked it down to a Chrome dev mode oddity. Chrome dev mode adds a __gwt_ObjectId attribute to all objects passed between Java and JSNI. I'm testing a simple fix now. Great, thank you --

[gwt-contrib] Ignoring __gwt_ObjectId in AbstractRequest#processRelated. The __gwt_ObjectId attribute is adde... (issue760803)

2010-08-20 Thread jlabanca
Reviewers: cromwellian, Description: Ignoring __gwt_ObjectId in AbstractRequest#processRelated. The __gwt_ObjectId attribute is added by Chrome dev mode to all objects passed between JSNI and Java. Please review this at http://gwt-code-reviews.appspot.com/760803/show Affected files: M

[gwt-contrib] Re: Added all safehtml packages. (issue771801)

2010-08-20 Thread jat
LGTM with a couple of minor things left. http://gwt-code-reviews.appspot.com/771801/diff/11002/15007 File user/src/com/google/gwt/safehtml/shared/OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml.java (right): http://gwt-code-reviews.appspot.com/771801/diff/11002/15007#newcode26

[gwt-contrib] [google-web-toolkit] r8605 committed - Always use unix-style line endings in Generators....

2010-08-20 Thread codesite-noreply
Revision: 8605 Author: gwt.mirror...@gmail.com Date: Fri Aug 20 12:46:57 2010 Log: Always use unix-style line endings in Generators. This makes for consistent output across operating systems. In particular, it makes Windows output unix-style. http://gwt-code-reviews.appspot.com/776803/show

  1   2   >