forked from oeuvres/teinte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.xsl
1359 lines (1347 loc) · 56 KB
/
common.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"?>
<!--
LGPL http://www.gnu.org/licenses/lgpl.html
© 2005 ajlsm.com (Cybertheses)
© 2007 [email protected]
© 2010 [email protected] et École nationale des chartes
© 2012 [email protected]
© 2013 [email protected] et LABEX OBVIL
Different templates shared among the callers
* metadata
* internal identifiers (<template name="href">)
* cross linkink in same file (<template name="id">)
* mode for links
-->
<xsl:transform version="1.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:date="http://exslt.org/dates-and-times"
xmlns:exslt="http://exslt.org/common"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:saxon="http://icl.com/saxon"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="rdf rdfs tei"
extension-element-prefixes="exslt saxon date"
>
<!--
Gobal TEI parameters and variables are divided in different categories
* parameters set exclusively by the caller, impossible to guess from TEI file
* parameters with prefered values from TEI file but possible to override when calling
* constant variables
-->
<!-- base href for generated links -->
<xsl:param name="base"/>
<!-- Allow to change the extension of generated links -->
<xsl:param name="_html">.html</xsl:param>
<!-- Corpus name passed by caller, used as a body class -->
<xsl:param name="corpusid"/>
<!-- Maybe set by a parent transformation, used here for link resolution -->
<xsl:param name="mode"/>
<!-- Path from XML file to xsl applied, useful for browser transformation -->
<xsl:param name="xslbase">
<xsl:call-template name="xslbase"/>
</xsl:param>
<!-- Allow caller to override protocol for theme (https) -->
<xsl:param name="http">http://</xsl:param>
<xsl:param name="theme">
<xsl:choose>
<xsl:when test="$xslbase != ''">
<xsl:value-of select="$xslbase"/>
</xsl:when>
<xsl:otherwise><xsl:value-of select="$http"/>oeuvres.github.io/Teinte/</xsl:otherwise>
</xsl:choose>
</xsl:param>
<!-- generation date, maybe modified by caller -->
<xsl:param name="date">
<xsl:choose>
<xsl:when test="function-available('date:date-time')">
<xsl:variable name="date">
<xsl:value-of select="date:date-time()"/>
</xsl:variable>
<xsl:choose>
<xsl:when test="contains($date, '+')">
<xsl:value-of select="substring-before($date, '+')"/>
</xsl:when>
<xsl:when test="contains($date, '-')">
<xsl:value-of select="substring-before($date, '-')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$date"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>2016</xsl:otherwise>
</xsl:choose>
</xsl:param>
<!-- Type de sortie : html5, xhtml, …? -->
<xsl:param name="format">html5</xsl:param>
<!-- give name of file from the caller -->
<xsl:param name="filename"/>
<!-- doc name -->
<xsl:param name="docid">
<xsl:choose>
<!-- filename -->
<xsl:when test="$filename != ''">
<xsl:value-of select="$filename"/>
</xsl:when>
<xsl:when test="/*/@xml:id != ''">
<xsl:value-of select="/*/@xml:id"/>
</xsl:when>
<xsl:when test="/*/@xml:base != ''">
<xsl:value-of select="/*/@xml:base"/>
</xsl:when>
<xsl:when test="/*/@n != '' and /*/@n != '0'">
<xsl:value-of select="/*/@n"/>
</xsl:when>
<!-- try to generate a significant code from author title -->
<xsl:otherwise>
<xsl:for-each select="/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author[1]">
<xsl:variable name="author">
<xsl:choose>
<xsl:when test="@key != ''">
<xsl:value-of select="substring-before(concat(substring-before(concat(@key,','), ','), '('), '(')"/>
</xsl:when>
<xsl:when test="contains(., ' ')">
<xsl:value-of select="substring-before(., ' ')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:value-of select="translate(normalize-space($author), $idfrom, $idto)"/>
<xsl:text>_</xsl:text>
</xsl:for-each>
<xsl:for-each select="/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:title[1]">
<xsl:variable name="mot1">
<xsl:value-of select="translate(normalize-space(substring-before(concat(.,' '), ' ')), $idfrom, $idto)"/>
</xsl:variable>
<xsl:variable name="mot2">
<xsl:value-of select="
translate(
normalize-space(
substring-before(
concat(substring-after(., ' '),' '),
' ')
),
$idfrom, $idto)"/>
</xsl:variable>
<xsl:choose>
<xsl:when test="contains(' le la les un une des de ', concat(' ',$mot1,' '))">
<xsl:value-of select="$mot2"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$mot1"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:param>
<!-- Reference title, which order ? -->
<xsl:param name="doctitle">
<xsl:choose>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:title">
<xsl:for-each select="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:title[not(@type) or @type='main' or @type='sub']">
<xsl:if test="position()!=1">. </xsl:if>
<xsl:apply-templates mode="title"/>
</xsl:for-each>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull/tei:title">
<xsl:apply-templates mode="title" select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull/tei:title[1]/node()"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl/tei:title">
<xsl:apply-templates mode="title" select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl/tei:title[1]/node()"/>
</xsl:when>
<xsl:when test="/*/tei:text/tei:group/tei:head">
<xsl:apply-templates mode="title" select="/*/tei:text/tei:group/tei:head[1]/node()"/>
</xsl:when>
<xsl:when test="/*/tei:text/tei:body/tei:head">
<xsl:apply-templates mode="title" select="/*/tei:text/tei:body/tei:head[1]/node()"/>
</xsl:when>
<xsl:when test="$docid != ''">
<xsl:copy-of select="$docid"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="message">
<xsl:with-param name="id">notitle</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:param>
<!-- A build byline from -->
<xsl:param name="byline">
<xsl:for-each select="/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt[1]">
<xsl:choose>
<xsl:when test="not(tei:author)"/>
<xsl:when test="count(tei:author) > 3">
<span class="byline">
<xsl:for-each select="tei:author[1]">
<xsl:call-template name="key"/>
</xsl:for-each>
<xsl:text> </xsl:text>
<i>et al.</i>
</span>
</xsl:when>
<xsl:otherwise>
<span class="byline">
<xsl:for-each select="tei:author">
<xsl:if test="position() > 1"> ; </xsl:if>
<xsl:variable name="html">
<xsl:call-template name="key"/>
</xsl:variable>
<xsl:copy-of select="$html"/>
<xsl:variable name="norm" select="normalize-space($html)"/>
<xsl:variable name="last" select="substring($norm, string-length($norm))"/>
<xsl:if test="position() = last() and position() > 1 and $last != '.'">.</xsl:if>
</xsl:for-each>
</span>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:param>
<!-- Referenced date -->
<xsl:param name="docdate">
<xsl:choose>
<xsl:when test="/*/tei:teiHeader/tei:profileDesc/tei:creation/tei:date[concat(.,@when,@notBefore,@notAfter)!='']">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:profileDesc/tei:creation[1]/tei:date[1]"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull/tei:publicationStmt/tei:date">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull[1]/tei:publicationStmt[1]/tei:date[1]"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl[@type='struct']/tei:date">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl[@type='struct'][1]/tei:date[1]"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl/tei:date">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl[1]/tei:date[1]"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:publicationStmt/tei:date">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:fileDesc/tei:publicationStmt/tei:date[1]"/>
</xsl:when>
</xsl:choose>
</xsl:param>
<!-- Publication date, especially useful to date preface and so on -->
<xsl:variable name="issued">
<xsl:choose>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull/tei:publicationStmt/tei:date">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull[1]/tei:publicationStmt[1]/tei:date[1]"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl[@type='struct']/tei:date">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl[@type='struct'][1]/tei:date[1]"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl/tei:date">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl[1]/tei:date[1]"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:publicationStmt/tei:date">
<xsl:apply-templates mode="year" select="/*/tei:teiHeader/tei:fileDesc/tei:publicationStmt[1]/tei:date[1]"/>
</xsl:when>
</xsl:choose>
</xsl:variable>
<!-- la chaîne identifiante (ISBN, URI…) -->
<xsl:param name="identifier">
<xsl:choose>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:publicationStmt/tei:idno">
<xsl:value-of select="/*/tei:teiHeader/tei:fileDesc/tei:publicationStmt/tei:idno"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl[@type='struct']/tei:idno">
<xsl:value-of select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:bibl[@type='struct']/tei:idno"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/*/tei:idno">
<xsl:value-of select="/*/tei:teiHeader/tei:fileDesc/tei:sourceDesc/*/tei:idno"/>
</xsl:when>
<xsl:when test="$docid">
<xsl:value-of select="$docid"/>
</xsl:when>
<xsl:otherwise>
<xsl:message>Identifier ?</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:param>
<!-- Langue du document, sert aussi pour les messages générés -->
<xsl:param name="lang">
<xsl:choose>
<xsl:when test="/*/@xml:lang">
<xsl:value-of select="/*/@xml:lang"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:profileDesc/tei:langUsage/@xml:lang">
<xsl:value-of select="/*/tei:teiHeader/tei:profileDesc/tei:langUsage/@xml:lang"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:profileDesc/tei:langUsage/tei:language/@ident">
<xsl:value-of select="/*/tei:teiHeader/tei:profileDesc/tei:langUsage/tei:language/@ident"/>
</xsl:when>
<xsl:otherwise>fr</xsl:otherwise>
</xsl:choose>
</xsl:param>
<!-- File for generated messages -->
<xsl:param name="messages">tei.rdfs</xsl:param>
<!-- charger le fichier de messages, document('') permet de résoudre les chemin relativement à ce fichier -->
<xsl:variable name="rdf:Property" select="document($messages, document(''))/*/rdf:Property"/>
<!-- Useful in Teinte package -->
<xsl:variable name="this"/>
<!-- A separate page for footnotes ? -->
<xsl:param name="fnpage"/>
<!-- A dest folder for graphics -->
<xsl:param name="images"/>
<!-- key to know which element to split -->
<!-- Éléments uniques dans un fichier, identifiés par leur nom, liste séparée d'espaces. -->
<xsl:variable name="els-unique"> editorialDecl licence projectDesc revisionDesc samplingDecl sourceDesc TEI teiHeader </xsl:variable>
<!-- Une barre d'espaces insécables, utilisable pour de l'indentation automatique -->
<xsl:variable name="nbsp"> </xsl:variable>
<xsl:variable name="lf">
<xsl:text> </xsl:text>
</xsl:variable>
<xsl:variable name="tab">
<xsl:text>	</xsl:text>
</xsl:variable>
<!-- Some constants -->
<xsl:variable name="epub2">epub2</xsl:variable>
<xsl:variable name="epub3">epub3</xsl:variable>
<xsl:variable name="html5">html5</xsl:variable>
<xsl:variable name="html">html</xsl:variable>
<xsl:variable name="article">article</xsl:variable>
<xsl:variable name="nav">nav</xsl:variable>
<xsl:variable name="ul">ul</xsl:variable>
<xsl:variable name="ol">ol</xsl:variable>
<xsl:variable name="front">front</xsl:variable>
<xsl:variable name="back">back</xsl:variable>
<!-- Upper case letters with diactitics, for translate() -->
<xsl:variable name="uc">ABCDEFGHIJKLMNOPQRSTUVWXYZÆŒÇÀÁÂÃÄÅÈÉÊËÌÍÎÏÒÓÔÕÖÙÚÛÜÝ</xsl:variable>
<!-- Lower case letters with diacritic, for translate() -->
<xsl:variable name="lc">abcdefghijklmnopqrstuvwxyzæœçàáâãäåèéêëìíîïòóôõöùúûüý</xsl:variable>
<!-- To produce a normalised id -->
<xsl:variable name="idfrom">ABCDEFGHIJKLMNOPQRSTUVWXYZÀÂÄÉÈÊÏÎÔÖÛÜÇàâäéèêëïîöôüû ,.</xsl:variable>
<xsl:variable name="idto">abcdefghijklmnopqrstuvwxyzaaaeeeiioouucaaaeeeeiioouu-</xsl:variable>
<xsl:variable name="apos">'</xsl:variable>
<xsl:variable name="quote">"</xsl:variable>
<!-- a key for identified elements -->
<xsl:key match="*" name="id" use="@xml:id"/>
<!-- A key to count elements by name -->
<xsl:key match="*" name="qname" use="local-name()"/>
<!-- Put a lang attribute -->
<xsl:template name="att-lang">
<xsl:variable name="lang-loc" select="ancestor-or-self::*[@xml:lang][1]/@xml:lang"/>
<xsl:choose>
<xsl:when test="$lang-loc != ''">
<xsl:attribute name="lang">
<xsl:value-of select="$lang-loc"/>
</xsl:attribute>
</xsl:when>
<xsl:when test="$lang != ''">
<xsl:attribute name="lang">
<xsl:value-of select="$lang"/>
</xsl:attribute>
</xsl:when>
</xsl:choose>
</xsl:template>
<!-- Get a year from a date tag with different possible attributes -->
<xsl:template match="*" mode="year" name="year">
<xsl:choose>
<xsl:when test="@when">
<xsl:value-of select="substring(@when, 1, 4)"/>
</xsl:when>
<xsl:when test="@notAfter">
<xsl:value-of select="substring(@notAfter, 1, 4)"/>
</xsl:when>
<xsl:when test="@notBefore">
<xsl:value-of select="substring(@notBefore, 1, 4)"/>
</xsl:when>
<xsl:when test="@n">
<xsl:value-of select="substring(@n, 1, 4)"/>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="text" select="normalize-space(string(.))"/>
<!-- try to find a year -->
<xsl:variable name="XXXX" select="translate($text,'0123456789', '##########')"/>
<xsl:choose>
<xsl:when test="contains($XXXX, '####')">
<xsl:variable name="pos" select="string-length(substring-before($XXXX,'####')) + 1"/>
<xsl:value-of select="substring($text, $pos, 4)"/>
</xsl:when>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="key">
<xsl:choose>
<xsl:when test="@key and contains(@key, '(')">
<xsl:value-of select="normalize-space(substring-before(@key, '('))"/>
</xsl:when>
<xsl:when test="@key != ''">
<xsl:value-of select="@key"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="title"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Create a titlePage from teiHeader -->
<xsl:template name="titlePage">
<xsl:apply-templates select="/*/tei:teiHeader"/>
<!--
<div class="titlePage">
<xsl:choose>
<xsl:when test="not(/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author)"/>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author[. != '']">
<xsl:apply-templates select="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author[. != '']"/>
</xsl:when>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author[@key != '']">
<xsl:for-each select="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author[@key != '']">
<div class="author">
<xsl:choose>
<xsl:when test="contains(@key, '(')">
<xsl:value-of select="normalize-space(substring-before(@key, '('))"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@key"/>
</xsl:otherwise>
</xsl:choose>
</div>
</xsl:for-each>
</xsl:when>
</xsl:choose>
<xsl:apply-templates select="/*/tei:teiHeader/tei:profileDesc/tei:creation/tei:date[1]"/>
<xsl:apply-templates select="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:title[not(@type) or @type='main' or @type='sub' or @type='alt' or @type='short' or @type='desc']"/>
<xsl:apply-templates select="/*/tei:teiHeader/tei:fileDesc/tei:publicationStmt"/>
</div>
-->
</xsl:template>
<!-- Créer un titre hiérarchique pour /html/head/title d'une section -->
<xsl:template name="titlebranch">
<xsl:variable name="titlebranch">
<xsl:for-each select="ancestor-or-self::*">
<xsl:sort order="descending" select="position()"/>
<xsl:variable name="branch">
<xsl:apply-templates mode="title" select="."/>
</xsl:variable>
<xsl:variable name="branchNorm" select="normalize-space($branch)"/>
<xsl:choose>
<!-- ramasser le teiHeader (?) -->
<xsl:when test="self::tei:TEI"/>
<xsl:when test="self::tei:text">
<xsl:if test="position() != 1"> — </xsl:if>
<xsl:copy-of select="$doctitle"/>
</xsl:when>
<xsl:when test="self::tei:body"/>
<!-- forged title, do not use ? why ? -->
<!--
<xsl:when test="starts-with($branchNorm, '[')"/>
-->
<!-- end -->
<xsl:otherwise>
<xsl:if test="position() != 1"> — </xsl:if>
<xsl:if test="position() = 1 and not(starts-with($branchNorm, '['))">« </xsl:if>
<xsl:copy-of select="$branch"/>
<xsl:if test="position() = 1 and not(starts-with($branchNorm, '['))"> »</xsl:if>
<!--
<xsl:choose>
<xsl:when test="contains(';.,', substring($branchNorm, string-length($branchNorm)) )"> </xsl:when>
<xsl:when test="position() = last()">.</xsl:when>
<xsl:otherwise>. </xsl:otherwise>
</xsl:choose>
-->
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:variable>
<!-- ???
<xsl:choose>
<xsl:when test="normalize-space($titlebranch) = ''">
<xsl:value-of select="$corpusTitle"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="normalize-space($titlebranch)"/>
</xsl:otherwise>
</xsl:choose>
-->
<xsl:value-of select="normalize-space($titlebranch)"/>
</xsl:template>
<!--
<h3>mode="id" (identifiant)</h3>
<p>
Mode permettant d'associer un identifiant unique dans le contexte d'un document,
notamment pour établir cible et source de liens.
</p>
-->
<xsl:template match="*" mode="id" name="id">
<xsl:param name="prefix"/>
<xsl:param name="suffix"/>
<xsl:variable name="id0"> '":,; /\</xsl:variable>
<xsl:value-of select="$prefix"/>
<xsl:choose>
<xsl:when test="@xml:id">
<xsl:value-of select="translate(@xml:id, $id0, '')"/>
</xsl:when>
<xsl:when test="@id">
<xsl:value-of select="translate(@id, $id0, '')"/>
</xsl:when>
<xsl:when test="/tei:TEI/tei:text/tei:front and count(.|/tei:TEI/tei:text/tei:front)=1">front</xsl:when>
<xsl:when test="@type = 'act'">
<xsl:number format="I" count="tei:*[@type='act']"/>
</xsl:when>
<xsl:when test="@type = 'scene'">
<xsl:for-each select="parent::*[1]">
<xsl:call-template name="id"/>
</xsl:for-each>
<xsl:number format="01"/>
</xsl:when>
<xsl:when test="self::tei:sp">
<xsl:for-each select="parent::*[1]">
<xsl:call-template name="id"/>
</xsl:for-each>
<xsl:text>-</xsl:text>
<xsl:number format="1"/>
</xsl:when>
<xsl:when test="parent::*/@type = 'act'">
<xsl:for-each select="parent::*[1]">
<xsl:call-template name="id"/>
</xsl:for-each>
<xsl:number format="01"/>
</xsl:when>
<xsl:when test="self::tei:listPerson and @type = 'configuration'">
<xsl:text>conf</xsl:text>
<xsl:number count="tei:listPerson[@type='configuration']" level="any"/>
</xsl:when>
<xsl:when test="not(ancestor::tei:group) and (self::tei:div or starts-with(local-name(), 'div'))">
<!-- should I put file id as div id prefix ? -->
<!--
<xsl:if test="$docid != ''">
<xsl:value-of select="translate($docid, $id0, $id1)"/>
<xsl:text>_</xsl:text>
</xsl:if>
-->
<xsl:choose>
<xsl:when test="ancestor::tei:body">body-</xsl:when>
<xsl:when test="ancestor::tei:front">front-</xsl:when>
<xsl:when test="ancestor::tei:back">back-</xsl:when>
</xsl:choose>
<xsl:number count="tei:div|tei:div1|tei:div2|tei:div3|tei:div4" format="1-1" level="multiple"/>
</xsl:when>
<!-- hiérarchie simple de div -->
<xsl:when test="self::tei:div and not(ancestor::tei:group)">
<!-- should I put file id as div id prefix ? -->
<!--
<xsl:if test="$docid != ''">
<xsl:value-of select="translate($docid, $id0, $id1)"/>
<xsl:text>_</xsl:text>
</xsl:if>
-->
<xsl:number count="tei:div" format="1-1" level="multiple"/>
</xsl:when>
<!-- find index -->
<xsl:when test="/tei:TEI/tei:text and count(.|/tei:TEI/tei:text)=1">index</xsl:when>
<!-- éléments hauts -->
<xsl:when test="count(.. | /*) = 1">
<!-- should I put file id as div id prefix ? -->
<!--
<xsl:if test="$docid != ''">
<xsl:value-of select="translate($docid, $id0, $id1)"/>
<xsl:text>_</xsl:text>
</xsl:if>
-->
<xsl:value-of select="local-name()"/>
</xsl:when>
<!-- groupe de textes -->
<xsl:when test="self::tei:group">
<!-- should I put file id as div id prefix ? -->
<!--
<xsl:if test="$docid != ''">
<xsl:value-of select="translate($docid, $id0, $id1)"/>
<xsl:text>_</xsl:text>
</xsl:if>
-->
<xsl:value-of select="local-name()"/>
<xsl:number format="-1-1" from="/*/tei:text/tei:group" level="multiple"/>
</xsl:when>
<!-- éléments uniques identifiables par leur nom -->
<xsl:when test="contains($els-unique, concat(' ', local-name(), ' '))">
<!-- should I put file id as div id prefix ? -->
<!--
<xsl:if test="$docid != ''">
<xsl:value-of select="translate($docid, $id0, $id1)"/>
<xsl:text>_</xsl:text>
</xsl:if>
-->
<xsl:value-of select="local-name()"/>
</xsl:when>
<xsl:when test="self::tei:pb">
<xsl:choose>
<xsl:when test="contains('0123456789IVXDCM', substring(@n,1,1))">
<xsl:text>pb</xsl:text>
<xsl:value-of select="normalize-space(translate(@n, $id0, ''))"/>
</xsl:when>
<xsl:when test="@n != ''">
<xsl:value-of select="normalize-space(translate(@n, $id0, ''))"/>
</xsl:when>
<xsl:otherwise>
<xsl:text>p</xsl:text>
<xsl:number level="any"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="self::tei:figure">
<xsl:text>fig</xsl:text>
<xsl:number level="any"/>
</xsl:when>
<xsl:when test="self::tei:graphic">
<xsl:text>img</xsl:text>
<xsl:number level="any"/>
</xsl:when>
<!-- Défaut -->
<xsl:when test="true()">
<!-- should I put file id as div id prefix ? -->
<!--
<xsl:if test="$docid != ''">
<xsl:value-of select="translate($docid, $id0, $id1)"/>
<xsl:text>_</xsl:text>
</xsl:if>
-->
<xsl:value-of select="local-name()"/>
<xsl:if test="count(key('qname', local-name())) > 1">
<xsl:number level="any"/>
</xsl:if>
</xsl:when>
<!-- numérotation des notes, préfixées par la section -->
<xsl:when test="self::tei:note or self::tei:app or self::tei:cit[@n]">
<xsl:choose>
<xsl:when test="ancestor::*[@xml:id]">
<xsl:value-of select="ancestor::*[@xml:id][1]/@xml:id"/>
<xsl:text>-</xsl:text>
</xsl:when>
<xsl:when test="ancestor::tei:text[parent::tei:group]">
<xsl:for-each select="ancestor::tei:text[1]">
<xsl:call-template name="n"/>
</xsl:for-each>
<xsl:text>-</xsl:text>
</xsl:when>
<xsl:when test="ancestor::*[key('split', generate-id())]">
<xsl:for-each select="ancestor::*[key('split', generate-id())][1]">
<xsl:call-template name="id"/>
</xsl:for-each>
<xsl:text>-</xsl:text>
</xsl:when>
</xsl:choose>
<xsl:text>fn</xsl:text>
<xsl:variable name="n">
<xsl:call-template name="n"/>
</xsl:variable>
<xsl:value-of select="translate($n, '()-', '')"/>
</xsl:when>
<!-- Où ?
<xsl:when test="@n and ancestor::*[@xml:id][local-name() != local-name(/*)]">
<xsl:value-of select="ancestor::*[@xml:id][1]/@xml:id"/>
<xsl:text>-</xsl:text>
<xsl:value-of select="@n"/>
</xsl:when>
-->
<!-- lien vers une ancre -->
<xsl:when test="starts-with(@target, '#') and not(contains(@target, ' '))">
<xsl:value-of select="substring(@target, 2)"/>
</xsl:when>
<!-- Mauvaise solution par défaut -->
<xsl:otherwise>
<xsl:value-of select="generate-id()"/>
</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="$suffix"/>
</xsl:template>
<!--
<h3>mode="n" (numéro)</h3>
<p>
Beaucoup de composants d'un texte peuvent être identifiés par un numéro notamment
les différents types de notes (apparat critique, glose historique, philologique…), ou les sections hiérarchiques.
Un tel numéro peut etre très utile pour
</p>
-->
<!-- Numéro élément, priorité aux indications de l'auteur (en général) -->
<xsl:template match="node()" mode="n" name="n">
<xsl:variable name="id" select="translate((@xml:id | @id), 'abcdefghijklmnopqrstuvwxyz', '')"/>
<xsl:choose>
<xsl:when test="@n">
<xsl:value-of select="@n"/>
</xsl:when>
<!-- numérotation hiérarchique des sections -->
<xsl:when test="self::tei:div">
<xsl:number format="1-1" level="multiple"/>
</xsl:when>
<xsl:when test="self::tei:div0 or self::tei:div1 or self::tei:div2 or self::tei:div3 or self::tei:div4 or self::tei:div5 or self::tei:div6 or self::tei:div7">
<xsl:number count="tei:div0 | tei:div1 | tei:div2 | tei:div3 | tei:div4 | tei:div5 | tei:div6 | tei:div7" format="1-1" level="multiple"/>
</xsl:when>
<xsl:when test="number($id)">
<xsl:value-of select="$id"/>
</xsl:when>
<!-- textes non identifiés (ou numérotés) -->
<xsl:when test="self::tei:text and ancestor::tei:group">
<xsl:number from="tei:text/tei:group" level="any"/>
</xsl:when>
<xsl:otherwise>
<xsl:number from="/*/tei:text/tei:body | /*/tei:text/tei:front | /*/tei:text/tei:back" level="any"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--
<h3>mode="title" (titre long)</h3>
<p>
Ce mode permet de traverser un arbre jusqu'à trouver un élément satisfaisant pour le titrer (souvent <head>).
Une fois cet elément trouvé, le contenu est procédé en mode texte afin de passer les notes,
résoudre les césures, ou les alternatives éditoriales.
</p>
<p>Utiliser pour la génération de tables des matières, epub toc.ncx, ou site nav.html, index.html</p>
-->
<xsl:template match="tei:elementSpec" mode="title">
<xsl:value-of select="@ident"/>
</xsl:template>
<xsl:template name="pipe-comma">
<xsl:param name="text" select="."/>
<xsl:choose>
<xsl:when test="normalize-space($text)=''"/>
<xsl:when test="contains($text, '|')">
<xsl:value-of select="normalize-space(substring-before($text, '|'))"/>
<xsl:text>, </xsl:text>
<xsl:call-template name="pipe-comma">
<xsl:with-param name="text" select="substring-after($text, '|')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="normalize-space($text)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- find a title for a section -->
<xsl:template match="tei:back | tei:body | tei:div | tei:div0 | tei:div1 | tei:div2 | tei:div3 | tei:div4 | tei:div5 | tei:div6 | tei:div7 | tei:front | tei:group | tei:TEI | tei:text | tei:titlePage" mode="title" name="title">
<!-- Author in a title ? -->
<!-- Numérotation construite (?) -->
<xsl:choose>
<!-- Short title, not displayed -->
<xsl:when test="tei:index[@indexName='head'][@n != '']">
<xsl:value-of select="tei:index[@indexName='head'][@n != '']/@n"/>
</xsl:when>
<xsl:when test="tei:index/tei:term[@type='head']">
<xsl:apply-templates mode="title" select="(tei:index/tei:term[@type='head'])[1]"/>
</xsl:when>
<!-- title for a titlePage is "Title page" -->
<xsl:when test="self::tei:titlePage">
<xsl:call-template name="message"/>
</xsl:when>
<xsl:when test="tei:head[not(@type='sub')]">
<xsl:variable name="byline">
<xsl:choose>
<xsl:when test="tei:byline">
<xsl:apply-templates mode="title" select="tei:byline"/>
</xsl:when>
<xsl:when test="tei:index[@indexName='author' or @indexName='creator']">
<xsl:for-each select="tei:index[@indexName='author' or @indexName='creator']">
<xsl:choose>
<xsl:when test="@n">
<xsl:variable name="n" select="translate(@n, '0123456789', '')"/>
<xsl:choose>
<xsl:when test="$n='unknown'"/>
<xsl:when test="contains($n, '|')">
<xsl:call-template name="pipe-comma">
<xsl:with-param name="text" select="$n"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="normalize-space($n)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="position()=1"/>
<xsl:when test="position() = last()"/>
<xsl:otherwise>, </xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:variable name="title">
<xsl:for-each select="tei:head[not(@type='sub')]">
<xsl:apply-templates mode="title" select="."/>
<xsl:if test="position() != last()">
<!-- test if title end by ponctuation -->
<xsl:variable name="norm" select="normalize-space(.)"/>
<xsl:variable name="last" select="substring($norm, string-length($norm))"/>
<xsl:if test="translate($last, '.;:?!»', '')!=''">. </xsl:if>
</xsl:if>
</xsl:for-each>
</xsl:variable>
<xsl:copy-of select="$title"/>
<!-- Afficher un Byline en TOC ?
<xsl:choose>
<xsl:when test="$byline != ''">
<xsl:variable name="norm" select="normalize-space($title)"/>
<xsl:if test="substring($norm, string-length($norm)) != '.'">
<xsl:text>.</xsl:text>
</xsl:if>
<xsl:text> </xsl:text>
<xsl:copy-of select="$byline"/>
</xsl:when>
</xsl:choose>
-->
</xsl:when>
<!-- titlePage is not the title of a front
<xsl:when test="tei:titlePage">
<xsl:apply-templates select="(tei:titlePage[1]/tei:docTitle/tei:titlePart|tei:titlePage[1]/tei:titlePart)[1]" mode="title"/>
</xsl:when>
-->
<!-- Front or back with no local title, use a generic label -->
<xsl:when test="self::tei:front|self::tei:back">
<xsl:call-template name="message"/>
</xsl:when>
<!-- Level <text>, get a short title to display, an author maybe nice as a prefix -->
<xsl:when test=" self::tei:text or self::tei:body ">
<xsl:variable name="title">
<xsl:choose>
<xsl:when test="tei:body/tei:head">
<xsl:apply-templates mode="title" select="tei:body/tei:head[1]"/>
</xsl:when>
<xsl:when test="tei:front/tei:head">
<xsl:apply-templates mode="title" select="tei:front/tei:head[1]"/>
</xsl:when>
<xsl:when test="not(ancestor::tei:group)">
<xsl:copy-of select="$doctitle"/>
</xsl:when>
<!-- title for a titlePage is "Title page" -->
<xsl:when test="tei:front/tei:titlePage">
<xsl:apply-templates mode="title" select="(.//tei:front/tei:titlePage[1]/tei:docTitle[1]/tei:titlePart[1] | .//tei:front/tei:titlePage[1]/tei:titlePart[1])[1]"/>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:variable name="author">
<xsl:choose>
<!-- search for docDates ? -->
<xsl:when test="ancestor::tei:group"/>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author">
<xsl:for-each select="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author[1]">
<xsl:choose>
<xsl:when test="contains(@key, '(')">
<xsl:value-of select="normalize-space(substring-before(@key, '('))"/>
</xsl:when>
<xsl:when test="@key">
<xsl:value-of select="@key"/>
</xsl:when>
<xsl:when test="contains(., '(')">
<xsl:value-of select="normalize-space(substring-before(., '('))"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="normalize-space(.)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:choose>
<xsl:when test="/*/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author[2]">… </xsl:when>
<xsl:otherwise>. </xsl:otherwise>
</xsl:choose>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<!-- Juste title, no author ?
<xsl:when test="$author != ''">
<xsl:copy-of select="$author"/>
<i>
<xsl:copy-of select="$title"/>
</i>
</xsl:when>
-->
<xsl:when test="$title">
<xsl:copy-of select="$title"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="idpath"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="tei:docTitle">
<xsl:apply-templates mode="title" select="tei:docTitle[1]/tei:titlePart[1]"/>
</xsl:when>
<!-- a date as a title (ex, acte) -->
<xsl:when test="tei:docDate">
<xsl:apply-templates mode="title" select="tei:docDate[1]"/>
</xsl:when>
<!-- A <text> ? -->
<xsl:when test="tei:front/tei:titlePage">
<xsl:apply-templates mode="title" select="tei:front/tei:titlePage"/>
</xsl:when>
<!-- /TEI/text ? -->
<xsl:when test="../tei:teiHeader">
<xsl:apply-templates mode="title" select="../tei:teiHeader"/>
</xsl:when>
<!-- Après front, supposé plus affichable qu'un teiHeader -->
<xsl:when test="tei:teiHeader">
<xsl:apply-templates mode="title" select="tei:teiHeader"/>
</xsl:when>
<xsl:when test="tei:dateline">
<xsl:apply-templates mode="title" select="tei:dateline"/>
</xsl:when>
<xsl:when test="@n">
<xsl:value-of select="@n"/>
</xsl:when>
<xsl:when test="@type">
<xsl:call-template name="message">
<xsl:with-param name="id" select="@type"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="self::tei:div and parent::tei:body">
<xsl:text>[</xsl:text>
<xsl:call-template name="message">
<xsl:with-param name="id">chapter</xsl:with-param>
</xsl:call-template>
<xsl:text> </xsl:text>
<xsl:call-template name="n"/>
<xsl:text>]</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>[</xsl:text>
<xsl:call-template name="n"/>
<xsl:text>]</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- title, verify if empty -->
<xsl:template match="tei:head" mode="title">
<xsl:variable name="html">
<xsl:apply-templates mode="title"/>
</xsl:variable>
<xsl:choose>
<xsl:when test="$html = ''">
<xsl:text>[</xsl:text>
<xsl:for-each select="ancestor::tei:div[1]">
<xsl:call-template name="n"/>
</xsl:for-each>
<xsl:text>]</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:copy-of select="$html"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- titre dans un front -->
<xsl:template match="tei:titlePart" mode="title">
<xsl:apply-templates mode="title"/>
</xsl:template>
<!-- no notes in title mode -->
<xsl:template match="tei:note | tei:index" mode="title"/>
<xsl:template match="tei:pb" mode="title">
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="tei:lb" mode="title">
<xsl:variable name="prev" select="preceding-sibling::node()[1]"/>
<xsl:variable name="norm" select="normalize-space( $prev )"/>
<xsl:variable name="lastchar" select="substring($norm, string-length($norm))"/>
<xsl:choose>
<xsl:when test="contains(',.;:—–-', $lastchar)">
<xsl:text> </xsl:text>
</xsl:when>
<xsl:when test="string-length($prev) = string-length($norm)">
<xsl:text>. </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text> – </xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="tei:choice" mode="title">
<xsl:choose>
<xsl:when test="tei:reg">
<xsl:apply-templates mode="title" select="tei:reg/node()"/>
</xsl:when>
<xsl:when test="tei:expan">
<xsl:apply-templates mode="title" select="tei:expan/node()"/>
</xsl:when>
<xsl:when test="tei:corr">
<xsl:apply-templates mode="title" select="tei:corr/node()"/>
</xsl:when>
<xsl:when test="tei:ex">
<xsl:apply-templates mode="title" select="tei:ex/node()"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- default, cross all, keep only text -->
<xsl:template match="*" mode="title" priority="-2">
<xsl:apply-templates mode="title"/>
</xsl:template>
<!-- Keep text from some element with possible values in attributes -->
<xsl:template match="tei:date | tei:docDate | tei:origDate" mode="title">
<xsl:variable name="text">
<xsl:apply-templates select="."/>
</xsl:variable>
<xsl:text> </xsl:text>
<xsl:value-of select="$text"/>
<xsl:text> </xsl:text>
</xsl:template>
<!-- strip last space in ponctuated elements -->
<xsl:template match="tei:head/text() | tei:byline/text()" mode="title">
<xsl:choose>
<xsl:when test="position()=1">
<xsl:variable name="norm" select="normalize-space(.)"/>
<xsl:value-of select="$norm"/>
<xsl:if test="$norm != '' and substring(., string-length(.)) = ' '">
<xsl:text> </xsl:text>
</xsl:if>
</xsl:when>