On 3 sep, 22:11, JAmes Atwill <[EMAIL PROTECTED]> wrote: > Sumit, > > Am I correct in reading that OOPHM will allow for things like FireBug/ > DOM Inspector work on generated code?
With OOPHM, you'll conduct your tests/debug in your browser(s) of choice, with all of its plugins, addons and other features. Today, the GWTShell embeds a browser engine and plugs things in to somehow "intercept" JavaScript calls. The selection script (the generated *.nocache.js) contains some code that detects it is running in hosted mode and use a different code line to make special calls to the plugged-in hosted mode things that call to Java. With OOPHM, you'll open your app (yes, even a deployed app!) in your browser with an additional "gwt.hosted=localhost:8888" in the query- string; this will tell your selection script that you want to run in hosted mode, so it will load the hosted.html instead of your *.cache.html, which includes the glue code that calls the browser plug- in (which will communicate with your GWTShell listening on localhost: 9997). This mean you'll be able to run any supported browser in hosted mode: FF2, FF3, IE6, IE7, IE8, Safari... (Chrome? Opera?) See http://code.google.com/p/google-web-toolkit/wiki/DesignOOPHM --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
