forked from oeuvres/teinte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tei2html.xsl
3388 lines (3364 loc) · 119 KB
/
tei2html.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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--
<h1>TEI » HTML (tei2html.xsl)</h1>
LGPL http://www.gnu.org/licenses/lgpl.html
© 2005 ajlsm.com (Cybertheses)
© 2007 Frederic.Glorieux@fictif.org
© 2010 Frederic.Glorieux@fictif.org et École nationale des chartes
© 2012 Frederic.Glorieux@fictif.org
© 2013 Frederic.Glorieux@fictif.org et LABEX OBVIL
<p>
Cette transformation XSLT 1.0 (compatible navigateurs, PHP, Python, Java…)
transforme du TEI en HTML5.
</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"/>
-->
<xsl:import href="tei2toc.xsl"/>
<!-- used as a body class -->
<xsl:param name="folder"/>
<!-- included, so that priorities will not be flatten by import chain (ex: from tei2site.html) -->
<xsl:include href="teiHeader2html.xsl"/>
<!-- Name of this xsl, change link resolution -->
<xsl:variable name="this">tei2html.xsl</xsl:variable>
<!--
La méthode de sortie est xml, pour faire du html5.
L'utilisation des attributs
est contraignante, difficile à surcharger par les transformations qui veulent une
absence de déclaration de DTD.
-->
<xsl:output encoding="UTF-8" indent="yes" method="xml" omit-xml-declaration="yes"/>
<!-- Output teiHeader ? -->
<xsl:param name="teiheader" select="true()"/>
<!-- notes d'apparat critique ? -->
<xsl:param name="app" select="boolean(//tei:app)"/>
<!-- What kind of root element to output ? html, div, article -->
<xsl:param name="root" select="$html"/>
<xsl:key name="split" match="/" use="'root'"/>
<!-- key for notes by page, keep the tricky @use expression in this order, when there are other parallel pages number -->
<xsl:key name="note-pb" match="tei:note" use="generate-id( preceding::*[self::tei:pb[not(@ed)][@n] ][1] ) "/>
<!-- test if there are code examples to js prettyprint -->
<xsl:key name="prettify" match="eg:egXML|tei:tag" use="1"/>
<!-- mainly in verse -->
<xsl:variable name="verse" select="count(/*/tei:text/tei:body//tei:l) > count(/*/tei:text/tei:body//tei:p)"/>
<!-- Racine -->
<xsl:template match="/*">
<xsl:apply-templates select="." mode="html"/>
</xsl:template>
<xsl:template match="/*" mode="html">
<xsl:variable name="bodyclass">
<xsl:value-of select="$corpusid"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$folder"/>
</xsl:variable>
<xsl:choose>
<!-- Just a div element -->
<xsl:when test="$root= $article">
<article>
<xsl:call-template name="att-lang"/>
<xsl:if test="normalize-space($bodyclass)">
<xsl:attribute name="class">
<xsl:value-of select="normalize-space($bodyclass)"/>
</xsl:attribute>
</xsl:if>
<xsl:apply-templates/>
</article>
</xsl:when>
<!-- Complete doc -->
<xsl:otherwise>
<!-- browser will not like doctype -->
<xsl:if test="$xslbase != $theme">
<xsl:text disable-output-escaping="yes"><!DOCTYPE html></xsl:text>
<xsl:value-of select="$lf"/>
</xsl:if>
<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" charset="utf-8" type="text/css" href="{$theme}tei2html.css"/>
<script type="text/javascript" charset="utf-8" src="{$theme}Tree.js">//</script>
</head>
<body>
<xsl:if test="normalize-space($bodyclass)">
<xsl:attribute name="class">
<xsl:value-of select="normalize-space($bodyclass)"/>
</xsl:attribute>
</xsl:if>
<div id="center">
<div id="main">
<div id="article">
<xsl:apply-templates/>
</div>
</div>
<aside id="aside">
<nav>
<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:call-template name="toc"/>
</nav>
</aside>
</div>
<xsl:if test="count(key('prettify', 1))">
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js">//</script>
</xsl:if>
</body>
</html>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Go through -->
<xsl:template match="tei:TEI|tei:TEI.2">
<xsl:apply-templates/>
</xsl:template>
<!-- Bloc de métadonnées -->
<xsl:template match="tei:teiHeader">
<!-- Parametrize ? -->
<xsl:choose>
<xsl:when test="not($teiheader)"/>
<xsl:when test="../tei:text/tei:front/tei:titlePage"/>
<xsl:otherwise>
<xsl:apply-templates select="tei:fileDesc"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--
<h2>Blocs</h2>
-->
<!--
<h3>Sections</h3>
<p>
Les sorties en plusieurs fichiers se distribuent généralement selon les sections.
Des comportement peuvent varier.
</p>
<p>
<strong>Niveau de titre</strong> — <h1> en tête de fichier,
et -1 pour chaque niveau ensuite, d'où le paramètre $level qui peut
être modifié par l'appeleur.
</p>
<p>
<strong>Notes</strong> — Les notes peuvent être sorties en bas de chaque fichier
(une section ou tout le texte), rassemblées dans un fichier à part, sorties par texte
(group/text)
</p>
-->
<xsl:template match="tei:elementSpec">
<article>
<xsl:attribute name="id">
<xsl:call-template name="id"/>
</xsl:attribute>
<xsl:call-template name="atts"/>
<h1>
<xsl:text><</xsl:text>
<xsl:value-of select="@ident"/>
<xsl:text>></xsl:text>
</h1>
<xsl:apply-templates select="*"/>
</article>
</xsl:template>
<xsl:template match="tei:text">
<xsl:param name="level" select="count(ancestor::tei:group)"/>
<article>
<xsl:attribute name="id">
<xsl:call-template name="id"/>
</xsl:attribute>
<xsl:call-template name="atts"/>
<xsl:apply-templates select="*">
<xsl:with-param name="level" select="$level +1"/>
</xsl:apply-templates>
<!-- groupes de textes, procéder les notes par textes -->
<xsl:if test="not(tei:group)">
<!-- No notes in teiHeader ? -->
<xsl:call-template name="footnotes"/>
</xsl:if>
</article>
</xsl:template>
<xsl:template match="tei:front">
<xsl:param name="level" select="count(ancestor::tei:group)"/>
<xsl:variable name="element">
<xsl:choose>
<xsl:when test="$format = $epub2">div</xsl:when>
<xsl:otherwise>section</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:element name="{$element}" namespace="http://www.w3.org/1999/xhtml">
<xsl:if test="$format = $epub3">
<xsl:attribute name="epub:type">frontmatter</xsl:attribute>
</xsl:if>
<xsl:call-template name="atts"/>
<xsl:apply-templates select="*">
<xsl:with-param name="level" select="$level"/>
</xsl:apply-templates>
</xsl:element>
</xsl:template>
<xsl:template match="tei:back">
<xsl:param name="notes" select="not(ancestor::tei:group)"/>
<xsl:param name="level" select="count(ancestor::tei:group)"/>
<xsl:choose>
<xsl:when test="normalize-space(.) = ''"/>
<xsl:otherwise>
<xsl:variable name="element">
<xsl:choose>
<xsl:when test="$format = $epub2">div</xsl:when>
<xsl:otherwise>section</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:element name="{$element}" namespace="http://www.w3.org/1999/xhtml">
<xsl:if test="$format = $epub3">
<xsl:attribute name="epub:type">backmatter</xsl:attribute>
</xsl:if>
<xsl:call-template name="atts"/>
<xsl:apply-templates select="*">
<xsl:with-param name="level" select="$level "/>
</xsl:apply-templates>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="tei:body">
<xsl:param name="level" select="count(ancestor::tei:group)"/>
<xsl:variable name="element">
<xsl:choose>
<xsl:when test="$format = $epub2">div</xsl:when>
<xsl:otherwise>section</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:element name="{$element}" namespace="http://www.w3.org/1999/xhtml">
<xsl:if test="$format = $epub3">
<xsl:attribute name="epub:type">bodymatter</xsl:attribute>
</xsl:if>
<xsl:call-template name="atts"/>
<xsl:apply-templates select="*">
<xsl:with-param name="level" select="$level "/>
</xsl:apply-templates>
</xsl:element>
</xsl:template>
<!--
TODO ? notes dans les groupes ?
<xsl:template match="tei:text/tei:group">
<xsl:param name="el">
<xsl:choose>
<xsl:when test="$format = 'html5'">section</xsl:when>
<xsl:otherwise>div</xsl:otherwise>
</xsl:choose>
</xsl:param>
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:call-template name="atts"/>
<xsl:comment>
<xsl:call-template name="path"/>
</xsl:comment>
<xsl:apply-templates/>
<xsl:call-template name="notes">
<xsl:with-param name="texte" select=".//*[not()]"/>
</xsl:call-template>
</xsl:element>
</xsl:template>
-->
<!-- Sections -->
<xsl:template match="tei:div | tei:div0 | tei:div1 | tei:div2 | tei:div3 | tei:div4 | tei:div5 | tei:div6 | tei:div7 | tei:epilogue | tei:preface | tei:group | tei:prologue">
<xsl:param name="level" select="count(ancestor::*) - 2"/>
<xsl:param name="el">
<xsl:choose>
<xsl:when test="self::tei:group">div</xsl:when>
<xsl:when test="$format = $epub2">div</xsl:when>
<xsl:otherwise>section</xsl:otherwise>
</xsl:choose>
</xsl:param>
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:attribute name="id">
<xsl:call-template name="id"/>
</xsl:attribute>
<xsl:call-template name="atts">
<xsl:with-param name="class">level<xsl:value-of select="$level + 1"/></xsl:with-param>
</xsl:call-template>
<!-- attributs epub3 -->
<xsl:choose>
<xsl:when test="$format != $epub3"/>
<xsl:when test="@type = 'bibliography'">
<xsl:attribute name="epub:type">bibliography</xsl:attribute>
</xsl:when>
<xsl:when test="@type = 'glossary'">
<xsl:attribute name="epub:type">glossary</xsl:attribute>
</xsl:when>
<xsl:when test="@type = 'index'">
<xsl:attribute name="epub:type">index</xsl:attribute>
</xsl:when>
<xsl:when test="@type = 'chapter' or @type = 'act' or @type='article'">
<xsl:attribute name="epub:type">chapter</xsl:attribute>
</xsl:when>
<xsl:when test="ancestor::tei:div[@type = 'chapter' or @type = 'act' or @type='article']">
<xsl:attribute name="epub:type">subchapter</xsl:attribute>
</xsl:when>
<xsl:when test=".//tei:div[@type = 'chapter' or @type = 'act' or @type='article']">
<xsl:attribute name="epub:type">part</xsl:attribute>
</xsl:when>
<!-- dangerous ? -->
<xsl:when test="self::*[key('split', generate-id())]">
<xsl:attribute name="epub:type">chapter</xsl:attribute>
</xsl:when>
</xsl:choose>
<!-- First element is an empty(?) page break, may come from numerisation or text-processor -->
<xsl:variable name="name" select="local-name()"/>
<xsl:choose>
<xsl:when test="$format != $epub2 and $format != $epub3"/>
<!-- first section with close to the parent title, no page break -->
<xsl:when test="not(preceding-sibling::*[$name = local-name()]) and not(preceding-sibling::tei:p|preceding-sibling::tei:quote)"/>
<!-- start of a file -->
<xsl:when test="$level < 2"/>
<!-- deep level, do nothing -->
<xsl:when test="$level > 3"/>
<!-- hard page break ? -->
<xsl:otherwise/>
</xsl:choose>
<xsl:apply-templates select="*">
<xsl:with-param name="level" select="$level + 1"/>
</xsl:apply-templates>
</xsl:element>
</xsl:template>
<!-- Floating division -->
<xsl:template match="tei:floatingText">
<xsl:param name="el">
<xsl:choose>
<xsl:when test="$format = 'html5'">aside</xsl:when>
<xsl:otherwise>div</xsl:otherwise>
</xsl:choose>
</xsl:param>
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<!-- Cartouche d'entête d'acte -->
<xsl:template match="tei:group/tei:text/tei:front ">
<xsl:param name="el">
<xsl:choose>
<xsl:when test="$format = 'html5'">header</xsl:when>
<xsl:otherwise>div</xsl:otherwise>
</xsl:choose>
</xsl:param>
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:call-template name="atts"/>
<!--
<xsl:choose>
<xsl:when test="../@n">
<xsl:value-of select="../@n"/>
</xsl:when>
<xsl:when test="tei:titlePart[starts-with(@type, 'num')]">
<xsl:value-of select="tei:titlePart[starts-with(@type, 'num')]"/>
</xsl:when>
</xsl:choose>
-->
<xsl:apply-templates/>
<!-- VJ : inscire la mention "D'après témoin" -->
<xsl:apply-templates select=".//tei:witness[@ana='edited']" mode="according"/>
</xsl:element>
</xsl:template>
<!-- Éléments coupés de la sortie, ou à implémenter -->
<xsl:template match="tei:divGen "/>
<!--
<h3>Titres</h3>
-->
<!-- Titre en entête -->
<xsl:template match="tei:titleStmt/tei:title">
<h1>
<xsl:choose>
<xsl:when test="@type">
<xsl:attribute name="class">
<xsl:value-of select="@type"/>
</xsl:attribute>
</xsl:when>
<xsl:when test="../tei:title[@type='main']">
<xsl:attribute name="class">notmain</xsl:attribute>
</xsl:when>
</xsl:choose>
<xsl:apply-templates/>
</h1>
</xsl:template>
<!-- Page de titre -->
<xsl:template match="tei:titlePage">
<xsl:param name="el">
<xsl:choose>
<xsl:when test="$format = 'html5'">section</xsl:when>
<xsl:otherwise>div</xsl:otherwise>
</xsl:choose>
</xsl:param>
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:if test="$format = $epub3">
<xsl:attribute name="epub:type">titlepage</xsl:attribute>
</xsl:if>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="tei:titlePage/tei:performance"/>
<!-- <h[1-6]> titres avec niveaux hiérarchiques génériques selon le nombre d'ancêtres, il est possible de paramétrer le niveau, pour commencer à 1 en haut de document généré -->
<xsl:template match="tei:head">
<xsl:param name="level" select="count(ancestor::tei:*) - 2"/>
<xsl:variable name="name">
<xsl:choose>
<xsl:when test="normalize-space(.) = ''"/>
<xsl:when test="parent::tei:front | parent::tei:text | parent::tei:back ">h1</xsl:when>
<xsl:when test="$level < 1">h1</xsl:when>
<xsl:when test="$level > 7">h6</xsl:when>
<xsl:otherwise>h<xsl:value-of select="$level"/></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="$name != ''">
<xsl:apply-templates select="tei:pb"/>
<xsl:element name="{$name}" namespace="http://www.w3.org/1999/xhtml">
<xsl:call-template name="atts">
<xsl:with-param name="class">
<xsl:value-of select="../@type"/>
<xsl:if test="$verse"> verse</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates select="node()[local-name()!='pb']"/>
<xsl:if test="not(following-sibling::*[1][self::tei:head]) and $format != $epub2 and $format != $epub3">
<a class="bookmark">
<xsl:attribute name="href">
<xsl:for-each select="ancestor::tei:div[1]">
<xsl:call-template name="href"/>
</xsl:for-each>
</xsl:attribute>
<xsl:text> §</xsl:text>
</a>
</xsl:if>
</xsl:element>
</xsl:if>
</xsl:template>
<!-- Autres titres -->
<xsl:template match="tei:titlePart">
<div>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</div>
</xsl:template>
<!--
<h3>Paragraphs</h3>
-->
<!-- -->
<!-- Quotation (may contain paragraphs) -->
<xsl:template match="tei:epigraph | tei:exemplum | tei:remarks">
<blockquote>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</blockquote>
</xsl:template>
<!-- labelled paragraphe container -->
<xsl:template match="tei:classes | tei:content">
<fieldset>
<xsl:call-template name="atts"/>
<legend>
<xsl:call-template name="message">
<xsl:with-param name="id" select="local-name()"/>
</xsl:call-template>
</legend>
<xsl:apply-templates/>
</fieldset>
</xsl:template>
<!-- Contains blocks, but are no sections -->
<xsl:template match="tei:argument | tei:closer | tei:def | tei:docTitle | tei:entry | tei:form | tei:postscript | tei:entry/tei:xr | tei:opener">
<xsl:if test=". != ''">
<div>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</div>
</xsl:if>
</xsl:template>
<!-- To think, rendering ? -->
<xsl:template match="tei:sp">
<div>
<xsl:attribute name="id">
<xsl:call-template name="id"/>
</xsl:attribute>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</div>
</xsl:template>
<!-- Paragraph blocs (paragraphs are not allowed in it) -->
<xsl:template match="tei:p">
<p>
<xsl:variable name="prev" select="preceding-sibling::*[not(self::tei:pb)][1]"/>
<xsl:variable name="char1" select="substring( normalize-space(.), 1, 1)"/>
<xsl:variable name="class">
<xsl:choose>
<xsl:when test="contains( '-–—0123456789', $char1 )"/>
<xsl:when test="contains(concat(' ', @rend, ' '), ' indent ')"/>
<!--
<xsl:when test="$prev and contains('-–—', substring(normalize-space($prev), 1, 1))"/>
-->
<xsl:when test="local-name($prev) ='p' and translate($prev, '*∾ ','')!=''"/>
<xsl:otherwise>autofirst</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:call-template name="atts">
<xsl:with-param name="class" select="$class"/>
</xsl:call-template>
<xsl:if test="@n">
<small class="n">
<xsl:text>[</xsl:text>
<xsl:value-of select="@n"/>
<xsl:text>]</xsl:text>
</small>
<xsl:text> </xsl:text>
</xsl:if>
<xsl:apply-templates/>
<xsl:if test=".=''"> </xsl:if>
</p>
</xsl:template>
<xsl:template match="tei:acheveImprime | tei:approbation | tei:byline | tei:caption | tei:dateline | tei:desc | tei:docEdition | tei:docImprint | tei:imprimatur | tei:performance | tei:premiere | tei:printer | tei:privilege | tei:signed | tei:salute | tei:set | tei:trailer
">
<xsl:variable name="el">
<xsl:choose>
<xsl:when test="self::tei:trailer">p</xsl:when>
<xsl:when test="self::tei:docImprint">div</xsl:when>
<xsl:when test="parent::tei:titlePage">p</xsl:when>
<xsl:otherwise>div</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="normalize-space(.) != '' ">
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:if>
</xsl:template>
<xsl:template match="tei:address">
<address>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</address>
</xsl:template>
<!-- Ne pas sortir les saut de ligne dans du texte préformaté -->
<xsl:template match="tei:eg/tei:lb"/>
<!-- Couillards et autres culs de lampe -->
<xsl:template match="tei:ab">
<xsl:choose>
<xsl:when test="@type='hr'">
<hr align="center" width="30%"/>
</xsl:when>
<xsl:when test="normalize-space(.) = ''">
<div>
<xsl:call-template name="atts"/>
<xsl:text> </xsl:text>
<xsl:apply-templates/>
</div>
</xsl:when>
<xsl:otherwise>
<div>
<xsl:call-template name="atts">
<xsl:with-param name="class">
<xsl:if test="substring(normalize-space(.), 1, 1) = '*'">star</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates/>
</div>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Preformated text -->
<xsl:template match="tei:eg">
<pre>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</pre>
</xsl:template>
<!--
<h3>Listes</h3>
-->
<!-- Différentes listes, avec prise en charge xhtml correcte des titres (inclus dans un blockquote) -->
<xsl:template match="tei:list | tei:listWit | tei:listBibl | tei:recordHist">
<xsl:variable name="el">
<xsl:choose>
<xsl:when test="not(@rend)">ul</xsl:when>
<xsl:when test="contains(' ordered ol Décimale ', concat(' ', @type, ' ')) ">ol</xsl:when>
<xsl:when test="contains(' a) a. decimal Décimal decimal-leading-zero 1. 1° 1) I I. lower-alpha lower-latin ol upper-alpha upper-latin upper-roman ', concat(' ', @rend, ' ')) ">ol</xsl:when>
<xsl:otherwise>ul</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- test if items as already items -->
<xsl:variable name="first" select="substring(normalize-space(tei:item), 1, 1)"/>
<xsl:variable name="none" select="contains('-–—•1', $first)"/>
<xsl:choose>
<!-- liste titrée à mettre dans un conteneur-->
<xsl:when test="tei:head">
<div class="{local-name()}">
<xsl:apply-templates select="tei:head"/>
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:call-template name="atts">
<xsl:with-param name="class">
<xsl:if test="$none">none</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates select="*[local-name() != 'head']"/>
</xsl:element>
</div>
</xsl:when>
<xsl:otherwise>
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:call-template name="atts">
<xsl:with-param name="class">
<xsl:if test="$none">none</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Pour l’instant ne pas afficher les configurations -->
<xsl:template match="tei:listPerson">
<span>
<xsl:attribute name="id">
<xsl:call-template name="id"/>
</xsl:attribute>
</span>
</xsl:template>
<!-- Pseudo-listes -->
<xsl:template match="tei:respStmt">
<xsl:variable name="name" select="name()"/>
<!-- Plus de 2 item du même nom, voir s'il y a un titre dans le fichier de messages -->
<xsl:if test="../*[name() = $name][2] and count(../*[name() = $name][1]|.) = 1">
<xsl:variable name="message">
<xsl:call-template name="message"/>
</xsl:variable>
<xsl:if test="string($message) != ''">
<p class="{local-name()}">
<xsl:value-of select="$message"/>
</p>
</xsl:if>
</xsl:if>
<div>
<xsl:call-template name="atts"/>
<xsl:if test="*/@from|*/@to">
<xsl:text>(</xsl:text>
<xsl:value-of select="*/@from"/>
<xsl:text> — </xsl:text>
<xsl:value-of select="*/@to"/>
<xsl:text>) </xsl:text>
</xsl:if>
<xsl:for-each select="*">
<xsl:apply-templates select="."/>
<xsl:choose>
<xsl:when test="position() = last()">
<xsl:call-template name="dot"/>
</xsl:when>
<xsl:when test="position()=1 and following-sibling::*"> : </xsl:when>
<xsl:otherwise> ; </xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</div>
</xsl:template>
<xsl:template match="tei:resp">
<xsl:apply-templates/>
</xsl:template>
<!-- Liste de type index -->
<xsl:template match="tei:list[@type='index']">
<div>
<xsl:call-template name="atts"/>
<xsl:apply-templates select="tei:head"/>
<!-- s'il n'y a pas de division spéciale, barre de lettres -->
<!--
<xsl:choose>
<xsl:when test="not(tei:list)">
<div class="alpha">
<xsl:call-template name="alpha_href"/>
</div>
</xsl:when>
</xsl:choose>
-->
<ul class="index">
<xsl:apply-templates select="*[local-name() != 'head']"/>
</ul>
</div>
</xsl:template>
<!-- Barre de lettres, supposée appelée dans le contexte d'un index à plat -->
<xsl:template name="alpha_href">
<!-- Préfixe de l'identifiant -->
<xsl:param name="prefix" select="concat(@xml:id, '.')"/>
<xsl:param name="alpha">abcdefghijklmnopqrstuvwxyz</xsl:param>
<xsl:choose>
<!-- ne pas oublier de stopper à temps -->
<xsl:when test="$alpha =''"/>
<xsl:otherwise>
<xsl:variable name="lettre" select="substring($alpha, 1, 1)"/>
<!-- tester si la lettre existe avant de l'écrire -->
<xsl:if test="*[translate(substring(., 1, 1), $idfrom, $idto) = $lettre]">
<xsl:if test="$lettre != 'a'"> </xsl:if>
<!-- pas d'espace insécable -->
<a href="#{$prefix}{$lettre}" target="_self">
<xsl:value-of select="translate ( $lettre, $lc, $uc)"/>
</a>
</xsl:if>
<xsl:call-template name="alpha_href">
<xsl:with-param name="alpha" select="substring($alpha, 2)"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Titre d'une liste -->
<xsl:template match="tei:list/tei:head">
<p class="list">
<xsl:apply-templates/>
</p>
</xsl:template>
<!-- <item>, item de liste -->
<xsl:template match="tei:item">
<li>
<xsl:call-template name="atts"/>
<!-- unplug, maybe expensive -->
<!--
<xsl:if test="../@type='index' and not(../tei:list)">
<xsl:variable name="lettre" select="translate(substring(., 1, 1), $iso, $min)"/>
<xsl:if test="translate(substring(preceding-sibling::tei:item[1], 1, 1), $iso, $min) != $lettre">
<a id="{../@xml:id}.{$lettre}">‌</a>
</xsl:if>
</xsl:if>
-->
<xsl:apply-templates/>
</li>
</xsl:template>
<!-- term list -->
<xsl:template match="tei:list[@type='gloss' or tei:label]">
<xsl:choose>
<!-- liste titrée à mettre dans un conteneur-->
<xsl:when test="tei:head">
<div class="{local-name()}">
<xsl:apply-templates select="tei:head"/>
<dl class="dl">
<xsl:call-template name="atts"/>
<xsl:apply-templates select="*[local-name() != 'head']"/>
</dl>
</div>
</xsl:when>
<xsl:otherwise>
<dl>
<xsl:call-template name="atts">
<xsl:with-param name="class">dl</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates/>
</dl>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="tei:list[@type='gloss' or tei:label]/tei:label">
<dt>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</dt>
</xsl:template>
<xsl:template match="tei:list[@type='gloss' or tei:label]/tei:item">
<dd>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</dd>
</xsl:template>
<xsl:template match="tei:castList">
<div>
<xsl:attribute name="id">
<xsl:call-template name="id"/>
</xsl:attribute>
<xsl:call-template name="atts"/>
<xsl:apply-templates select="tei:head | tei:p"/>
<ul class="castList">
<xsl:for-each select="*[not(self::tei:head) and not(self::tei:p)]">
<li>
<xsl:call-template name="atts"/>
<xsl:apply-templates select="."/>
</li>
</xsl:for-each>
</ul>
</div>
</xsl:template>
<xsl:template match="tei:castItem">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="tei:castGroup">
<xsl:apply-templates select="tei:head | tei:note | tei:roleDesc"/>
<ul class="castGroup">
<xsl:for-each select="*">
<li>
<xsl:call-template name="atts"/>
<xsl:apply-templates select="."/>
</li>
</xsl:for-each>
</ul>
</xsl:template>
<xsl:template match="tei:castGroup/tei:head">
<xsl:call-template name="span"/>
</xsl:template>
<xsl:template match="tei:actor | tei:role | tei:roleDesc">
<xsl:call-template name="span"/>
</xsl:template>
<!-- Glossary like dictionary entry -->
<xsl:template match="tei:entryFree">
<div>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="tei:xr">
<div>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</div>
</xsl:template>
<!-- Le calendrier des modifications et passer dans dans une page credits -->
<xsl:template match="tei:revisionDesc">
<table>
<xsl:call-template name="atts">
<xsl:with-param name="class">data</xsl:with-param>
</xsl:call-template>
<caption>
<xsl:call-template name="message"/>
</caption>
<xsl:apply-templates/>
</table>
</xsl:template>
<!-- Liste spéciale, journal des modifications -->
<xsl:template match="tei:change">
<tr>
<xsl:call-template name="atts"/>
<td>
<xsl:value-of select="@when"/>
</td>
<td>
<xsl:call-template name="anchors">
<xsl:with-param name="att">who</xsl:with-param>
</xsl:call-template>
</td>
<td>
<xsl:apply-templates/>
</td>
</tr>
</xsl:template>
<!--
Tables
- - -
-->
<!-- table -->
<xsl:template match="tei:table">
<table>
<xsl:call-template name="atts">
<xsl:with-param name="class">table</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates/>
</table>
</xsl:template>
<xsl:template match="tei:table/tei:head">
<caption>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</caption>
</xsl:template>
<!-- ligne -->
<xsl:template match="tei:row">
<tr>
<xsl:call-template name="atts"/>
<xsl:apply-templates/>
</tr>
</xsl:template>
<!-- Cellule -->
<xsl:template match="tei:cell">
<xsl:variable name="el">
<xsl:choose>
<xsl:when test="@role='label'">th</xsl:when>
<xsl:when test="../@role='label'">th</xsl:when>
<xsl:otherwise>td</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:element name="{$el}" namespace="http://www.w3.org/1999/xhtml">
<xsl:call-template name="atts"/>
<xsl:if test="@rows > 1">
<xsl:attribute name="rowspan">
<xsl:value-of select="@rows"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="@cols > 1">
<xsl:attribute name="colspan">
<xsl:value-of select="@cols"/>
</xsl:attribute>
</xsl:if>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<!-- vers, strophe -->
<xsl:template match="tei:lg">
<div>
<xsl:call-template name="atts">
<xsl:with-param name="class">
<xsl:if test="@part">
<xsl:text>part-</xsl:text>
<xsl:value-of select="translate(@part, 'fimy', 'FIMY')"/>
</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template name="l-n">
<xsl:choose>
<xsl:when test="@n">
<xsl:value-of select="@n"/>
</xsl:when>
</xsl:choose>
</xsl:template>
<!-- ligne (ex : vers) -->
<xsl:template match="tei:l">
<xsl:variable name="n">
<xsl:call-template name="l-n"/>
</xsl:variable>
<!-- or $prev/@n = $n SLOW
<xsl:variable name="prev" select="preceding::tei:l[1]"/>
-->
<xsl:choose>
<!-- probablement vers vide pour espacement -->
<xsl:when test="normalize-space(.) =''">
<br/>
</xsl:when>
<xsl:otherwise>
<div>
<xsl:variable name="pos">
<xsl:number/>
</xsl:variable>
<xsl:call-template name="atts">
<xsl:with-param name="class">
<xsl:if test="@part">
<xsl:text>part-</xsl:text>
<xsl:value-of select="translate(@part, 'fimy', 'FIMY')"/>
</xsl:if>
<xsl:if test="@met">
<xsl:text> </xsl:text>
<xsl:value-of select="@met"/>
</xsl:if>
<!-- first verse in stanza -->
<xsl:choose>
<!-- Not in a stanza -->
<xsl:when test="not(parent::tei:lg)"/>
<!-- Is it a broken verse to align ? -->
<xsl:when test="@part and @part != 'I'">
<!-- search if previous verse should be aligned -->
<xsl:for-each select="preceding::tei:l[@part='I'][1]">
<xsl:variable name="first">
<xsl:number/>
</xsl:variable>
<xsl:choose>
<xsl:when test="$first != 1"/>
<xsl:when test="not(parent::tei:lg)"/>
<xsl:when test="not(parent::tei:lg/@part) or parent::tei:lg/@part = 'I'"> first</xsl:when>