Re: Animate an images rotation

2010-10-29 Thread Brendan Kenny
Hi Stymie, I wrote a GWT module early this year to wrap up CSS3 2d transforms which should be exactly what you need. It supports Safari 3.2+, Chrome 5+, Firefox 3.5+, Opera 10.5+, and Internet Explorer 8. The code site is: http://code.google.com/p/gwt-ns/ and I wrote a tutorial with an example

Re: GWT 2.1 Documention

2010-08-10 Thread Brendan Kenny
I guess it depends on what you mean by documentation. I don't know about the release date, but for now there's always the IO sessions, discussion on the contributors board, and of course javadocs from trunk (which can be generated directly or are periodically updated here:

[gwt-contrib] Re: Phasing in a new, unified linker

2010-07-26 Thread Brendan Kenny
On Jul 26, 5:56 pm, John Tamplin j...@google.com wrote: Well, we do know there will be other linkers, and if there aren't extension points defined they will be done via cut-and-paste, which is what led to the current state we are in. -- John A. Tamplin Software Engineer (GWT), Google The

Re: xs linker does not support all GWT features?

2010-07-02 Thread Brendan Kenny
https). DId anyone try to make the changes mentioned below? Did you succeed? Thanks in advance, Danny On 12 feb, 01:30, Brendan Kenny bcke...@gmail.com wrote: On Feb 11, 3:52 pm, Jonas Huckestein jonas.huckest...@me.com wrote: Hi everybody, does anybody know why thexslinker does

[gwt-contrib] IE9 Preview 3 issues

2010-06-24 Thread Brendan Kenny
I haven't verified this on another machine, but it appears that the new IE9 Preview (when in full IE9 standards mode) no longer accepts markup in document.createElement(), which is DomImplTrident's approach to creating several elements (like buttons). I've filed an issue here:

[gwt-contrib] Re: IE9 Preview 3 issues

2010-06-24 Thread Brendan Kenny
Also--and I haven't completely figured this out yet--something seems to be going on with support for IE's ancient filters. I'm not aware of any use of filters in GWT outside of maybe a PNG transparency fix (for IE6? not sure), but I'm sure there are third party module authors that use them to add

Re: mathsinh is not function

2010-06-03 Thread Brendan Kenny
. thanks, mike On Jun 2, 4:37 pm, Eric erjab...@gmail.com wrote: On Jun 2, 4:21 am, Brendan Kenny bcke...@gmail.com wrote: 2) or, if it needs to remain in js-land, just expose a sinh() function for use just like the page at your first link suggests: (e^x - e^(- x)) / 2. Just be careful

Re: mathsinh is not function

2010-06-03 Thread Brendan Kenny
On Jun 2, 9:37 am, Eric erjab...@gmail.com wrote: On Jun 2, 4:21 am, Brendan Kenny bcke...@gmail.com wrote: 2) or, if it needs to remain in js-land, just expose a sinh() function for use just like the page at your first link suggests: (e^x - e^(- x)) / 2. Just be careful with your NaNs

Re: Speed Tracer and nocache.js

2010-06-03 Thread Brendan Kenny
If you aren't able to get an answer here, this is the speedtracer google group: https://groups.google.com/group/speedtracer/topics On Jun 3, 5:20 am, Dogan Narinc dogan.nar...@gmail.com wrote: Also worth to mention that the HTTP status is set to 200, which should mean that it is not cached:

Re: mathsinh is not function

2010-06-02 Thread Brendan Kenny
looks like a cool project. According to the GWT JRE emulation reference http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html sinh is on the emulated Math object, but it looks like, from your first link, that you are calling it from javascript code. sinh() is *not* a function on the

Re: mathsinh is not function

2010-06-02 Thread Brendan Kenny
/trunk/user/super/com/google/gwt/emul/java/lang/Math.java?r=7605#255 On Jun 2, 3:21 am, Brendan Kenny bcke...@gmail.com wrote: looks like a cool project. According to the GWT JRE emulation referencehttp://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html sinh is on the emulated Math

