when tried to run using ImmutableResourceBundle 'No source code is availabele ' error coms

2008-10-15 Thread sujee
hi experts, When I tried to add ImmutableResourceBundle and tried to run the example file i got error like ERROR] Line 27: No source code is available for type com.satmetrix.core.uifwk.swt.resourcebundle.SMXResourceBundle; did you forget to inherit a required module? The steps i did is as

when tried to run using ImmutableResourceBundle 'No source code is availabele ' error coms

2008-10-15 Thread zujee
hi experts, When I tried to add ImmutableResourceBundle and tried to run the example file i got error like ERROR] Line 27: No source code is available for type com.MyApp.resourcebundle.MyResourceBundle; did you forget to inherit a required module? The steps i did is as follows.. 1)

Re: How to use the applicationCreater on windows

2008-10-15 Thread darkflame
you have to use command prompt. Go Run from the start menu, type Command and hit enter. You then have to navigate to the right directory using Dos commands, and follow instructions from there. Alternatively, I like to have TweakAll installed so I can get a CommandPrompt Here option on my

Re: Norton 360 slows GWT app?

2008-10-15 Thread Martin Trummer
what exactly is slow? * the time it needs to load the app * the app itself during execution? On Oct 15, 4:32 am, makoki [EMAIL PROTECTED] wrote: Can't find an explanation about it and hope anyone can tell me something, using Norton 360 in a Windows Vista environment seems to be slowing down

Re: Ant tasks ZipException

2008-10-15 Thread Isaac Truett
I'm not sure that the classloader's type would be a reliable check. Is there a practical way of knowing if any given classloader would be compatible? Just giving up if you don't find one specific classloader would cause GWTCompiler to fail in any environment that replaced that classloader, even

Re: SuggestBox something wrong with style

2008-10-15 Thread walden
Yup, two things you can do: 1. Look at the Javadoc for the SuggestBox API and note the various .gwt-* css rules used by default to style the widget and start using them. 2. Your screenshot is of Hosted Mode. Run your application is Web Mode and use Firebug or equivalent to get down and dirty

Re: Your opinion sought: Jetty or Tomcat?

2008-10-15 Thread Scooter
I do extensive get development in Netbeans for GWT and very happy with the current setup minus increasing the maxmemory variable every time I restart Netbeans so I don't run out of memory when building the application. If I debug the project, I run in the GWT browser and can do incremental debug

Re: Client Side Exceptions

2008-10-15 Thread [EMAIL PROTECTED]
Sorry i forgot to mention this has always been a web mode issue for me. Hosted is fine Ive only really had this problem with runtime exceptions (although after having this problem twice i just catch Exception). I first found it when i had some code like this: private Widget o; public Object

Re: problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
I downloaded EXT 2.0.5 and i added it to my project Lothar Kimmeringer a écrit : [EMAIL PROTECTED] schrieb: this is the list of libraries i added to my project:gwt-dev- window.jar, gwt-user.jar, gwtext.jar.i don't know what javascript library you speak about.can you be more explicit

width and height attributes when replacing an Image URL

2008-10-15 Thread David E.
I was having problems with old images maintaing their width and height attributes when replaced with new images with the same url. i.e. the image at the url is replaced with a different image. Unfortunately, the option of changing the image file name to force new values for width and height was

Re: Your opinion sought: Jetty or Tomcat?

2008-10-15 Thread kozura
If it's faster, go for it, don't see how it can break hosted mode. If a substantial amount of the hosted start-up time is actually the server, one alternative might be to have a built-in way to start up the server portion separately, and let it stay running while iterating client code. I find

Re: Applet clent RPC to GWT RemoteServiceServlet

2008-10-15 Thread ialpert
Just an FYI. What we wound up doing is using Xstream and hibernate4gwt (to remove our cglib proxies) to convert our objects to xml and back on the applet side. This worked very well. On Oct 10, 12:35 pm, ialpert [EMAIL PROTECTED] wrote: My apologies for my own ignorance. I've been searching

caption panel css?

2008-10-15 Thread mwaschkowski
Hi, I don't see a reference to css in the caption panel, is this an oversight? I'm trying to apply css rules to the caption itself... Thanks, Mark --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Who are using jcifs for NTLM authentication

