Source: site.view [edit]
Function name: sfStationPartyLinks
Arguments:
Description:
Page type: webl
Render function:  
Module: global

Page source:

var P = GetURL("http://www.sfstation.com/rss.php?key=C");

var Content = Elem(P, "channel");


var AllItems = Elem(P, "item") inside Content[0];
var res = "";
var AllLinks = [];
every CurItem in AllItems do
  var CurHeading = Elem(P, "title") inside CurItem;

  if Size(CurHeading) > 0 then res = res + "<li> " + Text(CurHeading[0]) end;  

  var CurLink = Elem(P, "link") inside CurItem;

  AllLinks = AllLinks + [CurLink[0]];


end;

AllLinks;