Re: Development Mode not connecting

2010-09-28 Thread Johnnie
Thanks for the reply. Unfortunately I've looked out for that one, and am sure that is not the issue. Even if I completely restarting my pc to make absolutely sure nothing is left running in the background I still get the same result. I am careful to make sure I am debugging rather than just

MMS

2010-09-28 Thread muhannad nasser
hi all; Does anyone know any opensource API to send SMS and MMS. i have a server to send them from my local provider i just need to connect and send the messages -- ~~~With Regards~~~ Muhannad Dar-Nasser ~~Computer Systems Engineering~~ -- You received this message because you are

2.1 M3: pretty obscure javascript exception

2010-09-28 Thread Paul Schwarz
Using GWT 2.1 M3 and making use of Ui Binder widgets, and having done some refactoring elsewhere I now get the odd UI related error that looks like the following. I have no clue where to start tracing it and doing null checks or whatever, someone, please give me a hint!

Re: How to import Expenses project into Eclipse?

2010-09-28 Thread hezjing
I got a little bit further with the following steps: 1. Build the GWT source code: cd C:\gwt\trunk ant 2. Install the latest GWT JARs into local Maven repository: mvn install:install-file -DgroupId=com.google.gwt -DartifactId=gwt-servlet ^ -Dversion=2.1-SNAPSHOT -Dpackaging=jar

Re: How to supply bindAddress

2010-09-28 Thread Sree ...
thx alot.. that did the magic On Fri, Sep 17, 2010 at 6:12 PM, Nairutee nairu...@ensarm.com wrote: If you are using an Eclipse IDE, i) you will need to have the latest GWT plugin for Eclipse http://code.google.com/eclipse/docs/getting_started.html . ii) In the Run / Debug configurations in

local variable

2010-09-28 Thread Lewis Yeung
I am using MVP4g and GWT EXT. I want to store some info locally inside my application and can be used throughout all presenters in my system. Where is the best place to put it? A reference of the object in the event bus? @Events( startView = MainView.class ) public interface MainEventBus extends

Re: embed entire GWT application into single html file

2010-09-28 Thread Thomas Broyer
On Sep 28, 7:18 am, Wolfgang wolfgangmey...@gmail.com wrote: OK, totally got this to work with firefox (I assume it would work with any other browser, just change the user.agent to the appropriate value)... here are the lines to add to your module:   define-linker name=sso

GWT JSONValue runtime error

2010-09-28 Thread Jason Zarqua
when I am writing in source JSONValue value = JSONParser.parse(result); I am getting an error : No source code is available for type com.google.gwt.json.client.JSONValue; did you forget to inherit a required module -- You received this message because you are subscribed to the Google Groups

GWT Wrapper for 3rd party visualization

2010-09-28 Thread Ümit
I am developing a standalone GWT Wrapper for a 3rd party javascript visualization plot. My first approach was to embed the compressed 3rd party javascript file by putting the script src= tag into the .gwt.xml File of the GWT Wrapper. But I am not sure if this is the best approach. I was reading

SOLVED: Re: 2.1 M3: pretty obscure javascript exception

2010-09-28 Thread Paul Schwarz
Just a silly mistake, but could be useful for someone. In my Ui Binder style widget I had a default 0-arg constructor that looks like this: public MyWidget() { initWidget(binder.createAndBindUi(this)); } ... and then later I decided I needed an additional constructor that takes args,

Re: Datastore

2010-09-28 Thread nacho
I'm also using Objectify and it is great and simple On 25 sep, 06:09, Didier DURAND durand.did...@gmail.com wrote: Hi Trevor, I would suggest giving also a try to Objectify which a layer on top of raw Datastore: it makes access to data much easier and has a lower learning curve than JDO.

Re: Any recommended input validation lib?

2010-09-28 Thread nacho
Thnaks. On 27 sep, 21:11, Andrew Pietsch andrew.piet...@gmail.com wrote: Hi there, thanks for your compliments about pectin. Just as a matter of interest I've started talking with the author of Bindgen (http://bindgen.org/) about the possibilities of using it with pectin and things are

Re: Modal Dialogs with setGlassEnabled Disable Input Elements

