forked from EpiDoc/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
htm-teihi.xsl
207 lines (205 loc) · 10.5 KB
/
htm-teihi.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<?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">
<!-- hi imports in teihi.xsl, html span created here -->
<xsl:import href="teihi.xsl"/>
<xsl:template match="t:hi">
<xsl:param name="parm-leiden-style" tunnel="yes" required="no"></xsl:param>
<xsl:choose>
<!-- No html code needed for these -->
<xsl:when
test="@rend = 'diaeresis' or @rend = 'grave' or @rend = 'acute' or @rend = 'asper' or @rend = 'lenis' or @rend = 'circumflex'">
<xsl:apply-imports/>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='apex' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='apex' and ancestor-or-self::t:*[@xml:lang][1][@xml:lang = 'la']
and not(child::t:unclear)">
<xsl:element name="span">
<xsl:attribute name="class">apex</xsl:attribute>
<xsl:attribute name="title">apex over: <xsl:value-of select="."/>
</xsl:attribute>
<xsl:value-of select="translate(., 'aeiou', 'áéíóú')"/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='caps' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='caps'">
<xsl:element name="span">
<xsl:attribute name="class">caps</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='intraline' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='intraline'">
<xsl:element name="span">
<xsl:attribute name="class">intraline</xsl:attribute>
<xsl:attribute name="title">line through</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='italic' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='italic'">
<xsl:element name="span">
<xsl:attribute name="class">italic</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='ligature' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='ligature'">
<xsl:element name="span">
<xsl:choose>
<xsl:when test="$parm-leiden-style=('petrae','iospe')">
<xsl:attribute name="class">petraeligature</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="class">ligature</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:attribute name="title">Ligature: these characters are joined</xsl:attribute>
<xsl:apply-imports/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='normal' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='normal'">
<xsl:element name="span">
<xsl:attribute name="class">normal</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='plain' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='plain'">
<xsl:element name="span">
<xsl:attribute name="class">plain</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='reversed' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='reversed'">
<xsl:element name="span">
<xsl:attribute name="class">reversed</xsl:attribute>
<xsl:attribute name="title">reversed: <xsl:value-of select="."/>
</xsl:attribute> ((<xsl:apply-templates/>)) </xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='small' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='small'">
<xsl:element name="span">
<xsl:attribute name="class">small</xsl:attribute>
<xsl:attribute name="title">small character: <xsl:value-of select="."/>
</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='strong' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='strong'">
<xsl:element name="strong">
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='subscript' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='subscript'">
<xsl:choose>
<xsl:when test="$parm-leiden-style = 'iospe'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="$parm-leiden-style = 'ddbdp' or $parm-leiden-style = 'sammelbuch'">
<span style="vertical-align:sub;">
<xsl:apply-imports/>
</span>
</xsl:when>
<xsl:otherwise>
<!-- To be decided -->
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='superscript' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='superscript'">
<xsl:choose>
<xsl:when test="$parm-leiden-style = 'iospe'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="$parm-leiden-style = 'ddbdp' or $parm-leiden-style = 'sammelbuch'">
<span style="vertical-align:super;">
<xsl:apply-imports/>
</span>
</xsl:when>
<xsl:otherwise>
<xsl:element name="sup">
<xsl:apply-templates/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='supraline' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- I wonder if this should be "overline" to match css practice? TE -->
<xsl:when test="@rend='supraline'">
<xsl:element name="span">
<xsl:attribute name="class">supraline</xsl:attribute>
<xsl:attribute name="title">line above</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='tall' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='tall'">
<xsl:element name="span">
<xsl:attribute name="class">tall</xsl:attribute>
<xsl:attribute name="title">tall character: <xsl:value-of select="."/>
</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- @rend='underline' -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:when test="@rend='underline'">
<xsl:element name="span">
<xsl:attribute name="class">underline</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:when>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- UNTRAPPED REND VALUE -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<xsl:otherwise>
<xsl:element name="span">
<xsl:attribute name="class">error</xsl:attribute>
<xsl:attribute name="title">
<xsl:text>hi tag with rend=</xsl:text>
<xsl:value-of select="@rend"/>
<xsl:text> is not supported!</xsl:text>
</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>