Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
32 lines
670 B
XML
32 lines
670 B
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:import href="diffspec.xsl"/>
|
|
|
|
<xsl:template match="loc[@role='erratumref']">
|
|
<xsl:choose>
|
|
<xsl:when test="$show.diff.markup='0'">
|
|
<!-- nop -->
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:apply-imports/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="loc[@role='erratumref']" mode="text">
|
|
<xsl:choose>
|
|
<xsl:when test="$show.diff.markup='0'">
|
|
<!-- nop -->
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:apply-imports/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:template>
|
|
|
|
|
|
</xsl:stylesheet>
|
|
|