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);
}
}