-
Notifications
You must be signed in to change notification settings - Fork 0
/
cte4.xsl
109 lines (96 loc) · 2.92 KB
/
cte4.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<xsl:stylesheet
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.tei-c.org/ns/1.0"
exclude-result-prefixes="#all"
version="3.0">
<xsl:output omit-xml-declaration="1" />
<xsl:template match="tei:TEI">
<TEI>
<xsl:apply-templates select="tei:teiHeader" />
<xsl:apply-templates select="tei:text" />
</TEI>
</xsl:template>
<xsl:template match="tei:teiHeader" xml:space="preserve">
<teiHeader>
<fileDesc>
<xsl:apply-templates select="tei:titleStmt" />
</fileDesc>
<encodingDesc>
<tagsDecl>
<xsl:apply-templates select="//*:Format/*" />
</tagsDecl>
</encodingDesc>
</teiHeader>
</xsl:template>
<xsl:template match="*:HeaderFooter" />
<xsl:template match="*:Format" />
<xsl:template match="*:Format/*">
<xsl:if test="preceding-sibling::*">
<xsl:text>
</xsl:text>
</xsl:if>
<rendition scheme="other" xml:id="{translate(@name, ' ', '_')}">
<xsl:value-of select="@def"/>
</rendition>
</xsl:template>
<xsl:template match="tei:text//tei:ab[@type = '']">
<xsl:text>
</xsl:text>
<p>
<xsl:apply-templates />
</p>
</xsl:template>
<xsl:template match="tei:text">
<text>
<xsl:apply-templates />
<back>
<xsl:apply-templates select="//*:Notes1 | //*:Apparatus1" />
</back>
</text>
</xsl:template>
<xsl:template match="tei:ptr[not(@corresp)]">
<xsl:variable name="n" select="@n" />
<xsl:variable name="position" select="@position" />
<xsl:apply-templates select="//tei:note[starts-with(@n, $n) and @position=$position]">
<xsl:with-param name="is" select="@is" />
</xsl:apply-templates>
</xsl:template>
<xsl:template match="tei:note[not(@place)]">
<xsl:param name="is" />
<note>
<xsl:sequence select="@type | @subtype | @n" />
<xsl:if test="$is">
<xsl:attribute name="is" select="$is" />
</xsl:if>
<xsl:attribute name="xml:id">
<xsl:choose>
<xsl:when test="@type eq 'app1'">a1-</xsl:when>
<xsl:otherwise>n</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="@position" />
</xsl:attribute>
<xsl:apply-templates />
</note>
</xsl:template>
<!-- Usage could not be ascertained -->
<xsl:template match="*:S" />
<!-- info should now be in ab -->
<xsl:template match="*:P" />
<!-- avoid empty-only hi -->
<xsl:template match="tei:hi">
<xsl:choose>
<xsl:when test="normalize-space eq '' and not(preceding-sibling::node() or following-sibling::node())" />
<xsl:otherwise>
<hi>
<xsl:apply-templates select="@* | node()" />
</hi>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>