2010-09-28 Thread Paul Stockley
Just use the glass panel. Don't set it modal. The modal option doesn't work for all browsers/input types. On Sep 28, 12:43 am, melody pedzi...@gmail.com wrote: I have a modal dialog that I want to be modal so I have set the modal property thus: DialogBox dlg = new DialogBox();

Behavior difference in debug and normal mode

2010-09-28 Thread lalit
I am getting a large chunk of data in one call. However I see that the GWT normal mode in jetty though takes some time does returns the data to browser, however the debug mode never returns the data at all. Any clue or pointer would be helpful. thanks -- You received this message because you

Re: GWT JSONValue runtime error

2010-09-28 Thread Thomas Broyer
On Sep 28, 11:52 am, Jason Zarqua jason.zar...@gmail.com wrote: when I am writing in source JSONValue value = JSONParser.parse(result); I am getting an error : No source code is available for type com.google.gwt.json.client.JSONValue; did you forget to inherit a required module Do you

Re: Behavior difference in debug and normal mode

2010-09-28 Thread lalit
Just realised that this behavior is in Chrome. Fire fox returns the data. However the time it takes for normal mode to return the data is 4s and in debug mode it;'s 40 s. On Sep 28, 5:12 pm, lalit lalit.bh...@gmail.com wrote: I am getting a large chunk of data in one call. However I see that

Sending mails from GWT-App

2010-09-28 Thread newnoise
Hi, I'm trying to send an email from my GWT-App. I found the following code using google: protected void sendMessage(String smtpHost, String fromAddress, String fromName, String to, String subject, String text) { // Get system properties Properties props = System.getProperties(); // Setup mail

Re: Sending mails from GWT-App

