Re: Announcing GWT 2.0 Milestone 1

2009-10-08 Thread Parvez Shah
Hi, I tried searching,but could not find any document regarding what all changes has been made in the API, do we get any new widget in 2.0 any new annotation On Thu, Oct 8, 2009 at 7:38 AM, Dominik Steiner dominik.j.stei...@googlemail.com wrote: Hi Jospeh, did you consider to install the

Re: Image/Absolute panel...how to make the clickhandlers fire on the abs, ignoreing the image?

2009-10-08 Thread ThomasWrobel
Yes, the sample might be a bit too complex to pin down. Currently the one online consists of; 1xAbsolute panel tied to the ID (InfiniteCanvas) on the html page. This absolute panel I have made extend FocusPanel and implemented to have MouseListener and MouseWheelListener and gave it the code to

RichTextArea inserting html

2009-10-08 Thread Max
Hello, 1. Is it possible to insert HTML code into RichTextArea? 2. Is it possible to surround selection with some tag? Thanks, Max --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: GWT 1.7.1 with tomcat 5.5

2009-10-08 Thread muhannad nasser
i have solved it... u need to add a new html page in the WEB-init to redirect to the hosted page. or make your URL to b go to hosted mode directly see this url for a project called GWTExtUx http://localhost:9090/GwtExtUx/war/com.gwtextux.sample.showcase2.Showcase2/? On Thu, Oct 8, 2009 at 3:34

RichText: inconsistent output on different browsers

2009-10-08 Thread Martin Trummer
I just noticed, that the RichtText editor produces different output for the same actions in different browsers: you can try it at: http://examples.roughian.com/index.htm#Widgets~RichTextArea Example: write a word, select it, click 'Toglle Bold' button, will produce: * Firefox 3.5.2, Chrome

Re: Adding request parameters to all async calls to servlets

2009-10-08 Thread Thomas Broyer
On 7 oct, 16:46, Henrique Viecili viec...@gmail.com wrote: Hi fellows... I am faced with this difficult situation: I have a GWT application built in the RPC style for async calls (1 Async interface, 1 RemoteService interface and 1 RemoteServiceServlet implementation) and now there is a

Re: Element.getStyle() getProperty from css external file

2009-10-08 Thread Thomas Broyer
On 7 oct, 16:56, iwo.di...@gmail.com iwo.di...@gmail.com wrote: Hello,    I have a webpage with external css file, I must parse this page and read css property for any tag. I use Element.getStyle().getProperty, but this not read the css property from external file, but only inline style.

Re: Google Webmasters: A proposal for making AJAX crawlable

2009-10-08 Thread Thomas Broyer
On 7 oct, 21:11, Peter Ondruska peter.ondru...@gmail.com wrote: This is interesting as this topic has been discussed many times in the past: http://googlewebmastercentral.blogspot.com/2009/10/proposal-for-makin... ...and work is underway to make it work out-of-the-box in GWT:

Defining a source package out of the module heirarchy (from a JAR for example)

2009-10-08 Thread Ittai
Hi, I have a web-app which currently holds this structure: -Web --src ---com.company.web module.gwt.xml otherModule.gwt.xml com.company.web.module -com.company.web.module.client -com.company.web.module.server com.company.web.otherModule

Whats the connection URL

2009-10-08 Thread Nathan
Hi All, I've been running GWT 2 m1 and all has been great. Recently however when I start up the debugger the browser connection URL appear to be showing in the eclipse Console window, it did used to and I'd paste the URL into a browser to connect and debug. The debugger window starts perfectly.

Re: Dependency injection and GWT?

2009-10-08 Thread Chris
Thanks. That worked a treat :D On Oct 5, 10:35 am, Thomas Broyer t.bro...@gmail.com wrote: On 5 oct, 00:45, Chris Burrell christopher.burr...@gmail.com wrote: Hi I want to build a view in GWT but it is one of a few different types of views. So I was thinking, I could have them all

Re: ClosingHandler to prevent user from navigating away

2009-10-08 Thread Marcelo Sena
Yes but I can't stop the event afterwards. This page illustrates what I want to do https://developer.mozilla.org/en/DOM/event.preventDefault On Sep 25, 2:41 pm, daniel d.brelov...@googlemail.com wrote: make sure you use ClosingHandler and not CloseHandler... if a ClosingEvent arises set a

