integrate Gwt with Struts2

2008-11-13 Thread Syed Shahul
Hi All, i am using GWT just to display static contents in jsp page. can any one give idea that how to integrate GWT with Struts2. for instance i would like to get the data from Rich text box of GWT to struts2 action. Thanking you in advance --~--~-~--~~~---~--~~

Re: integrate Gwt with Struts2

2008-11-13 Thread ashutosh seth
Hi Syed Shahul May be this can help you http://code.google.com/p/rocket-gwt/wiki/HtmlTemplateFactory On Thu, Nov 13, 2008 at 4:52 PM, Syed Shahul [EMAIL PROTECTED]wrote: Hi All, i am using GWT just to display static contents in jsp page. can any one give idea that how to integrate GWT with

Re: integrate Gwt with Struts2

2008-11-13 Thread Tulio Ornelas
ashutosh seth interesting framework, have you used this framework in a real project? Sounds me great. 2008/11/13, ashutosh seth [EMAIL PROTECTED]: Hi Syed Shahul May be this can help you http://code.google.com/p/rocket-gwt/wiki/HtmlTemplateFactory On Thu, Nov 13, 2008 at 4:52 PM, Syed

Re: integrate Gwt with Struts2

2008-11-13 Thread ashutosh seth
Hi Syed Shahul Actully we r means my team today discuss same problem .so we r find this solution ..we r try use this framework today onwards On Thu, Nov 13, 2008 at 5:41 PM, Tulio Ornelas [EMAIL PROTECTED] wrote: ashutosh seth interesting framework, have you used this framework in a real

Re: Theming a custom widget

2008-11-13 Thread kilkenny
Hi Mansoor I don't quite understand what you are up to. What components does your custom-widget consist of? If you use things like buttons or checkboxes, they pick up the style from the standard theme. If you have panels and tables in your custom-widget you have to define the CSS rules yourself.

Re: Using Selenium for GWT tests.

2008-11-13 Thread Arthur Kalmenson
Hi Rex, Selenium is a web UI testing framework that you can integrate with JUnit or TestNG. From there you can do whatever database queries you want, but Selenium is specifically for testing the UI. -- Arthur Kalmenson On Mon, Nov 3, 2008 at 3:05 PM, rex [EMAIL PROTECTED] wrote: Hi, I am

Re: OffsetHeight of RootPanel

