-
Notifications
You must be signed in to change notification settings - Fork 2
/
cligs.rng
3383 lines (3382 loc) · 142 KB
/
cligs.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"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
ns="http://www.tei-c.org/ns/1.0"><!--
Schema generated from ODD source 2016-01-09T20:00:28Z. August 2012.
TEI Edition: Version 2.9.1. Last updated on
15th October 2015, revision 46ac023
TEI Edition Location: http://www.tei-c.org/Vault/P5/Version 2.9.1/
--><!--This material is dual-licensed.
[http://creativecommons.org/licenses/by-sa/3.0/] Distributed under a Creative Commons Attribution-ShareAlike 3.0 Unported License [http://www.opensource.org/licenses/BSD-2-Clause] Copyright 2013 TEI Consortium.All rights reserved.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.TEI material can be licensed differently depending on the use you intend to make of it. Hence it is made available under both the CC+BY and BSD-2 licences. The CC+BY licence is generally appropriate for usages which treat TEI content as data or documentation. The BSD-2 licence is generally appropriate for usage of TEI content in a software environment. For further information or clarification, please contact the TEI Consortium.--><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="lg"/>
<ref name="model.lLike"/>
</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="data.certainty">
<choice>
<value>high</value>
<value>medium</value>
<value>low</value>
<value>unknown</value>
</choice>
</define>
<define name="data.probability">
<data type="double">
<param name="minInclusive">0</param>
<param name="maxInclusive">1</param>
</data>
</define>
<define name="data.numeric">
<choice>
<data type="double"/>
<data type="token">
<param name="pattern">(\-?[\d]+/\-?[\d]+)</param>
</data>
<data type="decimal"/>
</choice>
</define>
<define name="data.count">
<data type="nonNegativeInteger"/>
</define>
<define name="data.temporal.w3c">
<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>
</define>
<define name="data.xTruthValue">
<choice>
<data type="boolean"/>
<value>unknown</value>
<value>inapplicable</value>
</choice>
</define>
<define name="data.language">
<choice>
<data type="language"/>
<value/>
</choice>
</define>
<define name="data.pointer">
<data type="anyURI"/>
</define>
<define name="data.word">
<data type="token">
<param name="pattern">(\p{L}|\p{N}|\p{P}|\p{S})+</param>
</data>
</define>
<define name="data.text">
<data type="string"/>
</define>
<define name="data.enumerated">
<ref name="data.word"/>
</define>
<define name="data.temporal.iso">
<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"/>
<data type="token">
<param name="pattern">[0-9.,DHMPRSTWYZ/:+\-]+</param>
</data>
</choice>
</define>
<define name="att.ascribed.attributes">
<ref name="att.ascribed.attribute.who"/>
</define>
<define name="att.ascribed.attribute.who">
<optional>
<attribute name="who">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indicates the person, or group of people, to whom the element content is ascribed.</a:documentation>
<list>
<oneOrMore>
<ref name="data.pointer"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.canonical.attributes">
<ref name="att.canonical.attribute.key"/>
<ref name="att.canonical.attribute.ref"/>
</define>
<define name="att.canonical.attribute.key">
<optional>
<attribute name="key">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">provides an externally-defined means of identifying the entity (or entities) being named, using a coded value of some kind.</a:documentation>
<ref name="data.text"/>
</attribute>
</optional>
</define>
<define name="att.canonical.attribute.ref">
<optional>
<attribute name="ref">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(reference) provides an explicit means of locating a full definition or identity for the entity being named by means of one or more URIs.</a:documentation>
<list>
<oneOrMore>
<ref name="data.pointer"/>
</oneOrMore>
</list>
</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">gives a minimum estimated value for the approximate measurement.</a:documentation>
<ref name="data.numeric"/>
</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">gives a maximum estimated value for the approximate measurement.</a:documentation>
<ref name="data.numeric"/>
</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">where the measurement summarizes more than one observation or a range, supplies the minimum value observed.</a:documentation>
<ref name="data.numeric"/>
</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">where the measurement summarizes more than one observation or a range, supplies the maximum value observed.</a:documentation>
<ref name="data.numeric"/>
</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>
<ref name="data.probability"/>
</attribute>
</optional>
</define>
<define name="att.dimensions.attribute.unit">
<optional>
<attribute name="unit">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">names the unit used for the measurement
Suggested values include: 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">(centimetres) </a:documentation>
<value>mm</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(millimetres) </a:documentation>
<value>in</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(inches) </a:documentation>
<value>lines</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">lines of text</a:documentation>
<value>chars</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(characters) characters of text</a:documentation>
<data type="Name"/>
</choice>
</attribute>
</optional>
</define>
<define name="att.dimensions.attribute.quantity">
<optional>
<attribute name="quantity">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">specifies the length in the units specified</a:documentation>
<ref name="data.numeric"/>
</attribute>
</optional>
</define>
<define name="att.dimensions.attribute.extent">
<optional>
<attribute name="extent">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indicates the size of the object concerned using a project-specific vocabulary combining quantity and units in a single string of words.</a:documentation>
<ref name="data.text"/>
</attribute>
</optional>
</define>
<define name="att.dimensions.attribute.precision">
<optional>
<attribute name="precision">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">characterizes the precision of the values specified by the other attributes.</a:documentation>
<ref name="data.certainty"/>
</attribute>
</optional>
</define>
<define name="att.dimensions.attribute.scope">
<optional>
<attribute name="scope">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">where the measurement summarizes more than one observation, specifies the applicability of this measurement.
Sample values include: 1] all; 2] most; 3] range</a:documentation>
<ref name="data.enumerated"/>
</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">(canonical reference) specifies the destination of the pointer by supplying a canonical reference expressed using the scheme defined in a refsDecl element in the TEI header</a:documentation>
<ref name="data.text"/>
</attribute>
</optional>
</define>
<define name="att.datable.w3c.attribute.when">
<optional>
<attribute name="when">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">supplies the value of the date or time in a standard form, e.g. yyyy-mm-dd.</a:documentation>
<ref name="data.temporal.w3c"/>
</attribute>
</optional>
</define>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="cligs-att.datable-calendar-calendar-constraint-1">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns="http://www.tei-c.org/ns/1.0"
xmlns:rng="http://relaxng.org/ns/structure/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="att.datcat.attributes">
<ref name="att.datcat.attribute.datcat"/>
<ref name="att.datcat.attribute.valueDatcat"/>
</define>
<define name="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>
<ref name="data.pointer"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="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>
<ref name="data.pointer"/>
</oneOrMore>
</list>
</attribute>
</optional>
</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>indicates whether or not this element is selected by default when its parent is selected.</a:documentation>
<choice>
<value>true</value>
<a:documentation>This element is selected if its parent is selected</a:documentation>
<value>false</value>
<a:documentation>This element can only be selected explicitly, unless it is the only one of its kind, in which case it is selected if its parent is selected.</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">identifies one or more declarable elements within the header, which are understood to apply to the element bearing this attribute and its content.</a:documentation>
<list>
<oneOrMore>
<ref name="data.pointer"/>
</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.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>
<ref name="data.enumerated"/>
</attribute>
</optional>
</define>
<define name="att.global.responsibility.attributes">
<ref name="att.global.responsibility.attribute.cert"/>
<ref name="att.global.responsibility.attribute.resp"/>
</define>
<define name="att.global.responsibility.attribute.cert">
<optional>
<attribute name="cert">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(certainty) signifies the degree of certainty associated with the intervention or interpretation.</a:documentation>
<ref name="data.certainty"/>
</attribute>
</optional>
</define>
<define name="att.global.responsibility.attribute.resp">
<optional>
<attribute name="resp">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(responsible party) indicates the agency responsible for the intervention or interpretation, for example an editor or transcriber.</a:documentation>
<list>
<oneOrMore>
<ref name="data.pointer"/>
</oneOrMore>
</list>
</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">(rendition) indicates how the element in question was rendered or presented in the source text.</a:documentation>
<list>
<oneOrMore>
<ref name="data.word"/>
</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>
<ref name="data.text"/>
</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">points to a description of the rendering or presentation used for this element in the source text.</a:documentation>
<list>
<oneOrMore>
<ref name="data.pointer"/>
</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.analytic.attributes"/>
<ref name="att.global.facs.attributes"/>
<ref name="att.global.responsibility.attributes"/>
<ref name="att.global.attribute.xmlid"/>
<ref name="att.global.attribute.n"/>
<ref name="att.global.attribute.xmllang"/>
<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">(identifier) provides a unique identifier for the element bearing the attribute.</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">(number) gives a number (or other label) for an element, which is not necessarily unique within the document.</a:documentation>
<ref name="data.text"/>
</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">(language) indicates the language of the element content using a tag generated according to BCP 47.</a:documentation>
<ref name="data.language"/>
</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">signals an intention about how white space should be managed by applications.</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.measurement.attribute.unit">
<optional>
<attribute name="unit">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">indicates the units used for the measurement, usually using the standard symbol for the desired units.
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">(metre) SI base unit of length</a:documentation>
<value>kg</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(kilogram) SI base unit of mass</a:documentation>
<value>s</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(second) SI base unit of time</a:documentation>
<value>Hz</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(hertz) SI unit of frequency</a:documentation>
<value>Pa</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(pascal) SI unit of pressure or stress</a:documentation>
<value>Ω</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(ohm) SI unit of electric resistance</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">(centimetre) </a:documentation>
<value>dB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(decibel) see remarks, below</a:documentation>
<value>kbit</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(kilobit) 10³ or 1000 bits</a:documentation>
<value>Kibit</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(kibibit) 2¹⁰ or 1024 bits</a:documentation>
<value>kB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(kilobyte) 10³ or 1000 bytes</a:documentation>
<value>KiB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(kibibyte) 2¹⁰ or 1024 bytes</a:documentation>
<value>MB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(megabyte) 10⁶ or 1 000 000 bytes</a:documentation>
<value>MiB</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(mebibyte) 2²⁰ or 1 048 576 bytes</a:documentation>
<data type="Name"/>
</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">specifies the number of the specified units that comprise the measurement</a:documentation>
<ref name="data.numeric"/>
</attribute>
</optional>
</define>
<define name="att.naming.attribute.role">
<optional>
<attribute name="role">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">may be used to specify further information about the entity referenced by this name in the form of a set of whitespace-separated values, for example the occupation of a person, or the status of a place.</a:documentation>
<list>
<oneOrMore>
<ref name="data.enumerated"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.naming.attribute.nymRef">
<optional>
<attribute name="nymRef">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">(reference to the canonical name) provides a means of locating the canonical form (nym) of the names associated with the object named by the element bearing it.</a:documentation>
<list>
<oneOrMore>
<ref name="data.pointer"/>
</oneOrMore>
</list>
</attribute>
</optional>
</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">specifies where this item is placed.
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">below the line</a:documentation>
<value>bottom</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">at the foot of the page</a:documentation>
<value>margin</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">in the margin (left, right, or both)</a:documentation>
<value>top</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">at the top of the page</a:documentation>
<value>opposite</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">on the opposite, i.e. facing, page</a:documentation>
<value>overleaf</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">on the other side of the leaf</a:documentation>
<value>above</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">above the line</a:documentation>
<value>end</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">at the end of e.g. chapter or volume.</a:documentation>
<value>inline</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">within the body of the text.</a:documentation>
<value>inspace</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">in a predefined space, for example left by an earlier scribe.</a:documentation>
<data type="Name"/>
</choice>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.typed.attributes">
<ref name="att.typed.attribute.type"/>
<ref name="att.typed.attribute.subtype"/>
</define>
<define name="att.typed.attribute.type">
<optional>
<attribute name="type">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">characterizes the element in some sense, using any convenient classification scheme or typology.</a:documentation>
<ref name="data.enumerated"/>
</attribute>
</optional>
</define>
<define name="att.typed.attribute.subtype">
<optional>
<attribute name="subtype">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">provides a sub-categorization of the element, if needed</a:documentation>
<ref name="data.enumerated"/>
</attribute>
</optional>
</define>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="cligs-att.typed-subtypeTyped-constraint-2">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns="http://www.tei-c.org/ns/1.0"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
context="*[@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.targetLang"/>
<ref name="att.pointing.attribute.target"/>
<ref name="att.pointing.attribute.evaluate"/>
</define>
<define name="att.pointing.attribute.targetLang">
<optional>
<attribute name="targetLang">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">specifies the language of the content to be found at the destination referenced by target, using a language tag generated according to BCP 47.</a:documentation>
<ref name="data.language"/>
</attribute>
</optional>
</define>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="cligs-att.pointing-targetLang-targetLang-constraint-3">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns="http://www.tei-c.org/ns/1.0"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
context="tei:*[not(self::tei:schemaSpec)][@targetLang]">
<sch:assert test="@target">@targetLang should only be used on <sch:name/> if @target is specified.</sch:assert>
</sch:rule>
</pattern>
<define name="att.pointing.attribute.target">
<optional>
<attribute name="target">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">specifies the destination of the reference by supplying one or more URI References</a:documentation>
<list>
<oneOrMore>
<ref name="data.pointer"/>
</oneOrMore>
</list>
</attribute>
</optional>
</define>
<define name="att.pointing.attribute.evaluate">
<optional>
<attribute name="evaluate">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">specifies the intended meaning when the target of a pointer is itself a pointer.</a:documentation>
<choice>
<value>all</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">if the element pointed to is itself a pointer, then the target of that pointer will be taken, and so on, until an element is found which is not a pointer.</a:documentation>
<value>one</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">if the element pointed to is itself a pointer, then its target (whether a pointer or not) is taken as the target of this pointer.</a:documentation>
<value>none</value>
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">no further evaluation of targets is carried out beyond that needed to find the element specified in the pointer's target.</a:documentation>
</choice>
</attribute>
</optional>
</define>
<define name="att.segLike.attributes">
<ref name="att.datcat.attributes"/>
<ref name="att.fragmentable.attributes"/>
<ref name="att.segLike.attribute.function"/>
</define>
<define name="att.segLike.attribute.function">
<optional>
<attribute name="function">
<a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">characterizes the function of the segment.</a:documentation>
<ref name="data.enumerated"/>
</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>
<ref name="data.word"/>
</attribute>
</optional>
</define>
<pattern xmlns="http://purl.oclc.org/dsdl/schematron"
id="cligs-att.spanning-spanTo-spanTo-2-constraint-4">
<sch:rule xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns="http://www.tei-c.org/ns/1.0"
xmlns:rng="http://relaxng.org/ns/structure/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="model.nameLike.agent">
<choice>
<ref name="name"/>
</choice>
</define>
<define name="model.nameLike.agent_alternation">
<choice>
<ref name="name"/>
</choice>
</define>
<define name="model.nameLike.agent_sequence">
<ref name="name"/>
</define>
<define name="model.nameLike.agent_sequenceOptional">
<optional>
<ref name="name"/>
</optional>
</define>
<define name="model.nameLike.agent_sequenceOptionalRepeatable">
<zeroOrMore>
<ref name="name"/>
</zeroOrMore>
</define>
<define name="model.nameLike.agent_sequenceRepeatable">
<oneOrMore>
<ref name="name"/>
</oneOrMore>
</define>
<define name="model.segLike">
<choice>
<ref name="s"/>
<ref name="w"/>
<ref name="seg"/>
</choice>
</define>
<define name="model.hiLike">
<notAllowed/>
</define>
<define name="model.hiLike_alternation">
<notAllowed/>
</define>
<define name="model.hiLike_sequence">
<empty/>
</define>
<define name="model.hiLike_sequenceOptional">
<empty/>
</define>
<define name="model.hiLike_sequenceOptionalRepeatable">
<empty/>
</define>
<define name="model.hiLike_sequenceRepeatable">
<notAllowed/>
</define>
<define name="model.emphLike">
<choice>
<ref name="term"/>
<ref name="title"/>
</choice>
</define>
<define name="model.emphLike_alternation">
<choice>
<ref name="term"/>
<ref name="title"/>
</choice>
</define>
<define name="model.emphLike_sequence">
<ref name="term"/>
<ref name="title"/>
</define>
<define name="model.emphLike_sequenceOptional">
<optional>
<ref name="term"/>
</optional>
<optional>
<ref name="title"/>
</optional>
</define>
<define name="model.emphLike_sequenceOptionalRepeatable">
<zeroOrMore>
<ref name="term"/>
</zeroOrMore>
<zeroOrMore>
<ref name="title"/>
</zeroOrMore>
</define>
<define name="model.emphLike_sequenceRepeatable">
<oneOrMore>
<ref name="term"/>
</oneOrMore>
<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">
<notAllowed/>
</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">
<notAllowed/>
</define>
<define name="model.pPart.transcriptional_alternation">
<notAllowed/>
</define>
<define name="model.pPart.transcriptional_sequence">
<empty/>
</define>
<define name="model.pPart.transcriptional_sequenceOptional">
<empty/>
</define>
<define name="model.pPart.transcriptional_sequenceOptionalRepeatable">
<empty/>
</define>
<define name="model.pPart.transcriptional_sequenceRepeatable">
<notAllowed/>
</define>
<define name="model.pPart.edit">
<choice>
<ref name="model.pPart.editorial"/>
<ref name="model.pPart.transcriptional"/>
</choice>
</define>
<define name="model.ptrLike">
<choice>
<ref name="ref"/>
</choice>
</define>
<define name="model.lPart">
<notAllowed/>
</define>
<define name="model.global.meta">
<notAllowed/>
</define>
<define name="model.milestoneLike">
<choice>
<ref name="milestone"/>
</choice>