forked from oeuvres/teinte_xsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtei_alix.xsl
255 lines (243 loc) · 8.56 KB
/
tei_alix.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<?xml version="1.0" encoding="UTF-8"?>
<!--
To index TEI files in lucene with Alix
LGPL http://www.gnu.org/licenses/lgpl.html
© 2019 Frederic.Glorieux@fictif.org & Opteos &
-->
<xsl:transform version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:alix="http://alix.casa"
exclude-result-prefixes="tei"
>
<xsl:import href="tei_html/tei_flow_html.xsl"/>
<xsl:import href="tei_html/tei_notes_html.xsl"/>
<xsl:import href="tei_html/tei_toc_html.xsl"/>
<xsl:output indent="yes" encoding="UTF-8" method="xml" />
<!-- chapter split policy -->
<xsl:key name="split" match="
tei:*[self::tei:div or self::tei:div1 or self::tei:div2][normalize-space(.) != ''][@type][
contains(@type, 'article')
or contains(@type, 'chapter')
or contains(@subtype, 'split')
or contains(@type, 'act')
or contains(@type, 'poem')
or contains(@type, 'letter')
]
| tei:group/tei:text
| tei:TEI/tei:text/tei:*/tei:*[self::tei:div or self::tei:div1 or self::tei:group or self::tei:titlePage or self::tei:castList][normalize-space(.) != '']"
use="generate-id(.)"/>
<!-- Name of file, provided by caller -->
<xsl:param name="filename"/>
<!-- Get metas as a global var to insert fields in all chapters -->
<xsl:variable name="info">
<alix:field name="title" type="facet" value="{normalize-space($doctitle)}"/>
<xsl:for-each select="/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt">
<xsl:for-each select="tei:author|tei:principal">
<xsl:variable name="value">
<xsl:apply-templates select="." mode="key"/>
</xsl:variable>
<xsl:if test="position() = 1">
<alix:field name="author1" type="facet" value="{normalize-space($value)}"/>
</xsl:if>
<alix:field name="author" type="facets" value="{normalize-space($value)}"/>
</xsl:for-each>
</xsl:for-each>
<xsl:if test="$byline != ''">
<alix:field name="byline" type="store">
<xsl:copy-of select="$byline"/>
</alix:field>
</xsl:if>
<alix:field name="year" type="int">
<xsl:variable name="value" select="substring($docdate, 1, 4)"/>
<xsl:if test="$value <= 0">
<xsl:message terminate="yes">
<xsl:value-of select="$value"/>
<xsl:text> bad DATE in </xsl:text>
<xsl:value-of select="$filename"/>
</xsl:message>
</xsl:if>
<xsl:attribute name="value">
<xsl:value-of select="$value"/>
</xsl:attribute>
</alix:field>
</xsl:variable>
<!-- an html bibliographic line -->
<xsl:variable name="bibl-book">
<xsl:if test="$byline != ''">
<span class="byline">
<xsl:copy-of select="$byline"/>
</span>
</xsl:if>
<xsl:if test="$doctitle != ''">
<xsl:text> </xsl:text>
<span class="title">
<xsl:copy-of select="$doctitle"/>
</span>
</xsl:if>
<xsl:variable name="year" select="substring($docdate, 1, 4)"/>
<xsl:if test="string(number($year)) != 'NaN'">
<xsl:text> </xsl:text>
<span class="year">
<xsl:text>(</xsl:text>
<xsl:value-of select="$year"/>
<xsl:text>)</xsl:text>
</span>
</xsl:if>
</xsl:variable>
<xsl:template match="/*">
<!-- XML book is handled as nested lucene documents (chapters) -->
<alix:book>
<xsl:attribute name="xml:id">
<xsl:value-of select="$filename"/>
</xsl:attribute>
<xsl:copy-of select="$info"/>
<alix:field name="bibl" type="meta">
<xsl:copy-of select="$bibl-book"/>
</alix:field>
<alix:field name="toc" type="store">
<xsl:call-template name="toc"/>
</alix:field>
<!-- process chapters -->
<xsl:apply-templates mode="alix" select="*"/>
</alix:book>
</xsl:template>
<!-- Default mode alix -->
<xsl:template match="tei:teiHeader" mode="alix"/>
<xsl:template match="*" mode="alix">
<xsl:apply-templates select="*" mode="alix"/>
</xsl:template>
<xsl:template mode="alix" match="
tei:group/tei:text | tei:group | tei:body |
tei:div | tei:div0 | tei:div1 | tei:div2 | tei:div3 | tei:div4 | tei:div5 | tei:div6 | tei:div7
"
>
<xsl:choose>
<!-- declared section -->
<xsl:when test="
contains(@type, 'article')
or contains(@type, 'chapter')
or contains(@subtype, 'split')
or contains(@type, 'act')
or contains(@type, 'poem')
or contains(@type, 'letter')
">
<xsl:call-template name="chapter"/>
</xsl:when>
<!-- section container -->
<xsl:when test="
descendant::*[
contains(@type, 'article')
or contains(@type, 'chapter')
or contains(@subtype, 'split')
or contains(@type, 'act')
or contains(@type, 'poem')
or contains(@type, 'letter')
]">
<xsl:apply-templates select="*" mode="alix"/>
</xsl:when>
<!-- blocks of text, open a chapter -->
<xsl:when test="tei:p|tei:l|tei:list|tei:argument|tei:table">
<xsl:call-template name="chapter"/>
</xsl:when>
<xsl:when test="self::tei:body">
<xsl:apply-templates select="*" mode="alix"/>
</xsl:when>
<xsl:when test="./*//tei:head[contains(., 'Chapitre')]">
<xsl:apply-templates select="*" mode="alix"/>
</xsl:when>
<!-- maybe not best grain, but not too small -->
<xsl:otherwise>
<xsl:call-template name="chapter"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="next">
<xsl:choose>
<xsl:when test="following-sibling::*[1]">
<xsl:apply-templates select="following-sibling::*[1]" mode="analytic"/>
</xsl:when>
<xsl:when test="following::*[1]">
<xsl:variable name="next" select="following::*[1]/descendant::*[contains(' article chapter act poem letter ', @type) or @subtype = 'split'][1]"/>
<xsl:choose>
<xsl:when test="$next">
<xsl:apply-templates select="$next" mode="analytic"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="following::*[1]" mode="analytic"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template name="prev">
<xsl:choose>
<xsl:when test="preceding-sibling::*[1]">
<xsl:apply-templates select="preceding-sibling::*[1]" mode="analytic"/>
</xsl:when>
<xsl:when test="preceding::*[1][not(ancestor-or-self::tei:teiHeader)]">
<xsl:apply-templates select="preceding::*[1]" mode="analytic"/>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="*" mode="analytic">
<xsl:for-each select="ancestor-or-self::*[not(self::tei:TEI)][not(self::tei:text)][not(self::tei:body)]">
<xsl:if test="position() != 1"> — </xsl:if>
<xsl:apply-templates select="." mode="title"/>
</xsl:for-each>
</xsl:template>
<xsl:template name="chapter">
<alix:chapter>
<xsl:copy-of select="$info"/>
<alix:field name="bibl" type="meta">
<xsl:call-template name="bibl"/>
</alix:field>
<xsl:variable name="prev">
<xsl:call-template name="prev"/>
</xsl:variable>
<xsl:if test="$prev != ''">
<alix:field name="prev" type="store">
<xsl:value-of select="$prev"/>
</alix:field>
</xsl:if>
<xsl:variable name="next">
<xsl:call-template name="next"/>
</xsl:variable>
<xsl:if test="$next != ''">
<alix:field name="next" type="store">
<xsl:value-of select="$next"/>
</alix:field>
</xsl:if>
<alix:field name="text" type="text">
<xsl:apply-templates/>
<xsl:call-template name="footnotes"/>
</alix:field>
</alix:chapter>
</xsl:template>
<!-- Terms in subtitle could be boosted ? -->
<xsl:template name="children">
<xsl:for-each select=".//tei:div">
<alix:field name="child" type="text">
<xsl:apply-templates select="." mode="title"/>
</alix:field>
</xsl:for-each>
</xsl:template>
<xsl:template name="parents">
<xsl:for-each select="ancestor-or-self::*">
<!--
<xsl:sort order="descending" select="position()"/>
-->
<xsl:choose>
<xsl:when test="self::tei:TEI"/>
<xsl:when test="self::tei:text"/>
<xsl:when test="self::tei:body"/>
<xsl:otherwise>
<alix:field name="parent" type="text">
<xsl:apply-templates select="." mode="title"/>
</alix:field>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
</xsl:transform>