forked from artefactual/atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ead.dtd
4612 lines (4378 loc) · 178 KB
/
ead.dtd
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
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- ENCODED ARCHIVAL DESCRIPTION -->
<!-- DOCUMENT TYPE DEFINITION -->
<!-- VERSION 2002 -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- Prepared and Maintained by the -->
<!-- Encoded Archival Description Working Group -->
<!-- of the Society of American Archivists -->
<!-- and the -->
<!-- Network Development and MARC Standards Office -->
<!-- of the Library of Congress -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- Society of American Archivists -->
<!-- Chicago -->
<!-- 2002 -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- Encoded Archival Description Document Type Definition -->
<!-- -->
<!-- -->
<!-- EAD Technical Document No. 1, Part 1 -->
<!-- -->
<!-- -->
<!-- This file constitutes version 2002 of the Encoded Archival -->
<!-- Description Document Type Definition released in September 2002. -->
<!-- Version 2002 of the DTD supersedes version 1.0, released in August -->
<!-- 1998. -->
<!-- -->
<!-- The SAA Encoded Archival Description Working Group is responsible -->
<!-- for updating and editing the EAD DTD (EAD Technical Document No. 1) -->
<!-- and Tag Library (EAD Technical Document No. 2). -->
<!-- -->
<!-- The LC Network Development and MARC Standards Office serves as the -->
<!-- maintenance agency for online EAD documentation, including storage -->
<!-- and delivery of electronic files and maintenance of the EAD Internet -->
<!-- site, located at http://lcweb.loc.gov/ead/. -->
<!-- -->
<!-- Published by the Society of American Archivists. -->
<!-- -->
<!-- Tag Library available from: -->
<!-- -->
<!-- Society of American Archivists -->
<!-- 527 S. Wells Street, 5th floor -->
<!-- Chicago, IL 60607 -->
<!-- -->
<!-- Phone: 312/922-0140 -->
<!-- Fax: 312/347-1452 -->
<!-- Email: [email protected] -->
<!-- Internet: www.archivists.org -->
<!-- -->
<!-- -->
<!-- (c) Society of American Archivists, 2002. All rights reserved. -->
<!-- -->
<!-- ISBN 1-931666-00-8 -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--
PUBLIC IDENTIFIER FOR EAD DTD:
'+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival Description (EAD)
Version 2002)//EN'
-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- INTRODUCTION -->
<!-- -->
<!-- Name: Encoded Archival Description Document Type Definition -->
<!-- File name: ead.dtd -->
<!-- Version: 2002 -->
<!-- Version date: 20021204 -->
<!-- -->
<!-- Editor: Daniel V. Pitti -->
<!-- Institute for Advanced Technology in the Humanities -->
<!-- University of Virginia -->
<!-- -->
<!-- Purpose: To encode that class of archival finding aids known as -->
<!-- inventories and registers, which are reference tools produced -->
<!-- by archives, libraries, universities, associations, agencies, -->
<!-- and other organizations to describe, control, and provide -->
<!-- access to archival and manuscript materials. -->
<!-- -->
<!-- Contact: EAD listserv of the Library of Congress Network -->
<!-- Development and MARC Standards Office. To subscribe to this -->
<!-- listserv, send a one-line message to [email protected] -->
<!-- containing the text: SUBSCRIBE EAD YourName. Once subscribed, -->
<!-- submit messages to [email protected]. -->
<!-- -->
<!-- Official EAD Internet site, located at -->
<!-- http://lcweb.loc.gov/ead/ -->
<!-- -->
<!-- Dependencies: -->
<!-- -->
<!-- XML applications -->
<!-- -->
<!-- ISO Character Entities (Optional) -->
<!-- Added Latin 1 -->
<!-- Added Latin 2 -->
<!-- Alternative Greek Symbols -->
<!-- Diacritical Marks -->
<!-- General Technical -->
<!-- Greek Letters -->
<!-- Greek Symbols -->
<!-- Monotoniko Greek -->
<!-- Non-Russian Cyrillic -->
<!-- Numeric and Special Graphic -->
<!-- Publishing -->
<!-- Russian Cyrillic -->
<!-- -->
<!-- ISO Character Entity files for XML applications can be obtained -->
<!-- at http://www.oasis-open.org/docbook/xmlcharent/ These files -->
<!-- represent the most authoritative source currently available. -->
<!-- Note, though, that revision of the files is not complete, and -->
<!-- thus the site should be monitored for updated files. -->
<!-- -->
<!-- SGML applications -->
<!-- -->
<!-- EAD SGML Declaration -->
<!-- eadsgml.dcl (distributed with ead.dtd) -->
<!-- -->
<!-- ISO Character Entities -->
<!-- Added Latin 1 -->
<!-- Added Latin 2 -->
<!-- Alternative Greek Symbols -->
<!-- Diacritical Marks -->
<!-- General Technical -->
<!-- Greek Letters -->
<!-- Greek Symbols -->
<!-- Monotoniko Greek -->
<!-- Non-Russian Cyrillic -->
<!-- Numeric and Special Graphic -->
<!-- Publishing -->
<!-- Russian Cyrillic -->
<!-- -->
<!-- ISO Character Entity files for SGML applications can be -->
<!-- purchased from the International Standards Organization -->
<!-- (http://www.iso.ch/iso/en/ISOOnline.openerpage), though they -->
<!-- are also distributed with most SGML-compliant software. -->
<!-- Character sets distributed with software should be examined to -->
<!-- determine that the files have not been modified. -->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- SPONSOR INFORMATION -->
<!-- -->
<!-- The EAD is a cooperative effort sponsored by several institutions -->
<!-- and professional associations. Its development has been supported -->
<!-- through a series of fellowships and grants. -->
<!-- -->
<!-- The Society of American Archivists (SAA) through the EAD Working -->
<!-- Group is responsible for the intellectual content of EAD and for -->
<!-- monitoring and assisting in its ongoing development. The working -->
<!-- group includes representatives from the Library of Congress, the -->
<!-- U.S. National Archives and Records Administration, and RLG; and -->
<!-- archivists from Australia, Canada, the Netherlands, France, the -->
<!-- United Kingdom, and the United States. -->
<!-- -->
<!-- The Library of Congress Network Development and MARC Standards -->
<!-- Office is the international maintenance agency for the standard. -->
<!-- -->
<!-- Funding agencies who have contributed generously to the development -->
<!-- of the standard include: -->
<!-- -->
<!-- Department of Education (Title IIA grant) to the University of -->
<!-- California, Berkeley, for developing a prototype encoding standard -->
<!-- and database for finding aids; -->
<!-- -->
<!-- The Library, University of California, Berkeley, for supporting -->
<!-- ongoing development of a community-based standard; -->
<!-- -->
<!-- Commission on Preservation and Access for a three-day conference -->
<!-- (4-6 April 1995) on the Berkeley Finding Aid Project (BFAP); -->
<!-- -->
<!-- University of Michigan Bentley Historical Library, Andrew W. -->
<!-- Mellon Foundation, and the National Endowment for the Humanities -->
<!-- (Division of Preservation and Access) for assembling -->
<!-- representatives from the archival community for a week-long (22-29 -->
<!-- July 1995) Bentley fellowship program to develop design principles -->
<!-- and revise the BFAP data model and DTD; -->
<!-- -->
<!-- Library of Congress National Digital Library Program for -->
<!-- sponsoring a three-day meeting (1-3 November 1995) of the Bentley -->
<!-- team and other experts to review the Bentley model and for -->
<!-- providing the technical support of an SGML consulting firm to make -->
<!-- modifications and supply accompanying documentation for an alpha -->
<!-- version of the DTD; -->
<!-- -->
<!-- Council on Library Resources (now the Council on Library and -->
<!-- Information Resources) for supporting meetings of the EAD -->
<!-- development team in Los Angeles, California (4-6 January 1996) and -->
<!-- Berkeley, California (27-29 April 1996) and for sponsoring the -->
<!-- development of the beta version tag library and application -->
<!-- guidelines and the development and publication of the revised -->
<!-- version 1.0 tag library under the auspices of the Society of -->
<!-- American Archivists; -->
<!-- -->
<!-- Gladys Krieble Delmas Foundation for funding a three-day meeting -->
<!-- (31 October -2 November 1997) of the EAD Working Group to consider -->
<!-- changes to the beta version of the DTD; -->
<!-- -->
<!-- The Institute of Museum and Library Services for funding to -->
<!-- support the writing and publication of the EAD Application -->
<!-- Guidelines under the auspices of the SAA (1999); -->
<!-- -->
<!-- The National Historical Publications and Records Commission for -->
<!-- funding a meeting of the EAD Working Group in Washington, D.C. -->
<!-- (27-29 April 2001) to consider changes from Version 1.0 to Version -->
<!-- 2002 and for publication support for the 2002 tag library. -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- ENCODED ARCHIVAL DESCRIPTION WORKING GROUP -->
<!-- -->
<!-- Past Members -->
<!-- -->
<!-- Jackie Dooley (UC Irvine) 1995-2000 -->
<!-- Wendy Duff (University of Toronto) 1998-2000 -->
<!-- Ricky Erway (RLG) 1997-1998 -->
<!-- Anne Gilliland-Swetland (UCLA) 1995-1998 -->
<!-- Steve Hensen (Duke University) 1995-2000 -->
<!-- Eric Miller (OCLC) 1995-1998 -->
<!-- Chris Petter (University of Victoria, BC) 1997 -->
<!-- Janice Ruth (LC Manuscripts Division) 1995-1998 -->
<!-- Rob Spindler (Arizona State University) 1997-1998 -->
<!-- Meg Sweet (Public Record Office, London) 1996-2002 -->
<!-- Rich Szary (Yale University) 1997-1998 -->
<!-- Sharon Thibodeau (NARA) 1995-1998 -->
<!-- Anne Van Camp (RLG) 1999-2000 -->
<!-- Helena Zinkham (LC Prints and Photographs Division) 1995-1998 -->
<!-- -->
<!-- Current Members (October 2002) -->
<!-- -->
<!-- Randall K. Barry (Library of Congress, Network Development and -->
<!-- MARC Standards Office) 1997- -->
<!-- Catherine Dherent (Direction des Archives de France) 2000- -->
<!-- Michael Fox (Minnesota Historical Society) 1995- -->
<!-- Tim Hutchinson (University of Saskatchewan Archives) 2000- -->
<!-- Kris Kiesling (University of Texas at Austin) 1995- -->
<!-- Bill Landis (UCLA/UC Irvine) 1997- -->
<!-- Gavan McCarthy (University of Melbourne, Australian Science and -->
<!-- Technology Heritage Center) 2000- -->
<!-- Daniel Pitti (University of Virginia) 1995- -->
<!-- Merrilee Proffitt (RLG) 2001- -->
<!-- Lydia J. E. Reid (NARA) 2000- -->
<!-- Henny van Schie (Nationaal Archief, Den Haag) 2002- -->
<!-- Bill Stockting (Public Record Office, London) 2002- -->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- VERSION HISTORY -->
<!-- -->
<!-- ALPHA 0.1 -->
<!-- Daniel V. Pitti, editor -->
<!-- University of California, Berkeley, The Library -->
<!-- Date: 1995-10 -->
<!-- -->
<!-- In October 1993, the University of California, Berkeley Library -->
<!-- began a two-year research and demonstration project to investigate -->
<!-- the desirability and feasibility of developing an encoding -->
<!-- standard for machine-readable finding aids. Daniel V. Pitti, -->
<!-- director of the Berkeley Finding Aid Project (BFAP), wrote the -->
<!-- FindAid DTD and oversaw the creation of a prototype database. -->
<!-- Campbell Crabtree, Tim Hoyer, Gabriela Montoya, Alvin Pollock, and -->
<!-- other Library and Bancroft Library staff assisted Pitti in this -->
<!-- work and in subsequent efforts to develop a community-based -->
<!-- encoding standard. -->
<!-- -->
<!-- In July 1995, Pitti assembled a team of archivists and an SGML -->
<!-- expert to meet at the Bentley Historical Library in Ann Arbor, -->
<!-- Michigan, to analyze the FindAid DTD and data model developed by -->
<!-- the BFAP. The Bentley Team for Encoded Archival Description -->
<!-- Development produced a new data model and the "Ann Arbor Accords: -->
<!-- Principles and Criteria for an SGML Document Type Definition (DTD) -->
<!-- for Finding Aids." These two documents provided the framework for -->
<!-- the initial draft (version 0.1) of the EAD DTD. -->
<!-- -->
<!-- Members of the Bentley team assembled by Pitti were Steven J. -->
<!-- DeRose, Electronic Book Technologies; Jackie Dooley, University of -->
<!-- California, Irvine; Michael J. Fox, Minnesota Historical Society; -->
<!-- Steven Hensen, Duke University; Kris Kiesling, University of Texas -->
<!-- at Austin; Janice E. Ruth, Library of Congress; Sharon Thibodeau, -->
<!-- National Archives and Records Administration; and Helena Zinkham, -->
<!-- Library of Congress. -->
<!-- -->
<!-- ALPHA 0.2 -->
<!-- Daniel V. Pitti, co-editor -->
<!-- University of California, Berkeley, The Library -->
<!-- with the -->
<!-- ATLIS Consulting Group (Debbie Lapeyre) -->
<!-- Rockville, Maryland 20852 -->
<!-- (under contract with the National Digital Library Program, -->
<!-- Library of Congress) -->
<!-- Date: 1995-12 -->
<!-- -->
<!-- The Bentley team together with Debbie Lapeyre of ATLIS Consulting -->
<!-- Group, Anne Gilliland-Swetland of the University of California, -->
<!-- Los Angeles, and Marla Banks, Randall Barry, Beth Davis-Brown, -->
<!-- LeeEllen Friedland, and Belinda Urquiza of the Library of Congress -->
<!-- met in November 1995 at the Library of Congress to review the 0.1 -->
<!-- DTD and describe the results of initial testing. The results of -->
<!-- that meeting are reflected in the 0.2 version of the DTD. -->
<!-- -->
<!-- ALPHA 0.3 -->
<!-- Daniel V. Pitti, co-editor -->
<!-- University of California, Berkeley, The Library -->
<!-- with the -->
<!-- ATLIS Consulting Group (Debbie Lapeyre) -->
<!-- Rockville, Maryland 20852 -->
<!-- (under contract with the National Digital Library Program, -->
<!-- Library of Congress) -->
<!-- Date: 1996-01 -->
<!-- -->
<!-- A subset of the Bentley team (Michael Fox, Steven Hensen, Kris -->
<!-- Kiesling, Daniel Pitti, and Janice Ruth) met with -->
<!-- Gilliland-Swetland and Thomas La Porte, DreamWorks SKG, in January -->
<!-- 1996 at the University of California, Los Angeles to outline the -->
<!-- application guidelines and review the 0.2 DTD and draft tag -->
<!-- library. The simplifications and corrections developed in that -->
<!-- meeting are reflected in version 0.3. -->
<!-- -->
<!-- BETA -->
<!-- Daniel V. Pitti, editor -->
<!-- University of California, Berkeley, The Library -->
<!-- Date: 1996-06 -->
<!-- -->
<!-- On April 27-29, 1996, in Berkeley, California, the original -->
<!-- Bentley Development Team for Encoded Archival Description and -->
<!-- Randall Barry, Anne Gilliland-Swetland, Thomas La Porte, Tim -->
<!-- Hoyer, and Jack Von Euw, University of California, Berkeley, met -->
<!-- to review the draft EAD guidelines and to discuss changes to the -->
<!-- alpha EAD which had been suggested by team members and early -->
<!-- implementors. The corrections and additions developed in that -->
<!-- meeting and in subsequent communication are reflected in the beta -->
<!-- version of the EAD DTD. -->
<!-- -->
<!-- VERSION 1.0 -->
<!-- Daniel V. Pitti, editor -->
<!-- Institute for Advanced Technology in the Humanities, -->
<!-- University of Virginia -->
<!-- Date: 1998-08 -->
<!-- -->
<!-- In June 1997, the EAD Working Group invited the archival community -->
<!-- to submit to the EAD listserv formal comments and suggestions for -->
<!-- changes to the EAD DTD. Comments were collected for three months. -->
<!-- On 31 October- 2 November 1997, the EAD Working Group met in -->
<!-- Washington D.C. to review and consider the submitted suggestions -->
<!-- and comments, and to approve changes to be incorporated into the -->
<!-- Version 1.0 DTD. -->
<!-- -->
<!-- Members of the EAD Working Group meeting in Washington, D.C., were -->
<!-- Kris Kiesling, Chair; Randall Barry; Jackie Dooley; Wendy Duff, -->
<!-- University of Toronto; Ricky Erway, Research Libraries Group; -->
<!-- Michael Fox; Steven Hensen; William Landis, University of -->
<!-- California, Los Angeles; Daniel Pitti, University of Virginia; -->
<!-- Janice Ruth; Robert Spindler, Arizona State University; Meg Sweet, -->
<!-- Public Record Office (UK); Richard Szary, Yale University; Sharon -->
<!-- Thibodeau; and Helena Zinkham. -->
<!-- -->
<!-- VERSION 2002 -->
<!-- Daniel V. Pitti, editor -->
<!-- Institute for Advanced Technology in the Humanities, -->
<!-- University of Virginia -->
<!-- Date: 2002-10 -->
<!-- -->
<!-- In December 2000, the EAD Working Group invited the archival -->
<!-- community to submit to the official EAD web site suggestions for -->
<!-- changes to the Version 1.0 DTD. Comments were collected for three -->
<!-- months (19 December 2000 - 23 March 2001). On 27-29 April 2001, -->
<!-- the Working Group met in Washington, D.C. to review and consider -->
<!-- the 67 submissions and to approve changes to be incorporated into -->
<!-- the Version 2002 DTD. Members of and representatives to the EAD -->
<!-- Working Group meeting in Washington, D.C. were Kris Kiesling, -->
<!-- chair; Randall Barry; Catherine Dherent, Archives de France; -->
<!-- Jackie Dooley; Joanne Evans, University of Melbourne; Michael Fox; -->
<!-- Steven Hensen; Tim Hutchinson, University of Saskatchewan; William -->
<!-- Landis; Daniel Pitti; Merrilee Proffitt, Research Libraries Group; -->
<!-- Lydia Reid, US National Archives and Records Administration; and -->
<!-- Meg Sweet. -->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- CHANGES TO VERSION 1.0
The following conventions are used for brevity and clarity: element names
are represented in angle brackets, e.g., <admininfo>; attribute names are
preceded by @. <c#> is used to represent <c01>-<c12>. NMTOKEN values from
attributes type lists are given in double quotes, e.g., "singlequote".
NO DESCRIPTION OF CHANGE
1. The following elements have been deprecated using conditional sections:
<add>, <admininfo>, <dentry>, <drow>, <organization>, and <tspec>.
Related change(s): see 6, 18, and 19.
2. The following attributes on <archdesc>, <archdescgrp<, <c> and all <c#>
have been deprecated using conditional sections: @langmaterial,
@legalstatus, and @otherlegalstatus.
Related change(s): see 20 and 25.
3. Linking and pointing elements made compatible (though not conformant)
with W3C XML Linking Language (XLink) Version 1.0 (W3C Recommendation 27
June 2001: http://www.w3.org/TR/xlink/). "Compatible" means than the EAD
linking and pointing elements and attributes are not fully compliant with
the XLink recommendation, but are sufficiently structured and semantically
rich to support transformation into compliant elements and attributes
using XSLT or other transformation techniques.
While elements and attributes names may remain unchanged, user should
consult the EAD Tag Library Version 2002 and the W3C XLink Recommendation
for precise semantics.
Revision led to the following changes:
-Created two new elements: <arc> and <resource>. New elements added to
content models of <linkgrp> and <daogrp>.
-<bibref>, <title>, <extref>, <archref> removed from the content models
of <refloc> and <extrefloc> (though retained in the DTD in other content
models).
-Attribute changes affecting <title>, <dao>, <bibref>, <archref>, <ref>,
<extref>, <extptr>, and <ptr>:
o Values "auto" and "user" in the enumerated list of @actuate changed
to "onload", "onrequest", "actuateother", and "actuatenone"
o Attributes @behavior, @content-role, @content-title, and @inline
removed
o Values "showother" and "shownone" added to the enumerated list of
@show.
o Attribute @arcrole added
o Attribute @xlink:form name changed to @linktype
-Attribute changes affecting <linkgrp> and <daogrp>:
o Attributes @content-role, @content-title, and @inline removed
o Attribute @xlink:form name changed to @linktype
-Attribute changes affecting <daoloc>, <ptrloc>, <extptrloc>, <refloc>,
and <extrefloc>:
o Attributes @actuate and @show removed
o Attribute @xlink:form name changed to @linktype
o Added attribute @label
Related change(s): see 4.
4. In order to make the attributes on <note> semantically consistent with
the related attributes on linking and pointing elements, values "auto" and
"user" in the enumerated list of @actuate changed to "onload",
"onrequest".
Related change(s): see 3.
5. New attribute @tpattern of attribute type NMTOKEN added to <dsc>, <c>
and all <c#>.
Related change(s): None.
6. <table>, subelements of <table>, and attributes revised to bring <table>
into conformance with the OASIS XML Exchange Table Model
(http://www.oasis-open.org/specs/tm9901.html)
Changes also applied to functionally similar and <dsc>-tabular elements
(DEPRECATED) <tspec> and <dentry>.
Revision led to the following changes:
-<spanspec> and <tfoot> removed (with impact on <tspec> and <tgroup>).
-@rotate and @spanname removed from <entry> and <dentry>; @orient,
@shortentry, @tabstyle, @tocentry removed from <table>; @char, @charoff,
@tgroupstyle removed from <tgroup>.
Related change(s): see 7.
7. The following attributes have been removed:
@extent and @pubstatus from <title> and <titleproper>
@numbered from <bibliography>
@systemid, @source, and @type from <eadid>.
@othersource from <corpname>, <famname>, <function>, <genreform>,
<geogname>, <name>, <occupation>, <persname>, <subject>, and <title>.
@othertype from <container>.
@othertype from <archdesc> and <archdescgrp>.
Related change(s): see 6, 11, 12, 13 and 35.
8. Values "class" and "subfonds" added to the enumerated list of @level on
<archdesc>, <archdescgrp>, <c> and all <c#>.
Related change(s): see 39.
9. Values "quoted" and "boldquoted" removed from the enumerated list of
@render on <emph>, <title> and <titleproper>.
Related change(s): see 10.
10. Values "singlequote", "doublequote", "bolddoublequote", and
"boldsinglequote" added to the enumerated list of @render on <emph>,
<title> and <titleproper>.
Related change(s): see 9.
11. Changed type of @source from enumerated to NMTOKEN. Attribute @source
is available on the following: <corpname>, <famname>, <function>,
<genreform>, <geogname>, <name>, <occupation>, <persname>, <physdesc>,
<physfacet>, <subject>, and <title>.
Related change(s): see 7 and 33.
12. Changed type of @type on <container> from enumerated to NMTOKEN.
Related change(s): see 7.
13. Changed type of @type on <archdesc> and <archdescgrp> from enumerated
to NMTOKEN.
Related change(s): see 7.
14. Changed type of @findaidstatus on <eadheader> from enumerated to
NMTOKEN.
Related change(s): None.
15. Value "single" removed from the enumerated list of @type on <unitdate>.
Related change(s): see 30.
16. Changed attribute default value of @type on <dsc> from #REQUIRED to
#IMPLIED.
Related change(s): see 40.
17. Added @xmlns (XML NameSpace) to <ead> and <eadgrp>. The attribute is
controlled by a conditional section which by default is IGNORE because of
disagreement and inconsistency concerning interpretation and use of XML
NameSpace in DTD. The attribute is supplied primarily to declare a
NameSpace for EAD, and for use in experimenting with XML Schema and
RelaxNG.
Related change(s): None.
18. Content models of <archdesc>, <archdescgrp>, <c>, and all <c#> modified
to include optionally the descriptive elements formerly available in
<admininfo> and <add>. The following were added to the modified content
models: <accessrestrict>, <accruals>, <acqinfo>, <altformavail>,
<appraisal>, <bibliography>, <custodhist>, <fileplan>, <index>,
<otherfindaid>, <prefercite>, <processinfo>, <relatedmaterial>,
<separatedmaterial>, and <userestrict>. Content models of each revised to
be recursive (in order to match new siblings).
Related change(s): see 1, 19, 23, and 24.
19. Created new element <descgrp> as alternative to deprecated <add> and
<admininfo>. New element added to content models of <archdesc>,
<archdescgrp>, <c>, and all <c#>. Content model of <descgrp> permits
arbitrary grouping of the following descriptive elements:
<accessrestrict>, <accruals>, <acqinfo>, <altformavail>, <appraisal>,
<arrangement>, <bibliography>, <bioghist>, <controlaccess>, <custodhist>,
<descgrp>, <fileplan>, <index>, <odd>, <originalsloc>, <otherfindaid>,
<phystech>, <prefercite>, <processinfo>, <relatedmaterial>,
<scopecontent>, <separatedmaterial>, and <userestrict>.
Related change(s): see 1, 18, 23 and 24.
20. Created new element <langmaterial>. New element added to content model
of <did>, <archref>, and <dentry>. Content model includes repeatable
<language>.
Related change(s): see 2.
21. Added @scriptcode with attribute type NMTOKEN to attribute list of
<language>.
Related change(s): 38.
22. Created new element <materialspec>. New element added to content model
of <did>, <archref>, and <dentry>.
Related change(s): None.
23. Created new element <originalsloc>. New element added to content models
of <archdesc>, <archdescgrp>, <c>, all <c#>, and <descgrp>.
Related change(s): see 18 and 19.
24. Created new element <phystech>. New element added to content models of
<archdesc>, <archdescgrp>, <c>, all <c#>, and <descgrp>.
Related change(s): see 18 and 19.
25. Created new element <legalstatus>. In addition to the common attributes,
<legalstatus> has @type of attribute type NMTOKEN. New element added to
content model of <accessrestrict>.
Related change(s): see 2.
26. Created new element <descrules>. New element added to content model of
<profiledesc>.
Related change(s): see 33.
27. Added attribute @type with attribute type CDATA to attribute list of
<separatedmaterial>, <relatedmaterial>, <genreform>, <note>,
<processinfo>, and <title>.
Related change(s): None.
28. Revised content model of <unittitle> to include <bibseries>, <edition>,
and <imprint>.
Related change(s): None.
29. Revised content model of <indexentry> and <namegrp> to include <title>.
Related change(s): None.
30. Added new attribute @datechar with attribute type CDATA to attribute
list of <unitdate>.
Related change(s): see 15.
31. Added new attributes @calendar with attribute type NMTOKEN and default
value "gregorian"; and @era with attribute type NMTOKEN and default value
"ce" to attribute list of <unitdate> and <date>.
Related change(s): None.
32. Added new attribute @langcode with attribute type NMTOKEN to attribute
list of <abstract>.
Related change(s): see 38.
33. Added new attribute @rules with attribute type NMTOKEN to the attribute
list of <corpname>, <famname>, <function>, <genreform>, <geogname>,
<name>, <occupation>, <persname>, <physdesc>, <physfacet>, <subject>, and
<title>.
Related change(s): see 11 and 26.
34. Added attribute @label with attribute type CDATA to the attribute list
of <dimensions>, <extent>, and <physfacet>.
Related change(s): None.
35. Added the following new attributes to the attribute list of <eadid>:
@countrycode, @identifier, @mainagencycode, @publicid, @url, and @urn.
@identifier, @publicid, @url, and @urn have attribute type CDATA.
@countrycode and @mainagencycode have attribute type NMTOKEN.
Related change(s): see 7.
36. Revised content model of <did> to require at least one of the following:
<abstract>, <container>, <dao>, <daogrp>, <langmaterial>, <materialspec>,
<note>, <origination>, <physdesc>, <physloc>, <repository>, <unitdate>,
<unitid>, or <unittitle>.
Related change(s): None.
37. Added the following new attributes, all with attribute type NMTOKEN, to
the attribute list of <eadheader>: @scriptencoding with default value
"iso15924"; @dateencoding with default value "iso8601"; @countryencoding
with default value "iso3166-1"; and @repositoryencoding with default value
"iso15511". Default value of attribute @langencoding on <eadheader>
changed from #IMPLIED to "iso639-2b" and attribute type changed from CDATA
to NMTOKEN.
Related change(s): None.
38. Added @langcode with attribute type NMTOKEN to the attribute list
of <language>.
Related change(s): see 21 and 32.
39. Attribute type of @otherlevel on <archdesc>, <archdescgrp>, <c> and all
<c#> changed from CDATA to NMTOKEN.
Related change(s): see 8.
40. Attribute type of @othertype on <dsc> changed from CDATA to NMTOKEN.
Related change(s): see 16.
41. Attribute type of @countrycode and @repositorycode on <unitid> changed
from CDATA to NMTOKEN.
Related change(s): None.
-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- CHANGE HISTORY (POST VERSION 2002) -->
<!-- -->
<!-- NUM YYYYMMDD DESCRIPTION OF CHANGE
-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!-- -->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--
PART I
CONDITIONAL SECTION CONTROL
A. Deprecated Elements
B. XML Namespace Attribute
C. Tabular Elements and Attributes
D. SGML SDATA Character Entities
E. XML Character Entities
F. Notation Declarations
G. EADGRP elements and attributes
H. Local Attribute Modification
-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-->
<!--
Conditional Sections are used to control the availability of particular
features in the EAD DTD. Conditional sections include declarations that
may optionally be included or excluded (or ignored) in the dtd, depending
upon whether the keyword INCLUDE or IGNORE is used in defining the
parameter entity controlling the section or sections.
The following sections contain either a parameter entity controlling one
or more conditional sections, or a both such a parameter entity and the
controlled section.
-->
<!--=======================================================================-->
<!--
A. CONDITIONAL SECTION: Deprecated Elements
Version 1.0 elements and attributes deprecated in 2002
Entity name: deprecate
Default: IGNORE
Note: Does not include the deprecated tabular elements in the dsc,
which are separately controlled (below) with conditional sections.
-->
<!--=======================================================================-->
<!ENTITY % deprecate
'IGNORE'
>
<![%deprecate;[
<!ENTITY % m.organization.dep
'organization |'
>
<!ENTITY % m.desc.base.dep
'admininfo | add | '
>
<!ENTITY % a.langmaterial
'langmaterial
CDATA
#IMPLIED'
>
<!ENTITY % a.legalstatus
'legalstatus
(public | private | otherlegalstatus)
#IMPLIED
otherlegalstatus
CDATA
#IMPLIED'
>
]]>
<!--=======================================================================-->
<!--
B. CONDITIONAL SECTION: XML Namespace Attribute
XML Namespace attribute on ead element and eadgrp element
Entity name: namespace
Default: IGNORE
-->
<!--=======================================================================-->
<!ENTITY % namespace
'IGNORE'
>
<![%namespace;[
<!ENTITY % a.ns
'xmlns CDATA #FIXED "urn:isbn:1-931666-00-8"'
>
]]>
<!--=======================================================================-->
<!--
C. CONDITIONAL SECTION: Tabular Elements and Attributes
Tabular elements and attributes on dsc and relevant dsc subelements
Entity name: tabular
Default: IGNORE
-->
<!--=======================================================================-->
<!ENTITY % tabular
'IGNORE'
>
<!--
Conditional sections controlled by %tabular; will be found in element
and attribute sections below.
-->
<!--=======================================================================-->
<!--
D. CONDITIONAL SECTION: SGML SDATA Character Entities
Entity name: sgmlchar
Default: IGNORE
NOTE: if keyword changed to INCLUDE, then XML character entities
conditional section controlled by %xmlchar; will be changed to IGNORE
without further modifications.
-->
<!--=======================================================================-->
<!ENTITY % sgmlchar
'IGNORE'
>
<![%sgmlchar;[
<!ENTITY % xmlchar
'IGNORE'
>
<!ENTITY % isolat1 PUBLIC
'ISO 8879:1986//ENTITIES Added Latin 1//EN'
'isolat1.gml'
>
<!ENTITY % isolat2 PUBLIC
'ISO 8879:1986//ENTITIES Added Latin 2//EN'
'isolat2.gml'
>
<!ENTITY % isonum PUBLIC
'ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN'
'isonum.gml'
>
<!ENTITY % isopub PUBLIC
'ISO 8879:1986//ENTITIES Publishing//EN'
'isopub.gml'
>
<!ENTITY % isotech PUBLIC
'ISO 8879:1986//ENTITIES General Technical//EN'
'isotech.gml'
>
<!ENTITY % isodia PUBLIC
'ISO 8879:1986//ENTITIES Diacritical Marks//EN'
'isodia.gml'
>
<!ENTITY % isocyr1 PUBLIC
'ISO 8879:1986//ENTITIES Russian Cyrillic//EN'
'isocyr1.gml'
>
<!ENTITY % isocyr2 PUBLIC
'ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN'
'isocyr2.gml'
>
<!ENTITY % isogrk1 PUBLIC
'ISO 8879:1986//ENTITIES Greek Letters//EN'
'isogrk1.gml'
>
<!ENTITY % isogrk2 PUBLIC
'ISO 8879:1986//ENTITIES Monotoniko Greek//EN'
'isogrk2.gml'
>
<!ENTITY % isogrk3 PUBLIC
'ISO 8879:1986//ENTITIES Greek Symbols//EN'
'isogrk3.gml'
>
<!ENTITY % isogrk4 PUBLIC
'ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN'
'isogrk4.gml'
>
<!--
Character Entity References
By default, all declared sets are referenced. Sets that are not
needed can be removed our "commented"
-->
%isolat1; %isolat2;
%isonum; %isopub; %isotech; %isodia;
%isocyr1; %isocyr2;
%isogrk1; %isogrk2; %isogrk3; %isogrk4;
]]>
<!--=======================================================================-->
<!--
E. CONDITIONAL SECTION: XML Character Entities
Entity name: xmlchar
Default: IGNORE
-->
<!--=======================================================================-->
<!ENTITY % xmlchar
'IGNORE'
>
<![%xmlchar;[
<!ENTITY % isolat1 PUBLIC
'ISO 8879:1986//ENTITIES Added Latin 1//EN//XML'
'iso-lat1.ent'
>
<!ENTITY % isolat2 PUBLIC
'ISO 8879:1986//ENTITIES Added Latin 2//EN//XML'
'iso-lat2.ent'
>
<!ENTITY % isonum PUBLIC
'ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN//XML'
'iso-num.ent'
>
<!ENTITY % isopub PUBLIC
'ISO 8879:1986//ENTITIES Publishing//EN//XML'
'iso-pub.ent'
>
<!ENTITY % isotech PUBLIC
'ISO 8879:1986//ENTITIES General Technical//EN//XML'
'iso-tech.ent'
>
<!ENTITY % isodia PUBLIC
'ISO 8879:1986//ENTITIES Diacritical Marks//EN//XML'
'iso-dia.ent'
>
<!ENTITY % isocyr1 PUBLIC
'ISO 8879:1986//ENTITIES Russian Cyrillic//EN//XML'
'iso-cyr1.ent'
>
<!ENTITY % isocyr2 PUBLIC
'ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN//XML'
'iso-cyr2.ent'
>
<!ENTITY % isogrk1 PUBLIC
'ISO 8879:1986//ENTITIES Greek Letters//EN//XML'
'iso-grk1.ent'
>
<!ENTITY % isogrk2 PUBLIC
'ISO 8879:1986//ENTITIES Monotoniko Greek//EN//XML'
'iso-grk2.ent'
>
<!ENTITY % isogrk3 PUBLIC
'ISO 8879:1986//ENTITIES Greek Symbols//EN//XML'
'iso-grk3.ent'
>
<!ENTITY % isogrk4 PUBLIC
'ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN//XML'
'iso-grk4.ent'
>
<!--
Character Entity References
By default, all declared sets are referenced. Sets that are not
needed can be removed our "commented"
-->
%isolat1; %isolat2;
%isonum; %isopub; %isotech; %isodia;
%isocyr1; %isocyr2;
%isogrk1; %isogrk2; %isogrk3; %isogrk4;
]]>
<!--=======================================================================-->
<!--
F. CONDITIONAL SECTION: Notation Declarations
Entity name: notation
Default: INCLUDE
-->
<!--=======================================================================-->
<!ENTITY % notation
'INCLUDE'