forked from EpiDoc/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtm-teidivedition.xsl
81 lines (71 loc) · 3.5 KB
/
htm-teidivedition.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?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">
<!-- Other div matches can be found in htm-teidiv*.xsl -->
<!-- Text edition div -->
<xsl:template match="t:div[@type = 'edition']" priority="1">
<xsl:param name="parm-internal-app-style" tunnel="yes" required="no"/>
<xsl:param name="parm-external-app-style" tunnel="yes" required="no"/>
<div id="edition">
<!-- Found in htm-tpl-lang.xsl -->
<xsl:call-template name="attr-lang"/>
<xsl:apply-templates/>
<xsl:choose>
<!-- Apparatus creation: look in tpl-apparatus.xsl for documentation and templates -->
<xsl:when test="$parm-internal-app-style = 'ddbdp'">
<!-- Framework found in htm-tpl-apparatus.xsl -->
<xsl:call-template name="tpl-apparatus"/>
</xsl:when>
<xsl:when test="$parm-internal-app-style = 'iospe'">
<!-- Template found in htm-tpl-apparatus.xsl -->
<xsl:call-template name="tpl-iospe-apparatus"/>
</xsl:when>
<xsl:when test="$parm-internal-app-style ='fullex'">
<!-- Template to be added in htm-tpl-apparatus.xsl -->
<xsl:call-template name="tpl-fullex-apparatus"/>
</xsl:when>
<xsl:when test="$parm-internal-app-style ='minex'">
<!-- Template to be added in htm-tpl-apparatus.xsl -->
<xsl:call-template name="tpl-minex-apparatus"/>
</xsl:when>
<!-- the default if nothing is selected is to print no internal apparatus -->
</xsl:choose>
</div>
</xsl:template>
<!-- Textpart div -->
<xsl:template match="t:div[@type='edition']//t:div[@type='textpart']" priority="1">
<xsl:param name="parm-leiden-style" tunnel="yes" required="no"/>
<xsl:param name="parm-internal-app-style" tunnel="yes" required="no"/>
<xsl:variable name="div-type">
<xsl:for-each select="ancestor::t:div[@type!='edition']">
<xsl:value-of select="@type"/>
<xsl:text>-</xsl:text>
</xsl:for-each>
</xsl:variable>
<xsl:variable name="div-loc">
<xsl:for-each select="ancestor::t:div[@type='textpart'][@n]">
<xsl:value-of select="@n"/>
<xsl:text>-</xsl:text>
</xsl:for-each>
</xsl:variable>
<xsl:if test="@n"><!-- prints div number. -->
<!-- position() added (BR #176-v9.2) to guarantee uniqueness of @id for textparts with same @n values -->
<span class="textpartnumber" id="{$div-type}ab{$div-loc}{@n}-{position()}">
<!-- add ancestor textparts -->
<xsl:if test="($parm-leiden-style = 'ddbdp' or $parm-leiden-style = 'sammelbuch') and @subtype">
<xsl:value-of select="@subtype"/>
<xsl:text> </xsl:text>
</xsl:if>
<xsl:value-of select="@n"/>
</span>
<xsl:if test="child::*[1][self::t:div[@type='textpart'][@n]]"><br /></xsl:if>
</xsl:if>
<xsl:apply-templates/>
<xsl:if test="$parm-internal-app-style = 'iospe' and @n">
<!-- Template found in htm-tpl-apparatus.xsl -->
<xsl:call-template name="tpl-iospe-apparatus"/>
</xsl:if>
</xsl:template>
</xsl:stylesheet>