-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtei-istex.rng
12366 lines (12365 loc) · 552 KB
/
tei-istex.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-07-11T05:20:38Z. .
TEI Edition:
TEI Edition Location: http://www.tei-c.org/Vault/P5//
--><!--[http://creativecommons.org/licenses/by/4.0/] Ce schéma est distribué sous licence Creative Commons 4.0 non transposée (CC BY 4.0) ODD-ISTEX a été créé dans le cadre du projet ISTEX – Initiative d’Excellence en Information Scientifique et Technique -->
<define name="tei_macro.paraContent">
<zeroOrMore>
<choice>
<text/>
<ref name="tei_model.gLike"/>
<ref name="tei_model.phrase"/>
<ref name="tei_model.inter"/>
<ref name="tei_model.global"/>
<ref name="tei_lg"/>
<ref name="tei_model.lLike"/>
</choice>
</zeroOrMore>
</define>
<define name="tei_macro.limitedContent">
<zeroOrMore>
<choice>
<text/>
<ref name="tei_model.limitedPhrase"/>
<ref name="tei_model.inter"/>
</choice>
</zeroOrMore>
</define>
<define name="tei_macro.phraseSeq">
<zeroOrMore>
<choice>
<text/>
<ref name="tei_model.gLike"/>
<ref name="tei_model.phrase"/>
<ref name="tei_model.global"/>
</choice>
</zeroOrMore>
</define>
<define name="tei_macro.phraseSeq.limited">
<zeroOrMore>
<choice>
<text/>
<ref name="tei_model.limitedPhrase"/>
<ref name="tei_model.global"/>
</choice>
</zeroOrMore>
</define>
<define name="tei_macro.specialPara">
<zeroOrMore>
<choice>
<text/>
<ref name="tei_model.gLike"/>
<ref name="tei_model.phrase"/>
<ref name="tei_model.inter"/>
<ref name="tei_model.divPart"/>
<ref name="tei_model.global"/>
</choice>
</zeroOrMore>
</define>
<define name="tei_macro.xtext">
<zeroOrMore>
<choice>
<text/>
<ref name="tei_model.gLike"/>
</choice>
</zeroOrMore>
</define>
<define name="tei_att.ascribed.attributes">
<ref name="tei_att.ascribed.attribute.who"/>
</define>
<define name="tei_att.ascribed.attribute.who">
<optional>
<attribute name="who">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique la personne ou le groupe de personnes à qui le contenu de l'élément est attribué.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="tei_att.canonical.attributes">
<ref name="tei_att.canonical.attribute.key"/>
<ref name="tei_att.canonical.attribute.ref"/>
</define>
<define name="tei_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="tei_att.canonical.attribute.ref">
<optional>
<attribute name="ref">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(référence) fournit un moyen explicite de localiser une définition complète de l'entité nommée au moyen d'un ou plusieurs URIs.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="tei_att.ranging.attributes">
<ref name="tei_att.ranging.attribute.atLeast"/>
<ref name="tei_att.ranging.attribute.atMost"/>
<ref name="tei_att.ranging.attribute.min"/>
<ref name="tei_att.ranging.attribute.max"/>
<ref name="tei_att.ranging.attribute.confidence"/>
</define>
<define name="tei_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="tei_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="tei_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="tei_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="tei_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="tei_att.dimensions.attributes">
<ref name="tei_att.ranging.attributes"/>
<ref name="tei_att.dimensions.attribute.unit"/>
<ref name="tei_att.dimensions.attribute.quantity"/>
<ref name="tei_att.dimensions.attribute.extent"/>
<ref name="tei_att.dimensions.attribute.precision"/>
<ref name="tei_att.dimensions.attribute.scope"/>
</define>
<define name="tei_att.dimensions.attribute.unit">
<optional>
<attribute name="unit">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">noms des unités utilisées pour la mesure.
Les valeurs suggérées comprennent: 1] cm (centimetres) ; 2] mm (millimetres) ; 3] in (inches) ; 4] lines; 5] chars (characters) </a:documentation>
<choice>
<value>cm</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(centimètres) </a:documentation>
<value>mm</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(millimètres) </a:documentation>
<value>in</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(pouces) </a:documentation>
<value>lines</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">lignes de texte</a:documentation>
<value>chars</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"> (characters) caractères du texte</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</choice>
</attribute>
</optional>
</define>
<define name="tei_att.dimensions.attribute.quantity">
<optional>
<attribute name="quantity">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">spécifie la longueur dans les unités indiquées</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="tei_att.dimensions.attribute.extent">
<optional>
<attribute name="extent">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique la dimension de l'objet en utilisant un vocabulaire spécifique à un projet qui combine la quantité et l'unité dans une chaîne seule de mots.</a:documentation>
<data type="string"/>
</attribute>
</optional>
</define>
<define name="tei_att.dimensions.attribute.precision">
<optional>
<attribute name="precision">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">caractérise la précision des valeurs spécifiées par les autres attributs.</a:documentation>
<choice>
<value>high</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>medium</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>low</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>unknown</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
</choice>
</attribute>
</optional>
</define>
<define name="tei_att.dimensions.attribute.scope">
<optional>
<attribute name="scope">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">spécifie l'applicabilité de cette mesure, là où plus d'un objet est mesuré.
Exemple de valeurs possibles: 1] all; 2] most; 3] range</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</attribute>
</optional>
</define>
<define name="tei_att.written.attributes">
<ref name="tei_att.written.attribute.hand"/>
</define>
<define name="tei_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="tei_att.damaged.attributes">
<ref name="tei_att.dimensions.attributes"/>
<ref name="tei_att.written.attributes"/>
<ref name="tei_att.damaged.attribute.agent"/>
<ref name="tei_att.damaged.attribute.degree"/>
<ref name="tei_att.damaged.attribute.group"/>
</define>
<define name="tei_att.damaged.attribute.agent">
<optional>
<attribute name="agent">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">caractérise la raison des dommages, lorsqu'elle peut être identifiée
Exemple de valeurs possibles: 1] rubbing; 2] mildew; 3] smoke</a:documentation>
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</attribute>
</optional>
</define>
<define name="tei_att.damaged.attribute.degree">
<optional>
<attribute name="degree">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique le degré (la gravité) du dommage subi, selon une grille appropriée. L'attribut degree doit être utilisé dans le seul cas où le texte peut être lu avec certitude ; le texte restitué en utilisant d'autres sources doit être encodé au moyen de l'élément supplied.</a:documentation>
<choice>
<data type="double"/>
<choice>
<value>high</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>medium</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>low</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>unknown</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
</choice>
</choice>
</attribute>
</optional>
</define>
<define name="tei_att.damaged.attribute.group">
<optional>
<attribute name="group">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">permet d'assigner un numéro quelconque à chaque fragment endommagé considéré comme faisant partie d'un ensemble résultant du même phénomène physique</a:documentation>
<data type="nonNegativeInteger"/>
</attribute>
</optional>
</define>
<define name="tei_att.breaking.attributes">
<ref name="tei_att.breaking.attribute.break"/>
</define>
<define name="tei_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="tei_att.cReferencing.attributes">
<ref name="tei_att.cReferencing.attribute.cRef"/>
</define>
<define name="tei_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="tei_att.datable.w3c.attributes">
<ref name="tei_att.datable.w3c.attribute.when"/>
<ref name="tei_att.datable.w3c.attribute.notBefore"/>
<ref name="tei_att.datable.w3c.attribute.notAfter"/>
<ref name="tei_att.datable.w3c.attribute.from"/>
<ref name="tei_att.datable.w3c.attribute.to"/>
</define>
<define name="tei_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>
<define name="tei_att.datable.w3c.attribute.notBefore">
<optional>
<attribute name="notBefore">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">spécifie la date la plus ancienne pour l'é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>
<define name="tei_att.datable.w3c.attribute.notAfter">
<optional>
<attribute name="notAfter">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">spécifie la date la plus récente possible pour l'é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>
<define name="tei_att.datable.w3c.attribute.from">
<optional>
<attribute name="from">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique le point de départ d'une période 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>
<define name="tei_att.datable.w3c.attribute.to">
<optional>
<attribute name="to">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique le terme de la période 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="tei-istex-att.datable.w3c-att-datable-w3c-when-constraint-rule-1">
<sch:rule xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@when]">
<sch:report role="nonfatal" test="@notBefore|@notAfter|@from|@to">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="tei-istex-att.datable.w3c-att-datable-w3c-from-constraint-rule-2">
<sch:rule xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@from]">
<sch:report role="nonfatal" test="@notBefore">The @from and @notBefore attributes cannot be used together.</sch:report>
</sch:rule>
</pattern>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="tei-istex-att.datable.w3c-att-datable-w3c-to-constraint-rule-3">
<sch:rule xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@to]">
<sch:report role="nonfatal" test="@notAfter">The @to and @notAfter attributes cannot be used together.</sch:report>
</sch:rule>
</pattern>
<define name="tei_att.datable.attributes">
<ref name="tei_att.datable.w3c.attributes"/>
<ref name="tei_att.datable.iso.attributes"/>
<ref name="tei_att.datable.custom.attributes"/>
<ref name="tei_att.datable.attribute.calendar"/>
<ref name="tei_att.datable.attribute.period"/>
</define>
<define name="tei_att.datable.attribute.calendar">
<optional>
<attribute name="calendar">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indique le système ou le calendrier auquel appartient la date exprimée dans le contenu de l'élément.</a:documentation>
<data type="anyURI"/>
</attribute>
</optional>
</define>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="tei-istex-att.datable-calendar-calendar-constraint-rule-4">
<sch:rule xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns="http://www.tei-c.org/ns/1.0"
context="tei:*[@calendar]">
<sch:assert test="string-length(.) gt 0">
@calendar indicates the system or calendar to which the date represented by the content of this element
belongs, but this <sch:name/> element has no textual content.</sch:assert>
</sch:rule>
</pattern>
<define name="tei_att.datable.attribute.period">
<optional>
<attribute name="period">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">fournit un pointeur vers un emplacement donné définissant une période de temps nommée durant laquelle l'item concerné s'inscrit.</a:documentation>
<data type="anyURI"/>
</attribute>
</optional>
</define>
<define name="tei_att.datcat.attributes">
<ref name="tei_att.datcat.attribute.datcat"/>
<ref name="tei_att.datcat.attribute.valueDatcat"/>
</define>
<define name="tei_att.datcat.attribute.datcat">
<optional>
<attribute name="datcat" ns="http://www.isocat.org/ns/dcr">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">contains a PID (persistent identifier) that aligns the given element with the appropriate Data Category (or categories) in ISOcat.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="tei_att.datcat.attribute.valueDatcat">
<optional>
<attribute name="valueDatcat" ns="http://www.isocat.org/ns/dcr">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">contains a PID (persistent identifier) that aligns the content of the given element or the value of the given attribute with the appropriate simple Data Category (or categories) in ISOcat.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="tei_att.declarable.attributes">
<ref name="tei_att.declarable.attribute.default"/>
</define>
<define name="tei_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="tei_att.declaring.attributes">
<ref name="tei_att.declaring.attribute.decls"/>
</define>
<define name="tei_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="tei_att.fragmentable.attributes">
<ref name="tei_att.fragmentable.attribute.part"/>
</define>
<define name="tei_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="tei_att.divLike.attributes">
<ref name="tei_att.fragmentable.attributes"/>
<ref name="tei_att.divLike.attribute.org"/>
<ref name="tei_att.divLike.attribute.sample"/>
</define>
<define name="tei_att.divLike.attribute.org">
<optional>
<attribute xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
name="org"
a:defaultValue="uniform">
<a:documentation>(organisation) précise l'organisation du contenu de la division</a:documentation>
<choice>
<value>composite</value>
<a:documentation>aucune déclaration n'est faite quant à l'ordre dans lequel les composants de cette division doivent être traités ou bien quant à leurs corrélations</a:documentation>
<value>uniform</value>
<a:documentation>contenu uniforme : c'est-à-dire que les composants de cet élément sont à considérer comme formant une unité logique et doivent être traités dans l'ordre séquentiel</a:documentation>
</choice>
</attribute>
</optional>
</define>
<define name="tei_att.divLike.attribute.sample">
<optional>
<attribute xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
name="sample"
a:defaultValue="complete">
<a:documentation>indique si cette division est un échantillon de la source originale et dans ce cas, de quelle partie.</a:documentation>
<choice>
<value>initial</value>
<a:documentation>par rapport à la source, lacune à la fin de la division</a:documentation>
<value>medial</value>
<a:documentation>par rapport à la source, lacune au début et à la fin de la division</a:documentation>
<value>final</value>
<a:documentation>par rapport à la source, lacune au début de la division</a:documentation>
<value>unknown</value>
<a:documentation>par rapport à la source, position de l'échantillon inconnue</a:documentation>
<value>complete</value>
<a:documentation>la division n'est pas un échantillon</a:documentation>
</choice>
</attribute>
</optional>
</define>
<define name="tei_att.docStatus.attributes">
<ref name="tei_att.docStatus.attribute.status"/>
</define>
<define name="tei_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.
Exemple de valeurs possibles: 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="tei_att.duration.w3c.attributes">
<ref name="tei_att.duration.w3c.attribute.dur"/>
</define>
<define name="tei_att.duration.w3c.attribute.dur">
<optional>
<attribute name="dur">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(durée) indique la longueur de cet élément dans le temps</a:documentation>
<data type="duration"/>
</attribute>
</optional>
</define>
<define name="tei_att.duration.iso.attributes">
<ref name="tei_att.duration.iso.attribute.dur-iso"/>
</define>
<define name="tei_att.duration.iso.attribute.dur-iso">
<optional>
<attribute name="dur-iso">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(durée) indique la longueur de cet élément dans le temps</a:documentation>
<data type="token">
<param name="pattern">[0-9.,DHMPRSTWYZ/:+\-]+</param>
</data>
</attribute>
</optional>
</define>
<define name="tei_att.global.responsibility.attributes">
<ref name="tei_att.global.responsibility.attribute.cert"/>
<ref name="tei_att.global.responsibility.attribute.resp"/>
</define>
<define name="tei_att.global.responsibility.attribute.cert">
<optional>
<attribute name="cert">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(certitude) donne le degré de certitude associée à l'intervention ou à l'interprétation.</a:documentation>
<choice>
<data type="double"/>
<choice>
<value>high</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>medium</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>low</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
<value>unknown</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"/>
</choice>
</choice>
</attribute>
</optional>
</define>
<define name="tei_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="tei_att.editLike.attributes">
<ref name="tei_att.dimensions.attributes"/>
<ref name="tei_att.editLike.attribute.evidence"/>
<ref name="tei_att.editLike.attribute.instant"/>
</define>
<define name="tei_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.
Les valeurs suggérées comprennent: 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="tei_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="tei_att.global.rendition.attributes">
<ref name="tei_att.global.rendition.attribute.rend"/>
<ref name="tei_att.global.rendition.attribute.style"/>
<ref name="tei_att.global.rendition.attribute.rendition"/>
</define>
<define name="tei_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="tei_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="tei_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="tei_att.global.source.attributes">
<ref name="tei_att.global.source.attribute.source"/>
</define>
<define name="tei_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="tei_att.global.attributes">
<ref name="tei_att.global.rendition.attributes"/>
<ref name="tei_att.global.linking.attributes"/>
<ref name="tei_att.global.analytic.attributes"/>
<ref name="tei_att.global.facs.attributes"/>
<ref name="tei_att.global.change.attributes"/>
<ref name="tei_att.global.responsibility.attributes"/>
<ref name="tei_att.global.source.attributes"/>
<ref name="tei_att.global.attribute.xmlid"/>
<ref name="tei_att.global.attribute.n"/>
<ref name="tei_att.global.attribute.xmllang"/>
<ref name="tei_att.global.attribute.xmlbase"/>
<ref name="tei_att.global.attribute.xmlspace"/>
</define>
<define name="tei_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="tei_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="tei_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="tei_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="tei_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="tei_att.handFeatures.attributes">
<ref name="tei_att.handFeatures.attribute.scribe"/>
<ref name="tei_att.handFeatures.attribute.scribeRef"/>
<ref name="tei_att.handFeatures.attribute.script"/>
<ref name="tei_att.handFeatures.attribute.scriptRef"/>
<ref name="tei_att.handFeatures.attribute.medium"/>
<ref name="tei_att.handFeatures.attribute.scope"/>
</define>
<define name="tei_att.handFeatures.attribute.scribe">
<optional>
<attribute name="scribe">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">donne un nom normalisé ou un autre identifiant pour le scribe reconnu comme responsable de cette main.</a:documentation>
<data type="Name"/>
</attribute>
</optional>
</define>
<define name="tei_att.handFeatures.attribute.scribeRef">
<optional>
<attribute name="scribeRef">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">points to a full description of the scribe concerned, typically supplied by a person element elsewhere in the description.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="tei_att.handFeatures.attribute.script">
<optional>
<attribute name="script">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">caractérise la calligraphie ou le style d'écriture particuliers utilisés par cette main, par exemple écriture anglaise, de chancellerie, italienne, etc.</a:documentation>
<list>
<oneOrMore>
<data type="Name"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="tei_att.handFeatures.attribute.scriptRef">
<optional>
<attribute name="scriptRef">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">points to a full description of the script or writing style used by this hand, typically supplied by a scriptNote element elsewhere in the description.</a:documentation>
<list>
<oneOrMore>
<data type="anyURI"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="tei_att.handFeatures.attribute.medium">
<optional>
<attribute name="medium">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">décrit la teinte ou le type d'encre, par exemple brune, ou un autre outil d'écriture, par exemple un crayon.</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="tei_att.handFeatures.attribute.scope">
<optional>
<attribute name="scope">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">Spécifie la fréquence d'apparition de cette main dans le manuscrit.</a:documentation>
<choice>
<value>sole</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">il n'y a que cette main dans le manuscrit.</a:documentation>
<value>major</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">cette main est utilisée dans la majeure partie du manuscrit.</a:documentation>
<value>minor</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">cette main est utilisée occasionnellement dans le manuscrit.</a:documentation>
</choice>
</attribute>
</optional>
</define>
<define name="tei_att.internetMedia.attributes">
<ref name="tei_att.internetMedia.attribute.mimeType"/>
</define>
<define name="tei_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="tei_att.media.attributes">
<ref name="tei_att.internetMedia.attributes"/>
<ref name="tei_att.media.attribute.width"/>
<ref name="tei_att.media.attribute.height"/>
<ref name="tei_att.media.attribute.scale"/>
</define>
<define name="tei_att.media.attribute.width">
<optional>
<attribute name="width">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">Where the media are displayed, indicates the display width</a:documentation>
<data type="token">
<param name="pattern">[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)</param>
</data>
</attribute>
</optional>
</define>
<define name="tei_att.media.attribute.height">
<optional>
<attribute name="height">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">Where the media are displayed, indicates the display height</a:documentation>
<data type="token">
<param name="pattern">[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)</param>
</data>
</attribute>
</optional>
</define>
<define name="tei_att.media.attribute.scale">
<optional>
<attribute name="scale">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">Where the media are displayed, indicates a scale factor to be applied when generating the desired display size</a:documentation>
<choice>
<data type="double"/>
<data type="token">
<param name="pattern">(\-?[\d]+/\-?[\d]+)</param>
</data>
<data type="decimal"/>
</choice>