4 messages in com.googlegroups.google-gadgets-apiRe: Makerequest broken for iGoogle?
FromSent OnAttachments
jdavid.net28 Mar 2008 19:05 
Vision Jinx (Guru)28 Mar 2008 21:27 
jdavid.net30 Mar 2008 20:44 
Vision Jinx (Guru)31 Mar 2008 02:31 
Subject:Re: Makerequest broken for iGoogle?
From:Vision Jinx (Guru) (vjn@gmail.com)
Date:03/28/2008 09:27:22 PM
List:com.googlegroups.google-gadgets-api

Hi,

This group doesn't deal as much with the opensocial end of things and we have not adopted the new name space yet (http://code.google.com/ apis/gadgets/docs/reference/). You may want to try posting in the open social group also and they may be able to better answer you. >> http://groups.google.com/group/opensocial?hl=en

Cheers! Vision Jinx

On Mar 28, 8:05 pm, "jdavid.net" <just@gmail.com> wrote:

i am trying to get the following gadget to work

http://opensocial.socialhelix.net/hi5/socialhelix-ical.xml

the following code in the gadget never calls, call_fetch_iCal, but the same code works in orkut

[snipit] function fetch_iCals(){

//alert("fetch icals");

var iCal_feeds_array = prefs.getArray("iCal_feeds");

for ( var i in iCal_feeds_array){

//alert("make request "+iCal_feeds_array[i]);

var url = iCal_feeds_array[i];

var params = {};

params[gadgets.io.RequestParameters.CONTENT_TYPE] = gadgets.io.ContentType.TEXT;

gadgets.io.makeRequest(url, call_fetch_iCal, params);

}

}