Re: GWT + Palm WebOS

2009-11-09 Thread Olivier Gérardin
Actually, GWT apps seem to work quite well in the browser, just like any web application... You just need to be careful about the screen size. So if you don't need webOS native libraries, there are no specific settings for GWT, and your project can be a standard GWT project. Wrapping Mojo in

Re: Enter key on dialog close button results in enter key processed by other widget

2009-11-09 Thread Thomas Broyer
On Nov 7, 4:33 am, Open eSignForms yoz...@gmail.com wrote: I have a dialog box, with a close button that is given the focus so that hitting Enter results in it closing. That works fine.  In fact, it seems that the Enter actually results in a Click event, perhaps because it's a button

Re: Sending JavaScriptObject back to server

2009-11-09 Thread Thomas Broyer
On Nov 6, 7:25 pm, DaGreat chika...@gmail.com wrote: Hi,    I'm trying to send a JavaScriptObject back to the server. Is this possible to do? I first tried to send the String representation of my JSON Object to the server just to realize the JSONParser was usable on the client (browser)

Re: GWT-StockWatcher: German translation of parameterized messages appears as English

2009-11-09 Thread Dalla
You cheated ;-) In the tutorial, you create two separate properties files; StockWatcherConstants_de.properties and StockWatcherMessages_de.properties But you have only created StockWatcherConstants_de.properties, and in there you put both your static and generalized strings. Try creating a

Re: PHP + GWT ????

2009-11-09 Thread ben fenster
thank u very much i managed to use -noserver and it works great how the hell can gwt debug the js code running on another web server ?!??!? On Nov 8, 1:55 pm, ben fenster fenster@gmail.com wrote: pls help i cant use hosted mode even after installing apache setting the directory to my war

Re: MyClass is not a generic type; only generic types can be parameterized

2009-11-09 Thread Martin Trummer
just a guess: maybe somewhere else in the code you use MyClassSomething someVar; On Nov 6, 10:19 am, dinosaurus dinosau...@inbox.lv wrote: Hello, I have the following class which has not methods at all: public class MyClass extends LinkedListMyAnotherClass { } In GWT console and during

Re: Resize image

2009-11-09 Thread Martin Trummer
yes, that's a good idea I use this aproach too when the user uploads an image I create a small thumbnail version I also store the image dimensions. wehn I then need to display an image on the clientside, I will get the imagename and the dimensions from the RPC call and then let the client side

Gwt 2.0 trunk and Eclipse

2009-11-09 Thread mfiandesio
Hi to all, I would like to test new gwt 2.0 features so i downloaded the trunk and compiled it without any problems. I copied the source of the mail sample to see the UiBinder in action but when i try to run with Google Plugin (1.1.2) the console fires an unknown parameter style message. I tried

Re: How to insert static HTML content

2009-11-09 Thread gwtfanb0y
They extend 'com.google.gwt.user.client.ui.Composite'. getDisplay().asWidget()) is a method (in use with the MVP) which returns only the Widget: @Override public Widget asWidget() { return this; } I do not separate my views into different EntryPoints, just use them inside one

How to unescape a JSONString?

2009-11-09 Thread peterk
I'm having some trouble dealing with escaping and unescaping of Java strings for encoding in JSON. I use JSONString to encode a Java string and that seems to work ok. For example, newlines turn into \n, tabs turn into \t and so on. However, given this escaped sequence back, how to I turn this

Re: Enter key on dialog close button results in enter key processed by other widget

2009-11-09 Thread gwtfanb0y
Can you provide us the code where you assign the KeyListener to the button? This makes it easier to analyze the problem. On 7 Nov., 04:33, Open eSignForms yoz...@gmail.com wrote: I have a dialog box, with a close button that is given the focus so that hitting Enter results in it closing.

Re:

2009-11-09 Thread gwtfanb0y
You can read more about this there http://code.google.com/intl/de-DE/webtoolkit/gettingstarted.html#New On 8 Nov., 15:32, Jignesh Prajapati jig4phys...@gmail.com wrote: Hi all This is AryanDev m not so familiar wid eclipse i like to work in command line can any one give me idea how to

Re: Gwt 2.0 trunk and Eclipse

2009-11-09 Thread Thomas Broyer
On Nov 9, 11:45 am, mfiandesio matteo.fiande...@gmail.com wrote: Hi to all, I would like to test new gwt 2.0 features so i downloaded the trunk and compiled it without any problems. I copied the source of the mail sample to see the UiBinder in action but when i try to run with Google

Re: how to use a server class in client code

