[gwt-contrib] [google-web-toolkit commit] r5450 - Allow an app to force use of latin digits/separators instead

2009-05-20 Thread codesite-noreply
Author: j...@google.com Date: Wed May 20 21:41:21 2009 New Revision: 5450 Modified: trunk/user/src/com/google/gwt/i18n/client/NumberFormat.java trunk/user/test/com/google/gwt/i18n/client/NumberFormat_ar_Test.java Log: Allow an app to force use of latin digits/separators instead of locali

[gwt-contrib] Re: patch to allow forcing NumberFormat to use latin digits/separators

2009-05-20 Thread John Tamplin
On Thu, May 21, 2009 at 12:19 AM, wrote: > LGTM Thanks, committed to trunk in r5450. -- John A. Tamplin Software Engineer (GWT), Google --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~

[gwt-contrib] Re: RadioButtons were not sinking click events

2009-05-20 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/34817 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit Contributors" group. To post to this group, send email to Google-Web-Toolkit-Contributors@googlegro

[gwt-contrib] Re: patch to allow forcing NumberFormat to use latin digits/separators

2009-05-20 Thread andreasst
LGTM http://gwt-code-reviews.appspot.com/34816 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] RadioButtons were not sinking click events

2009-05-20 Thread rjrjr
Reviewers: scottb, Description: Fix for http://code.google.com/p/google-web-toolkit/issues/detail?id=3679 Please review this at http://gwt-code-reviews.appspot.com/34817 Affected files: user/src/com/google/gwt/user/client/ui/RadioButton.java Index: user/src/com/google/gwt/user/client/ui/Ra

[gwt-contrib] [google-web-toolkit commit] r5449 - Add an @external directive to CssResource to allow strict-mode resources to work with ext...

2009-05-20 Thread codesite-noreply
Author: b...@google.com Date: Wed May 20 16:14:31 2009 New Revision: 5449 Added: trunk/user/src/com/google/gwt/resources/css/ast/CssExternalSelectors.java (contents, props changed) Modified: trunk/user/src/com/google/gwt/resources/client/CssResource.java trunk/user/src/com/googl

[gwt-contrib] patch to allow forcing NumberFormat to use latin digits/separators

2009-05-20 Thread jat
Reviewers: andreasst_google.com, Description: This patch allows an app to force use of latin digits/separators instead of localized digits. Please review this at http://gwt-code-reviews.appspot.com/34816 Affected files: user/src/com/google/gwt/i18n/client/NumberFormat.java user/test/com/g

[gwt-contrib] Re: SOYC story recording without indentation, with string builders

2009-05-20 Thread scottb
LGTM. BTW: if you want to go the extra mile, you can get even more speed up by reusing the StringBuilder. Call setLength(0) to "start fresh", but it retains the internal char buffer so you can avoid tons of allocations. You could probably either pass a reusable buffer through as a param, or kee

[gwt-contrib] Re: Add @external to CssResource

2009-05-20 Thread rjrjr
http://gwt-code-reviews.appspot.com/33827/diff/1/12 File user/src/com/google/gwt/resources/client/CssResource.java (right): http://gwt-code-reviews.appspot.com/33827/diff/1/12#newcode229 Line 229: * recommended as the default behavior for CssResources. Should have made it the default behavior, a

[gwt-contrib] [google-web-toolkit commit] r5448 - Update CssResource documentation to trunk, document the proposed @external directive.

2009-05-20 Thread codesite-noreply
Author: b...@google.com Date: Wed May 20 14:49:15 2009 New Revision: 5448 Modified: wiki/CssResource.wiki wiki/CssResourceCookbook.wiki Log: Update CssResource documentation to trunk, document the proposed @external directive. Modified: wiki/CssResource.wiki =

[gwt-contrib] [google-web-toolkit commit] r5447 - Merging trunk c5445 into this branch.

2009-05-20 Thread codesite-noreply
Author: sco...@google.com Date: Wed May 20 14:35:08 2009 New Revision: 5447 Added: branches/snapshot-2009.05.12-r5406/dev/core/src/com/google/gwt/core/ext/soyc/impl/DependencyRecorder.java - copied, changed from r5414, /branches/snapshot-2009.05.12-r5406/dev/core/src/com/google/gwt

[gwt-contrib] [google-web-toolkit commit] r5446 - Copy CssResource documentation from incubator project into GWT trunk.

2009-05-20 Thread codesite-noreply
Author: b...@google.com Date: Wed May 20 14:19:56 2009 New Revision: 5446 Added: wiki/CssResource.wiki wiki/CssResourceCookbook.wiki Log: Copy CssResource documentation from incubator project into GWT trunk. Added: wiki/CssResource.wiki =

[gwt-contrib] [google-web-toolkit commit] r5445 - Refactor SOYC artifacts and link process to use disk cache instead of writing individual ...

