Hi Eli,
I'd like to replace the widget css with a custom css.
I'm trying to use HttpURLConnection to create a Java version of
mygooglecal (http://www.lindenlan.net/2007/10/14/restyle-google-
calendar-2/).
I've got the same problem you wrote in the first post: no calendar
rendering (due to some js errors).

This is my code (jsp page):

HttpURLConnection con = (HttpURLConnection) new URL
(".....").openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader
(con.getInputStream()));
String line=null;
while ((line=in.readLine()) != null)
  out.println(line);

Any ideas?

Thanks,
Marco

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Calendar Data API" 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-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to