forked from EpiDoc/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teichoice.xsl
35 lines (32 loc) · 1.46 KB
/
teichoice.xsl
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
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:t="http://www.tei-c.org/ns/1.0"
exclude-result-prefixes="t" version="2.0">
<xsl:template match="t:choice">
<xsl:param name="parm-apparatus-style" tunnel="yes" required="no"></xsl:param>
<xsl:param name="parm-leiden-style" tunnel="yes" required="no"></xsl:param>
<xsl:choose>
<xsl:when test="child::t:sic and child::t:corr and $parm-leiden-style=('edh-names','edh-itx')">
<xsl:text><</xsl:text>
<xsl:apply-templates select="t:corr"/>
<xsl:text>=</xsl:text>
<xsl:value-of select="translate(t:sic, $all-grc, $grc-upper-strip)"/>
<xsl:text>></xsl:text>
</xsl:when>
<xsl:when test="child::t:unclear[2] and not(child::t:reg or child::t:sic or child::t:corr or child::t:orig)">
<xsl:apply-templates select="child::t:unclear[1]"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
<!-- Found in [htm|txt]-tpl-apparatus -->
<xsl:if
test="$parm-apparatus-style = 'ddbdp' and ((child::t:sic and child::t:corr) or (child::t:orig and child::t:reg))">
<xsl:call-template name="app-link">
<xsl:with-param name="location" select="'text'"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>