Re: My Maps Integration

2008-11-21 Thread Umberto
Hi Eric, I am actually using that binding for my project. However, I was unable to find any way to add to the map currently visualized, the layer created with the 'My Maps' tool. I thought something as addOverlay(URL) could exist, with URL poiting ad a user created map, but I was unable to find

Re: Questions about transforming a GWT application as an open social gadget

2008-11-21 Thread Laurent Bois
I saw my problem with inspector in Safari... Problem comes from the cache.html files displayed in iFrame , and loaded from the url http://sudoracegadget.googlecode.com/svn/trunk/ whereas the Gadget itself is running in an OpenSocial container with a different domain : - on iGoogle , URL being

Re: Sharing data between pre-existing data in a JSP and the GWT module

2008-11-21 Thread olivier nouguier
Hi Suri, Thanks for this tip ! But IMHO in your case I think that the problem is in the hosted page: Try replacing: var testVar = %= request.getAttribute(someValue) % by: var testVar = %= request.getAttribute(someValue) % Notice the quote ! Then the generate js will be: var testVar =

Problem in GWT 1.5

2008-11-21 Thread jamer
Hi Group! In GWT 1.5, when I create an HTML to add an image, this appears descuadrada me, that is, I do not appear in line with the text. If I create a HorizontalPanel with a TextBox and a picture, the TextBox and the image does not appear to me square, and if that aligns with the options of

Re: Serializable class not being compiled and added to serialization policies whitelist

2008-11-21 Thread Paul Robinson
Do you have a no-arg constructor? That's a requirement for GWT serialization (although it can be private) Flapjack wrote: I have several classes that are not being compiled and added to the serialization policies whitelist, however by examining the logs I don't see any information which

Re: GWT 1.5 demo - proxy issue

2008-11-21 Thread Miles T.
By the way, isn't gmail using GWT 1.5 ? I have no problem with GWT. On 22 oct, 03:57, jiangh [EMAIL PROTECTED] wrote: The point is no one tell me what exact firewall rules should be changed if   this problem can be resolved by this way On Oct 2, 5:33 pm, Greg Stasica [EMAIL PROTECTED] wrote:

Re: Fw: how to work with xs-linker in gwt

2008-11-21 Thread Manish Kumar
Hi, My need is like cross-site implementation. Actually I have an HTML which display two buttons.Please make a note here that this HTML(external) could not be included in GET component. On click of buttons , I wanted to call GET component. My approach is to call a java native method with

Re: load property file from a list of property files

2008-11-21 Thread Reinier Zwitserloot
Zujee, that's not how you solve this problem. Make the client download the properties from the server. Basically, have a simple servlet that takes one parameter and returns the appropriate properties, e.g. as a HashMap which you transfer via GWT- RPC. If you don't know what GWT-RPC is, its one

variable argument type in RPC service

2008-11-21 Thread Litty Preeth
Hi all, Anybody have any idea how to use variable length argument (like String...) in an RPC service. Coz the corresponding async service should have AsyncCallback as its last argument. But when we use variable type argument that should be the last argument of the method. Thanks, Litty Preeth

Widgets In A List Box

2008-11-21 Thread jagadesh
HI Guys, Iam Working on a requirement where i need to add Hyperlink to the Listbox item. can any one sort me out. thanks in advance. jagadesh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: MapWidget InfoWindow open ... no Content is shown

2008-11-21 Thread r3v3r3nd
hi eric, thanks a lot, it works pretty well with version 1.0.1 regards, chris --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Tree Issue?

2008-11-21 Thread Jose Santa Elena
Hi all.. When a presse Alt (todo do a Alt+tab) with my table selected, the selection changes to the first item. To solv this problem, I've tried create the tree like this: tree = new Tree(images) { protected boolean isKeyboardNavigationEnabled(TreeItem currentItem) { return false;

Is it a Tree Issue?

2008-11-21 Thread jsantaelena
Hi all.. When a presse Alt (todo do a Alt+tab) with my table selected, the selection changes to the first item. To solv this problem, I've tried create the tree like this: tree = new Tree(images) { protected boolean isKeyboardNavigationEnabled(TreeItem currentItem) { return false;

