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

2009-12-03 Thread codesite-noreply
Comment by jeffvictor: Is anyone else experiencing *extremely* slow DevMode on a mac? I'm using Leopard 10.5.8 with all of the updates and running DevMode with 64 bit Java 6. I experience the same slowness when using 32 bit Java 5 as well. I'm using 2.0 RC 2 and experience the problem

[gwt-contrib] NumberFormat JavaDoc fix

2009-12-03 Thread jlabanca
Reviewers: jat, Description: Simple fix in NumberFormat JavaDoc. Please review this at http://gwt-code-reviews.appspot.com/118805 Affected files: user/src/com/google/gwt/i18n/client/NumberFormat.java Index: user/src/com/google/gwt/i18n/client/NumberFormat.java

[gwt-contrib] Re: NumberFormat JavaDoc fix

2009-12-03 Thread John Tamplin
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Mail sample doesn't resize mail list to the number of emails

2009-12-03 Thread jlabanca
Reviewers: jgw, Description: The Mail sample doesn't resize the table containing the mail list to the number of emails on the last page. This results in a vertical scroll bar that doesn't go away when it isn't needed. Fix: We now resize the table dynamically. Testing: Verified

[gwt-contrib] Re: Provide better exceptions for bad values in an RPC stream (not for 2.0)

2009-12-03 Thread דניאל רייס
No, what do I need to do for that? Dan On Thu, Dec 3, 2009 at 11:09 AM, robertvaw...@google.com wrote: Did you test this case with the deRPC code base? http://gwt-code-reviews.appspot.com/118802 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Minor Showcase tweaks

2009-12-03 Thread jlabanca
Reviewers: jgw, Description: This patch tweaks a couple of minor issues in showcase. 1. In the StackPanel example, the tree in the first stack should be open by default. 2. In the DatePicker sample, the DateBox should only include the date component. The time component of the date has very

[gwt-contrib] Re: Test targets in project.ant.xmlsrc do not include project src directory

2009-12-03 Thread rjrjr
Please make the test do something more real than assertTrue(true), something actually involving the app. http://gwt-code-reviews.appspot.com/118807 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] GWT RC2: TabPanelLayout -- no supporting CSS?

2009-12-03 Thread Joel Webber
Great, I'm glad that worked out ok. Just for the record, we very much want to do better than having to mix @external and obfuscated CSS like this. We fully intend to revisit how styles and themes are applied, both to make it easier and more efficient, as soon as we get 2.0 out the door. On Thu,

[gwt-contrib] Re: Minor Showcase tweaks

2009-12-03 Thread jgw
On 2009/12/03 16:36:33, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/118806 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] GWT RC2 - Events are being hid by Layout layers in UIBinder

2009-12-03 Thread Stuart Moffatt
@jgw, Now that my TabLayoutPanel is working (thanks, btw), I want to go back to using LayoutPanel and g:layer. The problem is, my UI requires a few layers that nest nicely together like the old VerticalPanel (one above the other as you go down the page). Using a LayoutPanel with layers, my UI

[gwt-contrib] Re: Test targets in project.ant.xmlsrc do not include project src directory

2009-12-03 Thread jgw
On 2009/12/03 21:11:22, Ray Ryan wrote: Please make the test do something more real than assertTrue(true), something actually involving the app. LGTM. http://gwt-code-reviews.appspot.com/118807 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Test targets in project.ant.xmlsrc do not include project src directory

2009-12-03 Thread jgw
On 2009/12/03 22:20:58, jgw wrote: On 2009/12/03 21:11:22, Ray Ryan wrote: Please make the test do something more real than assertTrue(true), something actually involving the app. LGTM. (Assuming you do something like Ray suggestd) http://gwt-code-reviews.appspot.com/118807 --

Re: [gwt-contrib] GWT RC2 - Events are being hid by Layout layers in UIBinder

2009-12-03 Thread Ray Ryan
VerticalPanel and HorizontalPanel are not dead yet, for exactly this reason. But they're still table based. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] GWT RC2 - Events are being hid by Layout layers in UIBinder

