home *** CD-ROM | disk | FTP | other *** search
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output indent="yes" omit-xml-declaration="yes" />
-
- <xsl:template match="/">
- <html>
- <xsl:apply-templates/>
- </html>
- </xsl:template>
-
- <xsl:template match="Tag">
- <xsl:variable name="vValue" select="Value" />
-
- <TABLE>
- <TR ID="{@ID}">
- <xsl:for-each select="(document('')//*)[position() <= $vValue]">
- <TD>
- </TD>
- </xsl:for-each>
- </TR>
- </TABLE>
- </xsl:template>
- </xsl:stylesheet>
-
-
-