<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:output method="html"/>
	<xsl:variable name="regexFinder.root" select="//regexFinder"/>
	<xsl:variable name="regexFinder.baseDir" select="$regexFinder.root/@basedir"/>
	<xsl:template match="/">
		<div id="regexFinder-report">
			<table class="section-table" cellSpacing="0" cellPadding="2" width="98%" border="0">
				<tr>
					<td class="sectionheader" colSpan="2">TODO's summary</td>
				</tr>
				<tr/>
				<tr>
					<td>
						<b>
							<xsl:text>Total number of TODO's:</xsl:text><xsl:value-of select="count($regexFinder.root//match)"/>
						</b>
					</td>
				</tr>
			</table>
		</div>
	</xsl:template>
</xsl:stylesheet>