log4j in gwt environment with ibatis...

2008-11-21 Thread [EMAIL PROTECTED]
I searched the other posts in the group and didnt see a solution. Somebody said they got it to work but never posted the solution. I have -Dlog4j.debug=true -Dlog4j.configuration=... and my log4j.properties has log4j.rootCategory set to STDOUT and so is log4j.logger. I have commons-logging and

How to update PagingScrollTable?

2008-11-21 Thread DevUnion
Could anybody tell me how I can to update PagingScrollTable? From time to time data on the server is changed. Si, I want to use Timer to keep the table in actual state. I've tried something like this: new Timer() { public void run() { scrollTable.reloadPage();

Re: Easiest way to open a new window with some text in it?

2008-11-21 Thread darkflame
Thats still using the string by the URL though/get method, which limits the charecfters to about 100 :-/ Is it possible to do the same thing but not have the data in the url, so it could be picked up by the php's post variable instead? (which you can do with RequestBuilder by using new

Re: variable argument type in RPC service

2008-11-21 Thread Jason Morris
I would say: pass the data as an array, and wrap the RPC service on the client side: public void doSomething(Object param1, AsyncCallback callback, String... strings) { asyncClient.doSomething(param1, strings, callback); } If you really need varargs. Bare in mind the expense of

Socket connection

2008-11-21 Thread Pete Kay
Hi Does anyone know of any GWT lib that can do socket connection? Thanks alot in advance for your help. Pete --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re:how to work with xs-linker in gwt

2008-11-21 Thread Manish Kumar
Hi, My need is like cross-site implementation. Actually I have an HTML which display two buttons.Please make a note here that this HTML(external) could not be included in GET component. On click of buttons , I wanted to call GET component. My approach is to call a java native method with

Re: Socket connection

2008-11-21 Thread Jason Morris
The only types of connection available to JavaScript in HTTP/S, and then not with Streams of data (data is sent and received as Strings). Therefore GWT can't emulate a true Socket of any sort. If you describe your problem in more detail, perhaps someone can suggest a solution. Pete Kay

Re: Problem in redirecting to differnet page

2008-11-21 Thread rajasekhar
If you are not redirecting to a new page.When we refersh browser it is going to the home page.Let me know how to handle this. On Nov 20, 10:14 am, Litty Preeth [EMAIL PROTECTED] wrote: Why do u want to open a new window? You can create the Home UI using GWT and then add this to the RootPanel.

how to redirect to another EntryPoint class

2008-11-21 Thread rajasekhar
Hi All, how to redirect to another EntryPoint class in GWT.I have a login page (home page),after login it is coming to onSuccess function,but how to redirect to the another EntryPoint class.I am using Window.open(URL, _self, ) it is working in hosted mode and web mode and not

Re: Socket connection

2008-11-21 Thread Lothar Kimmeringer
Pete Kay schrieb: Does anyone know of any GWT lib that can do socket connection? Signed Java-Applets and the use of java.net.Socket Regards, Lothar --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: Popup Stealing focus

2008-11-21 Thread markmccall
There is a know bug in FireFox that might be causing this: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/5d3f2fa71e57c72e/972cb02ea8558632?lnk=gstq=firefox+cursor#972cb02ea8558632 http://code.google.com/p/google-web-toolkit/issues/detail?id=891 Hope this helps. Mark On

GWT Collapsible dialog box

2008-11-21 Thread David Hoffer
I need to show a GWT error dialog where I can set the title and error message but also need a lower portion where I can show a detailed error message. I want the lower portion to be collapsible via a button or something so that the user has the option to see it or not. Does something like this

Re: Sharing data between pre-existing data in a JSP and the GWT module

2008-11-21 Thread Suri
Aha. You're right too Olivier. Thanks for the tip. Tottally missed that. Appreciate it. On Nov 21, 3:55 am, olivier nouguier [EMAIL PROTECTED] wrote: Hi Suri,  Thanks for this tip !  But IMHO in your case I think that the problem is in the hosted page:  Try replacing: var testVar = %=

Re: GWT Collapsible dialog box

