blob: afe3fc1ad3e5dcc37843c68913b1f8a41990b5d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?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>
|