Re: My kingdom for a cache

2010-09-16 Thread mooreds
Hi David, Most AJAX implementations respect caching headers, then you can let the browser handle eviction of your data. http://www.mnot.net/javascript/xmlhttprequest/cache.html has a set of tests for browsers. However, if you want to mark something dirty and have the cache pull it down, then

Re: Upgrade from 1.5.3 to 2.x

2010-08-16 Thread mooreds
I posted about this. It's not too detailed, but could be some help. http://www.mooreds.com/wordpress/archives/572 Let me know if you had specific issues and I'll try to remember what I did. We're slowly moving off deprecated code (like ClickListeners), so you don't have to do it in a big bang.

Re: knowing module inheritance

2010-08-16 Thread mooreds
I didn't find any real solution, so I'll have to maintain the dependent module list in two places (code and xml). Bummer. Dan On Aug 9, 8:54 am, mooreds moor...@gmail.com wrote: Hi folks, I have a bit of a peculiar need.  I work on a site with a number of disparate GWT modules: moduleA

knowing module inheritance

2010-08-09 Thread mooreds
Hi folks, I have a bit of a peculiar need. I work on a site with a number of disparate GWT modules: moduleA moduleB moduleC They all attach to different spans and enhance site functionality. To load them all when the page loads, I have a loader module (loaderModule) which inherits from all

Re: HTML Table

2010-08-09 Thread mooreds
Hi, The name of that method is a bit misleading. HTMLTable inherits setTitle from the UIObject class, and from the javadoc: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/UIObject.html#setTitle(java.lang.String) this method: Sets the title associated with

Re: Script tag dynamic loading

2010-08-09 Thread mooreds
Hi Vincent, You might want to look at this project: http://code.google.com/p/gwt-google-apis/wiki/MapsGettingStarted This not only has gwt bindings for google maps, but also has a way to load the API dynamically (using the ajax loader):

Re: onModuleLoad() Before Page Load

2010-08-09 Thread mooreds
Hi Ryan, This doesn't answer your question, but I was wondering why you had the velocity template initiate attaching your widgets to your spans? Another possibility is to have velocity write a list of span ids to a hidden span, and then have your GWT component (in a startup module) read that

Re: onModuleLoad() Before Page Load

2010-08-09 Thread mooreds
to be embedded wherever I choose. The only way I could think of accomplishing this was creating a GWT JSNI method that takes a div id string as a parameter so it knows where to attach my widget. On Aug 9, 8:18 am, mooreds moor...@gmail.com wrote: Hi Ryan, This doesn't answer your question

Re: introducing a marketplace for GWT components associated projects

2010-08-09 Thread mooreds
Great idea! I posted to my blog about your announcement: http://www.mooreds.com/wordpress/archives/623 (Could be a source of more projects to contact and invite to the marketplace). Hope this gets some traction. Dan On Aug 9, 10:29 am, Joe Hudson joe...@gmail.com wrote: Thanks Christian,

Re: Script tag dynamic loading

2010-08-09 Thread mooreds
I don't understand? The gwt maps project is GWT. Do you want to load the map via GWT, or before GWT loads? If after GWT loads, you could definitely load or not load based on some user input. Dan On Aug 9, 9:39 am, Vincent COROLLEUR vcoroll...@gmail.com wrote: Thx for your help mooreds, but i

Re: problems running application in development mode using -noserver switch and cache.html/nocache.js files not served from the webapp root

2010-02-08 Thread mooreds
please post your solution. Thanks, - Jay On Feb 7, 12:52 pm, mooreds moor...@gmail.com wrote: Hi folks, I'm trying to get GWT 2.0.1 development mode working with the - noserver option.  The main issue is that while running in development mode, any changes I make in the GWT java

Re: problems running application in development mode using -noserver switch and cache.html/nocache.js files not served from the webapp root

2010-02-08 Thread mooreds
Another issue I ran into was using the XS linker causes development mode to stop working. Apparently this is a known issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=4232 On Feb 8, 10:26 am, mooreds moor...@gmail.com wrote: Hi Jay, I think my problem is a bit different

problems running application in development mode using -noserver switch and cache.html/nocache.js files not served from the webapp root

2010-02-07 Thread mooreds
Hi folks, I'm trying to get GWT 2.0.1 development mode working with the - noserver option. The main issue is that while running in development mode, any changes I make in the GWT java classes are not reflected when I refresh the browser. This is a bit of a nonstandard setup, so let me outline

New release of GWT crypto library

2009-10-08 Thread mooreds
Hi folks, I've just released 1.0.2 of gwt-crypto, a library that provides TripleDES encryption for GWT. http://code.google.com/p/gwt-crypto/ Thanks, Dan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Has anyone used Google streetview in GWT?

2009-01-07 Thread mooreds
Hi folks, I am currently using the Mapitz GWT Google Maps bindings (http:// sourceforge.net/tracker/?group_id=169331), because I'm still on GWT1.4 (yeah, I know, I know). When we upgrade to 1.5, I plan to use the Maps API provided by Google:

Re: how to clear cache on windows hosted mode

2008-09-23 Thread mooreds
/23 mooreds [EMAIL PROTECTED] Hi folks, I am looking for how to clear the hosted mode browsers cache. In particular, I'm interested in clearing out the CSS and script tag content--I'm using some dynamic JSON that I want to make sure is not cached. I found one post a month ago