2008-11-21 Thread Isaac Truett
You a mean a DialogBox with a DisclosurePanel? On Fri, Nov 21, 2008 at 9:23 AM, David Hoffer [EMAIL PROTECTED] wrote: I need to show a GWT error dialog where I can set the title and error message but also need a lower portion where I can show a detailed error message. I want the lower

Re: GWT Collapsible dialog box

2008-11-21 Thread David Hoffer
Possibly, I'm not sure what a DisclosurePanel is. What I'm looking for is a DialogBox with a title, a main message in the dialog box, an OK button to close. But with the addition of a sub-panel or something under the main message that can optionally show another message. This would be

Re: GWT Collapsible dialog box

2008-11-21 Thread Isaac Truett
DialogBox and DisclosurePanel are both part of the standard GWT widget library. Everything you're asking for can be created as a simple composite of existing widgets. On Fri, Nov 21, 2008 at 9:34 AM, David Hoffer [EMAIL PROTECTED] wrote: Possibly, I'm not sure what a DisclosurePanel is. What

Re: GWT Collapsible dialog box

2008-11-21 Thread David Hoffer
Okay I will take a look at these. Just wondering is there an existing library that has already created composite widgets like this? -Dave On Fri, Nov 21, 2008 at 7:40 AM, Isaac Truett [EMAIL PROTECTED] wrote: DialogBox and DisclosurePanel are both part of the standard GWT widget library.

Re: My Maps Integration

2008-11-21 Thread Eric Ayers
You could try the Google-Maps-Api google group. http://groups.google.com/group/Google-Maps-API Search first, and please read their group guidelines before psoting. On Fri, Nov 21, 2008 at 3:11 AM, Umberto [EMAIL PROTECTED] wrote: Hi Eric, I am actually using that binding for my project.

TabPanel styling - gaps between tabs

2008-11-21 Thread Alex Reid
Firstly, apologies for the somewhat generic CSS question. However, I hope someone with a knowledge of the GWT tab panel will be able to help. I'm attempting to style the standard GWT tab panel to look the same as our existing tab panel. As the HTML is different, I cannot reuse the existing CSS.

Re: Socket connection

2008-11-21 Thread eric
Oh God ... unfortunatly we cannot do this in javascript . This is why a major part of the chat systems are based on flash or java applet . regards . Le vendredi 21 novembre 2008 à 21:30 +0800, Pete Kay a écrit : Hi Does anyone know of any GWT lib that can do socket connection? Thanks

GWT-Validation

2008-11-21 Thread kasp
je veux avoir un exemple d'utilisation du framewok gwt-validation avec les services RPC.y'a t'il quelqu'un qu'a jeter un coup d'oeil la dessus? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Styling specific part of a DockPanel?

2008-11-21 Thread HeideMeister
I'm using a DockPanel with a menu in DockPanel.WEST and the main content in DockPanel.CENTER. The width of the WEST and CENTER cells are set with something like myDockPanel.setCellWidth(menu, 20%); myDockPanel.setCellWidth(content, 80%); My problems start when i want to print a page - but

How to integrate morethan one Entry point classes in Single application in TONCAT.

2008-11-21 Thread [EMAIL PROTECTED]
Hi Dear Members, I have two entry point classes(LOGIN, HOME). First i open the LOGIN entry point class , enter the data , click submit button its going to the server side getting the data , after getting the Data how to forward to the HOME entry point class in TONCAT. Thanks in

Add tooltips to images in an ImageBundle!

2008-11-21 Thread ART
Hi, How can I add tooltips to images in an ImageBundle using only GWT.Some code snippets please. thanks, Anitha. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Rebind result 'suglasnost.client.UnosServiceAsync' must be a class

2008-11-21 Thread Veljko
I am writing my first GWT application and want to invoke RPC. I am getting error in compile batch: C:\hrvoje\workspaceRSA7\GWT-Test-WebUnosApp-compile.cmd Compiling module suglasnost.UnosApp [ERROR] Errors in 'file:/C:/hrvoje/workspaceRSA7/GWT-Test-Web/src/ suglasnost/client/UnosApp.java'

Re: Add tooltips to images in an ImageBundle!

