Re: PDF version of the GWT Developer Guide -- any time soon?

2009-03-18 Thread Peter Ondruška
Nice, but not downloadable for offline access. Perhaps some Gears offline functionality (pretty easy) needs to be added... On Wed, Mar 18, 2009 at 1:55 AM, Brian hibr...@gmail.com wrote: Moribund? I loved their games, especially Raid On Bungling Bay... :) I don't know anything about a PDF

How to mask page when show a dialog box ?

2009-03-18 Thread Saeed Zarinfam
Hi I want to mask page element when i show a dialog box over the page (like google reader message box). please guide me. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: PDF version of the GWT Developer Guide -- any time soon?

2009-03-18 Thread MN
interesting idea, but i would point this issue to the google code or to the google docs team, because gwt is only using this system. On 18 Mrz., 07:10, Peter Ondruška peter.ondru...@gmail.com wrote: Nice, but not downloadable for offline access. Perhaps some Gears offline functionality (pretty

Re: How i found the real name of a obfuscated function? How i find the code lines?

2009-03-18 Thread MN
i know this, but this is not possible. i have a running system with obfuscated code and get sometimes error messages from user. now i need to assign this to the real code. unobfuscated (detailed) code to place on the production system is not the solution. is there any other solution? On 17

Compiling source files form external project?

2009-03-18 Thread Mike
Dear all, I'm writing a GWT app which has three tiers: a client, an RPC server (using the GWT RPC mechanism) and a further back-end server (RMI) used by the GWT service. Some classes, containing data, are used by all three tiers. Hence they are placed in package com.myapp.common . Since these

Re: How i found the real name of a obfuscated function? How i find the code lines?

2009-03-18 Thread Thomas Broyer
On 18 mar, 10:24, MN nietz...@gmail.com wrote: i have a running system with obfuscated code and get sometimes error messages from user. now i need to assign this to the real code. unobfuscated (detailed) code to place on the production system is not the solution. is there any other

Re: How to mask page when show a dialog box ?

2009-03-18 Thread Thomas Broyer
On 18 mar, 07:34, Saeed Zarinfam zarinfa...@gmail.com wrote: Hi I want to mask page element when i show a dialog box over the page (like google reader message box). please guide me. http://collectionofdemos.appspot.com/javadoc/com/google/gwt/widgetideas/client/GlassPanel.html from the

Re: How i found the real name of a obfuscated function? How i find the code lines?

2009-03-18 Thread MN
i just googled around this SOYC feature in the trunc, but in a sample output of soyc-vis i dont see this mappings: http://code.google.com/p/google-web-toolkit/source/browse/changes/kprobst/soyc-vis/?r=4195 maybe there is more of information in the xml file (in sampleInput- folder): in the last

Re: ResourceBundle for client??

2009-03-18 Thread Danny Schimke
Is the Constants- Interface of GWT the thing, what you are searching for? With this you can read the values from a properties- file -Danny 2009/3/17 joe young keven.c...@gmail.com Can client code able to use java.util.ResourceBundle? I have some information in a propertie file and I don't

Help with DecoratedStackPanel

2009-03-18 Thread Harry
Hi, I need to piece of code with DecoratedStackPanel class instance. I wanted it to be used for stack panels and few widgets will be under that. For example: Name, Address are two Stack Panels, Name Text boxes with First name Text Boxes with last name Address Text boxes for Address 1 Text

gwt-rpc + webservices hang glassfish 2.1

2009-03-18 Thread PeSc|O
Hi all, I'm getting some strange hangs with glassfish and gwt rpc services. I'll describe my problem: my dev tools are: netbeans 6.5 with latest updates, glassfish 2.1, gwt-1.5.3, linux ubuntu 8.04. situation: on the entry point create a SimplePanel with a button. Associate to this button a

Re: Help with DecoratedStackPanel

2009-03-18 Thread Sean
Here, check this out. It has source code to get you started as well: http://gwt.google.com/samples/Showcase/Showcase.html#CwStackPanel You will only need one stack Panel, but have a StackPanel.add() for Name and for Address. For something like Name and Address, StackPanel seems like an odd

Re: Compiling source files form external project?

2009-03-18 Thread Mike
I `solved' my problem by creating a separate module for the common source files, packaging them in a JAR, and including them in the client project by using inherits. Not really satisfied though, because each time i change the common package i must re-export and import the JAR. Bye, Mike On Mar

Re: Excluding imports on client side

2009-03-18 Thread Isaac Truett
No, you'll have to refactor to separate the server-side functionality. On Wed, Mar 18, 2009 at 6:17 AM, Ice13ill andrei.fifi...@gmail.com wrote: Is there a way to exclude imports when compiling a gwt application ? Let's say i want to use a class on client and server side with two methods:

Re: Excluding imports on client side

2009-03-18 Thread Thomas Broyer
On 18 mar, 11:17, Ice13ill andrei.fifi...@gmail.com wrote: Is there a way to exclude imports when compiling a gwt application ? Simply put: no. Let's say i want to use a class on client and server side with two methods: one uses gwt widgets (this is the method i want to use on the client

Not able to see checkboxes

2009-03-18 Thread Harry
Hi, I am not able to see radio button, what should i do is there anything i should add. package com.myapplications.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Command; import com.google.gwt.user.client.Window;

Re: How i found the real name of a obfuscated function? How i find the code lines?

2009-03-18 Thread Thomas Broyer
On 18 mar, 12:43, MN nietz...@gmail.com wrote: i just googled around this SOYC feature in the trunc, but in a sample output of soyc-vis i dont see this mappings: http://code.google.com/p/google-web-toolkit/source/browse/changes/kpr... maybe there is more of information in the xml file (in

Re: ResourceBundle for client??

2009-03-18 Thread joe young
YES~!! It is exactly what I'm looking for!! Thank you so much Danny~ On Mar 18, 8:03 am, Danny Schimke schimk...@googlemail.com wrote: Is the Constants- Interface of GWT the thing, what you are searching for? With this you can read the values from a properties- file -Danny 2009/3/17 joe

WindowCloseListener gets fired from iframe

2009-03-18 Thread ben
I'm having a problem with my WindoCloseListener.onWindowClosing event firing when I click a link on my page, which opens an iframe on my page. if I click ok, everything works as it should. But I don't want users thinking they are navigating away from my page when the click the link. I'm

Re: How i found the real name of a obfuscated function? How i find the code lines?

2009-03-18 Thread Thomas Broyer
On 18 mar, 15:08, Thomas Broyer t.bro...@gmail.com wrote: On 18 mar, 12:43, MN nietz...@gmail.com wrote: i just googled around this SOYC feature in the trunc, but in a sample output of soyc-vis i dont see this mappings:

Re: PDF version of the GWT Developer Guide -- any time soon?

2009-03-18 Thread Brian
Yeah it is too bad it's not accessible offline. Just noticed it also doesn't work to view the pages to cache the app, going offline, and re- viewing -- guess it's trying to pull data off the server. Think you're stuck until an offline version of some sort is provided... On Mar 18, 2:10 am,

Re: gwt-rpc + webservices hang glassfish 2.1

2009-03-18 Thread tetsuo
as i catch i right, the rpc-call is a different way to communicate, then webservice webservice is between 2 tiers, the rpc is a remote controller for the client to the server. if u want to distribute your remote call to a second app.server, u can use a webservice. for the simple remote call from

Re: file upload like orkut

2009-03-18 Thread El Mentecato Mayor
e) Via a Java Applet f) Via an ActiveX Applet (IE/windows-only I think) On Mar 16, 7:51 am, Thomas Broyer t.bro...@gmail.com wrote: On 16 mar, 09:06, Adam T adam.t...@gmail.com wrote: File upload is done via either: a) The FileUpload widget - if your happy for the user to select one

Re: Excluding imports on client side

2009-03-18 Thread Ice13ill
Where can i find how to use super-source/ tag in gwt.xml ? On Mar 18, 3:34 pm, Thomas Broyer t.bro...@gmail.com wrote: On 18 mar, 11:17, Ice13ill andrei.fifi...@gmail.com wrote: Is there a way to exclude imports when compiling a gwt application ? Simply put: no. Let's say i want to use

Re: como agregar imagen bmp en backround

2009-03-18 Thread El Mentecato Mayor
Pacholi, En tu página principal, simplemente usa un estilo CSS en el Panel que uses ahí que tenga una imagen de fondo, luego cambias en las demás páginas, si cambias el Panel, entonces se irá, si no, entonces simplemente cambias el estilo CSS por uno que no tenga esa imagen (usando

Re: Not able to see checkboxes

2009-03-18 Thread Vitali Lovich
You have to add them to a visible component. For instance: On Wed, Mar 18, 2009 at 9:50 AM, Harry harish1...@gmail.com wrote: Hi, I am not able to see radio button, what should i do is there anything i should add. package com.myapplications.client; import

JNSI - IFrame - Function Issue

2009-03-18 Thread Evan Ruff
Hey guys, I'm trying to create a simple little foray in to JSNI to do some DOM manipulation and I'm really striking out bigtime. Basically, my document loads an IFrame that contains and external page in it. On the page is a JS function called giveFocus(). I can't seem to get ahold of the frame

Re: gwt-rpc + webservices hang glassfish 2.1

2009-03-18 Thread PeSc|O
On Mar 18, 3:20 pm, tetsuo tetsuomeis...@googlemail.com wrote: as i catch i right, the rpc-call is a different way to communicate, then webservice webservice is between 2 tiers, the rpc is a remote controller for the client to the server. if u want to distribute your remote call to a

[ERROR] Type 'com.gwt.client.FileDetail' was not serializable and has no concrete serializable subtypes

2009-03-18 Thread Dhruv Patel
i am exploring GWT. i am writing one application allows server directory browsing using GWT. but i am getting error [ERROR] Type 'com.gwt.client.FileDetail' was not serializable and has no concrete serializable subtypes even though my class com.gwt.client.FileDetail implements Serializable

WEB-INF in hosted mode

2009-03-18 Thread Tarquin
Hi All This is my first post, so please go easy on me! I have checked the archives, but I couldn't find anything that seemed to answer my questions. I'm integrating GWT with Spring using a proxy class that derives from RemoteServiceServlet and gets the Spring Application context as follows:

GWT 1.4 + Flex

2009-03-18 Thread venkat kamath
Hi, we are currently using GWT 1.4. is there a good plugin to integrate Flex into GWT? i tried using gwt2swf but it needs GWT 1.5. Any help is really appreciated. thanks in advance, Venkat --~--~-~--~~~---~--~~ You received this message because you are subscribed

[ERROR] Unable to load module entry point class com.

2009-03-18 Thread Harry
Getting this error please help :( [ERROR] Unable to load module entry point class com.myapplications.client.Notes (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (TypeError): '$wnd.Ext.StatusBar' is null or not an object number: -2146823281 description:

Re: JSNI / OpenLayers

2009-03-18 Thread Gilles
It is a little clearer now, couple of things were no correct in my code and it took a while to get everything a little more straight. I performed the following : click on an openLayers point to launch java function. It works like that : First, my native Js function largely inspired by Openlayers

GWT1.4 source code

2009-03-18 Thread kandanur
Hi could you please share the link, where i can download the full source code of GWT V1.4? tia prabhu --~--~-~--~~~---~--~~ 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: gwt-rpc + webservices hang glassfish 2.1

2009-03-18 Thread PeSc|O
I've got a sample crasher program. Is there a way to upload something on the group? On Mar 18, 4:26 pm, PeSc|O pes...@gmail.com wrote: On Mar 18, 3:20 pm, tetsuo tetsuomeis...@googlemail.com wrote: as i catch i right, the rpc-call is a different way to communicate, then webservice

How to determine if popup panel is visible or shown?

2009-03-18 Thread rjcarr
It seems as soon as I create a popup panel (PopupPanel) and call the isVisible() method it will return true, even before I add a widget to it and before I call show(). I can accept that it behaves differently from other widgets, but how then do I determine whether or not popup is visible

Re: gwt-rpc + webservices hang glassfish 2.1

2009-03-18 Thread tetsuo
you bedder consider the differences between a remote control and a webservice interface http://en.wikipedia.org/wiki/Webservice http://en.wikipedia.org/wiki/Remote_procedure_call the rpc is like the controller for your tv, the webservice is the like two tv´s communicating to each other. in

Re: Organizing CSS with GWT

2009-03-18 Thread Sumit Chandel
Hi Ice13ill, I'm glad you asked! We have a recent GWT blog post by Chris Klundt and Eric Wuebben who have given some great guidelines they've followed to build their own application, http://studyblue.com. You can check it out here:

Re: NumberFormat getCurrenyFormat()

2009-03-18 Thread fatjack1...@googlemail.com
Or at least change it to £2.57 instead of $? On Mar 17, 8:58 pm, fatjack1...@googlemail.com fatjack1...@googlemail.com wrote: Ok, The reason I wasparsing it back in was to convert it from a String to an integer. I think I have fixed part of the problem. My code now looks like this:

What happened to the incubator YouTube widget?

2009-03-18 Thread Transplant
A few months back there was a youtube widget in the GWT incubator. It seems to have vaporized. Does anyone know what happened to it or have pointers to the code? You can see a screen shot of the old widget here: http://www.gwtnow.com/2008/09/04/gwt-incubator-whats-in-it/ I'd think that a

Re: PDF version of the GWT Developer Guide -- any time soon?

2009-03-18 Thread El Mentecato Mayor
I seem to remember somebody from google mentioning in this forum about the doc reader being added Gears support (for off-line access), but couldn't find it... sure would be nice to have a PDF version as well though. On Mar 18, 10:19 am, Brian hibr...@gmail.com wrote: Yeah it is too bad it's not

Re: Returning Nested ArrayLists from RPC

2009-03-18 Thread erincarikan
Ok solved my own problem, with GWT 1.5, you don't need to use annotations. I realized that annotations were creating the warnings. Don't use annotations. On Mar 17, 5:15 pm, erincarikan erincari...@gmail.com wrote: Hi; Here's the situation: My Rpc prepares ArrayListA. A implements

Servlet ClassNotFoundException

2009-03-18 Thread vinnybozz
Hi, I've been following the GWT Tutorial @ http://code.google.com/webtoolkit/tutorials/1.5/RPC.html Using Eclipse, I created the project with all the necessary files. I created the 2 packages as explained: - StockWatcher.client - StockWatcher.server Now when I try to run this app in hosted

GWT VISUALIZATION GEOMAP MARKER ERROR

2009-03-18 Thread bond
Hi, I've a problem using google visualization. I've tried to make in GWT the example show here http://code.google.com/intl/it-IT/apis/visualization/documentation/gallery/geomap.html (section Markers Example). When I'm trying to draw the markers on the map, the google widget display this error

Re: GWT1.4 source code

2009-03-18 Thread Brian
I don't think the 1.4 source is available as a downloadable link anymore. But you can pull the source from subversion. From a command line: svn checkout http://google-web-toolkit.googlecode.com/svn/releases/1.4 release_1.4 Or you can browse the source online:

Announcing GWT 1.6 Release Candidate

2009-03-18 Thread Bruce Johnson
Good news! Google Web Toolkit 1.6 RC is ready for you to download and try out: http://code.google.com/p/google-web-toolkit/downloads/list?q=1.6.2 For background on what's new in GWT 1.6, please see the still-in-progress doc:

SerializationException when serialize a HashMap over RPC

2009-03-18 Thread Alejandro D. Garin
Hello, I can't serialize a HashMap and I don't understand why. Could you help me please? If I remove the following hashMap the RPC work just fine: private MapDayHourCoordenate,ListAppointment mapData = new HashMapDayHourCoordenate,ListAppointment(); *Tomcat error log:*

Re: SerializationException when serialize a HashMap over RPC

2009-03-18 Thread Vitali Lovich
The error message tells you exactly the reason: WeeklyAppointmentData is not serializable. Please refer to the serialization rules of GWT (essentially, your classes have to extends IsSerializable, all non-static, non-final, non-transient fields must be serializable you must provide a default

Re: SerializationException when serialize a HashMap over RPC

2009-03-18 Thread George Holler
The class WeeklyAppointmentData does not appear to implement IsSerializable. That's in the first line of the error stack trace. G --- On Wed, 3/18/09, Alejandro D. Garin aga...@gmail.com wrote: From: Alejandro D. Garin aga...@gmail.com Subject: SerializationException when serialize a

Re: SerializationException when serialize a HashMap over RPC

2009-03-18 Thread Vitali Lovich
That depends on the version of GWT he's using. As of 1.5 (or 1.4 - can't recall the exact version), Serializable is a synonym for IsSerializable On Wed, Mar 18, 2009 at 5:15 PM, George Holler georgehol...@yahoo.comwrote: The class WeeklyAppointmentData does not appear to implement

Re: SerializationException when serialize a HashMap over RPC

2009-03-18 Thread Vitali Lovich
I think I see it. List is not generally serializable. The recommendation I recall reading somewhere is to try to use super-classes as infrequently as possible because it makes the compiler's job more difficult - also, in this particular case, the GWT compiler is unable to determine the type to

Re: How to determine if popup panel is visible or shown?

2009-03-18 Thread Ziyod
There's an existing bug: http://code.google.com/p/google-web-toolkit/issues/detail?id=1665 On Mar 18, 9:12 am, rjcarr rjc...@gmail.com wrote: It seems as soon as I create a popup panel (PopupPanel) and call the isVisible() method it will return true, even before I add a widget to it and

JsArray.length giving error: HostedModeException: Expected primitive type int; actual value was undefined

2009-03-18 Thread Farrukh Najmi
I have the following code that processes a JavaScriptObject that is expected to be a JsArray: JavaScriptObject jso = ... JsArray jsa = jso.cast(); int cnt = jsa.length(); I am finding that if the JsArray has a single element then jsa.length() results in following

Re: What happened to the incubator YouTube widget?

2009-03-18 Thread Transplant
Ok I found the YouTubeViewer in the incubator, its just not listed in the widget documentation. It is in the incubator jar, and the API docs, there's just aren't any other docs or demos for it. It works well though - very cool. --~--~-~--~~~---~--~~ You received

Using existing java API

2009-03-18 Thread akros
Hi! I'm a newbie with Gwt and i've a problem: i have to import in my application some Java API that arent emulated by Gwt. I've read on the docs that i can add this line: super-source path=jre / to my project module so i've done it also importing the java classes i need in com/JOrariGwt/jre (

Re: Using existing java API

2009-03-18 Thread Ian Bambury
There's nothing you can do. GWT *emulates* Java, but only part of it. If it doesn't emulate some part of it, you can't use it. Not on the client. You can use what you like on the server. Ian http://examples.roughian.com 2009/3/19 akros marcocamp...@hotmail.com Hi! I'm a newbie with Gwt and

question about selected item in FastTree

2009-03-18 Thread newbie
Hi, By default, when user selects an item in the FastTree, the 'open/ close' symbol is not highlighted (only things on the right hand side of the symbol gets highlighted instead). I wonder if anyone know of a way to highlight the whole 'row' of the selected item including the 'close/open'

Invoke GWT entry point via custom JavaScript?

2009-03-18 Thread markmac
Hi All, I am currently trying to integrate GWT into my existing application, but Im having trouble doing that at the moment. Currently I have heaps of custom JavaScript that I will eventually migrate to GWT, but for now, I need to figure out how to add some custom GWT widgets into my page, but

RequestBuilder

2009-03-18 Thread maple...@gmail.com
How do I wait for the response is completed in another class? For example, I have a class called GetData public class GetData{ private String query; private String DEFAULT_URL = http://localhost/book.php;; String result = new String(); public GetData(String

Re: RequestBuilder

2009-03-18 Thread Vitali Lovich
Put the println in your async callback (or in a function called from your async callback). On Wed, Mar 18, 2009 at 11:31 PM, maple...@gmail.com maple...@gmail.comwrote: How do I wait for the response is completed in another class? For example, I have a class called GetData public class

Re: RequestBuilder

2009-03-18 Thread maple...@gmail.com
println has to be in another java file, so i cant put it in GetData.java --~--~-~--~~~---~--~~ 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: RequestBuilder

2009-03-18 Thread Ian Bambury
You can't send a request to a server in one line and expect it to have completed before you get to the second line. This will NEVER happen because JS is single-threaded and even if the request HAS returned, the callback will be queued to run later. If you order something from an internet web

Re: RequestBuilder

2009-03-18 Thread maple...@gmail.com
is there a way to force callback to be excuted before next line? --~--~-~--~~~---~--~~ 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: RequestBuilder

2009-03-18 Thread Ian Bambury
No. If you did that, the whole browser would lock up until the call returned. You *could* run a timer and keep checking if the call had returned, but there is no point since when the call has returned, the callback function can do the work. You need to move any logic that needs the requested

Re: RequestBuilder

2009-03-18 Thread Ian Bambury
If you go here http://examples.roughian.com/#Panels~Summary and click down the menu on the LH side, you'll see 'Contacting Server' for a moment or two - that kind of thing --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: RequestBuilder

2009-03-18 Thread Ian Bambury
The second time you click a menu item, you won't see the message because the loading only happens once for these pages --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: RequestBuilder

2009-03-18 Thread Ian Petersen
On Wed, Mar 18, 2009 at 9:38 PM, maple...@gmail.com maple...@gmail.com wrote: is there a way to force callback to be excuted before next line? Nope. See here: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/faca1575f306ba0f/3be719c021aa19bd One option is to define a new

Re: Clone() in GWT

2009-03-18 Thread Shajee Lawrence
clone is not supported as it returns an Object. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from

Gwt code where locales can be changed be dynamically

2009-03-18 Thread deeps
Hi, I am trying to design a code where locales can be changed both dynamically n statically within a calendar widget like datepicker. I would be grateful if any of u helped me in this. Thank u. Regards Deepthi --~--~-~--~~~---~--~~ You received this message

[gwt-contrib] [google-web-toolkit commit] r5039 - Tweaked script tag

2009-03-18 Thread codesite-noreply
Author: br...@google.com Date: Wed Mar 18 07:59:51 2009 New Revision: 5039 Modified: wiki/IdeasToExplore.wiki Log: Tweaked script tag Modified: wiki/IdeasToExplore.wiki == --- wiki/IdeasToExplore.wiki(original)

[gwt-contrib] Re: Please expose moveSelectionUp/Down methods in FastTree

2009-03-18 Thread Noam Wolf
Hi Cameron, Thanks for your feedback, would you mind adding an issue to our bug tracking site: http://code.google.com/p/google-web-toolkit-incubator/issues/entry thanks! Noam Wolf I Google - Engineering I nw...@google.com I 212.381.5861 On Tue, Mar 17, 2009 at 10:25 PM, Ray Ryan

[gwt-contrib] Re: Issue 633: FileUpload can't be disabled

2009-03-18 Thread Ray Ryan
LGTM On Wed, Mar 18, 2009 at 10:21 AM, John LaBanca jlaba...@google.com wrote: Attached is the updated patch with the test case included. Thanks, John LaBanca jlaba...@google.com On Wed, Mar 18, 2009 at 1:13 PM, rj...@google.com wrote: Looks good as soon as there is a parallel change

[gwt-contrib] gwt-dev-oophm project

2009-03-18 Thread Sam Gross
Hi John, The gwt-dev-oophm project doesn't immediately build in Eclipse 3.4.1. Changing the locationURI tag to a location tag in the .project file seems to fix the problem. This matches the tag used in the other .project files. I'm not familiar enough with Eclipse to know the significance of

[gwt-contrib] [google-web-toolkit commit] r5040 - Added setEnabled(boolean)/isEnabled() methods to FileUpload.java

2009-03-18 Thread codesite-noreply
Author: jlaba...@google.com Date: Wed Mar 18 10:47:55 2009 New Revision: 5040 Added: trunk/user/test/com/google/gwt/user/client/ui/FileUploadTest.java Modified: trunk/user/src/com/google/gwt/user/client/ui/FileUpload.java trunk/user/test/com/google/gwt/user/UISuite.java Log: Added

[gwt-contrib] [google-web-toolkit commit] r5042 - Fixes Jetty TreeLogging so that clearing the log doesn't prevent all subsequent requests ...

2009-03-18 Thread codesite-noreply
Author: sco...@google.com Date: Wed Mar 18 12:18:30 2009 New Revision: 5042 Modified: releases/1.6/dev/core/src/com/google/gwt/dev/HostedMode.java releases/1.6/dev/core/src/com/google/gwt/dev/shell/jetty/JettyLauncher.java Log: Fixes Jetty TreeLogging so that clearing the log doesn't

[gwt-contrib] [google-web-toolkit commit] r5041 - Fix 80-column line wrap.

2009-03-18 Thread codesite-noreply
Author: sco...@google.com Date: Wed Mar 18 11:45:11 2009 New Revision: 5041 Modified: releases/1.6/user/src/com/google/gwt/user/tools/README.txtsrc Log: Fix 80-column line wrap. Review by: ajr (desk) Modified: releases/1.6/user/src/com/google/gwt/user/tools/README.txtsrc

[gwt-contrib] Announcing GWT 1.6 Release Candidate

2009-03-18 Thread Bruce Johnson
Good news! Google Web Toolkit 1.6 RC is ready for you to download and try out: http://code.google.com/p/google-web-toolkit/downloads/list?q=1.6.2 For background on what's new in GWT 1.6, please see the still-in-progress doc:

[gwt-contrib] New members messages currently moderated to prevent spam

2009-03-18 Thread Sumit Chandel
Dear Contributors, Unfortunately, the GWT Contributors Group has been getting a lot of spam attacks as of late and most spam posts have been making it through. To fight against these spam attacks, we will be temporarily moderating messages posted by new members to the group. The GWT contributor

[gwt-contrib] [google-web-toolkit commit] r5043 - Fix sentinal file names for change branches.

2009-03-18 Thread codesite-noreply
Author: b...@google.com Date: Wed Mar 18 14:36:41 2009 New Revision: 5043 Modified: trunk/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java Log: Fix sentinal file names for change branches. Patch by: bobv Review by: scottb (per IM conversation, TBR) Modified:

[gwt-contrib] HashSet throwing incorrect exception possible compiler bug

2009-03-18 Thread Vitali Lovich
First major concern is that I got a ConcurrentModificationException when iterating over a HashSet - this exception is completely meaningless in the context of the browser (no threading). There's also not really any meaningful message in the stack trace: 00:20:24.446 [ERROR] Uncaught exception

[gwt-contrib] Re: HashSet throwing incorrect exception possible compiler bug

2009-03-18 Thread Ray Cromwell
On Wed, Mar 18, 2009 at 2:57 PM, Vitali Lovich vlov...@gmail.com wrote: First major concern is that I got a ConcurrentModificationException when iterating over a HashSet - this exception is completely meaningless in the context of the browser (no threading). There's also not really any

[gwt-contrib] Re: HashSet throwing incorrect exception possible compiler bug

2009-03-18 Thread Vitali Lovich
On Wed, Mar 18, 2009 at 6:10 PM, Ray Cromwell cromwell...@gmail.com wrote: On Wed, Mar 18, 2009 at 2:57 PM, Vitali Lovich vlov...@gmail.com wrote: First major concern is that I got a ConcurrentModificationException when iterating over a HashSet - this exception is completely meaningless in

[gwt-contrib] Re: HashSet throwing incorrect exception possible compiler bug

2009-03-18 Thread Ray Cromwell
On Wed, Mar 18, 2009 at 3:31 PM, Vitali Lovich vlov...@gmail.com wrote: Nope - still throws an exception. Nothing in the code example above modifies the hashset (I print a message when I register a listener, and I'm not getting that) - I'm going to verify this though (step through the first

[gwt-contrib] RR : Add RpcRequestBuilder to RemoteServiceProxy

2009-03-18 Thread BobV
The attached patch extracts a configuration API for use by RemoteServiceProxy. This semantic API allows developers to override RPC proxy behavior based on intent, rather than interpreting the status of a RequestBuilder after the fact. Diffstat: client/rpc/RpcRequestBuilder.java | 212

[gwt-contrib] Re: RR : Add RpcRequestBuilder to RemoteServiceProxy

2009-03-18 Thread Ray Cromwell
Awesome, this looks like it exactly fits the scenario I described in: http://timepedia.blogspot.com/2009/03/relaxing-constraints-on-gwtcreate.html with an OAuth-signing decorator. -Ray On Wed, Mar 18, 2009 at 3:44 PM, BobV b...@google.com wrote: The attached patch extracts a configuration API

[gwt-contrib] Re: HashSet throwing incorrect exception possible compiler bug

2009-03-18 Thread Vitali Lovich
Sorry - it was my fault. I tracked it down. Within the listener, I was unregistering it - stupid me. Thanks for your help Vitali On Wed, Mar 18, 2009 at 6:43 PM, Ray Cromwell cromwell...@gmail.com wrote: On Wed, Mar 18, 2009 at 3:31 PM, Vitali Lovich vlov...@gmail.com wrote: Nope -

[gwt-contrib] Re: HashSet throwing incorrect exception possible compiler bug

2009-03-18 Thread Ray Ryan
FWIW, the HandlerManager class introduced in 1.6 allows concurrent mods. Because really you're not so silly to want to do that. rjrjr On Wed, Mar 18, 2009 at 3:53 PM, Vitali Lovich vlov...@gmail.com wrote: Sorry - it was my fault.  I tracked it down.  Within the listener, I was unregistering

[gwt-contrib] Re: RpcRequestBuilder

2009-03-18 Thread Ray Cromwell
My only criticism of this design is that it only captures a part of the use cases where the transport mechanism needs override. That is, it helps in cases where one is making HTTP requests, and needs to modify HTTP request parameters or the body, but it leaves out the cases where one can't make

[gwt-contrib] Re: New StyleSheetLoader class

2009-03-18 Thread rjrjr
http://gwt-code-reviews.appspot.com/13802/diff/1/13 File samples/styleloader/src/com/google/gwt/sample/styleloader/client/StyleLoader.java (right): http://gwt-code-reviews.appspot.com/13802/diff/1/13#newcode34 Line 34: public class StyleLoader implements EntryPoint { Presuming we go straight to

[gwt-contrib] Re: [google-web-toolkit commit] r5043 - Fix sentinal file names for change branches.

2009-03-18 Thread Scott Blum
LGTM. 2009/3/18 codesite-nore...@google.com Author: b...@google.com Date: Wed Mar 18 14:36:41 2009 New Revision: 5043 Modified: trunk/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java Log: Fix sentinal file names for change branches. Patch by: bobv Review by:

[gwt-contrib] Re: RpcRequestBuilder

2009-03-18 Thread BobV
On Wed, Mar 18, 2009 at 7:44 PM, Ray Cromwell cromwell...@gmail.com wrote: My only criticism of this design is that it only captures a part of the use cases where the transport mechanism needs override. That is, it helps in cases where one is making HTTP requests, and needs to modify HTTP

[gwt-contrib] [google-web-toolkit commit] r5045 - Extracts a configuration API for use by RemoteServiceProxy.

2009-03-18 Thread codesite-noreply
Author: b...@google.com Date: Wed Mar 18 17:59:19 2009 New Revision: 5045 Added: trunk/user/src/com/google/gwt/user/client/rpc/RpcRequestBuilder.java (contents, props changed) Modified: trunk/user/src/com/google/gwt/user/client/rpc/ServiceDefTarget.java

[gwt-contrib] Re: HashSet throwing incorrect exception possible compiler bug

2009-03-18 Thread Vitali Lovich
It's actually not event listeners - it's just a simple messaging delivery system I wrote. I was more referring to me being stupid not stepping remembering that I had modified the map. I just saw ConcurrentModificationException, no obvious modification of the map within the iteration, and just

[gwt-contrib] Re: GWT-Incubator: ResizableWidgetCollection antipattern

2009-03-18 Thread John LaBanca
committed as r1576 Widgets that implement ResizableWidget now add themselves to the ResizableWidgetCollection in onLoad() and remove themselves in onUnload(). We don't require this (there is no assertion checking that the widget is attached), but our widgets use the correct pattern now. Thanks,

[gwt-contrib] Re: RpcRequestBuilder

2009-03-18 Thread Ray Cromwell
On Wed, Mar 18, 2009 at 6:11 PM, BobV b...@google.com wrote: On Wed, Mar 18, 2009 at 7:44 PM, Ray Cromwell cromwell...@gmail.com wrote: My only criticism of this design is that it only captures a part of the use cases where the transport mechanism needs override. That is, it helps in

[gwt-contrib] Re: New StyleSheetLoader class

2009-03-18 Thread knorton
http://gwt-code-reviews.appspot.com/13802/diff/1/3 File src/com/google/gwt/gen2/styleloader/client/StyleSheetLoader.java (right): http://gwt-code-reviews.appspot.com/13802/diff/1/3#newcode37 Line 37: * {...@link StyleSheetLoader} creates a reference element on the page that will be Forgive the

[gwt-contrib] Re: New StyleSheetLoader class

2009-03-18 Thread cromwellian
http://gwt-code-reviews.appspot.com/13802/diff/1/3 File src/com/google/gwt/gen2/styleloader/client/StyleSheetLoader.java (right): http://gwt-code-reviews.appspot.com/13802/diff/1/3#newcode110 Line 110: private static native HeadElement getHeadElement() On 2009/03/19 00:08:01, rjrjr wrote: If

[gwt-contrib] [google-web-toolkit commit] r5046 - Checkstyle cleanups.

2009-03-18 Thread codesite-noreply
Author: j...@google.com Date: Wed Mar 18 21:26:24 2009 New Revision: 5046 Modified: changes/jat/ihm/dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java changes/jat/ihm/dev/core/src/com/google/gwt/dev/GWTShell.java