Annotation of FreeBSD/tinderbox/webui/templates/paefchen/rss.tpl, revision 1.1
1.1 ! as 1: <?='<'?>?xml version="1.0" encoding="ISO-8859-1"?>
! 2: <!-- $Paefchen: FreeBSD/tinderbox/webui/templates/paefchen/rss.tpl,v 1.1 2008/01/05 11:56:01 as Exp $ -->
! 3:
! 4: <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
! 5: <channel>
! 6: <title><?=$tinderbox_title?></title>
! 7: <link><?=$wwwrooturi?></link>
! 8: <lastBuildDate><?=$lastBuildDate?></lastBuildDate>
! 9: <generator><?=$tinderbox_name?></generator>
! 10: <ttl>10</ttl>
! 11: <?foreach($data as $row) {?>
! 12: <item>
! 13: <title>[<?=$row['jail_name']?>] - <?=$row['port_directory']?> - <?=$row['port_last_status']?></title>
! 14: <link><?=$row['port_link_logfile']?></link>
! 15: <pubDate><?=$row['port_last_built']?></pubDate>
! 16: <author><?=$row['build_name']?> => <?=$row['jail_name']?></author>
! 17: <description><?=$row['port_directory']?> => <?=$row['port_last_status']?> [<?=$row['build_name']?>|<?=$row['jail_name']?>] -- <?=$row['port_link_logfile']?></description>
! 18: </item>
! 19: <?}?>
! 20: </channel>
! 21: </rss>