Re: Scraping website with GWT

2010-08-13 Thread Henrique Viecili
.getElement(); // be happy In case you must scrap pages outside your domain and this must be done in the browser, you can use a Signed Java Applet (would be a great exercise of your java knowledge). Anyway, the easiest way would be with server side code as *lineman78* and *cokol* said. Chee

Re: Scraping website with GWT

2010-08-12 Thread Henrique Viecili
hmmm... you could use IFRAME to load the page, some JSNI to get the HTML from the IFRAME (you might get a security warning or even be blocked), after you have the HTML you just use DOM support on GWT to do the thing. but should be much easier if you use any server side language to do that for you

Re: Change font-size on window resize

2010-08-12 Thread Henrique Viecili
operty, value); to get the Body element you can use: RootPanel.getBodyElement(); Cheers, Henrique Viecili On Aug 11, 4:55 am, René wrote: > I'm building a game application that is intended to fully occupy a > browser window. This means that when a user resizes the window, the

Re: Compiled JS more readable?

2010-04-09 Thread Henrique Viecili
t seems this property was removed from GWT 2.0... unfortunately. att. Henrique Viecili On Apr 7, 3:21 pm, mariyan nenchev wrote: > If you are using Google eclipse plugin when you go to Run Configuration and > create new Web Application configuration on the second "GWT" tab there ar

Re: Mutli Module Application - GWT

2009-11-06 Thread Henrique Viecili
think you should take a look at the videos in Google IO, and if you already know something about GWT, here is where you should start: http://code.google.com/events/io/sessions/GoogleWebToolkitBestPractices.html Regards, Henrique Viecili On Nov 5, 9:52 am, Jack wrote: > Hello GWT Team, > &

Adding request parameters to all async calls to servlets

2009-10-07 Thread Henrique Viecili
Hi fellows... I am faced with this difficult situation: I have a GWT application built in the RPC style for async calls (1 Async interface, 1 RemoteService interface and 1 RemoteServiceServlet implementation) and now there is a requirement of sending some request parameters to each async call and