<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
	<xsl:template match="revisionHistory" mode="after-remarks-section">
		<h4 class="dtH4">Revision History</h4>
        <div class="tablediv">
			<table class="dtTABLE" cellspacing="0" width="100%" >
				<tr valign="top">
            		<th width="20%">Author</th>
            		<th width="20%">Date</th>
            		<th width="60%">Description</th>
				</tr>
				<xsl:call-template name="revisions"/>
	        </table>
	    </div>
	</xsl:template>
	<xsl:template name="revisions">
		<xsl:for-each select="revision">
			<tr valign="top">
				<td><xsl:value-of select="@author"/></td>
				<td><xsl:value-of select="@date"/></td>
				<td><xsl:apply-templates select="." mode="slashdoc"/></td>
			</tr>
		</xsl:for-each>
	</xsl:template>
</xsl:stylesheet>
