blob: 7ede13850284bda405ec3e57eeb1a667b471f864 [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:col="http://apache.org/cocoon/lenya/collection/1.0"
xmlns:ci="http://apache.org/cocoon/include/1.0">
<xsl:param name="uuid"/>
<xsl:param name="language"/>
<xsl:template match="col:collection">
<xsl:copy>
<xsl:copy-of select="@*"/>
<ci:include src="cocoon://modules/collection/metadata/{$uuid}/{$language}.xml"/>
<xsl:apply-templates select="col:document"/>
</xsl:copy>
</xsl:template>
<xsl:template match="col:document">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:if test="not(*)">
<ci:include src="cocoon://modules/collection/metadata/{@uuid}/{$language}.xml"/>
<ci:include src="lenya-document:{@uuid},lang={$language}?format=xhtml"/>
</xsl:if>
<xsl:copy-of select="*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>