2009-12-03 Thread Joel Webber
What Ray said. Mostly. The table-based HorizontalPanel is practically impossible to reproduce in CSS. You can use all kinds of inline-block hackery (since its cross-browser support is poor), but even that breaks down under various circumstances. VerticalPanel, on the other hand, is less useful (I

[gwt-contrib] [google-web-toolkit] r7244 committed - Resizing MailList to avoid unneccessary vertical scroll bar....

2009-12-03 Thread codesite-noreply
Revision: 7244 Author: jlaba...@google.com Date: Thu Dec 3 14:30:41 2009 Log: Resizing MailList to avoid unneccessary vertical scroll bar. Patch by: jlabanca Review by: jgw http://code.google.com/p/google-web-toolkit/source/detail?r=7244 Modified:

[gwt-contrib] Re: Test targets in project.ant.xmlsrc do not include project src directory

2009-12-03 Thread jlabanca
After talking to jgw, I'm going to commit this change so its available in the 2.0 branch asap and create another bug to update the generated test case. http://gwt-code-reviews.appspot.com/118807 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7245 committed - Minor tweaks to Showcase....

2009-12-03 Thread codesite-noreply
Revision: 7245 Author: jlaba...@google.com Date: Thu Dec 3 14:31:29 2009 Log: Minor tweaks to Showcase. Patch by: jlabanca Review by: jgw http://code.google.com/p/google-web-toolkit/source/detail?r=7245 Modified:

[gwt-contrib] [google-web-toolkit] r7246 committed - Adding src to the classpath of generated test.dev and test.prod target...

2009-12-03 Thread codesite-noreply
Revision: 7246 Author: jlaba...@google.com Date: Thu Dec 3 14:35:35 2009 Log: Adding src to the classpath of generated test.dev and test.prod targets. We also need to improve the generated test to actually do something with code in src. Patch by: jlabanca Review by: jgw

Re: [gwt-contrib] GWT RC2 - Events are being hid by Layout layers in UIBinder

2009-12-03 Thread Stuart Moffatt
@jgw, rjrjr, You can use all kinds of inline-block hackery (since its cross-browser support is poor), but even that breaks down under various circumstances. Which is what I was trying to avoid by going completely table-less. VerticalPanel, on the other hand, is less useful (I find, anyway).

[gwt-contrib] [google-web-toolkit] r7247 committed - tr...@7244 was merged into this branch...

2009-12-03 Thread codesite-noreply
Revision: 7247 Author: jlaba...@google.com Date: Thu Dec 3 14:37:30 2009 Log: tr...@7244 was merged into this branch Resize MailList in Mail sample. svn merge --ignore-ancestry -c7244 https://google-web-toolkit.googlecode.com/svn/trunk/ . Patch by: jlabanca

Re: [gwt-contrib] GWT RC2 - Events are being hid by Layout layers in UIBinder

2009-12-03 Thread Stuart Moffatt
..ah, let me restate that. This ui.xml makes the tab panel layout in the center of the dock panel disappear: g:DockLayoutPanel unit='EM' g:north size='5' g:HTMLdivnorth/div/g:HTML /g:north g:east size='2' g:HTMLdiveast/div/g:HTML

[gwt-contrib] [google-web-toolkit] r7248 committed - tr...@7245 was merged into this branch...

2009-12-03 Thread codesite-noreply
Revision: 7248 Author: jlaba...@google.com Date: Thu Dec 3 14:38:45 2009 Log: tr...@7245 was merged into this branch Showcase sample tweaks. svn merge --ignore-ancestry -c7245 https://google-web-toolkit.googlecode.com/svn/trunk/ . Patch by: jlabanca

[gwt-contrib] [google-web-toolkit] r7249 committed - tr...@7246 was merged into this branch...

2009-12-03 Thread codesite-noreply
Revision: 7249 Author: jlaba...@google.com Date: Thu Dec 3 14:43:23 2009 Log: tr...@7246 was merged into this branch Adding src to classpath of generated test targets. svn merge --ignore-ancestry -c7246 https://google-web-toolkit.googlecode.com/svn/trunk/ . Patch by: jlabanca

[gwt-contrib] Re: Mail sample doesn't resize mail list to the number of emails

2009-12-03 Thread jgw
On 2009/12/03 16:20:53, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/117804 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] GWT RC2 - Events are being hid by Layout layers in UIBinder

2009-12-03 Thread Stuart Moffatt
Caught it: the height of the TabLayoutPanel must be explicitly set, either programmatically or via a {style.*} setting in the ui.xml, or else the content in the tabs cannot be seen. So V/H panels survive the day. My apologies for the traffic. sfm On Thu, Dec 3, 2009 at 5:44 PM, Stuart Moffatt