Re: MenuBar command reload panel

2009-10-08 Thread Marcelo Sena
No, I was talking about the native mouseover event google groups is breaking my link so try to copy paste it with the html part On Sep 24, 5:12 pm, mornindew craigma...@gmail.com wrote: Thank you for your reply.  That link did not work for me but I found this link

Re: History with MenuBar

2009-10-08 Thread Robin
you can register a ClickHandler to your MenuItems. instead of: MenuBar fooMenu = new MenuBar(true); fooMenu.addItem(the, cmd); try: MenuItem the = new MenuItem(the); the.addClickhandler(new ClickHandler() { @Override public void onClick(ClickEvent event) {

Is it possible to send generic types over RPC?

2009-10-08 Thread andreas_b
Hi all. I have searched the forum and google for some answers, but have been unable to find a direct answer to my question. So sorry if this has been answered. In that case, please give me the link to that discussion. I'm working on a project where I need to send lots of different data object

Gwt component equivalent to pre

2009-10-08 Thread Komal
Hi, I am trying to display the contents of a file(which would contain code snippets) which is received in the form as a ByteArrayOutputStream converted to a string and returned to the client where I want the code to be displayed in the same format. like it can be done in pre tag in html also

Re: ClosingHandler to prevent user from navigating away

2009-10-08 Thread Thomas Broyer
On 8 oct, 14:13, Marcelo Sena marceloslace...@gmail.com wrote: Yes but I can't stop the event afterwards. This page illustrates what I want to dohttps://developer.mozilla.org/en/DOM/event.preventDefault ClosingEvent::setMessage(String) with a non-null message will cause preventDefault() to

Re: Defining a source package out of the module heirarchy (from a JAR for example)

2009-10-08 Thread Thomas Broyer
On 8 oct, 12:37, Ittai etai...@gmail.com wrote: Hi, I have a web-app which currently holds this structure: -Web --src ---com.company.web module.gwt.xml otherModule.gwt.xml com.company.web.module -com.company.web.module.client -com.company.web.module.server

Modular loading of widgets, is it possible?

2009-10-08 Thread balachandra maddina
Hi There, Im aware that GWT obfuscate the compiled javascript code well, but still i dont want to load all my application javascript in one shot. im more interested on loading different widgets as modules. one of the reasons is my application is complex and code kept growing and i kept adding

Re: Defining a source package out of the module heirarchy (from a JAR for example)

2009-10-08 Thread Ittai
Hi Thomas, I'm not sure I understood your answer. You're saying put I should put the classes I need in com.company.common.data (which is in a different project) and then add to my build-path of my Web project the common.jar and then where is the dummy gwt.xml supposed to be? I just didn't

JavaMail problem with Tomcat (not AppEngine)

2009-10-08 Thread AndrewG
I am having problem with an e-mail alert system that runs using JavaMail. This runs server-side under Tomcat and sends out warnings when things go wrong. I have now introduced gwt front-end components - but am deploying and running under Tomcat - not Google App Engine (App engine box not ticked

Re: Hosted Mode very slow on Mac

2009-10-08 Thread Rajeev Dayal
Ok, it turns out I was wrong about this. The fix has not been released as yet - I was getting confused with the Snow Leopard fix. Sorry about that. We'll be releasing a version that fixes the exact problem that you're seeing shortly. For now, you'll have to continue using your Java launch

Howto add an external jar into GWT project

2009-10-08 Thread mag
I am trying to add a jar into the Stockwatcher project found in the tutorial but I am getting the message: [ERROR] Line 48: No source code is available for type org.apache.commons.math.util.MathUtils; did you forget to inherit a required module? when trying to run it. The jar I used is

Re: Announcing GWT 2.0 Milestone 1

2009-10-08 Thread Christian Goudreau
I got some problem too with Eclipse and Snow Leopard. It's always asking me to re-compile my application and I've done that a lot of times ! I was trying to get it work with an active project. Christian On Thu, Oct 8, 2009 at 2:22 AM, Parvez Shah parvezs...@gmail.com wrote: Hi, I tried

Usage of HasAllMouseHandlers interface.

2009-10-08 Thread AndyB
I am having difficulty understanding the usage of the HasAllMouseHandlers interface. I have been learning how to develop with GWT by reading the GWT Applications book but a lot of the code has been depreciated. In one of the sample applications, the depreciated SourceMouseEvents interface is

Re: Is it possible to send generic types over RPC?

2009-10-08 Thread Paul Robinson
I believe you've found this bug: http://code.google.com/p/google-web-toolkit/issues/detail?id=2374 andreas_b wrote: Hi all. I have searched the forum and google for some answers, but have been unable to find a direct answer to my question. So sorry if this has been answered. In that case,

Re: Defining a source package out of the module heirarchy (from a JAR for example)

2009-10-08 Thread Ittai
I've thought some more about what you said and I'm still not sure of how this can work: If I add a common.jar to my project then where can I put the commonData.gwt.xml file? If I need to create a false com.company.common package on my Web project that will only hold my gwt.xml file then that

SV: Modular loading of widgets, is it possible?

2009-10-08 Thread Hermod Opstvedt
Hi That is possible in V2 - Milestone 1 just released Hermod -Opprinnelig melding- Fra: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] På vegne av balachandra maddina Sendt: 8. oktober 2009 14:42 Til: google-web-toolkit@googlegroups.com Emne: Modular

Re: OOPHM GWT 2.0 Milestone 1 on Mac

2009-10-08 Thread Christian Goudreau
Here's some update : I installed another instance of eclipse, installed the GWT plugin and then added GWT 2.0. I create a new project, runned it and everything worked fine exept that the development mode window is bugued and I can't close it without closing Eclipse... Debug is working fine

Re: hosted mode debugging with -noserver in eclipse

2009-10-08 Thread Keith Platfoot
Hi Mike, I think your issue has to do with certain changes made to GWT in version 1.6. Before 1.6, the GWTShell class was used to launch applications in hosted mode. In 1.6, the default structure of GWT projects was changed to make it more similar to Java web apps. By convention, GWT projects

Re: Modular loading of widgets, is it possible?

2009-10-08 Thread balachandra maddina
Hi Hermod, Yeah V2 is very exiting but im wondering if the Code Splitting and Declarative User Interface can be coded using GWT 1.7 may be not exactly the same but can some form of such functionality can be achieved by using GWT 1.7, using the features like IFRAMES or JSNI or JSON etc...?

Do you need GWT instructor

2009-10-08 Thread venki
Hi, This is venkat from India,A.P. I am working as a Sofware Engineer in Dimdim(www.dimdim.com). You can visit my application which is done in GWT (http://analytics.dimdim.com/analyticsui). Teaching is my passion.I can teach you through my company product only (web conferencing tool). It will

Integrate the Google Web Toolkit into Conduit Open and community toolbars

2009-10-08 Thread Avi Hein (Conduit)
Are you up to the challenge? Conduit, a SaaS platform that any web publisher can use to offer content and applications to users across the World Wide Web, has launched the Conduit Awards, to reward developers and programmers of custom components and applications for community toolbars that run

[ERROR] Type 'com.mycompany.web.client.UFOWebClientTree.MyTreeListener' was not serializable and has no concrete serializable subtypes

2009-10-08 Thread Palani
Any guidance for the following problem would be appreciated. I am in the process of converting an existing GWT 1.5 project to GWT 1.7 and getting the following error. [ERROR] Type 'com.mycompany.web.client.UFOWebClientTree.MyTreeListener' was not serializable and has no concrete serializable

New release of GWT crypto library

2009-10-08 Thread mooreds
Hi folks, I've just released 1.0.2 of gwt-crypto, a library that provides TripleDES encryption for GWT. http://code.google.com/p/gwt-crypto/ Thanks, Dan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: GWT PHP HTML 5 interaction

2009-10-08 Thread skorpiostinger
Great !!! I have already downloaded eclipse, gwt plugin for eclipse, Tomcat, ANT. Also I have Apache/PHP/MYSQL are up and running at my RHE 5 Linux server machine. The only conclusion I have right now how they would be interacting between each other. I do not want to maintain to servers

Re: Announcing GWT 2.0 Milestone 1

2009-10-08 Thread Sky
I got debugging to work! I created a new GWT web app with the Eclipse google plugin using GWT 2.0MS1 as the SDK. This is what most likely solved my problem. Simply changing a project from GWT 1.7.1 to 2.0 must not be making all the necessary changes to the auto generated files to be properly

Avoiding RPC Coming in to an inactive client from the server.

2009-10-08 Thread Danny
My application has a timeout on the client side that often causes the client to go away while there is a pending RPC return from the server. Nothing comes crashing down, but Tomcat fills its log with: org.apache.catalina.core.ApplicationContext log SEVERE: Exception while dispatching incoming

Re: SerializationException is lost

2009-10-08 Thread Geoffrey Wiseman
On Sep 12, 7:39 am, Sripathi Krishnan sripathi.krish...@gmail.com wrote: No - GWT doesn't propagate that exception/message to the client. Is this a bug, tracked somewhere, or a deliberate decision that doesn't currently make sense to me? :) --~--~-~--~~~---~--~~

Integrating GWT with JSP

2009-10-08 Thread Sudeep S
Hi, I have a requirement wherein my application loads an external gwt application as a widget in its iframe. The application's UI is developed using JSP. Can someone suggest me the best practices followed in communicating with external GWT applications (passing data back and forth). Thanks

GWT incubator PagingScrollTable

2009-10-08 Thread davis
Hi, I'm not sure where to post for incubator -- it doesn't have its own mailing list. I'm trying to use the PagingScrollTable widget from incubator. It seems to work just great except I cannot get the columns to sort. From my understanding, there is a built-in quicksort implementation that you

Re: Announcing GWT 2.0 Milestone 1

2009-10-08 Thread Ben
I have noticed that if you use Google Plugin to launch your project with 2.0 jar. The development shell does not launch at all. You have to launch it as a Java Application and set up some parameters by yourself, then you are able to see that GWT Develop Mode popup shell window. Is my observation

Re: Announcing GWT 2.0 Milestone 1

2009-10-08 Thread Sky
Ben, with 2.0 my projects launch the development shell when using the Google plugin launch options. It launched for me even when I just changed a project from 1.7.1 to 2.0, but you could try creating a whole new project with 2.0 from the start and copy the files over from the old project. Make

Re: SerializationException is lost

2009-10-08 Thread Sripathi Krishnan
Deliberate decision .. Few reasons that I know of -- a) Server code is capable of generating exceptions which can't be translated to javascript. Things like HibernateException can't be translated to JS. b) From a security perspective, you don't want your server side stack traces to be available

Using External Jars in Eclipse

2009-10-08 Thread Rakmos
I have been searching for several hours for some type of a tutorial on how to do this. I was wanting to use some widgets from GwtExt because of their easy validation methods, but cannot seem to get my webapp to compile. I have linked the jar file as an external jar, and it shows up under

First Time GWT: Installed eclipse plugin, does that mean I have the samples?

2009-10-08 Thread etsauer
I just installed the GWT plugin for eclipse. Does that mean that I have everything I need or do I still need to download the GWT package? Also, where does it install to? The reason I am wondering is i am going through the getting started guide, and I can't find the samples/ directory anywhere on

Trying to create a generic LoginManager

2009-10-08 Thread Tone
I'm just getting into GWT and getting back into Java after a 9 year absence. As I'm creating my first project it was pretty clear that I never wanted to write login session handling code ever again so I've been trying to create a reusable class for all of this that I can (mostly) drop into

why does GWT Showcase continually re-request CSS image under IE6

2009-10-08 Thread jmcmd
Under IE6 my application grinds to a halt because the GWT appears (i might be wrong) to somehow force IE6 to re-load all my CSS images any time their is a UI event where I make a Widget visible - even if that image is already visible on the screen. I can see the requests (and subsequent 304

Re: rpc serialization problem

2009-10-08 Thread Dominik Steiner
Hi, I'm using JDO with App Engine and GWT and sending the domain objects with the JDO tags via RPC is working fine, so not sure if the problem is JPA? HTH Dominik On Oct 7, 3:48 am, Lubomir lubomir.zrne...@gmail.com wrote: Hi, I was experimenting with it a bit as well and it seems to me that

Qestion on Focus Panel

2009-10-08 Thread sri
Hello, Does Focus panel that has Focus recieve an onBlurEvent if mouse is clicked on one of its children?I have a focus panel with a Grid as its child. I want to close the Focus Panel when clicked outside the focus panel - so I have a BlurHandler defined. But when I click inside the Focus panel (

Re: rpc serialization problem

2009-10-08 Thread brancoch
The problem comes from instrumentation done by the ORM. Most of the ORM substitute the implementation of the List, Map or Set with their own implementation since they need to track invocation of method of the collection. I know that the latest GWT 2.0 code base is putting code in the RPC

Duplicate signature class problem with 2.0 m1

2009-10-08 Thread pmonestie
Hi, First congrats on this release this is awesome!! I've been using 2.0 from the trunk for a while now and the following problem has been there for a while, using oophm: When I change a class that is serialized between client and server I get a Duplicate signature exception upon reloading the

2.0 m1 Duplicate Signature class loading issue in Hosted Mode Console

2009-10-08 Thread pmonestie
Hi, First congrats on this release this is awesome!! I've been using 2.0 from the trunk for a while now and the following problem has been there for a while, using oophm: When I change a class that is serialized between client and server I get a Duplicate signature exception (in the hosted mode

2.0 m1 Duplicate Signature class loading issue in Hosted Mode Console

2009-10-08 Thread pmonestie
Hi, First congrats on this release this is awesome!! I've been using 2.0 from the trunk for a while now and the following problem has been there for a while, using oophm: When I change a class that is serialized between client and server I get a Duplicate signature exception (in the hosted mode

Custom Designed Sign in page?

2009-10-08 Thread jlc488
Hello guys... I am not sure if I am suck at googling or what. I just can not find the way of implementing custom made signin page. So, This is my question. I am currently using UserService and User class that provided by google appengine . UserService userService =

Re: GWT PHP HTML 5 interaction

2009-10-08 Thread skorpiostinger
Hi! In my case, I run PHP via Apache, and I use straightforward AJAX calls from GWT. PHP never knows about GWT; it just delivers XML or JSON. GWT doesn't mind about PHP; it just receives the XML or JSON data, processes it, and goes on. You won't need Tomcat (or JBoss or anything like that)

Re: Trying to create a generic LoginManager

2009-10-08 Thread Ian Bambury
Try a search to 'event bus' in this group and have a look at the Google I/O video Ian http://examples.roughian.com 2009/10/8 Tone monot...@gmail.com I'm just getting into GWT and getting back into Java after a 9 year absence. As I'm creating my first project it was pretty clear that I

Re: SerializationException is lost

2009-10-08 Thread Geoffrey Wiseman
On Oct 8, 6:56 pm, Sripathi Krishnan sripathi.krish...@gmail.com wrote: Deliberate decision .. Few reasons that I know of -- I buy the not transmitting the errors to the client part; what I don't understand is why the server log doesn't seem to show anything useful in this case, at least,

Re: Integrating GWT with JSP

2009-10-08 Thread venki
You have to use JSNI(Java Script Native Interface) which is provided by GWT. Using this you can able to access java script code of your jsp page. If you wish to send any data from your jsp to GWT module then export that variable in java script of your jsp page. In your module write one JSNI

Re: Integrating GWT with JSP

2009-10-08 Thread Sudeep S
Thanks a lot Venkat !!! for your prompt reply.. Before I can start experimenting on JSNI, just wanted to know does JSNI work when both JSP and GWT (gwt module hosted on a different domain is loaded as an iframe in jsp) come from different domains. Thanks Sudeep On Fri, Oct 9, 2009 at

Re: MapWidget.removeControl() not working?

2009-10-08 Thread lumo
noone got an idea about that? do i have to call an update function afterwards? 2009/10/6 lumo lumo2...@gmail.com Hi NG! i add controls to my map on startup, but i want to enable the user to remove it again on runtime (toggle) so i init my map like this: private static MapTypeControl

[gwt-contrib] Comment on UsingOOPHM in google-web-toolkit

2009-10-08 Thread codesite-noreply
Comment by martin.g...@gmail.com: @elmacho: for me the plugin is not even installing - ubuntu 9.04, 64bit, ff 3.0.14 it complains about being not for this version (which obviously is true ;) ) did you do anything else to get it working? i still don't get the tab in the debug mode when i

[gwt-contrib] Re: Announcing GWT 2.0 Milestone 1

2009-10-08 Thread Konstantin.Scheglov
* Changes to the distribution: Note that there's only one download, and it's no longer platform-specific. You download the same zip file for every development platform. This is made possible by the new plugin approach used to implement development mode (see below). The distribution file

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

2009-10-08 Thread codesite-noreply
Comment by dygger: @jgw I think it makes sense to have view objects initialized from a .ui.xml file as a whole. Since `DialogBox` is a view, why do I have to describe dialog's content in xml and at the same time initialize dialog itself (set its caption, other view related properties like

[gwt-contrib] Re: Announcing GWT 2.0 Milestone 1

2009-10-08 Thread Konstantin.Scheglov
On 8 окт, 17:46, John Tamplin j...@google.com wrote:  FF 3.5.3 can not install plugin.  When I try to install extension, it goes further, but still fails with some deferred binding exception. Can you clarify what you mean here?  When you try and install the FF3.5 plugin from the

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

2009-10-08 Thread codesite-noreply
Comment by dygger: BTW, I have found a workaround for the DialogBox problem. At first I had to create a subclass for DialogBox implementing HasWidgets interface: {{{ public class HasWidgetsDialogBox extends com.google.gwt.user.client.ui.DialogBox implements HasWidgets {

[gwt-contrib] Comment on UsingOOPHM in google-web-toolkit

2009-10-08 Thread codesite-noreply
Comment by tamplinjohn: What is the exact message it gives you when rejecting the addon? I don't have an Ubuntu9 machine to test on, but you could try and see if the version with alternate libraries (needed for Fedora 10 at least) works:

[gwt-contrib] Re: GWT OOPHM Plugin for IE Windows Installer

2009-10-08 Thread jat
I have not looked at the code, only running the installer. - OOPHM everywhere, never saw a mention of GWT Development Mode Plugin - Icon looks lousy we have large ones available that can be scaled to the size you need Other than that, looks good. http://gwt-code-reviews.appspot.com/78801

[gwt-contrib] [google-web-toolkit] r6322 committed - Add better error handling for future protocol version where we support...

2009-10-08 Thread codesite-noreply
Revision: 6322 Author: j...@google.com Date: Thu Oct 8 08:49:57 2009 Log: Add better error handling for future protocol version where we support downloading the real plugin via a shim plugin. http://code.google.com/p/google-web-toolkit/source/detail?r=6322 Modified:

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

2009-10-08 Thread codesite-noreply
Comment by rj...@google.com: I agree on the DialogBox use case, and will try to make it work. Thanks for the workaround. For more information: http://code.google.com/p/google-web-toolkit/wiki/UiBinder --~--~-~--~~~---~--~~

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

2009-10-08 Thread codesite-noreply
Comment by rj...@google.com: Oh, and yes: UiBinder gets along just fine with MVP. One thing I want to start experimenting with is having binder instances injected by GIN, e.g.: {{{ MyView extends Widget { public interface Binder extends UiBinderMyView, Widget {} private static final

[gwt-contrib] [google-web-toolkit] r6323 committed - Various fixes for deRPC....

2009-10-08 Thread codesite-noreply
Revision: 6323 Author: b...@google.com Date: Thu Oct 8 10:06:39 2009 Log: Various fixes for deRPC. - If an array type is artificially rescued, it should rescue its component type. - Don't generate bad RPC proxy code if the legacy type-elision flag is set. - Correctly handle

[gwt-contrib] [google-web-toolkit] r6324 committed - Merge r6323 into snapshot branch....

2009-10-08 Thread codesite-noreply
Revision: 6324 Author: b...@google.com Date: Thu Oct 8 10:32:14 2009 Log: Merge r6323 into snapshot branch. $ svn merge -c 6323 https://google-web-toolkit.googlecode.com/svn/trunk http://code.google.com/p/google-web-toolkit/source/detail?r=6324 Modified: /branches/snapshot-2009.10.06-r6307

[gwt-contrib] Comment on UsingOOPHM in google-web-toolkit

2009-10-08 Thread codesite-noreply
Comment by myonceinalifetime: I got debugging to work! I created a new GWT web app with the Eclipse google plugin using GWT 2.0MS1 as the SDK. This is what most likely solved my problem. Simply changing a project from GWT 1.7.1 to 2.0 must not be making all the necessary changes to the

[gwt-contrib] [google-web-toolkit] r6325 committed - Update branch-info.txt.

2009-10-08 Thread codesite-noreply
Revision: 6325 Author: b...@google.com Date: Thu Oct 8 10:35:28 2009 Log: Update branch-info.txt. http://code.google.com/p/google-web-toolkit/source/detail?r=6325 Modified: /branches/snapshot-2009.10.06-r6307/branch-info.txt === ---

[gwt-contrib] Teach Image about ImageResource

2009-10-08 Thread rjrjr
Reviewers: jlabanca, Message: John, can you take this? Please review this at http://gwt-code-reviews.appspot.com/78803 Affected files: M build.xml M dev/core/src/com/google/gwt/dev/javac/ArtificialRescueChecker.java M

[gwt-contrib] Re: Teach Image about ImageResource

2009-10-08 Thread rjrjr
WHOA! Nevermind, git diff problems. http://gwt-code-reviews.appspot.com/78803 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Teach Image about ImageResource

2009-10-08 Thread rjrjr
Reviewers: jlabanca, Message: Okay, ready for my close up Mr. Labanca Please review this at http://gwt-code-reviews.appspot.com/78804 Affected files: M user/src/com/google/gwt/user/client/ui/Image.java M user/test/com/google/gwt/user/client/ui/ImageTest.java A

[gwt-contrib] Re: Teach Image about ImageResource

2009-10-08 Thread jlabanca
LGTM But consider the one comment http://gwt-code-reviews.appspot.com/78804/diff/5/6 File user/src/com/google/gwt/user/client/ui/Image.java (right): http://gwt-code-reviews.appspot.com/78804/diff/5/6#newcode355 Line 355: public Image(ImageResource resource) { I think it would be better to

[gwt-contrib] Re: Teach Image about ImageResource

2009-10-08 Thread rjrjr
Committed r6327 http://gwt-code-reviews.appspot.com/78804 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Switch CssResource to strict-by-default mode

2009-10-08 Thread rjrjr
LGTM Just nits. http://gwt-code-reviews.appspot.com/75804/diff/1/3 File user/src/com/google/gwt/resources/client/CssResource.java (right): http://gwt-code-reviews.appspot.com/75804/diff/1/3#newcode120 Line 120: * The {...@code @external} at-rule can be used in strict mode to indicate that did

[gwt-contrib] [google-web-toolkit] r6329 committed - Adding UrlBuilder and using it in Showcase and GwtTestCase so we don't...

2009-10-08 Thread codesite-noreply
Revision: 6329 Author: jlaba...@google.com Date: Thu Oct 8 13:06:28 2009 Log: Adding UrlBuilder and using it in Showcase and GwtTestCase so we don't remove gwt.hosted parameter in URLs. Patch by: jlabanca Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=6329

[gwt-contrib] Empty Anchor uses incorrect javascript syntax

2009-10-08 Thread jlabanca
Reviewers: Ray Ryan, Description: Description: The Anchor widget defaults its href to javascript: if no href is specified to prevent a blank page from loading. However, this causes FF2 to open the error console with no error message. Fix: Changed the href to the correct value javascript:;.

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

2009-10-08 Thread codesite-noreply
Comment by sven.tiffe: Folks, is there a way to bind more than one element to a method, e.g. {{{ @UiHandler(textField1) @UiHandler(textField2) protected void updateLogin(KeyUpEvent event) { model.validate(); } }}} And is there anything planned for two-way bindings? I was

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

2009-10-08 Thread codesite-noreply
Comment by rj...@google.com: {{{ @UiHandler({textField1, textField2}) protected void updateLogin(KeyUpEvent event) { model.validate(); } }}} For more information: http://code.google.com/p/google-web-toolkit/wiki/UiBinder --~--~-~--~~~---~--~~

[gwt-contrib] [google-web-toolkit] r6330 committed - Delay processing the -runStyle argument so JUnitShell's logger is avai...

2009-10-08 Thread codesite-noreply
Revision: 6330 Author: j...@google.com Date: Thu Oct 8 14:16:26 2009 Log: Delay processing the -runStyle argument so JUnitShell's logger is available for the runstyles. http://code.google.com/p/google-web-toolkit/source/detail?r=6330 Modified:

[gwt-contrib] Re: Empty Anchor uses incorrect javascript syntax

2009-10-08 Thread John LaBanca
FYI - I added another patch set. It doesn't seem to send out an email to that effect though Thanks, John LaBanca jlaba...@google.com On Thu, Oct 8, 2009 at 5:05 PM, Ray Ryan rj...@google.com wrote: That's why TDD is a good thing. Not that I've ever managed it. On Thu, Oct 8, 2009 at 1:52

[gwt-contrib] Re: Empty Anchor uses incorrect javascript syntax

2009-10-08 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/77804 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit] r6331 committed - Adding a semicolon to the javascript reference in empty Anchor widgets...

2009-10-08 Thread codesite-noreply
Revision: 6331 Author: jlaba...@google.com Date: Thu Oct 8 14:22:37 2009 Log: Adding a semicolon to the javascript reference in empty Anchor widgets to fix a FF2 bug where Anchor widgets open the error console. Patch by: jlabanca Review by: rjrjr

[gwt-contrib] [google-web-toolkit] r6328 committed - Adding installer for OOPHM IE plugin.

2009-10-08 Thread codesite-noreply
Revision: 6328 Author: jlaba...@google.com Date: Thu Oct 8 12:28:52 2009 Log: Adding installer for OOPHM IE plugin. http://code.google.com/p/google-web-toolkit/source/detail?r=6328 Added: /trunk/plugins/ie/installer /trunk/plugins/ie/installer/COPYING.rtf

[gwt-contrib] [google-web-toolkit] r6333 committed - Adds LINE_START and LINE_END to DockPanelParser in UiBinder...

2009-10-08 Thread codesite-noreply
Revision: 6333 Author: rj...@google.com Date: Thu Oct 8 18:15:53 2009 Log: Adds LINE_START and LINE_END to DockPanelParser in UiBinder Internal contribution. reviewed by: rjrjr http://code.google.com/p/google-web-toolkit/source/detail?r=6333 Modified:

[gwt-contrib] Introduces ui:image--ImageResource in UiBinder

2009-10-08 Thread rjrjr
Reviewers: bobv, jgw, Message: Bob or Joel, could one of you grab this? Whoever gets there first... Please review this at http://gwt-code-reviews.appspot.com/77805 Affected files: M user/src/com/google/gwt/uibinder/parsers/HasTextParser.java M

[gwt-contrib] Re: Introduces ui:image--ImageResource in UiBinder

2009-10-08 Thread rjrjr
One note: GetEscapedInnerTextVisitor is just a rename of GetInnerTextVisitor, no need for review beyond that. http://gwt-code-reviews.appspot.com/77805 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r6334 committed - We don't need ui:apply after all

2009-10-08 Thread codesite-noreply
Revision: 6334 Author: rj...@google.com Date: Thu Oct 8 18:46:03 2009 Log: We don't need ui:apply after all http://code.google.com/p/google-web-toolkit/source/detail?r=6334 Modified: /wiki/UiBinder.wiki === --- /wiki/UiBinder.wiki Sat Sep 26 07:07:46 2009

[gwt-contrib] [google-web-toolkit] r6335 committed - More plausible use of a sprite class

2009-10-08 Thread codesite-noreply
Revision: 6335 Author: rj...@google.com Date: Thu Oct 8 18:47:51 2009 Log: More plausible use of a sprite class http://code.google.com/p/google-web-toolkit/source/detail?r=6335 Modified: /wiki/UiBinder.wiki === --- /wiki/UiBinder.wiki Thu Oct 8 18:46:03

[gwt-contrib] Re: Switch CssResource to strict-by-default mode

2009-10-08 Thread rjrjr
And don't forget to update your wiki pages http://gwt-code-reviews.appspot.com/75804 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---