2009-05-20 Thread codesite-noreply
Author: sco...@google.com Date: Wed May 20 14:09:16 2009 New Revision: 5445 Added: trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/DependencyRecorder.java - copied, changed from r5442, /trunk/dev/core/src/com/google/gwt/core/ext/soyc/impl/DependencyRecorderImpl.java trun

[gwt-contrib] Re: Speed up escapeXml methods

2009-05-20 Thread jat
http://gwt-code-reviews.appspot.com/34814/diff/1/2 File dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorderImpl.java (right): http://gwt-code-reviews.appspot.com/34814/diff/1/2#newcode423 Line 423: char c = unescaped.charAt(index + 1); On 2009/05/20 20:47:23, jat wrote: > You need to ch

[gwt-contrib] Re: Speed up escapeXml methods

2009-05-20 Thread kprobst
http://gwt-code-reviews.appspot.com/34814/diff/1/2 File dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorderImpl.java (right): http://gwt-code-reviews.appspot.com/34814/diff/1/2#newcode406 Line 406: private static String escapeXml(String unescaped) { On 2009/05/20 20:47:23, jat wrote: >

[gwt-contrib] Re: Speed up escapeXml methods

2009-05-20 Thread jat
http://gwt-code-reviews.appspot.com/34814/diff/1/2 File dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorderImpl.java (right): http://gwt-code-reviews.appspot.com/34814/diff/1/2#newcode406 Line 406: private static String escapeXml(String unescaped) { Should this instead use the one in Ut

[gwt-contrib] Re: Speed up escapeXml methods

2009-05-20 Thread kprobst
LGTM Like you mentioned, with a more intrusive change we might (in the future) be able to get away without ever converting to/from String. http://gwt-code-reviews.appspot.com/34814 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributo

[gwt-contrib] Add @external to CssResource

2009-05-20 Thread bobv
Reviewers: , Description: This patch adds an @external directive to the CSS system to allow for selective non-obfuscation of identifiers and to bypass strict-mode checks. Please review this at http://gwt-code-reviews.appspot.com/33827 Affected files: user/src/com/google/gwt/resources/client/

[gwt-contrib] SOYC story recording without indentation, with string builders

2009-05-20 Thread kprobst
Reviewers: Dan Rice, spoon, Description: This patch streamlines the story recording for SOYC. In particular, it no longer creates nicely indented XML files, and it uses StringBuilder instead of String in emitStory. This cuts down on the time spent dumping stories to file. Please review this at

[gwt-contrib] [google-web-toolkit commit] r5444 - Note merge of trunk c5347

2009-05-20 Thread codesite-noreply
Author: rj...@google.com Date: Wed May 20 13:07:16 2009 New Revision: 5444 Modified: releases/1.6/branch-info.txt Log: Note merge of trunk c5347 Modified: releases/1.6/branch-info.txt == --- releases/1.6/branch-inf

[gwt-contrib] [google-web-toolkit commit] r5443 - Merge of trunk c5347, which removes broken CheckBoxTest#testLabelClick

2009-05-20 Thread codesite-noreply
Author: rj...@google.com Date: Wed May 20 13:06:15 2009 New Revision: 5443 Modified: releases/1.6/user/test/com/google/gwt/user/client/ui/CheckBoxTest.java Log: Merge of trunk c5347, which removes broken CheckBoxTest#testLabelClick introduced by trunk c5333 Modified: releases/1.6/user/t

[gwt-contrib] Speed up escapeXml methods