[gwt-contrib] Re: Improving event handling, as initiated in 1.6

2010-05-31 Thread Brendan Kenny
Rob -- You might have already seen this, but Thomas created a wave on the topic to get things moving https://wave.google.com/wave/#restored:wave:googlewave.com!w%252Bux7zL81XA post I/O seems to be the general timeframe, but I know I'm eager to help create a more extensible system as well. Many

Re: Get date and time from java-javascript compilation

2010-05-21 Thread Brendan Kenny
Hi Matheus, There might already be a built in way to do this, but if there is I don't know of it. There might also be a simple way to add an ant task to the regular eclipse plugin compilation process, since I believe it's just using ant under the hood. Within straight GWT land, though, the key

[gwt-contrib] RFC: Web worker proposal and proof of concept

2010-04-08 Thread Brendan Kenny
This might be a bit unusual. I have a fairly reasonable proposal for supporting web workers in GWT proper, and a working proof of concept that shouldn't come anywhere near the core toolkit. Everyone seems busy with what looks like 2.1 and the upcoming I/O, so I'm not expecting miracles, but I

[gwt-contrib] Re: RFC: Web worker proposal and proof of concept

2010-04-08 Thread Brendan Kenny
a worker module as listed under To Use a Worker. The object created can only give messages, receive them, and be terminated. 3) Developers compile *only* the parent project. The invoked generator and linkers handle the rest. On Apr 8, 8:05 pm, Brendan Kenny bcke...@gmail.com wrote: This might

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Brendan Kenny
hmm, I get the same thing. Some of my own GWT projects do it as well, whether local or remote, but not all of them. this is in safari 4.0.4 on Windows 7. does anyone know the specifics of the logic of the loading... wheel and what would cause it not to cease? -profiling of my projects within

Re: Safari Windows takes 100% on example page

2010-03-29 Thread Brendan Kenny
Also worth noting that the showcase will cease with the loading if you just open the rich text area under text input on the left. Other projects I have that have the same problem don't have rich text areas or code splitting, though. On Mar 29, 5:47 pm, Brendan Kenny bcke...@gmail.com wrote: hmm

[gwt-contrib] Re: IE9 preview support ?

2010-03-21 Thread Brendan Kenny
I get the same DOMContentLoaded error, but that's as expected. Check out the addEventListener event registration section in the release notes: http://ie.microsoft.com/testdrive/info/ReleaseNotes/Default.html#WPKI My applications all work as well--even while throwing that error-- which is weird.

[gwt-contrib] Re: Removes trivially-delegating clinits, plus some

2010-03-13 Thread Brendan Kenny
Ah! The enum clinits were driving me crazy, to the point that I was considering reverting a bunch of code to get rid of them. This is great, thanks. On Mar 12, 10:11 pm, sco...@google.com wrote: Reviewers: Lex, cromwellian, Message: Hey guys, I was working on a patch to JsInlining and it

Re: xs linker does not support all GWT features?

2010-02-11 Thread Brendan Kenny
On Feb 11, 3:52 pm, Jonas Huckestein jonas.huckest...@me.com wrote: Hi everybody, does anybody know why the xs linker does not support code-splitting? Are there any other features that are not fully supported? I am currently trying to build a framework that allows for easy wave gadget

[gwt-contrib] Re: RFC: sharded linking

2010-02-11 Thread Brendan Kenny
On Feb 11, 6:43 pm, Scott Blum sco...@google.com wrote: I have a few comments, but first I wanted to raise the point that I'm not sure why we're having this argument about maximally sharded Precompiles at all.  For one thing, it's already implemented, and optional, via -XshardPrecompile.  I

[gwt-contrib] Re: Create or alter a module programmatically

2010-02-08 Thread Brendan Kenny
On Feb 8, 6:34 pm, Luiz Mineo luiz.mi...@gmail.com wrote: On 8 fev, 13:23, John Tamplin j...@google.com wrote: On Mon, Feb 8, 2010 at 6:04 AM, Luiz Mineo luiz.mi...@gmail.com wrote: I'm dedicating some of my time to develop a small framework, to help me create and maintain big GWT apps.

