";
$i = 0;
foreach ($rss->items as $item)
{
$entryDescription = (isset($item['atom_content']) and $item['atom_content']) ?
$item['atom_content'] : $item['description'];
$description = Utilities::escapeForJavascript(
'
'.$entryDescription.
' '.$item['dc']['subject'].'
');
if (strlen($description) > 2000)
$width = 800;
elseif (strlen($description) > 500)
$width = 500;
else
$width = 400;
if ($item['title'])
{
$class = ($i % 2) ? 'odd' : '';
echo "
".$item['title'].
'
';
$i++; if ($i > 7) break; //only show the first 10 items for brevity
}
}
echo "
";
}
}
?>