blob: 9762be5acfe0e9c56500f68d0cb1078340e4ef71 [file]
<?xml version="1.0"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:import href="copyover.xsl"/>
<xsl:template match="/">
<xsl:apply-templates select="//todo"/>
</xsl:template>
<xsl:template match="todo">
<document>
<header>
<title>Todo List</title>
</header>
<body>
<xsl:apply-templates/>
</body>
</document>
</xsl:template>
<xsl:template match="actions">
<section>
<title><xsl:value-of select="@priority"/></title>
<ul>
<xsl:for-each select="action">
<li>
<strong><xsl:text>[</xsl:text><xsl:value-of select="@context"/><xsl:text>]</xsl:text></strong><xsl:text> </xsl:text>
<xsl:apply-templates/>
<xsl:text> </xsl:text>&#8594;<xsl:text> </xsl:text><xsl:value-of select="@dev"/>
</li>
</xsl:for-each>
</ul>
</section>
</xsl:template>
</xsl:stylesheet>