37 lines
907 B
XML
37 lines
907 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:output method="xml"
|
|
encoding="ISO-8859-1"
|
|
indent="yes"
|
|
/>
|
|
|
|
<xsl:template match="/">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="@*|node()" />
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="/html/body">
|
|
<body>
|
|
<xsl:apply-templates />
|
|
<xsl:for-each select="/html/set/project[@type='other']">
|
|
<p><a href="{link}"><xsl:value-of select="title" /></a><br />
|
|
<xsl:apply-templates select="description/node()" /></p>
|
|
</xsl:for-each>
|
|
</body>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="@*|node()" priority="-1">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="@*|node()"/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="set">
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|
|
|