2009-11-09 Thread sathya
Hi, You can serialize classes only defined in client side(not server side).Class you defined on server side should be moved to client side to serialize. On Nov 9, 4:01 pm, DaveS dave.sell...@gmail.com wrote: That's how we did it originally, but then we created a separate GWT project

Re: Google Closure-library

2009-11-09 Thread DanielK
The Closure UI should be the new GWT widget set. --~--~-~--~~~---~--~~ 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

Re: How to RPC-serialize data manually on client?

2009-11-09 Thread Paul Robinson
You can achieve the same result a different way, but with two network calls. The first, a regular RPC call that uploads the data and returns some unique ID. The second is an HTTP call that goes to your non-GWT servlet and passes in the ID from the first call as a parameter, and the file is

UDP packets GWT

2009-11-09 Thread Andre Leger
Greetings, I know this is not a pure GWT question, but a related one. I have a web device that continuously sends UDP packets to a specific IP and port. I have a java application that is able to listen to the port and receive the packets. What I want to do is create an OpenSocial gadget in

Re: UDP packets GWT

2009-11-09 Thread Paul Robinson
Run your java app on a server somewhere that can receive the UDP packets, and then store them (in memory or in a database). GWT client connects to your server to get the data Andre Leger wrote: Greetings, I know this is not a pure GWT question, but a related one. I have a web device that

Re: UDP packets GWT

2009-11-09 Thread gwtfanb0y
If you want to use reverse ajax (or push ajax) i would recommend comet. On 9 Nov., 14:42, Andre Leger rareleg...@gmail.com wrote: Greetings, I know this is not a pure GWT question, but a related one. I have a web device that continuously sends UDP packets to a specific IP and port.  I have

Re: Gwt 2.0 trunk and Eclipse

2009-11-09 Thread misterln2
this is the same problem i reported in the google plugin for eclipse thread. the plugin automatically appends the -style parameter which is no longer supported by DevMode. my solution was to revert: trunk\dev\core\src\com\google\gwt\dev\DevMode.java

GWT 2 CssResource error

2009-11-09 Thread shahid
I have a GWT 1.7 application and I want to upgrade it to GWT 2 Milestone 2. The application uses 2 big external CSS files. In GWT 1.7 I had a public folder and put both the CSS files in the folder and my application compiled and worked fine. Now for GWT 2 I have created a ResourceBundle class and

Re: How to make scroll panel+flex table wrap text correctly?

2009-11-09 Thread chris
If anyone has any ideas on this, it would be greatly appreciated. On Nov 6, 8:23 am, chris ceb...@gmail.com wrote: I was wondering if anyone knew how to wrap text like several chat applications do. I have a ChatArea private class that I am trying to add to a widget. It works, however if a

Re: GWT 2 CssResource error

2009-11-09 Thread Thomas Broyer
On Nov 9, 4:13 pm, shahid shahidza...@gmail.com wrote: I have a GWT 1.7 application and I want to upgrade it to GWT 2 Milestone 2. The application uses 2 big external CSS files. In GWT 1.7 I had a public folder and put both the CSS files in the folder and my application compiled and worked

Re: GWT 2 CssResource error

2009-11-09 Thread shahid
Thank you Thomas. Putting @external next (left) to the style solved the problem :) regards shahid On Nov 9, 3:30 pm, Thomas Broyer t.bro...@gmail.com wrote: On Nov 9, 4:13 pm, shahid shahidza...@gmail.com wrote: I have a GWT 1.7 application and I want to upgrade it to GWT 2 Milestone 2.

Re: GWT 2 CssResource error

2009-11-09 Thread shahid
My css background images are not working though. May be there is a different way to use background images in GWT 2. On Nov 9, 3:42 pm, shahid shahidza...@gmail.com wrote: Thank you Thomas. Putting @external next (left) to the style solved the problem :) regards shahid On Nov 9, 3:30 pm,

Re: Does anyone worked with GWT connecting to Web Services in the server side?

2009-11-09 Thread doopa
Hi, I use tomcat to connect to a variety of webservices. Essentially it works as a client to them. I don't deploy to Google AppEngine though. But it does work if you control the server that you host the tomcat instance on. On Nov 8, 2:25 am, Sripathi Krishnan sripathi.krish...@gmail.com wrote:

GWT 2 External Css not working

2009-11-09 Thread shahid
I am using 2 external CSS stylesheets in my application but none of their styles apply anywhere when I load the app. The way I have set it up is as follows: I have placed the 2 CSS files in a folder named public at the same level as the gwt.xml file. In my gwt.xml, I have: inherits

Re: how to use a server class in client code

2009-11-09 Thread Sanjith Chungath
Thanks to all for your suggestions. As my application needs to be deployed in google app engine, I doubt whether I can move those classes from server to client. I use JDO to persist objects to the GAE data store. The class is a simple class and I have mentioned it below,

