Embedding a JavaScript-based widget in GWT?

2009-01-27 Thread adambossy
This seems so simple, that I must be overlooking some obvious GWT characteristic. I would like to embed a TweetGrid from here: http://tweetgrid.com/searchtips The code is short and simple: script src=http://tweetgrid.com/widget/widget.js; type=text/ javascript/script I wrap this as an HTML

Re: Embedding a JavaScript-based widget in GWT?

2009-01-27 Thread adambossy
It just occurred to me that this pretty obviously won't work, because it is calling the script src=.../script widget tag inside of an existing script/script enclosure. How do I call this aside from ripping out the widget internals and rewriting them myself? Adam On Jan 27, 12:02 pm, adambossy

What is the advantage of using GWT RPC over RequestBuilder or JSON via HTTP?

2009-01-22 Thread adambossy
I am building a Web application using GWT on top of a python django server. I've been busting my butt to be able to interface the two cleanly. My goal is to be able to define two-line services in a django views file such as this: def service_get_male_users(request): return

Re: What is the advantage of using GWT RPC over RequestBuilder or JSON via HTTP?

2009-01-22 Thread adambossy
Thanks for the great reply. I'll modify my generators to output this code. Are there any resources you suggest to get started on properly protecting against a XSRF attack? Adam On Jan 22, 10:16 am, Shawn Pearce s...@google.com wrote: On Wed, Jan 21, 2009 at 23:47, adambossy adambo