Tryag File Manager
Home
-
Turbo Force
Current Path :
/
home
/
cluster1
/
data
/
bu01
/
1121861
/
html
/
Books-on-demand
/
xml
/
Upload File :
New :
File
Dir
/home/cluster1/data/bu01/1121861/html/Books-on-demand/xml/conjugate.xsl
<?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/"> <HTML> <BODY> <TABLE> <xsl:for-each select="conjugation"> <TR> <TD>Tense/Aspect </TD> <TD> Singular</TD> <TD> Plural </TD> <xsl:for-each select="tense"> <TR><TD><xsl:value-of select="@tense"/></TD> <xsl:for-each select="verbform"> <TD> <xsl:value-of select="text()"/> </TD> </xsl:for-each> </TR> </xsl:for-each> </TR> </xsl:for-each> </TABLE> </BODY> </HTML> </xsl:template> </xsl:stylesheet>