2008-11-13 Thread Litty Preeth
I found the solution... *private* *void* fillScreen() { *int* wd = RootPanel.*get*().getOffsetWidth(); *int* scrollWidth = RootPanel.*get* ().getElement().getScrollWidth(); *if* (scrollWidth wd) wd = scrollWidth; *int*

Re: JPA

2008-11-13 Thread Arthur Kalmenson
Just a tip darkAngel, use -noserver so you can still run hosted mode but it will use your own servlet container instead of the embedded Tomcat one. -- Arthur Kalmenson On Wed, Nov 12, 2008 at 2:24 AM, darkAngel [EMAIL PROTECTED] wrote: I have solved this problem by deploying the application

Performance in Internet Explorer

2008-11-13 Thread [EMAIL PROTECTED]
My coworkers are experiencing extreme performance problems with PopupPanels in Internet Explorer. In our application they are seeing 2-3 second delays for showing a panel with no animation. I have evaluated everything in my implementation and did convert something to ImageBundles but it did not

Re: integrate Gwt with Struts2

2008-11-13 Thread gregor
Hi Syed, If you want to leave your JSP that contains your GWT module and redirect to the next JSP page in your struts app using an action, I think you can do that using RequestBuilder to construct the appropriate .do call to the ActionServlet. If however you want to invoke just the

Re: css issues

2008-11-13 Thread Syed Shahul
Hi Shaffer, Thank you for your information, at last i solve that proplem. silly mistake, i just mention the height like 30 instead we have to mention it as 30px; Thanking you Syed Shahul On Nov 8, 3:05 pm, Syed Shahul [EMAIL PROTECTED] wrote: Hi All, i am using css for my links. it works

Re: How can I find address of the server?

2008-11-13 Thread Marian Jancar
Dobes wrote: Use GWT.getHostPageBaseURL() or GWT.getModuleBaseURL() to find the URL you came from. Simple string manipulations should get you everything else you need. Another option is Window.Location which tells you the current host, port, etc.. And ... read the manuals? This

Re: Works on compile and browse but not while compiling

2008-11-13 Thread Thomas Broyer
On 13 nov, 06:32, Ryan [EMAIL PROTECTED] wrote: I keep getting this error when I try to compile my gwt application. i.e. by using the app-compile.cmd command line option. Loading inherited module 'org.zenika.widget.DatePickerModule?'     ERROR? Unable to find 'org/zenika/widget/

What's the best way to override images/css in Chrome theme?

2008-11-13 Thread omsrobert
What's the best way to override images/css in Chrome theme? I'm looking to modify the DecoratedTabBar. --~--~-~--~~~---~--~~ 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: History.newItem not firing onHistoryChanged under IE :-/

2008-11-13 Thread Thomas Broyer
On 13 nov, 01:51, darkflame [EMAIL PROTECTED] wrote: Anyone got any other ideas? I'm getting an unhandled exception line 164. If the Javascript Debugger is right, it's an illegal argument error (number: -2147024809) and seems to be happening while parsing the search result's XML. It seems

Any free UI designer available for Eclipse?

2008-11-13 Thread Lonifasiko
Hi all, Following the GWT tutorial available on the web, I've noticed almost all widgets (for me they are web controls) are added and configured in the .java code by hand. I mean you must create an instance of a button, add it to a panel, and so on, doing it all by hand. Seeing this behaviour,

Re: Theming a custom widget

2008-11-13 Thread Riyaz Mansoor
Yes this is my problem. I've got panels that I am styling with css. I would like to detect what is currently selected/applied theme and apply appropriate styles to these panels so that there is a formatting consistency when the theme is changed to, say, Chrome. have panels and tables in your

Re: Interpreting stack traces from Firefox

2008-11-13 Thread kozura
Add the flag -style pretty to your GWT compile line, and you'll get javascript that has the full names of everything from your java code. Just be sure to remove this flag for deployment, as the javascript will be several times larger. On Nov 12, 9:41 pm, Dobes [EMAIL PROTECTED] wrote: When I

Re: OffsetHeight of RootPanel

2008-11-13 Thread Tulio Ornelas
Thanks for share Litty. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send email to

Re: Trouble Integrating single component page into existing j2ee application

2008-11-13 Thread Bliss
Thanks for your help- -- I have the source class included in my jar file- is that not enough? My jar has the myClass.java and myClass.gwt.xml in it? Any code outside of that, or which it doesn't have any source code for, will cause this error. On Nov 12, 11:29 pm, Dobes [EMAIL PROTECTED]

Re: gwittir with gwt1.5

2008-11-13 Thread Scott
That's good news! I wondered why the very valuable Goda-time library was hidden in a primarily UI library like Gwitter and treated like a second-class citizen (at least as far as documentation is concerned). Promoting this into its own project is definitely a move in the right direction. On Nov

Re: Using a common code both at client and server side

2008-11-13 Thread Jason Essington
Yes, by adding a gwt.xml file, you have basically created a module, but without an entry point defined the module cannot be compiled on its own, only inherited by other modules. -jason On Nov 12, 2008, at 9:15 PM, sriram wrote: Hi Jason, Thank you very much. Correct me if i am wrong.

HttpServlet with httpproxy (gridpanel)

2008-11-13 Thread Damien Gulluni
Hi everybody! I'm trying to retrieves jsonArray in my httpServlet under to use the remote paging of my gridPanel. I followed this exemples : http://www.17od.com/2008/07/24/how-to-create-a-remote-paging-listview-using-gwt-ext/ I almost have the same code. But when i build my grid, the servlet is

Dynamically loading javascript code

2008-11-13 Thread byhisdeeds
I have a GWT application where I want to display a list of urls, such that when the user will selects one of them I can load the contents of the url into my application. The contents will represent html code and javascript code. The html code I will use to display a form say, by setting the

Status of Incubator's Declarative UI?

2008-11-13 Thread JAWspeak
The Declarative UI from the google team would be great to have out here, even if it's in an unfinished state. I'm sure lots of open source developers would be happy to work on it and improve things. Is there a way to check it out?

migrating to GWT-EXT

2008-11-13 Thread Litty Preeth
Hi, I am using simple GWT in my current project. I wanted to use some GWT- EXT widgets also. Can anybody tell me if there is anything to take care of when integrating GWT-EXT also to a current GWT project? Are there any clashes which might occur? Thnx n Regards, Litty Preeth

Goda-Time

2008-11-13 Thread DataSurfer
Goda-Time, a GWT port of Joda-Time, has just been forked from gwittir. Goda-Time is looking for volunteers. http://code.google.com/p/goda-time/ http://joda-time.sourceforge.net/ http://code.google.com/p/gwittir/ http://groups.google.com/group/goda-time

Re: MenuBar always AutoOpen

2008-11-13 Thread GWTFan
Has anyone else observed the same behavior? I would like the MenuBar to open up only upon click and not automatically. Appreciate inputs. On Nov 12, 3:31 pm, GWTFan [EMAIL PROTECTED] wrote: I try to set AutoOpen of MenuBar to false assuming it would open only upon click. It does not seem to

Resizable Popup Panel or DialogBox

2008-11-13 Thread benw
Is anybody willing to share some example code for a resizable DialogBox or any kind of resizable panel? Thanks, -Ben --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

can GWT call MochiKit functions?

2008-11-13 Thread newbie
I have a backend written in python, and I want to use GWT as the front end. If I want to use MochiKit's LoadJSonDoc() to pass data between backend and front end, can I call MochiKit functions from GWT? How to integrate MochiKit into GWT? Thanks in advance for some hints. Lin

Re: MapWidget only partially rendering

2008-11-13 Thread VortexSurfer
We had the same problem, even when using a VerticalPanel as the container. In our case, the solution was to do things in this specific order: 1. Add the VerticalPanel to the DOM hierarchy; 2. Via a DeferredCommand, add the MapWidget to the VerticalPanel. In other words, the problem seems to

treeItem nodes dynamically creating

2008-11-13 Thread jake H
Hello , recently i m trying to create an application , which aims to design the whole tree of a json file. The default json file is given. after having it read it i create the first tree sample like root =A =B =C But children theirself is a link for another json request. According to current

Re: Problem displaying a ComboBox displayField inside a EditorGridPanel

2008-11-13 Thread mitaka
hi I've the same problem Have you found a solution ? On 6 nov, 17:42, OSXabi [EMAIL PROTECTED] wrote: Hello, I have a problem displaying a ComboBox displayField inside a EditorGridPanel. When I choose a ComboBox option it appears the setValueField associated key. Anyone knows about how I

Dynamic Layouting

2008-11-13 Thread dominik.zei...@gmail.com
Hey. I have a ColumnLayout Container with 2 FormPanels. One taking the left 50% of space and one taking the right 50%. When I now open the page with a width of 500px it all looks fine. However when I am now decreasing the width of the page that 2nd Column all of a sudden drops below the 1st

Re: migrating to GWT-EXT

2008-11-13 Thread Stan B
I currently am using GWT-Ext completely for my UI for my app. So far i have no major complaints. Some slight nuances with their layouts that juts take some twekaing but so far I have received all the reuslts i was looknig for On Nov 13, 5:34 pm, posta07 [EMAIL PROTECTED] wrote: Take a look at

Re: migrating to GWT-EXT

2008-11-13 Thread Roger Marin
After having finished with a fairly large project using GWT-EXT i would personally advise staying away from it, specially if you are a newbie with GWT. Why? * GWT-EXT's programming model != GWT's programming model. GWT-EXT is basically a JSNI wrapper for the ext-js API * Very slow performance

same-origin security restriction

2008-11-13 Thread Danny
Hi All, I finally got round to making my app run in 1.5 and all is looking good. However I often use hosted mode with remote data, which helps massively when debugging issues. I am using RequestBuilder. I'm getting a weird error in 1.5, if I switch back to 1.4 it works perfectly. I get the

Re: same-origin security restriction

2008-11-13 Thread Danny
Just thought I'd post an update... I downgraded from 1.5.3 to 1.5.2 and its now working so I guess this is a bug with 1.5.3. Regards, Danny On Nov 14, 12:40 am, Danny [EMAIL PROTECTED] wrote: Hi All, I finally got round to making my app run in 1.5 and all is looking good.  However I often

To avoid XSS,for String str=TextBox.getText(),show I escape this str?

2008-11-13 Thread Alex Luya
Or GWT hava already done it for me?For http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=Article_SecurityForGWTApplications.I am not sure I have fully understanded this article.Is it tell us except following case:

FileDownload using RequestBuilder

2008-11-13 Thread slash
Hi all, I am using requestbuilder to do a 'GET'. My server is lighttpd based with digest authentication. The problem is, in requestbuilder, by using the 'setHeaders' functions I can set corresponding authentication headers but even though complete reply comes (i.e the file - i checked this in

Re: Reading XML file from localhost

2008-11-13 Thread mives29
to greg, thank you for your insight on the matter. it's not that i want to force using a utility class, its just that, well, its a requirement for me (to use a utility class, since other fellow devs here in my team will use it) and i thought its more convenient. and on the matter of where to

Re: migrating to GWT-EXT

2008-11-13 Thread Litty Preeth
Hi All, Thank you soo much for all your response Actually I wanted to use the GWT-EXT mainly for Tree and Modal Popups. I wanted the tree popup menu and the gray out of the screen when modal popups are shown (LightBox effect). Is it worthy enough to use GWT-EXT for these? Regards, Litty

Re: migrating to GWT-EXT

2008-11-13 Thread Litty Preeth
Sorry... I didnt quite understand ur post. You mean you used EXT JS mask and unmask functions? - Litty On Fri, Nov 14, 2008 at 12:07 PM, yunhui song [EMAIL PROTECTED]wrote: Hi Litty, I just finished a project to implment LightBox affect. I use ext.mask() and ext.unmask(). In my apinion,

Re: migrating to GWT-EXT

2008-11-13 Thread yunhui song
Ext.mask and Ext.unmask(), Ext is a GWT-EXT core class. You could find a working class in my project http://code.google.com/p/ppl-kit On Thu, Nov 13, 2008 at 10:49 PM, Litty Preeth [EMAIL PROTECTED]wrote: Sorry... I didnt quite understand ur post. You mean you used EXT JS mask and unmask

Forbid text editing by right mouse-button

2008-11-13 Thread Schimki86
Is it possible to forbid editing a TextBox with mouse (context menu on right click -- insert) or is the only way to use onChange listener to ckeck the field's text after editing for that what I want? --~--~-~--~~~---~--~~ You received this message because you are

Re: migrating to GWT-EXT

2008-11-13 Thread yunhui song
Hi Litty, I just finished a project to implment LightBox affect. I use ext.mask() and ext.unmask(). In my apinion, It's quite good. http://code.google.com/p/ppl-kit. I use gwt-ext and removed the extra files. It's only 40k and 4 support resource files. Hope that helps. Sammi On

Re: migrating to GWT-EXT

2008-11-13 Thread Litty Preeth
Yes Yes... Now I got it... I am just chckout ur ppl-kit project Thnx... On Fri, Nov 14, 2008 at 12:21 PM, yunhui song [EMAIL PROTECTED]wrote: Ext.mask and Ext.unmask(), Ext is a GWT-EXT core class. You could find a working class in my project http://code.google.com/p/ppl-kit On Thu,

Problem with JSNI call

2008-11-13 Thread Manish Kumar
Hi Thank all of you for providing continuos help and advice by this group. I am trying a call java method from javascript using JSNI. My code follows : ** Java code // exportStaticMethod is called on onModul;eLoad public static native void exportStaticMethod() /*-{ $wnd.invokeGWT =

[gwt-contrib] Re: Code Review: Example how to create a GWT based visualization.

2008-11-13 Thread Eric Ayers
Uwe, Sorry we aren't getting a lot of input here. I was thinking that we should just trying the xs linker with Chrome. If that works, then put it in the gwt.xml file with a comment that explains why it is there and commit this patch. Meanwhile, I'll try to corner someone on the SDK team. I

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4045.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4045. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4045 Score: Positive General Comment: Looks good to me. Respond to these comments at

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4043.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4043. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4043 Score: Positive General Comment: LGTM Respond to these comments at http://code.google.com/p/google-web-toolkit/source/detail?r=4043 -- You

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4042.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4042. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4042 Score: Positive General Comment: LGTM Respond to these comments at http://code.google.com/p/google-web-toolkit/source/detail?r=4042 -- You

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4044.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4044. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4044 Score: Positive General Comment: LGTM Respond to these comments at http://code.google.com/p/google-web-toolkit/source/detail?r=4044 -- You

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4040.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4040. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4040 Score: Positive General Comment: LGTM, and thanks for doing this one so I didn't have to! Respond to these comments at

[gwt-contrib] [google-web-toolkit commit] r4046 - in branches/1_6_clean_events/user: src/com/google/gwt/event/dom/client src/com/google/gwt...

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 08:31:02 2008 New Revision: 4046 Removed: branches/1_6_clean_events/user/src/com/google/gwt/event/shared/HandlerAdaptor.java Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/BlurEvent.java

[gwt-contrib] [google-web-toolkit commit] r4047 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 08:33:15 2008 New Revision: 4047 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/PopupPanel.java Log: Removed bas HasKeyCode reference. Modified:

[gwt-contrib] [google-web-toolkit commit] r4048 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 08:38:29 2008 New Revision: 4048 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/HTMLTable.java Log: Adding javadoc for cell and depricated table methods Modified:

[gwt-contrib] [google-web-toolkit commit] r4049 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 08:42:02 2008 New Revision: 4049 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/DialogBox.java Log: More javadoc tweaks, this time for DialogBox. Modified:

[gwt-contrib] [google-web-toolkit commit] r4050 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 08:47:31 2008 New Revision: 4050 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/DisclosurePanel.java Log: Adding javadoc Modified:

[gwt-contrib] [google-web-toolkit commit] r4053 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 08:52:43 2008 New Revision: 4053 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/FiresFormEvents.java Log: adding javadoc Modified:

[gwt-contrib] [google-web-toolkit commit] r4054 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 08:54:24 2008 New Revision: 4054 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/FiresSuggestionEvents.java Log: Javadoc tweaks. Modified:

[gwt-contrib] [google-web-toolkit commit] r4055 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 08:56:22 2008 New Revision: 4055 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/FormPanel.java Log: Javadoc tweaks. Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/FormPanel.java

[gwt-contrib] [google-web-toolkit commit] r4056 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 09:32:55 2008 New Revision: 4056 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/SourcesScrollEvents.java branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/SourcesTabEvents.java

[gwt-contrib] Commits Code Reviews

2008-11-13 Thread jay
As a lurker, I have to say I really like seeing the commit messages come across...it makes me feel like I can see what's coming down the pipe, and what I ought to be thinking about / getting ready to take advantage of. To save my time, though, I follow this group with Google Reader... I was

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4048.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4048. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4048 Score: Negative Line-by-line comments: File: /branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/HTMLTable.java (r4048)

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4030.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4030. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4030 Score: Negative General Comment: ping Respond to these comments at http://code.google.com/p/google-web-toolkit/source/detail?r=4030 -- You

[gwt-contrib] Re: Commits Code Reviews

2008-11-13 Thread Fred Sauer
Jay, You'll find a similar request among the comments of this (now closed/fixed) issue: http://code.google.com/p/support/issues/detail?id=190 Assuming you don't find an existing issue to star, you can add your request here: http://code.google.com/p/support/issues/list Fred Sauer [EMAIL

[gwt-contrib] [google-web-toolkit commit] r4058 - branches/1_6_clean_events/user/src/com/google/gwt/event/shared

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 12:07:43 2008 New Revision: 4058 Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/shared/HandlerManager.java Log: Removing JsHandlerRegistry while we do benchmarks in the background to determine if we need it. Modified:

[gwt-contrib] [google-web-toolkit commit] r4060 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 12:15:57 2008 New Revision: 4060 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/HTMLTable.java Log: Fixed type-o in javadoc Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/HTMLTable.java

[gwt-contrib] [google-web-toolkit] e...@google.com commented on revision r4048.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4048. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4048 General Comment: Fixed in 4060 Respond to these comments at http://code.google.com/p/google-web-toolkit/source/detail?r=4048 -- You received

[gwt-contrib] [google-web-toolkit commit] r4062 - branches/1_6_clean_events/user/src/com/google/gwt/event/logical/shared

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 12:30:57 2008 New Revision: 4062 Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/logical/shared/ValueChangeEvent.java Log: Made value final. Modified:

[gwt-contrib] [google-web-toolkit] e...@google.com commented on revision r4046.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4046. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4046 General Comment: Fixed in r4062 Respond to these comments at http://code.google.com/p/google-web-toolkit/source/detail?r=4046 -- You received

[gwt-contrib] [google-web-toolkit commit] r4061 - branches/1_6_clean_events/user/src/com/google/gwt/event/shared

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 12:29:04 2008 New Revision: 4061 Removed: branches/1_6_clean_events/user/src/com/google/gwt/event/shared/GwtEventUtil.java Log: Moving GwtEventUtil to museum, as we will figure out a different way to allow people, in general, to subclass

[gwt-contrib] [google-web-toolkit commit] r4063 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 12:41:10 2008 New Revision: 4063 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/TabBar.java Log: Explaining why getTab must be final. Modified:

[gwt-contrib] [google-web-toolkit commit] r4064 - branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 12:42:58 2008 New Revision: 4064 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/DialogBox.java Log: Making DialogBox final and adding explanations for why it is final. Modified:

[gwt-contrib] [google-web-toolkit commit] r4067 - branches/1_6_clean_events/reference/code-museum/src/com/google/gwt/mu seum/client/defaultm...

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 12:52:44 2008 New Revision: 4067 Modified: branches/1_6_clean_events/reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/VisualsForDialogBox.java Log: Using diffs to remove whitespace formmatting was NOT a success in last

[gwt-contrib] [google-web-toolkit commit] r4068 - branches/1_6_clean_events/user/src/com/google/gwt/event/logical/shared

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 13:13:26 2008 New Revision: 4068 Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/logical/shared/BeforeSelectionEvent.java Log: Removing final from isCanceled. Modified:

[gwt-contrib] Re: Turning off runtime checks

2008-11-13 Thread Miroslav Pokorny
This problem could be solved by introducing the ability to remove methods marked with a particular annotation when some option was enabled and have them eliminated accordingly. Imagine the ClassCastChecking and ArrayIndexChecking were done by two methods on some imaginary helper class used by the

[gwt-contrib] [google-web-toolkit commit] r4071 - branches/1_6_clean_events

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 17:14:57 2008 New Revision: 4071 Modified: branches/1_6_clean_events/branch-info.txt Log: update branchinfo.txt w/previous up-integrate change number Modified: branches/1_6_clean_events/branch-info.txt

[gwt-contrib] Re: review request: GwtTransient annotation

2008-11-13 Thread Bruce Johnson
Minor nit regarding the terminology, probably mostly just aesthetic on my part. GwtTransient doesn't sound that cool to me. Could we name it now to align with a more comprehensive effort later related to more developer control of RPC? For example, what if we called the annotation @NotSerializable.

[gwt-contrib] [google-web-toolkit commit] r4072 - branches/1_6_clean_events/user/src/com/google/gwt/event/shared

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 20:22:40 2008 New Revision: 4072 Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/shared/HandlerManager.java Log: As initial benchmarks are leaning towards the desire to include the more complicated handler registry, it seems

[gwt-contrib] [google-web-toolkit commit] r4076 - trunk/tools/api-checker/config

2008-11-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 13 21:11:40 2008 New Revision: 4076 Modified: trunk/tools/api-checker/config/gwt15_16userApi.conf Log: LinkedHashMap_CustomFieldSerializer.java was included twice when building the TypeOracle, one in user/super and the other in user/src. It seems

[gwt-contrib] [google-web-toolkit] kellegous commented on revision r4076.

2008-11-13 Thread codesite-noreply
[google-web-toolkit] kellegous commented on revision r4076. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4076 General Comment: Going back through changes since last review. Some more comments on GwtEvent. Line-by-line comments: File: