Re: FTP download link for GWT

2010-09-13 Thread Mayuresh
Sorry for confusion. Actually I did not mean HTTP is completely blocked. Any downloads like .zip, .exe, .msi, .jar etc. etc. and some sites hosting freeware softwares have been blocked in our organization. Even I cannot access FTP link using any browser. However I can use FTP clients like WinSCP

GWT Compile for a large code base

2010-09-13 Thread KaiWeing
Hello, we are currently evaluating GWT as a replacement view layer for a large product. This product (now Swing) consist of independend contributions which are currently compiled per module. As I understand, to build a GWT project, every module has to be built in one go (or to be more specific,

Date Range

2010-09-13 Thread shahid
I am looking for a way to be able to select multiple dates and highlight them in the calendar/date picker. What would be the best way to achieve this ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Date Range

2010-09-13 Thread Brett Thomas
Could you use two date pickers for start and end? After the start is selected, set the date of the end to the next day or something On Sep 13, 2010 6:40 AM, shahid shahidza...@gmail.com wrote: I am looking for a way to be able to select multiple dates and highlight them in the calendar/date

Re: How to get HTTP Response headers?

2010-09-13 Thread Thomas Broyer
On Sep 13, 3:10 am, ussuri michael.glas...@gmail.com wrote: I am getting an exception inside GWT: code: @Override public void onResponseReceived( Request request,                         Response response)  {         String toPop = ;         Header[] headers = response.getHeaders();    

Re: Date Range

2010-09-13 Thread shahid
hi Thomas, No I can't use that unfortunately. The design requirement is that the user should be able to select and highlight multiple dates on the calendar/date picker UI. On Sep 13, 12:47 pm, Brett Thomas brettptho...@gmail.com wrote: Could you use two date pickers for start and end? After the

How could we know if GWT project will continue to be maintained by Google?

2010-09-13 Thread marius.andreiana
Hello, While comparing GWT with other solutions for a long-term project, we wondered how could we know if GWT project will continue to be maintained by Google, since it's available for free and Google makes no (direct) profit from it. We tried to look at what projects Google has that rely on GWT

Re: PagingScrollTable Auto Resize

2010-09-13 Thread Maurice
That did the trick, many thanks! Maurice On Sep 10, 9:27 pm, daniel d.brelov...@googlemail.com wrote: query the container widget's size in a deferred command (http:// code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/ google/gwt/user/client/DeferredCommand.java?r=1061) so

Re: GWT Compile for a large code base

2010-09-13 Thread Tercio
As long as I know, it isn't possible to build the modules separately. Regards, On Sep 13, 6:39 am, KaiWeing kaiwe...@gmx.net wrote: Hello, we are currently evaluating GWT as a replacement view layer for a large product. This product (now Swing) consist of independend contributions which

Re: Date Range

2010-09-13 Thread Ashar Lohmar
a simple idea that comes into my mind right now: draw the date picker widget, and add valueChange listener, on value selection change the css for the selected date and add the date to an list an select. on the first click add the date to the list and highlight the date, on the second click remove

Re: FTP download link for GWT

2010-09-13 Thread Ashar Lohmar
use an usb stick, or use an remote server to download the SDK an after that download from there using winscp, that if u have access to a server (via ssh) that would have the permission to download zip,.. on it. On Sep 13, 9:00 am, Mayuresh mayuresh.v...@gmail.com wrote: Sorry for confusion.

Date Picker component

2010-09-13 Thread Vik
Hie I was looking for the date picker component and found one as: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/datepicker/client/DatePicker.html http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/datepicker/client/DatePicker.htmlThis is

To cancel form submit event of FormPanel on press of enter key

2010-09-13 Thread nirav patani
Is there any way to cancel a GWT submit event on press of enter key. I want to perform som validations on the gwt page and then only invoke form.submit() method. but form gets submitted by pressing of enter key. Any suggestions to do the same ?? -- You received this message because you are

DockLayoutpanel question

2010-09-13 Thread pkp
I am missing the border and no scroll bar when I run in dev mode. Any idea? Where is my code. g:DockLayoutPanel unit='EM' g:north size='5' g:LabelTop/g:Label /g:north g:west size='15' g:HTMLPanel table

SplitLayoutPanel doesn't show dragger and center widget in ie7 in GWT 2.0.4

2010-09-13 Thread Vasiliy
It shows only small piece of dregger and if i click on it center widget appears - problem only in ie7. -- 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

Difficult running a GWTTestCase

2010-09-13 Thread A2Person1978
Hi, I seek advice and help getting my first GWTTestCase running within Eclipse. I generated a new web application with the Eclipse GWT/Google App Engine plug ins. I created a module and am having difficulty getting my first GWTTestCase to run. I get the following error when I execute the

Rapid development of desktop-like web applications

2010-09-13 Thread csaffi
Hello everybody, I'm looking for a visual RAD IDE that would allow me the rapid development of desktop-like web applications. It should assist me on data binding too. If you know Visual Basic, it should be similar to it. The web application requirements are: - CRUD functionality for record

Custom map

2010-09-13 Thread chinese
Hello everyone! I have a question about custom map in GWT. In fact, I've to create an application within an interactive map like google maps, but the map is uploaded from my file system. For example, I have an apartment map and I want to upload it in my application to use it for create clickable

Re: Gwt-platform vs Guit

2010-09-13 Thread Nicolas ANTONIAZZI
Hello all, just about your sentence Chistian : That's why, I'm giving a little more work to my views that apply to simple local task that isn't relevant to the presenter, thus simplifying my code and making it more easy to understand and more easy to read. Yes I have to test it, but I have

Re: Rapid development of desktop-like web applications

2010-09-13 Thread marius.andreiana
Hi, You could have a look on http://www.springsource.org/roo (see this presentation http://www.youtube.com/watch?v=a46hJYtsP-8) Deployment is hassle-free on App Engine. Reports and graphs would still require manual coding though. You could also try free versions of Visual Studio and SQL Server.

Re: Gwt-platform vs Guit

2010-09-13 Thread Christian Goudreau
Nah no unit test with GwtTestCase needed. In fact I'm using pure MVP pattern as exlained by Martin Fowler and Gwt MVP part 2. Supervising controller, my view call on the presenter a handler associated with my UiEvents. That's the only work my view does. Cheers, On Mon, Sep 13, 2010 at 2:24 PM,

Re: clearing or preventing double-click selection

2010-09-13 Thread lineman78
In your onClick method you can call event.preventDefault() to keep the browser from handling the event. On Sep 12, 1:29 pm, decitrig rws...@gmail.com wrote: I'm working on an application that responds to double clicks on text labels, and I'd like to either disable double-click text selection or

Re: How could we know if GWT project will continue to be maintained by Google?

2010-09-13 Thread lineman78
I am pretty sure gmail is.. On Sep 13, 7:48 am, marius.andreiana marius.andrei...@gmail.com wrote: Hello, While comparing GWT with other solutions for a long-term project, we wondered how could we know if GWT project will continue to be maintained by Google, since it's available for free and

Unchecked exceptions from server to client

2010-09-13 Thread Kasper Hansen
Hi, I have this; public abstract class CreateException extends RuntimeException implements Serializable { } Notice that I extend from RuntimeException, making it an unchecked exception. Then I have these two; public class DuplicateEmailCreationException extends CreateException { } public

Re: clearing or preventing double-click selection

2010-09-13 Thread decitrig
On Sep 13, 3:08 pm, lineman78 linema...@gmail.com wrote: In your onClick method you can call event.preventDefault() to keep the browser from handling the event. I already tried that in the doubleclick handler, no luck. Just implemented it in a single-click handler, still no luck. On Sep 12,

Fancy Tooltip or PopupPanel

2010-09-13 Thread Jason M
I'm trying to mimic the google maps popups with an arrow from the popup pointing towards a widget. How can this be accomplished in GWT? What I'm really trying to do is have a vertical panel of radio buttons representing products, and when a product/radio button is selected, have a popup display

Re: To cancel form submit event of FormPanel on press of enter key

2010-09-13 Thread lineman78
add a submit handler and you can call cancel on the event. On Sep 13, 9:58 am, nirav patani nirav...@gmail.com wrote: Is there any way to cancel a GWT submit event on press of enter key. I want to perform som validations on the gwt page and then only invoke form.submit() method. but form gets

compile output without obfuscate css

2010-09-13 Thread asianCoolz
i know able to use @external on each css to prevent obfuscate of css. is there any compile flag i can set so that when compile all css will not be obfuscate? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: How could we know if GWT project will continue to be maintained by Google?

2010-09-13 Thread Paul Stockley
gmail is written with the google closure library/compiler On Sep 13, 3:11 pm, lineman78 linema...@gmail.com wrote: I am pretty sure gmail is.. On Sep 13, 7:48 am, marius.andreiana marius.andrei...@gmail.com wrote: Hello, While comparing GWT with other solutions for a long-term

Error compiling GWT source code from trunk

2010-09-13 Thread hezjing
Hi I have checked out GWT source code from the trunk and encountered the following the error when compiled with Apache Ant 1.8.0: C:\gwt\trunkant Buildfile: C:\gwt\trunk\build.xml [taskdef] Could not load definitions from resource net/sf/antcontrib/antlib.xml. It could not be found.

Re: Error compiling GWT source code from trunk

2010-09-13 Thread hezjing
I'm sorry, please ignore this email and there are some missing folders in my svn folder :-( On Tue, Sep 14, 2010 at 10:20 AM, hezjing hezj...@gmail.com wrote: Hi I have checked out GWT source code from the trunk and encountered the following the error when compiled with Apache Ant 1.8.0:

Re: Error compiling GWT source code from trunk

2010-09-13 Thread hezjing
H ... I think I have already checked-out the full source code from trunk now, but the same compilation error still exist :-( I must be missing something here, can someone please help? On Tue, Sep 14, 2010 at 10:54 AM, hezjing hezj...@gmail.com wrote: I'm sorry, please ignore this email

Re: compile output without obfuscate css

2010-09-13 Thread Brett Thomas
Yeah, you can use the -style flag to do this On Mon, Sep 13, 2010 at 9:29 PM, asianCoolz second.co...@gmail.com wrote: i know able to use @external on each css to prevent obfuscate of css. is there any compile flag i can set so that when compile all css will not be obfuscate? -- You

[gwt-contrib] Extract violations from being a field in sideEffects to a top-level field. Removed the handling ... (issue846802)

2010-09-13 Thread amitmanjhi
Reviewers: rjrjr, robertvawter, Description: Extract violations from being a field in sideEffects to a top-level field. Removed the handling of violations from DeltaValuesStoreJsonImpl.onCommit method. Will do further cleanup once Receiver has a onViolations method. Patch by: amitmanjhi Review

[gwt-contrib] PopupPanel rolldown animation is only accesable with incubator!?

2010-09-13 Thread stuckagain
Hi, While factoring out a dependency on GWT incubator I stumbled upon the way the animation type is selected in the PopupPanel. This is what the javadoc says: /** * Sets the animation used to animate this popup. Used by gwt- incubator to * allow DropDownPanel to override the default popup

[gwt-contrib] Re: Makes IsWidget a first class concept, and makes it convenient to (issue864801)

2010-09-13 Thread t . broyer
LGTM (FWIW, and speaking only about the API) http://gwt-code-reviews.appspot.com/864801/diff/3001/4034 File user/test/com/google/gwt/user/client/ui/SimplePanelTest.java (right): http://gwt-code-reviews.appspot.com/864801/diff/3001/4034#newcode35

[gwt-contrib] Re: EventBus interface

2010-09-13 Thread Thomas Broyer
On Sep 13, 1:15 am, Jarrod Carlson jarrod.carl...@gmail.com wrote: Well, when I say always present, I mean _probably_ always present. So in this case, simply not unregistering _shouldn't_ be an issue. Your use of a HandlerRegistrationPool is clever... I might try that; thanks. Well, if I

[gwt-contrib] Re: Makes IsWidget a first class concept, and makes it convenient to (issue864801)

2010-09-13 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/864801/diff/29001/30010 File user/src/com/google/gwt/user/client/ui/AcceptsOneWidget.java (right): http://gwt-code-reviews.appspot.com/864801/diff/29001/30010#newcode23 user/src/com/google/gwt/user/client/ui/AcceptsOneWidget.java:23: void

[gwt-contrib] Re: Introduces Widget.LoadingDelegate, to allow a widget owner to act when (issue866801)

2010-09-13 Thread bobv
LGTM. Are there any GWT widgets that override onLoad / onUnload without calling super? Would this be better as an event type instead of a delegate? http://gwt-code-reviews.appspot.com/866801/diff/1/2 File user/src/com/google/gwt/user/client/ui/Widget.java (right):

[gwt-contrib] Re: Minor refactor of ClientBundles used in Cell Widgets. Ensures that all method names in ClientBun... (issue859801)

2010-09-13 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/859801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Demonstrate client-side Editor errors. (issue857802)

2010-09-13 Thread bobv
Reviewers: rjrjr, Message: This only implements errors created within the editor hierarchy. You can see this in action by running the DTRF sample and entering a nonsensical value in the zipcode field. This patch is a little bit rough, but I'd like to get some feedback on the overall approach

Re: [gwt-contrib] Re: EventBus interface

2010-09-13 Thread Patrick Julien
They're complimentary. ResettableEventBus is still hard to use from inside a widget because you're already have an interface to register. So the pool concept is when you already have HandlerRegistration objects. However, this new WidgetLoading delegate does make it easier. On Mon, Sep 13,

Re: [gwt-contrib] GWT Compiler or widget.gwt.xml file optimisation for 2.1 ?

2010-09-13 Thread Joel Webber
This is slightly off-topic, but I'm curious -- would having a formal nightly build actually be acceptable for use within your locked-down environment? And would the same go for offline dev-mode plugin installers? Le 12 septembre 2010 08:43, David david.no...@gmail.com a écrit : Eric, No I'm

Re: [gwt-contrib] GWT Compiler or widget.gwt.xml file optimisation for 2.1 ?

2010-09-13 Thread David
Hi Eric, It would be acceptable for testing purpose only. releases to production have to be official versions. But it would make it soo much easier to already start using features that should normally be available by the time we go to production. David On Mon, Sep 13, 2010 at 3:02 PM, Joel

Re: [gwt-contrib] PopupPanel rolldown animation is only accesable with incubator!?

2010-09-13 Thread Joel Webber
@jlabanca: Sounds like a bit of an anachronism in the code. Is this something we can clean up now (and do you need a hand getting it done if so)? Le 13 septembre 2010 03:50, stuckagain david.no...@gmail.com a écrit : Hi, While factoring out a dependency on GWT incubator I stumbled upon the

[gwt-contrib] Re: Introduces Widget.LoadingDelegate, to allow a widget owner to act when (issue866801)

2010-09-13 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/866801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Wrong error message...

2010-09-13 Thread dflorey
...in ResizeComposite:25 java.lang.AssertionError: LayoutComposite requires that its wrapped widget implement HasLayout should be java.lang.AssertionError: LayoutComposite requires that its wrapped widget implements RequiresResize --

Re: [gwt-contrib] Wrong error message...

2010-09-13 Thread Joel Webber
Whoops, looks like I missed a rename :) Thanks for the heads-up. Le 13 septembre 2010 11:03, dflorey daniel.flo...@gmail.com a écrit : ...in ResizeComposite:25 java.lang.AssertionError: LayoutComposite requires that its wrapped widget implement HasLayout should be

Re: [gwt-contrib] PopupPanel rolldown animation is only accesable with incubator!?

2010-09-13 Thread John LaBanca
We didn't want to expose a setAnimation() method in PopupPanel until we had time to work out an API that would work for all widgets. However, you can use a JSNI to access protected methods from another package.. I know it isn't pretty, but it should get the job done. private native void

[gwt-contrib] Re: Introduces Widget.LoadingDelegate, to allow a widget owner to act when (issue866801)

2010-09-13 Thread Ray Ryan
On Mon, Sep 13, 2010 at 5:06 AM, b...@google.com wrote: LGTM. Are there any GWT widgets that override onLoad / onUnload without calling super? Nope. Would this be better as an event type instead of a delegate? I don't think so. I think this is much more in the nature of one owner, one

[gwt-contrib] Re: Introduces Widget.LoadingDelegate, to allow a widget owner to act when (issue866801)

2010-09-13 Thread bobv
Would this be better as an event type instead of a delegate? I don't think so. I think this is much more in the nature of one owner, one widget. Am I being arbitrary? If it were an event, it would be trivial for multiple interested parties to be notified. If it's a delegate, you would have

Re: [gwt-contrib] Makes IsWidget a first class concept, and makes it convenient to (issue864801)

2010-09-13 Thread Stephen Haberman
Makes IsWidget a first class concept, and makes it convenient to use with all standard panels. This lets us get rid of Activity.Display. I think this is great. Is there anyway it could be taken further and IsXxx interfaces added for all widgets? I ask because I've been doing this on my own,

Re: [gwt-contrib] PopupPanel rolldown animation is only accesable with incubator!?

2010-09-13 Thread Stephen Haberman
We didn't want to expose a setAnimation() method in PopupPanel until we had time to work out an API that would work for all widgets. FWIW, I also have a PopupPanel subclass with a custom animation (fading lightbox) squatting in the c.g.g.user.client.ui package to get around this restriction.

[gwt-contrib] How to detect HTML5 support?

2010-09-13 Thread dflorey
I'm working on a HTML5 widget library that will emulate html5 when it is not supported by the browser (html5 form elements etc.) I don't know what is the best approach to take advantage of deferred binding to use the native/emulated classes. Is it better to extend the user agent to be able to

[gwt-contrib] Re: Adds a -strict option to the GWT compiler. If this option is specified, (issue853801)

2010-09-13 Thread spoon
http://gwt-code-reviews.appspot.com/853801/diff/4001/5008 File user/test/com/google/gwt/dev/StrictModeTest.java (right): http://gwt-code-reviews.appspot.com/853801/diff/4001/5008#newcode45 user/test/com/google/gwt/dev/StrictModeTest.java:45: private File outDir; The comment needs updating. I

Re: [gwt-contrib] GWT Compiler or widget.gwt.xml file optimisation for 2.1 ?

2010-09-13 Thread Eric Ayers
As far as the -Dgwt.speedtracerlog option goes, the most recent milestone should have the feature I had in mind for diagnosing further. On Mon, Sep 13, 2010 at 9:11 AM, David david.no...@gmail.com wrote: Hi Eric, It would be acceptable for testing purpose only. releases to production have to

Re: [gwt-contrib] GWT Compiler or widget.gwt.xml file optimisation for 2.1 ?

2010-09-13 Thread John Tamplin
On Mon, Sep 13, 2010 at 9:11 AM, David david.no...@gmail.com wrote: It would be acceptable for testing purpose only. releases to production have to be official versions. But it would make it soo much easier to already start using features that should normally be available by the time we go to

[gwt-contrib] Re: Introduces Widget.LoadingDelegate, to allow a widget owner to act when (issue866801)

2010-09-13 Thread Ray Ryan
John L concurs off line, I'll make the change. On Mon, Sep 13, 2010 at 8:33 AM, b...@google.com wrote: Would this be better as an event type instead of a delegate? I don't think so. I think this is much more in the nature of one owner, one widget. Am I being arbitrary? If it were an

[gwt-contrib] Re: Extract violations from being a field in sideEffects to a top-level field. Removed the handling ... (issue846802)

2010-09-13 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/846802/diff/1/8 File user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java (right): http://gwt-code-reviews.appspot.com/846802/diff/1/8#newcode672 user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java:672:

[gwt-contrib] Re: Adds a -strict option to the GWT compiler. If this option is specified, (issue853801)

2010-09-13 Thread scottb
http://gwt-code-reviews.appspot.com/853801/diff/4001/5008 File user/test/com/google/gwt/dev/StrictModeTest.java (right): http://gwt-code-reviews.appspot.com/853801/diff/4001/5008#newcode45 user/test/com/google/gwt/dev/StrictModeTest.java:45: private File outDir; Strange, I don't see outDir

[gwt-contrib] Re: Comments / cleanup for RPC generators (issue862801)

2010-09-13 Thread scottb
http://gwt-code-reviews.appspot.com/862801/diff/2001/3004 File user/src/com/google/gwt/user/rebind/rpc/FieldSerializerCreator.java (right): http://gwt-code-reviews.appspot.com/862801/diff/2001/3004#newcode255 user/src/com/google/gwt/user/rebind/rpc/FieldSerializerCreator.java:255: * return

[gwt-contrib] Re: Adds a -strict option to the GWT compiler. If this option is specified, (issue853801)

2010-09-13 Thread spoon
http://gwt-code-reviews.appspot.com/853801/diff/4001/5008 File user/test/com/google/gwt/dev/StrictModeTest.java (right): http://gwt-code-reviews.appspot.com/853801/diff/4001/5008#newcode45 user/test/com/google/gwt/dev/StrictModeTest.java:45: private File outDir; You're right. I'll delete it. I

[gwt-contrib] Re: Fix the logging sample - somehow the client and shared directories got deleted. Also a minor fix... (issue842802)

2010-09-13 Thread fredsa
LGTM http://gwt-code-reviews.appspot.com/842802/diff/1/8 File user/src/com/google/gwt/logging/impl/DevModeLoggingFixes.java (right): http://gwt-code-reviews.appspot.com/842802/diff/1/8#newcode37 user/src/com/google/gwt/logging/impl/DevModeLoggingFixes.java:37: public class DevModeLoggingFixes

[gwt-contrib] Re: Adds a -strict option to the GWT compiler. If this option is specified, (issue853801)

2010-09-13 Thread Scott Blum
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Extract violations from being a field in sideEffects to a top-level field. Removed the handling ... (issue846802)

2010-09-13 Thread Amit Manjhi
RequestData.SIDE_EFFECTS_TOKEN is still being used at one place. Commiting the change. On Mon, Sep 13, 2010 at 10:03 AM, rj...@google.com wrote: LGTM http://gwt-code-reviews.appspot.com/846802/diff/1/8 File user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java (right):

[gwt-contrib] Re: Add stack trace display to the rest of the log handlers in dev mode (issue861801)

2010-09-13 Thread fredsa
IMO, showStackTraces in the formatter ctors should always be true. If there's a stack trace, I always want to see it, even if it is obfuscated. http://gwt-code-reviews.appspot.com/861801/diff/1/6 File user/src/com/google/gwt/logging/client/HtmlLogFormatter.java (right):

[gwt-contrib] Re: Makes IsWidget a first class concept, and makes it convenient to (issue864801)

2010-09-13 Thread rjrjr
http://gwt-code-reviews.appspot.com/864801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Makes IsWidget a first class concept, and makes it convenient to (issue864801)

2010-09-13 Thread rjrjr
Thanks, all. Amazing weekend. Submitting this now (I hope). http://gwt-code-reviews.appspot.com/864801/diff/29001/30010 File user/src/com/google/gwt/user/client/ui/AcceptsOneWidget.java (right): http://gwt-code-reviews.appspot.com/864801/diff/29001/30010#newcode23

[gwt-contrib] Re: Add the option to use JSON rather than GWT RPC in remote logging (issue830802)

2010-09-13 Thread fredsa
http://gwt-code-reviews.appspot.com/830802/diff/3001/4002 File user/src/com/google/gwt/logging/client/JsonLogRecordClientUtil.java (right): http://gwt-code-reviews.appspot.com/830802/diff/3001/4002#newcode27 user/src/com/google/gwt/logging/client/JsonLogRecordClientUtil.java:27: * A set of

[gwt-contrib] [google-web-toolkit] r8758 committed - Public: Restore the samples/validation classes/marker...

2010-09-13 Thread codesite-noreply
Revision: 8758 Author: ncha...@google.com Date: Sat Sep 11 15:57:40 2010 Log: Public: Restore the samples/validation classes/marker Its needed by Eclipse or it throws an error because it can't find the classes/ directory where it is supposed to dump compiled files. Review at

[gwt-contrib] [google-web-toolkit] r8759 committed - Fixes typo in ResizeComposite.

2010-09-13 Thread codesite-noreply
Revision: 8759 Author: j...@google.com Date: Mon Sep 13 05:11:29 2010 Log: Fixes typo in ResizeComposite. http://code.google.com/p/google-web-toolkit/source/detail?r=8759 Modified: /trunk/user/src/com/google/gwt/user/client/ui/ResizeComposite.java === ---

[gwt-contrib] [google-web-toolkit] r8760 committed - Extract violations from being a field in sideEffects to a top-level fi...

2010-09-13 Thread codesite-noreply
Revision: 8760 Author: amitman...@google.com Date: Mon Sep 13 07:15:23 2010 Log: Extract violations from being a field in sideEffects to a top-level field. Removed the handling of violations from DeltaValuesStoreJsonImpl.onCommit method. Will do further cleanup once Receiver has a

[gwt-contrib] Re: Fixes issue 5270 (issue839803)

2010-09-13 Thread scottb
LGTM. John, do you agree? http://gwt-code-reviews.appspot.com/839803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8761 committed - Fix the logging sample - somehow the client and shared directories got...

2010-09-13 Thread codesite-noreply
Revision: 8761 Author: unn...@google.com Date: Mon Sep 13 08:42:16 2010 Log: Fix the logging sample - somehow the client and shared directories got deleted. Also a minor fix for devmode, so that LogRecords with no logger name set are handled gracefully Review at

[gwt-contrib] Re: Fixes issue 5270 (issue839803)

2010-09-13 Thread jat
On 2010/09/13 18:36:53, scottb wrote: LGTM. John, do you agree? LGTM http://gwt-code-reviews.appspot.com/839803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property from public API. (issue842803)

2010-09-13 Thread mmendez
Reviewers: amitmanjhi, Description: Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property from public API. Properties are now computed from the *Proxy classes and emitted into the generated *ProxyImpl classes. Server side code will infer what the properties should be by

[gwt-contrib] Re: Improve locale handling for default scripts and languages where some (issue851802)

2010-09-13 Thread pdr
LGTM http://gwt-code-reviews.appspot.com/851802/diff/19/3013 File user/test/com/google/gwt/i18n/I18NTest_pa_Arab.gwt.xml (right): http://gwt-code-reviews.appspot.com/851802/diff/19/3013#newcode22 user/test/com/google/gwt/i18n/I18NTest_pa_Arab.gwt.xml:22: set-property name = locale value =

[gwt-contrib] Re: Demonstrate client-side Editor errors. (issue857802)

2010-09-13 Thread bobv
http://gwt-code-reviews.appspot.com/857802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Improve locale handling for default scripts and languages where some (issue851802)

2010-09-13 Thread jat
Thanks for the review. http://gwt-code-reviews.appspot.com/851802/diff/19/3013 File user/test/com/google/gwt/i18n/I18NTest_pa_Arab.gwt.xml (right): http://gwt-code-reviews.appspot.com/851802/diff/19/3013#newcode22 user/test/com/google/gwt/i18n/I18NTest_pa_Arab.gwt.xml:22: set-property name =

[gwt-contrib] Re: Demonstrate client-side Editor errors. (issue857802)

2010-09-13 Thread Ray Ryan
LGTM On Mon, Sep 13, 2010 at 12:26 PM, b...@google.com wrote: http://gwt-code-reviews.appspot.com/857802/diff/3001/4001 File samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/client/PersonEditorWorkflow.java (right):

[gwt-contrib] [google-web-toolkit] r8762 committed - Comments / cleanup for RPC generators....

2010-09-13 Thread codesite-noreply
Revision: 8762 Author: sco...@google.com Date: Mon Sep 13 09:08:54 2010 Log: Comments / cleanup for RPC generators. http://gwt-code-reviews.appspot.com/862801/show Suggested by: bobv Review by: bobv http://code.google.com/p/google-web-toolkit/source/detail?r=8762 Modified:

[gwt-contrib] Re: Refactoring the Showcase sample to use standards mode, and make use of LayoutPanels. The new Sho... (issue837801)

2010-09-13 Thread jat
LGTM, assuming the RTL CSS question is answered. http://gwt-code-reviews.appspot.com/837801/diff/1/2 File samples/showcase/src/com/google/gwt/i18n/client/LocalizableResource.properties (right): http://gwt-code-reviews.appspot.com/837801/diff/1/2#newcode1

[gwt-contrib] Re: Refactoring the Showcase sample to use standards mode, and make use of LayoutPanels. The new Sho... (issue837801)

2010-09-13 Thread jlabanca
http://gwt-code-reviews.appspot.com/837801/diff/1/2 File samples/showcase/src/com/google/gwt/i18n/client/LocalizableResource.properties (right): http://gwt-code-reviews.appspot.com/837801/diff/1/2#newcode1 samples/showcase/src/com/google/gwt/i18n/client/LocalizableResource.properties:1:

[gwt-contrib] Re: Add stack trace display to the rest of the log handlers in dev mode (issue861801)

2010-09-13 Thread unnurg
http://gwt-code-reviews.appspot.com/861801/diff/1/6 File user/src/com/google/gwt/logging/client/HtmlLogFormatter.java (right): http://gwt-code-reviews.appspot.com/861801/diff/1/6#newcode98 user/src/com/google/gwt/logging/client/HtmlLogFormatter.java:98: text = text.replaceAll(lt;brgt;, br); On

[gwt-contrib] Re: Introduces Widget.LoadingDelegate, to allow a widget owner to act when (issue866801)

2010-09-13 Thread rjrjr
http://gwt-code-reviews.appspot.com/866801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introduces Widget.LoadingDelegate, to allow a widget owner to act when (issue866801)

2010-09-13 Thread rjrjr
Okay, now it's event based. Is good? http://gwt-code-reviews.appspot.com/866801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introduces AttachEvent, to allow a widget owner to act when (issue866801)

2010-09-13 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/866801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8765 committed - JClassType.getOverridableMethods() could return methods overridden as ...

2010-09-13 Thread codesite-noreply
Revision: 8765 Author: t.bro...@gmail.com Date: Mon Sep 13 10:29:13 2010 Log: JClassType.getOverridableMethods() could return methods overridden as 'final'. In AbstractMembers, final methods were simply ignored instead of being treated as possible overrides of already seenm ethods. A final

[gwt-contrib] [google-web-toolkit] r8765 committed - JClassType.getOverridableMethods() could return methods overridden as ...

2010-09-13 Thread codesite-noreply
Revision: 8765 Author: t.bro...@gmail.com Date: Mon Sep 13 10:29:13 2010 Log: JClassType.getOverridableMethods() could return methods overridden as 'final'. In AbstractMembers, final methods were simply ignored instead of being treated as possible overrides of already seenm ethods. A final

[gwt-contrib] Updates RequestFactory's Receiver type with onViolation() and onFailure() methods, making it an ... (issue855802)

2010-09-13 Thread bobv
Reviewers: amitmanjhi, Description: Updates RequestFactory's Receiver type with onViolation() and onFailure() methods, making it an abstract type. Patch by: bobv Review by: amitmanjhi Please review this at http://gwt-code-reviews.appspot.com/855802/show Affected files: M

[gwt-contrib] Re: Updates RequestFactory's Receiver type with onViolation() and onFailure() methods, making it an ... (issue855802)

2010-09-13 Thread rjrjr
http://gwt-code-reviews.appspot.com/855802/diff/1/6 File user/src/com/google/gwt/requestfactory/shared/Receiver.java (right): http://gwt-code-reviews.appspot.com/855802/diff/1/6#newcode40 user/src/com/google/gwt/requestfactory/shared/Receiver.java:40:

[gwt-contrib] Re: Add the option to use JSON rather than GWT RPC in remote logging (issue830802)

2010-09-13 Thread unnurg
http://gwt-code-reviews.appspot.com/830802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add the option to use JSON rather than GWT RPC in remote logging (issue830802)

2010-09-13 Thread unnurg
http://gwt-code-reviews.appspot.com/830802/diff/3001/4002 File user/src/com/google/gwt/logging/client/JsonLogRecordClientUtil.java (right): http://gwt-code-reviews.appspot.com/830802/diff/3001/4002#newcode27 user/src/com/google/gwt/logging/client/JsonLogRecordClientUtil.java:27: * A set of

[gwt-contrib] Optimize server-side LinkedHashMap_CustomFieldSerializer. (issue829802)

2010-09-13 Thread scottb
Reviewers: rice, Description: 1) Don't keep trying reflection if it's not working. 2) Cache the reflective Field needed for accessOrder. 3) Reuse KEY objects instead of making new ones each time. Please review this at http://gwt-code-reviews.appspot.com/829802/show Affected files: M

[gwt-contrib] Re: Updates RequestFactory's Receiver type with onViolation() and onFailure() methods, making it an ... (issue855802)

2010-09-13 Thread BobV
The existing implementation offers no way to do anything useful with the exception. An empty implementation of onFailed() is insufficient or the exception gets dropped on the floor. Interface it is then. --Bob. (Android) -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Optimize server-side LinkedHashMap_CustomFieldSerializer. (issue829802)

2010-09-13 Thread scottb
http://gwt-code-reviews.appspot.com/829802/diff/1/2 File user/src/com/google/gwt/user/client/rpc/core/java/util/LinkedHashMap_CustomFieldSerializer.java (right): http://gwt-code-reviews.appspot.com/829802/diff/1/2#newcode107

[gwt-contrib] Re: Updates RequestFactory's Receiver type with onViolation() and onFailure() methods, making it an ... (issue855802)

2010-09-13 Thread Ray Ryan
They're not getting dropped on the floor now. They're reaching the uncaught exception handler. Should we voice? On Mon, Sep 13, 2010 at 3:01 PM, BobV b...@google.com wrote: The existing implementation offers no way to do anything useful with the exception. An empty implementation of

[gwt-contrib] Re: Updates RequestFactory's Receiver type with onViolation() and onFailure() methods, making it an ... (issue855802)

2010-09-13 Thread Ray Ryan
Nevermind, smart pills kicked in. Understood. On Mon, Sep 13, 2010 at 3:03 PM, Ray Ryan rj...@google.com wrote: They're not getting dropped on the floor now. They're reaching the uncaught exception handler. Should we voice? On Mon, Sep 13, 2010 at 3:01 PM, BobV b...@google.com wrote: The

[gwt-contrib] Re: Updates RequestFactory's Receiver type with onViolation() and onFailure() methods, making it an ... (issue855802)

2010-09-13 Thread amitmanjhi
More comments: - Add tests to ensure that onViolation and onError methods are called? - Additionally, remove the violations field from SyncResult and fix AbstractProxyEditActivity? - Similarly, the tests in RequestFactoryTest that check for violations will need to be fixed.

[gwt-contrib] Re: Add the option to use JSON rather than GWT RPC in remote logging (issue830802)

2010-09-13 Thread Fred Sauer
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >