blob: 76f77e1b9cfc47b0ee69b2806667880683bae3c2 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:site="http://apache.org/cocoon/lenya/sitetree/1.0"
xmlns:col="http://apache.org/cocoon/lenya/collection/1.0"
exclude-result-prefixes="site">
<xsl:param name="language"/>
<xsl:template match="site:fragment">
<col:collection>
<xsl:apply-templates select="site:node"/>
</col:collection>
</xsl:template>
<xsl:template match="site:node">
<xsl:apply-templates select="site:label[lang($language)]"/>
</xsl:template>
<xsl:template match="site:label">
<col:document uuid="{../@uuid}"/>
</xsl:template>
</xsl:stylesheet>