-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathelicom.rng
4322 lines (4320 loc) · 196 KB
/
elicom.rng
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"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:teix="http://www.tei-c.org/ns/Examples"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
ns="http://www.tei-c.org/ns/1.0"><!--
Schema generated from ODD source 2019-12-02T13:39:30Z. .
TEI Edition: Version 3.3.0. Last updated on
31st January 2018, revision f4d8439
TEI Edition Location: http://www.tei-c.org/Vault/P5/Version 3.3.0/
--><!---->
<define name="macro.paraContent">
<zeroOrMore>
<choice>
<text/>
<ref name="model.gLike"/>
<ref name="model.phrase"/>
<ref name="model.inter"/>
<ref name="model.global"/>
<ref name="model.lLike"/>
</choice>
</zeroOrMore>
</define>
<define name="macro.limitedContent">
<zeroOrMore>
<choice>
<text/>
<ref name="model.limitedPhrase"/>
<ref name="model.inter"/>
</choice>
</zeroOrMore>
</define>
<define name="macro.phraseSeq">
<zeroOrMore>
<choice>
<text/>
<ref name="model.gLike"/>
<ref name="model.phrase"/>
<ref name="model.global"/>
</choice>
</zeroOrMore>
</define>
<define name="macro.phraseSeq.limited">
<zeroOrMore>
<choice>
<text/>
<ref name="model.limitedPhrase"/>
<ref name="model.global"/>
</choice>
</zeroOrMore>
</define>
<define name="macro.specialPara">
<zeroOrMore>
<choice>
<text/>
<ref name="model.gLike"/>
<ref name="model.phrase"/>
<ref name="model.inter"/>
<ref name="model.divPart"/>
<ref name="model.global"/>
</choice>
</zeroOrMore>
</define>
<define name="macro.xtext">
<zeroOrMore>
<choice>
<text/>
<ref name="model.gLike"/>
</choice>
</zeroOrMore>
</define>
<define name="att.canonical.attributes">
<ref name="att.canonical.attribute.key"/>
</define>
<define name="att.canonical.attribute.key">
<optional>
<attribute name="key">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">fournit un moyen, défini de façon externe, d'identifier l'entité (ou les entités) nommé(es), en utilisant une valeur codée d'un certain type.</a:documentation>
<data type="string"/>
</attribute>
</optional>
</define>
<define name="att.ranging.attributes">
<ref name="att.ranging.attribute.atLeast"/>
<ref name="att.ranging.attribute.atMost"/>
<ref name="att.ranging.attribute.min"/>
<ref name="att.ranging.attribute.max"/>
<ref name="att.ranging.attribute.confidence"/>
</define>
<define name="att.ranging.attribute.atLeast">
<optional>
<attribute name="atLeast">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">donne une estimation de la valeur minimum pour la mesure.</a:documentation>
<choice>
<data type="double"/>
<data type="token">
<param name="pattern">(\-?[\d]+/\-?[\d]+)</param>
</data>
<data type="decimal"/>
</choice>
</attribute>
</optional>
</define>
<define name="att.ranging.attribute.atMost">
<optional>
<attribute name="atMost">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">donne une estimation de la valeur maximum pour la mesure.</a:documentation>
<choice>
<data type="double"/>
<data type="token">
<param name="pattern">(\-?[\d]+/\-?[\d]+)</param>
</data>
<data type="decimal"/>
</choice>
</attribute>
</optional>
</define>
<define name="att.ranging.attribute.min">
<optional>
<attribute name="min">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">lorsque la mesure résume plus d'une observation, fournit la valeur minimum observée.</a:documentation>
<choice>
<data type="double"/>
<data type="token">
<param name="pattern">(\-?[\d]+/\-?[\d]+)</param>
</data>
<data type="decimal"/>
</choice>
</attribute>
</optional>
</define>
<define name="att.ranging.attribute.max">
<optional>
<attribute name="max">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">lorsque la mesure résume plus d'une observation, fournit la valeur maximum observée.</a:documentation>
<choice>
<data type="double"/>
<data type="token">
<param name="pattern">(\-?[\d]+/\-?[\d]+)</param>
</data>
<data type="decimal"/>
</choice>
</attribute>
</optional>
</define>
<define name="att.ranging.attribute.confidence">
<optional>
<attribute name="confidence">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range.</a:documentation>
<data type="double"/>
</attribute>
</optional>
</define>
<define name="att.dimensions.attributes">
<ref name="att.ranging.attributes"/>
</define>
<define name="att.written.attributes">
<ref name="att.written.attribute.hand"/>
</define>
<define name="att.written.attribute.hand">
<optional>
<attribute name="hand">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">signale la main de celui qui est intervenue.</a:documentation>
<data type="anyURI"/>
</attribute>
</optional>
</define>
<define name="att.breaking.attributes">
<ref name="att.breaking.attribute.break"/>
</define>
<define name="att.breaking.attribute.break">
<optional>
<attribute name="break">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique si l'élément qui porte cet attribut peut être considéré comme une espace blanc indiquant la fin d'un mot orthographique.</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</attribute>
</optional>
</define>
<define name="att.cReferencing.attributes">
<ref name="att.cReferencing.attribute.cRef"/>
</define>
<define name="att.cReferencing.attribute.cRef">
<optional>
<attribute name="cRef">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(référence canonique) précise la cible du pointeur en fournissant une référence canonique issue d'un modèle défini par un élément refsDecldans l'En-tête TEI.</a:documentation>
<data type="string"/>
</attribute>
</optional>
</define>
<define name="att.datable.w3c.attributes">
<ref name="att.datable.w3c.attribute.when"/>
</define>
<define name="att.datable.w3c.attribute.when">
<optional>
<attribute name="when">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">spécifie une date exacte pour un événement sous une forme normalisée, par ex. aaaa-mm-jj.</a:documentation>
<choice>
<data type="date"/>
<data type="gYear"/>
<data type="gMonth"/>
<data type="gDay"/>
<data type="gYearMonth"/>
<data type="gMonthDay"/>
<data type="time"/>
<data type="dateTime"/>
</choice>
</attribute>
</optional>
</define>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="oddbyexample-att.datable.w3c-att-datable-w3c-when-constraint-rule-1">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@when]">
<sch:report test="@notBefore|@notAfter|@from|@to" role="nonfatal">The @when attribute cannot be used with any other att.datable.w3c attributes.</sch:report>
</sch:rule>
</pattern>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="oddbyexample-att.datable.w3c-att-datable-w3c-from-constraint-rule-2">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@from]">
<sch:report test="@notBefore" role="nonfatal">The @from and @notBefore attributes cannot be used together.</sch:report>
</sch:rule>
</pattern>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="oddbyexample-att.datable.w3c-att-datable-w3c-to-constraint-rule-3">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@to]">
<sch:report test="@notAfter" role="nonfatal">The @to and @notAfter attributes cannot be used together.</sch:report>
</sch:rule>
</pattern>
<define name="att.datable.attributes">
<ref name="att.datable.w3c.attributes"/>
<ref name="att.datable.iso.attributes"/>
<ref name="att.datable.custom.attributes"/>
</define>
<define name="att.declarable.attributes">
<ref name="att.declarable.attribute.default"/>
</define>
<define name="att.declarable.attribute.default">
<optional>
<attribute xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
name="default"
a:defaultValue="false">
<a:documentation>Indique si oui ou non cet élément est affecté par défaut quand son élément parent a été sélectionné.</a:documentation>
<choice>
<value>true</value>
<a:documentation>cet élément est choisi si son parent est choisi</a:documentation>
<value>false</value>
<a:documentation>cet élément ne peut être sélectionné qu'explicitement, à moins qu'il ne soit le seul de ce type, auquel cas il est sélectionné si son parent a été choisi</a:documentation>
</choice>
</attribute>
</optional>
</define>
<define name="att.declaring.attributes">
<ref name="att.declaring.attribute.decls"/>
</define>
<define name="att.declaring.attribute.decls">
<optional>
<attribute name="decls">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">identifie un ou plusieurséléments déclarables dans l'en-tête TEI, qui sont destinés à s'appliquer à l'élément portant cet attribut et à son contenu.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.fragmentable.attributes">
<ref name="att.fragmentable.attribute.part"/>
</define>
<define name="att.fragmentable.attribute.part">
<optional>
<attribute xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
name="part"
a:defaultValue="N">
<a:documentation>specifies whether or not its parent element is fragmented in some way, typically by some other overlapping structure: for example a speech which is divided between two or more verse stanzas, a paragraph which is split across a page division, a verse line which is divided between two speakers.</a:documentation>
<choice>
<value>Y</value>
<a:documentation> (yes) the element is fragmented in some (unspecified) respect</a:documentation>
<value>N</value>
<a:documentation> (no) the element is not fragmented, or no claim is made as to its completeness</a:documentation>
<value>I</value>
<a:documentation> (initial) this is the initial part of a fragmented element</a:documentation>
<value>M</value>
<a:documentation> (medial) this is a medial part of a fragmented element</a:documentation>
<value>F</value>
<a:documentation> (final) this is the final part of a fragmented element</a:documentation>
</choice>
</attribute>
</optional>
</define>
<define name="att.divLike.attributes">
<ref name="att.fragmentable.attributes"/>
</define>
<define name="att.docStatus.attributes">
<ref name="att.docStatus.attribute.status"/>
</define>
<define name="att.docStatus.attribute.status">
<optional>
<attribute xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
name="status"
a:defaultValue="draft">
<a:documentation>describes the status of a document either currently or, when associated with a dated element, at the time indicated.
Sample values include: 1] approved; 2] candidate; 3] cleared; 4] deprecated; 5] draft; 6] embargoed; 7] expired; 8] frozen; 9] galley; 10] proposed; 11] published; 12] recommendation; 13] submitted; 14] unfinished; 15] withdrawn</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</attribute>
</optional>
</define>
<define name="att.global.responsibility.attributes">
<ref name="att.global.responsibility.attribute.resp"/>
</define>
<define name="att.global.responsibility.attribute.resp">
<optional>
<attribute name="resp">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(responsable) indique l'agent responsable de l'intervention ou de l'interprétation, par exemple un éditeur ou un transcripteur.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.editLike.attributes">
<ref name="att.editLike.attribute.evidence"/>
<ref name="att.editLike.attribute.instant"/>
</define>
<define name="att.editLike.attribute.evidence">
<optional>
<attribute name="evidence">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique la nature de la preuve attestant la fiabilité ou la justesse de l'intervention ou de l'interprétation.
Suggested values include: 1] internal; 2] external; 3] conjecture</a:documentation>
<list>
<oneOrMore>
<choice>
<value>internal</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">l'intervention est justifiée par une preuve interne</a:documentation>
<value>external</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">l'intervention est justifiée par une preuve externe</a:documentation>
<value>conjecture</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">l'intervention ou l'interprétation a été faite par le rédacteur, le catalogueur, ou le chercheur sur la base de leur expertise.</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</choice>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.editLike.attribute.instant">
<optional>
<attribute xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
name="instant"
a:defaultValue="false">
<a:documentation>indicates whether this is an instant revision or not.</a:documentation>
<choice>
<data type="boolean"/>
<choice>
<value>unknown</value>
<a:documentation/>
<value>inapplicable</value>
<a:documentation/>
</choice>
</choice>
</attribute>
</optional>
</define>
<define name="att.global.rendition.attributes">
<ref name="att.global.rendition.attribute.rend"/>
<ref name="att.global.rendition.attribute.style"/>
<ref name="att.global.rendition.attribute.rendition"/>
</define>
<define name="att.global.rendition.attribute.rend">
<optional>
<attribute name="rend">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(interprétation) indique comment l'élément en question a été rendu ou présenté dans le texte source</a:documentation>
<list>
<oneOrMore>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.global.rendition.attribute.style">
<optional>
<attribute name="style">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">contains an expression in some formal style definition language which defines the rendering or presentation used for this element in the source text</a:documentation>
<data type="string"/>
</attribute>
</optional>
</define>
<define name="att.global.rendition.attribute.rendition">
<optional>
<attribute name="rendition">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">pointe vers une description du rendu ou de la présentation utilisés pour cet élément dans le texte source</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.global.source.attributes">
<ref name="att.global.source.attribute.source"/>
</define>
<define name="att.global.source.attribute.source">
<optional>
<attribute name="source">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">specifies the source from which some aspect of this element is drawn.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.global.attributes">
<ref name="att.global.rendition.attributes"/>
<ref name="att.global.linking.attributes"/>
<ref name="att.global.facs.attributes"/>
<ref name="att.global.change.attributes"/>
<ref name="att.global.responsibility.attributes"/>
<ref name="att.global.source.attributes"/>
<ref name="att.global.attribute.xmlid"/>
<ref name="att.global.attribute.n"/>
<ref name="att.global.attribute.xmllang"/>
<ref name="att.global.attribute.xmlbase"/>
<ref name="att.global.attribute.xmlspace"/>
</define>
<define name="att.global.attribute.xmlid">
<optional>
<attribute name="xml:id">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(identifiant) fournit un identifiant unique pour l'élément qui porte l'attribut</a:documentation>
<data type="ID"/>
</attribute>
</optional>
</define>
<define name="att.global.attribute.n">
<optional>
<attribute name="n">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(nombre) donne un nombre (ou une autre étiquette) pour un élément, qui n'est pas nécessairement unique dans le document TEI.</a:documentation>
<data type="string"/>
</attribute>
</optional>
</define>
<define name="att.global.attribute.xmllang">
<optional>
<attribute name="xml:lang">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(langue) indique la langue du contenu de l'élément en utilisant les codes du RFC 3066</a:documentation>
<choice>
<data type="language"/>
<choice>
<value/>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
</choice>
</choice>
</attribute>
</optional>
</define>
<define name="att.global.attribute.xmlbase">
<optional>
<attribute name="xml:base">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">donne une référence URI de base au moyen de laquelle les applications peuvent résoudre des références d'URI relatives en références d'URI absolues</a:documentation>
<data type="anyURI"/>
</attribute>
</optional>
</define>
<define name="att.global.attribute.xmlspace">
<optional>
<attribute name="xml:space">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">signale que les applications doivent préserver l'espace blanc</a:documentation>
<choice>
<value>default</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">signals that the application's default white-space processing modes are acceptable</a:documentation>
<value>preserve</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indicates the intent that applications preserve all white space</a:documentation>
</choice>
</attribute>
</optional>
</define>
<define name="att.internetMedia.attributes">
<ref name="att.internetMedia.attribute.mimeType"/>
</define>
<define name="att.internetMedia.attribute.mimeType">
<optional>
<attribute name="mimeType">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(type de média MIME) spécifie le type MIME (multipurpose internet mail extension) applicable.</a:documentation>
<list>
<oneOrMore>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.media.attributes">
<ref name="att.internetMedia.attributes"/>
</define>
<define name="att.resourced.attributes">
<ref name="att.resourced.attribute.url"/>
</define>
<define name="att.resourced.attribute.url">
<attribute name="url">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(adresse URL) specifies the URL from which the media concerned may be obtained.</a:documentation>
<data type="anyURI"/>
</attribute>
</define>
<define name="att.measurement.attributes">
<ref name="att.measurement.attribute.unit"/>
<ref name="att.measurement.attribute.quantity"/>
<ref name="att.measurement.attribute.commodity"/>
</define>
<define name="att.measurement.attribute.unit">
<optional>
<attribute name="unit">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(unité) indique les unités de mesure utilisées ; il s'agit en général du symbole normalisé pour les unités dont on a besoin.
Suggested values include: 1] m (metre) ; 2] kg (kilogram) ; 3] s (second) ; 4] Hz (hertz) ; 5] Pa (pascal) ; 6] Ω (ohm) ; 7] L (litre) ; 8] t (tonne) ; 9] ha (hectare) ; 10] Å (ångström) ; 11] mL (millilitre) ; 12] cm (centimetre) ; 13] dB (decibel) ; 14] kbit (kilobit) ; 15] Kibit (kibibit) ; 16] kB (kilobyte) ; 17] KiB (kibibyte) ; 18] MB (megabyte) ; 19] MiB (mebibyte) </a:documentation>
<choice>
<value>m</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(mètre) unité SI (système international) de longueur</a:documentation>
<value>kg</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(kilogramme) unité SI de masse</a:documentation>
<value>s</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(seconde) unité SI de temps</a:documentation>
<value>Hz</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (hertz) unité SI de fréquence</a:documentation>
<value>Pa</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (pascal) unité SI de pression</a:documentation>
<value>Ω</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (ohm) unité SI de résistance électrique</a:documentation>
<value>L</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (litre) 1 dm³</a:documentation>
<value>t</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (tonne) 10³ kg</a:documentation>
<value>ha</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (hectare) 1 hm²</a:documentation>
<value>Å</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (ångström) 10⁻¹⁰ m</a:documentation>
<value>mL</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (millilitre) </a:documentation>
<value>cm</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(centimètre) </a:documentation>
<value>dB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(décibel) Voir remarques, ci-dessous.</a:documentation>
<value>kbit</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (kilobit) 10³ ou 1000 bits</a:documentation>
<value>Kibit</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (kibibit) 2¹⁰ ou 1024 bits</a:documentation>
<value>kB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(kilo-octet) 10³ ou 1000 octets</a:documentation>
<value>KiB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(kibioctet) 2¹⁰ ou 1024 octets</a:documentation>
<value>MB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(mégaoctet) 10⁶ ou 1 000 000 octets</a:documentation>
<value>MiB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(mébioctet) 2²⁰ ou 1 048 576 octets</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</choice>
</attribute>
</optional>
</define>
<define name="att.measurement.attribute.quantity">
<optional>
<attribute name="quantity">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(quantité) spécifie le nombre des unités indiquées que comprend la mesure.</a:documentation>
<choice>
<data type="double"/>
<data type="token">
<param name="pattern">(\-?[\d]+/\-?[\d]+)</param>
</data>
<data type="decimal"/>
</choice>
</attribute>
</optional>
</define>
<define name="att.measurement.attribute.commodity">
<optional>
<attribute name="commodity">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(article) indique ce qui est mesuré.</a:documentation>
<list>
<oneOrMore>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.naming.attributes">
<ref name="att.canonical.attributes"/>
</define>
<define name="att.placement.attributes">
<ref name="att.placement.attribute.place"/>
</define>
<define name="att.placement.attribute.place">
<optional>
<attribute name="place">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">specifie où cet item se trouve.
Suggested values include: 1] below; 2] bottom; 3] margin; 4] top; 5] opposite; 6] overleaf; 7] above; 8] end; 9] inline; 10] inspace</a:documentation>
<list>
<oneOrMore>
<choice>
<value>below</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">au-dessous de la ligne</a:documentation>
<value>bottom</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">dans la marge inférieure</a:documentation>
<value>margin</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">dans la marge (gauche, droite ou les deux en même temps)</a:documentation>
<value>top</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">dans la marge supérieure</a:documentation>
<value>opposite</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">sur la page opposée</a:documentation>
<value>overleaf</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">de l'autre côté de la feuille</a:documentation>
<value>above</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">au-dessus de la ligne</a:documentation>
<value>end</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">à la fin, par exemple d'un chapitre ou d'un volume</a:documentation>
<value>inline</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">dans le corps du texte</a:documentation>
<value>inspace</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">dans un espace prédéfini, par exemple à gauche d'un scripteur précédent</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</choice>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="oddbyexample-att.typed-subtypeTyped-constraint-rule-4">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@subtype]">
<sch:assert test="@type">The <sch:name/> element should not be categorized in detail with @subtype unless also categorized in general with @type</sch:assert>
</sch:rule>
</pattern>
<define name="att.pointing.attributes">
<ref name="att.pointing.attribute.target"/>
</define>
<define name="att.pointing.attribute.target">
<optional>
<attribute name="target">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">précise la cible de la référence en donnant une ou plusieurs références URI</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.sortable.attributes">
<ref name="att.sortable.attribute.sortKey"/>
</define>
<define name="att.sortable.attribute.sortKey">
<optional>
<attribute name="sortKey">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">supplies the sort key for this element in an index, list or group which contains it.</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</attribute>
</optional>
</define>
<define name="att.edition.attributes">
<ref name="att.edition.attribute.ed"/>
<ref name="att.edition.attribute.edRef"/>
</define>
<define name="att.edition.attribute.ed">
<optional>
<attribute name="ed">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(édition) fournit un identifiant arbitraire pour l'édition source dans laquelle la caractéristique associée (par exemple, une page, une colonne ou un saut de ligne) apparaît à ce point du texte.</a:documentation>
<list>
<oneOrMore>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.edition.attribute.edRef">
<optional>
<attribute name="edRef">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (edition reference) provides a pointer to the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.spanning.attributes">
<ref name="att.spanning.attribute.spanTo"/>
</define>
<define name="att.spanning.attribute.spanTo">
<optional>
<attribute name="spanTo">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique la fin d'un passage introduit par l'élément portant cet attribut.</a:documentation>
<data type="anyURI"/>
</attribute>
</optional>
</define>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="oddbyexample-att.spanning-spanTo-spanTo-2-constraint-rule-5">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@spanTo]">
<sch:assert test="id(substring(@spanTo,2)) and following::*[@xml:id=substring(current()/@spanTo,2)]">
The element indicated by @spanTo (<sch:value-of select="@spanTo"/>) must follow the current element <sch:name/>
</sch:assert>
</sch:rule>
</pattern>
<define name="att.transcriptional.attributes">
<ref name="att.editLike.attributes"/>
<ref name="att.written.attributes"/>
</define>
<define name="att.translatable.attributes">
<ref name="att.translatable.attribute.versionDate"/>
</define>
<define name="att.translatable.attribute.versionDate">
<optional>
<attribute name="versionDate">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">spécifie le nom de la version ou le numéro de la source dont la version traduite a été tirée.</a:documentation>
<choice>
<data type="date"/>
<data type="gYear"/>
<data type="gMonth"/>
<data type="gDay"/>
<data type="gYearMonth"/>
<data type="gMonthDay"/>
<data type="time"/>
<data type="dateTime"/>
</choice>
</attribute>
</optional>
</define>
<define name="model.nameLike.agent">
<choice>
<ref name="name"/>
<ref name="persName"/>
</choice>
</define>
<define name="model.nameLike.agent_alternation">
<choice>
<ref name="name"/>
<ref name="persName"/>
</choice>
</define>
<define name="model.nameLike.agent_sequence">
<ref name="name"/>
<ref name="persName"/>
</define>
<define name="model.nameLike.agent_sequenceOptional">
<optional>
<ref name="name"/>
</optional>
<optional>
<ref name="persName"/>
</optional>
</define>
<define name="model.nameLike.agent_sequenceOptionalRepeatable">
<zeroOrMore>
<ref name="name"/>
</zeroOrMore>
<zeroOrMore>
<ref name="persName"/>
</zeroOrMore>
</define>
<define name="model.nameLike.agent_sequenceRepeatable">
<oneOrMore>
<ref name="name"/>
</oneOrMore>
<oneOrMore>
<ref name="persName"/>
</oneOrMore>
</define>
<define name="model.segLike">
<notAllowed/>
</define>
<define name="model.hiLike">
<choice>
<ref name="hi"/>
</choice>
</define>
<define name="model.hiLike_alternation">
<choice>
<ref name="hi"/>
</choice>
</define>
<define name="model.hiLike_sequence">
<ref name="hi"/>
</define>
<define name="model.hiLike_sequenceOptional">
<optional>
<ref name="hi"/>
</optional>
</define>
<define name="model.hiLike_sequenceOptionalRepeatable">
<zeroOrMore>
<ref name="hi"/>
</zeroOrMore>
</define>
<define name="model.hiLike_sequenceRepeatable">
<oneOrMore>
<ref name="hi"/>
</oneOrMore>
</define>
<define name="model.emphLike">
<choice>
<ref name="title"/>
</choice>
</define>
<define name="model.emphLike_alternation">
<choice>
<ref name="title"/>
</choice>
</define>
<define name="model.emphLike_sequence">
<ref name="title"/>
</define>
<define name="model.emphLike_sequenceOptional">
<optional>
<ref name="title"/>
</optional>
</define>
<define name="model.emphLike_sequenceOptionalRepeatable">
<zeroOrMore>
<ref name="title"/>
</zeroOrMore>
</define>
<define name="model.emphLike_sequenceRepeatable">
<oneOrMore>
<ref name="title"/>
</oneOrMore>
</define>
<define name="model.highlighted">
<choice>
<ref name="model.hiLike"/>
<ref name="model.emphLike"/>
</choice>
</define>
<define name="model.dateLike">
<choice>
<ref name="date"/>
</choice>
</define>
<define name="model.dateLike_alternation">
<choice>
<ref name="date"/>
</choice>
</define>
<define name="model.dateLike_sequence">
<ref name="date"/>
</define>
<define name="model.dateLike_sequenceOptional">
<optional>
<ref name="date"/>
</optional>
</define>
<define name="model.dateLike_sequenceOptionalRepeatable">
<zeroOrMore>
<ref name="date"/>
</zeroOrMore>
</define>
<define name="model.dateLike_sequenceRepeatable">
<oneOrMore>
<ref name="date"/>
</oneOrMore>
</define>
<define name="model.measureLike">
<choice>
<ref name="measure"/>
</choice>
</define>
<define name="model.measureLike_alternation">
<choice>
<ref name="measure"/>
</choice>
</define>
<define name="model.measureLike_sequence">
<ref name="measure"/>
</define>
<define name="model.measureLike_sequenceOptional">
<optional>
<ref name="measure"/>
</optional>
</define>
<define name="model.measureLike_sequenceOptionalRepeatable">
<zeroOrMore>
<ref name="measure"/>
</zeroOrMore>
</define>
<define name="model.measureLike_sequenceRepeatable">
<oneOrMore>
<ref name="measure"/>
</oneOrMore>
</define>
<define name="model.egLike">
<notAllowed/>
</define>
<define name="model.egLike_alternation">
<notAllowed/>
</define>
<define name="model.egLike_sequence">
<empty/>
</define>
<define name="model.egLike_sequenceOptional">
<empty/>
</define>
<define name="model.egLike_sequenceOptionalRepeatable">
<empty/>
</define>
<define name="model.egLike_sequenceRepeatable">
<notAllowed/>
</define>
<define name="model.graphicLike">
<choice>
<ref name="graphic"/>
</choice>
</define>
<define name="model.offsetLike">
<notAllowed/>
</define>
<define name="model.offsetLike_alternation">
<notAllowed/>
</define>
<define name="model.offsetLike_sequence">
<empty/>
</define>
<define name="model.offsetLike_sequenceOptional">
<empty/>
</define>
<define name="model.offsetLike_sequenceOptionalRepeatable">
<empty/>
</define>
<define name="model.offsetLike_sequenceRepeatable">
<notAllowed/>
</define>
<define name="model.pPart.msdesc">
<notAllowed/>
</define>
<define name="model.pPart.editorial">
<notAllowed/>
</define>
<define name="model.pPart.editorial_alternation">
<notAllowed/>
</define>
<define name="model.pPart.editorial_sequence">
<empty/>
</define>
<define name="model.pPart.editorial_sequenceOptional">
<empty/>
</define>
<define name="model.pPart.editorial_sequenceOptionalRepeatable">
<empty/>
</define>
<define name="model.pPart.editorial_sequenceRepeatable">
<notAllowed/>
</define>
<define name="model.pPart.transcriptional">
<choice>
<ref name="del"/>
</choice>
</define>
<define name="model.pPart.transcriptional_alternation">
<choice>
<ref name="del"/>