-
Notifications
You must be signed in to change notification settings - Fork 4
/
unimarctoidref.xsl
1383 lines (1383 loc) · 74.3 KB
/
unimarctoidref.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"?>
<!-- XSL de transformation du marcXml Bnf en marcXml Sudoc. (ERM créé 2020)
Objectifs : rendre conforme au marcXml Sudoc :
v 20201109
-->
<xsl:stylesheet exclude-result-prefixes="srw mxc xsi xs" version="2.0"
xmlns:mxc="info:lc/xmlns/marcxchange-v2" xmlns:srw="http://www.loc.gov/zing/srw/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UTF-8" indent="yes" method="xml"/>
<xsl:param name="token"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="dateJour">
<xsl:value-of select="format-date(current-date(), '[Y0001][M01][D01]')"/>
</xsl:variable>
<xsl:variable name="g_carNonTri"
>de De des Des du Du l' L' le Le la La [la] [La] les Les un Un une Une
die Die (die) (Die) das Das
the The [the] [The]
los Los las Las el El uno Uno una Una
il Il gli Gli
</xsl:variable>
<xsl:template match="/">
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<ucp:updateRequest xmlns:srw="http://www.loc.gov/zing/srw/"
xmlns:ucp="http://www.loc.gov/zing/srw/update/">
<srw:version>1.0</srw:version>
<ucp:action>info:srw/action/1/creaute</ucp:action>
<srw:recordIdentifier/>
<ucp:recordVersions>
<ucp:recordVersion>
<ucp:versionType>timestamp</ucp:versionType>
<ucp:versionValue>124578</ucp:versionValue>
</ucp:recordVersion>
</ucp:recordVersions>
<srw:record>
<srw:recordPacking>xml</srw:recordPacking>
<srw:recordSchema>info:srw/schema/1/marcxml-v1.1</srw:recordSchema>
<srw:recordData>
<xsl:apply-templates select="//srw:recordData"/>
</srw:recordData>
</srw:record>
</ucp:updateRequest>
<srw:extraRequestData>
<srw:authenticationToken>
<xsl:value-of select="$token"/>
</srw:authenticationToken>
</srw:extraRequestData>
</soap:Body>
</soap:Envelope>
</xsl:template>
<xsl:template match="srw:recordData">
<!--ERM le 24/06/20 -->
<!--arbre1 : variable qui contient les zones non ordonnées-->
<xsl:variable name="arbre1">
<record>
<!--ERM le 24/06/20 -->
<!--devenu inutile -->
<xsl:variable name="leaderDeb">
<xsl:value-of select="substring(mxc:record/mxc:leader, 1, 17)"/>
</xsl:variable>
<xsl:variable name="leaderFin">
<xsl:value-of select="substring(mxc:record/mxc:leader, 19)"/>
</xsl:variable>
<!-- <xsl:choose>
<xsl:when
test="mxc:record/mxc:datafield[substring(@tag, 1, 1) = '7'][mxc:subfield[@code = '3'][normalize-space(text()) != '']]">
<xsl:element name="leader">
<xsl:value-of select="concat($leaderDeb, '#', $leaderFin)"/>
</xsl:element>
</xsl:when>
</xsl:choose>-->
<xsl:variable name="leader09_008">
<xsl:call-template name="typeAut">
<xsl:with-param name="code" select="substring($leaderDeb, 10, 1)"/>
</xsl:call-template>
</xsl:variable>
<datafield tag="008">
<!--ind1=" " ind2=" "-->
<subfield code="a">
<xsl:value-of select="concat('T', $leader09_008, '5')"/>
</subfield>
</datafield>
<xsl:for-each select="//mxc:datafield[@tag = '010'][mxc:subfield/@code = 'a']">
<datafield ind1="#" ind2="#" tag="010">
<xsl:apply-templates select="mxc:subfield[@code = 'a']"/>
<xsl:choose>
<xsl:when test="mxc:subfield[@code = '2'] != 'ISNI'">
<subfield code="2">ISNI</subfield>
<subfield code="C">
<xsl:value-of select="mxc:subfield[@code = '2']"/>
</subfield>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="mxc:subfield[@code = '2']"/>
</xsl:otherwise>
</xsl:choose>
<xsl:for-each select="mxc:subfield[string(@code) > 'a']">
<xsl:sort order="ascending" select="string(@code)"/>
<xsl:apply-templates select="."/>
</xsl:for-each>
</datafield>
</xsl:for-each>
<xsl:call-template name="z033"/>
<xsl:call-template name="z035"/>
<xsl:apply-templates
select="mxc:record/mxc:controlfield[not(@tag = '001' or @tag = '003' or @tag = '005')]"/>
<xsl:variable name="test101">
<xsl:for-each select="//mxc:datafield[@tag = '101']/mxc:subfield[@code = 'a']">
<xsl:if test="string-length(normalize-space(.)) = 3">OK</xsl:if>
</xsl:for-each>
</xsl:variable>
<xsl:if test="contains($test101, 'OK')">
<datafield ind1="#" ind2="#" tag="101">
<xsl:for-each select="//mxc:datafield[@tag = '101']/mxc:subfield[@code = 'a']">
<xsl:if test="string-length(normalize-space(.)) = 3">
<subfield code="a">
<xsl:value-of select="."/>
</subfield>
</xsl:if>
</xsl:for-each>
</datafield>
</xsl:if>
<!--ERM le 24/06/20 -->
<!--devenu inutile avec le tri pos-traitement
<xsl:apply-templates select="//mxc:datafield[@tag = '102']"/>-->
<xsl:call-template name="z103"/>
<xsl:call-template name="z106">
<xsl:with-param name="leader09_008" select="$leader09_008"/>
</xsl:call-template>
<xsl:for-each select="//mxc:datafield[@tag = '123']">
<datafield ind1="#" ind2="#" tag="123">
<xsl:for-each select="mxc:subfield">
<subfield>
<xsl:attribute name="code" select="@code"/>
<xsl:value-of select="lower-case(text())"/>
</subfield>
</xsl:for-each>
</datafield>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[@tag = '128']">
<xsl:choose>
<xsl:when
test="//mxc:datafield[@tag = '210']/mxc:subfield[@code = 'a'][text() != '']"/>
<xsl:when test="$leader09_008 = 'b'"/>
<xsl:otherwise>
<xsl:call-template name="z128"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:call-template name="z150"/>
<xsl:for-each select="//mxc:datafield[@tag = '210']">
<xsl:call-template name="zX10">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[@tag = '230'] | //mxc:datafield[@tag = '240']">
<xsl:call-template name="zXXX">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<!--ERM sept 22 suppression du découpage de 330$a qui ne donne pas le bon résultat
<xsl:for-each select="mxc:subfield[@code = 'a']/tokenize(text(), '. -')">
<subfield code="a">
<xsl:value-of select="normalize-space(.)"/>
</subfield>
</xsl:for-each>-->
<xsl:for-each select="//mxc:datafield[@tag = '330']">
<datafield ind1="0" ind2="#" tag="330">
<subfield code="a">
<xsl:value-of select="normalize-space(.)"/>
</subfield>
</datafield>
</xsl:for-each>
<!--ERM le 24/06/20 -->
<!-- pour les zones qui commencent par : 30X / 34X / 35X / 36X
- celles qui n'ont que des $a, génèrent autant de zones 300$a (pour les 30X) ou 340$a (pour les 34X / 35X / 36X) que de chaines séparées par '. -'
- celles qui ont d'autre sous-zones concatènent les sous-zones Bnf dans : 300$a (pour les 30X) ou 340$a (pour les 34X / 35X / 36X)
-->
<!--Pour les zones qui commencent par : 30X / 34X / 35X / 36X -->
<xsl:for-each
select="//mxc:datafield[starts-with(@tag, '30') and @tag != '305'] | //mxc:datafield[starts-with(@tag, '34')] | //mxc:datafield[starts-with(@tag, '35') and @tag != '356'] | //mxc:datafield[starts-with(@tag, '36')]">
<xsl:variable name="tagSource" select="@tag"/>
<xsl:variable name="tagDest">
<xsl:choose>
<xsl:when
test="@tag = '300' or @tag = '303' or @tag = '349' or @tag = '353'"
>300</xsl:when>
<xsl:otherwise>340</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when
test="@tag = '301' or @tag = '304' or @tag = '341' or @tag = '342' or @tag = '346' or @tag = '349' or @tag = '352' or @tag = '360' or @tag = '361'">
<!--diffrentes sous-zones à concatener dans 300$a ou 340$a-->
<xsl:call-template name="z3XX">
<xsl:with-param name="tagSource" select="$tagSource"/>
<xsl:with-param name="tagDest" select="$tagDest"/>
<xsl:with-param name="mode" select="'concat'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<!--seulement un ou plusieurs $a
ALORS pour chaque sous-zone $a, on découpe (séparateur '. -') pour faire une zone 300$a ou 340$a-->
<xsl:for-each select="mxc:subfield[@code = 'a']">
<xsl:for-each select="tokenize(text(), '. -')">
<xsl:call-template name="z3XX">
<xsl:with-param name="tagSource" select="$tagSource"/>
<xsl:with-param name="tagDest" select="$tagDest"/>
<xsl:with-param name="mode" select="'tokenize'"/>
<xsl:with-param name="libelle">
<xsl:choose>
<xsl:when test="$tagSource = '302'">
<xsl:text>Nationalité : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '303'">
<xsl:text>Adresse : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '307'">
<xsl:text>Composition du groupe : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '343'">
<xsl:text>Profession annexe : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '344'">
<xsl:text>Gamme des produits et services de la marque : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '345'">
<xsl:text>Interventions : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '347'">
<xsl:text>Titulature : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '350'">
<xsl:text>Activité liée à la production artistique : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '351'">
<xsl:text>Technique : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '353'">
<xsl:text>Influence : </xsl:text>
</xsl:when>
<xsl:when test="$tagSource = '354'">
<xsl:text>Devise(s) : </xsl:text>
</xsl:when>
<xsl:otherwise/>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:for-each>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[@tag = '410']">
<xsl:call-template name="zX10">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[@tag = '430'] | //mxc:datafield[@tag = '440']">
<xsl:call-template name="zXXX">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[@tag = '510']">
<xsl:call-template name="zX10">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[starts-with(@tag, '5') and (not(@tag = '510'))]">
<xsl:call-template name="zXXX">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[@tag = '710']">
<xsl:call-template name="zX10">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[@tag = '730'] | //mxc:datafield[@tag = '740']">
<xsl:call-template name="zXXX">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<xsl:for-each select="//mxc:datafield[@tag = '810']/mxc:subfield[@code = 'a']">
<xsl:call-template name="z810"/>
</xsl:for-each>
<!--ERM sept 22 ajout du template z856 -->
<xsl:for-each select="//mxc:datafield[@tag = '856']">
<xsl:call-template name="z856"/>
</xsl:for-each>
<datafield ind1="#" ind2="#" tag="899">
<xsl:variable name="dateJour2">
<xsl:value-of select="format-date(current-date(), '[D01]/[M01]/[Y0001]')"/>
</xsl:variable>
<subfield code="a">
<xsl:value-of select="concat('Notice BnF dérivée via IdRef, le ', $dateJour2)"/>
</subfield>
</datafield>
<!--ERM le 24/06/20 -->
<!--ancienne version des petits poissons qu'on ne laisse pas passer :
or @tag = '300' or @tag = '301' or @tag = '302' or @tag = '303' or @tag = '304' or @tag = '307'
or @tag = '340' or @tag = '341' or @tag = '342' or @tag = '343' or @tag = '344' or @tag = '345' or @tag = '346' or @tag = '347' or @tag = '349'
or @tag = '351' or @tag = '352' or @tag = '353' or @tag = '354'
or @tag = '360' or @tag = '361' -->
<!--ERM sept 22
nouveaux petits poissons :
* 856
* 822 sans $a mais on laisse passer mxc:record/mxc:datafield[@tag = '822'][(mxc:subfield[@code = 'a'])]
cf : Message : La sous-zone $a est obligatoire en zone 822 avec un indicateur 2 égal à #, 2, 3, 4, 5 ou 6 Solution : en l'absence de $a, ne pas récupérer la zone 822.
* 516
-->
<xsl:apply-templates
select="mxc:record/mxc:datafield[not(@tag = '010' or @tag = '039' or @tag = '100' or @tag = '101' or @tag = '103' or @tag = '105' or @tag = '106' or @tag = '123' or @tag = '128' or @tag = '150' or @tag = '152' or @tag = '154' or @tag = '160' or @tag = '210' or @tag = '230' or @tag = '240' or (starts-with(@tag, '30') and @tag != '305') or @tag = '330' or starts-with(@tag, '34') or (starts-with(@tag, '35') and @tag != '356') or starts-with(@tag, '36') or @tag = '410' or @tag = '430' or @tag = '440' or @tag = '500' or @tag = '510' or @tag = '515' or @tag = '516' or @tag = '520' or @tag = '530' or @tag = '540' or @tag = '550' or @tag = '580' or @tag = '652' or @tag = '710' or @tag = '730' or @tag = '740' or @tag = '810' or @tag = '822' or @tag = '856')] | mxc:record/mxc:datafield[@tag = '822'][(mxc:subfield[@code = 'a'])] | @*"
/>
</record>
</xsl:variable>
<!--ERM le 24/06/20 -->
<!-- arbre2 : variable qui contient la copie ordonnée des zones de arbre1-->
<xsl:variable name="arbre2">
<xsl:for-each select="$arbre1">
<xsl:sort select="//datafield/@tag"/>
<xsl:copy-of select="."/>
</xsl:for-each>
</xsl:variable>
<!--ERM le 24/06/20 -->
<!-- permet d'écrire le résultat-->
<xsl:copy-of select="$arbre2"/>
</xsl:template>
<xsl:template name="zX10">
<xsl:param name="zone"/>
<xsl:variable name="ind1">
<xsl:choose>
<xsl:when
test="string-length(normalize-space(//mxc:datafield[@tag = '150']/mxc:subfield[@code = 'a'])) = 1">
<xsl:text>0</xsl:text>
</xsl:when>
<xsl:when
test="string-length(normalize-space(//mxc:datafield[@tag = '150']/mxc:subfield[@code = 'b'])) = 1">
<xsl:choose>
<xsl:when
test="normalize-space(//mxc:datafield[@tag = '150']/mxc:subfield[@code = 'b']) = '0'">
<xsl:text>0</xsl:text>
</xsl:when>
<xsl:when
test="normalize-space(//mxc:datafield[@tag = '150']/mxc:subfield[@code = 'b']) = '1'">
<xsl:text>1</xsl:text>
</xsl:when>
</xsl:choose>
</xsl:when>
<xsl:when
test="mxc:subfield[@code = 'd'] != '' or mxc:subfield[@code = 'e'] != '' or mxc:subfield[@code = 'f'] != ''">
<xsl:text>1</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="ind2">
<xsl:choose>
<xsl:when test="@ind2 = ' ' or @ind2 = '|'">#</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@ind2"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<datafield ind1="{$ind1}" ind2="{$ind2}" tag="{$zone}">
<xsl:call-template name="zX10_zXXX">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</datafield>
</xsl:template>
<xsl:template name="z033">
<xsl:variable name="date" select="current-date()"/>
<datafield ind1="#" ind2="#" tag="033">
<subfield code="a">
<xsl:value-of select="normalize-space(//mxc:controlfield[@tag = '003'])"/>
</subfield>
<subfield code="2">BNF</subfield>
<subfield code="d">
<xsl:value-of select="format-date($date, '[Y0001][M01][D01]')"/>
</subfield>
</datafield>
</xsl:template>
<xsl:template name="z035">
<datafield ind1="#" ind2="#" tag="035">
<subfield code="a">
<xsl:value-of select="normalize-space(//mxc:controlfield[@tag = '001'])"/>
</subfield>
</datafield>
</xsl:template>
<!--ERM sept 22 réécriture du template "typeAut" qui type l'autorité en 008
pour traiter l'erreur : La zone 200 n'est pas compatible avec le type de document Td
il faut changer le type de notice sur la base de l'étiquette du point d'accès.
Si leader009 = j + 200 alors A008 prend la valeur Tp5
Si j+210 alors A008 prend la valeur Tb5
Si j+215 alors A008 prend la valeur Tg5
Si j+216 alors A008 prend la valeur Tm5
Si j+220 alors A008 prend la valeur Ta5
Si j+230 alors A008 prend la valeur Tu5
Si j+240 alors A008 prend la valeur Tq5
Si j+250 alors A008 prend la valeur Td5
Si j+280 alors A008 prend la valeur Tf5
-->
<xsl:template name="typeAut">
<xsl:param name="code"/>
<!--<xsl:variable name="rolemap">;a=p;b=b;c=g;d=m;e=a;f=u;h=q;j=d;l=f;j=z</xsl:variable>-->
<!-- ERM décembre 2024 correction chaîne de $rolemap : ";" final-->
<xsl:variable name="rolemap">;a=p;b=b;c=g;d=m;e=a;f=u;h=q;l=f;</xsl:variable>
<xsl:variable name="z2XX"><xsl:value-of select="//mxc:datafield[substring(@tag, 1, 1)='2']/@tag"/></xsl:variable>
<xsl:choose>
<xsl:when test="$code='j'">
<xsl:choose>
<xsl:when test="$z2XX='200'">p</xsl:when>
<xsl:when test="$z2XX='210'">b</xsl:when>
<xsl:when test="$z2XX='215'">g</xsl:when>
<xsl:when test="$z2XX='216'">m</xsl:when>
<xsl:when test="$z2XX='220'">a</xsl:when>
<xsl:when test="$z2XX='230'">u</xsl:when>
<xsl:when test="$z2XX='240'">q</xsl:when>
<xsl:when test="$z2XX='250'">d</xsl:when>
<xsl:when test="$z2XX='280'">f</xsl:when>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of
select="substring-before(substring-after($rolemap, concat(';', $code, '=')), ';')"/></xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="z103">
<xsl:if test="//mxc:datafield[@tag = '103']">
<xsl:variable name="z103a">
<xsl:value-of select="//mxc:datafield[@tag = '103']/mxc:subfield[@code = 'a']"/>
</xsl:variable>
<xsl:variable name="z103b">
<xsl:value-of select="//mxc:datafield[@tag = '103']/mxc:subfield[@code = 'b']"/>
</xsl:variable>
<xsl:variable name="z103_aDebut">
<xsl:value-of select="substring($z103a, 1, 10)"/>
</xsl:variable>
<xsl:variable name="z103_aDebutDate">
<xsl:analyze-string regex="[?Xx.]*[0-9]{{2,8}}[?Xx.]*"
select="substring($z103a, 2, 8)">
<xsl:matching-substring>
<xsl:value-of select="substring($z103a, 2, 8)"/>
</xsl:matching-substring>
<!--<xsl:non-matching-substring>KO</xsl:non-matching-substring>-->
</xsl:analyze-string>
</xsl:variable>
<xsl:variable name="z103_aFin">
<xsl:value-of select="substring($z103a, 11, 10)"/>
</xsl:variable>
<xsl:variable name="z103_aFinDate">
<xsl:analyze-string regex="[?Xx.]*[0-9]{{2,8}}[?Xx.]*"
select="substring($z103a, 12, 8)">
<xsl:matching-substring>
<xsl:value-of select="substring($z103a, 12, 8)"/>
</xsl:matching-substring>
<!-- <xsl:non-matching-substring>KO</xsl:non-matching-substring>-->
</xsl:analyze-string>
</xsl:variable>
<xsl:variable name="z103_bDebut">
<xsl:value-of select="substring($z103b, 1, 6)"/>
</xsl:variable>
<xsl:variable name="z103_bDebutDate">
<xsl:analyze-string regex="[?Xx.]*[0-9]{{2,8}}[?Xx.]*"
select="substring($z103b, 2, 4)">
<xsl:matching-substring>
<xsl:value-of select="substring($z103b, 2, 4)"/>
</xsl:matching-substring>
<!-- <xsl:non-matching-substring>KO</xsl:non-matching-substring>-->
</xsl:analyze-string>
</xsl:variable>
<xsl:variable name="z103_bFin">
<xsl:value-of select="substring($z103b, 7, 6)"/>
</xsl:variable>
<xsl:variable name="z103_bFinDate">
<xsl:analyze-string regex="[?Xx.]*[0-9]{{2,8}}[?Xx.]*"
select="substring($z103b, 8, 4)">
<xsl:matching-substring>
<xsl:value-of select="substring($z103b, 8, 4)"/>
</xsl:matching-substring>
<!--<xsl:non-matching-substring>KO</xsl:non-matching-substring>-->
</xsl:analyze-string>
</xsl:variable>
<!-- <xsl:comment>
103$a : <xsl:value-of select="$z103a"/>
103$b : <xsl:value-of select="$z103b"/>
$z103_aDebutDate : <xsl:value-of select="$z103_aDebutDate"/>
$z103_aFinDate : <xsl:value-of select="$z103_aFinDate"/>
$z103_bDebutDate : <xsl:value-of select="$z103_bDebutDate"/>
$z103_bFinDate : <xsl:value-of select="$z103_bFinDate"/>
</xsl:comment>-->
<xsl:if
test="$z103_aDebutDate != '' or $z103_aFinDate != '' or $z103_bDebutDate != '' or $z103_bFinDate != ''">
<datafield ind1="#" ind2="#" tag="103">
<!-- ERM pour chaque sous zone ne pas laisser passer si contient espace -->
<xsl:analyze-string regex="[?Xx.]*[0-9]{{2,8}}[?Xx.]*" select="$z103_aDebutDate">
<xsl:matching-substring>
<subfield code="a">
<xsl:value-of select="normalize-space($z103_aDebut)"/>
</subfield>
</xsl:matching-substring>
</xsl:analyze-string>
<xsl:analyze-string regex="[?Xx.]*[0-9]{{2,8}}[?Xx.]*" select="$z103_aFinDate">
<xsl:matching-substring>
<subfield code="b">
<xsl:value-of select="normalize-space($z103_aFin)"/>
</subfield>
</xsl:matching-substring>
</xsl:analyze-string>
<xsl:analyze-string regex="[?Xx.]*[0-9]{{2,8}}[?Xx.]*" select="$z103_bDebutDate">
<xsl:matching-substring>
<subfield code="c">
<xsl:value-of select="normalize-space($z103_bDebut)"/>
</subfield>
</xsl:matching-substring>
</xsl:analyze-string>
<xsl:analyze-string regex="[?Xx.]*[0-9]{{2,8}}[?Xx.]*" select="$z103_bFinDate">
<xsl:matching-substring>
<subfield code="d">
<xsl:value-of select="normalize-space($z103_bFin)"/>
</subfield>
</xsl:matching-substring>
</xsl:analyze-string>
</datafield>
</xsl:if>
</xsl:if>
</xsl:template>
<xsl:template name="z128">
<xsl:variable name="z128a"
select="normalize-space(//mxc:datafield[@tag = '128']/mxc:subfield[@code = 'a'])"/>
<xsl:variable name="z128b" select="//mxc:datafield[@tag = '128']/mxc:subfield[@code = 'b']"/>
<xsl:variable name="z128c" select="//mxc:datafield[@tag = '128']/mxc:subfield[@code = 'c']"/>
<xsl:if test="string-length($z128a) = 2">
<datafield ind1="#" ind2="#" tag="128">
<subfield code="a">
<xsl:value-of select="$z128a"/>
</subfield>
<xsl:for-each select="$z128b">
<xsl:if test="string-length(text()) = 4">
<subfield code="b">
<xsl:value-of select="text()"/>
</subfield>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="$z128c">
<xsl:if test="string-length(text()) = 4">
<subfield code="c">
<xsl:value-of select="text()"/>
</subfield>
</xsl:if>
</xsl:for-each>
</datafield>
</xsl:if>
</xsl:template>
<xsl:template name="z150">
<xsl:variable name="z150a"
select="normalize-space(//mxc:datafield[@tag = '150']/mxc:subfield[@code = 'a'])"/>
<xsl:variable name="z150b"
select="normalize-space(//mxc:datafield[@tag = '150']/mxc:subfield[@code = 'b'])"/>
<xsl:if test="string-length($z150a) = 1 or string-length($z150b) = 1">
<xsl:variable name="valeur150a" select="'abcdefghuyz'"/>
<xsl:variable name="valeur150b" select="'01'"/>
<datafield ind1="#" ind2="#" tag="150">
<xsl:if test="string-length($z150a) = 1 and contains($valeur150a, $z150a)">
<subfield code="a">
<xsl:value-of select="$z150a"/>
</subfield>
</xsl:if>
<xsl:if test="string-length($z150b) = 1 and contains($valeur150b, $z150b)">
<subfield code="b">
<xsl:value-of select="$z150b"/>
</subfield>
</xsl:if>
</datafield>
</xsl:if>
</xsl:template>
<xsl:template name="z106">
<xsl:param name="leader09_008"/>
<datafield ind1="#" ind2="#" tag="106">
<xsl:variable name="z200szx"
select="normalize-space(//mxc:datafield[@tag = '200']/mxc:subfield[@code = 'x'])"/>
<xsl:variable name="z200szy"
select="normalize-space(//mxc:datafield[@tag = '200']/mxc:subfield[@code = 'y'])"/>
<xsl:variable name="z200szz"
select="normalize-space(//mxc:datafield[@tag = '200']/mxc:subfield[@code = 'z'])"/>
<xsl:choose>
<xsl:when
test="(substring(normalize-space(//mxc:datafield[@tag = '106']/mxc:subfield[@code = 'a']), 1, 1) != '') and $leader09_008 = 'p' and ((not(//mxc:datafield[@tag = '200']/mxc:subfield[@code = 'x']) or //mxc:datafield[@tag = '200']/mxc:subfield[@code = 'x'] = '') and (not(//mxc:datafield[@tag = '200']/mxc:subfield[@code = 'y']) or //mxc:datafield[@tag = '200']/mxc:subfield[@code = 'y'] = '') and (not(//mxc:datafield[@tag = '200']/mxc:subfield[@code = 'z']) or //mxc:datafield[@tag = '200']/mxc:subfield[@code = 'z'] = ''))">
<subfield code="a">0</subfield>
<subfield code="b">1</subfield>
<subfield code="c">0</subfield>
</xsl:when>
<xsl:otherwise>
<subfield code="a">
<xsl:choose>
<xsl:when
test="substring(normalize-space(//mxc:datafield[@tag = '106']/mxc:subfield[@code = 'a']), 1, 1) != ''">
<xsl:value-of
select="(substring(normalize-space(//mxc:datafield[@tag = '106']/mxc:subfield[@code = 'a']), 1, 1))"
/>
</xsl:when>
<xsl:otherwise>#</xsl:otherwise>
</xsl:choose>
</subfield>
<subfield code="b">
<xsl:choose>
<xsl:when
test="substring(normalize-space(//mxc:datafield[@tag = '106']/mxc:subfield[@code = 'a']), 2, 1) != ''">
<xsl:value-of
select="substring(normalize-space(//mxc:datafield[@tag = '106']/mxc:subfield[@code = 'a']), 2, 1)"
/>
</xsl:when>
<xsl:otherwise>#</xsl:otherwise>
</xsl:choose>
</subfield>
<subfield code="c">
<xsl:choose>
<xsl:when
test="substring(normalize-space(//mxc:datafield[@tag = '106']/mxc:subfield[@code = 'a']), 3, 1) != ''">
<xsl:value-of
select="substring(normalize-space(//mxc:datafield[@tag = '106']/mxc:subfield[@code = 'a']), 3, 1)"
/>
</xsl:when>
<xsl:otherwise>#</xsl:otherwise>
</xsl:choose>
</subfield>
</xsl:otherwise>
</xsl:choose>
</datafield>
</xsl:template>
<xsl:template name="z3XX">
<xsl:param name="tagSource"/>
<xsl:param name="tagDest"/>
<xsl:param name="mode"/>
<xsl:param name="libelle"/>
<xsl:variable name="sza">
<xsl:choose>
<xsl:when test="$mode = 'tokenize'">
<xsl:value-of select="$libelle"/>
<xsl:value-of select="normalize-space(.)"/>
</xsl:when>
<xsl:when test="$mode = 'concat'">
<xsl:choose>
<xsl:when test="$tagSource = '301'">
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Lieu de naissance : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'b'] != ''">
<xsl:text>Lieu de décès : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'b'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:when test="$tagSource = '304'">
<xsl:text>Note d'adresse des imprimeurs-libraires. </xsl:text>
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Lieu d’activité : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'd'] != ''">
<xsl:text>Dates d’activité : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'d'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'l'] != ''">
<xsl:text>Adresse : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'l'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'e'] != ''">
<xsl:text>Enseigne : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'e'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:when test="$tagSource = '341'">
<xsl:text>Note d'activité des imprimeurs-libraires, marchands d'estampes ou relieurs. </xsl:text>
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Ville d’activité : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'b'] != ''">
<xsl:text>Dates d’activité : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'b'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'c'] != ''">
<xsl:text>Adresse : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'c'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'd'] != ''">
<xsl:text>Enseigne : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'d'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:when test="$tagSource = '342'">
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Voyages : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'b'] != ''">
<xsl:text>Date : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'b'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:when test="$tagSource = '346'">
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Distinctions : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'b'] != ''">
<xsl:text>Date : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'b'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:when test="$tagSource = '349'">
<xsl:if test="mxc:subfield[@code = 'r'] != ''">
<xsl:text>Nature de la date ou des dates : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'r'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'p'] != ''">
<xsl:text>Pays : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'p'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Ville : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'c'] != ''">
<xsl:text>Lieu : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'c'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'd'] != ''">
<xsl:text>Date ou date de début : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'d'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'e'] != ''">
<xsl:text>Date de fin : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'e'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 't'] != ''">
<xsl:text>Complément d’information : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'t'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:when test="$tagSource = '352'">
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Typologie de production : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'g'] != ''">
<xsl:text>Genre de production : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'g'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:when test="$tagSource = '360'">
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Salon : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'b'] != ''">
<!-- <xsl:text>Sous-vedette : </xsl:text>-->
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'b'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'c'] != ''">
<xsl:text>Lieu : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'c'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'd'] != ''">
<xsl:text>Numéro du salon : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'d'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'e'] != ''">
<xsl:text>Lieu du salon : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'e'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'f'] != ''">
<xsl:text>Dates du salon : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'f'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 't'] != ''">
<xsl:text>Titre : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'t'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
<xsl:when test="$tagSource = '361'">
<xsl:if test="mxc:subfield[@code = 'a'] != ''">
<xsl:text>Lieu d’exposition : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'a'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'n'] != ''">
<xsl:text>Établissement précisant le lieu : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'n'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 'f'] != ''">
<xsl:text>Année de l’exposition : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'f'"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="mxc:subfield[@code = 't'] != ''">
<xsl:text>Titre : </xsl:text>
<xsl:call-template name="concatZ3XX">
<xsl:with-param name="sousZone" select="'t'"/>
</xsl:call-template>
</xsl:if>
</xsl:when>
</xsl:choose>
</xsl:when>
</xsl:choose>
</xsl:variable>
<datafield ind1="#" ind2="#" tag="{$tagDest}">
<subfield code="a">
<xsl:value-of select="normalize-space($sza)"/>
</subfield>
</datafield>
</xsl:template>
<xsl:template name="concatZ3XX">
<xsl:param name="sousZone"/>
<xsl:for-each select="mxc:subfield[@code = $sousZone][text() != '']">
<xsl:variable name="posSsz" select="position()"/>
<xsl:variable name="posSsz_last" select="last()"/>
<xsl:for-each select="tokenize(text(), '. -')">
<xsl:value-of select="normalize-space(.)"/>
<xsl:variable name="posMorceau" select="position()"/>
<xsl:variable name="posMorceau_last" select="last()"/>
<xsl:choose>
<xsl:when test="$posMorceau != $posMorceau_last or $posSsz != $posSsz_last">
<xsl:text> / </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>. </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
<xsl:template name="zXXX">
<xsl:param name="zone"/>
<datafield ind1="#" ind2="#" tag="{$zone}">
<xsl:call-template name="zX10_zXXX">
<xsl:with-param name="zone" select="@tag"/>
</xsl:call-template>
</datafield>
</xsl:template>
<xsl:template name="zX10_zXXX">
<xsl:param name="zone"/>
<!--ERM sept 22
ajout du filtre pour ne conserver que la 1ère occurence de la sous-zone $5 => not(.[@code = '5']/preceding-sibling::mxc:subfield[@code = '5'])
pour traiter l'erreur : Sous-zone '$5g' inconnue, mal placée ou non répétable en 510 solution : la $5 n'est pas une sous-zone répétable donc on ne prend que la première-->
<xsl:for-each select="mxc:subfield[(string(@code) < 'a') and (@code != '3')]">
<xsl:sort order="ascending" select="number(@code)"> </xsl:sort>
<xsl:choose>
<xsl:when test="starts-with($zone, '5')">
<xsl:apply-templates
select=".[not(@code = '9') and not(.[@code = '5']/preceding-sibling::mxc:subfield[@code = '5'])]"
/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:for-each select="mxc:subfield[@code = '3']">
<subfield code="Q">
<xsl:value-of select="."/>
</subfield>
</xsl:for-each>
<xsl:for-each select="mxc:subfield[string(@code) >= 'a']">
<xsl:sort order="ascending" select="string(@code)"/>
<xsl:choose>
<xsl:when test="ends-with($zone, '40')">
<xsl:choose>
<xsl:when test=".[@code = 'a'] != ''">
<subfield code="a">
<xsl:value-of select="normalize-space(text())"/>
<xsl:if
test="./parent::mxc:datafield/mxc:subfield[@code = 'b'] != ''">
<xsl:value-of
select="concat(', ', ./parent::mxc:datafield/mxc:subfield[@code = 'b'])"
/>
</xsl:if>
<xsl:variable name="ssz240a" select="'c, d, e, f'"/>
<xsl:if
test="./parent::mxc:datafield/mxc:subfield[contains($ssz240a, @code)][text() != '']">
<xsl:text> (</xsl:text>
</xsl:if>
<xsl:for-each
select="./parent::mxc:datafield/mxc:subfield[contains($ssz240a, @code)][text() != '']">
<xsl:choose>
<xsl:when test="position() != 1">
<xsl:text>, </xsl:text>
</xsl:when>
<xsl:otherwise/>
</xsl:choose>
<xsl:value-of select="."/>
</xsl:for-each>
<xsl:if
test="./parent::mxc:datafield/mxc:subfield[contains($ssz240a, @code)][text() != '']">
<xsl:text>)</xsl:text>
</xsl:if>
</subfield>
</xsl:when>
<xsl:when test=".[@code = 't'] != ''">
<xsl:variable name="zoneATrier"
select="translate(.[@code = 't'], '[]', '')"/>
<subfield code="t">
<xsl:call-template name="nonTri">
<xsl:with-param name="in_ZoneATrier" select="$zoneATrier"/>
</xsl:call-template>
<xsl:variable name="ssz240t" select="'h, i, n, k, l m, q, r, s, u'"/>
<xsl:for-each
select="./parent::mxc:datafield/mxc:subfield[contains($ssz240t, @code)][text() != '']">
<xsl:text>. </xsl:text>
<xsl:value-of select="."/>
</xsl:for-each>
</subfield>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates
select=".[@code = 'x' or @code = 'y' or @code = 'z']"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when
test="(ends-with($zone, '10') or ends-with($zone, '30')) and .[@code = 'a'] != ''">
<subfield code="a">
<xsl:call-template name="nonTri">
<xsl:with-param name="in_ZoneATrier" select="normalize-space(text())"/>
</xsl:call-template>
</subfield>
</xsl:when>
<xsl:otherwise>