[gwt-contrib] Re: Create or alter a module programmatically

2010-02-08 Thread Brendan Kenny
On Feb 8, 10:04 pm, Brendan Kenny bcke...@gmail.com wrote: On Feb 8, 6:34 pm, Luiz Mineo luiz.mi...@gmail.com wrote: On 8 fev, 13:23, John Tamplin j...@google.com wrote: On Mon, Feb 8, 2010 at 6:04 AM, Luiz Mineo luiz.mi...@gmail.com wrote: I'm dedicating some of my time to develop

Re: gwt+ html5

2010-01-31 Thread Brendan Kenny
This article popped up in a twitter search yesterday: http://gwtpro.com/2010/01/30/using-gwt-deferred-binding-to-implement-an-html-file-input-widget/ I just skimmed it, so there might be something strange I missed, but the approach they took to wrapping the html5 file api seemed sound. The

Re: Call into unknown JavaScript function given only name as string

2010-01-26 Thread Brendan Kenny
what this would refer to. The exciting world of javascript! On Jan 26, 9:39 pm, Brendan Kenny bcke...@gmail.com wrote: Check out the answers here:http://stackoverflow.com/questions/359788/javascript-function-name-as... Though the executeFunctionByName example seems a little overblown. The real

[gwt-contrib] Modifying js code in CompilationResult artifacts

2010-01-21 Thread Brendan Kenny
I'm posting to contributors because I think I'm much more likely to get an answer on compilation details here; I hope that's appropriate. If a pre-linker were to remove all CompilationResults from the artifact set, modify the contents of string literals within their js code (with valid results),

[gwt-contrib] Re: Modifying js code in CompilationResult artifacts

2010-01-21 Thread Brendan Kenny
. On Jan 20, 6:53 am, Brendan Kenny bcke...@gmail.com wrote: I'm posting to contributors because I think I'm much more likely to get an answer on compilation details here; I hope that's appropriate. If a pre-linker were to remove all CompilationResults from the artifact set, modify the contents

Detecting dev mode inside a generator

2010-01-20 Thread Brendan Kenny
Is it possible to detect within a generator that it is being run in development mode? The ideal would be for the generator to run the same way in development mode as in compilation for production code, I suppose, but the information can be useful. I feel like I may be overlooking something obvious

Re: how to use CssResource.obfuscationPrefix to have semi-obfuscated css class name

2010-01-06 Thread Brendan Kenny
Yeah, I ran into the same problem. If the issue is just exposing the style names during development (and you're not looking for this particular solution for an additional reason), I would do as fvisticot suggests and then just remove that line from your module's xml file when you're ready for

Code Licensing

2009-12-22 Thread Brendan Kenny
This might not be the best forum for this question, but it specifically involves GWT code and should be simple, so I'll give it a shot. I'm in the process of taking classes from some Google-written GWT modules (both java and jsni code), mangling them, and writing code on top of the result.

Re: CssResource problem with specific webkit CSS instructions

2009-12-22 Thread Brendan Kenny
Yep, for now you need to escape the first hyphen. See comment #2 and #7 on this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3595 This should maybe be more prominent in current documentation as it's been coming up a lot. On Dec 22, 5:42 pm, fvisticot fvisti...@gmail.com

Re: Any easy way to tell which file is for which permutation?

2009-12-20 Thread Brendan Kenny
Alex's automated solution is probably the best solution, but you can also walk through a Detailed-compiled version of nocache.js and match it up to http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/UserAgent.gwt.xml (and any conditionals you've added) to

Re: WebWorkers in GWT

2009-12-11 Thread Brendan Kenny
though it's somewhat barebones, I've been playing around with the Worker implementation released with the speed tracer code: http://code.google.com/p/speedtracer/source/browse/trunk/src/client/ui/src/com/google/gwt/webworker/ On Dec 10, 7:07 pm, Kango_V djb.b...@gmail.com wrote: Does anyone