2008-11-21 Thread [EMAIL PROTECTED]
private XYZImageBundle Images = (XYZImageBundle)GWT.create (XYZImageBundle.class); private Image logo= Images.XYZLogo().createImage(); logo.setTitle(Click here to return to main screen); Straight out of my code in production, XYZ substituted for the real three letter acronym. Also straight out

GWT Google Maps API - setImage Error

2008-11-21 Thread Pavel Byles
*Code* String markerUrl = http://maps.google.com/mapfiles/ms/micons/blue-dot.png;; Marker m = new Marker(..., ...); m.setImage(markerUrl)); // Error occurs here *Error* [ERROR] Uncaught exception escaped com.google.gwt.core.client.JavaScriptException: (TypeError): a has no properties fileName:

Re: [HELP] Problems with ZipFileDownload Servlet

2008-11-21 Thread Romeryto Lira
Hi, I have the same mistake previous after deployment on tomcat. When I commented the line that close ZipOutPutStream, the download of file don't ocurr correctly, the file is corrupted. I uncommented the line, but the previous error continue, the mime type of zip file is lost. How to resolve

Re: Socket connection

2008-11-21 Thread [EMAIL PROTECTED]
Well I guess you can look for a library with support for the WebSocket interface (orbited?) On Nov 21, 11:04 am, eric [EMAIL PROTECTED] wrote: Oh God ... unfortunatly we cannot do this in javascript . This is why a major part of the chat systems are based on flash or java applet . regards

Re: Easiest way to open a new window with some text in it?

2008-11-21 Thread darkflame
Just thinking outloud here...it could be done with a form right? Just hidden somewhere. dosnt seem very neat though. On Nov 21, 1:50 pm, darkflame [EMAIL PROTECTED] wrote: Thats still using the string by the URL though/get method, which limits the charecfters to about  100  :-/ Is it

Re: Focus-Issue with RichTextArea inside TabPanel

2008-11-21 Thread Adi
I have a similar issue, although I am not using Tab panel. My application creates (and removes) multiple RichTextAreas held in a combination of VerticalPanel and HorizontalPanel objects. Clicking once inside the RichTextArea works fine, the text is editable as usual. When another RichTextArea is

Themes and 1.6

2008-11-21 Thread Moe48
Hello fellow developers. I have been using GWT - Spring - SOAP - Hibernate on my current project and am really enjoying the ease of UI with GWT. I have done both Java Swing UI and straight LAMP web applications (with and without CMSs) in the past. I am getting to the point where I will be

Re: how to redirect to another EntryPoint class

2008-11-21 Thread Not Ken Shabby
Why would you want to do this? After login -in your onSucess() just replace your login component with you main application component and go from there, there is no need to 'redirect'. On Nov 21, 8:36 am, rajasekhar [EMAIL PROTECTED] wrote: Hi All,               how to redirect to another

Portal/Portlets - like gwt-ext but in pure gwt ...

2008-11-21 Thread cloudycity
I am needing to add a dashboard to our current gwt app: I would like to create something similar to gwt-ext's portal and portlets but in gwt only - we are moving away from gwt-ext for various reasons. It seems like a flex table of panels with drag and drop could be implemented but it would be

Re: Portal/Portlets - like gwt-ext but in pure gwt ...

2008-11-21 Thread Ian P. Christian
Did you see the SmartGWT posted to the list a couple of days ago? 2008/11/21 cloudycity [EMAIL PROTECTED]: I am needing to add a dashboard to our current gwt app: I would like to create something similar to gwt-ext's portal and portlets but in gwt only - we are moving away from gwt-ext for

RPC NumberFormatException on pipe (|)

2008-11-21 Thread Thad
I am getting a NumberFormatException on a GWT RPC call whenever a string parameter I pass includes a pipe symbol (|). I am attempting to pass a String value derived from a JSONObject.onString() call. A string like {foo:1|2} will fail, but {foo:1} will work. This happens in hosted or web mode.

Re: GWTTestCase and RemoteTestRunner use different port each time, triggering the Gears authentication dialog.