2010-09-28 Thread Paul Grenyer
Hi This isn't a GET issue Paul On Tue, Sep 28, 2010 at 1:46 PM, newnoise tommmuel...@googlemail.comwrote: Hi, I'm trying to send an email from my GWT-App. I found the following code using google: protected void sendMessage(String smtpHost, String fromAddress, String fromName, String

Re: Sending mails from GWT-App

2010-09-28 Thread newnoise
What does that mean? On 28 Sep., 15:12, Paul Grenyer paul.gren...@gmail.com wrote: Hi This isn't a GET issue Paul On Tue, Sep 28, 2010 at 1:46 PM, newnoise tommmuel...@googlemail.comwrote: Hi, I'm trying to send an email from my GWT-App. I found the following code using

Re: Sending mails from GWT-App

2010-09-28 Thread Chad
He meant it isn't a GWT issue. The code you are trying to make work has nothing to do with GWT other than it is being referenced from the server-side code compiled by your GWT app. That said, here's some code I use to send emails: pre try { Session mailSession =

Re: Sending mails from GWT-App

2010-09-28 Thread Vladi S
This isn't a GET issue I guessPaul ment GWT issue . And yes, your java code is broken and GWT group ist actually not the right place for this questions. I'm trying to send an email from my GWT-App. I found the following The code for sending an email will have to be on the server side

Re: Sending mails from GWT-App

2010-09-28 Thread Paul Grenyer
Hi It means I can't type! GET should have been GWT. Paul On Tue, Sep 28, 2010 at 2:20 PM, newnoise tommmuel...@googlemail.comwrote: What does that mean? On 28 Sep., 15:12, Paul Grenyer paul.gren...@gmail.com wrote: Hi This isn't a GET issue Paul On Tue, Sep 28, 2010 at

Re: Modal Dialogs with setGlassEnabled Disable Input Elements

2010-09-28 Thread melody
I tried what Pau suggeste i.e. setting the modal property to false and use on setEnabled(true). I still cant edit. All my edit boxes are disabled. Any ideas? Oh and I am using GWT 2.0.4 On Sep 28, 7:05 am, Paul Stockley pstockl...@gmail.com wrote: Just use the glass panel. Don't set it modal.

Re: Benchmark

2010-09-28 Thread Fernando
very interesting, even more if coupled with this one (read it yesterday): http://groups.google.com/group/google-web-toolkit/browse_thread/thread/d20b0d9cad299223 imho, GWT Team should address to these performance issues as soon as they have the time if we're going to use Java on a daily basis

Save Page As

2010-09-28 Thread Greg Dougherty
Is there any way to make a GWT App so that when the User selects Save Page As (or their browser's equivalent), it actually saves something useful? Such as, oh, the contents of the page? TIA, Greg -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Modal Dialogs with setGlassEnabled Disable Input Elements

2010-09-28 Thread Thomas Broyer
On Sep 28, 4:01 pm, melody pedzi...@gmail.com wrote: I tried what Pau suggeste i.e. setting the modal property to false and use on setEnabled(true). I still cant edit. All my edit boxes are disabled. Any ideas? Check with a developer tool (Firebug, etc.) that the glass panel correctly

Re: API design rant!

2010-09-28 Thread Greg Dougherty
Well, look at the JavaDoc for extended by com.google.gwt.dom.client.Style.Unit (AKA Style.Unit). I don't think it's possible to write worse Documentation than that, other than perhaps writing something that is actively and consistently wrong. My general experience with reading the GWT JavaDoc is

Re: Datastore

2010-09-28 Thread agata.p...@gmail.com
You can also take a look on twig : http://code.google.com/p/twig-persist/ On Sep 28, 12:43 pm, nacho vela.igna...@gmail.com wrote: I'm also using Objectify and it is great and simple On 25 sep, 06:09, Didier DURAND durand.did...@gmail.com wrote: Hi Trevor, I would suggest giving also a

Re: Modal Dialogs with setGlassEnabled Disable Input Elements

2010-09-28 Thread melody
Thanks Paul that actually did the job. On Sep 28, 7:05 am, Paul Stockley pstockl...@gmail.com wrote: Just use the glass panel. Don't set it modal. The modal option doesn't work for all browsers/input types. On Sep 28, 12:43 am, melody pedzi...@gmail.com wrote: I have a modal dialog

Need advise on how to organize my sample application.

2010-09-28 Thread Vishal Pai
Hi, I am writing a sample application to get to know GWT and GWT designer. This application requires user to login using Google account. It displays a list of customers and allows adding a customer. Can you please advise on how should I organize the UI? The I have organized the application: 1. I

serialization in GWT

2010-09-28 Thread vibrant
Serialization: Serialization is the process of transmitting object across the network (client and server) connection in binary form. GWT supports object serialization as part of its RPC (Remote Procedures Calls) mechanism. Serialize Types: A type is serialization and can be used in service

JavaScriptException: (TypeError): while collapsing and expanding a Tree

2010-09-28 Thread chandra
Hi All, I have used TreePanel. i did not include expand and collpase buttons. when the tree is collpasing or expanding i am getting the following error.please help me.. [ERROR] Uncaught exception escaped com.google.gwt.core.client.JavaScriptException: (TypeError): 'parentElement' is

want to set browser to full screen mode

2010-09-28 Thread ganesh b
hai to all, i am new to gwt, i want to run my gwt page in full screen mode, can any tell me to to do this. regards ganesh -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

how to change one widget's style dynamically

2010-09-28 Thread ahdipost
Hi everyone, I wonder, how to change only one widgets style with javascript. Not loading from a *.css file, just think about, for gwt-button, a css formta is stored in a String cssFormat=.gwt-button{color:Green;}; attribute. Is it possible to set this style to displayed button's style??

How does a GWT project work?

2010-09-28 Thread mattyh88
I'm wondering how to setup a real webapplication with GWT. Do you need a java file for every page in the client package with an onmoduleload function? How would you link to an other page from a page in your application? -- You received this message because you are subscribed to the Google Groups

ajax, Jquery, technichal guidense

2010-09-28 Thread Asad Mehmood
please read all the topics in my blog there are very usefull topics in my blog http://scriptstreasure.blogspot.com/ -- 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-tool...@googlegroups.com. To

Vulnerabilities in GWT applications

2010-09-28 Thread Basdl
Hello, I'd like to find vulnerabilities in my GWT applications. Thus, I prepared an example application with SQL injection and cross-site scripting holes. Now I want to find these holes with automatic tests. In my opinion, a static analysis is a reasonable way to do this. At (manually) searching

How to generate the drop down options onModuleLoad

2010-09-28 Thread Rahul
Hello, Presently am working on GWT to build an front end for my SaaS based application and facing a little difficulty with generating a drop down list. What I have to do is based on the type of user logged in I have to populate a drop down list onModuleLoad so the list of options are always

Re: serialization in GWT

2010-09-28 Thread lalit
Are there some metrics regarding the performance of serialization? How does GWT performs serializing and deserializing nested object structures of huge size? Also what are the common bottlenecks in that? On Sep 28, 2:13 pm, vibrant muni...@gmail.com wrote: Serialization: Serialization is the

Re: Sending mails from GWT-App

2010-09-28 Thread newnoise
Ok i got that. Now my App tells me that the API package 'mail' or call 'Send()' was not found. ... Did I just forget to inherit something, or is it not possible to use mail command with GWT? Thanks! On 28 Sep., 15:46, Vladi S vladislavs.sere...@googlemail.com wrote: This isn't a GET

Re: API design rant!

2010-09-28 Thread Thomas Broyer
On Sep 28, 4:29 pm, Greg Dougherty dougherty.greg...@mayo.edu wrote: Well, look at the JavaDoc for extended by com.google.gwt.dom.client.Style.Unit (AKA Style.Unit).  I don't think it's possible to write worse Documentation than that, other than perhaps writing something that is actively and

Re: MVP pattern and dynamic widgets

2010-09-28 Thread Shyam Visamsetty
I would do it in the view part and call a presenter method on that event being fired. I would typically have presenter as a dependency on the view class. Thanks, Shyam. On Sep 20, 5:56 pm, Sydney sydney.henr...@gmail.com wrote: @daniel I created the map but how do you register the value

Re: Sending mails from GWT-App

2010-09-28 Thread andy stevko
Ahh, so you are trying to use the java.mail api within GWT - that is what confused everyone... Perhaps you should read the reference documentation on JRE whitelist http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html On Tue, Sep 28, 2010 at 8:37 AM, newnoise

External JS - steps to make it work

2010-09-28 Thread Rodrigo Teixo
Well people, Sorry to post something like it again, but the already posted questions dont solve mine. I have a line in my .html something like body onload=javascript:test(); The function test() is in my own file test.js. First I put test.js javascript file in the public tab of the module. The

Re: API design rant!

2010-09-28 Thread Brett Thomas
Not to mention none of those three things have to do with API Design... On Tue, Sep 28, 2010 at 12:01 PM, Thomas Broyer t.bro...@gmail.com wrote: On Sep 28, 4:29 pm, Greg Dougherty dougherty.greg...@mayo.edu wrote: Well, look at the JavaDoc for extended by

Re: Modal Dialogs with setGlassEnabled Disable Input Elements

2010-09-28 Thread melody
Thanks Thomas for the extra nugget about z-index. And thanks to all for the consideration of this post. -- 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-tool...@googlegroups.com. To unsubscribe

Re: Multiple RPC from same page gives Error 500

2010-09-28 Thread bijuv v
Dear All, We are using GWT 2.0.3 and Spring in the backend. Facing the below issue in IE(6,7,8) as well as Firefox. A proxy is placed between the Browser and the Application Server. In our application, we make multiple RPC calls to display the page. The scenario is described below RPC A and RPC

Re: Uibinder, @sprite and ui:with ClientBundle ImageResource, HOW?

2010-09-28 Thread Chris Conroy
Andrew, Sorry for my originally hasty reply. Turns out that the docs aren't clear about this at all, but this is a current limitation of ui:with You will have to use something like this, at least for now: ui:Image field=someImage src=someimage.jpg/ ui:style @sprite .x { gwt-image:

Re: Uibinder, @sprite and ui:with ClientBundle ImageResource, HOW?

2010-09-28 Thread Chris Conroy
For reference, bug is filed here: http://code.google.com/p/google-web-toolkit/issues/detail?id=5320 On Tue, Sep 28, 2010 at 2:29 PM, Chris Conroy con...@google.com wrote: Andrew, Sorry for my originally hasty reply. Turns out that the docs aren't clear about this at all, but this is a

Re: Where can I find documentation to GWT MVP comming with version 2.1

2010-09-28 Thread David Chandler (Google)
I'll be posting a doc on using GWT 2.1 MVP Activities and Places within the next week or so, and another on RequestFactory shortly thereafter. /dmc David Chandler Developer Programs Engineer, Google Web Toolkit Atlanta, GA USA On Sep 27, 5:08 am, Kardigen mar...@kardigen.org wrote: Hi,

Re: Where can I find documentation to GWT MVP comming with version 2.1

2010-09-28 Thread Kasper Hansen
Sounds good !! Can you provide a link in this thread when its ready ? Thanks. Sent from my iPhone On 28/09/2010, at 20.53, David Chandler (Google) drfibona...@google.com wrote: I'll be posting a doc on using GWT 2.1 MVP Activities and Places within the next week or so, and another on

Re: Multiple RPC from same page gives Error 500

2010-09-28 Thread bijuv v
Dear Andy, Thanks much for the response. We get the 500 error immediately from the server. The payload is coming as blank (empty value or ) in the RemoteServiceServlet. Hence the GWT code is intentionally throwing the 500 error. The point that I cant understand is why the payload is not reaching

Re: Multiple RPC from same page gives Error 500

2010-09-28 Thread andy stevko
I've only seen the framework optimize static resources. I'm using the GWT-Dispatch library which basically sequences a single RPC call many times per second (peak) to drive an appengine instance. I've had more luck sequencing actions rather than making multiple concurrent calls due to database

Re: Vulnerabilities in GWT applications

2010-09-28 Thread Sripathi Krishnan
Lets look at the vulnerabilities one at a time. *Cross Site Scripting (XSS)* With GWT, the attack vectors for XSS are restricted to the following - 1. Host html/jsp page that has reflected XSS 2. Custom Javascript libraries 3. JSNI code that you have written within GWT 4. Places

Re: External JS - steps to make it work

2010-09-28 Thread Thomas Broyer
On 28 sep, 19:26, Rodrigo Teixo horariofa...@gmail.com wrote: Well people, Sorry to post something like it again, but the already posted questions dont solve mine. I have a line in my .html something like body onload=javascript:test(); The function test() is in my own file test.js.

Re: Multiple RPC from same page gives Error 500

2010-09-28 Thread bijuv v
Able to reproduce the same without proxy setup as well. I directly hit the Websphere server (bypassing the proxy) and still get the same error. Though I say I can reproduce locally (tomcat ), the steps will vary each time. I have taken another step now - Im printing the payload in the Filters

Re: GWT Widget List/Documentation

2010-09-28 Thread Al
Ah, I see. Thanks! Al On Sep 27, 10:47 am, Chris Conroy con...@google.com wrote: DynaTable is not a library widget. Rather, it's an example of a widget you might make in an app yourself. http://code.google.com/p/google-web-toolkit/source/browse/#svn/trunk/... On Fri, Sep 24, 2010 at 5:29

Re: How does a GWT project work?

2010-09-28 Thread Jambi
Hi, normally you just have one single onModuleLoad in your application. This is the starting point of your later compiled JavaScript. You don ´t link to other pages. You just have one single container (your HTML body / gwt RootPanel) in which you are fetching different java (DOM

How to add click handler to a panel?

2010-09-28 Thread drthink
I want to add a click handler to a panel so I extended the HorizontalPanel as shown below. It feels dirty because in the constructor I have to register the click event but put nothing in the method in order for the ClickEvent to propgate to the parent control which registers the ClickHandler. Is

permissions based on roles

2010-09-28 Thread spiralni
hello. I will start a project and I want to use the gwt toolkit because I need my application to look like a desktop app. My concern is regarding the users and roles... and all the permissions stuffs. Where can I find an example of this? Or is it not posible to achieve with gwt and need to

Re: GWT Designer not available ...

2010-09-28 Thread wstidolph
I see this for all subclasses of TextBoxBase (TextBox, PasswordTextBox, TextArea) , on Fedora Linux 13 x86, eclipse 3.6, GWT 2.1.0M3; and, like 'umemy' noted, manually adding the components to the java file results in an exception because of not finding *.wbp- component.xml. -- Wayne On Sep 21,

Newbie qn: GWT.xml inherits vs Build path

2010-09-28 Thread Will
Hi, Beginner question: What is the difference between adding the GWT jar to my Eclipse build path and the inherits functionality in the myapp.gwt.xml inherits name='com.google.gwt.user.User'/ What does the inherit achieve that I don't get with having the .jar on my build path.. Thanks, W --

JUnit hosted mode test fails with java.net.SocketException: Resource temporarily unavailable: recv failed

2010-09-28 Thread adirondack
I create the default GWT app in Eclipse. It runs fine. Then I create a simple test and is fails with the following log and junit errors. Please! I've spent way too much time trying to figure this out alone. Can anyone help? Here is the log: Started code server on port 1600 Starting HTTP on

Re: GWT Collections emulation library performance

2010-09-28 Thread Arthur Kalmenson
It's known that the Collections emulation has some performance penalty. The GWT team is working on a solution: http://code.google.com/p/google-web-toolkit/wiki/LightweightCollections -- Arthur Kalmenson 2010/9/26 Артём artem...@gmail.com: What happens when you use for (int i = 0; i

Re: How to add click handler to a panel?

2010-09-28 Thread lineman78
If you are willing to wait till 2.1 or upgrade to the milestones addHandler has been changed to public instead of protected. On Sep 28, 4:40 pm, drthink drgenejo...@gmail.com wrote: I want to add a click handler to a panel so I extended the HorizontalPanel as shown below.  It feels dirty

Re: how to change one widget's style dynamically

2010-09-28 Thread lineman78
Forgive me if something is slightly wrong as I'm not going to validate this through Eclipse, but I think this is what you want: Button button = new Button(Green Button); button.getElement().getStyle().setColor(green); On Sep 28, 7:31 am, ahdipost yaserizt...@gmail.com wrote: Hi everyone, I

BeanCreationException

2010-09-28 Thread Ashton Thomas
This looks like a spring problem (GWT/roo generated scaffold - from the updated and maybe incomplete source code) No errors in the project and I'm a little lost on this one. Any help is greatly appreciated 2010-09-28 23:33:46,508 [main] ERROR org.springframework.web.servlet.DispatcherServlet

Re: Save Page As

2010-09-28 Thread mP
Is this a developer question or for the convenience of regular users. For regular users i cant quite see how this is probably use to them. They are never going to get a complete snapshot that is of any use. However if you want to get a snapshot of the DOM as HTML there are plenty of plugins for

Re: Save Page As

2010-09-28 Thread Ashton Thomas
You mean like the gdoc effect when you ctrl+s it saves the content. So the application saves the appropriate application data ?? Seems like you would have your app listen for that key combo. I am not familiar with this in gwt but just wanted to clarify the question On Sep 28, 11:44 pm, mP

Re: permissions based on roles

2010-09-28 Thread Paul Grenyer
We've integrated Spring security to achieve this. -Original Message- From: spiralni spira...@gmail.com Sender: google-web-toolkit@googlegroups.com Date: Tue, 28 Sep 2010 12:28:05 To: Google Web Toolkitgoogle-web-toolkit@googlegroups.com Reply-To: google-web-toolkit@googlegroups.com

Re: How to slow down JavaScript execution (in Firefox)?

2010-09-28 Thread suersh babu
Hi, Use webdriver of selenium and give thread.sleep(5000) 5000 is mileseconds.It works fine for me. Regards Suresh Babu G On Mon, Sep 27, 2010 at 11:46 AM, András Csányi sayusi.a...@gmail.comwrote: On 26 September 2010 03:32, Hilco Wijbenga hilco.wijbe...@gmail.com wrote: Hi all, I'm

[gwt-contrib] Re: Changes required to make the Scaffold app look like the mocks. Added null checks AbstractProxyLi... (issue925801)

2010-09-28 Thread t . broyer
On 2010/09/27 23:49:02, rjrjr wrote: Point taken on the view contention front. I think Thomas is right that setting and clearing the view delegate should happen in start() and stop(), not in the constructor. Thanks, Thomas. You're welcome ;-) Sounds like the javadoc should say so. +1

[gwt-contrib] Remove the output from the link step before attempting to (issue928801)

2010-09-28 Thread zundel
Reviewers: fabbott, Lex, Description: Remove the output from the link step before attempting to write. Fixes a problem when the output has been set to read only permissions. Please review this at http://gwt-code-reviews.appspot.com/928801/show Affected files: M

[gwt-contrib] Re: Remove the output from the link step before attempting to (issue928801)

2010-09-28 Thread fabbott
Assuming we like the concept, I have two issues noted here. At the larger level, people should be doing this today in e.g. build.xml as a wrapper, which also works... I'm not sure whether I'd be more annoyed to fail on existing dirt, or to have something I'd tried to preserve be overwritten.

Re: [gwt-contrib] Re: Remove the output from the link step before attempting to (issue928801)

2010-09-28 Thread Scott Blum
I'm also not sure this is a bug. If it's set read-only, why would we try to clobber it? On Tue, Sep 28, 2010 at 11:18 AM, fabb...@google.com wrote: Assuming we like the concept, I have two issues noted here. At the larger level, people should be doing this today in e.g. build.xml as a

[gwt-contrib] Re: Adds a way to tune the optimization level in steps from (issue915802)

2010-09-28 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/915802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] EntityProxyId

2010-09-28 Thread Patrick Julien
It's not very clear to me how EntityProxyId helps us achieve very simple scenarios. How do you use this thing when you have pre and post operations to do in an activity? If I have an edit scenario, let's say a user with a list of phones, normally, I would follow something like this: 1. Set the

[gwt-contrib] [google-web-toolkit] r8882 committed - Extract a default timeout constant in JUnitShell....

2010-09-28 Thread codesite-noreply
Revision: 8882 Author: sco...@google.com Date: Mon Sep 27 09:59:03 2010 Log: Extract a default timeout constant in JUnitShell. http://gwt-code-reviews.appspot.com/917801/show Review by: fabb...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8882 Modified:

[gwt-contrib] Removing isChanged() because requestProxyGenerator doesn't handle is. (issue907802)

2010-09-28 Thread jlabanca
Reviewers: rjrjr, Description: Removing isChanged() because requestProxyGenerator doesn't handle is. Please review this at http://gwt-code-reviews.appspot.com/907802/show Affected files: M samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/request/EmployeeProxy.java M

[gwt-contrib] Re: remove SeriaizableLogRecord and SerializableThrowable (issue875803)

2010-09-28 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/875803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8883 committed - Fixed stale error messages. DataTransferObject has been renamed to P...

2010-09-28 Thread codesite-noreply
Revision: 8883 Author: amitman...@google.com Date: Mon Sep 27 12:02:25 2010 Log: Fixed stale error messages. DataTransferObject has been renamed to ProxyFor annotation. Patch by: amitmanjhi Review at http://gwt-code-reviews.appspot.com/927801 Review by: rj...@google.com

[gwt-contrib] [google-web-toolkit] r8885 committed - Remove the output from the link step before attempting to...

2010-09-28 Thread codesite-noreply
Revision: 8885 Author: zun...@google.com Date: Tue Sep 28 06:03:15 2010 Log: Remove the output from the link step before attempting to write. Fixes a problem when the output has been set to read only permissions. Review at http://gwt-code-reviews.appspot.com/928801

[gwt-contrib] [google-web-toolkit] r8886 committed - Changes required to make the Scaffold app look like the mocks. Added n...

2010-09-28 Thread codesite-noreply
Revision: 8886 Author: jlaba...@google.com Date: Tue Sep 28 06:28:02 2010 Log: Changes required to make the Scaffold app look like the mocks. Added null checks AbstractProxyListActivity to prevent NPEs. Relaxed the CellTable used in AbstractProxyListView to be any HasData and added a

[gwt-contrib] [google-web-toolkit] r8889 committed - Removing isChanged() because requestProxyGenerator doesn't handle is...

2010-09-28 Thread codesite-noreply
Revision: 8889 Author: jlaba...@google.com Date: Tue Sep 28 13:43:03 2010 Log: Removing isChanged() because requestProxyGenerator doesn't handle is. Review at http://gwt-code-reviews.appspot.com/907802 Review by: rj...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8889

[gwt-contrib] [google-web-toolkit] r8891 committed - Allowing final methods as Tree.addOpenHandler to be bind with...

2010-09-28 Thread codesite-noreply
Revision: 8891 Author: her...@google.com Date: Tue Sep 28 15:47:30 2010 Log: Allowing final methods as Tree.addOpenHandler to be bind with @UiHandler and also customized generic events. Review at http://gwt-code-reviews.appspot.com/881802 Review by: rj...@google.com