Re: RemoteDeathError in GWT 2.0 Developer Mode

2009-12-27 Thread John A. Tamplin
RemoteDeathError is thrown when the connection to the browser is closed. Are you changing the URL in your app? If you change anything but the hash portion, it will reload the app which will drop the devmode connection. You can try increasing the log level with -logLevel SPAM and see what the

Re: Why History.newItem() always calls the onModuleLoad?

2009-12-27 Thread John A. Tamplin
A couple of points: - you don't need to call History.fireCurrentState() after newItem(). - you are calling newItem() from within the history change handler A typical history-enabled app will call fireCurrentState in onModuleLoad, actions that change history state simply call newItem with the

Re: Development mode crashes Safari 4.0.4 in OS X 10.4

2009-12-27 Thread John A. Tamplin
Created http://code.google.com/p/google-web-toolkit/issues/detail?id=4413 -- 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 from this group, send email

Re: Developer Plugin not working on Firefox 3.5.5 on Linux

2009-12-27 Thread John A. Tamplin
Please add your details to http://code.google.com/p/google-web-toolkit/issues/detail?id=4141 -- 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 from this

FF4.0 DevMode [was: Re: Update Chrome to 10.0.612.1 does not work with either 2.1.0 or 2.1.1]

2010-12-20 Thread John A. Tamplin
On Monday, December 20, 2010 11:44:11 AM UTC-5, alanmechy wrote: And, of course, I'm wondering when FF4 will be supported in GWT - but that's another story (and thread) entirely. In August I heard it was real soon now... The problem was that every new beta of FF4 broke the APIs we were

Re: Competitor for world's most useless JavaDoc comment

2011-05-16 Thread John A. Tamplin
On Monday, May 16, 2011 1:42:45 PM UTC-4, Christian Goudreau wrote: Well, you may be right about some missing javadoc features, but do you have to flame about it knowing that they work hard and give us this incredible tool freely ? I'm maybe to sensitive lol As for format, define your own,

Re: Competitor for world's most useless JavaDoc comment

2011-05-16 Thread John A. Tamplin
On Monday, May 16, 2011 1:22:43 PM UTC-4, Greg Dougherty wrote: It's too bad that there a 2 valid comments, and 34 worthless ones. Might I suggest that the GWT Coding Standards would do well to focus on requiring people to write readable and understandable code (which means having

Re: Better XSRF protection in 2.3?

2011-05-26 Thread John A. Tamplin
Also, you are free to use the underlying RpcToken capabilities, which solves the hard part of the problem (transparently adding a token to every RPC request). You can use it to build on top of whatever session mechanism you have now, like this: // could also add @XsrfProtect and extend

Re: Adding overrides to Constants/ConstantsWithLookup/Messages

2011-06-16 Thread John A. Tamplin
BTW, I don't regularly read this group (too much traffic, I do read GWTC though), so if you have a question for me specifically you should email me directly. Regarding the @Select bug -- that was fixed in trunk a few weeks ago and will be in 2.4. Basically, you want dynamic i18n and all of

Re: override locale in datebox

2011-06-16 Thread John A. Tamplin
GWT is only running one locale at a time -- you specify the set of locales you want to build your app with, and then only the strings / formats for that locale are downloaded to the user. See http://code.google.com/webtoolkit/doc/latest/DevGuideI18nLocale.html for more info. Once you set the

Re: Using a custom DateFormatProvider in GWT

2011-06-16 Thread John A. Tamplin
GWT uses the data from the Unicode CLDR, and supports ta and ta_LK, so ta_IN should get the ta defaults, which should be appropriate for IN. If you believe there should be a specialization for ta in India, then I suggest filing a bug against CLDR to add it. Aside from that, search for *_ta.*

Re: localisation issues with DateTimeFormat.PredefinedFormat MONTH_ABBR

2011-06-16 Thread John A. Tamplin
All of the data ultimately comes from Unicode CLDR. For both English and German, the format string used for MONTH_ABBR is LLL, which is the standalone abbreviated form of the month. In English, all of the abbreviated names are 3 letters, as they should be. For German, the standalone form of

Re: [gwt-contrib] I'm enhancing GWT to provide Java stack traces for clientside exceptions in production

2013-07-17 Thread John A. Tamplin
this has been used at least internally for quite a long time -- what exactly did you have to change in StackTraceDeobfuscator? -- John A. Tamplin -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

Re: [gwt-contrib] Re: @RequestFor should support interfaces, Fix issue 7509 (issue1764804)

2012-07-11 Thread John A. Tamplin
bounce. He may be interested in reviewing it in his spare time, but you would need his non-Google email address. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] I need your support : Chrome keeps asking to kill the page when debuging

2012-07-26 Thread John A. Tamplin
that the ability would be abused by malware. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] I need your support : Chrome keeps asking to kill the page when debuging

2012-07-26 Thread John A. Tamplin
is to remove user choice and decide for them what way it should be. Besides, I never found it to be that annoying -- just don't answer the dialog and it won't pop back up, and it automatically goes away when you unpause execution in the JVM. -- John A. Tamplin -- http://groups.google.com/group/Google

[gwt-contrib] Re: Got the development mode plugin to compile for Firefox 15 using xulrunner-15.0b6 on 64-bit Linux. (issue1816803)

2012-08-24 Thread John A. Tamplin
know what version it was. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Got the development mode plugin to compile for Firefox 15 using xulrunner-15.0b6 on 64-bit Linux. (issue1816803)

2012-08-24 Thread John A. Tamplin
On Aug 24, 2012 9:38 PM, Brian Slesinsky skybr...@google.com wrote: Aha, I misunderstood LGTM after testing. Sorry, I meant LGTM after you had tested it :-) -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] devmode for Firefox 15

2012-08-28 Thread John A. Tamplin
32-bit and 64-bit. Mac uses fat binaries/libraries, so multiple architectures are stuffed into one file. Older versions had ppc and x86, now they have x86 and x86_64. IIRC, you have to pass extra -arch flags for each architecture you want to build/link. -- John A. Tamplin -- http

Re: [gwt-contrib] Cleanup: is IE6 JNI really needed?

2012-09-01 Thread John A. Tamplin
versions are active from the pings. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Cleanup: is IE6 JNI really needed?

2012-09-03 Thread John A. Tamplin
and extrapolate from other information. Personally, it seems hard to imagine being an effective developer without net access on the development machine -- I am looking up things multiple times per day. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Cleanup: is IE6 JNI really needed?

2012-09-03 Thread John A. Tamplin
is a problem for Maven -- the binary is checked in, so it doesn't need to be recompiled, and it will be ignored on non-Windows platforms. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Remove long-deprecated event listeners and EventPreview. (issue1822803)

2012-09-04 Thread John A. Tamplin
use instead? Actually there is something like @StronglyDeprecated :). IIRC, there are build checks to make sure no new references are added to something so tagged. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: In the Chrome plugin, rename src to java for compatibility with (issue1834803)

2012-09-18 Thread John A. Tamplin
to core that otherwise wouldn't, unless some effort is made at refactoring things (which might be a breaking change). -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] submit chrome dev mode plugin to chrome web store?

2012-09-18 Thread John A. Tamplin
should need to build the plugins. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] submit chrome dev mode plugin to chrome web store?

2012-09-19 Thread John A. Tamplin
the chrome plugin? Yes. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Git and IDE project files for GWt

2012-10-10 Thread John A. Tamplin
using Maven :). -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Git and IDE project files for GWt

2012-10-10 Thread John A. Tamplin
substitute the install directory into them. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Adding wrap method to Canvas and/or make constructor protected

2012-10-25 Thread John A. Tamplin
. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Problems pushing a patch to gerrit

2012-10-29 Thread John A. Tamplin
you really trying to push to master? -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Reviewer needed

2012-11-08 Thread John A. Tamplin
in Gerrit? Also, in Rietveld the mailing list was copied by default on code reviews, can we setup Gerrit the same way? -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Delivery Status Notification (Failure)

2012-11-22 Thread John A. Tamplin
accepting HasText, so I'm not sure I know what level of breaking change is acceptable and what benefit is required. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Delivery Status Notification (Failure)

2012-11-22 Thread John A. Tamplin
that is fully type-safe. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Delivery Status Notification (Failure)

2012-11-23 Thread John A. Tamplin
update too. Exactly, which is why in the past we tried to overlap the old deprecated API and the new one so libraries could transition. Otherwise, you force everyone to upgrade everything in lock-step, which can be really painful. -- John A. Tamplin -- http://groups.google.com/group/Google-Web

Re: [gwt-contrib] Re: Another approach to DevMode: taking advantage of browsers' remote debugging protocol

2012-12-12 Thread John A. Tamplin
like a remote JVM for debugging, if the primary thing you want is to get is using your IDEs debugger. At first glance, that seems impractical to emulate what is a pretty low-level protocol on top of entirely different VMs, but maybe it is feasible. -- John A. Tamplin -- http://groups.google.com

Re: [gwt-contrib] Git commit messages

2013-01-11 Thread John A. Tamplin
. Any other worthwhile suggestions to include? Personally I like having the issue number in the subject, something like Issue 1234 - fix focus error in SuggestBox. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Contributing for University Software Engineering Project

2013-01-12 Thread John A. Tamplin
is currently locked while 2.5.1 is prepared, so if you need to get your work committed before 2.5.1 ships (likely early February) that will be a problem. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Change in gwt[master]: Stop using prefixed API's in AnimationScheduler by default. ...

2013-01-20 Thread John A. Tamplin
be a more global deferred binding property like useExperimentalApis in core. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Change in gwt[master]: Fix an infinite loop in RPC deserialization due to type vari...

2013-01-22 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Fix an infinite loop in RPC deserialization due to type variable cycles. .. Patch Set 3: Code-Review+1 (2 comments) LGTM with nits

[gwt-contrib] Change in gwt[master]: Fix an infinite loop in RPC deserialization due to type vari...

2013-01-22 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Fix an infinite loop in RPC deserialization due to type variable cycles. .. Patch Set 4: Code-Review+1 -- To view, visit https://gwt

[gwt-contrib] Change in gwt[master]: Update to use ICU4J 50.1.1

2013-01-22 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Update to use ICU4J 50.1.1 .. Patch Set 2: (1 comment) @Brian - the differences a user would likely see from just this update (not including the shared

[gwt-contrib] Change in gwt[master]: Inline javascript:'' within NamedFrame's internal SafeHtmlTe...

2013-01-23 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Inline javascript:'' within NamedFrame's internal SafeHtmlTemplate .. Patch Set 1: Code-Review+1 Is there a way we can test this? -- To view, visit https

[gwt-contrib] Change in gwt[master]: Inline javascript:'' within NamedFrame's internal SafeHtmlTe...

2013-01-23 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Inline javascript:'' within NamedFrame's internal SafeHtmlTemplate .. Patch Set 2: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com

[gwt-contrib] Change in gwt[master]: Update to use ICU4J 50.1.1

2013-01-25 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Update to use ICU4J 50.1.1 .. Patch Set 2: So what do we need to do to land this? -- To view, visit https://gwt-review.googlesource.com/1700 To unsubscribe

[gwt-contrib] Change in gwt[master]: Issue 7834 - fix BigDecimal compareTo

2013-01-26 Thread John A. Tamplin
John A. Tamplin has uploaded a new patch set (#2). Change subject: Issue 7834 - fix BigDecimal compareTo .. Issue 7834 - fix BigDecimal compareTo http://code.google.com/p/google-web-toolkit/issues/detail?id=7834 Change-Id

[gwt-contrib] Change in gwt[master]: Shard UiSuite to make the smoke tests faster.

2013-01-31 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Shard UiSuite to make the smoke tests faster. .. Patch Set 1: Code-Review+1 (1 comment) RPC Suite was also a long-pole, so I think it will have to be split

[gwt-contrib] Change in gwt[master]: Shard UiSuite to make the smoke tests faster.

2013-01-31 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Shard UiSuite to make the smoke tests faster. .. Patch Set 1: Ok. -- To view, visit https://gwt-review.googlesource.com/1821 To unsubscribe, visit https

[gwt-contrib] Change in gwt[master]: Make AnimationScheduler configurable and change defaults.

2013-01-31 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Make AnimationScheduler configurable and change defaults. .. Patch Set 4: No, just make it a regular deferred binding property. It can be set to a default

[gwt-contrib] Change in gwt[master]: Make AnimationScheduler configurable and change defaults.

2013-01-31 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Make AnimationScheduler configurable and change defaults. .. Patch Set 4: Your suggestion would mean having both sets of code in the binary and making

[gwt-contrib] Change in gwt[master]: Issue 7834 - fix BigDecimal compareTo

2013-01-31 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Issue 7834 - fix BigDecimal compareTo .. Patch Set 2: If you work on it but don't finish it, push what you do here and I will try and finish

[gwt-contrib] Change in gwt[master]: Add a webApiUsage property to control whether prefixed API's...

2013-02-01 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Add a webApiUsage property to control whether prefixed API's will be used. .. Patch Set 1: Code-Review+1 (1 comment

[gwt-contrib] Change in gwt[master]: Issue 7834 - fix BigDecimal compareTo

2013-02-01 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Issue 7834 - fix BigDecimal compareTo .. Patch Set 4: (2 comments) File user/test/com/google/gwt

[gwt-contrib] Change in gwt[master]: Issue 7834 - fix BigDecimal compareTo

2013-02-01 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Issue 7834 - fix BigDecimal compareTo .. Patch Set 5: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/1660 To unsubscribe, visit https

Re: [gwt-contrib] GWT and WebKit issues

2013-02-06 Thread John A. Tamplin
situation is somewhat frustrating. Does Chrome on iOS avoid the problem? I thought V8 wasn't used on iOS due to Apple policies. -- John A. Tamplin -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups

Re: [gwt-contrib] GWT and WebKit issues

2013-02-08 Thread John A. Tamplin
is generated? -- John A. Tamplin -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group. To unsubscribe from this group and stop receiving emails from it, send

[gwt-contrib] Change in gwt[master]: Introduce ImmutableAnnotations to reduce memory usage.

2013-02-11 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Introduce ImmutableAnnotations to reduce memory usage. .. Patch Set 1: Note that most of the i18n code expects annotations to be inherited -- I haven't

Re: [gwt-contrib] GWT and WebKit issues

2013-02-13 Thread John A. Tamplin
On Wed, Feb 13, 2013 at 5:02 AM, Jens jens.nehlme...@gmail.com wrote: Am Freitag, 8. Februar 2013 21:21:00 UTC+1 schrieb John A. Tamplin: On Fri, Feb 8, 2013 at 3:02 PM, Jens jens.ne...@gmail.com wrote: Also an option but one of the main problems I had while trying to rewrite

[gwt-contrib] Change in gwt[master]: Run JsInliner only on methods that are JSNI or that contain ...

2013-02-13 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Run JsInliner only on methods that are JSNI or that contain JSNI calls (not on the whole AST). .. Patch Set 5: There are tests internally that measure

[gwt-contrib] Change in gwt[master]: Adds the GWT 2.5_3.0 API Checker configuration file and crea...

2013-02-22 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Adds the GWT 2.5_3.0 API Checker configuration file and creates new reference jars for api-checker. .. Patch Set 1: My understanding of the API checker

[gwt-contrib] Change in gwt[master]: Adds java reflection based GWTRunnerProxy implementation.

2013-02-28 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Adds java reflection based GWTRunnerProxy implementation. .. Patch Set 1: There are so few test invocations and they take so little time compared

[gwt-contrib] Change in gwt[master]: Applying dmenzi's patch to fix issue 7291, which causes Inte...

2013-03-04 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Applying dmenzi's patch to fix issue 7291, which causes Integer.parseInt to fail on BlackBerry OS7. .. Patch Set 1: Code-Review+1 The code looks fine

[gwt-contrib] Change in gwt[master]: Allow LogConfiguration to be used in non-GWT environments (e...

2013-03-04 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Allow LogConfiguration to be used in non-GWT environments (e.g. JRE tests) .. Patch Set 2: (1 comment

[gwt-contrib] Change in gwt[master]: add Class.getSimpleName to gwt emulation

2013-03-14 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: add Class.getSimpleName to gwt emulation .. Patch Set 1: Code-Review+1 LGTM -- To view, visit https://gwt-review.googlesource.com/2220 To unsubscribe, visit

Re: [gwt-contrib] Static fields on JavaScriptObjects

2013-03-16 Thread John A. Tamplin
it is better to leave it out than to have only partial support. -- John A. Tamplin -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group. To unsubscribe from this group

Re: [gwt-contrib] Static fields on JavaScriptObjects

2013-03-16 Thread John A. Tamplin
cutting them from other newly 'static' methods - at least in that case bit must be a bug. If not that, then emit a warning? I'm fine with making it an error. -- John A. Tamplin -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you

[gwt-contrib] Change in gwt[master]: add Class.getSimpleName to gwt emulation

2013-03-16 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: add Class.getSimpleName to gwt emulation .. Patch Set 4: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2220 To unsubscribe, visit https

[gwt-contrib] Change in gwt[master]: Avoid implicit inter-dependencies between DOM, History, Wind...

2013-03-17 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Avoid implicit inter-dependencies between DOM, History, Window and Widgets through BaseListenerWrapper by moving things to where they're used. .. Patch

[gwt-contrib] Change in gwt[master]: Move Base64Utils to com.google.gwt.util.tools.shared

2013-03-17 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Move Base64Utils to com.google.gwt.util.tools.shared .. Patch Set 3: Code-Review+1 (1 comment) I'm not sure I understand where this will wind up eventually

[gwt-contrib] Re: Change in gwt[master]: Updates ICU4J from 4.4.2 to 50.1.1

2013-03-18 Thread John A. Tamplin
On Mon, Mar 18, 2013 at 5:30 PM, n.giamou...@gmail.com wrote: Any updates on this? Just did a pull and the jar is still missing. When you say a pull, did you mean svn up? gwt/tools is still managed under svn, and I picked it up just a couple of days ago when I synced. -- John A. Tamplin

[gwt-contrib] Change in gwt[master]: Avoid implicit inter-dependencies between DOM, History, Wind...

2013-03-22 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Avoid implicit inter-dependencies between DOM, History, Window and Widgets through BaseListenerWrapper by moving things to where they're used. .. Patch

Re: [gwt-contrib] gwtmauve: java emulation / compatibility test kit in GWT

2013-03-22 Thread John A. Tamplin
is extremely slow on a large number. The others, such as the missing Collections.rotate and bugs in Arrays.fill, Collections.copy, and String.compareTo are good catches and should have issues filed. -- John A. Tamplin -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You

Re: [gwt-contrib] Re: future of jvm dev mode

2013-04-06 Thread John A. Tamplin
like the limited experience of debugging a JS app rather than having the tools available for debugging in the JVM. -- John A. Tamplin -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web

[gwt-contrib] Change in gwt[master]: Removes api-checker reference JARs from the source tree.

2013-04-14 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Removes api-checker reference JARs from the source tree. .. Patch Set 1: Yes, and many places don't allow build systems unfettered access to the internet

Re: [gwt-contrib] Re: future of jvm dev mode

2013-04-15 Thread John A. Tamplin
with JS, and using GWT code in contexts like Chrome extensions, SDM is a lot nicer. It's also way nicer for stuff like games, where the invocation overhead becomes large for stuff like canvas and webgl. So it sounds like they each have their place. -- John A. Tamplin -- -- http

[gwt-contrib] Change in gwt[master]: GWT bug fix: Fix parsing of currency formats in com.google.g...

2013-04-19 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: GWT bug fix: Fix parsing of currency formats in com.google.gwt.i18n.client.NumberFormat for formats with postfix currency symbols. .. Patch Set 2: Code

[gwt-contrib] Change in gwt[master]: Introduces a common SerializableThrowable as public API.

2013-05-12 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Introduces a common SerializableThrowable as public API. .. Patch Set 5: Or more likely, SerializableThrowable shouldn't be in shared anyway. -- To view

[gwt-contrib] Change in gwt[master]: Introduces a common SerializableThrowable as public API.

2013-05-13 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Introduces a common SerializableThrowable as public API. .. Patch Set 5: JavaScriptException is in the client package and contains JSNI, so it cannot

[gwt-contrib] Change in gwt[master]: Introduces a common SerializableThrowable as public API.

2013-05-13 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Introduces a common SerializableThrowable as public API. .. Patch Set 5: (1 comment) Yes, I know there are many cases now. But adding more takes us further

[gwt-contrib] Change in gwt[master]: Don't call toString() on plain Java arrays

2013-05-16 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Don't call toString() on plain Java arrays .. Patch Set 1: Code-Review+2 (1 comment) File user/test/com

Re: [gwt-contrib] Re: ValueListBox should implement HasEnabled (6112) (issue1832803)

2013-05-17 Thread John A. Tamplin
not familiar with GIT so I'm at a loss. Did you setup Eclipse correctly, as documented in eclipse/README.txt? -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group

[gwt-contrib] Change in gwt[master]: Removes JavaScriptException dependency from c.g.gwt.core.sha...

2013-05-17 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Removes JavaScriptException dependency from c.g.gwt.core.shared. .. Patch Set 1: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2840

[gwt-contrib] Change in gwt[master]: Removes the static book keeping in the Timer class.

2013-05-20 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Removes the static book keeping in the Timer class. .. Patch Set 1: Code-Review+1 My recollection is that the close hook was required to avoid memory leaks

Re: [gwt-contrib] Do you guys need help in translation, Arabic language specifically?

2013-05-21 Thread John A. Tamplin
SimplePager_ImageButtonsConstants_locale.properties files in the same directory, with lines like: fastForward=translation ... The file should be UTF8-encoded. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google

Re: [gwt-contrib] Re: Generator, get method body

2013-05-23 Thread John A. Tamplin
/sample/showcase/generator/ShowcaseGenerator.java -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop receiving emails

Re: [gwt-contrib] Re: Generator, get method body

2013-05-23 Thread John A. Tamplin
to use the gwt ast from a generator. The GWT AST is not available to generators, so you will have to build your own -- you can use JDT as that is included with GWT. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you

Re: [gwt-contrib] Re: Generator, get method body

2013-05-24 Thread John A. Tamplin
aren't included in the bytecode), I used CodeSnippetParsingUtil in JDT and it seemed straightforward enough. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group

Re: [gwt-contrib] Re: Doing migrations one step at a time

2013-05-24 Thread John A. Tamplin
, but just don't build it by default. If anyone is running from trunk and needs it, they simple add it back with an extend-property. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT

[gwt-contrib] Change in gwt[master]: fix mismatch in Double/Float.isInfinite between dev / produc...

2013-05-27 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: fix mismatch in Double/Float.isInfinite between dev / production .. Patch Set 1: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/2250

Re: [gwt-contrib] Re: Doing migrations one step at a time

2013-05-27 Thread John A. Tamplin
a reasonable timerange. for us, but certainly not faster. At the GWT meetup, there wasn't really consensus on anything regarding IE8 other than not before 3.0 next May. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because

[gwt-contrib] Change in gwt[master]: FileUpload failed to initialize internal state

2013-05-27 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: FileUpload failed to initialize internal state .. Patch Set 1: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/2981 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Adds support for lower case encoding names to String

2013-05-28 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Adds support for lower case encoding names to String .. Patch Set 2: If you are going for the regex, you probably want to create the pattern once and reuse

Re: [gwt-contrib] Re: Removing support for old browsers

2013-05-30 Thread John A. Tamplin
that is different between IE6 and IE7, you already have a problem since those are in the same permutation, so you already have to be doing a runtime check. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed

Re: [gwt-contrib] GWT Coding Style Update

2013-05-30 Thread John A. Tamplin
ordered method names when I work in code that doesn't have it. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop

Re: [gwt-contrib] GWT Coding Style Update

2013-05-30 Thread John A. Tamplin
the reverse. So what is the rationale behind this proposal? GWT has operated the way it is for many years. What problems has it caused? Are we no longer running ant checkstyle in the submit queue? -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received

Re: [gwt-contrib] GWT Coding Style Update

2013-05-30 Thread John A. Tamplin
it is already disorganized, and it isn't brought up in reviews because there isn't any definitive answer anyway. Likewise for formatting rules. -- John A. Tamplin -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed

[gwt-contrib] Change in gwt[master]: Adding Integer.compare to emulation

2013-06-02 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Adding Integer.compare to emulation .. Patch Set 2: Code-Review-2 -- To view, visit https://gwt-review.googlesource.com/3180 To unsubscribe, visit https

[gwt-contrib] Change in gwt[master]: Adding Integer.compare to emulation

2013-06-02 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Adding Integer.compare to emulation .. Patch Set 2: Code-Review-1 (1 comment) File user/super/com

[gwt-contrib] Change in gwt[master]: Adding Integer.compare to emulation

2013-06-02 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Adding Integer.compare to emulation .. Patch Set 2: -Code-Review I also agree about adding similar functionality in the other wrapper types. I am nervous

[gwt-contrib] Change in gwt[master]: adding compare for several number types -Byte.compare -...

2013-06-02 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: adding compare for several number types -Byte.compare -Short.compare -Integer.compare -Long.compare -Float.compare (Double already exists) fixes issue 7998

[gwt-contrib] Change in gwt[master]: adding compare for several number types -Byte.compare -...

2013-06-02 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: adding compare for several number types -Byte.compare -Short.compare -Integer.compare -Long.compare -Float.compare (Double already exists) fixes issue 7998

  1   2   >