2008-11-21 Thread Eric Ayers
Add the '-port ' argument to the test run at port every time (fixed) e.g. -Dgwt.args=-port on the JVM arguments in Eclipse. On Thu, Nov 20, 2008 at 4:31 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, I have GWTTestCase tests that I run (for the moment) in Eclipse. I

Problems to create a project

2008-11-21 Thread Alfredo Cavalcanti Segundo
C:\gwt-windows-1.5.3projectCreator -eclipse Projeto -out Projeto Exception in thread main java.lang.UnsupportedClassVersionError: com/google/gwt/user/tools/ProjectCreator (Unsupported major.minor version 49.0) at java.lang.ClassLoader.defineClass0(Native Method) at

Re: SmartGWT 1.0 Released

2008-11-21 Thread Vinay
SmartGWT Showcase looks awesome. I think GWT-Ext will be out ;-) --~--~-~--~~~---~--~~ 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: Rebind result 'suglasnost.client.UnosServiceAsync' must be a class

2008-11-21 Thread Veljko
The problem was in main class, should be: public class UnosApp implements EntryPoint { public void onModuleLoad() { ... Object obj=GWT.create(UnosService.class); ... On 21 stu, 16:20, Veljko [EMAIL PROTECTED] wrote: Here is main class: public class UnosApp implements EntryPoint {

Re: Problems to create a project

2008-11-21 Thread Qian Qiao
On Fri, Nov 21, 2008 at 20:58, Alfredo Cavalcanti Segundo [EMAIL PROTECTED] wrote: C:\gwt-windows-1.5.3projectCreator -eclipse Projeto -out Projeto Exception in thread main java.lang.UnsupportedClassVersionError: com/google/gwt/user/tools/ProjectCreator (Unsupported major.minor version 49.0)

Re: Problems to create a project

2008-11-21 Thread Alfredo Cavalcanti Segundo
C:\java -version java version 1.3.1_01 Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01) Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode) On Fri, Nov 21, 2008 at 18:20, Qian Qiao [EMAIL PROTECTED] wrote: On Fri, Nov 21, 2008 at 20:58, Alfredo Cavalcanti Segundo [EMAIL

Re: Problems to create a project

2008-11-21 Thread Qian Qiao
On Fri, Nov 21, 2008 at 21:22, Alfredo Cavalcanti Segundo [EMAIL PROTECTED] wrote: C:\java -version java version 1.3.1_01 Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01) Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode) That's the problem then, you are using a 1.3.1

How do I get browser autocomplete on a login form

2008-11-21 Thread tieTYT
Hello, I'm trying to replicate browser autocomplete on a login form. For example, every time you go to the login page, I'd like the username and password field to be prepopulated with the username/password you used last. Not only that, but if you clear the username and double click the field,

Re: How do I get browser autocomplete on a login form

2008-11-21 Thread Reinier Zwitserloot
These features generally only work if the textbox and passwordbox are in the initial HTML. In GWT's normal modus operandi, the boxes are added dynamically by the javascript. The solution is to have the boxes in the static HTML file that bootstraps GWT (normally auto-generated by the

Re: How do I get browser autocomplete on a login form

2008-11-21 Thread tieTYT
I saw a faq that made the same recommendation. The problem is, I need to capture the onKeyUp and onClick events of the input's inside the form. I could only figure out how to bind to the form OR bind to its children. I couldn't figure out how to bind to both. GWT threw a variety of exceptions

Chrome Behavior on DOM tree is different for root node

2008-11-21 Thread Scooter
The following code is designed to take an element and clone what is below it(Deep) and then walk up the tree to preserve the path to the root of the tree. This code works as expected in IE, Firefox, Safari etc. In testing Chrome I get the non_object_property_call exception listed below the source

Reload Server Code

2008-11-21 Thread tomkins.g...@gmail.com
Hi, fairly new to GWT. Clicking Reload in the hosted browser works great, but is there a similar ability to automatically reload / refresh / recompile server-side code? It seems you are forced to shutdown the shell every time, even if the classes involved have been recompiled externally. This is

Re: Announcing GWT 1.5.3

