forked from oeuvres/teinte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tei2toc.xsl
483 lines (471 loc) · 17.4 KB
/
tei2toc.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?xml version="1.0" encoding="UTF-8"?>
<!--
<h1>TEI » HTML (tei2html.xsl)</h1>
LGPL http://www.gnu.org/licenses/lgpl.html
© 2013 Frederic.Glorieux@fictif.org et LABEX OBVIL
© 2012 Frederic.Glorieux@fictif.org
© 2010 Frederic.Glorieux@fictif.org et École nationale des chartes
© 2007 Frederic.Glorieux@fictif.org
© 2005 ajlsm.com et Cybertheses
<p>
Cette transformation XSLT 1.0 (compatible navigateurs, PHP, Python, Java…)
transforme du TEI en HTML5.
Les auteurs ne s'engagent pas à supporter les 600 éléments TEI.
Cette feuille prend en charge <a href="http://www.tei-c.org/Guidelines/Customization/Lite/">TEI lite</a>
et les éléments TEI documentés dans les <a href="./../schema/">schémas</a> de cette installation.
</p>
<p>
Alternative : les transformations de Sebastian Rahtz <a href="http://www.tei-c.org/Tools/Stylesheets/">tei-c.org/Tools/Stylesheets/</a>
sont officiellement ditribuées par le consortium TEI, cependant ce développement est en XSLT 2.0 (java requis).
</p>
-->
<xsl:transform version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:eg="http://www.tei-c.org/ns/Examples"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:epub="http://www.idpf.org/2007/ops"
exclude-result-prefixes="eg html rng tei epub"
xmlns:exslt="http://exslt.org/common"
extension-element-prefixes="exslt"
>
<xsl:import href="common.xsl"/>
<!-- Name of this xsl -->
<xsl:param name="this">tei2toc.xsl</xsl:param>
<!-- No XML declaration for html fragments -->
<xsl:output encoding="UTF-8" indent="yes" method="xml" omit-xml-declaration="yes"/>
<!-- What kind of root element to output ? html, nav… -->
<xsl:param name="root" select="$html"/>
<!-- Racine -->
<xsl:template match="/*">
<xsl:choose>
<xsl:when test="$root=$front">
<xsl:call-template name="toc-front"/>
</xsl:when>
<xsl:when test="$root=$back">
<xsl:call-template name="toc-back"/>
</xsl:when>
<!-- HTML fragment -->
<xsl:when test="$root=$ul or $root=$ol">
<xsl:call-template name="toc"/>
</xsl:when>
<!-- HTML fragment -->
<xsl:when test="$root=$nav">
<nav class="toc">
<xsl:call-template name="att-lang"/>
<xsl:call-template name="toc-header"/>
<xsl:call-template name="toc"/>
</nav>
</xsl:when>
<!-- Complete doc -->
<xsl:otherwise>
<xsl:text disable-output-escaping="yes"><!DOCTYPE html></xsl:text>
<xsl:value-of select="$lf"/>
<html>
<xsl:call-template name="att-lang"/>
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
<meta name="modified" content="{$date}"/>
<!-- déclaration classes css locale (permettre la surcharge si généralisation) -->
<!-- à travailler
<xsl:apply-templates select="/*/tei:teiHeader/tei:encodingDesc/tei:tagsDecl"/>
-->
<link rel="stylesheet" type="text/css" href="{$theme}tei2html.css"/>
<script type="text/javascript" src="{$theme}Tree.js">//</script>
</head>
<body class="{$corpusid}">
<nav>
<xsl:call-template name="toc-header"/>
<xsl:call-template name="toc"/>
</nav>
</body>
</html>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Générer une navigation dans les sections -->
<xsl:template name="toc">
<xsl:variable name="html">
<xsl:apply-templates select="/*/tei:text/tei:front" mode="li"/>
<xsl:apply-templates select="/*/tei:text/tei:body" mode="li"/>
<xsl:apply-templates select="/*/tei:text/tei:group" mode="li"/>
<xsl:apply-templates select="/*/tei:text/tei:back" mode="li"/>
</xsl:variable>
<xsl:if test="$html != ''">
<ol class="tree">
<xsl:copy-of select="$html"/>
</ol>
</xsl:if>
</xsl:template>
<xsl:template name="toc-header">
<header>
<a>
<xsl:attribute name="href">
<xsl:for-each select="/*/tei:text">
<xsl:call-template name="href"/>
</xsl:for-each>
</xsl:attribute>
<xsl:if test="$byline">
<xsl:copy-of select="$byline"/>
<xsl:text> </xsl:text>
</xsl:if>
<xsl:if test="$docdate != ''">
<span class="docDate">
<xsl:text> (</xsl:text>
<xsl:value-of select="$docdate"/>
<xsl:text>)</xsl:text>
</span>
</xsl:if>
<br/>
<xsl:copy-of select="$doctitle"/>
</a>
</header>
</xsl:template>
<!--
<h3>mode="a" (lien html)</h3>
<p>
Générer un lien html <a href="href" title="title">label</a> pour un élément, notamment pour une table des matières,
mais aussi pour le liage dans l'apparat critique. Ce mode fait usage des modes :
</p>
<ul>
<li>“label” : titre court pour l'intitulé du lien</li>
<li>“title” : titre long pour une bulle surgissante</li>
<li>“href” : lien URI relatif fonctionnant dans le contexte de la publication (en un ou plusieurs fichiers)</li>
</ul>
-->
<xsl:template name="a">
<xsl:param name="title"/>
<xsl:choose>
<xsl:when test="$title ">
<xsl:apply-templates select="." mode="a">
<xsl:with-param name="title" select="$title"/>
</xsl:apply-templates>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="." mode="a"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Par défaut, le mode lien ne produit rien et alerte d'un manque dans la sortie. -->
<xsl:template match="node()" mode="a">
<b style="color:red;"><<xsl:value-of select="name()"/> mode="a"></b>
</xsl:template>
<xsl:template match="tei:pb" mode="a">
<a>
<xsl:attribute name="href">
<xsl:call-template name="href"/>
</xsl:attribute>
<xsl:variable name="n" select="normalize-space(translate(@n, '()[]{}', ''))"/>
<xsl:choose>
<xsl:when test="$n != '' and contains('0123456789IVXDCM', substring(@n,1,1))">p. <xsl:value-of select="$n"/></xsl:when>
<xsl:otherwise>
<xsl:value-of select="$n"/>
</xsl:otherwise>
</xsl:choose>
</a>
</xsl:template>
<!--
<xsl:template match="tei:castList" mode="a">
<xsl:choose>
<xsl:when test="tei:head">
<xsl:apply-templates select="tei:head"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="message"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
-->
<!-- section, liées sur leur titres -->
<xsl:template match="tei:body | tei:back | tei:castList | tei:div | tei:div0 | tei:div1 | tei:div2 | tei:div3 | tei:div4 | tei:div5 | tei:div6 | tei:div7 | tei:front | tei:group | tei:text" mode="a">
<xsl:param name="class"/>
<!-- titre long -->
<xsl:param name="title">
<xsl:call-template name="title"/>
</xsl:param>
<a>
<xsl:attribute name="href">
<xsl:call-template name="href"/>
</xsl:attribute>
<xsl:if test="$class">
<xsl:attribute name="class">
<xsl:value-of select="$class"/>
</xsl:attribute>
</xsl:if>
<!-- Spec titre court ? <index> ? -->
<xsl:copy-of select="$title"/>
<!-- compte d'items -->
<xsl:if test="self::tei:group">
<xsl:text> </xsl:text>
<small>
<xsl:text>(</xsl:text>
<xsl:value-of select="count(.//tei:text)"/>
<xsl:text>)</xsl:text>
</small>
</xsl:if>
</a>
</xsl:template>
<!-- affichage de noms avec initiales (par ex resp) -->
<xsl:template match="tei:principal" mode="a">
<a class="resp">
<xsl:attribute name="href">
<xsl:call-template name="href"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:value-of select="normalize-space(.)"/>
</xsl:attribute>
<xsl:value-of select="@xml:id | @id"/>
</a>
</xsl:template>
<!-- Liens courts vers un nom -->
<xsl:template match="tei:name[@xml:id]" mode="a">
<a href="#{@xml:id}">
<xsl:variable name="text">
<xsl:apply-templates select="text()"/>
</xsl:variable>
<xsl:choose>
<xsl:when test="tei:addName|tei:forename|tei:surname">
<xsl:apply-templates select="tei:addName|tei:forename|tei:surname"/>
</xsl:when>
<xsl:when test="normalize-space($text) != ''">
<xsl:value-of select="normalize-space($text)"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</a>
</xsl:template>
<!--
<h3>mode="li" toc</h3>
-->
<!-- default, stop -->
<xsl:template match="node()" mode="li"/>
<xsl:template match="tei:castList" mode="li">
<li>
<xsl:call-template name="a"/>
</li>
</xsl:template>
<xsl:template match="tei:back | tei:body | tei:front" mode="li">
<xsl:param name="class">tree</xsl:param>
<!-- un truc pour pouvoir maintenir ouvert des niveaux de table des matières -->
<xsl:param name="less" select="0"/>
<!-- limit depth -->
<xsl:param name="depth"/>
<xsl:variable name="children" select="tei:group | tei:text | tei:div
| tei:div0 | tei:div1 | tei:div2 | tei:div3 | tei:div4 | tei:div5 | tei:div6 | tei:div7 "/>
<xsl:choose>
<xsl:when test="count($children) < 1"/>
<xsl:when test="count($children) = 1">
<li>
<xsl:variable name="title">
<xsl:call-template name="title"/>
</xsl:variable>
<xsl:for-each select="$children">
<xsl:choose>
<xsl:when test="tei:head | @type = 'dedication' ">
<xsl:call-template name="a"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="a">
<xsl:with-param name="title" select="$title"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</li>
</xsl:when>
<!-- simple content ? -->
<xsl:when test="not(tei:castList | tei:div | tei:div1 | tei:titlePage)">
<li>
<xsl:call-template name="a"/>
</li>
</xsl:when>
<xsl:when test="self::tei:front or self::tei:back">
<li class="more {local-name()}">
<span>
<xsl:call-template name="title"/>
</span>
<ol>
<xsl:for-each select="tei:castList | tei:div | tei:div1 | tei:titlePage">
<xsl:choose>
<!-- ??? first section with no title, no forged title -->
<xsl:when test="self::div and position() = 1 and not(tei:head) and ../tei:head "/>
<xsl:otherwise>
<xsl:apply-templates select="." mode="li"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</ol>
</li>
</xsl:when>
<xsl:when test="self::tei:body">
<xsl:apply-templates select="tei:castList | tei:div | tei:div1 | tei:titlePage" mode="li"/>
</xsl:when>
<!-- div content -->
<xsl:otherwise>
<xsl:apply-templates select="tei:castList | tei:div | tei:div1 | tei:titlePage" mode="li"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="tei:group/tei:text" mode="li">
<li class="more">
<xsl:call-template name="a"/>
<xsl:choose>
<!-- simple content -->
<xsl:when test="not(tei:front|tei:back) and tei:body/tei:p | tei:body/tei:l | tei:body/tei:list | tei:body/tei:argument | tei:body/tei:table | tei:body/tei:docTitle | tei:body/tei:docAuthor"/>
<xsl:otherwise>
<ol>
<xsl:apply-templates select="tei:front" mode="li"/>
<xsl:apply-templates select="tei:body" mode="li"/>
<xsl:apply-templates select="tei:back" mode="li"/>
</ol>
</xsl:otherwise>
</xsl:choose>
</li>
</xsl:template>
<!-- sectionnement, traverser -->
<xsl:template match=" tei:div | tei:div0 | tei:div1 | tei:div2 | tei:div3 | tei:div4 | tei:div5 | tei:div6 | tei:div7 | tei:group " mode="li">
<xsl:param name="class">tree</xsl:param>
<!-- un truc pour pouvoir maintenir ouvert des niveaux de table des matières -->
<xsl:param name="less" select="0"/>
<!-- limit depth -->
<xsl:param name="depth"/>
<!-- enfants ? -->
<xsl:variable name="children" select="tei:group | tei:text | tei:div[tei:head]
| tei:div0[tei:head] | tei:div1[tei:head] | tei:div2[tei:head] | tei:div3[tei:head] | tei:div4[tei:head] | tei:div5[tei:head] | tei:div6[tei:head] | tei:div7[tei:head] "/>
<li>
<xsl:choose>
<!-- last level -->
<xsl:when test="count($children) < 1"/>
<!-- let open -->
<xsl:when test="number($depth) < 2"/>
<xsl:when test="number($less) > 0">
<xsl:attribute name="class">less</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="class">more</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="count($children) > 0">
<xsl:call-template name="a"/>
<ol>
<xsl:if test="$class">
<xsl:attribute name="class">
<xsl:value-of select="$class"/>
</xsl:attribute>
</xsl:if>
<xsl:for-each select="tei:back | tei:body | tei:castList | tei:div | tei:div0 | tei:div1 | tei:div2 | tei:div3 | tei:div4 | tei:div5 | tei:div6 | tei:div7 | tei:front | tei:group | tei:text">
<xsl:choose>
<!-- ??? first section with no title, no forged title -->
<xsl:when test="not(tei:head)"/>
<xsl:otherwise>
<xsl:apply-templates select="." mode="li">
<xsl:with-param name="less" select="number($less) - 1"/>
<xsl:with-param name="depth" select="number($depth) - 1"/>
<xsl:with-param name="class"/>
</xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</ol>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="a"/>
</xsl:otherwise>
</xsl:choose>
</li>
<!-- ??
<xsl:when test="(/*/tei:text/tei:front and count(.|/*/tei:text/tei:front) = 1)
or (/*/tei:text/tei:back and count(.|/*/tei:text/tei:back) = 1)">
<xsl:call-template name="a"/>
</xsl:when>
-->
</xsl:template>
<xsl:template name="toc-front">
<xsl:for-each select="/*/tei:text/tei:front">
<xsl:call-template name="paratoc"/>
</xsl:for-each>
</xsl:template>
<xsl:template name="toc-back">
<xsl:for-each select="/*/tei:text/tei:back">
<xsl:call-template name="paratoc"/>
</xsl:for-each>
</xsl:template>
<xsl:template name="paratoc">
<xsl:choose>
<xsl:when test="tei:p | tei:l | tei:list | tei:argument | tei:table | tei:docTitle | tei:docAuthor">
<xsl:call-template name="a"/>
</xsl:when>
<xsl:when test="tei:div[normalize-space(.) != '']|tei:div1[normalize-space(.) != '']">
<ol class="tree">
<xsl:apply-templates select="*[self::tei:div|self::tei:div1][normalize-space(.) != '']" mode="li"/>
</ol>
</xsl:when>
</xsl:choose>
</xsl:template>
<!--
<h3>mode="bibl" (ligne bibliographique)</h3>
<p>
Dégager une ligne biliographique d'un élément, avec des enregistrements bibliographique structurés.
</p>
-->
<xsl:template match="tei:fileDesc " mode="bibl">
<!-- titre, requis -->
<xsl:apply-templates select="tei:titleStmt/tei:title" mode="bibl"/>
<xsl:if test="tei:titleStmt/tei:principal">
<!-- direction, requis -->
<xsl:text>, dir. </xsl:text>
<xsl:for-each select="tei:titleStmt/tei:principal">
<xsl:value-of select="."/>
<xsl:choose>
<xsl:when test="position() = last()">, </xsl:when>
<xsl:otherwise>, </xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:if>
<!-- édition optionnel -->
<xsl:if test="tei:editionStmt/@n">
<xsl:value-of select="tei:editionStmt/@n"/>
<sup>e</sup>
<xsl:text> éd., </xsl:text>
</xsl:if>
<xsl:variable name="date">
<!-- date, requis -->
<xsl:value-of select="tei:publicationStmt/tei:date"/>
<!-- Collection, optionnel -->
<xsl:apply-templates select="tei:seriesStmt" mode="bibl"/>
</xsl:variable>
<xsl:if test="$date != '' and tei:publicationStmt/tei:idno">
<xsl:value-of select="$date"/>
<xsl:text>, </xsl:text>
</xsl:if>
<!-- URI de référence, requis -->
<xsl:apply-templates select="tei:publicationStmt/tei:idno"/>
<xsl:text>.</xsl:text>
</xsl:template>
<!-- Information de série dans une ligne bibliographique -->
<xsl:template match="tei:seriesStmt" mode="bibl">
<span class="seriesStmt">
<xsl:text> (</xsl:text>
<xsl:for-each select="*[not(@type='URI')]">
<xsl:apply-templates select="."/>
<xsl:choose>
<xsl:when test="position() = last()"/>
<xsl:otherwise>, </xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:text>)</xsl:text>
</span>
</xsl:template>
<!-- titre -->
<xsl:template match="tei:title" mode="bibl">
<xsl:text> </xsl:text>
<em class="title">
<xsl:apply-templates/>
</em>
</xsl:template>
</xsl:transform>