-
Notifications
You must be signed in to change notification settings - Fork 11
/
htm-teig.xsl
66 lines (61 loc) · 2.68 KB
/
htm-teig.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
<?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">
<!-- Import templates can be found in teig.xsl -->
<xsl:import href="teig.xsl"/>
<xsl:template match="t:g">
<xsl:param name="parm-edition-type" tunnel="yes" required="no"></xsl:param>
<xsl:param name="parm-leiden-style" tunnel="yes" required="no"></xsl:param>
<xsl:param name="parm-edn-structure" tunnel="yes" required="no"></xsl:param>
<xsl:param name="location" tunnel="yes" required="no"></xsl:param>
<xsl:call-template name="lb-dash">
<!-- params needed for excluding diplomatic and medCY project -->
<xsl:with-param name="parm-edition-type" tunnel="yes"/>
<xsl:with-param name="parm-leiden-style" tunnel="yes"/>
</xsl:call-template>
<xsl:call-template name="w-space"/>
<xsl:choose>
<xsl:when test="starts-with($parm-leiden-style, 'edh')"/>
<xsl:when test="($parm-leiden-style = ('ddbdp','dclp','sammelbuch'))">
<!-- Found in teig.xsl -->
<xsl:call-template name="g-ddbdp"/>
</xsl:when>
<xsl:when test="$parm-leiden-style = 'london'">
<xsl:call-template name="g-london"/>
</xsl:when>
<xsl:when test="$parm-leiden-style = 'iospe'">
<xsl:apply-imports/>
<!-- removed customization of IOSPE from stylesheets -->
<!--<xsl:call-template name="g-iospe"/>-->
</xsl:when>
<xsl:when test="$parm-leiden-style = 'rib'">
<xsl:call-template name="g-rib"/>
</xsl:when>
<xsl:when test="$parm-edition-type = 'diplomatic'">
<xsl:text> </xsl:text>
<em>
<span class="smaller">
<xsl:apply-imports/>
</span>
</em>
<xsl:text> </xsl:text>
</xsl:when>
<xsl:when test="$parm-leiden-style = 'dohnicht'">
<xsl:text>⊂</xsl:text>
<xsl:apply-imports/>
<xsl:text>⊃</xsl:text>
</xsl:when>
<xsl:when test="$parm-edn-structure='inslib' and (starts-with(ancestor::t:TEI//t:publicationStmt/t:idno[@type='filename']/text(), 'IGCyr') or starts-with(ancestor::t:TEI//t:publicationStmt/t:idno[@type='filename']/text(), 'GVCyr'))">
<xsl:apply-imports/>
</xsl:when>
<xsl:otherwise>
<xsl:text>((</xsl:text>
<xsl:apply-imports/>
<xsl:text>))</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:call-template name="w-space"/>
</xsl:template>
</xsl:stylesheet>