2008-11-21 Thread jpnet
I would also like to see a -nosop option. We are developers, not children, and as such our development environment doesn't need to hold our hands. Please make this change. -JP On Oct 23, 6:47 am, Brian [EMAIL PROTECTED] wrote: Hi Sumit, Thanks for the replies.  Glad to know that about

Page navigation in GWT

2008-11-21 Thread jonbutler88
Hi all I am new to GWT, though I have dabbled in C#/Java before so the language itself doesn't boggle me that much, but it seems some of the simpler concepts aren't sticking. Im pretty sure the answer to my question is so obvious, as I have not seen it answered in any of the tutorials on GWT on

Compiling in 1.5.3

2008-11-21 Thread slledru
I am trying to move my app from 1.4 to 1.5.3. I am using ant to build and am getting following warnings and would like to get rid of them. What am I doing wrong? I am using JDK1.6. [java] Scanning source for uses of the deprecated gwt.typeArgs javadoc annotation; please use Java

Re: Your opinion sought: Jetty or Tomcat?

2008-11-21 Thread Alex Epshteyn
Bruce, I might be too late in replying to this thread, but I want to phrase my objections to what you've proposed. A. Regarding Jetty: I think this will be a waste of time for everyone. Switching underlying servers is a no value added task (using Six Sigma vocabulary). 1). Many developers

Re: Page navigation in GWT

2008-11-21 Thread mikedshaf...@gmail.com
The GWT (actually Ajax) way to look at navigation is not going from one page to another, but rather staying on the same page and moving your content in and out. Take a look at most samples and you'll see something like public void onModuleLoad() { RootPanel.get().add(new

Re: Page navigation in GWT

2008-11-21 Thread jonbutler88
Ah I see, thats a very 'ajax' way of doing things. Thanks for the help :D On Nov 22, 12:22 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The GWT (actually Ajax) way to look at navigation is not going from one page to another, but rather staying on the same page and moving your content in

Re: same-origin security restriction

2008-11-21 Thread Sumit Chandel
Hi JP, The SOP violation has to do with browser restrictions rather than server-side technology such as J2EE. The browser itself enforces single origin policy, which is what prevents cross-site calls to external domains or different ports. The fact that hosted mode permitted calls to different

[gwt-contrib] Re: Use LazyPanel in showcase

2008-11-21 Thread Ray Ryan
Committed at r4146 On Thu, Nov 20, 2008 at 11:44 PM, [EMAIL PROTECTED] wrote: LGTM http://codereview.appspot.com/9656 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: When to use Serializbale / IsSerializable

2008-11-21 Thread John LaBanca
That's a good question, and I has to ask around myself. Here is the best explanation: In early versions of GWT, IsSerializable was the *only* way you could mark a class as serializable by the RPC subsystem. The theory was that Java's Serializable interface implied semantics that GWT simply

[gwt-contrib] [google-web-toolkit commit] r4147 - releases/1.6/dev/core/src/com/google/gwt/core/ext/linker/impl

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 07:28:31 2008 New Revision: 4147 Modified: releases/1.6/dev/core/src/com/google/gwt/core/ext/linker/impl/StandardCompilationResult.java Log: Typo fix. Modified:

[gwt-contrib] Re: When to use Serializbale / IsSerializable

2008-11-21 Thread dflorey
So is it an option to let IsSerializable extend the Serializable marker interface? On 21 Nov., 16:16, John LaBanca [EMAIL PROTECTED] wrote: That's a good question, and I has to ask around myself.  Here is the best explanation: In early versions of GWT, IsSerializable was the *only* way you

[gwt-contrib] Re: When to use Serializbale / IsSerializable

2008-11-21 Thread Freeland Abbott
Clever. I don't see any reason that'd be bad... anybody else? On Fri, Nov 21, 2008 at 10:38 AM, dflorey [EMAIL PROTECTED] wrote: So is it an option to let IsSerializable extend the Serializable marker interface? On 21 Nov., 16:16, John LaBanca [EMAIL PROTECTED] wrote: That's a good

[gwt-contrib] [google-web-toolkit commit] r4148 - in trunk: dev/core/src/com/google/gwt/core/ext/linker/impl dev/core/src/com/google/gwt/de...

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 07:53:38 2008 New Revision: 4148 Added: trunk/dev/core/src/com/google/gwt/dev/CompilePermsServer.java - copied unchanged from r4145, /releases/1.6/dev/core/src/com/google/gwt/dev/CompilePermsServer.java