2009-05-20 Thread rice
Reviewers: kprobst, Description: Convert \[&<>'"] into their XML equivalents without using the (very slow) String.replaceAll method. Please review this at http://gwt-code-reviews.appspot.com/34814 Affected files: dev/core/src/com/google/gwt/core/ext/soyc/impl/StoryRecorderImpl.java dev/co

[gwt-contrib] Re: split up long var lines

2009-05-20 Thread Ray Cromwell
As a practical example, ClientBundle can already generate deep expressions for Css resource injection that exhaust the stack space of the JVM when compiling. You end up with something like: var cssText = a + b + c + . (hundreds) which produces a very deeply nested binary expression tree. -R

[gwt-contrib] Re: Patch for issue 3279

2009-05-20 Thread dannydaemonic
Thanks for getting back to me on this. I'll respond to the 5 issues here, saving the first issue for last, as it's the longest and it's easier to just skip over if it's not important to you, or if you wholeheartedly agree or disagree with me. > (ii) BitSet.toString() is incorrect because it does

[gwt-contrib] Re: split up long var lines

2009-05-20 Thread spoon
It is still possible for super-deep expressions to come out of the compiler. As yet it is not a practical problem, however. The depth limit is 1. We are only bumping into such a large limit because of the unusual encoding used for var statements. That said, if it's a practical problem, wou

[gwt-contrib] Re: split up long var lines

2009-05-20 Thread t . broyer
I'm also concerned that it only splits var statements; are we sure GWT won't generate "too deep" expressions on other kind of statements? http://gwt-code-reviews.appspot.com/33826/diff/1/6 File dev/core/src/com/google/gwt/dev/js/JsBreakUpLargeVarStatements.java (right): http://gwt-code-reviews.

[gwt-contrib] [google-web-toolkit commit] r5442 - Adds a -out argument to SoycDashboard specifying

2009-05-20 Thread codesite-noreply
Author: sp...@google.com Date: Wed May 20 07:16:36 2009 New Revision: 5442 Modified: trunk/tools/soyc-vis/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java trunk/tools/soyc-vis/src/com/google/gwt/soyc/Settings.java trunk/tools/soyc-vis/src/com/google/gwt/soyc/SoycDashboard.java Lo

[gwt-contrib] Re: add -out to SoycDashboard

2009-05-20 Thread spoon
Thanks. Committed at r5442. http://gwt-code-reviews.appspot.com/33825 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] split up long var lines

2009-05-20 Thread spoon
Reviewers: jgw, Description: Per issue 3455, split up very long var lines to avoid a new Webkit bug. This also adds a CompilerParameters module. It looks useful for testing to be able to tune way down compiler settings such as this one. Please review this at http://gwt-code-reviews.appspot.c

[gwt-contrib] [google-web-toolkit commit] r5441 - Updating branch-info again.

2009-05-20 Thread codesite-noreply
Author: j...@google.com Date: Wed May 20 06:51:52 2009 New Revision: 5441 Modified: releases/1.6/branch-info.txt Log: Updating branch-info again. Modified: releases/1.6/branch-info.txt == --- releases/1.6/branch-in

[gwt-contrib] [google-web-toolkit commit] r5440 - Merging /trunk r5230 into /releases/1.6.

2009-05-20 Thread codesite-noreply
Author: j...@google.com Date: Wed May 20 06:50:05 2009 New Revision: 5440 Modified: releases/1.6/user/src/com/google/gwt/dom/client/DOMImplMozilla.java releases/1.6/user/src/com/google/gwt/dom/client/DOMImplMozillaOld.java releases/1.6/user/src/com/google/gwt/dom/client/DOMImplSafari.

[gwt-contrib] [google-web-toolkit commit] r5439 - Merging /trunk r4820 into /releases/1.6.

2009-05-20 Thread codesite-noreply
Author: j...@google.com Date: Wed May 20 06:49:41 2009 New Revision: 5439 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/CheckBox.java releases/1.6/user/test/com/google/gwt/user/client/ui/RadioButtonTest.java Log: Merging /trunk r4820 into /releases/1.6. Modified: releas

[gwt-contrib] Re: Small clean-up in SOYC dashboard

2009-05-20 Thread Katharina Probst
Thanks, commited to trunk as r5438. On Wed, May 20, 2009 at 9:29 AM, wrote: > LGTM. > > There was earlier a reason for some to be non-static, then that got > removed through the review process, and then I forgot to make them > consistent again. > > > > http://gwt-code-reviews.appspot.com/34813

[gwt-contrib] [google-web-toolkit commit] r5438 - MakeTopLevelHtmlForPerm had some inconsistencies in which methods were static and which w...

2009-05-20 Thread codesite-noreply
Author: kpro...@google.com Date: Wed May 20 06:36:47 2009 New Revision: 5438 Modified: trunk/tools/soyc-vis/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java trunk/tools/soyc-vis/src/com/google/gwt/soyc/SoycDashboard.java Log: MakeTopLevelHtmlForPerm had some inconsistencies in which

[gwt-contrib] Re: Small clean-up in SOYC dashboard

2009-05-20 Thread spoon
LGTM. There was earlier a reason for some to be non-static, then that got removed through the review process, and then I forgot to make them consistent again. http://gwt-code-reviews.appspot.com/34813 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-

[gwt-contrib] [google-web-toolkit commit] r5437 - Addresses public issue 3566: Offer option to not decode cookies

2009-05-20 Thread codesite-noreply
Author: kpro...@google.com Date: Wed May 20 06:17:16 2009 New Revision: 5437 Modified: trunk/user/src/com/google/gwt/user/client/Cookies.java trunk/user/test/com/google/gwt/user/client/CookieTest.java Log: Addresses public issue 3566: Offer option to not decode cookies Addresses public i

[gwt-contrib] Small clean-up in SOYC dashboard

2009-05-20 Thread kprobst
Reviewers: spoon, Description: MakeTopLevelHtmlForPerm had some inconsistencies in which methods were static and which weren't. This resulted in inconsistent-looking code in SoycDashboard, which calls a number of the methods in MakeTopLevelHtmlForPerm. I don't see a reason for keeping the metho

[gwt-contrib] Re: gwt TRUNK seems to be to restrictive for what GWT.create can return

2009-05-20 Thread Cameron Braid
I've updated the patch against the current SVN trunk... And added a 'sanity' (i..e not very thorough) test method into GwtQueryCoreTest to verify that it works Cheers Cam 2009/5/17 Ray Cromwell > > Ok, i'll check out the patch. I suspect after Google I/O that the # of > users/contributors will