Re: How to make scroll panel+flex table wrap text correctly?

2009-11-09 Thread Christian López Espínola
On Mon, Nov 9, 2009 at 4:24 PM, chris ceb...@gmail.com wrote: If anyone has any ideas on this, it would be greatly appreciated. On Nov 6, 8:23 am, chris ceb...@gmail.com wrote: I was wondering if anyone knew how to wrap text like several chat applications do. I have a ChatArea private class

Re: how to use a server class in client code

2009-11-09 Thread Dalla
I´m not sure you can solve this particular problem the way DaveS suggested, not without modifying the class anyway. Even if you created a separate .jar and referenced that from your client project, the GWT compiler wouldn´t understand the annotations. My problem was similar to yours, and would

Re: PHP + GWT ????

2009-11-09 Thread Ian Bambury
Hi Ben, I've been away for a long weekend and only just got back. Is it working OK? Ian http://examples.roughian.com 2009/11/9 ben fenster fenster@gmail.com thank u very much i managed to use -noserver and it works great how the hell can gwt debug the js code running on another web

Re: GWT-StockWatcher: German translation of parameterized messages appears as English

2009-11-09 Thread Angel Marquez
voilà! Not only did that work it made sense. thank you! Do you know of any other GWT resources that pertain to say Audio and Video streams? regards. On Mon, Nov 9, 2009 at 1:48 AM, Dalla dalla_man...@hotmail.com wrote: You cheated ;-) In the tutorial, you create two separate properties

RequestBuilder returning empty argument result?

2009-11-09 Thread dk
Hi, This is about GWT 1.7.1 on a RedHat EL 5.4 system. I have been messing with GWT for a while now. I am not an expert and am really still a java newbie. I have the following code snippet in an application I am writing. There is an existing CGI app and I am replacing the GUI with GWT and

Difficulties deploying Gwt to Tomcat

2009-11-09 Thread Christian Goudreau
GWT Version : 2.0ms2 Tomcat Version : 6.0.20 Os Version : Mac Os 10.6.1 Eclipse Version : 3.5 64bits Everything is working when using hosted mode. When I try to deploy it with the manager in tomcat. I work, then when I try to start it, I got an error saying that the application failed to start.

Problem with memory of Form Panel

2009-11-09 Thread iaio81
Hi all, I've a sequence of Form Panel in a Window. At the end I close the window but if I click on the shortcuts GWT reopens it and I see the last form panel with field filled.How can i reset it? --~--~-~--~~~---~--~~ You received this message because you are

Re: How to insert static HTML content

2009-11-09 Thread Yozons Support on Gmail
On Mon, Nov 9, 2009 at 2:46 AM, gwtfanb0y siegfried.b...@googlemail.comwrote: They extend 'com.google.gwt.user.client.ui.Composite'. getDisplay().asWidget()) is a method (in use with the MVP) which returns only the Widget: @Override public Widget asWidget() { return this; }

Eclipse New Project Wizard

