-
Notifications
You must be signed in to change notification settings - Fork 2
/
sample_dictionary.html
2351 lines (2328 loc) · 145 KB
/
sample_dictionary.html
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"?><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Data Dictionary</title><style type="text/css">
.body{
width:700px;
margin-left:auto;
margin-right:auto;
}
/* unvisited link */
a:link {
text-decoration: none;
color: #29aba4;
}
/* visited link */
a:visited {
text-decoration: none;
color: #29aba4;
}
/* mouse over link */
a:hover {
text-decoration: none;
color: #171409;
/*border-bottom: 0.125em solid #000;*/
background-color: #29aba4;
padding: 4px;
color: #FFF;
}
/* selected link */
a:active {
color: #FFF;
}
/* Bulleted Items */
ul{list-style-type: none; margin: 0; padding: 0;}
/* Back to top botton */
.go-top{
font-family: 'Martel', serif;
position: fixed;
bottom: 2em;
right: 2em;
text-decoration: none;
background-color: #eb7260;
padding: 15px;
border: none!important;
color: #FFF!important;
opacity: 0.8;
}
.go-top:hover{
font-family: 'Martel', serif;
opacity: 1;
position: fixed;
text-decoration: none;
background-color: #eb7260;
padding: 15px;
border: none!important;
color: #FFF!important;
opacity: 1;
}
.title{
font-size:xx-large;
font-weight:bold;
margin-top:50px;
}
.header{
padding-top:0.5em;
font-family: 'Martel', serif;
font-size: 12px;
border-bottom: solid 1px lightgray;
margin-bottom: 16px;
margin-top: 70px;
/* This forces section to break to the next line regardless of floats */
clear: both;
}
/* Hero cover potion */
.hero{
width:100%;
background-color: #48A6A1;
margin: 0px;
}
/* Description Paragraph */
.tagline{
width:700px;
margin-left:auto;
margin-right:auto;
margin-bottom:50px;
margin-top:0px;
padding: 55px 0px 55px 0px;
font-family: 'Martel', serif;
font-size: 26px;
color: #FFF;
}
/* Table of Contents */
.attributeTOCLink{font-size: 18px;}
.elementTOCLink{color: gray;}
/* Columns */
div.columns { width: 700px; font-size: 20px; line-height: 32px;}
div.columns div { width: 155px; float: left; }
div.grey { background-color: white; }
div.red { background-color: #white; }
div.clear { clear: both; }
.name{
font-size:large;
font-weight:700;
font-size:40px;
}
.count{
width:50px;
display:inline-block;
float:right;
text-align:right;
padding-right:0.5em;
font-size:medium;
}
.project{
font-size:medium;
margin-top:.5em;
}
.tei_guidelines{
font-size:medium;
margin-top:.5em;
}
.tei_description{
font-family: 'Martel', serif;
font-family:
font-size:medium;
padding-bottom: 10px;
display: block;
}
.label{
font-family: 'Martel', serif;
font-weight:900;
font-size: 15px;
}
.tei_link{
font-size:medium;
font-style:italic;
}
.entry_contents_local{
font-size:medium;
margin-top:.5em;
}
.local_description{
font-size:medium;
font-family: 'Martel', serif;
display: block;
padding-bottom: 10px;
}
.see_also{
font-size:medium;
font-family: 'Martel', serif;
display: inline;
padding-bottom: 10px;
}
.see_also_label{
font-size:medium;
font-family: 'Martel', serif;
font-style:italic;
display: inline;
padding-bottom: 10px;
}
.usage{
font-size:medium;
font-family: 'Martel', serif;
display: inline;
padding-bottom: 10px;
}
.usage_label{
font-size:medium;
font-family: 'Martel', serif;
font-style:italic;
display: inline;
padding-bottom: 10px;
}
.examples{
font-size:medium;
font-family: 'Martel', serif;
display: block;
padding-bottom: 10px;
}
.entry_struct_notes{
font-size:medium;
margin-top:0em;
margin-left:0.5em;
}
.struct_note_marker{
font-weight:600;
}
.entry_local_contained_by{
font-size:medium;
}
.entry_local_may_contain{
font-size:medium;
}
.entry_local_attributes{
font-size:medium;
}
/* Styles for 3 boxes under each element */
.context{line-height: 25px; }
.attributes {overflow: auto;margin-bottom: 15px; float: left; padding-right: 30px;}
.parents{overflow: auto; margin-bottom: 15px; float: left; padding-right: 30px;}
.children{overflow: auto; margin-bottom: 15px;}
/* Handling of example XML code embedded in pages. */
pre.teiCode{
white-space:pre-wrap;
border-top: solid lightgray 1px;
border-bottom: solid lightgray 1px;
padding: 13px 0px 0px 20px;
background-color: #f2ede7;
}
/* Divider between name and gloss */
.divider{color:lightgray; font-size: 40px;}
/* We want our XML code to look like code. */
.xmlTag,
.xmlAttName,
.xmlAttVal,
.teiCode{
font-family:monospace;
}
/* We want our XML code text to be bold. */
.xmlTag,
.xmlAttName,
.xmlAttVal{
font-weight:bold;
}
/* We want syntax highlighting. */
.xmlTag{
color:#000099;
}
.xmlAttName{
color:#f5844c;
}
.xmlAttVal{
color:#993300;
}
/* Joe's new tags (Sean: please keep and/or tweak) */
.giTag{
color:#000099;
font-size:medium;
font-size:18px;
font-family:monospace;
}
.attTag{
color:#f5844c;
font-size:medium;
font-size:18px;
font-family:monospace;
}
.gloss{
color:#48A6A1;
font-size:large;
font-size:30px;
font-weight:300;
}
</style><link href="http://fonts.googleapis.com/css?family=Martel:400,200,300,600,800,700,900" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="hero">
<div class="tagline">
<h1>Data Dictionary</h1>Descriptions of each element and attribute used in the Northwind Traders Papers
Project.
</div>
</div>
<div class="body">
<div class="columns">
<div class="red">
<ul>
<li><a href="#e.TEI">TEI</a></li>
<li><a href="#e.ab">ab</a></li>
<li><a href="#e.abbr">abbr</a></li>
<li><a href="#e.add">add</a></li>
<li><a href="#e.additions">additions</a></li>
<li><a href="#e.body">body</a></li>
<li><a href="#e.change">change</a></li>
<li><a href="#e.choice">choice</a></li>
<li><a href="#e.corr">corr</a></li>
<li><a href="#e.correspAction">correspAction</a></li>
<li><a href="#e.correspDesc">correspDesc</a></li>
<li><a href="#e.date">date</a></li>
<li><a href="#e.del">del</a></li>
<li><a href="#e.distributor">distributor</a></li>
<li><a href="#e.encodingDesc">encodingDesc</a></li>
<li><a href="#e.expan">expan</a></li>
<li><a href="#e.fileDesc">fileDesc</a></li>
<li><a href="#e.gap">gap</a></li>
<li><a href="#e.gi">gi</a></li>
<li><a href="#e.graphic">graphic</a></li>
<li><a href="#e.handShift">handShift</a></li>
</ul>
</div>
<div class="red">
<ul>
<li><a href="#e.hi">hi</a></li>
<li><a href="#e.history">history</a></li>
<li><a href="#e.institution">institution</a></li>
<li><a href="#e.langUsage">langUsage</a></li>
<li><a href="#e.language">language</a></li>
<li><a href="#e.lb">lb</a></li>
<li><a href="#e.listChange">listChange</a></li>
<li><a href="#e.listPrefixDef">listPrefixDef</a></li>
<li><a href="#e.msDesc">msDesc</a></li>
<li><a href="#e.msIdentifier">msIdentifier</a></li>
<li><a href="#e.name">name</a></li>
<li><a href="#e.note">note</a></li>
<li><a href="#e.objectDesc">objectDesc</a></li>
<li><a href="#e.orig">orig</a></li>
<li><a href="#e.origin">origin</a></li>
<li><a href="#e.p">p</a></li>
<li><a href="#e.pb">pb</a></li>
<li><a href="#e.persName">persName</a></li>
<li><a href="#e.physDesc">physDesc</a></li>
<li><a href="#e.placeName">placeName</a></li>
<li><a href="#e.prefixDef">prefixDef</a></li>
</ul>
</div>
<div class="red">
<ul>
<li><a href="#e.profileDesc">profileDesc</a></li>
<li><a href="#e.publicationStmt">publicationStmt</a></li>
<li><a href="#e.reg">reg</a></li>
<li><a href="#e.rendition">rendition</a></li>
<li><a href="#e.repository">repository</a></li>
<li><a href="#e.resp">resp</a></li>
<li><a href="#e.respStmt">respStmt</a></li>
<li><a href="#e.revisionDesc">revisionDesc</a></li>
<li><a href="#e.seg">seg</a></li>
<li><a href="#e.sic">sic</a></li>
<li><a href="#e.sourceDesc">sourceDesc</a></li>
<li><a href="#e.stamp">stamp</a></li>
<li><a href="#e.supplied">supplied</a></li>
<li><a href="#e.tagsDecl">tagsDecl</a></li>
<li><a href="#e.teiCorpus">teiCorpus</a></li>
<li><a href="#e.teiHeader">teiHeader</a></li>
<li><a href="#e.text">text</a></li>
<li><a href="#e.title">title</a></li>
<li><a href="#e.titleStmt">titleStmt</a></li>
<li><a href="#e.unclear">unclear</a></li>
<li><a href="#e.w">w</a></li>
</ul>
</div>
<div class="grey">
<ul>
<li><a class="attributeTOCLink" href="#a.agent">@agent</a></li>
<li><a class="attributeTOCLink" href="#a.cert">@cert</a></li>
<li><a class="attributeTOCLink" href="#a.form">@form</a></li>
<li><a class="attributeTOCLink" href="#a.ident">@ident</a></li>
<li><a class="attributeTOCLink" href="#a.matchPattern">@matchPattern</a></li>
<li><a class="attributeTOCLink" href="#a.n">@n</a></li>
<li><a class="attributeTOCLink" href="#a.reason">@reason</a></li>
<li><a class="attributeTOCLink" href="#a.ref">@ref</a></li>
<li><a class="attributeTOCLink" href="#a.rend">@rend</a></li>
<li><a class="attributeTOCLink" href="#a.replacementPattern">@replacementPattern</a></li>
<li><a class="attributeTOCLink" href="#a.scheme">@scheme</a></li>
<li><a class="attributeTOCLink" href="#a.scribe">@scribe</a></li>
<li><a class="attributeTOCLink" href="#a.type">@type</a></li>
<li><a class="attributeTOCLink" href="#a.url">@url</a></li>
<li><a class="attributeTOCLink" href="#a.when">@when</a></li>
<li><a class="attributeTOCLink" href="#a.who">@who</a></li>
<li><a class="attributeTOCLink" href="#a.xml:id">@xml:id</a></li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="entry" id="e.TEI">
<div class="header"><span class="name">TEI</span><span class="gloss"><span class="divider"> | </span>TEI document</span><span class="count">338</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains a single
TEI-conformant document, containing a single TEI header, a single text, one or
more members of the model.resourceLike class, or a combination of
these. A series of TEI elements may be combined together to
form a teiCorpus element. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-TEI.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">For the Northwind Papers project, the <span class="giTag"><TEI></span>
element represents a discrete object—such as a letter, a journal, or something
else. A unique identifier should be added as an <span class="attTag">@xml:id</span> attribute, so
that the item's contents can be targeted directly within the project.</span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><TEI</span><span class="xmlAttName"> xml:id=</span><span class="xmlAttVal">"l_18350102FMS_WHS1v3"</span><span class="xmlTag">></span> … <span class="xmlTag"></TEI></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="attributes"><span class="label">Attributes: </span><ul>
<li><a href="#a.xml:id" target="_self">@xml:id</a></li>
</ul>
</div>
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.teiCorpus" target="_self">teiCorpus</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.teiHeader" target="_self">teiHeader</a></li>
<li><a href="#e.text" target="_self">text</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.ab">
<div class="header"><span class="name">ab</span><span class="gloss"><span class="divider"> | </span>anonymous block</span><span class="count">338</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains any arbitrary component-level unit of text, acting as an anonymous container
for phrase or inter level elements analogous to, but without the semantic baggage
of, a paragraph. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ab.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Within the <span class="giTag"><text></span> element, <span class="giTag"><ab></span> is used to
enclose transcribed text, which are divided into lines with the <span class="giTag"><lb></span> (line
break) element.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.body" target="_self">body</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.pb" target="_self">pb</a></li>
<li><a href="#e.lb" target="_self">lb</a></li>
<li><a href="#e.hi" target="_self">hi</a></li>
<li><a href="#e.persName" target="_self">persName</a></li>
<li><a href="#e.supplied" target="_self">supplied</a></li>
<li><a href="#e.placeName" target="_self">placeName</a></li>
<li><a href="#e.gap" target="_self">gap</a></li>
<li><a href="#e.title" target="_self">title</a></li>
<li><a href="#e.w" target="_self">w</a></li>
<li><a href="#e.handShift" target="_self">handShift</a></li>
<li><a href="#e.stamp" target="_self">stamp</a></li>
<li><a href="#e.date" target="_self">date</a></li>
<li><a href="#e.unclear" target="_self">unclear</a></li>
<li><a href="#e.note" target="_self">note</a></li>
<li><a href="#e.name" target="_self">name</a></li>
<li><a href="#e.add" target="_self">add</a></li>
<li><a href="#e.choice" target="_self">choice</a></li>
<li><a href="#e.del" target="_self">del</a></li>
<li><a href="#e.seg" target="_self">seg</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.abbr">
<div class="header"><span class="name">abbr</span><span class="gloss"><span class="divider"> | </span>abbreviation</span><span class="count">7</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains an abbreviation of any sort. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-abbr.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Used to identify abbreviations identified in the
transcription, and is always paired with a <span class="giTag"><expan></span> tag.</span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><choice</span><span class="xmlTag">></span>
<span class="xmlTag"><abbr</span><span class="xmlTag">></span> W P—y <span class="xmlTag"></abbr></span>
<span class="xmlTag"><expan</span><span class="xmlTag">></span> Whig Party <span class="xmlTag"></expan></span>
<span class="xmlTag"></choice></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.choice" target="_self">choice</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.hi" target="_self">hi</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.add">
<div class="header"><span class="name">add</span><span class="gloss"><span class="divider"> | </span>addition</span><span class="count">98</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains letters, words, or phrases inserted in the source
text by an author, scribe, or a previous annotator or corrector. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-add.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">The <span class="giTag"><add></span> tag is used to mark up interlined text, and
corresponds to text surrounded with ^carets^ in the transcription file.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.ab" target="_self">ab</a></li>
<li><a href="#e.persName" target="_self">persName</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.placeName" target="_self">placeName</a></li>
<li><a href="#e.del" target="_self">del</a></li>
<li><a href="#e.persName" target="_self">persName</a></li>
<li><a href="#e.hi" target="_self">hi</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.additions">
<div class="header"><span class="name">additions</span><span class="count">267</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains a description of any significant additions found
within a manuscript, such as marginalia or other annotations. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-additions.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">The <span class="giTag"><additions></span> area is used to document materials
attached or included with the text, such as drawings or other letters. Images and
links to transcriptions will be included here.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.physDesc" target="_self">physDesc</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.graphic" target="_self">graphic</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.body">
<div class="header"><span class="name">body</span><span class="gloss"><span class="divider"> | </span>text body</span><span class="count">338</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains the whole body of a single unitary text, excluding any front or back matter. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-body.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">The principal (and in perhaps all cases, entire) contents of
the letter are stored within a single <span class="giTag"><ab></span> element within
<span class="giTag"><body></span>.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.text" target="_self">text</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.ab" target="_self">ab</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.change">
<div class="header"><span class="name">change</span><span class="count">795</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">documents a change or set of changes made during the production
of a source document, or during the revision of an electronic file. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-change.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description"><span class="giTag"><change></span> encodes milestones in the digital history of
each digital file in the Northwind project, such as transcription, conversion to TEI,
and publication. Smaller changes (such as edits to of a couple of lines) are
recorded using commit notes in subversion. This element always appears within
<span class="giTag"><listChange></span>, which is within <span class="giTag"><revisionDesc></span>.</span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><revisionDesc</span><span class="xmlTag">></span>
<span class="xmlTag"><listChange</span><span class="xmlTag">></span>
<span class="xmlTag"><change</span><span class="xmlAttName"> type=</span><span class="xmlAttVal">"transcription"</span><span class="xmlAttName"> when=</span><span class="xmlAttVal">"2014-05-01"</span><span class="xmlAttName"> who=</span><span class="xmlAttVal">"npp:saz"</span><span class="xmlTag">/></span>
<span class="xmlTag"><change</span><span class="xmlAttName"> type=</span><span class="xmlAttVal">"revision"</span><span class="xmlAttName"> when=</span><span class="xmlAttVal">"2014-09-01"</span><span class="xmlAttName"> who=</span><span class="xmlAttVal">"npp:mhr"</span><span class="xmlTag">/></span>
<span class="xmlTag"></listChange></span>
<span class="xmlTag"></revisionDesc></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="attributes"><span class="label">Attributes: </span><ul>
<li><a href="#a.type" target="_self">@type</a></li>
<li><a href="#a.when" target="_self">@when</a></li>
<li><a href="#a.who" target="_self">@who</a></li>
</ul>
</div>
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.listChange" target="_self">listChange</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.choice">
<div class="header"><span class="name">choice</span><span class="count">49</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">groups a number of alternative encodings for the same point in
a text. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-choice.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Groups alternate encodings for matters such as expanded
abbreviations, minppellings, etc.<span class="usage_label"> Usage: </span><span class="usage">Do not use <span class="giTag"><choice></span> in order to address situations relating
to physical damage to the text—use <span class="giTag"><supplied></span> instead.</span><span class="see_also_label"> See also: </span><span class="see_also"><a href="#e.supplied">supplied</a></span></span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><choice</span><span class="xmlTag">></span>
<span class="xmlTag"><sic</span><span class="xmlTag">></span> doged <span class="xmlTag"></sic></span>
<span class="xmlTag"><corr</span><span class="xmlTag">></span> dodged <span class="xmlTag"></corr></span>
<span class="xmlTag"></choice></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.ab" target="_self">ab</a></li>
<li><a href="#e.date" target="_self">date</a></li>
<li><a href="#e.stamp" target="_self">stamp</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.orig" target="_self">orig</a></li>
<li><a href="#e.reg" target="_self">reg</a></li>
<li><a href="#e.sic" target="_self">sic</a></li>
<li><a href="#e.corr" target="_self">corr</a></li>
<li><a href="#e.abbr" target="_self">abbr</a></li>
<li><a href="#e.expan" target="_self">expan</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.corr">
<div class="header"><span class="name">corr</span><span class="gloss"><span class="divider"> | </span>correction</span><span class="count">40</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains the correct form of a passage apparently erroneous in the copy text. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-corr.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Used to correct a minppelling identified in the
transcription, and is always paired with a <span class="giTag"><sic></span> tag. • Used to correct a date provided in a letter.</span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><choice</span><span class="xmlTag">></span>
<span class="xmlTag"><sic</span><span class="xmlTag">></span> doged <span class="xmlTag"></sic></span>
<span class="xmlTag"><corr</span><span class="xmlTag">></span> dodged <span class="xmlTag"></corr></span>
<span class="xmlTag"></choice></span>
<span class="xmlTag"><date</span><span class="xmlAttName"> when=</span><span class="xmlAttVal">"1837-11-29"</span><span class="xmlTag">></span>
<span class="xmlTag"><choice</span><span class="xmlTag">></span>
<span class="xmlTag"><sic</span><span class="xmlTag">></span> Wednesday <span class="xmlTag"></sic></span>
<span class="xmlTag"><corr</span><span class="xmlTag">></span> Thursday <span class="xmlTag"></corr></span>
<span class="xmlTag"></choice></span> Nov 29 <span class="xmlTag"><hi</span><span class="xmlAttName"> rend=</span><span class="xmlAttVal">"superscript"</span><span class="xmlTag">></span> th <span class="xmlTag"></hi></span>
<span class="xmlTag"></date></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.choice" target="_self">choice</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.hi" target="_self">hi</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.correspAction">
<div class="header"><span class="name">correspAction</span><span class="count">676</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains a structured description of the place,
the name of a person/organization and the date related to the sending/receiving of
a message or any other action related to the correspondence <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-correspAction.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Metadata about the sender and the recipient are stored here.
Set the <span class="attTag">@type</span> to "sent" or "received" as appropriate.<span class="see_also_label"> See also: </span><span class="see_also"><a href="#e.origin">origin</a></span></span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="attributes"><span class="label">Attributes: </span><ul>
<li><a href="#a.type" target="_self">@type</a></li>
</ul>
</div>
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.correspDesc" target="_self">correspDesc</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.persName" target="_self">persName</a></li>
<li><a href="#e.placeName" target="_self">placeName</a></li>
<li><a href="#e.date" target="_self">date</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.correspDesc">
<div class="header"><span class="name">correspDesc</span><span class="gloss"><span class="divider"> | </span>correspondence
description</span><span class="count">338</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains a description
of the actions related to one act of correspondence <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-correspDesc.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Metadata about the sender, recipient, their addresses and the
letter’s date are stored here.<span class="see_also_label"> See also: </span><span class="see_also"><a href="#e.origin">origin</a></span></span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><correspDesc</span><span class="xmlTag">></span>
<span class="xmlTag"><correspAction</span><span class="xmlAttName"> type=</span><span class="xmlAttVal">"sent"</span><span class="xmlTag">></span>
<span class="xmlTag"><persName</span><span class="xmlAttName"> ref=</span><span class="xmlAttVal">"psn:NORf_827"</span><span class="xmlTag">/></span>
<span class="xmlTag"><placeName</span><span class="xmlAttName"> ref=</span><span class="xmlAttVal">"pla:FLO_1351"</span><span class="xmlTag">/></span>
<span class="xmlTag"><date</span><span class="xmlAttName"> type=</span><span class="xmlAttVal">"creation"</span><span class="xmlAttName"> when=</span><span class="xmlAttVal">"1830-01-01"</span><span class="xmlTag">/></span>
<span class="xmlTag"></correspAction></span>
<span class="xmlTag"><correspAction</span><span class="xmlAttName"> type=</span><span class="xmlAttVal">"received"</span><span class="xmlTag">></span>
<span class="xmlTag"><persName</span><span class="xmlAttName"> ref=</span><span class="xmlAttVal">"psn:NORw_846"</span><span class="xmlTag">/></span>
<span class="xmlTag"><placeName</span><span class="xmlAttName"> ref=</span><span class="xmlAttVal">"pla:AUB_1319"</span><span class="xmlTag">/></span>
<span class="xmlTag"></correspAction></span>
<span class="xmlTag"></correspDesc></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.profileDesc" target="_self">profileDesc</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.correspAction" target="_self">correspAction</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.date">
<div class="header"><span class="name">date</span><span class="count">688</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains a date in any format. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-date.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Within <span class="giTag"><origin></span>, <span class="giTag"><date></span>records the creation
date of the letter. • Within <span class="giTag"><correspAction></span>, <span class="giTag"><date></span>records the
creation date of the letter. • Within <span class="giTag"><ab></span>, <span class="giTag"><date></span> is being experimentally used to tag dates mentioned in the
letter text.<span class="usage_label"> Usage: </span><span class="usage"><span class="giTag"><date></span> should always contain a <span class="attTag">@when</span> attribute
which encodes the referenced date according to the ISO-8601 <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">"Representation of dates and
times"</a> standard.</span></span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><date</span><span class="xmlAttName"> when=</span><span class="xmlAttVal">"1822-07-08"</span><span class="xmlTag">></span> Monday the 8 <span class="xmlTag"></date></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="attributes"><span class="label">Attributes: </span><ul>
<li><a href="#a.when" target="_self">@when</a></li>
<li><a href="#a.type" target="_self">@type</a></li>
</ul>
</div>
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.origin" target="_self">origin</a></li>
<li><a href="#e.correspAction" target="_self">correspAction</a></li>
<li><a href="#e.ab" target="_self">ab</a></li>
<li><a href="#e.stamp" target="_self">stamp</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.hi" target="_self">hi</a></li>
<li><a href="#e.choice" target="_self">choice</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.del">
<div class="header"><span class="name">del</span><span class="gloss"><span class="divider"> | </span>deletion</span><span class="count">246</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains a letter, word, or passage deleted, marked as deleted, or otherwise indicated
as
superfluous or spurious in the copy text by an author, scribe, or a previous annotator
or corrector. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-del.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">The <span class="giTag"><del></span> tag is used to mark up cancelled text, and
corresponds to text formatted as strikethrough in the transcription file.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.ab" target="_self">ab</a></li>
<li><a href="#e.add" target="_self">add</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.unclear" target="_self">unclear</a></li>
<li><a href="#e.hi" target="_self">hi</a></li>
<li><a href="#e.gap" target="_self">gap</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.distributor">
<div class="header"><span class="name">distributor</span><span class="count">338</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">supplies the name of a person or other agency responsible for the
distribution of a text. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-distributor.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Included within the project header template to identify the
name of our project.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.publicationStmt" target="_self">publicationStmt</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.encodingDesc">
<div class="header"><span class="name">encodingDesc</span><span class="gloss"><span class="divider"> | </span>encoding description</span><span class="count">338</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">documents the relationship between an electronic text and the
source or sources from which it was derived. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-encodingDesc.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Included within the project header template to store
references to the project's -ography files, and to provide machine processing
instructions for <a href="http://teiboilerplate.org" target="_blank">TEI
Boilerplate</a>.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.teiHeader" target="_self">teiHeader</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.listPrefixDef" target="_self">listPrefixDef</a></li>
<li><a href="#e.tagsDecl" target="_self">tagsDecl</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.expan">
<div class="header"><span class="name">expan</span><span class="gloss"><span class="divider"> | </span>expansion</span><span class="count">5</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains the expansion of an abbreviation. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-expan.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Used to expand abbreviations identified in the transcription,
and is always paired with a <span class="giTag"><abbr></span> tag.</span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><choice</span><span class="xmlTag">></span>
<span class="xmlTag"><abbr</span><span class="xmlTag">></span> W P—y <span class="xmlTag"></abbr></span>
<span class="xmlTag"><expan</span><span class="xmlTag">></span> Whig Party <span class="xmlTag"></expan></span>
<span class="xmlTag"></choice></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.choice" target="_self">choice</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.fileDesc">
<div class="header"><span class="name">fileDesc</span><span class="gloss"><span class="divider"> | </span>file description</span><span class="count">339</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains a full bibliographic description of an electronic file. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-fileDesc.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">The location within the project header template where key
metadata tags—in particular the TEI file's <span class="giTag"><title></span> and
<span class="giTag"><respStmt></span>—are stored.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.teiHeader" target="_self">teiHeader</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.titleStmt" target="_self">titleStmt</a></li>
<li><a href="#e.publicationStmt" target="_self">publicationStmt</a></li>
<li><a href="#e.sourceDesc" target="_self">sourceDesc</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.gap">
<div class="header"><span class="name">gap</span><span class="count">58</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">indicates a point where material has been omitted in a transcription, whether for
editorial
reasons described in the TEI header, as part of sampling practice, or because the
material is
illegible, invisible, or inaudible. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-gap.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Indicates places where a portion of transcribed text could
not be provided, perhaps for reasons relating to physical damage or
illegibility.<span class="see_also_label"> See also: </span><span class="see_also"><a href="#e.supplied">supplied</a>, <a href="#e.unclear">unclear</a></span></span><div class="examples"><span class="label">Example(s): </span>
<pre class="teiCode"> the new frames <span class="xmlTag"><gap</span><span class="xmlAttName"> agent=</span><span class="xmlAttVal">"seal"</span><span class="xmlTag">/></span> <span class="xmlTag"><lb</span><span class="xmlTag">/></span> and by whom? </pre></div>
</div>
</div>
<div class="context">
<div class="attributes"><span class="label">Attributes: </span><ul>
<li><a href="#a.agent" target="_self">@agent</a></li>
</ul>
</div>
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.ab" target="_self">ab</a></li>
<li><a href="#e.del" target="_self">del</a></li>
<li><a href="#e.persName" target="_self">persName</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.gi">
<div class="header"><span class="name">gi</span><span class="gloss"><span class="divider"> | </span>element name</span><span class="count">1346</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains the name (generic identifier) of an element. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-gi.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Used in project documentation within the header template to
encode the names of TEI elements.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.p" target="_self">p</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.graphic">
<div class="header"><span class="name">graphic</span><span class="count">267</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">indicates the location of an inline graphic, illustration, or figure. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-graphic.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Within <span class="giTag"><additions></span>, used to encode image file names of
materials included with the letters. • In the near future, will be used within the
<span class="giTag"><facsimile></span> tag to encode image files of the letters.</span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="attributes"><span class="label">Attributes: </span><ul>
<li><a href="#a.n" target="_self">@n</a></li>
<li><a href="#a.url" target="_self">@url</a></li>
</ul>
</div>
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.additions" target="_self">additions</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.handShift">
<div class="header"><span class="name">handShift</span><span class="count">181</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">marks the beginning of a sequence of text written in a new
hand, or the beginning of a scribal stint. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-handShift.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description"><span class="giTag"><handShift></span> is used to indicate the point where
another person's handwriting has taken over from the initial author of the letter.
</span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><handShift</span><span class="xmlAttName"> scribe=</span><span class="xmlAttVal">"psn:NORf_826"</span><span class="xmlTag">/></span> Dearest Father, I've asked mother to allow me to
</pre></div>
</div>
</div>
<div class="context">
<div class="attributes"><span class="label">Attributes: </span><ul>
<li><a href="#a.scribe" target="_self">@scribe</a></li>
<li><a href="#a.cert" target="_self">@cert</a></li>
</ul>
</div>
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.ab" target="_self">ab</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.hi">
<div class="header"><span class="name">hi</span><span class="gloss"><span class="divider"> | </span>highlighted</span><span class="count">1362</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">marks a word or phrase as graphically distinct from the
surrounding text, for reasons concerning which no claim is
made. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-hi.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Used to indicate superscript (e.g., ordinals), underlines, or
any other visually-distinct formatting for text. <span class="giTag"><hi></span> is also used within
our workflow as an intermediary stage for inserted and cancelled text, which
should be encoded using <span class="giTag"><add></span> and <span class="giTag"><del></span>, respectively.<span class="usage_label"> Usage: </span><span class="usage"><span class="giTag"><hi></span> should always include a <span class="attTag">@rend</span> attribute
which describes how the text is visually distinct. Acceptable values include
"superscript", "underline", "underdoubleline", and "subscript".</span></span><div class="examples"></div>
</div>
</div>
<div class="context">
<div class="attributes"><span class="label">Attributes: </span><ul>
<li><a href="#a.rend" target="_self">@rend</a></li>
</ul>
</div>
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.ab" target="_self">ab</a></li>
<li><a href="#e.date" target="_self">date</a></li>
<li><a href="#e.persName" target="_self">persName</a></li>
<li><a href="#e.del" target="_self">del</a></li>
<li><a href="#e.placeName" target="_self">placeName</a></li>
<li><a href="#e.title" target="_self">title</a></li>
<li><a href="#e.sic" target="_self">sic</a></li>
<li><a href="#e.corr" target="_self">corr</a></li>
<li><a href="#e.abbr" target="_self">abbr</a></li>
<li><a href="#e.add" target="_self">add</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.persName" target="_self">persName</a></li>
<li><a href="#e.placeName" target="_self">placeName</a></li>
<li><a href="#e.supplied" target="_self">supplied</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.history">
<div class="header"><span class="name">history</span><span class="count">338</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description"> groups elements
describing the full history of a manuscript or manuscript part. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-history.html">[more]</a></span></div>
<div><span class="label">Project: </span><span class="local_description">Used to describe the origin of a letter, in particular its
creation date. It is likely that <span class="giTag"><history></span> will be deprecated, as its
purpose duplicates <span class="giTag"><correspDesc></span><span class="see_also_label"> See also: </span><span class="see_also"><a href="#e.correspDesc">correspDesc</a></span></span><div class="examples"><span class="label">Example(s): </span><pre class="teiCode">
<span class="xmlTag"><history</span><span class="xmlTag">></span>
<span class="xmlTag"><origin</span><span class="xmlTag">></span>
<span class="xmlTag"><date</span><span class="xmlAttName"> when=</span><span class="xmlAttVal">"1829-07-21"</span><span class="xmlTag">/></span>
<span class="xmlTag"></origin></span>
<span class="xmlTag"></history></span>
</pre></div>
</div>
</div>
<div class="context">
<div class="parents"><span class="label">Contained by: </span><ul>
<li><a href="#e.msDesc" target="_self">msDesc</a></li>
</ul>
</div>
<div class="children"><span class="label">May contain: </span><ul>
<li><a href="#e.origin" target="_self">origin</a></li>
</ul>
</div>
</div>
</div>
<div class="entry" id="e.institution">
<div class="header"><span class="name">institution</span><span class="count">338</span></div>
<div class="descriptions">
<div><span class="label">P5 Guidelines: </span><span class="tei_description">contains the name of an organization such as a university or
library, with which a manuscript is identified, generally its
holding institution. <a target="_blank" href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-institution.html">[more]</a></span></div>