[gwt-contrib] [google-web-toolkit commit] r4149 - releases/1.6

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 07:57:26 2008 New Revision: 4149 Modified: releases/1.6/branch-info.txt Log: Recording merge 1.6 - trunk. Modified: releases/1.6/branch-info.txt == ---

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

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

[gwt-contrib] [google-web-toolkit commit] r4150 - branches/1_6_datepicker/user/src/com/google/gwt/user/theme/standard/p ublic/gwt/standard

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 08:02:01 2008 New Revision: 4150 Modified: branches/1_6_datepicker/user/src/com/google/gwt/user/theme/standard/public/gwt/standard/standard.css Log: less subtle highlight doesn't conflict w/today mark--use khaki background instead of gray

[gwt-contrib] [google-web-toolkit commit] r4151 - branches/1_6_datepicker/reference/code-museum/src/com/google/gwt/muse um/client/defaultmuseum

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 08:17:54 2008 New Revision: 4151 Added: branches/1_6_datepicker/reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/VisualsForDatePicker.java - copied, changed from r4146,

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

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

[gwt-contrib] [google-web-toolkit commit] r4152 - branches/1_6_datepicker/reference/code-museum/src/com/google/gwt/museum

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 08:48:19 2008 New Revision: 4152 Modified: branches/1_6_datepicker/reference/code-museum/src/com/google/gwt/museum/SingleIssue.gwt.xml Log: Oops, broke this. Fixed now Modified:

[gwt-contrib] [google-web-toolkit commit] r4153 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 08:54:23 2008 New Revision: 4153 Modified: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/DateBox.java branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/DatePicker.java

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

2008-11-21 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4153. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4153 Score: Positive Respond to these comments at http://code.google.com/p/google-web-toolkit/source/detail?r=4153 -- You received this message

[gwt-contrib] RR: runAsync for static fields

2008-11-21 Thread Lex Spoon
Hey, Bob, I hope your trip back was pleasant. Can you review this patch for me? What it does is do a better job with static fields. This was spurred by a bug that occurs for static fields initialized to strings. While fixing that, it was just as easy to improve static fields in general. Static

[gwt-contrib] [google-web-toolkit commit] r4154 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 09:12:50 2008 New Revision: 4154 Modified: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/DatePicker.java Log: reversed method order so date is always last field in preperation of adding Date... arguments Modified:

[gwt-contrib] Re: auto-deploy GWT on maven repo ?

2008-11-21 Thread Jason Essington
but with OOPHM in 1.6, that is no longer necessary is it? On Nov 20, 2008, at 3:20 PM, Scott Blum wrote: Funny you should mention this.. we had a crazy plan once to embed the native libs into gwt-dev.jar, and at startup install them into the temp directory and then load them, with delete

[gwt-contrib] [google-web-toolkit commit] r4155 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 09:26:43 2008 New Revision: 4155 Modified: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/CalendarView.java branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/DatePicker.java

[gwt-contrib] [google-web-toolkit commit] r4156 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 09:32:58 2008 New Revision: 4156 Modified: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/CalendarView.java Log: Fixing CalendarView formatting caused by eclipse refactor Modified:

[gwt-contrib] Re: auto-deploy GWT on maven repo ?

2008-11-21 Thread nicolas.deloof
I was not aware OOPHM was planned for 1.6, but in such case only jars are required in maven repo. This will just require the maven plugin(s) to upgrade and detect gwt version = 1.6 Cheers, Nicolas On 21 nov, 18:19, Jason Essington [EMAIL PROTECTED] wrote: but with OOPHM in 1.6, that is no

[gwt-contrib] Re: auto-deploy GWT on maven repo ?

2008-11-21 Thread Ray Ryan
Oophm is not planned for 1.6 On Fri, Nov 21, 2008 at 12:35 PM, nicolas.deloof [EMAIL PROTECTED]wrote: I was not aware OOPHM was planned for 1.6, but in such case only jars are required in maven repo. This will just require the maven plugin(s) to upgrade and detect gwt version = 1.6 Cheers,

