<?xml version='1.0'?>
<xsl:stylesheet	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	version="1.0">
<xsl:include href="/home/www/w3t/team/tech/xslt/lib_uow.xsl" />

<xsl:output method="html" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"></xsl:output>

<xsl:template match="posts">
<html>
	<head>
	<title>Usenet Report: <xsl:value-of select="@group"></xsl:value-of></title>
	<link rel="stylesheet" href="{$uow_css}" type="text/css"/>
	</head>
	<xsl:call-template name="body"/>

</html>
</xsl:template>

<xsl:template name="content">
	<h1>Usenet Crawl</h1>
	<p><strong>Group</strong>: <xsl:value-of select="@group"></xsl:value-of>
	<br /><strong>Fetch Date</strong>: <xsl:value-of select="@report_date"></xsl:value-of>
	<br /><strong>Unread Posts</strong>: <xsl:value-of select="@articles_unmarked"></xsl:value-of>
	</p>
	<hr size="1" />
	<p>Found <xsl:value-of select="count(post)" /> new posts for this group.</p>
	<ul>
	<xsl:for-each select="post">
	<li><a href="http://groups.google.com/groups?selm={@message-id}"><xsl:value-of select="@subject"></xsl:value-of></a></li>
	</xsl:for-each>
	</ul>
</xsl:template>

</xsl:stylesheet>