2008-10-15 Thread Niklas Derouche
Ok, I know a lot of people here are doing some form of authentication and some are doingNTLM because they reside within an enterprise framework that requires them to do so. After getting a bit tired of dealing with jcifs (and the reasonably large amounts of configuration one had to do to be able

Re: GWT Serialization problem !!!!

2008-10-15 Thread olivier nouguier
Hi You should call : RPC.decodeRequest(payload,this.remoteServiceClass, *this*); *this* being the remote servlet (SerializationPoliciyProvider) To resolve the serialization policy (That allow the GWT serialization of Serializable). If no SerializationPoliciyProvider or his the resolution fails

Re: GWT Serialization problem !!!!

2008-10-15 Thread olivier nouguier
Sorry for my poor expression... If no SerializationPoliciyProvider is given (your case) or if the resolution fails GWT DefaultPolicies (GWT 1.3) is applied and Object must be IsSerializable. On Wed, Oct 15, 2008 at 4:54 PM, olivier nouguier [EMAIL PROTECTED] wrote: Hi You should call :

Re: Two Panel With tree on the left side

2008-10-15 Thread eleni
Τhanks a lot! It worked like a charm!:) xxx On Sep 2, 4:16 pm, gregor [EMAIL PROTECTED] wrote: Hi Eleni, In the simplest possible form: a) Use a HorizontalPanel putting your tree in cell 0 and your message in cell 1 b) Have your main module class implement the TreeListener interface c)

URI encoding for custom servlets

2008-10-15 Thread Nikolay Samofatov
Hi, All! GWT 1.5.2/Windows. We are trying to implement servlets (e.g.: public class ExcelServlet extends HttpServlet) to serve generated Excel files for GWT applications. We pass certain parameters for servlet via URI encoding, e.g. link.append(a target=\_blank\ href=\./excelServlet?);

CSS not updating when using a remote debug server

2008-10-15 Thread AtSqUiGgS
I've got eclipse setup to use a remote server for debugging so I can make requests from the same server. When I was using the default tomcat debugger I was getting the error about not being on the same server. So I got that working and then I was trying to add some style so I changed the

example-shell.cmd starts without exception, but only html pure will be displayed

2008-10-15 Thread oxmon
I installed GWT 1.5.2 and all examples: DynaTable, Hello, I18N, JSON, ... started by calling DynaTable-shell.cmd, Hello-shell.cmd, ... appeared first time without any Problem. Later I changed something in my PC-Configuration, and all examples start, but the Output-Page will be displayed without

Re: Two Panel With tree on the left side

2008-10-15 Thread [EMAIL PROTECTED]
Thank you so much for your reply!:) I will test it right away!! Have a nice day!¨:) xxx On Sep 2, 4:16 pm, gregor [EMAIL PROTECTED] wrote: Hi Eleni, In the simplest possible form: a) Use a HorizontalPanel putting your tree in cell 0 and your message in cell 1 b) Have your main module

the code for closing gwt's host mode browser

2008-10-15 Thread [EMAIL PROTECTED]
i open child window by using native code var openedWindow = $wnd.open(url); and when i want to close it i use this code openedWindow.close(); but gwt's host mode browser don't close as i want is there any way to accomplish this ? thanks for any replys

Doubt in gwt-rpc

2008-10-15 Thread Smilers
Hi Iam newbie, i have a doubt in the gwt the rpc. I tried with the sample example, but i wont any errors, while running nothing is displayed... simple example for rpc.. and i have a doubt in http. can anyone guide me for the rpc and http process in gwt with clear and simple example code.

To retrieve path of link on which right click of mouse is applied.

2008-10-15 Thread Deepti
Hi, i'm new to GWT. I'm devoloping one application using GWT, i know Java. I just want to know that how to retreive path of link on which right click of mouse is applied so that we can perform various types of applications on it(such as open,delete,copy,paste etc.). I have tried all in-built

Re: Graphs in pdf file

2008-10-15 Thread Lothar Kimmeringer
sridhar schrieb: I have generated some graphs using gwt's GChart.jar.Now i want that graphs to be generated in pdf file.how can i do that pls help me. You can use FOP (you can download that from the Apache-Website) and create a PDF containing an image, e.g. a GIF. The GIF you have to create

Re: problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
this is the list of libraries i added to my project:gwt-dev- window.jar, gwt-user.jar, gwtext.jar.i don't know what javascript library you speak about.can you be more explicit please? Lothar Kimmeringer a écrit : [EMAIL PROTECTED] schrieb: description: '$wnd.Ext.StatusBar' a la valeur

