-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTransfo AUT marcxml IdRef en marc21 autorité.xsl
2261 lines (2249 loc) · 112 KB
/
Transfo AUT marcxml IdRef en marc21 autorité.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
<xsl:stylesheet version="1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UTF-8" indent="yes" method="xml" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<!--
Transformation from UNIMARC XML representation to MARCXML. (ERM créé 2020)
Based upon http://www.loc.gov/marc/unimarctomarc21.html
-->
<!--
ERM le 25/06/20
* déclaration XSL : ajout de l'attribut omit-xml-declaration="yes" pour ne pas écrire le prologue XML <?xml version="1.0" encoding="UTF-8"?> en sortie puisque le protocole OAI l'intègre déjà
* mise en ordre des zones via variables
* identifiants 010, 033 et 035 sous-zones $2 en lowercase
ERM le 01/07 + AJO 06/07
* 801 (+152) -> 040
ERM /AJO
* bloc des point d'accès autorisé
- 200 / 220 / 240
- 210
- 215
- 230
- AJO 250
- AJO 280
ERM / AJO
* bloc des variantes de points d'accès
- 400 / 420 / 440
- 410
- 415
- 430
- AJO 450
- AJO 480
ERM / AJO
* bloc des points d'accès en relation
- 500 / 520 / 540
- 510
- AJO 515 / 550 / 580
ERM / AJO
* bloc des points d'accès autorisés parallèles
- 700 / 720 / 740
- 710
- 715
- 730
- AJO 750
- AJO 780
AJO 20/07 : correction traitement sous-zones 3XX pour supprimer $6$7, ajouté 898
correction dans template copy-indicators
ERM 13/08/20 correction date de création de la notice
Unimarc z100 -> MARC21 z008
<xsl:variable name="dest00-05" select="substring($source100, 2, 6)"/>
corrigé en
<xsl:variable name="dest00-05" select="substring($source100, 3, 6)"/>
-->
<xsl:variable name="all-codes">abcdefghijklmnopqrstuvwxyz123456789</xsl:variable>
<xsl:variable name="smallcase">
<xsl:text>abcdefghijklmnopqrstuvwxyz</xsl:text>
</xsl:variable>
<xsl:variable name="uppercase">
<xsl:text>ABCDEFGHIJKLMNOPQRSTUVWXYZ</xsl:text>
</xsl:variable>
<xsl:key match="datafield[@tag = '200']" name="key200" use="@tag"/>
<xsl:key match="datafield[@tag = '210' and @ind1 = '0']" name="key210" use="@tag"/>
<xsl:key match="datafield[@tag = '210' and @ind1 = '1']" name="key211" use="@tag"/>
<xsl:key match="datafield[@tag = '215']" name="key215" use="@tag"/>
<xsl:key match="datafield[@tag = '216']" name="key216" use="@tag"/>
<xsl:key match="datafield[@tag = '220']" name="key220" use="@tag"/>
<xsl:key match="datafield[@tag = '230']" name="key230" use="@tag"/>
<xsl:key match="datafield[@tag = '240']" name="key240" use="@tag"/>
<xsl:key match="datafield[@tag = '250']" name="key250" use="@tag"/>
<xsl:key match="datafield[@tag = '280']" name="key280" use="@tag"/>
<xsl:template match="/">
<xsl:apply-templates select="//record"/>
</xsl:template>
<xsl:template match="record">
<!--ERM le 25/06/20-->
<!--arbre1 : variable qui contient les zones non ordonnées-->
<xsl:variable name="arbre1">
<record>
<xsl:if test="@type">
<xsl:attribute name="type">
<xsl:value-of select="@type"/>
</xsl:attribute>
</xsl:if>
<xsl:call-template name="transform-leader"/>
<xsl:variable name="z001" select="controlfield[@tag = '001']"/>
<!-- 010->024 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">010</xsl:with-param>
<xsl:with-param name="dstTag">024</xsl:with-param>
<xsl:with-param name="srcCodes">ayz2</xsl:with-param>
<xsl:with-param name="dstCodes">azz2</xsl:with-param>
<!-- pour les indicateurs (ind0 = rien, ind1 = 7), voir template copy-indicators -->
</xsl:call-template>
<!--015->024 supprimé du mapping (obsolète)-->
<!--<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">015</xsl:with-param>
<xsl:with-param name="dstTag">024</xsl:with-param>
<!-\- pour les indicateurs (ind0 = rien, ind1 = 7), voir template copy-indicators
$2 ISADN sera là de facto -\->
</xsl:call-template> -->
<!-- 033->024 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">033</xsl:with-param>
<xsl:with-param name="dstTag">024</xsl:with-param>
<xsl:with-param name="srcCodes">a2z</xsl:with-param>
<xsl:with-param name="dstCodes">02z</xsl:with-param>
<!-- , voir template copy-indicators pour : ind0 = rien, ind1 = 7 -->
</xsl:call-template>
<!-- 035->035 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">035</xsl:with-param>
<xsl:with-param name="dstTag">035</xsl:with-param>
<xsl:with-param name="srcCodes">az</xsl:with-param>
<xsl:with-param name="dstCodes">az</xsl:with-param>
</xsl:call-template>
<!--FML ajout d'une 035 générée à partir de la zone 001-->
<datafield ind1=" " ind2=" " tag="035">
<subfield code="a">
<xsl:value-of select="concat('(IDREF)', $z001)"/>
</subfield>
</datafield>
<!--FML ajout d'une variante à destination de SLSP dans le cas 035$2RERO -->
<xsl:for-each select="datafield[@tag = '035']/subfield[@code='2'][contains(., 'RERO')]">
<xsl:if test="contains(., 'RERO')">
<datafield tag="035" ind1=" " ind2=" ">
<subfield code="a">
<xsl:value-of select="concat('(RERO)', ../subfield[@code='a'])"/>
</subfield>
</datafield>
</xsl:if>
</xsl:for-each>
<!-- Bloc 1XX -->
<!-- 100->008 : OK voir transform008-->
<!-- 101->377 (précision : code de langue MARC : est-ce un souci ?)-->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">101</xsl:with-param>
<xsl:with-param name="dstTag">377</xsl:with-param>
</xsl:call-template>
<!-- 102->370 -->
<!--AJO modif 14/04/20 370 pas OK, en MARC21 en clair. Cible = 043 $c - testé OK -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">102</xsl:with-param>
<xsl:with-param name="dstTag">043</xsl:with-param>
<xsl:with-param name="srcCodes">a</xsl:with-param>
<xsl:with-param name="dstCodes">c</xsl:with-param>
<!-- il faut générer en plus un $2 ISO 3166-1 -->
<!--AJO rem: non, pas en 043, car inclus dans la définition MARC21 de $c -->
</xsl:call-template>
<!-- 103->046 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">103</xsl:with-param>
<xsl:with-param name="dstTag">046</xsl:with-param>
<xsl:with-param name="srcCodes">abcd</xsl:with-param>
<xsl:with-param name="dstCodes">fgst</xsl:with-param>
</xsl:call-template>
<!-- 120->375
mais il faut décoder en toutes lettres : a -> féminin ; b -> masculin : exemple $a féminin -->
<!--AJO rem: seulement pos. 0; pos 1 va en 008/32-->
<!-- <xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">120</xsl:with-param>
<xsl:with-param name="dstTag">375</xsl:with-param>
</xsl:call-template> -->
<!-- Conversion ajoutée à la fin du template transform-008 (variable 120 déjà définie) -->
<!-- 123->034 -->
<!-- AJO nouveau 08/07 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">123</xsl:with-param>
<xsl:with-param name="dstTag">034</xsl:with-param>
<xsl:with-param name="srcCodes">defg</xsl:with-param>
<xsl:with-param name="dstCodes">defg</xsl:with-param>
</xsl:call-template>
<!-- 152->040 voir template avec z040 car il faut combiner avec la 801 -->
<!-- 160->043 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">160</xsl:with-param>
<xsl:with-param name="dstTag">043</xsl:with-param>
</xsl:call-template>
<!-- 180 pas d'équivalent -->
<!-- Bloc des points d'accès 2XX -->
<!--
200 ->100 | 220 ->100 | 240 ->100
215 -> 151
210 @ind1=0 -> 110 ou 210 @ind1=1 -> 211
230 -> 130
250 -> 150
280 -> 155
-->
<!-- mécanisme : appel du template Z_INTER_2XX qui permet de compter les zones 2XX et les $7 [substring(text(), 5, 2) = 'ba'] afin d'orienter (template Z_PT_ACCES_XXX ) vers la bonne zone marc21 :
* 1XX pour les zones retenues : $7 [substring(text(), 5, 2) = 'ba']
* 7XX pour les "retoquées"
=> ce template permet d'alimenter les paramètres : "position" / "nb2XX" / "nbsz7_ba" utiliseés par le template Z_PT_ACCES_XXX qui construit les zones 1XX / 7XX (natives et retoquées) / 4XX
-->
<xsl:for-each
select="datafield[@tag = '200'] | datafield[@tag = '210'] | datafield[@tag = '215'] | datafield[@tag = '220'] | datafield[@tag = '230'] | datafield[@tag = '240'] | datafield[@tag = '250'] | datafield[@tag = '280']">
<xsl:call-template name="Z_INTER_2XX">
<xsl:with-param name="srcTag">
<xsl:choose>
<xsl:when test="@tag = '210' and @ind1 = '1'">
<xsl:text>211</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@tag"/>
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:for-each>
<!-- 216->150 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">216</xsl:with-param>
<xsl:with-param name="dstTag">150</xsl:with-param>
<xsl:with-param name="srcCodes">afcxyz</xsl:with-param>
<xsl:with-param name="dstCodes">aggxzy</xsl:with-param>
</xsl:call-template>
<!-- 230->130 -->
<!-- traité ci-dessus traité ci-dessus via Z_INTER_2XX-->
<!-- RIEN à propos de 231/232 ? -->
<!-- 250->150 -->
<!-- AJO 20/07: 250/450/750 : 250->150 traité ci-dessus via Z_INTER_2XX-->
<!-- 280->155 -->
<!-- AJO 20/07: 280/480/780 280->155 traité ci-dessus via Z_INTER_2XX-->
<!-- Notes 3XX -->
<!-- AJO 20/07: complété traitement sous-zones 3XX pour supprimer $6$7-->
<!-- 300->680 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">300</xsl:with-param>
<xsl:with-param name="dstTag">680</xsl:with-param>
<xsl:with-param name="srcCodes">a</xsl:with-param>
<xsl:with-param name="dstCodes">a</xsl:with-param>
</xsl:call-template>
<!-- 305->360 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">305</xsl:with-param>
<xsl:with-param name="dstTag">360</xsl:with-param>
<xsl:with-param name="srcCodes">ab</xsl:with-param>
<xsl:with-param name="dstCodes">ia</xsl:with-param>
</xsl:call-template>
<!-- 310->260 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">310</xsl:with-param>
<xsl:with-param name="dstTag">260</xsl:with-param>
<xsl:with-param name="srcCodes">ab</xsl:with-param>
<xsl:with-param name="dstCodes">ia</xsl:with-param>
</xsl:call-template>
<!-- 320->680 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">320</xsl:with-param>
<xsl:with-param name="dstTag">666</xsl:with-param>
<xsl:with-param name="srcCodes">a</xsl:with-param>
<xsl:with-param name="dstCodes">a</xsl:with-param>
</xsl:call-template>
<!-- 330->680 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">330</xsl:with-param>
<xsl:with-param name="dstTag">680</xsl:with-param>
<xsl:with-param name="srcCodes">a</xsl:with-param>
<xsl:with-param name="dstCodes">a</xsl:with-param>
</xsl:call-template>
<!-- 340->678 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">340</xsl:with-param>
<xsl:with-param name="dstTag">678</xsl:with-param>
<xsl:with-param name="srcCodes">a</xsl:with-param>
<xsl:with-param name="dstCodes">a</xsl:with-param>
</xsl:call-template>
<!-- 356->680 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">356</xsl:with-param>
<xsl:with-param name="dstTag">680</xsl:with-param>
<xsl:with-param name="srcCodes">a</xsl:with-param>
<xsl:with-param name="dstCodes">a</xsl:with-param>
</xsl:call-template>
<!-- Bloc des 4XX -->
<!-- ERM 09/07/10 : 400 / 420 / 440 => 400 conditionné au traitement de la 200 / 220 qui devient 100 pour pouvoir reprendre éventuellement, si 4XX n'a pas de $f, le 200$f pour une 400 et le 220$f pour une 420 -->
<!-- 410 -> 410 (si ind1=0 -> collectivité) ou 411 (si ind1=1 -> congrès)-->
<!-- appel du template Z_PT_ACCES_2or4or710_11 pour construire les 410 (si ind1=0 -> collectivité) ou 411 (si ind1=1 -> congrès)-->
<xsl:for-each select="datafield[@tag = '410']">
<xsl:call-template name="Z_PT_ACCES_2or4or710_11">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type">
<xsl:choose>
<xsl:when test="@ind1 = '0'">
<xsl:text>410</xsl:text>
</xsl:when>
<xsl:otherwise>411</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:for-each>
<!-- 415 -> 451 -->
<!-- appel du template Z_PT_ACCES_215_415_715 pour construire les 451-->
<xsl:for-each select="datafield[@tag = '415']">
<xsl:call-template name="Z_PT_ACCES_215_415_715">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="451"/>
</xsl:call-template>
</xsl:for-each>
<!-- 430 -> 430 -->
<!-- appel du template Z_PT_ACCES_230_430_730 pour construire les 430-->
<xsl:for-each select="datafield[@tag = '430']">
<xsl:call-template name="Z_PT_ACCES_230_430_730">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="430"/>
</xsl:call-template>
</xsl:for-each>
<!-- AJO 20/07: appel du template Z_PT_ACCES_250_450_750 pour construire les 450-->
<xsl:for-each select="datafield[@tag = '450']">
<xsl:call-template name="Z_PT_ACCES_250_450_750">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="450"/>
</xsl:call-template>
</xsl:for-each>
<!-- AJO 20/07: appel du template Z_PT_ACCES_280_480_780 pour construire les 455-->
<xsl:for-each select="datafield[@tag = '480']">
<xsl:call-template name="Z_PT_ACCES_280_480_780">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="455"/>
</xsl:call-template>
</xsl:for-each>
<!-- Bloc des 5XX -->
<!-- appel du template Z_PT_ACCES_510 -->
<xsl:for-each select="datafield[@tag = '510']">
<xsl:call-template name="Z_PT_ACCES_510">
<xsl:with-param name="srcTag" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<!-- 500 / 520 / 540 ->500 -->
<!-- appel du template Z_PT_ACCES_500_20_40 -->
<xsl:for-each
select="datafield[@tag = '500'] | datafield[@tag = '520'] | datafield[@tag = '540']">
<xsl:call-template name="Z_PT_ACCES_500_20_40">
<xsl:with-param name="srcTag" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<!-- AJO 20/07: 515/550/580 -->
<xsl:for-each
select="datafield[@tag = '515'] | datafield[@tag = '550'] | datafield[@tag = '580']">
<xsl:call-template name="Z_PT_ACCES_515_50_80">
<xsl:with-param name="srcTag" select="@tag"/>
</xsl:call-template>
</xsl:for-each>
<!-- Bloc des 6XX -->
<!-- 676->083 -->
<!-- AJO 20/07: corr. dstTag: 083 et non 082 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">676</xsl:with-param>
<xsl:with-param name="dstTag">083</xsl:with-param>
<xsl:with-param name="srcCodes">av</xsl:with-param>
<xsl:with-param name="dstCodes">a2</xsl:with-param>
</xsl:call-template>
<!-- 686->065 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">686</xsl:with-param>
<xsl:with-param name="dstTag">065</xsl:with-param>
</xsl:call-template>
<!-- Bloc des 7XX -->
<!-- 700 / 720 / 740 ->700 -->
<!-- appel du template Z_PT_ACCES_2or400_20_40 avec les variables qui permettent :
- de déterminer la zone de destination
- de construire les zones 100 / 700 (natives et retoquées) / 400
-->
<xsl:for-each
select="datafield[@tag = '700'] | datafield[@tag = '720'] | datafield[@tag = '740']">
<xsl:call-template name="Z_PT_ACCES_2or4or700_20_40">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="700"/>
</xsl:call-template>
</xsl:for-each>
<!-- 710 ->710 (si ind1=0 -> collectivité) ou 711 (si ind1=1 -> congrès)-->
<!-- appel du template Z_PT_ACCES_2or4or710_11 pour construire les 710 (si ind1=0 -> collectivité) ou 7411 (si ind1=1 -> congrès)-->
<xsl:for-each select="datafield[@tag = '710']">
<xsl:call-template name="Z_PT_ACCES_2or4or710_11">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type">
<xsl:choose>
<xsl:when test="@ind1 = '0'">
<xsl:text>710</xsl:text>
</xsl:when>
<xsl:otherwise>711</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:for-each>
<!-- 715 ->751 -->
<!-- appel du template Z_PT_ACCES_215_415_715 pour construire les 751-->
<xsl:for-each select="datafield[@tag = '715']">
<xsl:call-template name="Z_PT_ACCES_215_415_715">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="751"/>
</xsl:call-template>
</xsl:for-each>
<!-- 730 ->730 -->
<!-- appel du template Z_PT_ACCES_230_430_730 pour construire les 730-->
<xsl:for-each select="datafield[@tag = '730']">
<xsl:call-template name="Z_PT_ACCES_230_430_730">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="730"/>
</xsl:call-template>
</xsl:for-each>
<!-- 750 ->750 -->
<!-- AJO 20/07: appel du template Z_PT_ACCES_250_450_750 pour construire les 750-->
<xsl:for-each select="datafield[@tag = '750']">
<xsl:call-template name="Z_PT_ACCES_250_450_750">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="750"/>
</xsl:call-template>
</xsl:for-each>
<!-- 780 ->755 -->
<!-- AJO 20/07: appel du template Z_PT_ACCES_280_480_780 pour construire les 755-->
<xsl:for-each select="datafield[@tag = '780']">
<xsl:call-template name="Z_PT_ACCES_280_480_780">
<xsl:with-param name="srcTag" select="@tag"/>
<xsl:with-param name="type" select="755"/>
</xsl:call-template>
</xsl:for-each>
<!-- Bloc des 8XX -->
<!-- 801->040 : template particulier -->
<!--ERM le 01/07 + AJO (06.07)
adjonctions pour un fonctionnement correcte de la transformation de 152 $b + 801 (plusieurs zones) en 040 (une seule zone)-->
<!--AJO 06/07: ajouté @ind2=3, sinon pas de 040 dans ce cas -->
<!--AJO 08/07: ajouté @ind2=#, sinon pas de 040 dans ce cas (utilisé à la place de 0)-->
<xsl:choose>
<xsl:when test="datafield[@tag = '801'][@ind2 = '0']">
<xsl:call-template name="z040">
<xsl:with-param name="base040" select="'0'"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="datafield[@tag = '801'][@ind2 = '#']">
<xsl:call-template name="z040">
<xsl:with-param name="base040" select="'#'"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="datafield[@tag = '801'][@ind2 = '1']">
<xsl:call-template name="z040">
<xsl:with-param name="base040" select="'1'"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="datafield[@tag = '801'][@ind2 = '2']">
<xsl:call-template name="z040">
<xsl:with-param name="base040" select="'2'"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="datafield[@tag = '801'][@ind2 = '3']">
<xsl:call-template name="z040">
<xsl:with-param name="base040" select="'3'"/>
</xsl:call-template>
</xsl:when>
</xsl:choose>
<!-- 810->670 -->
<!--AJO 21/07: ajouté sous-zones a et b pour supprimer 6 et 7 -->
<!-- pas dans le format IdRef, mais apparemment utilisé -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">810</xsl:with-param>
<xsl:with-param name="dstTag">670</xsl:with-param>
<xsl:with-param name="srcCodes">ab</xsl:with-param>
<xsl:with-param name="dstCodes">ab</xsl:with-param>
</xsl:call-template>
<!-- 815->675 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">815</xsl:with-param>
<xsl:with-param name="dstTag">675</xsl:with-param>
</xsl:call-template>
<!-- 820->667 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">820</xsl:with-param>
<xsl:with-param name="dstTag">667</xsl:with-param>
</xsl:call-template>
<!-- 822-> 680 : template particulier
reprendre seulement $a + $2 à mettre en 680 $a (remplacer le $2 par espace tiret espace)
822 12 $a Fantômes $2 RVMLaval $d 2013-10-22 -> 680 _ _ $a Fantômes - RVMLaval
-->
<xsl:call-template name="z680">
<xsl:with-param name="srcTag">822</xsl:with-param>
<xsl:with-param name="dstTag">680</xsl:with-param>
</xsl:call-template>
<!-- 825->681 -->
<!-- 825 AJO 19/06/20 utilisation du champ prévu dans MARC21: 681 $i détails voir concordance principale-->
<!--AJO modif 19/06/20 : la zone correcte 681, également utilisée pour VIAF-->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">825</xsl:with-param>
<xsl:with-param name="dstTag">681</xsl:with-param>
<xsl:with-param name="srcCodes">a</xsl:with-param>
<xsl:with-param name="dstCodes">i</xsl:with-param>
</xsl:call-template>
<!-- 830->667 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">830</xsl:with-param>
<xsl:with-param name="dstTag">667</xsl:with-param>
</xsl:call-template>
<!-- 835->682 -->
<!-- AJO 20/07: complété traitement sous-zones 835 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">835</xsl:with-param>
<xsl:with-param name="dstTag">682</xsl:with-param>
<xsl:with-param name="srcCodes">ab3</xsl:with-param>
<xsl:with-param name="dstCodes">ia0</xsl:with-param>
</xsl:call-template>
<!-- 836->682 -->
<!-- AJO 20/07: complété traitement sous-zones 836 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">836</xsl:with-param>
<xsl:with-param name="dstTag">688</xsl:with-param>
<xsl:with-param name="srcCodes">b</xsl:with-param>
<xsl:with-param name="dstCodes">a</xsl:with-param>
</xsl:call-template>
<!-- 839->682 : cette zone n'existe pas en unimarcxml ; elle devient une 035$appn fusionné $9sudoc-->
<!-- 856->856 -->
<!-- AJO 20/07: complété traitement sous-zones 856 -->
<xsl:call-template name="transform-datafield">
<xsl:with-param name="srcTag">856</xsl:with-param>
<xsl:with-param name="dstTag">856</xsl:with-param>
<xsl:with-param name="srcCodes">ue</xsl:with-param>
<xsl:with-param name="dstCodes">uz</xsl:with-param>
</xsl:call-template>
<!-- AJO 20/07: ajouté-->
<xsl:call-template name="z898">
<xsl:with-param name="srcTag">898</xsl:with-param>
<xsl:with-param name="dstTag">667</xsl:with-param>
</xsl:call-template>
<!-- nos 9XX : les voudriez-vous ? AJO: NON -->
</record>
</xsl:variable>
<!--ERM le 25/06/20-->
<!-- arbre2 : variable qui contient la copie ordonnée des zones de arbre1-->
<xsl:variable name="arbre2">
<record>
<xsl:for-each select="common:node-set($arbre1)/record/*"
xmlns:common="http://exslt.org/common">
<xsl:sort select="@tag"/>
<xsl:copy-of select="."/>
</xsl:for-each>
</record>
</xsl:variable>
<!--ERM le 25/06/20 -->
<!-- permet d'écrire le résultat-->
<xsl:copy-of select="$arbre2"/>
</xsl:template>
<xsl:template name="transform-leader">
<xsl:variable name="leader" select="leader"/>
<!--FML 14/01/20 Peut-il y avoir une valeur o ? -->
<xsl:variable name="leader05" select="translate(substring($leader, 06, 1), 'o', 'c')"/>
<!--encodage du vide  -->
<xsl:variable name="leader06" select="translate(substring($leader, 07, 1), 'xz', 'z ')"/>
<xsl:variable name="leader07-08" select="substring($leader, 08, 2)"/>
<xsl:variable name="leader09_075" select="substring($leader, 10, 1)"/>
<xsl:variable name="leader09" select="'a'"/>
<xsl:variable name="leader10-16" select="substring($leader, 11, 7)"/>
<!--AJO modif 14/04/20 translation 2 valeurs - testé - OK -->
<xsl:variable name="leader17" select="translate(substring($leader, 18, 1), '#3', 'no')"/>
<xsl:variable name="leader18" select="'c'"/>
<xsl:variable name="leader19-23" select="' 4500'"/>
<leader>
<xsl:value-of
select="concat(' ', $leader05, $leader06, $leader07-08, $leader09, $leader10-16, $leader17, $leader18, $leader19-23)"
/>
</leader>
<xsl:call-template name="copy-control">
<xsl:with-param name="tag">001</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="copy-control">
<xsl:with-param name="tag">005</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="transform-008"/>
<!-- Création de la zone 075 à partir de la position 9 du leader -->
<datafield ind1=" " ind2=" " tag="075">
<subfield code="a">
<xsl:call-template name="typeAut">
<xsl:with-param name="code" select="$leader09_075"/>
</xsl:call-template>
</subfield>
<subfield code="b">
<xsl:value-of select="$leader09_075"/>
</subfield>
<subfield code="2">unimarc</subfield>
</datafield>
</xsl:template>
<xsl:template name="copy-control">
<xsl:param name="tag"/>
<xsl:for-each select="controlfield[@tag = $tag]">
<controlfield tag="{$tag}">
<xsl:value-of select="substring(text(), 1, 16)"/>
</controlfield>
</xsl:for-each>
</xsl:template>
<xsl:template name="transform-008">
<xsl:variable name="source100" select="datafield[@tag = '100']/subfield[@code = 'a']"/>
<xsl:variable name="source106" select="datafield[@tag = '106']"/>
<xsl:variable name="source120" select="datafield[@tag = '120']/subfield[@code = 'a']"/>
<xsl:variable name="source154" select="datafield[@tag = '154']/subfield[@code = 'a']"/>
<!--ERM 13/08/20 date création de la notice
<xsl:variable name="dest00-05" select="substring($source100, 2, 6)"/>-->
<xsl:variable name="dest00-05" select="substring($source100, 3, 6)"/>
<xsl:variable name="dest06">
<xsl:choose>
<xsl:when test="$source106/subfield[@code = 'c'] != ''">
<xsl:call-template name="z106c">
<xsl:with-param name="code" select="$source106/subfield[@code = 'c']"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>n</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!--AJO modif 14/04/20 : | (pas de blanc dans cette pos.) -->
<xsl:variable name="dest07" select="'|'"> </xsl:variable>
<xsl:variable name="dest08">
<xsl:choose>
<xsl:when test="substring($source100, 10, 3) = 'fre'">
<xsl:text>f</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>|</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="dest09">
<xsl:choose>
<xsl:when test="$source106/subfield[@code = 'b'] != ''">
<xsl:call-template name="z106b">
<xsl:with-param name="code" select="$source106/subfield[@code = 'b']"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!--AJO modif 14/04/20 : ||||| (pas de blanc dans cette pos.) -->
<!--AJO modif 19/06/20 : zz||| (valeurs par défaut pour règles, pos. 10-11: zz) -->
<xsl:variable name="dest10-14" select="'zz|||'"> </xsl:variable>
<xsl:variable name="dest15">
<xsl:choose>
<xsl:when test="$source106/subfield[@code = 'a'] != ''">
<xsl:call-template name="z106a">
<xsl:with-param name="code" select="$source106/subfield[@code = 'a']"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!--AJO modif 14/04/20 dest16-31: 16 pos., pas 15; pos. 16, 17, 28, 29, 31: | (pas de blanc dans ces pos.)-->
<xsl:variable name="dest16-31">
<xsl:text>|| || |</xsl:text>
</xsl:variable>
<xsl:variable name="dest32">
<xsl:choose>
<!--AJO modif 14/04/20 diff/undiff person name: 120 $a pos. 1 (et non 0) -->
<xsl:when test="$source120 != ''">
<xsl:value-of select="substring($source120, 2, 1)"/>
</xsl:when>
<!--AJO modif 14/04/20 otherwise: | (pas de blanc dans cette pos.) -->
<xsl:otherwise>
<xsl:text>|</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!--AJO modif 14/04/20 (ajout): Status of authorized access point / Level of establishment-->
<xsl:variable name="dest33">
<xsl:choose>
<xsl:when test="substring($source100, 9, 1) = 'x'">
<xsl:text>n</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="substring($source100, 9, 1)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!--AJO modif 14/04/20 (ajout): fin de la zone 008 (pos. 34-39, pos. par défaut)-->
<xsl:variable name="dest34-39">
<xsl:text> d</xsl:text>
</xsl:variable>
<controlfield tag="008">
<xsl:value-of
select="concat($dest00-05, $dest06, $dest07, $dest08, $dest09, $dest10-14, $dest15, $dest16-31, $dest32, $dest33, $dest34-39)"
/>
</controlfield>
<!-- Création de la zone 375 à partir de la position 0 de 120 -->
<!-- La zone n'est crée qu'en présence des valeurs a, b ou c -->
<!--AJO modif 14/04/20 (ajout)-->
<xsl:if test="$source120 != ''">
<xsl:variable name="dest375">
<xsl:choose>
<xsl:when test="substring($source120, 1, 1) = 'a'">
<xsl:text>féminin</xsl:text>
</xsl:when>
<xsl:when test="substring($source120, 1, 1) = 'b'">
<xsl:text>masculin</xsl:text>
</xsl:when>
<xsl:when test="substring($source120, 1, 1) = 'c'">
<xsl:text>transgenre</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>xxx</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="$dest375 != 'xxx'">
<datafield ind1=" " ind2=" " tag="375">
<subfield code="a">
<xsl:value-of select="$dest375"/>
</subfield>
<subfield code="2">unimarc</subfield>
</datafield>
</xsl:if>
</xsl:if>
</xsl:template>
<xsl:template name="transform-datafield">
<xsl:param name="srcTag"/>
<xsl:param name="dstTag" select="@srcTag"/>
<xsl:param name="srcCodes" select="$all-codes"/>
<xsl:param name="dstCodes" select="$srcCodes"/>
<xsl:if test="datafield[@tag = $srcTag]/subfield[contains($srcCodes, @code)]">
<xsl:for-each select="datafield[@tag = $srcTag]">
<datafield tag="{$dstTag}">
<!--ERM le 25/06/20 -->
<!-- ajout du paramètre dstTag pour faire des traitements spécifiques sur les indicateurs de certaines zones-->
<xsl:call-template name="copy-indicators">
<xsl:with-param name="dstTag" select="$dstTag"/>
</xsl:call-template>
<xsl:call-template name="transform-subfields">
<xsl:with-param name="srcTag" select="$srcTag"/>
<xsl:with-param name="srcCodes" select="$srcCodes"/>
<xsl:with-param name="dstCodes" select="$dstCodes"/>
</xsl:call-template>
</datafield>
</xsl:for-each>
</xsl:if>
</xsl:template>
<!--ERM le 09/07/20
révision du bloc des points d'accès 2XX
règle utilisée pour documenter les cardinalités dans les commentaires :
? => élément facultatif et unique
* => élément facultatif et répétable
+ => élément obligatoire et répétable
[] séquence
[] ? => séquence facultative et unique
[] * => séquence facultative et répétable
[] + => séquence obligatoire et répétable
-->
<!-- Quelle 200 ->100 | 220 ->100 | 240 ->100 | 215 -> 151 |
ERM : 09/07/20 :
mécanisme :
Ce template est un template intermédiaire qui permet de compter les zones 2XX = variable nb2XX (en les regroupant par @tag) et les $7 [substring(text(), 5, 2) = 'ba'] = variable nbsz7_ba
afin que le template Z_PT_ACCES_XXX oriente ces 2XX vers la bonne zone marc21 :
* 1XX pour les 2XX retenues : $7 [substring(text(), 5, 2) = 'ba']
* 7XX pour les "retoquées"
=> ce template permet d'alimenter les paramètres : "position" / "nb2XX" / "nbsz7_ba" utilisés par le template Z_PT_ACCES_XXX.
-->
<xsl:template name="Z_INTER_2XX">
<xsl:param name="srcTag"/>
<xsl:variable name="key" select="concat('key', $srcTag)"/>
<xsl:for-each select="self::node()[count(. | key($key, @tag)[1]) = 1]">
<xsl:variable name="group2XX" select="key($key, @tag)"/>
<xsl:variable name="nb2XX" select="count($group2XX)"/>
<xsl:variable name="nbsz7_ba"
select="count($group2XX/subfield[@code = '7'][substring(text(), 5, 2) = 'ba'])"/>
<!-- appel des templates en fonction de $srcTag
* Z_PT_ACCES_2or4or700_20_40 avec les variables qui permettent :
- de déterminer la zone de destination
- de construire les zones 100 / 700 (natives et retoquées) / 400
* Z_PT_ACCES_2or4or710_11 avec les variables qui permettent :
- de déterminer la zone de destination
- de construire les zones 110 ou 111 / 710 ou 711 (natives et retoquées) / 410 ou 411
* Z_PT_ACCES_215_415_715
- de déterminer la zone de destination
- de construire les zones 151 / 751 (natives et retoquées) / 451
* Z_PT_ACCES_230_430_730
- de déterminer la zone de destination
- de construire les zones 130 / 730 (natives et retoquées) / 430
* Z_PT_ACCES_250_450_750
- de déterminer la zone de destination
-->
<xsl:for-each select="$group2XX/.">
<xsl:choose>
<xsl:when test="$srcTag = '200' or $srcTag = '220' or $srcTag = '240'">
<xsl:call-template name="Z_PT_ACCES_2or4or700_20_40">
<xsl:with-param name="srcTag" select="$srcTag"/>
<xsl:with-param name="position" select="position()"/>
<xsl:with-param name="nb2XX" select="$nb2XX"/>
<xsl:with-param name="nbsz7_ba" select="$nbsz7_ba"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="$srcTag = '210' or $srcTag = '211'">
<xsl:call-template name="Z_PT_ACCES_2or4or710_11">
<xsl:with-param name="srcTag" select="'210'"/>
<xsl:with-param name="position" select="position()"/>
<xsl:with-param name="nb2XX" select="$nb2XX"/>
<xsl:with-param name="nbsz7_ba" select="$nbsz7_ba"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="$srcTag = '215'">
<xsl:call-template name="Z_PT_ACCES_215_415_715">
<xsl:with-param name="srcTag" select="$srcTag"/>
<xsl:with-param name="position" select="position()"/>
<xsl:with-param name="nb2XX" select="$nb2XX"/>
<xsl:with-param name="nbsz7_ba" select="$nbsz7_ba"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="$srcTag = '230'">
<xsl:call-template name="Z_PT_ACCES_230_430_730">
<xsl:with-param name="srcTag" select="$srcTag"/>
<xsl:with-param name="position" select="position()"/>
<xsl:with-param name="nb2XX" select="$nb2XX"/>
<xsl:with-param name="nbsz7_ba" select="$nbsz7_ba"/>
</xsl:call-template>
</xsl:when>
<!-- AJO 20/07: 250/450/750 -->
<xsl:when test="$srcTag = '250'">
<xsl:call-template name="Z_PT_ACCES_250_450_750">
<xsl:with-param name="srcTag" select="$srcTag"/>
<xsl:with-param name="position" select="position()"/>
<xsl:with-param name="nb2XX" select="$nb2XX"/>
<xsl:with-param name="nbsz7_ba" select="$nbsz7_ba"/>
</xsl:call-template>
</xsl:when>
<!-- AJO 20/07: 280/480/780 -->
<xsl:when test="$srcTag = '280'">
<xsl:call-template name="Z_PT_ACCES_280_480_780">
<xsl:with-param name="srcTag" select="$srcTag"/>
<xsl:with-param name="position" select="position()"/>
<xsl:with-param name="nb2XX" select="$nb2XX"/>
<xsl:with-param name="nbsz7_ba" select="$nbsz7_ba"/>
</xsl:call-template>
</xsl:when>
</xsl:choose>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
<xsl:template name="Z_PT_ACCES_2or4or700_20_40">
<xsl:param name="srcTag"/>
<xsl:param name="type"/>
<xsl:param name="position"/>
<xsl:param name="nb2XX"/>
<xsl:param name="nbsz7_ba"/>
<xsl:param name="date_szf"/>
<xsl:param name="z2XX_liee"/>
<xsl:variable name="ind1" select="@ind1"/>
<xsl:variable name="ind2" select="@ind2"/>
<xsl:variable name="sz7_pos5-6" select="substring(subfield[@code = '7'], 5, 2)"/>
<!-- ERM : algo qui permet de déterminer pour les 2XX / 7XX / 4XX quelle est la zone de destination marc21
* quelle 2XX > 100 ?
* quelle 2XX > 700 = les 2XX retoquées
* 7XX natives > 700
* 4XX > 400
algo quelle 2XX > 100 ?
- si $nb2XX = 1 -> 100
- si $nb2XX > 1
alors test sur $7 si $nbsz7_ba = ba0 = 0 -> prendre la 1ère 2XX (bien que $7 != ba) -> 100
si $nbsz7_ba = ba0 = 1 -> prendre cette 2XX -> 100
si $nbsz7_ba = ba0 > 1 -> prendre la 1ère 2XX dont $7 = ba-> 100
-->
<xsl:variable name="dstTag">
<xsl:choose>
<!-- cas des 7XX natives et 4XX (en auto-rappel) -->
<xsl:when test="$type != ''">
<xsl:value-of select="$type"/>
</xsl:when>
<!-- pour déterminer quelle 2XX ira en 100-->
<xsl:when test="$nb2XX = 1">100</xsl:when>
<xsl:when test="$nb2XX > 1">
<xsl:choose>
<xsl:when test="$nbsz7_ba = 0">
<xsl:choose>
<xsl:when test="position() = 1">100</xsl:when>
<xsl:otherwise>700</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="$nbsz7_ba = 1">
<xsl:choose>
<xsl:when test="$sz7_pos5-6 = 'ba'">100</xsl:when>
<xsl:otherwise>700</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when
test="$sz7_pos5-6 = 'ba' and not(preceding-sibling::datafield[@tag = $srcTag]/subfield[@code = '7'][substring(text(), 5, 2) = 'ba'])"
>100</xsl:when>
<xsl:otherwise>700</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
</xsl:choose>
</xsl:variable>
<!-- construction de ind1 via une variable $destInd1-->
<xsl:variable name="destInd1">
<xsl:choose>
<!-- ind1 <= 200 ind2 / 700 ind2 / 400 ind2-->
<xsl:when test="$srcTag = '200' or $srcTag = '700' or $srcTag = '400'">
<xsl:value-of select="$ind2"/>
</xsl:when>
<!-- ind1 <= 220 / 720 / 420 -->
<xsl:when test="$srcTag = '220' or $srcTag = '720' or $srcTag = '420'">
<!--100 ind1= 3 / 700 ind1= 3 -->
<xsl:text>3</xsl:text>
</xsl:when>
<!-- ind1 <= 240 / 740 / 440-->
<xsl:when test="$srcTag = '240' or $srcTag = '740' or $srcTag = '440'">
<!--100 ind1= 1 / 700 ind1= 1 -->
<xsl:text>1</xsl:text>
</xsl:when>
</xsl:choose>
</xsl:variable>
<!-- construction de ind2 via une variable $destInd2-->
<xsl:variable name="destInd2">
<xsl:choose>
<!-- ind2 <= 200 ind1 / 700 ind1 / 400 ind1-->
<xsl:when test="$srcTag = '200' or $srcTag = '700' or $srcTag = '400'">
<xsl:value-of select="$ind1"/>
</xsl:when>
<!-- ind2 <= 220 / 720 / 420 -->
<xsl:when test="$srcTag = '220' or $srcTag = '720' or $srcTag = '420'">
<xsl:choose>
<xsl:when test="$dstTag = '100' or $dstTag = '400'">
<!--100 ind2= ' ' / 400 ind2= ' '-->
<xsl:text> </xsl:text>
</xsl:when>
<xsl:otherwise>
<!--700 ind2 = 4 -->
<xsl:text>4</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<!-- ind2 <= 240 / 740 / 440-->
<xsl:when test="$srcTag = '240' or $srcTag = '740' or $srcTag = '440'">
<!--100 ind2= ' ' / 700 ind2= ' ' / 400 ind2= ' ' -->
<xsl:text> </xsl:text>
</xsl:when>
</xsl:choose>
</xsl:variable>
<!-- construction de la sous-zone $a via une variable $sza-->
<datafield ind1="{$destInd1}" ind2="{$destInd2}" tag="{$dstTag}">
<!-- $a -->
<xsl:if test="subfield[@code = 'a'] != ''">
<subfield code="a">
<!--template z00z20z40_SZ_a pour construire la sous-zone $a dans les zones Z00 / Z20 / Z40 -->
<xsl:call-template name="z00z20z40_SZ_a">
<xsl:with-param name="srcTag" select="$srcTag"/>
</xsl:call-template>
</subfield>
</xsl:if>
<!-- $b <= 200$d / 700$d / 400$d -->
<xsl:if
test="($srcTag = '200' or $srcTag = '700' or $srcTag = '400') and subfield[@code = 'd'] != ''">
<subfield code="b">
<xsl:value-of select="subfield[@code = 'd']"/>
</subfield>
</xsl:if>
<!-- $c -->
<!--template z00z20z40_SZ_c pour construire la sous-zone $c dans les zones Z00 / Z20 / Z40 -->
<xsl:call-template name="z00z20z40_SZ_c">
<xsl:with-param name="srcTag" select="$srcTag"/>
</xsl:call-template>
<!-- $d-->
<!-- $d <= 200$f / 700$f / 400$f / 220$f / 720$f / 420$f -->
<xsl:choose>
<!-- quand $f existe-->
<xsl:when
test="($srcTag = '200' or $srcTag = '700' or $srcTag = '400' or $srcTag = '220' or $srcTag = '720' or $srcTag = '420') and subfield[@code = 'f']">
<subfield code="d">
<xsl:value-of select="subfield[@code = 'f']"/>
</subfield>
</xsl:when>
<!-- et pour 400 et 420 si pas de $f on prend, via la variable $date_szf passée en paramètre, la valeur :
du 200$f (pour une 400) ie z2XX_liee='200'
du 220$f (pour une 420) ie z2XX_liee='220'-->
<xsl:when
test="$srcTag = '400' and not(subfield[@code = 'f']) and $z2XX_liee = '200' and $date_szf != ''">
<subfield code="d">
<xsl:value-of select="$date_szf"/>
</subfield>
</xsl:when>
<xsl:when
test="$srcTag = '420' and not(subfield[@code = 'f']) and $z2XX_liee = '220' and $date_szf != ''">
<subfield code="d">
<xsl:value-of select="$date_szf"/>
</subfield>
</xsl:when>
</xsl:choose>
<!-- $d <= segment entre ( et ) ou entre ( et ; de 240$a / 740$a / 440$a-->
<xsl:if
test="($srcTag = '240' or $srcTag = '740' or $srcTag = '440') and contains(subfield[@code = 'a'], '(')">
<subfield code="d">
<xsl:choose>
<xsl:when test="contains(subfield[@code = 'a'], ';')">
<xsl:value-of
select="normalize-space(substring-before(substring-after(subfield[@code = 'a'], '('), ';'))"
/>