[gwt-contrib] Re: auto-deploy GWT on maven repo ?

2008-11-21 Thread Ray Cromwell
It would also require a patch to the maven plugin to allow it to download and install the OOPHM browser plugins, otherwise, the 'clean checkout test run' scenario won't work. So the plugins should be bundled as a separate artifact in the repo, downloadable via a maven plugin. A goal to launch a

[gwt-contrib] Re: auto-deploy GWT on maven repo ?

2008-11-21 Thread nicolas.deloof
On 21 nov, 18:40, Ray Cromwell [EMAIL PROTECTED] wrote: It would also require a patch to the maven plugin to allow it to download and install the OOPHM browser plugins, otherwise, the 'clean checkout test run' scenario won't work. So the plugins should be bundled as a separate artifact in

[gwt-contrib] Re: auto-deploy GWT on maven repo ?

2008-11-21 Thread John Tamplin
On Fri, Nov 21, 2008 at 12:40 PM, Ray Cromwell [EMAIL PROTECTED]wrote: It would also require a patch to the maven plugin to allow it to download and install the OOPHM browser plugins, otherwise, the 'clean checkout test run' scenario won't work. So the plugins should be bundled as a separate

[gwt-contrib] [google-web-toolkit commit] r4159 - branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 10:43:22 2008 New Revision: 4159 Modified: branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/CalendarView.java branches/1_6_datepicker/user/src/com/google/gwt/user/datepicker/client/DatePicker.java

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

2008-11-21 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4159. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4159 Score: Negative General Comment: Think we should lose assertVisible(), not clear to me compiler can strip it. Will try to remember to check/fix

[gwt-contrib] [google-web-toolkit commit] r4160 - in javadoc/1.6: . com resources

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 10:57:01 2008 New Revision: 4160 Removed: javadoc/1.6/com/ javadoc/1.6/resources/ Modified: javadoc/1.6/allclasses-frame.html javadoc/1.6/allclasses-noframe.html javadoc/1.6/index-all.html javadoc/1.6/overview-tree.html Log:

[gwt-contrib] Re: CssResource question on nested styles

2008-11-21 Thread dflorey
It was me ;-) On 21 Nov., 20:03, dflorey [EMAIL PROTECTED] wrote: I'm currently struggeling to apply a simple rule (just an example) like the following using CssResource: .headerTable td {  font-size: 10px; } Before spending more time on this I'd like to know if the style name

[gwt-contrib] CssResource question on nested styles

2008-11-21 Thread dflorey
I'm currently struggeling to apply a simple rule (just an example) like the following using CssResource: .headerTable td { font-size: 10px; } Before spending more time on this I'd like to know if the style name obfuscating might be the reason why this is not working properly (or is it me??) ?

[gwt-contrib] Re: auto-deploy GWT on maven repo ?

2008-11-21 Thread Ray Cromwell
That's true. Correct me if I'm wrong, but for IE, it's just a matter of regsrv32 with the ocx. I remember in the old days, installing an FF plugin was as simple as copying a file. This is not really GWT specific, more for the gwt-maven guys, but it would be nice if the plugin could provision

[gwt-contrib] Re: auto-deploy GWT on maven repo ?

2008-11-21 Thread Jason Essington
No? I thought that was going to be the primary focus of 1.6 ... serves me right for thinking :-( -jason On Nov 21, 2008, at 10:36 AM, Ray Ryan wrote: Oophm is not planned for 1.6 On Fri, Nov 21, 2008 at 12:35 PM, nicolas.deloof [EMAIL PROTECTED] wrote: I was not aware OOPHM was

[gwt-contrib] [google-web-toolkit commit] r4162 - releases/1.6/dev/core/src/com/google/gwt/dev/javac

2008-11-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Fri Nov 21 13:35:42 2008 New Revision: 4162 Modified: releases/1.6/dev/core/src/com/google/gwt/dev/javac/CompilationState.java releases/1.6/dev/core/src/com/google/gwt/dev/javac/JdtCompiler.java

  1   2   >