GWT: using Frame: JavaScript-Error

2008-10-15 Thread Schimki86
I am using a Frame in a dialog. This frame shows an URL (http:// whatever). I get an error (translated from german in english by myself): the control may not receive the focus, because its invisible or is not activated or it does not focus permits. I think the reason is, that the frame is not

Re: Graphs in pdf file

2008-10-15 Thread Jason Essington
You'll want to generate pdf on the server side ... Have a look at iText, or JasperReports for PDF generation or Reporting solutions respectively. -jason On Oct 15, 2008, at 2:05 AM, sridhar wrote: Hi all, I have generated some graphs using gwt's GChart.jar.Now i want that graphs to

gwt tree: on hover underline the item

2008-10-15 Thread eleni
Hi all! I would like to do the following: I have a GWT tree. I want when the mouse is over a tree item this item turns its decoration/color to underline/red. I tried css, mouselisteners but nothing worked! Thanks in advance!:) --~--~-~--~~~---~--~~ You

Re: To retrieve path of link on which right click of mouse is applied.

2008-10-15 Thread kozura
I'm guessing you want to bring up your own menu with these operations when the user right clicks? Search the forum for context menu and you'll find plenty of information on how to do this. --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: -noserver 1.5 RPC Help

2008-10-15 Thread jos
Hi Christopher I had a tough time getting this to work at first too (using 1.5). One of the changes I made that I have not seen mentioned in this thread is that I had to change the service entry point to something different than what Bruce had in his initial post I had to use a full URL to my

Way to tag/add metadata to UIObjects?

2008-10-15 Thread Alex Rice
I am writing a multi-section form in GWT, that will be saved out to the server as JSON. I was wondering if there is any facility to tag form fields in GWT with a metadata, or just tag like a JSON key string, for instance. I looked the the Javadoc API but didn't see anything like this. Thanks in

Re: problem about the module entry point of my application

2008-10-15 Thread Lothar Kimmeringer
[EMAIL PROTECTED] schrieb: this is the list of libraries i added to my project:gwt-dev- window.jar, gwt-user.jar, gwtext.jar.i don't know what javascript library you speak about.can you be more explicit please? Cited from http://code.google.com/p/gwt-ext/ snip GWT-Ext ... uses GWT

Re: Ant tasks ZipException

2008-10-15 Thread walden
Isaac, Since the GWT compiler has specific needs pertaining to classloading, I think it's appropriate to try to manage the problem internal to the compiler. I have not looked at this in detail for a long time, so I was wondering if anybody on the list was more conversant with how this works.

missing myApp-compile.cmd