2009-11-09 Thread Thanks in Advance
Eclipse 3.5.1 with Google Plugin 1.1.2 (CAPS is not meant to shout but to point out Q's ;) 1.) File New (g+) Web Application Project enter ProjName and Package Finish 2.) Right click Project in Package Explorer Google Web Toolkit WHY THE OPTION TO CONVERT PROJECT INTO GWT PROJECT

Re: Getting Started

2009-11-09 Thread Thanks in Advance
Noob-ness showing through but I'm not sure what/where you mean the one class to rule them all model nor the RPC issue? Even reviewing Eric's post rather than mine, I still am lost -- suggestions/ clarification? --~--~-~--~~~---~--~~ You received this message

JGuard Authentication in GWT Application

2009-11-09 Thread Allahbaksh
Hi, Whether any one has done JGuard based authentication with GWT Application. Any pointers to the same are welcome. Warm Regards, Allahbaksh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: what should I do with

2009-11-09 Thread ftang
On Nov 8, 9:23 am, Thomas Broyer t.bro...@gmail.com wrote: On 7 nov, 05:57, ftang frankt...@gmail.com wrote: I want to make the GWT compiled js as one single js so I can delay loading after the page load GWT's *.nocache.js (with whichever built-inlinker) delays loading of the

How to capture function keys ?

2009-11-09 Thread hjo1620
I can't find function keys (F1 - F12) in KeyCodes.* Instead of: NativePreviewHandler handler = new NativePreviewHandler() { @Override public void onPreviewNativeEvent(NativePreviewEvent event) { if

Re: How to capture function keys ?

2009-11-09 Thread Jim Douglas
F1..F12 will probably return values of 112..123. But overall, JavaScript key events are...interesting. Read this warning as here there be dragons: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/event/dom/client/KeyEvent.html Base class for Key events. The native

Refreshing a history item/Redo a search

2009-11-09 Thread Jaap
Hi, I'm building an web app which does some searching. When ever I do a search on something I make a a new History Item by calling History.newItem(searchTerm). The History callback then does the searching. However if after the search the user clicks again on search nothing happens because the

Re: Gwt 2.0 trunk and Eclipse

2009-11-09 Thread mfiandesio
Yes misterln, I saw your post. Thanks all for your answers Matteo On Nov 9, 4:07 pm, misterln2 mister...@googlemail.com wrote: this is the same problem i reported in the google plugin for eclipse thread. the plugin automatically appends the -style parameter which is no longer supported by

collaped Panel

2009-11-09 Thread muhannad nasser
urgent help.. does anybody have build a collapsed panel in GWT pure GWT i need to build it as the Horizontal splitter, but i do not need it to be dragged, i need it only as a small button when click on it it will be opened and if click on it again it will be closed.. thanks --

[gwt-contrib] [google-web-toolkit] r6757 committed - Edited wiki page through web user interface.

2009-11-09 Thread codesite-noreply
Revision: 6757 Author: b...@google.com Date: Mon Nov 9 03:00:34 2009 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=6757 Modified: /wiki/StyleInjector.wiki === --- /wiki/StyleInjector.wiki

[gwt-contrib] Re: Invoking -runStyle RemoteWeb tests - help needed!

2009-11-09 Thread Bart Guijt
I found a bug related to opening Safari on Mac OS X in BrowserManagerServer - it opens the URL prefixed with the current path of my shell. Anyway, found a way to fix that (see patch at Issue #4209). Q: Is the Selenium route 'just another way' to run the tests on a browser? I found some

[gwt-contrib] Re: RR: Fixing FocusImpl

2009-11-09 Thread Thomas Broyer
On Nov 4, 7:28 pm, Joel Webber j...@google.com wrote: All, The code in FocusImplOld has been a great source of consternation for some time now. It's probably never going to be possible to fix every bug that crops up as a result of the ugly hidden input it creates, and I'm starting to

[gwt-contrib] Re: RR: Fixing FocusImpl

2009-11-09 Thread Ray Cromwell
Safari2 is so broken anyway, it's just not worth it. :) On Mon, Nov 9, 2009 at 3:24 AM, Thomas Broyer t.bro...@gmail.com wrote: On Nov 4, 7:28 pm, Joel Webber j...@google.com wrote: All, The code in FocusImplOld has been a great source of consternation for some time now. It's

[gwt-contrib] Re: Trace that auto detects the calling class/method.

2009-11-09 Thread stuckagain
Because I also want to include the linenumbers. I hope you are not proposing that I type these in as parameters as well ? ;-) David On Nov 6, 11:22 am, Miroslav Pokorny miroslav.poko...@gmail.com wrote: Why not just include the class.method name at the start of each and every message String

[gwt-contrib] [google-web-toolkit] r6759 committed - Fixes two bugs in SOYC dashboard:...

2009-11-09 Thread codesite-noreply
Revision: 6759 Author: kpro...@google.com Date: Mon Nov 9 06:20:12 2009 Log: Fixes two bugs in SOYC dashboard: 1. Initial download size and total download size were flipped 2. When there was one single split point, it wasn't displayed. Patch by: Sami Jaber (sami.ja...@gmail.com) Review by:

[gwt-contrib] Squelch ie6 popup iframe hack on ie7

2009-11-09 Thread jgw
LGTM. Thanks. http://gwt-code-reviews.appspot.com/97807/diff/3/1002 File user/src/com/google/gwt/user/client/ui/impl/PopupImplIE6.java (right): http://gwt-code-reviews.appspot.com/97807/diff/3/1002#newcode71 Line 71: private native void do_onHide(Element popup) /*-{ I know these are private,

[gwt-contrib] Re: RR: Fixing FocusImpl

2009-11-09 Thread Thomas Broyer
On Nov 9, 12:30 pm, Ray Cromwell cromwell...@gmail.com wrote: Safari2 is so broken anyway, it's just not worth it. :) The issue actually here is with Safari 3 (history, xmlhttprequest being limited to GET and POST, and probably a few other small things were Safari 2 only, but focus is

[gwt-contrib] Re: Squelch ie6 popup iframe hack on ie7

2009-11-09 Thread t . broyer
Sorry to jump in without having been invited but, given http://code.google.com/p/google-web-toolkit/issues/detail?id=805 (among others), shouldn't the iframe shim be extended to all browsers instead? (Closure-library seems to be doing just this; or actually, it moves the responsibility to the

[gwt-contrib] Re: Squelch ie6 popup iframe hack on ie7

2009-11-09 Thread jgw
On 2009/11/09 14:34:54, t.broyer wrote: Sorry to jump in without having been invited but, given http://code.google.com/p/google-web-toolkit/issues/detail?id=805 (among others), shouldn't the iframe shim be extended to all browsers instead? (Closure-library seems to be doing just this; or

[gwt-contrib] Re: Comment on StyleInjector in google-web-toolkit

2009-11-09 Thread codesite-noreply
Comment by natros: I was about to ask the same thing. For more information: http://code.google.com/p/google-web-toolkit/wiki/StyleInjector --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r6761 committed - Edited wiki page through web user interface.

2009-11-09 Thread codesite-noreply
Revision: 6761 Author: b...@google.com Date: Mon Nov 9 07:00:31 2009 Log: Edited wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=6761 Modified: /wiki/CssResource.wiki === --- /wiki/CssResource.wiki Wed

[gwt-contrib] Re: Squelch ie6 popup iframe hack on ie7

2009-11-09 Thread t . broyer
On 2009/11/09 14:49:12, jgw wrote: On 2009/11/09 14:34:54, t.broyer wrote: Sorry to jump in without having been invited but, given http://code.google.com/p/google-web-toolkit/issues/detail?id=805 (among others), shouldn't the iframe shim be extended to all browsers instead?

[gwt-contrib] Reusing CssResource's @def (within e.g. UiBinder)

2009-11-09 Thread Thomas Broyer
Hi all, We're starting using UiBinder quite intensively and one thing we haven't been able to do is to declare some constants in a CssResource and reuse them in our ui.xml (I believe this is unrelated to UiBinder actually, as I don't know how it could be made to work with plain old CssResources

[gwt-contrib] Re: Squelch ie6 popup iframe hack on ie7

2009-11-09 Thread stuckagain
I'm not a code reviewer... but just a useful comment: You might want to move the isIE6 method somewhere else so that you could avoid the memory leak on ie7/ie8 when using ImageBundles as well. For ie7 and ie8 this workaround to get transparent PNGs working is no longer needed and it's leaking a

[gwt-contrib] Re: Squelch ie6 popup iframe hack on ie7

2009-11-09 Thread Joel Webber
Agreed -- we're going to do precisely that. I think we'll probably end up sticking isIE6() in the image bundle code for the moment, as Bob has a better general solution in the pipeline (which he calls soft permutations). But yes, the image bundle insanity on IE6 is the more important of the two

[gwt-contrib] [google-web-toolkit] r6764 committed - Updated to reflect the merge of tr...@r6762 into this branch.

2009-11-09 Thread codesite-noreply
Revision: 6764 Author: rda...@google.com Date: Mon Nov 9 08:08:33 2009 Log: Updated to reflect the merge of tr...@r6762 into this branch. http://code.google.com/p/google-web-toolkit/source/detail?r=6764 Modified: /releases/2.0/branch-info.txt === ---

[gwt-contrib] Re: Invoking -runStyle RemoteWeb tests - help needed!

2009-11-09 Thread John LaBanca
Created Wiki Page: http://code.google.com/p/google-web-toolkit/wiki/RemoteTesting Thanks, John LaBanca jlaba...@google.com On Mon, Nov 9, 2009 at 6:21 AM, Bart Guijt bgu...@gmail.com wrote: I found a bug related to opening Safari on Mac OS X in BrowserManagerServer - it opens the URL

[gwt-contrib] Code Review Request: Make Server and Main TreeLoggers log to Console when using RemoteUI

2009-11-09 Thread rdayal
Reviewers: mmendez, jat, Description: When using the -remoteUI switch, the Main and Server loggers now log their output using a Console-Based TreeLogger (instead of sending these messages over the wire). Also made a change to OOPHMSessionHandler to allow the module logger to be used to log any

[gwt-contrib] Code Review Request: Make Server and Main TreeLoggers log to Console when using RemoteUI

2009-11-09 Thread rdayal
Reviewers: mmendez, jat, Description: When using the -remoteUI switch, the Main and Server loggers now log their output using a Console-Based TreeLogger (instead of sending these messages over the wire). Also made a change to OOPHMSessionHandler to allow the module logger to be used to log any

[gwt-contrib] Re: Code Review Request: Make Server and Main TreeLoggers log to Console when using RemoteUI

2009-11-09 Thread jat
LGTM http://gwt-code-reviews.appspot.com/98801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Code Review Request: Make Server and Main TreeLoggers log to Console when using RemoteUI

2009-11-09 Thread mmendez
LGTM - Just double check what state the system is in if you throw the IllegalStateExceptions. http://gwt-code-reviews.appspot.com/98801/diff/1/3 File dev/core/src/com/google/gwt/dev/shell/remoteui/RemoteUI.java (right): http://gwt-code-reviews.appspot.com/98801/diff/1/3#newcode119 Line 119:

[gwt-contrib] [google-web-toolkit] r6766 committed - Fix bad prefix in Message containing widgets with text bodies sectio...

2009-11-09 Thread codesite-noreply
Revision: 6766 Author: rj...@google.com Date: Mon Nov 9 09:16:02 2009 Log: Fix bad prefix in Message containing widgets with text bodies section http://code.google.com/p/google-web-toolkit/source/detail?r=6766 Modified: /wiki/UiBinderI18n.wiki === ---

[gwt-contrib] Re: Code Review Request: Make Server and Main TreeLoggers log to Console when using RemoteUI

2009-11-09 Thread rdayal
Thanks for the review! http://gwt-code-reviews.appspot.com/98801/diff/1/3 File dev/core/src/com/google/gwt/dev/shell/remoteui/RemoteUI.java (right): http://gwt-code-reviews.appspot.com/98801/diff/1/3#newcode119 Line 119: throw new IllegalStateException( On 2009/11/09 17:07:10, mmendez wrote:

[gwt-contrib] [google-web-toolkit] r6767 committed - When using the -remoteUI switch, the Main and Server loggers now log t...

2009-11-09 Thread codesite-noreply
Revision: 6767 Author: rda...@google.com Date: Mon Nov 9 09:33:19 2009 Log: When using the -remoteUI switch, the Main and Server loggers now log their output using a Console-Based TreeLogger (instead of sending these messages over the wire). Also made a change to OOPHMSessionHandler to allow

[gwt-contrib] [google-web-toolkit] r6768 committed - Merges tr...@r6767 into releases/2.0. Merge performed with the followi...

2009-11-09 Thread codesite-noreply
Revision: 6768 Author: rda...@google.com Date: Mon Nov 9 09:38:13 2009 Log: Merges tr...@r6767 into releases/2.0. Merge performed with the following command: svn merge --ignore-ancestry -c 6762 https://google-web-toolkit.googlecode.com/svn/trunk .

[gwt-contrib] Re: Code Review Request: Make Server and Main TreeLoggers log to Console when using RemoteUI

2009-11-09 Thread rdayal
Committed as tr...@r6767. Cherry-picked into releases/2...@r6768. http://gwt-code-reviews.appspot.com/98801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit] r6769 committed - Update branch-info.txt to reflect merge of tr...@r6767 into releases/2...

2009-11-09 Thread codesite-noreply
Revision: 6769 Author: rda...@google.com Date: Mon Nov 9 09:40:14 2009 Log: Update branch-info.txt to reflect merge of tr...@r6767 into releases/2.0. http://code.google.com/p/google-web-toolkit/source/detail?r=6769 Modified: /releases/2.0/branch-info.txt

[gwt-contrib] Re: Cleaning up mail sample, adding new styles, changing images to use @sprite.

2009-11-09 Thread rjrjr
I think that NavBar.java should be introduced rather than making it a static nested classs. Many indentation and style nits, do with them what you will. http://gwt-code-reviews.appspot.com/97805/diff/1/4 File samples/mail/src/com/google/gwt/sample/mail/client/AboutDialog.ui.xml (right):

[gwt-contrib] Re: Cleaning up mail sample, adding new styles, changing images to use @sprite.

2009-11-09 Thread rjrjr
LGTM with the above feedback. http://gwt-code-reviews.appspot.com/97805 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Looking for Incubator sponsor for MultiMonthDatePicker

2009-11-09 Thread Ray Ryan
Henry, thanks very much for the offer. However, we're in the process of phasing out Incubator. It's intentions are noble but the mechanism has proven unwieldy. We're instead encouraging people to create independent project sites on Google Code, or offer things as direct contributions to GWT

[gwt-contrib] Hello DialogBoxParser

2009-11-09 Thread bobv
LGTM, with nits. http://gwt-code-reviews.appspot.com/97806/diff/1001/56 File user/src/com/google/gwt/uibinder/rebind/XMLElement.java (right): http://gwt-code-reviews.appspot.com/97806/diff/1001/56#newcode50 Line 50: @SuppressWarnings(deprecation) This is a big class.

[gwt-contrib] [google-web-toolkit] r6770 committed - Cleaning up the mail sample, adding new styles, and moving most images...

2009-11-09 Thread codesite-noreply
Revision: 6770 Author: j...@google.com Date: Mon Nov 9 10:52:41 2009 Log: Cleaning up the mail sample, adding new styles, and moving most images into @sprite CssResource. Review: http://gwt-code-reviews.appspot.com/97805 http://code.google.com/p/google-web-toolkit/source/detail?r=6770 Added:

[gwt-contrib] Re: Cleaning up mail sample, adding new styles, changing images to use @sprite.

2009-11-09 Thread jgw
Committed to /trunk @r6770. Committed to /releases/2.0 @r6771. http://gwt-code-reviews.appspot.com/97805/diff/1/4 File samples/mail/src/com/google/gwt/sample/mail/client/AboutDialog.ui.xml (right): http://gwt-code-reviews.appspot.com/97805/diff/1/4#newcode13 Line 13: g:DockPanel On 2009/11/09

[gwt-contrib] [google-web-toolkit] r6771 committed - Merging /trunk c6770.

2009-11-09 Thread codesite-noreply
Revision: 6771 Author: j...@google.com Date: Mon Nov 9 11:00:52 2009 Log: Merging /trunk c6770. http://code.google.com/p/google-web-toolkit/source/detail?r=6771 Added: /releases/2.0/samples/mail/src/com/google/gwt/sample/mail/client/MailList.ui.xml

[gwt-contrib] Re: Running the development server in r6765: Unknown argument: -style

2009-11-09 Thread eighty
It seems that the ToolBase.processArgs() method receives the -style argument but the argHandlers map doesn't contain a mapping for it. This results in a null handler. Is the -style flag no longer supported? --~--~-~--~~~---~--~~

[gwt-contrib] Re: Running the development server in r6765: Unknown argument: -style

2009-11-09 Thread John Tamplin
On Mon, Nov 9, 2009 at 2:05 PM, eighty eightyste...@gmail.com wrote: It seems that the ToolBase.processArgs() method receives the -style argument but the argHandlers map doesn't contain a mapping for it. This results in a null handler. Is the -style flag no longer supported? Not on

[gwt-contrib] Re: Refactor test code and api-checker to remove dependencies on CompilationUnit

2009-11-09 Thread rjrjr
UiBinder changes LGTM http://gwt-code-reviews.appspot.com/97810 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Improve NumberFormat.format to avoid weird rounding issues

2009-11-09 Thread rice
Reviewers: bobv, Description: External issue 4171 points out that: NumberFormat.getFormat(#,##0.##).format(30.555) should yield 30.56 but yields 30.55 instead. This is due to the fact that the fractional part of 30.555 (computed as x - Math.floor(x)) formats as 0.554999... and adding 0.5

[gwt-contrib] Re: Squelch ie6 popup iframe hack on ie7

2009-11-09 Thread rjrjr
Reviewers: jgw, t.broyer, Message: Okay, we'll back off from this one. Please review this at http://gwt-code-reviews.appspot.com/97807 Affected files: M user/src/com/google/gwt/user/client/ui/impl/PopupImplIE6.java Index: user/src/com/google/gwt/user/client/ui/impl/PopupImplIE6.java

[gwt-contrib] [google-web-toolkit] r6772 committed - Remove an outdated reference to the compile/browse button...

2009-11-09 Thread codesite-noreply
Revision: 6772 Author: r...@google.com Date: Mon Nov 9 11:49:26 2009 Log: Remove an outdated reference to the compile/browse button Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=6772 Modified:

[gwt-contrib] Re: Squelch ie6 popup iframe hack on ie7

2009-11-09 Thread Joel Webber
And just to be clear, we recognize that it's a real problem, but I think it's going to take some time to work out how to shove the iframe shim in, in such a way that it doesn't break existing code (the IE6/7 implementation takes advantage of CSS expressions to keep the iframe positioned

[gwt-contrib] [google-web-toolkit] r6773 committed - Merge tr...@6772 into this branch...

2009-11-09 Thread codesite-noreply
Revision: 6773 Author: r...@google.com Date: Mon Nov 9 11:52:36 2009 Log: Merge tr...@6772 into this branch Remove an outdated reference to the compile/browse button svn merge --ignore-ancestry -c 6772 https://google-web-toolkit.googlecode.com/svn/trunk .

[gwt-contrib] Re: Trace that auto detects the calling class/method.

2009-11-09 Thread Miroslav Pokorny
Perhaps i would extrapolate on my proposal. The compiler could have an extra feature that went thru and found all log statements and added a String with the classname + method name on your behalf so... Class X void method(){ log( Hello); // } the log above would get modified to log(

[gwt-contrib] Re: Hello DialogBoxParser

2009-11-09 Thread rjrjr
Reviewers: bobv, Message: Nits addressed, committed tr...@6774, 2.0 soon. Description: DialogBox is weird--it implements both HasHTML and HasWidgets. This confuses the bejeebers out of UiBinder and leads it to generate bad code, so a custom parser is required. I took this excuse to generalize

[gwt-contrib] Re: Hello DialogBoxParser

2009-11-09 Thread rjrjr
http://gwt-code-reviews.appspot.com/97806/diff/1001/56 File user/src/com/google/gwt/uibinder/rebind/XMLElement.java (right): http://gwt-code-reviews.appspot.com/97806/diff/1001/56#newcode50 Line 50: @SuppressWarnings(deprecation) On 2009/11/09 18:33:27, bobv wrote: This is a big class. Done.

[gwt-contrib] [google-web-toolkit] r6775 committed - Update Chrome plugin naming, cleanup leftover garbage, commit object f...

2009-11-09 Thread codesite-noreply
Revision: 6775 Author: j...@google.com Date: Mon Nov 9 13:01:13 2009 Log: Update Chrome plugin naming, cleanup leftover garbage, commit object freeing code that was never committed. Patch by: jat Review by: rice (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=6775 Added:

[gwt-contrib] [google-web-toolkit] r6776 committed - Comment tweak

2009-11-09 Thread codesite-noreply
Revision: 6776 Author: rj...@google.com Date: Mon Nov 9 13:13:58 2009 Log: Comment tweak http://code.google.com/p/google-web-toolkit/source/detail?r=6776 Modified: /trunk/user/src/com/google/gwt/uibinder/resources/xhtml.ent === ---

[gwt-contrib] [google-web-toolkit] r6778 committed - Merges tr...@6774 into releases/2.0...

2009-11-09 Thread codesite-noreply
Revision: 6778 Author: rj...@google.com Date: Mon Nov 9 13:24:23 2009 Log: Merges tr...@6774 into releases/2.0 Comment tweaks on xhtml.ent svn merge --ignore-ancestry -c 6776 https://google-web-toolkit.googlecode.com/svn/trunk .

[gwt-contrib] Re: Refactor test code and api-checker to remove dependencies on CompilationUnit

2009-11-09 Thread amitmanjhi
LGTM other than minor comments below. ApiContainerTest and ApiCompatibilityTest throw console errors, even though the tests pass. Validating newly compiled units [ERROR] No JavaScript body found for native method 'protected native int protectedMethod();' in type 'java.lang.Object'

[gwt-contrib] Re: Comment on UiBinder in google-web-toolkit

2009-11-09 Thread codesite-noreply
Comment by jchimene: I may be missing something but shouldn't the argument to the initWidget call in _Apply different xml templates to the same widget_ be {{{ protected FooPickerDisplay(UiBinderWidget, FooPickerDisplay binder) { initWidget(binder.createAndBindUi(this)); } }}} For

[gwt-contrib] [google-web-toolkit] r6779 committed - Update Chrome plugin naming, cleanup leftover garbage, commit object...

2009-11-09 Thread codesite-noreply
Revision: 6779 Author: j...@google.com Date: Mon Nov 9 16:00:39 2009 Log: Update Chrome plugin naming, cleanup leftover garbage, commit object freeing code that was never committed. This was originally committed to the changes/jat/single-xpi branch by mistake. Patch by: jat Review by: rice

[gwt-contrib] [google-web-toolkit] r6780 committed - Build plugin DLL after name changes.

2009-11-09 Thread codesite-noreply
Revision: 6780 Author: j...@google.com Date: Mon Nov 9 16:04:54 2009 Log: Build plugin DLL after name changes. http://code.google.com/p/google-web-toolkit/source/detail?r=6780 Added: /trunk/plugins/npapi/prebuilt/gwt-dev-plugin/WINNT_x86-msvc/npGwtDevPlugin.dll

[gwt-contrib] [google-web-toolkit] r6781 committed - Fix typo in different templates section

2009-11-09 Thread codesite-noreply
Revision: 6781 Author: rj...@google.com Date: Mon Nov 9 16:28:35 2009 Log: Fix typo in different templates section http://code.google.com/p/google-web-toolkit/source/detail?r=6781 Modified: /wiki/UiBinder.wiki === --- /wiki/UiBinder.wiki Wed Oct 21

[gwt-contrib] Re: Comment on UiBinder in google-web-toolkit

2009-11-09 Thread codesite-noreply
Comment by rj...@google.com: @jchimene Fixed, thanks. For more information: http://code.google.com/p/google-web-toolkit/wiki/UiBinder --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >