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

2013-07-17 Thread John A. Tamplin
8.cache.html:2810 > Xmb@http://localhost:8088/9C4DC2D905BEA407601C92C56B43E3B8.cache.html:2289 > > etc... :-( > > So, something like 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 re

Re: Plural forms and I18NCreator

2011-06-16 Thread John A. Tamplin
This is not supported. The problem is the information simply isn't there to convert from the properties file to the fully typed Java interface without adding some convention for comments specifying that information -- if you are going to do that, you might as well just write the Java code. For

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 o

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.* u

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: 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 thi

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 RemoteS

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: 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

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 wer

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 thi

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 new

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: 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 las