2008-10-15 Thread [EMAIL PROTECTED]
A very trivial question but where should this myApp-compile.cmd file be located and how and when is it generated. I cannot seem to find it anywhere :( Thanks, Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Displaying lists in a cell in a Flextable

2008-10-15 Thread walden
Inspect you page in Firebug (or whatever) and see how list-style-type attribute is set on your li elements? On Oct 15, 6:59 am, craige [EMAIL PROTECTED] wrote: Hi I am trying to insert some HTML into a cell in a Flextable which includes a list (ordered/ordered it makes no difference). I use

Re: problem about the module entry point of my application

2008-10-15 Thread Manik Chand
hi, you are extending window class, how do you manage to do that, Window has private constructor. so you can't extends it. kindly check it if it is same class as com.google.gwt.user.client.Window On Wed, Oct 15, 2008 at 2:37 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: this is the

How I solved font-size problem in new 1.5 CSS

2008-10-15 Thread Danny
I noticed that my font sizes did not respond to style sheet changes in GWT 1.5.2. My solution is to place the following entry in my style sheet: table td, select { font-size: inherit; } My explanation follows. I divide up my GWT home

Re: problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
this is the detail of this exception [ERROR] Unable to load module entry point class com.gwt.client.MyApplication (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (TypeError): '$wnd.Ext.StatusBar' a la valeur Null ou n'est pas un objet. number:

Re: when tried to run using ImmutableResourceBundle 'No source code is availabele ' error coms

2008-10-15 Thread zujee
The exception is showing like below.. Unable to load module entry point class com.satmetrix.core.uifwk.swt.client.WidgetTester (see associated exception for details) java.lang.RuntimeException: Deferred binding failed for 'com.MyApp.WidgetTester$Resources' (did you forget to inherit a required

Re: problem about the module entry point of my application

2008-10-15 Thread Lothar Kimmeringer
[EMAIL PROTECTED] schrieb: description: '$wnd.Ext.StatusBar' a la valeur Null ou n'est pas un objet. You're using GWT-Ext but you haven't added all the Javascript- libraries of the ext-project to the web-folder of your project. GWT-Ext is implemented as simple wrappers around the

Re: Norton 360 slows GWT app?

2008-10-15 Thread makoki
Thanks joe, Martin the app wasn't specially slow loading. It slowd down only on some actions, example: using incubator's gwt datepicker. Thx for your responses. Iago On 15 oct, 11:45, Joe Cole [EMAIL PROTECTED] wrote: We had huge issues with Norton at one installation. I think there is a

Re: Enter the Container

2008-10-15 Thread kozura
Dmitry, Ok, I see what you're trying to get at (across several threads and forums!), but let me suggest an alternative approach to trying to get another container class added to GWT. This seems to be meeting resistance - and rightly so, given the lightweight philosophy of GWT. Make the normal

Re: SuggestBox something wrong with style

2008-10-15 Thread Ian Bambury
3) Nick the css from here http://examples.roughian.com/#GWT/Input/SuggestBox Ian http://examples.roughian.com 2008/10/15 walden [EMAIL PROTECTED] Yup, two things you can do: 1. Look at the Javadoc for the SuggestBox API and note the various .gwt-* css rules used by default to style the

Re: Ant tasks ZipException

2008-10-15 Thread walden
Yeah, I lost a lot of time on this a year and a half ago when I was trying to revive someone's GWT compile ant task code which was apparently written for GWT 1.3 or earlier. I've forgotten the specifics now, but it has to do with the search order used by the different loaders (I think). Anyway,

Re: Client Side Exceptions

2008-10-15 Thread Lothar Kimmeringer
[EMAIL PROTECTED] schrieb: I am finding that often if i throw an exception in the client side then i have to catch it using catch (Exception ex) rather than catch (TheActualExceptionThrown ex). Is your own exception derived from SerializableException or directly from Exception. If it's the

[ERROR] Uncaught exception escaped java.lang.NumberFormatException: For input string: div class=gwt-HTML dragdrop-draggable dragdrop-handle1

2008-10-15 Thread Shi
Hi, I want to capture the contents of a widget as a string, and then subdivide this string and assign each subpart to a different variable. The first substring I would like to convert into long, but the following error appears: [ERROR] Uncaught exception escaped java.lang.NumberFormatException:

Re: problem about the module entry point of my application

2008-10-15 Thread Lothar Kimmeringer
[EMAIL PROTECTED] schrieb: i have this error:Unable to load module entry point class com.gwt.client.MyApplication (see associated exception for details) Can you explain me why i have this error and how do i resolve it? Depends on the exception being shown in the details. Regards, Lothar

Re: GWT Test

2008-10-15 Thread Sumit Chandel
Hi Fabio, We realized that our JUnit testing documentation was sorely lacking prior to 1.5, and so have included more details about writing test cases for GWT applications in our new GWT 1.5 documentation. You can check it out at the link below. GWT 1.5 Unit Testing docs:

Re: problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
hi Manik, window doesn't have a private constructor.It is window class of import com.gwtext.client.widgets.Window; Manik Chand a écrit : hi, you are extending window class, how do you manage to do that, Window has private constructor. so you can't extends it. kindly check it if it is same

Re: store data in temp file before saveing into database

2008-10-15 Thread avd
hello sir, i made five web pages using gwt for insert data into the database but i want to save data of all fields of five pages after showing all inserted values at another web page with a button save and after click at the save button the whole data is stored into the database.please

problem about the module entry point of my application

2008-10-15 Thread [EMAIL PROTECTED]
Hello everyone, i've built a gwt application and i've created a class for the login of user.This is the code of this class: package com.gwt.client; import com.gwtext.client.widgets.*; import com.gwtext.client.widgets.form.FieldSet; import com.gwtext.client.widgets.form.FormPanel; import

Re: missing myApp-compile.cmd

2008-10-15 Thread Charlie Collins
It's created in the same location as you use applicationCreator from, by default. http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideApplicationCreator That assumes you are using applicationCreator of course, but that is the normal way to have a

Re: SuggestBox something wrong with style

2008-10-15 Thread Ian Bambury
Mmm. Well, if you hadn't changed anything, then it would look the same. And it doesn't. So you have. And it's in the css. Posting your code doesn't help pin it down unless you were setting css in code. Check that the defauld css you are using is the same as the default css that they are using,

Re: Doubt in gwt-rpc

2008-10-15 Thread Charlie Collins
http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideRemoteProcedureCalls And, here is a simple example with code: http://gwt-maven.googlecode.com/svn/trunk/maven-googlewebtoolkit2-plugin/simplesample/src/main/java/com/totsp/sample/. Yes, that

Re: example-shell.cmd starts without exception, but only html pure will be displayed

2008-10-15 Thread Charlie Collins
Depends what you changed in your PC-Configuration - try setting the logLevel option in the shell script, before running it, to get verbose logging - that should help you figure out where things are going wrong, if the shell is starting.

Re: refreshing page after change meta

2008-10-15 Thread Sumit Chandel
Hi Eduardo, It seems like you made a little mistake in your gwt:property meta tag. The tag should read as follows: meta name=gwt:property content=locale=en_US To add another gwt:property meta tag for the pt_BR locale, you would also have to similarly add another meta tag that would look like

Parameter passing between host jsp and embedded gwt application

2008-10-15 Thread Kevek
Hello, I have recently begun updating a web page for my company to be a bit more 21st-century. I should state that I am new to Javascript, and gwt, and I am not any sort of html wizard though I know the basics. I have been looking for a way in which to pass parameters into the Java class that

Client Side Exceptions

2008-10-15 Thread [EMAIL PROTECTED]
I am finding that often if i throw an exception in the client side then i have to catch it using catch (Exception ex) rather than catch (TheActualExceptionThrown ex). Does anyone else have this issue as i havent seen any posts on the issue and it seems pretty annoying. Thanks, Steve

Re: Debugging support in compile mode?

2008-10-15 Thread JohnMudd
Ok, I gave it a try. I ran demo-shell -noserver and got a pop-up window with the following msg. The connection was refused when attempting to contact localhost:. Without the -noserver I get this. General Error: java.lang.NumberFormatException: For input string:

Re: Your opinion sought: Jetty or Tomcat?

2008-10-15 Thread walden
+1 well said. On Oct 14, 6:03 pm, Jason Essington [EMAIL PROTECTED] wrote: Since creating a usable server side configuration in the embedded   servlet container is all but impossible for anything but the simplest   projects, I think that the choice of embedded server is a non-issue. Since

Re: Debugging support in compile mode?

2008-10-15 Thread Isaac Truett
Is your server running and accepting connections on port ? If not, that would explain the connection being refused. On Wed, Oct 15, 2008 at 2:58 PM, JohnMudd [EMAIL PROTECTED] wrote: Ok, I gave it a try. I ran demo-shell -noserver and got a pop-up window with the following msg. The

Re: Unable to clone a local reference in a function being inlined

2008-10-15 Thread hofmanndavid
I went back to GWT 1.4 and it compiles perfectly hope anybody can still help my with this one it is horrible to work on java prior to version 5 On Oct 14, 12:16 pm, hofmanndavid [EMAIL PROTECTED] wrote: Sorry, I forgot to say the it perfectly works in hosted mode. But when compiling it

Re: -noserver 1.5 RPC Help

2008-10-15 Thread Christopher Venning
I didn't have to do that. The service path is set as /myService in both Module.gwt.xml and as the argument to @RemoteServiceRelativePath. I tried /myModule/myService, but got 404s stating that the server couldn't find /myModule/myModule/ myService. Some aspects of GWT seem to be

Re: default Font in IE7 is huge (GWT 1.5)

2008-10-15 Thread Alex Rice
Any my attempts to override the font-size in css are not working. --~--~-~--~~~---~--~~ 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

default Font in IE7 is huge (GWT 1.5)

2008-10-15 Thread Alex Rice
The default font in GWT appears fine in Safari and Firefox they render a reasonable size font, but it looks about 50% bigger in IE7. This was discussed in a thread back in July and no good solution was provided - basically it was required to override every single widget in your css to make it

Re: Parameter passing between host jsp and embedded gwt application

2008-10-15 Thread Kevek
I should note that when I say frameset FRAMEBORDER=0 BORDER=0 framespacing=0 frame SRC=/classpath/class.html name=ICV scrolling=yes noresize /frameset that the class refers to the HTML file generated by compiling the GWT application via the hosted browser or using the compile.cmd script

Re: refreshing page after change meta

2008-10-15 Thread Eduardo Cardoso
Oh yes, you are right Sumit. I just wrote wrong the tag on post. Anyway, thanks for the answer. My problem is more complicated. I need set this language on runtime without refresh the page. Do you know how i can do that? best regards Eduardo On Wed, Oct 15, 2008 at 4:29 PM, Sumit Chandel [EMAIL

Re: SuggestBox something wrong with style

2008-10-15 Thread Ian Bambury
...so... The jsp produces HTML and doesn't work properly, but if you use the generated HTML, then it does, right? Looking at the demo (which I didn't before...) it seems that the only missing things are the right and bottom border and the corners. And the text-box is grey. That would suggest

Good book on GWT 1.5

2008-10-15 Thread Joshua Partogi
Dear all, Could anyone recommend good book on GWT 1.5 please. :-) I'm having a rough time reading the docs. Thank you very much --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Specific instance of trying to use Deferred Binding

2008-10-15 Thread Kurposkano
I have a web app that currently uses only two GUI's with different sets of logic behind them, but we plan on adding more. I figured I would attempt some deferred binding to make this work. I have two interfaces: GUI and Logic, which are both implemented by my abstract classes AbstractGUI and

Re: EASYMOCK or JMOCK?

2008-10-15 Thread Sumit Chandel
Hi Arthur, You should be able to find the GWTMockUtilities class in your GWT 1.5 distribution, with the Javadoc for the class included in the source. For the moment, GWTMockUtilities can only be used with JUnit. There is a simple example explained in the Javadoc as well that should help you get

Import com.google.gdata.* doesn't work

2008-10-15 Thread Amit Dhingra
Hi, I am trying to develop an application around google calendar, for which I am trying to use gdata libraries. Now the import to the gdata libraries doesn't work, as in the GWT compiler reports errors. Thus I understand that probably GWT is not compatible with gdata. Am I right on this??? And any

Re: Parameter passing between host jsp and embedded gwt application

2008-10-15 Thread Daniel Kurka
Im using a dictionary to do the exakt same thing and it works very good even with large amounts of data. you simply have forgotten the closing in the dictionary variables. 2008/10/15 Kevek [EMAIL PROTECTED] Hello, I have recently begun updating a web page for my company to be a bit more

[gwt-contrib] Re: RR:JS collections

2008-10-15 Thread Emily Crutcher
The place we can run into trouble using the FastStringMap techniques is with IE6 when there are a lot of other JS objects, because of its less-then-optimal garbage collection algorithms. However, IE has the nice property it doesn't lie to you about the value of isOwnProperty(), so we can use an

[gwt-contrib] Re: RR: SOYC Correlation work

2008-10-15 Thread Lex Spoon
On Wed, Oct 15, 2008 at 2:47 AM, Katharina Probst [EMAIL PROTECTED]wrote: I would say yes to the equals and compareTo, but I wouldn't consider the hashCode a blocking issue (although it's the simplest fix...). The equals and compareTo have the potential to create information loss (for

[gwt-contrib] Re: releases/1.6 merge from trunk

2008-10-15 Thread Scott Blum
Well I'll be. Thanks for pointing that out. c3717 wasn't terribly important, so methinks I'll just remove it from the log message. Anyone have a serious problem with c3717http://code.google.com/p/google-web-toolkit/source/detail?r=3717not going into 1.6? On Wed, Oct 15, 2008 at 3:05 AM, Sam

[gwt-contrib] RR: patch for ConstantMap to use FastStringMap instead of HashMap

2008-10-15 Thread Amit Manjhi
Hi John, Please review the attached patch which fixes http://code.google.com/p/google-web-toolkit/issues/detail?id=2862 As per Scott's suggestion in the comments, I changed the implementation to use FastStringMap. Since FastStringMap is in a different package, I had to make the class public and

[gwt-contrib] Re: RR: patch for ConstantMap to use FastStringMap instead of HashMap

2008-10-15 Thread Scott Blum
What if we move FastStringMap into http://code.google.com/p/google-web-toolkit/source/browse/#svn/trunk/user/src/com/google/gwt/user/client/impl ? On Wed, Oct 15, 2008 at 11:00 AM, Emily Crutcher [EMAIL PROTECTED] wrote: I do not think we want to make FastStringMap public where it is, though

[gwt-contrib] Re: GWT branches\oophm fails with IndexOutOfBoundsException when reloading application

2008-10-15 Thread John Tamplin
On Wed, Oct 15, 2008 at 6:08 AM, gslender [EMAIL PROTECTED] wrote: I get the following stack dump when I reload an application. When using FF3, the first load works fine, but when I refresh I get the following stack dump (ModuleSpace.scrubStackTrace was commented out to get the extended

[gwt-contrib] Re: RR: patch for ConstantMap to use FastStringMap instead of HashMap

2008-10-15 Thread Emily Crutcher
If we rename it FastStringMapImpl at the same time that would work. The rename is useful because people using class-lookup to find gwt utility classes cannot fail to realize it is an impl class. Of course, what I really want is a public JsStringMap api, and so consider the fact that we are

[gwt-contrib] Re: Patch for TreeMap serialization

2008-10-15 Thread Bruce Johnson
Let's just make this patch available on the issue and not include this in 1.5.3. On Tue, Oct 14, 2008 at 8:06 PM, Amit Manjhi [EMAIL PROTECTED] wrote: Hi all, I have attached a patch for TreeMap Serialization. The patch has been reviewed by John Tamplin. Most of the code is similar to the

[gwt-contrib] Re: RR: patch for ConstantMap to use FastStringMap instead of HashMap

2008-10-15 Thread Bruce Johnson
Let's not do this in 1.5.3. On Wed, Oct 15, 2008 at 12:11 PM, Emily Crutcher [EMAIL PROTECTED] wrote: If we rename it FastStringMapImpl at the same time that would work. The rename is useful because people using class-lookup to find gwt utility classes cannot fail to realize it is an impl

[gwt-contrib] GWT branches\oophm fails with IndexOutOfBoundsException when reloading application

2008-10-15 Thread gslender
Hi, I get the following stack dump when I reload an application. When using FF3, the first load works fine, but when I refresh I get the following stack dump (ModuleSpace.scrubStackTrace was commented out to get the extended hosted mode dump). The following is the native code of

[gwt-contrib] RR : Proposed Linker API and XML format for SOYC data

2008-10-15 Thread BobV
The attached Java file shows a rough sketch of what the CompilationAnalysis API might look like. The basic idea is to map J(s)Nodes, SourceInfos, and Correlations onto a simplified API suitable for building reports from. The inner interfaces would likely be top-level types in a separate

[gwt-contrib] Re: Patch for TreeMap serialization

2008-10-15 Thread Scott Blum
Amit, this patch looks great. I saw a tiny bit of whitespace cheese in 1 or 2 files, but it's fine. On Wed, Oct 15, 2008 at 12:23 PM, Bruce Johnson [EMAIL PROTECTED] wrote: Let's just make this patch available on the issue and not include this in 1.5.3. I dunno, Bruce, I'm in favor of

[gwt-contrib] Re: RR: SOYC Correlation work

2008-10-15 Thread Lex Spoon
Cool! LGTU. -Lex --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Code Review: gwt-google-apis gears Add support for message types other than String()

2008-10-15 Thread Eric Ayers
On Tue, Oct 14, 2008 at 5:43 PM, Alex Rudnick [EMAIL PROTECTED] wrote: Hey Eric :) I'll take this one. LGTM, save the (formatting) comments below and a question about documentation. gears/test/com/google/gwt/gears/client/workerpool/WorkerPoolTest.java: 388: Should probably take out the

[gwt-contrib] Re: RR: SOYC Correlation work

2008-10-15 Thread BobV
On Wed, Oct 15, 2008 at 1:39 PM, Lex Spoon [EMAIL PROTECTED] wrote: Cool! LGTU. Committed at r3760. I'm going to follow up to this with a patch to pass in the caller of makeChild() and makeSynthetic() since findCaller() was removed. -- Bob Vawter Google Web Toolkit Team

[gwt-contrib] Re: Patch for TreeMap serialization

2008-10-15 Thread Bruce Johnson
@All: For context, we're shooting for a 1.5.3 this week, which is focused on fixing some problems with GWT RPC on Android. It will have a couple of other previously-agreed-upon bug fixes, too, but this TreeMap patch wasn't one of them. @Amit: Thank you for getting it done quickly, but in the

[gwt-contrib] Re: FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found

2008-10-15 Thread gslender
I'm going to start another thread - that way the title stays on topic. Cheers, Grant --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r3761 - branches/oophm/user/src/com/google/gwt/dom/client

2008-10-15 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Oct 15 11:31:32 2008 New Revision: 3761 Modified: branches/oophm/user/src/com/google/gwt/dom/client/Element.java Log: Merge in fix for failing tests from 1.5/trunk. Modified: branches/oophm/user/src/com/google/gwt/dom/client/Element.java

[gwt-contrib] RR 1.6: Snip a couple of redundant HasText declarations

2008-10-15 Thread Ray Ryan
Hey, Alex. This patch cleans up a couple of spots where we were unnecessarily declaring extends HasHTML, HasText (silly, since HasHTML itself extends HasText). It's intended for the 1.6 branch. M src/com/google/gwt/user/client/ui/DialogBox.java M

[gwt-contrib] Re: RR 1.6: Snip a couple of redundant HasText declarations

2008-10-15 Thread Alex Rudnick
LGTM! (although your formatting seems to have taken out a bunch of spaces inside comments, probably don't need to commit those...) On Wed, Oct 15, 2008 at 3:42 PM, Ray Ryan [EMAIL PROTECTED] wrote: Hey, Alex. This patch cleans up a couple of spots where we were unnecessarily declaring

[gwt-contrib] [google-web-toolkit commit] r3763 - in branches/oophm/user: src/com/google/gwt/user/client/rpc/impl src/com/google/gwt/user/s...

2008-10-15 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Oct 15 13:13:48 2008 New Revision: 3763 Modified: branches/oophm/user/src/com/google/gwt/user/client/rpc/impl/AbstractSerializationStream.java branches/oophm/user/src/com/google/gwt/user/client/rpc/impl/ClientSerializationStreamWriter.java

[gwt-contrib] Re: [gwt-team] Release Notes for review

2008-10-15 Thread John LaBanca
Added Scott's changes. Any more nitpicks or is it ready to commit? Can you Thanks, John LaBanca [EMAIL PROTECTED] On Tue, Oct 14, 2008 at 4:37 PM, Scott Blum [EMAIL PROTECTED] wrote: Just formatting nitpicks.1) All code needs to use the HTML for code. 2) Any code that refers to a method

[gwt-contrib] Code Review Request - disabled XMLTest.testParse() in the 1.5 branch

2008-10-15 Thread John LaBanca
John - Please do a code review on this patch that disables XMLTest.testParse(). It fails on Safari in web mode in the 1.5 branch, but it passes on all other configs. The files in the xml package in the 1.5 branch are identical to the files in the trunk. Thanks, John LaBanca [EMAIL PROTECTED]

[gwt-contrib] [google-web-toolkit commit] r3764 - in changes/spoon/runAsync/dev/core/src/com/google/gwt/dev/jjs: . ast impl

2008-10-15 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Oct 15 13:42:08 2008 New Revision: 3764 Added: changes/spoon/runAsync/dev/core/src/com/google/gwt/dev/jjs/impl/CodeSplitter.java (contents, props changed) changes/spoon/runAsync/dev/core/src/com/google/gwt/dev/jjs/impl/FragmentExtractor.java

[gwt-contrib] Re: data binding framework for GWT

2008-10-15 Thread Ian Petersen
Hi Ray, On Wed, Oct 8, 2008 at 6:24 PM, Ray Cromwell [EMAIL PROTECTED] wrote: Something struck me about the way you are approaching things, that is, letting the BoundField's return widgets. With the new HasData stuff being proposed, why not let the programmer create the widget, and bind the

[gwt-contrib] Re: Patch for TreeMap serialization

2008-10-15 Thread Amit Manjhi
Commited as r3765 to 1.6 On Wed, Oct 15, 2008 at 2:14 PM, Bruce Johnson [EMAIL PROTECTED] wrote: @All: For context, we're shooting for a 1.5.3 this week, which is focused on fixing some problems with GWT RPC on Android. It will have a couple of other previously-agreed-upon bug fixes, too, but

  1   2   >