-
Notifications
You must be signed in to change notification settings - Fork 0
/
odd2odd.xsl
2338 lines (2233 loc) · 99.7 KB
/
odd2odd.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:stylesheet
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:teix="http://www.tei-c.org/ns/Examples"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="3.0"
exclude-result-prefixes="#all">
<doc xmlns="http://www.oxygenxml.com/ns/doc/xsl" scope="stylesheet" type="stylesheet">
<desc>
<p> TEI stylesheet for merging TEI ODD specification with source to
make a new source document. </p>
<p>This software is dual-licensed:
1. Distributed under a Creative Commons Attribution-ShareAlike 3.0
Unported License http://creativecommons.org/licenses/by-sa/3.0/
2. http://www.opensource.org/licenses/BSD-2-Clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
This software is provided by the copyright holders and contributors
"as is" and any express or implied warranties, including, but not
limited to, the implied warranties of merchantability and fitness for
a particular purpose are disclaimed. In no event shall the copyright
holder or contributors be liable for any direct, indirect, incidental,
special, exemplary, or consequential damages (including, but not
limited to, procurement of substitute goods or services; loss of use,
data, or profits; or business interruption) however caused and on any
theory of liability, whether in contract, strict liability, or tort
(including negligence or otherwise) arising in any way out of the use
of this software, even if advised of the possibility of such damage.
</p>
<p>Author: See AUTHORS</p>
<p>Copyright: 2013, TEI Consortium</p>
</desc>
</doc>
<xsl:output encoding="utf-8" indent="no"/>
<xsl:param name="autoGlobal">false</xsl:param>
<xsl:param name="configDirectory"/>
<xsl:param name="currentDirectory"/>
<xsl:param name="defaultSource"/>
<xsl:param name="defaultTEIServer">https://www.tei-c.org/Vault/P5/</xsl:param>
<xsl:param name="defaultTEIVersion">current</xsl:param>
<xsl:param name="doclang"/>
<xsl:param name="selectedSchema"/>
<xsl:param name="stripped">false</xsl:param>
<xsl:param name="useVersionFromTEI">true</xsl:param>
<xsl:param name="verbose">false</xsl:param>
<!-- following param, added 2016-06-06 by Syd Bauman for use by TEI
in Libraries Best Practices Guidelines. If set to 'true' then
all <exmplum> elements from TEI source or summarily dropped,
whereas <exemplum> elements in ODD customization file are
copied through. -->
<xsl:param name="suppressTEIexamples">false</xsl:param>
<!-- 2022-02-15: values of constraintSpec/@ident are unique (see TEI issue 2223) thus constraintSpec keys
can just contain the value of @ident-->
<xsl:key name="odd2odd-CHANGEATT" match="tei:attDef[@mode eq 'change']" use="concat(../../@ident,'_',@ident)"/>
<xsl:key name="odd2odd-CHANGECONSTRAINT" match="tei:constraintSpec[@mode eq 'change']" use="@ident"/>
<xsl:key name="odd2odd-CLASS_MEMBERED" use="tei:classes/tei:memberOf/@key" match="tei:classSpec"/>
<xsl:key name="odd2odd-DELETEATT" match="tei:attDef[@mode eq 'delete']" use="concat(ancestor::tei:classSpec/@ident,'_',@ident)"/>
<xsl:key name="odd2odd-DELETEATT" match="tei:attDef[@mode eq 'delete']" use="concat(ancestor::tei:elementSpec/@ident,'_',@ident)"/>
<xsl:key name="odd2odd-DELETECONSTRAINT" match="tei:constraintSpec[@mode eq 'delete']" use="@ident"/>
<xsl:key name="odd2odd-ELEMENT_MEMBERED" use="tei:classes/tei:memberOf/@key" match="tei:elementSpec"/>
<xsl:key name="odd2odd-IDENTS" match="tei:dataSpec" use="@ident"/>
<xsl:key name="odd2odd-IDENTS" match="tei:macroSpec" use="@ident"/>
<xsl:key name="odd2odd-IDENTS" match="tei:classSpec" use="@ident"/>
<xsl:key name="odd2odd-IDENTS" match="tei:elementSpec" use="@ident"/>
<xsl:key name="odd2odd-MACROS" use="@ident" match="tei:macroSpec"/>
<xsl:key name="odd2odd-MEMBEROFADD" match="tei:memberOf[@mode eq 'add' or not (@mode)]" use="concat(../../@ident,@key)"/>
<xsl:key name="odd2odd-MEMBEROFDELETE" match="tei:memberOf[@mode eq 'delete']" use="concat(../../@ident,@key)"/>
<xsl:key name="odd2odd-MODULES" match="tei:moduleRef" use="@key"/>
<xsl:key name="odd2odd-MODULE_MEMBERS_ELEMENT" match="tei:elementSpec" use="@module"/>
<xsl:key name="odd2odd-MODULE_MEMBERS_NONELEMENT" match="tei:dataSpec" use="@module"/>
<xsl:key name="odd2odd-MODULE_MEMBERS_NONELEMENT" match="tei:macroSpec" use="@module"/>
<xsl:key name="odd2odd-MODULE_MEMBERS_NONELEMENT" match="tei:classSpec" use="@module"/>
<xsl:key name="odd2odd-ATTREFED" use="substring-before(@name,'.attribute.')" match="tei:attRef"/>
<xsl:key name="odd2odd-REFED" use="@name" match="rng:ref[ancestor::tei:elementSpec]"/>
<xsl:key name="odd2odd-REFED" use="@name" match="rng:ref[ancestor::tei:macroSpec and not(@name=ancestor::tei:macroSpec/@ident)]"/>
<xsl:key name="odd2odd-REFED" use="@name" match="rng:ref[ancestor::tei:datatype]"/>
<xsl:key name="odd2odd-REFED" use="@class" match="tei:attRef"/>
<xsl:key name="odd2odd-REFED" use="substring-before(@name,'_')" match="rng:ref[contains(@name,'_')]"/>
<xsl:key name="odd2odd-REFED" use="@key" match="tei:dataRef"/>
<xsl:key name="odd2odd-REFED" use="@key" match="tei:macroRef"/>
<xsl:key name="odd2odd-REFED" use="@key" match="tei:classRef"/>
<xsl:key name="odd2odd-REFED" use="@key" match="tei:elementRef"/>
<xsl:key name="odd2odd-REFOBJECTS" use="@key" match="tei:schemaSpec/tei:macroRef[not(ancestor::tei:content)]"/>
<xsl:key name="odd2odd-REFOBJECTS" use="@key" match="tei:schemaSpec/tei:classRef[not(ancestor::tei:content)]"/>
<xsl:key name="odd2odd-REFOBJECTS" use="@key" match="tei:schemaSpec/tei:elementRef[not(ancestor::tei:content)]"/>
<xsl:key name="odd2odd-REPLACECONSTRAINT" match="tei:constraintSpec[@mode eq 'replace']" use="@ident"/>
<xsl:key name="odd2odd-SCHEMASPECS" match="tei:schemaSpec" use="@ident"/>
<xsl:key match="tei:moduleSpec" name="odd2odd-MODULES" use="@ident"/>
<!-- all of these use a combination of @ident _and_ @ns (where
present), in case of duplication of names across schemes -->
<xsl:key match="tei:schemaSpec" name="LISTSCHEMASPECS" use="1"/>
<xsl:variable name="whichSchemaSpec">
<xsl:choose>
<xsl:when test="not($selectedSchema='')">
<xsl:value-of select="$selectedSchema"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="key('LISTSCHEMASPECS',1)[1]/@ident"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:key name="odd2odd-CHANGE" match="tei:classSpec[@mode eq 'change'][ancestor::tei:schemaSpec[@ident=$whichSchemaSpec]]" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-CHANGE" match="tei:dataSpec[@mode eq 'change'][ancestor::tei:schemaSpec[@ident=$whichSchemaSpec]]" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-CHANGE" match="tei:elementSpec[@mode eq 'change'][ancestor::tei:schemaSpec[@ident=$whichSchemaSpec]]" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-CHANGE" match="tei:macroSpec[@mode eq 'change'][ancestor::tei:schemaSpec[@ident=$whichSchemaSpec]]" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-DELETE" match="tei:classSpec[@mode eq 'delete']" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-DELETE" match="tei:macroSpec[@mode eq 'delete']" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-DELETE" match="tei:dataSpec[@mode eq 'delete']" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-DELETE" match="tei:elementSpec[@mode eq 'delete']" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-REPLACE" match="tei:classSpec[@mode eq 'replace']" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-REPLACE" match="tei:dataSpec[@mode eq 'replace']" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-REPLACE" match="tei:elementSpec[@mode eq 'replace']" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-REPLACE" match="tei:macroSpec[@mode eq 'replace']" use="tei:uniqueName(.)"/>
<xsl:key name="odd2odd-REPLACEATT" match="tei:attDef[@mode eq 'replace']" use="concat(../../@ident,'_',@ident)"/>
<xsl:variable name="DEFAULTSOURCE">
<xsl:choose>
<xsl:when test="$defaultSource != ''">
<xsl:choose>
<xsl:when test="starts-with($defaultSource, '"') and ends-with($defaultSource, '"')">
<xsl:value-of select="substring($defaultSource, 2, string-length($defaultSource)-2)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$defaultSource"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="$configDirectory != ''">
<xsl:value-of select="$configDirectory"/>
<xsl:text>odd/p5subset.xml</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$defaultTEIServer"/>
<xsl:value-of select="$defaultTEIVersion"/>
<xsl:text>/xml/tei/odd/p5subset.xml</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- NOTE on functions added 2016-12-02 by Syd: -->
<!-- Many, if not most, of the functions below duplicate in name -->
<!-- functions that are in teiodds.xsl. odd2relax, odd2dtd, odd2html, -->
<!-- and even odd2json & odd2lite import that file. But this one -->
<!-- does not. I do not know if the functions are slightly different, -->
<!-- or if there is some other reason this file does not import -->
<!-- teiodds.xsl. Someday I hope to test this out and do the right -->
<!-- thing (either import that file so there is only 1 definition -->
<!-- of each function, or add documentation explaining why not and -->
<!-- perhaps re-name the functions so the difference is clear). But -->
<!-- for now, since I'm in a rush, I'm just following the lead of -->
<!-- what's here already, and copying my new function from teiodds to -->
<!-- here. -->
<xsl:function name="tei:includeMember" as="xs:boolean">
<xsl:param name="ident" as="xs:string"/>
<xsl:param name="exc" />
<xsl:param name="inc" />
<xsl:choose>
<xsl:when test="not($exc) and not($inc)">true</xsl:when>
<xsl:when test="$inc and $ident cast as xs:string = tokenize($inc, ' ')">true</xsl:when>
<xsl:when test="$inc">false</xsl:when>
<xsl:when test="$exc and $ident cast as xs:string = tokenize($exc, ' ')">false</xsl:when>
<xsl:otherwise>true</xsl:otherwise>
</xsl:choose>
</xsl:function>
<xsl:function name="tei:checkExclude" as="xs:boolean">
<xsl:param name="ident" as="xs:string"/>
<xsl:param name="exc" />
<xsl:choose>
<xsl:when test="not($exc)">true</xsl:when>
<xsl:when test="$exc and $ident cast as xs:string = tokenize($exc, ' ')">false</xsl:when>
<xsl:otherwise>true</xsl:otherwise>
</xsl:choose>
</xsl:function>
<xsl:function name="tei:workOutSource" as="xs:string*">
<xsl:param name="e"/>
<xsl:variable name="loc">
<xsl:choose>
<xsl:when test="$e/@source">
<xsl:value-of select="$e/@source"/>
</xsl:when>
<xsl:when test="$e/ancestor::tei:schemaSpec/@source">
<xsl:value-of select="$e/ancestor::tei:schemaSpec/@source"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$DEFAULTSOURCE"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="source">
<xsl:choose>
<xsl:when test="starts-with($loc,'file:')">
<xsl:value-of select="$loc"/>
</xsl:when>
<xsl:when test="starts-with($loc,'http:')">
<xsl:value-of select="$loc"/>
</xsl:when>
<xsl:when test="starts-with($loc,'https:')">
<xsl:value-of select="$loc"/>
</xsl:when>
<xsl:when test="starts-with($loc,'/')">
<xsl:value-of select="resolve-uri($loc, 'file:///')"/>
</xsl:when>
<xsl:when test="starts-with($loc,'tei:')">
<xsl:value-of select="replace($loc,'tei:',$defaultTEIServer)"/>
<xsl:text>/xml/tei/odd/p5subset.xml</xsl:text>
</xsl:when>
<xsl:when test="base-uri($top)=''">
<xsl:value-of select="$currentDirectory"/>
<xsl:value-of select="$loc"/>
</xsl:when>
<xsl:when test="$currentDirectory=''">
<xsl:value-of select="resolve-uri($loc,base-uri($top))"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="resolve-uri(string-join(($currentDirectory, $loc), '/'),base-uri($top))"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when test="not(doc-available($source))">
<xsl:call-template name="die">
<xsl:with-param name="message" as="xs:string"
select="concat(
'Source document ',
$source,
' is not readable; from ',
base-uri($top),
' (which has an outermost element of ',
name($top/*),
'), with loc=',
$loc
)"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:if test="$verbose='true'">
<xsl:message>Setting source document to <xsl:value-of select="$source"/></xsl:message>
</xsl:if>
<xsl:sequence select="$source"/>
</xsl:otherwise>
</xsl:choose>
</xsl:function>
<xsl:function name="tei:message" as="xs:string">
<xsl:param name="message"/>
<xsl:message><xsl:copy-of select="$message"/></xsl:message>
<xsl:text/>
</xsl:function>
<xsl:function name="tei:uniqueName" as="xs:string">
<xsl:param name="spec" as="element()"/>
<xsl:variable name="type_and_ns" as="xs:string">
<xsl:choose>
<xsl:when test="$spec/self::tei:schemaSpec">
<xsl:sequence select="local-name($spec)||( $spec/@ns, 'http://www.tei-c.org/ns/1.0')[1]"/>
</xsl:when>
<xsl:when test="$spec/self::tei:elementSpec">
<xsl:sequence select="local-name($spec)||( $spec/@ns, $spec/ancestor::tei:schemaSpec/@ns, 'http://www.tei-c.org/ns/1.0')[1]"/>
</xsl:when>
<xsl:when test="$spec/self::tei:*[ not( @ns ) ]">
<xsl:sequence select="local-name($spec)"/>
</xsl:when>
<xsl:when test="$spec/self::tei:*[ @ns ]">
<xsl:sequence select="local-name($spec)||$spec/@ns"/>
</xsl:when>
<xsl:otherwise>
<xsl:message select="'WARNING: attempt to generate unique string for non-TEI element.'"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:sequence select="$type_and_ns||'_'||$spec/@ident"/>
</xsl:function>
<xsl:template name="die">
<xsl:param name="message"/>
<xsl:message terminate="yes">
<xsl:text>Error: odd2odd.xsl: </xsl:text>
<xsl:value-of select="$message"/>
</xsl:message>
</xsl:template>
<xsl:function name="tei:minOmaxO" as="xs:integer+">
<!-- Input: the string values of the attributes @minOccurs and -->
<!-- @maxOccurs -->
<!-- Oputput: a sequence of 2 integers representing the integer -->
<!-- values thereof with -1 used to indicate "unbounded" -->
<xsl:param name="minOccurs"/>
<xsl:param name="maxOccurs"/>
<!-- get the value of @minOccurs, defaulting to "1" -->
<xsl:variable name="minOccurs" select="( $minOccurs, '1')[1]"/>
<!-- get the value of @maxOccurs, defaulting to "1" -->
<xsl:variable name="maxOccurs" select="( $maxOccurs, '1')[1]"/>
<!-- We now have two _string_ representations of the attrs, but -->
<!-- we need integers. So cast them, converting "unbounded" to -->
<!-- a special flag value (-1): -->
<xsl:variable name="min" select="xs:integer( $minOccurs )"/>
<xsl:variable name="max">
<xsl:choose>
<xsl:when test="$maxOccurs castable as xs:integer">
<xsl:value-of select="xs:integer( $maxOccurs )"/>
</xsl:when>
<xsl:otherwise>
<!-- Must be "unbounded". -->
<xsl:value-of select="-1"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:sequence select="( $min, $max )"/>
</xsl:function>
<xsl:variable name="ODD">
<xsl:for-each select="/*">
<xsl:copy>
<xsl:attribute name="xml:base" select="document-uri(/)"/>
<xsl:copy-of select="@*"/>
<xsl:if test="$useVersionFromTEI='true'">
<xsl:processing-instruction name="TEIVERSION">
<!--
Generate a string based on the fileDesc/editionStmt/edition
element(s) in the p5subset.xml file. (Note that this would
look ugly if there were more than one editionStmt/edition,
but there is only one in that file.)
See ticket https://github.com/TEIC/Stylesheets/issues/355.
-->
<xsl:call-template name="odd2odd-getversion"/>
</xsl:processing-instruction>
</xsl:if>
<xsl:apply-templates mode="pass0"/>
</xsl:copy>
</xsl:for-each>
</xsl:variable>
<xsl:variable name="top" select="/"/>
<xsl:template match="/">
<!--
<xsl:result-document href="/tmp/odd2odd-pass0.xml">
<xsl:copy-of select="$ODD"/>
</xsl:result-document>
-->
<xsl:apply-templates mode="pass1" select="$ODD"/>
</xsl:template>
<!-- ******************* Pass 0, follow and expand specGrp ********************************* -->
<xsl:template match="tei:specGrp" mode="pass0">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 0: summarize specGrp <xsl:value-of select="@xml:id"/>
</xsl:message>
</xsl:if>
<xsl:if test="tei:specGrpRef|tei:elementSpec|tei:classSpec|tei:macroSpec|tei:dataSpec|tei:moduleRef">
<table xmlns="http://www.tei-c.org/ns/1.0" rend="specGrpSummary">
<xsl:for-each select="tei:specGrpRef|tei:elementSpec|tei:classSpec|tei:macroSpec|tei:dataSpec|tei:moduleRef">
<row>
<xsl:choose>
<xsl:when test="self::tei:specGrpRef">
<cell>
<ref target="#{@target}">reference <xsl:value-of select="@target"/></ref>
</cell>
<cell/>
</xsl:when>
<xsl:when test="self::tei:elementSpec">
<cell>
Element <gi><xsl:value-of select="@ident"/></gi>
</cell>
<cell>
<xsl:value-of select="@mode"/>
</cell>
</xsl:when>
<xsl:when test="self::tei:classSpec">
<cell>
Class <ident type="class"><xsl:value-of select="@ident"/></ident>
</cell>
<cell>
<xsl:value-of select="@mode"/>
</cell>
</xsl:when>
<xsl:when test="self::tei:dataSpec">
<cell>
Data <ident type="macro"><xsl:value-of select="@ident"/></ident>
</cell>
<cell>
<xsl:value-of select="@mode"/>
</cell>
</xsl:when>
<xsl:when test="self::tei:macroSpec">
<cell>
Macro <ident type="macro"><xsl:value-of select="@ident"/></ident>
</cell>
<cell>
<xsl:value-of select="@mode"/>
</cell>
</xsl:when>
<xsl:when test="self::tei:moduleRef">
<cell>
Module <xsl:value-of select="@key"/>
</cell>
<cell/>
</xsl:when>
</xsl:choose>
</row>
</xsl:for-each>
</table>
</xsl:if>
</xsl:template>
<xsl:template match="tei:schemaSpec" mode="pass0">
<xsl:if test="@ident=$selectedSchema or ($selectedSchema='' and not(preceding-sibling::tei:schemaSpec))">
<xsl:copy>
<xsl:copy-of select="@*"/>
<!-- generate a @defaultExceptions attribute if it's not present -->
<xsl:if test="not(@defaultExceptions)">
<xsl:variable name="defval" select="document(tei:workOutSource(.))//tei:elementSpec[@ident='schemaSpec']//tei:attDef[@ident='defaultExceptions']/tei:defaultVal"/>
<xsl:for-each select="tokenize($defval, '\s+')">
<xsl:if test="matches(., '\w(\w|\d)+:(\w|\d)+')">
<xsl:namespace name="{substring-before(., ':')}" select="namespace-uri-for-prefix(substring-before(., ':'), $defval)" ></xsl:namespace>
</xsl:if>
</xsl:for-each>
<xsl:if test="$defval">
<xsl:attribute name="defaultExceptions" select="$defval"/>
</xsl:if>
</xsl:if>
<xsl:choose>
<xsl:when test="@source">
<xsl:if test="$verbose='true'">
<xsl:message>Source for TEI is <xsl:value-of select="@source"/></xsl:message>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:if test="$verbose='true'">
<xsl:message>Source for TEI will be set to <xsl:value-of select="$DEFAULTSOURCE"/> </xsl:message>
</xsl:if>
<xsl:attribute name="source">
<xsl:value-of select="$DEFAULTSOURCE"/>
</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="*|text()|processing-instruction()" mode="pass0"/>
</xsl:copy>
</xsl:if>
</xsl:template>
<xsl:template match="tei:specGrpRef" mode="pass0">
<xsl:sequence select="if ($verbose='true')then tei:message(concat('Phase 0: expand specGrpRef ',@target)) else ()"/>
<xsl:choose>
<xsl:when test="starts-with(@target,'#')">
<xsl:apply-templates mode="pass0"
select="id(substring(@target,2))/*"/>
</xsl:when>
<xsl:otherwise>
<xsl:if test="$verbose='true'">
<xsl:sequence select="tei:message(concat('... read from ',resolve-uri(@target,base-uri($top))))"/>
</xsl:if>
<xsl:for-each
select="doc(resolve-uri(@target,base-uri($top)))">
<xsl:choose>
<xsl:when test="tei:specGrp">
<xsl:apply-templates select="tei:specGrp/*" mode="pass0"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="pass0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="@*|processing-instruction()|text()|comment()" mode="pass0">
<xsl:copy/>
</xsl:template>
<xsl:template match="*" mode="pass0">
<xsl:copy>
<xsl:apply-templates select="@*|node()" mode="pass0"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:elementSpec[@mode eq 'change']|tei:classSpec[@mode eq 'change']|tei:macroSpec[@mode eq 'change']|tei:dataSpec[@mode eq 'change']" mode="pass0">
<xsl:choose>
<xsl:when test="count(key('odd2odd-CHANGE',@ident))>1">
<xsl:if
test="generate-id(.)=generate-id(key('odd2odd-CHANGE',@ident)[1])">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:for-each select="key('odd2odd-CHANGE',@ident)">
<xsl:apply-templates
select="*|text()|comment()|processing-instruction()"
mode="pass0"/>
</xsl:for-each>
</xsl:copy>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates select="*|text()|comment()|processing-instruction()" mode="pass0"/>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- ******************* Phase 1, expand schemaSpec ********************************* -->
<xsl:template match="tei:schemaSpec" mode="pass1">
<xsl:variable name="pass1">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:sequence select="if ($verbose='true')then
tei:message(concat('Schema pass 1: ',@ident)) else ()"/>
<!--
it is important to process "tei" and "core" first
because of the order of declarations
-->
<xsl:for-each select="tei:moduleRef[@key eq 'tei']">
<xsl:call-template name="odd2odd-expandModule"/>
</xsl:for-each>
<xsl:for-each select="tei:moduleRef[@key eq 'core']">
<xsl:call-template name="odd2odd-expandModule"/>
</xsl:for-each>
<xsl:for-each select="tei:moduleRef[@key]">
<xsl:if test="not(@key eq 'tei' or @key eq 'core')">
<xsl:call-template name="odd2odd-expandModule"/>
</xsl:if>
</xsl:for-each>
<xsl:for-each
select="*[not(self::tei:moduleRef[@key])]">
<xsl:apply-templates select="." mode="pass1"/>
</xsl:for-each>
</xsl:copy>
</xsl:variable>
<!--
<xsl:result-document href="/tmp/odd2odd-pass1.xml">
<xsl:copy-of select="$pass1"/>
</xsl:result-document>
-->
<xsl:for-each select="$pass1">
<xsl:apply-templates mode="pass2"/>
</xsl:for-each>
</xsl:template>
<xsl:template match="*" mode="pass1">
<xsl:copy>
<xsl:apply-templates mode="pass1" select="@*|*|processing-instruction()|comment()|text()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*|processing-instruction()|text()|comment()" mode="pass1">
<xsl:copy-of select="."/>
</xsl:template>
<xsl:template match="tei:elementSpec[@mode eq 'delete']|tei:classSpec[@mode eq 'delete']|tei:macroSpec[@mode eq 'delete']|tei:dataSpec[@mode eq 'delete']"
mode="pass1">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 1: remove <xsl:value-of select="@ident"/></xsl:message>
</xsl:if>
</xsl:template>
<xsl:template match="tei:elementSpec|tei:classSpec|tei:macroSpec|tei:dataSpec"
mode="pass1">
<xsl:variable name="specName" select="@ident"/>
<xsl:choose>
<xsl:when test="$ODD/key('odd2odd-DELETE',$specName)">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 1: remove <xsl:value-of select="$specName"/></xsl:message>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:if test="$verbose='true'">
<xsl:message>Phase 1: hang onto <xsl:value-of
select="$specName"/> <xsl:if test="@mode"> in mode <xsl:value-of
select="@mode"/></xsl:if></xsl:message>
</xsl:if>
<xsl:copy>
<xsl:apply-templates mode="pass1" select="@*|*|processing-instruction()|comment()|text()"/>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template mode="pass1"
match="tei:schemaSpec//tei:classSpec[ @mode eq 'add' or not(@mode) ]
| tei:schemaSpec//tei:macroSpec[ @mode eq 'add' or not(@mode) ]
| tei:schemaSpec//tei:dataSpec [ @mode eq 'add' or not(@mode) ]
| tei:schemaSpec//tei:elementSpec[@mode eq 'add' or not(@mode) ]
">
<xsl:call-template name="odd2odd-createCopy"/>
</xsl:template>
<xsl:template match="tei:dataRef|tei:macroRef|tei:classRef|tei:elementRef"
mode="pass1">
<xsl:choose>
<xsl:when test="ancestor::tei:content">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:when test="ancestor::tei:datatype">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:when test="@name">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="sourceDoc" select="tei:workOutSource(.)"/>
<xsl:variable name="name" select="@key"/>
<xsl:variable name="id" select="ancestor::*[@ident]/@ident"/>
<xsl:for-each select="document($sourceDoc,$top)">
<xsl:choose>
<xsl:when test="key('odd2odd-IDENTS',$name)">
<xsl:for-each select="key('odd2odd-IDENTS',$name)">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 1: import <xsl:value-of select="$name"/> by direct reference</xsl:message>
</xsl:if>
<xsl:apply-templates mode="pass1" select="."/>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="die">
<xsl:with-param name="message">
<xsl:text>Reference to </xsl:text>
<xsl:value-of select="$name"/>
<xsl:text> in </xsl:text>
<xsl:value-of select="$id"/>
<xsl:text>: not found in source</xsl:text>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="odd2odd-expandModule">
<xsl:variable name="sourceDoc" select="tei:workOutSource(.)"/>
<xsl:variable name="name" select="@key"/>
<xsl:variable name="exc" select="@except"/>
<xsl:variable name="inc" select="@include"/>
<xsl:sequence select="if ($verbose='true') then
tei:message(concat('Process module reference to [',@key,'] with exclusion/inclusion of [',@except,'/',@include,']')) else ()"/>
<xsl:for-each select="document($sourceDoc,$top)">
<!-- get model and attribute classes regardless -->
<xsl:for-each select="key('odd2odd-MODULE_MEMBERS_NONELEMENT',$name)">
<xsl:variable name="class" select="@ident"/>
<xsl:if test="not($ODD/key('odd2odd-REFOBJECTS',$class))">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 1: import <xsl:value-of select="$class"/> by moduleRef</xsl:message>
</xsl:if>
<xsl:apply-templates mode="pass1" select="."/>
</xsl:if>
</xsl:for-each>
<!-- now elements -->
<xsl:for-each select="key('odd2odd-MODULE_MEMBERS_ELEMENT',$name)">
<xsl:variable name="i" select="@ident"/>
<xsl:if test="tei:includeMember(@ident,$exc,$inc)
and not($ODD/key('odd2odd-REFOBJECTS',$i))">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 1: import <xsl:value-of
select="$i"/> by moduleRef</xsl:message>
</xsl:if>
<xsl:apply-templates mode="pass1" select="."/>
</xsl:if>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
<xsl:template match="tei:elementSpec[@mode = ('change','replace')]
| tei:classSpec[ @mode = ('change','replace')]
| tei:macroSpec[ @mode = ('change','replace')]
| tei:dataSpec[ @mode = ('change','replace')]"
mode="pass1"/>
<xsl:template match="tei:classSpec/tei:attList/tei:attDef" mode="pass1">
<xsl:variable name="c" select="ancestor::tei:classSpec/@ident"/>
<xsl:variable name="a" select="@ident"/>
<xsl:choose>
<xsl:when test="$ODD/key('odd2odd-REFED',$c)[@include or @except]">
<xsl:if test="tei:includeMember(@ident,$ODD/key('odd2odd-REFED',$c)/@except,$ODD/key('odd2odd-REFED',$c)/@include)">
<xsl:if test="$verbose eq 'true'">
<xsl:message> keeping attribute <xsl:value-of
select="(ancestor::tei:classSpec/@ident,@ident)" separator="/"/></xsl:message>
</xsl:if>
<xsl:copy>
<xsl:apply-templates select="@*|node()" mode="pass1"/>
</xsl:copy>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select="@*|node()" mode="pass1"/>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- ******************* Phase 2, make the changes ********************************* -->
<xsl:template match="@*|processing-instruction()|text()|comment()" mode="pass2">
<xsl:copy/>
</xsl:template>
<xsl:template match="*" mode="pass2">
<xsl:copy>
<xsl:apply-templates mode="#current" select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="comment()" mode="justcopy"/>
<xsl:template match="@*|text()|processing-instruction()|tei:exemplum//comment()" mode="justcopy">
<xsl:copy/>
</xsl:template>
<xsl:template match="*" mode="justcopy">
<xsl:param name="rend"/>
<xsl:copy>
<xsl:if test="$rend">
<xsl:attribute name="rend" select="$rend"/>
</xsl:if>
<xsl:apply-templates select="@*|node()" mode="#current"/>
</xsl:copy>
</xsl:template>
<xsl:template match="a:* | rng:*" mode="justcopy">
<xsl:copy>
<xsl:apply-templates select="@*|*|processing-instruction()|text()" mode="#current"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:schemaSpec" mode="pass2">
<xsl:variable name="oddsource">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:sequence select="if ($verbose='true')then
tei:message(concat('Schema pass 2: ',@ident))
else ()"/>
<xsl:for-each select="*">
<xsl:call-template name="odd2odd-checkObject"/>
</xsl:for-each>
</xsl:copy>
</xsl:variable>
<xsl:for-each select="$oddsource">
<xsl:apply-templates mode="pass3"/>
</xsl:for-each>
</xsl:template>
<xsl:template name="odd2odd-checkObject">
<!--
for every object
- if its in the ODD spec's REPLACE list, use that
- if its in ODD spec's CHANGE list (do the hard merge bit)
- if its duplicated by an existing spec, ignore
- otherwise copy
done
-->
<xsl:variable name="specName" select="tei:uniqueName(.)"/>
<xsl:variable name="N" select="local-name(.)"/>
<xsl:choose>
<xsl:when test="$ODD/key('odd2odd-DELETE',$specName)">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 2: delete <xsl:value-of select="$specName"/></xsl:message>
</xsl:if>
</xsl:when>
<xsl:when test="$ODD/key('odd2odd-REPLACE',$specName)">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 2: replace <xsl:value-of select="$specName"/></xsl:message>
</xsl:if>
<xsl:apply-templates mode="odd2odd-copy" select="$ODD/key('odd2odd-REPLACE',$specName)"/>
</xsl:when>
<xsl:when test="$ODD/key('odd2odd-CHANGE',$specName)">
<xsl:if test="$verbose='true'">
<xsl:message>Phase 2: change <xsl:value-of select="$specName"/></xsl:message>
</xsl:if>
<xsl:apply-templates mode="odd2odd-change" select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:if test="$verbose='true'">
<xsl:message>Phase 2: keep <xsl:value-of select="($N,$specName)"/></xsl:message>
</xsl:if>
<xsl:apply-templates mode="justcopy" select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template mode="odd2odd-change odd2odd-copy"
match="@*|processing-instruction()|text()">
<xsl:copy/>
</xsl:template>
<xsl:template match="*" mode="odd2odd-change">
<xsl:copy>
<xsl:apply-templates mode="odd2odd-change" select="@*|*|processing-instruction()|text()"/>
</xsl:copy>
</xsl:template>
<!-- <xsl:template match="rng:*" mode="odd2odd-change">
<xsl:element xmlns="http://relaxng.org/ns/structure/1.0" name="{local-name()}">
<xsl:apply-templates mode="odd2odd-change" select="@*|*|processing-instruction()|text()"/>
</xsl:element>
</xsl:template>
USELESS template to be removed? see e-mail "copying craziness" of 2016-11-15 22:54Z -->
<!-- <xsl:template match="tei:elementSpec/@mode" mode="odd2odd-change">
<xsl:copy/>
</xsl:template>
USELESS? same as above, I think. -->
<xsl:variable name="key" select="@key"/>
<xsl:variable name="whence" select="local-name()"/>
<xsl:template match="tei:elementSpec" mode="odd2odd-change">
<xsl:variable name="elementName" select="tei:uniqueName(.)"/>
<xsl:variable name="ORIGINAL" select="."/>
<xsl:copy>
<xsl:attribute name="rend">change</xsl:attribute>
<xsl:apply-templates mode="odd2odd-change" select="@*"/>
<!--
For each element, go through most of the sections one by one
and see if they are present in the change mode version.
If so, use them as is. The constraints and attributes are identifiable
for change individually.
-->
<xsl:for-each select="$ODD/key('odd2odd-CHANGE',$elementName)">
<xsl:copy-of select="@ns"/>
<!-- if there is an altIdent, use it -->
<xsl:apply-templates mode="justcopy" select="tei:altIdent"/>
<!-- equiv, gloss, desc trio -->
<xsl:choose>
<xsl:when test="tei:equiv">
<xsl:apply-templates mode="justcopy"
select="tei:equiv">
<xsl:with-param name="rend">replace</xsl:with-param>
</xsl:apply-templates>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="justcopy" select="$ORIGINAL/tei:equiv"/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="tei:gloss">
<xsl:apply-templates mode="justcopy" select="tei:gloss">
<xsl:with-param name="rend">replace</xsl:with-param>
</xsl:apply-templates>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="justcopy" select="$ORIGINAL/tei:gloss"/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$stripped='true'"/>
<xsl:when test="tei:desc">
<xsl:apply-templates mode="justcopy" select="tei:desc">
<xsl:with-param name="rend">replace</xsl:with-param>
</xsl:apply-templates>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="justcopy" select="$ORIGINAL/tei:desc"/>
</xsl:otherwise>
</xsl:choose>
<!-- classes -->
<classes xmlns="http://www.tei-c.org/ns/1.0">
<xsl:choose>
<xsl:when test="tei:classes[@mode eq 'change']">
<xsl:for-each select="tei:classes/tei:memberOf">
<xsl:choose>
<xsl:when test="@mode eq 'delete'"/>
<xsl:when test="@mode eq 'add' or not (@mode)">
<memberOf key="{@key}">
<xsl:copy-of select="@min|@max"/>
</memberOf>
</xsl:when>
</xsl:choose>
</xsl:for-each>
<xsl:for-each select="$ORIGINAL">
<xsl:for-each select="tei:classes/tei:memberOf">
<xsl:variable name="me">
<xsl:value-of select="@key"/>
</xsl:variable>
<xsl:variable name="metoo">
<xsl:value-of select="concat(../../@ident,@key)"/>
</xsl:variable>
<xsl:choose>
<xsl:when test="$ODD/key('odd2odd-DELETE',$me)"> </xsl:when>
<xsl:when test="$ODD/key('odd2odd-MEMBEROFDELETE',$metoo)"> </xsl:when>
<xsl:when test="$ODD/key('odd2odd-MEMBEROFADD',$metoo)"> </xsl:when>
<xsl:otherwise>
<memberOf key="{$me}"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:for-each>
</xsl:when>
<xsl:when test="tei:classes">
<xsl:for-each select="tei:classes/tei:memberOf[not(@mode eq 'delete')]">
<xsl:copy-of select="."/>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:for-each select="$ORIGINAL">
<xsl:for-each select="tei:classes/tei:memberOf">
<xsl:variable name="me">
<xsl:value-of select="@key"/>
</xsl:variable>
<xsl:for-each select="$ODD">
<xsl:if test="not(key('odd2odd-DELETE',$me))">
<memberOf key="{$me}"/>
</xsl:if>
</xsl:for-each>
</xsl:for-each>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</classes>
<!-- valList -->
<xsl:choose>
<xsl:when test="tei:valList[@mode eq 'delete']"/>
<xsl:when test="tei:valList">
<xsl:apply-templates mode="odd2odd-copy" select="tei:valList[1]"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="odd2odd-copy" select="$ORIGINAL/tei:valList"/>
</xsl:otherwise>
</xsl:choose>
<!-- element content -->
<content xmlns="http://www.tei-c.org/ns/1.0">
<xsl:choose>
<xsl:when test="tei:content and not(tei:content/*)"/>
<xsl:when test="tei:content/rng:*">
<xsl:apply-templates mode="odd2odd-copy" select="tei:content/*"/>
</xsl:when>
<xsl:when test="tei:content/tei:*">
<xsl:apply-templates mode="odd2odd-copy" select="tei:content/@*"/>
<xsl:apply-templates mode="odd2odd-copy" select="tei:content/*"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="odd2odd-copy" select="$ORIGINAL/tei:content/@*"/>
<xsl:apply-templates mode="odd2odd-copy" select="$ORIGINAL/tei:content/*"/>
</xsl:otherwise>
</xsl:choose>
</content>
<!-- element constraints -->
<xsl:call-template name="odd2odd-processConstraints">
<xsl:with-param name="ORIGINAL" select="$ORIGINAL"/>
<xsl:with-param name="elementName" select="$elementName"/>
</xsl:call-template>
<!-- attList -->
<xsl:if test="tei:attList or $ORIGINAL/tei:attList">
<attList xmlns="http://www.tei-c.org/ns/1.0">
<xsl:apply-templates mode="justcopy" select="tei:attList/@org"/>
<xsl:call-template name="odd2odd-processAttributes">
<xsl:with-param name="ORIGINAL" select="$ORIGINAL"/>
<xsl:with-param name="objectName" select="$elementName"/>
</xsl:call-template>
</attList>
</xsl:if>
<!-- models -->
<xsl:choose>
<xsl:when test="tei:modelGrp|tei:model|tei:modelSequence">
<xsl:apply-templates mode="justcopy" select="tei:modelGrp|tei:model|tei:modelSequence"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates mode="justcopy" select="$ORIGINAL/tei:modelGrp|$ORIGINAL/tei:model|$ORIGINAL/tei:modelSequence"/>
</xsl:otherwise>
</xsl:choose>