This repository has been archived by the owner on Feb 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreed.odd
1073 lines (977 loc) · 47.7 KB
/
reed.odd
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"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
<teiHeader>
<fileDesc>
<titleStmt>
<title>REED TEI P5 ODD Customisation</title>
<author xml:id="JC">James Cummings</author>
</titleStmt>
<publicationStmt>
<authority>
<name>James Cummings</name>
<email>James.Cummings@it.ox.ac.uk</email>
</authority>
<availability>
<licence target="https://creativecommons.org/licenses/by/4.0/">Creative Commons
Attribution</licence>
</availability>
</publicationStmt>
<sourceDesc>
<p>This TEI P5 Customisation file was based on exploration of the REED project Fortune
Theatre Documents, then manual customisation based on refinements in discussion and
collaboration with the REED project. The intention is that it should evolve over time.</p>
</sourceDesc>
</fileDesc>
<revisionDesc>
<change when="2016-08-07" who="#JC">Revision of ODD to version 0.3</change>
<change when="2016-05-19" who="#JC">Revision of ODD to version 0.2</change>
<change when="2015-12-21" who="#JC">Creation of ODD to version 0.1</change>
</revisionDesc>
</teiHeader>
<text>
<body>
<!-- No encoding manual is being provided by REED, but this would be where it would go. -->
<div>
<head>Formal Declaration</head>
<schemaSpec ident="REED" start="TEI">
<!-- tei module sets up class structure, etc. -->
<moduleRef key="tei"/>
<!-- analysis module, span and w -->
<moduleRef key="analysis" include="span w"/>
<!-- core module, lots of things. -->
<moduleRef key="core"
include="abbr add addrLine address author bibl biblScope cb choice
cit citedRange corr date del editor expan foreign gap
gloss head hi item label l lb lg list listBibl measure
milestone name note orig p pb ptr pubPlace
publisher quote ref reg relatedItem resp respStmt
rs sic term textLang title unclear"/>
<!-- added 'erasure' to del as per request -->
<elementSpec ident="del" mode="change" module="core">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="semi">
<valItem ident="erasure">
<desc>The deletion in the REED record was an erasure</desc>
</valItem>
<valItem ident="other">
<desc>The deletion in the REED record was of another type. (If you use this more
than a handful of times we should update the TEI ODD Customisation.)</desc>
</valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- abbr: deleted @type from abbr as per request-->
<elementSpec ident="abbr" mode="change" module="core">
<attList>
<attDef ident="type" mode="delete"/>
</attList>
</elementSpec>
<!-- gap: removed previously-used agents -->
<elementSpec ident="gap" mode="change" module="core">
<attList>
<!-- removed suggested agents -->
<!--<attDef ident="agent" mode="change">
<valList mode="add" type="closed">
<valItem ident="crease_line"/>
<valItem ident="erasure"/>
<valItem ident="tear"/>
</valList>
</attDef>-->
<attDef ident="unit" mode="change">
<valList mode="replace" type="closed">
<valItem ident="chars">
<desc>The unit of the gap in this REED record (if known) is measured in
characters</desc>
</valItem>
<valItem ident="lines">
<desc>The unit of the gap in this REED record (if known) is measured in
lines</desc>
</valItem>
<valItem ident="mm">
<desc>The unit of the gap in this REED record (if known) is measured in
millimetres</desc>
</valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- add: -->
<elementSpec ident="add" mode="change" module="core">
<attList>
<attDef ident="place" mode="change">
<valList mode="replace" type="closed">
<valItem ident="below">
<desc>The addition to this REED record was written below the line</desc>
</valItem>
<valItem ident="bottom">
<desc>The addition to this REED record was written at the foot of the
page</desc>
</valItem>
<valItem ident="top">
<desc>The addition to this REED record was written at the top of the page</desc>
</valItem>
<valItem ident="opposite">
<desc>The addition to this REED record was written on the opposite, i.e. facing,
page</desc>
</valItem>
<valItem ident="overleaf">
<desc>The addition to this REED record was written on the other side of the
leaf</desc>
</valItem>
<valItem ident="above">
<desc>The addition to this REED record was written above the line</desc>
</valItem>
<!-- removed as requested -->
<!--<valItem ident="end">
<desc> at the end of e.g. chapter or volume.</desc>
</valItem>
<valItem ident="inline">
<desc>within the body of the text.</desc>
</valItem>-->
<valItem ident="inspace">
<desc>The addition to this REED record was written in a predefined space, for
example left by an earlier scribe.</desc>
</valItem>
<valItem ident="over">
<desc>The addition to this REED record was written over existing text</desc>
</valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- Name: delete lots of attributes -->
<elementSpec ident="name" mode="change" module="core">
<attList>
<attDef ident="calendar" mode="delete"/>
<attDef ident="when" mode="delete"/>
<attDef ident="when-iso" mode="delete"/>
<attDef ident="notBefore-iso" mode="delete"/>
<attDef ident="notAfter-iso" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
<attDef ident="unit" mode="delete"/>
<attDef ident="quantity" mode="delete"/>
<attDef ident="extent" mode="delete"/>
<attDef ident="scope" mode="delete"/>
<attDef ident="source" mode="delete"/>
<!-- commenting out for now as requested to 'leave it open and flexible' -->
<!-- <attDef ident="type" mode="change">
<valList mode="add" type="closed">
<valItem ident="activity">
<desc>name of an activity</desc>
</valItem>
<valItem ident="animal">
<desc>name of a type of animal</desc>
</valItem>
<valItem ident="army">
<desc>name of an army or related</desc>
</valItem>
<valItem ident="character">
<desc>name of a character</desc>
</valItem>
<valItem ident="children">
<desc>name of children</desc>
</valItem>
<valItem ident="council">
<desc>name of a council</desc>
</valItem>
<valItem ident="court_legal">
<desc>name of a court or other legal body</desc>
</valItem>
<valItem ident="document">
<desc>name of a document</desc>
</valItem>
<valItem ident="drink">
<desc>name of a drink</desc>
</valItem>
<valItem ident="foodstuff">
<desc>name of some sort of foodstuff</desc>
</valItem>
<valItem ident="guild">
<desc>name of a guild</desc>
</valItem>
<valItem ident="instrument">
<desc>name of an instrument</desc>
</valItem>
<valItem ident="issue_social">
<desc>name of a social issue</desc>
</valItem>
<valItem ident="man">
<desc>name of a man</desc>
</valItem>
<valItem ident="material_building">
<desc>name of a material or building</desc>
</valItem>
<valItem ident="occasion_event">
<desc>name of an event</desc>
</valItem>
<valItem ident="occasion_religion">
<desc>name of a religious event</desc>
</valItem>
<valItem ident="occasion_tradition">
<desc>name of a traditional event</desc>
</valItem>
<valItem ident="occupation">
<desc>name of an occupation</desc>
</valItem>
<valItem ident="office">
<desc>name of an office</desc>
</valItem>
<valItem ident="place_built">
<desc>name of a built place</desc>
</valItem>
<valItem ident="place_court">
<desc>name of a place of a court</desc>
</valItem>
<valItem ident="place_playing">
<desc>name of a playing place</desc>
</valItem>
<!-\- This would be better done with region -\->
<valItem ident="place_region">
<desc>name of a region</desc>
</valItem>
<valItem ident="place_religion">
<desc>name of a religion</desc>
</valItem>
<!-\- This would be better done with settlement -\->
<valItem ident="place_settlement">
<desc>name of a settlement, town, or city</desc>
</valItem>
<valItem ident="place_sub_settlement">
<desc>name of a sub-settlement, suburb, or area of a city</desc>
</valItem>
<valItem ident="play_title">
<desc>name of a title of a play</desc>
</valItem>
<valItem ident="prop">
<desc>name of a a propr</desc>
</valItem>
<valItem ident="rank">
<desc>name of a rank</desc>
</valItem>
<valItem ident="street">
<desc>name of a street</desc>
</valItem>
<!-\- This would be better done with term -\->
<valItem ident="subject">
<desc>name of a particular subject</desc>
</valItem>
<valItem ident="troupe">
<desc>name of a performing troupe</desc>
</valItem>
<valItem ident="woman">
<desc>name of a woman</desc>
</valItem>
<!-\- This would be better done with title -\->
<valItem ident="work_title">
<desc>name of a title of a work</desc>
</valItem>
<valItem ident="other">
<desc>another non-standard type of name</desc>
</valItem>
</valList>
</attDef>
-->
</attList>
</elementSpec>
<!-- date: modify @type -->
<elementSpec ident="date" mode="change" module="core">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="closed">
<valItem ident="circa">
<desc>The type of date in this REED record is an approximate date</desc>
</valItem>
<valItem ident="old_style">
<desc>The type of date in this REED record is an old style date</desc>
</valItem>
<valItem ident="regnal">
<desc>The type of date in this REED record is a regnal date</desc>
</valItem>
<valItem ident="other">
<desc>The type of date in this REED record is another form of non-standard date</desc>
</valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- expan: delete attributes -->
<elementSpec ident="expan" mode="change" module="core">
<attList>
<attDef ident="unit" mode="delete"/>
<attDef ident="quantity" mode="delete"/>
<attDef ident="extent" mode="delete"/>
<attDef ident="scope" mode="delete"/>
<attDef ident="source" mode="delete"/>
</attList>
</elementSpec>
<!-- note:@place and @type -->
<elementSpec ident="note" mode="change" module="core">
<attList>
<attDef ident="place" mode="change">
<valList mode="add" type="closed">
<valItem ident="bottom">
<desc>The note to this REED Record is provided at the foot of the page</desc>
</valItem>
<valItem ident="margin_left">
<desc>The note to this REED Record is provided in the left margin</desc>
</valItem>
<valItem ident="margin_right">
<desc>The note to this REED Record is provided in the right margin</desc>
</valItem>
<valItem ident="top">
<desc>The note to this REED Record is provided at the top of the page</desc>
</valItem>
<valItem ident="opposite">
<desc>The note to this REED Record is provided on the opposite, i.e. facing, page</desc>
</valItem>
<valItem ident="overleaf">
<desc>The note to this REED Record is provided on the other side of the leaf</desc>
</valItem>
<valItem ident="end">
<desc>The note to this REED Record is provided at the end of e.g. chapter or volume.</desc>
</valItem>
<valItem ident="inline">
<desc>The note to this REED Record is provided within the body of the text.</desc>
</valItem>
<valItem ident="inspace">
<desc>The note to this REED Record is provided in a predefined space, for example left by an earlier scribe.</desc>
</valItem>
<valItem ident="over">
<desc>The note to this REED Record is provided written over existing text</desc>
</valItem>
</valList>
</attDef>
<attDef ident="type" mode="change">
<valList mode="add" type="closed">
<valItem ident="antiquarian_source">
<desc>The note to this REED Record is from antiquarian source</desc>
</valItem>
<valItem ident="edDesc">
<desc>This note is the editorial note on a print source from which record/s were derived</desc>
</valItem>
<valItem ident="foot">
<desc>The note to this REED Record is at the foot of the leaf</desc>
</valItem>
<valItem ident="marginal">
<desc>The note to this REED Record is in the margin</desc>
</valItem>
<!-- Will need to convert Fortuen for standardisation: <valItem ident="marginale"/>-->
<valItem ident="subhead">
<desc>The note to this REED Record is a subheading</desc>
</valItem>
<!-- This is far too specific to STAFF volume - deleting as requested -->
<!-- <valItem ident="court">
<desc>The note to this REED Record is a court-related note</desc>
</valItem> -->
<valItem ident="techDesc">
<desc>This note is the full bibliographic citation for a print source from which record/s were derived</desc>
</valItem>
<valItem ident="editorial">
<desc>The note to this REED Record is an editorial note</desc>
</valItem>
<valItem ident="other">
<desc>The note to this REED Record is another type of note. (If you use this more
than a handful of times we should update the TEI ODD Customisation.)</desc>
</valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- pb: @type -->
<elementSpec ident="pb" mode="change" module="core">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="closed">
<valItem ident="folio">
<desc>The page break in this REED record is the beginning of a new folio</desc>
</valItem>
<valItem ident="membrane">
<desc>The page break in this REED record is the beginning of a new membrane</desc>
</valItem>
<valItem ident="page">
<desc>The page break in this REED record is the beginning of a new page</desc>
</valItem>
<valItem ident="sheet">
<desc>The page break in this REED record is the beginning of a new sheet</desc>
</valItem>
<!-- Need to convert Fortune for consistency: <valItem ident="sig"/>-->
<valItem ident="signature">
<desc>The page break in this REED record is the beginning of new page marked with a signature</desc>
</valItem>
<valItem ident="single_membrane">
<desc>The page break in this REED record is the beginning of a new single_membrane</desc>
</valItem>
<valItem ident="single_sheet">
<desc>The page break in this REED record is the beginning of a new single_sheet</desc>
</valItem>
<valItem ident="other">
<desc>The page break in this REED record is the another type of page break. (If you use this more
than a handful of times we should update the TEI ODD Customisation.)</desc>
</valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- title: -->
<elementSpec ident="title" mode="change" module="core">
<attList>
<attDef ident="level" mode="change">
<valList mode="add" type="closed">
<valItem ident="a">
<desc>analytic level of title</desc>
</valItem>
<valItem ident="j">
<desc>journal or serial level of title</desc>
</valItem>
<valItem ident="m">
<desc>monographic level of title</desc>
</valItem>
</valList>
</attDef>
<attDef ident="type" mode="change">
<valList mode="add" type="closed">
<valItem ident="database">
<desc>title of a database</desc>
</valItem>
<valItem ident="edName">
<desc>This title is the editorially supplied name of record/s derived from a print source</desc>
</valItem>
<valItem ident="journal">
<desc>title of a journal</desc>
</valItem>
<valItem ident="main">
<desc>a main title</desc>
</valItem>
<valItem ident="monograph">
<desc>title of a mongraph</desc>
</valItem>
<valItem ident="pamphlet">
<desc>title of a pamphlet</desc>
</valItem>
<valItem ident="periodical">
<desc>title of a periodical</desc>
</valItem>
<valItem ident="play">
<desc>title of a play</desc>
</valItem>
<valItem ident="record_head">
<desc>title of a record heading</desc>
</valItem>
<valItem ident="section">
<desc>title of a section</desc>
</valItem>
<valItem ident="sourceName">
<desc>This is the title of the print source from which record/s were derived</desc>
</valItem>
<valItem ident="title_page">
<desc>title of a title page</desc>
</valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<moduleRef key="corpus" include="settingDesc" />
<!-- dictionaries -->
<!-- added for glossary work -->
<moduleRef key="dictionaries"
include="entry form
case orth hyph pron gram gramGrp def colloc etym gen hom lang mood number per pos re sense tns syll usg xr "/>
<!-- figures -->
<moduleRef key="figures" include="cell row table figure figDesc"/>
<!-- header module -->
<moduleRef key="header"
include="authority availability calendar calendarDesc catDesc category change classDecl distributor edition editionStmt
editorialDecl encodingDesc fileDesc funder keywords idno langUsage language licence
namespace noteStmt profileDesc projectDesc publicationStmt refsDecl revisionDesc
seriesStmt sourceDesc tagUsage tagsDecl taxonomy teiHeader titleStmt listPrefixDef prefixDef"/>
<!-- idno: @type -->
<elementSpec ident="idno" mode="change" module="header">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="closed">
<valItem ident="authorSurname">
<desc>This idno is an author surname</desc>
</valItem>
<valItem ident="publication">
<desc>This idno is the name of a short-title catalogue</desc>
</valItem>
<valItem ident="pubNumber">
<desc>This idno is a publication given as an ID number</desc>
</valItem>
<valItem ident="repository">
<desc>This idno is a repository given as an ID number</desc>
</valItem>
<!-- remove for consistency <valItem ident="respository"/>-->
<valItem ident="shelfmark">
<desc>This idno is a shelfmark ID number</desc>
</valItem>
<valItem ident="shortTitle">
<desc>This idno is a shortened title</desc>
</valItem>
<valItem ident="other">
<desc>This idno is other ID number. (If you use this more
than a handful of times we should update the TEI ODD Customisation.)</desc>
</valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- licence delete some attributes -->
<elementSpec ident="licence" mode="change" module="header">
<attList>
<attDef ident="when" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
</attList>
</elementSpec>
<!-- change: delete some attributes -->
<elementSpec ident="change" mode="change" module="header">
<attList>
<attDef ident="calendar" mode="delete"/>
<attDef ident="when-iso" mode="delete"/>
<attDef ident="notBefore-iso" mode="delete"/>
<attDef ident="notAfter-iso" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
</attList>
</elementSpec>
<!-- linking module -->
<moduleRef key="linking" include="ab anchor link seg"/>
<!-- Fortune really abuses <link> when they should use <ptr/>-->
<!-- Migration Fortune material to use <ptr/> -->
<!--<elementSpec ident="link" mode="change">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="closed">
<valItem ident="doc_desc"/>
<valItem ident="document_desc"/>
<valItem ident="emlot"/>
<valItem ident="patrons"/>
</valList>
</attDef>
</attList>
</elementSpec>
-->
<!-- ab: REED use of ab is atypical, they use it to structure the record extracts -->
<elementSpec ident="ab" mode="change" module="linking">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="closed">
<!--<valItem ident="body"/>
<valItem ident="body_p"/>
<valItem ident="body_p_exdented"/>
<valItem ident="body_p_indented"/>-->
<valItem ident="edDesc">
<desc>This ab is the editorial note on a manuscript source from which record/s were derived</desc>
</valItem>
<valItem ident="exdent"/>
<valItem ident="indent"/>
<!--<valItem ident="closer"/>-->
<!--<valItem ident="endnote"/>-->
<valItem ident="head"/>
<!-- <valItem ident="heading"/>-->
<valItem ident="initial_letter"/>
<!--<valItem ident="list"/>-->
<!--<valItem ident="marginalia"/>-->
<valItem ident="opener"/>
<!--<valItem ident="play_text"/>-->
<!--<valItem ident="prologue"/>-->
<valItem ident="signature"/>
<!--<valItem ident="sub"/>-->
<valItem ident="subhead"/>
<valItem ident="table"/>
<valItem ident="techDesc">
<desc>This ab is the technical description for a manuscript source from which record/s were derived</desc>
</valItem>
<!--<valItem ident="title_page"/>-->
<valItem ident="other"/>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- seg: type -->
<elementSpec ident="seg" mode="change" module="linking">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="closed">
<valItem ident="closer"/>
<valItem ident="signed"/>
<valItem ident="signed_mark"/>
<valItem ident="table"/>
</valList>
</attDef>
<attDef ident="source" mode="delete"/>
</attList>
</elementSpec>
<!-- delete various att.global.linking attributes-->
<classSpec ident="att.global.linking" module="linking" type="atts" mode="change">
<attList>
<attDef ident="synch" mode="delete"/>
<attDef ident="copyOf" mode="delete"/>
<attDef ident="exclude" mode="delete"/>
<attDef ident="select" mode="delete"/>
</attList>
</classSpec>
<!-- never use @key, use @ref and documented private URIs instead -->
<classSpec ident="att.canonical" module="tei" type="atts" mode="change">
<attList>
<attDef ident="key" mode="delete"/>
</attList>
</classSpec>
<!-- Include all of msdescription -->
<moduleRef key="msdescription"/>
<!-- Non-conformant change to msName to allow rs inside -->
<elementSpec ident="msName" mode="change" module="msdescription">
<content>
<alternate minOccurs="1" maxOccurs="unbounded">
<macroRef key="macro.xtext"/>
<elementRef key="rs"/>
</alternate>
</content>
</elementSpec>
<!-- origDate: delete lots of attributes -->
<elementSpec ident="origDate" mode="change" module="msdescription">
<attList>
<attDef ident="calendar" mode="delete"/>
<attDef ident="when-iso" mode="delete"/>
<attDef ident="notBefore-iso" mode="delete"/>
<attDef ident="notAfter-iso" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
<attDef ident="unit" mode="delete"/>
<attDef ident="quantity" mode="delete"/>
<attDef ident="extent" mode="delete"/>
<attDef ident="scope" mode="delete"/>
</attList>
</elementSpec>
<!-- origin: delete lots of attributes -->
<elementSpec ident="origin" mode="change" module="msdescription">
<attList>
<attDef ident="unit" mode="delete"/>
<attDef ident="quantity" mode="delete"/>
<attDef ident="extent" mode="delete"/>
<attDef ident="scope" mode="delete"/>
<attDef ident="calendar" mode="delete"/>
<attDef ident="when-iso" mode="delete"/>
<attDef ident="notBefore-iso" mode="delete"/>
<attDef ident="notAfter-iso" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
</attList>
</elementSpec>
<!-- delete att.msExcerpt -->
<classSpec ident="att.msExcerpt" module="msdescription" type="atts" mode="delete"/>
<!-- namesdates: only include orgName, persName, placeName, and settlement. Not doing metadata records for named entities...yet-->
<moduleRef key="namesdates" include="orgName persName place placeName settlement"/>
<!-- delete lots of attributes -->
<elementSpec ident="orgName" mode="change" module="namesdates">
<attList>
<attDef ident="calendar" mode="delete"/>
<attDef ident="when-iso" mode="delete"/>
<attDef ident="notBefore-iso" mode="delete"/>
<attDef ident="notAfter-iso" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
<attDef ident="unit" mode="delete"/>
<attDef ident="quantity" mode="delete"/>
<attDef ident="extent" mode="delete"/>
<attDef ident="scope" mode="delete"/>
<attDef ident="source" mode="delete"/>
</attList>
</elementSpec>
<!-- delete lots of attributes -->
<elementSpec ident="persName" mode="change" module="namesdates">
<attList>
<attDef ident="calendar" mode="delete"/>
<attDef ident="when-iso" mode="delete"/>
<attDef ident="notBefore-iso" mode="delete"/>
<attDef ident="notAfter-iso" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
<attDef ident="unit" mode="delete"/>
<attDef ident="quantity" mode="delete"/>
<attDef ident="extent" mode="delete"/>
<attDef ident="scope" mode="delete"/>
<attDef ident="source" mode="delete"/>
</attList>
</elementSpec>
<!-- delete lots of attributes -->
<elementSpec ident="placeName" mode="change" module="namesdates">
<attList>
<attDef ident="calendar" mode="delete"/>
<attDef ident="when-iso" mode="delete"/>
<attDef ident="notBefore-iso" mode="delete"/>
<attDef ident="notAfter-iso" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
<attDef ident="unit" mode="delete"/>
<attDef ident="quantity" mode="delete"/>
<attDef ident="extent" mode="delete"/>
<attDef ident="scope" mode="delete"/>
<attDef ident="source" mode="delete"/>
</attList>
</elementSpec>
<!-- delete lots of attributes -->
<elementSpec ident="settlement" mode="change" module="namesdates">
<attList>
<attDef ident="calendar" mode="delete"/>
<attDef ident="when-iso" mode="delete"/>
<attDef ident="notBefore-iso" mode="delete"/>
<attDef ident="notAfter-iso" mode="delete"/>
<attDef ident="from-iso" mode="delete"/>
<attDef ident="to-iso" mode="delete"/>
</attList>
</elementSpec>
<classSpec ident="att.datable.custom" module="namesdates" type="atts" mode="delete"/>
<classSpec ident="att.cReferencing" module="tei" type="atts" mode="delete"/>
<!-- delete lots of attributes -->
<classSpec ident="att.datable" module="tei" type="atts" mode="change">
<attList>
<attDef ident="when-custom" mode="delete"/>
<attDef ident="notBefore-custom" mode="delete"/>
<attDef ident="notAfter-custom" mode="delete"/>
<attDef ident="from-custom" mode="delete"/>
<attDef ident="to-custom" mode="delete"/>
<attDef ident="datingPoint" mode="delete"/>
<attDef ident="datingMethod" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.datcat" module="tei" type="atts" mode="delete"/>
<classSpec ident="att.declarable" module="tei" type="atts" mode="delete"/>
<classSpec ident="att.declaring" module="tei" type="atts" mode="delete"/>
<classSpec ident="att.divLike" module="tei" type="atts" mode="delete"/>
<classSpec ident="att.duration.iso" module="tei" type="atts" mode="delete"/>
<!-- delete lots of attributes -->
<classSpec ident="att.editLike" module="tei" type="atts" mode="change">
<attList>
<attDef ident="evidence" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.rangin" module="tei" type="atts" mode="change">
<attList>
<attDef ident="atLeast" mode="delete"/>
<attDef ident="atMost" mode="delete"/>
<attDef ident="min" mode="delete"/>
<attDef ident="max" mode="delete"/>
<attDef ident="confidence" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.global.rendition" module="tei" type="atts" mode="change">
<attList>
<attDef ident="style" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.global.change" module="tei" type="atts" mode="change">
<attList>
<attDef ident="change" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.media" module="tei" type="atts" mode="change">
<attList>
<attDef ident="scale" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.interpLike" module="tei" type="atts" mode="delete"/>
<!-- delete lots of attributes -->
<classSpec ident="att.naming" module="tei" type="atts" mode="change">
<attList>
<attDef ident="nymRef" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.pointing" module="tei" type="atts" mode="change">
<attList>
<attDef ident="targetLang" mode="delete"/>
<attDef ident="evaluate" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.pointing.group" module="tei" type="atts" mode="change">
<attList>
<attDef ident="domains" mode="delete"/>
<attDef ident="targFunc" mode="delete"/>
<attDef ident="targetLang" mode="delete"/>
<attDef ident="evaluate" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.segLike" module="tei" type="atts" mode="change">
<attList>
<attDef ident="function" mode="delete"/>
<attDef ident="met" mode="delete"/>
<attDef ident="real" mode="delete"/>
<attDef ident="rhyme" mode="delete"/>
<attDef ident="datcat" mode="delete"/>
<attDef ident="valueDatcat" mode="delete"/>
</attList>
</classSpec>
<!-- delete lots of attributes -->
<classSpec ident="att.timed" module="tei" type="atts" mode="delete"/>
<!-- delete lots of attributes -->
<classSpec ident="att.translatable" module="tei" type="atts" mode="delete"/>
<!-- delete lots of attributes -->
<classSpec ident="att.personal" module="tei" type="atts" mode="change">
<attList>
<attDef ident="nymRef" mode="delete"/>
</attList>
</classSpec>
<!-- tagsdoc module to include code -->
<moduleRef key="tagdocs" include="code"/>
<!-- textstructure module -->
<moduleRef key="textstructure"
include="TEI body div group text floatingText closer front back salute signed trailer"/>
<!-- text: @type -->
<elementSpec ident="text" mode="change" module="textstructure">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="semi">
<valItem ident="record"><desc>The text in this case is a REED record</desc></valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- floatingText: @type -->
<elementSpec ident="floatingText" mode="change" module="textstructure">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="semi">
<valItem ident="record"><desc>The text in this case is a REED record</desc></valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- div -->
<elementSpec ident="div" mode="change" module="textstructure">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="semi">
<valItem ident="appendix"><desc>This REED division is for the Appendix section</desc></valItem>
<valItem ident="endnote"><desc>This REED division is an endnote section</desc></valItem>
<valItem ident="transcription"><desc>This REED division is a transcription</desc></valItem>
<valItem ident="translation"><desc>This REED division is a translation</desc></valItem>
<valItem ident="other"><desc>This REED division is something else. (If you use this more
than a handful of times we should update the TEI ODD Customisation.)</desc></valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- transcription module -->
<moduleRef key="transcr"
include="am addSpan damage delSpan ex fw handShift
space subst supplied surplus"/>
<elementSpec ident="addSpan" mode="change" module="transcr">
<attList>
<attDef ident="scope" mode="delete"/>
</attList>
</elementSpec>
<!-- damage:type and agent -->
<elementSpec ident="damage" mode="change" module="transcr">
<attList>
<attDef ident="type" mode="change">
<valList mode="add" type="semi">
<valItem ident="hole"><desc>This damage is characterised by REED as a hole</desc></valItem>
<valItem ident="other"><desc>This damage is characterised by REED as something else. (If you use this more
than a handful of times we should update the TEI ODD Customisation.)</desc></valItem>
<!--<valItem ident="natural_hole"/>-->
<!-- Other values -->
</valList>
</attDef>
<attDef ident="agent" mode="change">
<valList mode="add" type="semi">
<valItem ident="bookbinding"><desc>The agent of the damage was bookbinding</desc></valItem>
<valItem ident="creasing"><desc>The agent of the damage was creasing</desc></valItem>
<valItem ident="creasing_tearing"><desc>The agent of the damage was creasing/tearing</desc></valItem>
<valItem ident="cropping"><desc>The agent of the damage was cropping</desc></valItem>
<valItem ident="erasure"><desc>The agent of the damage was erasure</desc></valItem>
<valItem ident="fading"><desc>The agent of the damage was fading</desc></valItem>
<!--<valItem ident="hole_natural"/>-->
<valItem ident="smudging"><desc>The agent of the damage was smudging</desc></valItem>
<!--<valItem ident="tear"/>-->
<valItem ident="tearing"><desc>The agent of the damage was tearing</desc></valItem>
<valItem ident="wearing"><desc>The agent of the damage was wearing</desc></valItem>
<!-- other values -->
<valItem ident="other"><desc>There is some other sort of agent for this damage. (If you use this more
than a handful of times we should update the TEI ODD Customisation.)</desc></valItem>
</valList>
</attDef>
</attList>
</elementSpec>
<!-- delete attribute -->
<elementSpec ident="ex" mode="change" module="transcr">
<attList>
<attDef ident="scope" mode="delete"/>
</attList>
</elementSpec>
<!-- fw: place -->
<elementSpec ident="fw" mode="change" module="transcr">