-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path12910.xml
2968 lines (2968 loc) · 171 KB
/
12910.xml
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"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.jmosbornresearch">beinecke.jmosbornresearch</recordid>
<otherrecordid localtype="BIB">16370795</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the James Marshall Osborn Research Files </titleproper>
<titleproper localtype="filing">Osborn (James Marshall) Research Files</titleproper>
<author>Sarah Lerner</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>October 2022</date>
<num>OSB MSS 333</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0, has a MARC record in Yale's ILS with the following bib number: 16370795.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-9, 11-23, 25-29, 31-37</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 10, 24, 30</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:07:46-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:07</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/12910" level="collection">
<did>
<unittitle>James Marshall Osborn Research Files</unittitle>
<unitid>OSB MSS 333</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>27.72</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">37 boxes</physdesc>
<unitdatestructured altrender="1620s-1979" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1620">1620</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<unitdatestructured altrender="1932-1973" label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1973">1973</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_16a3ab6e7863cbc5d427ab6599b7f434">Lecture and class notes, research files and other papers, card indexes, and microfilms compiled by James Marshall Osborn during the course of his studies at Columbia University and Oxford University, as well as his time teaching and curating at Yale University, 1932-1979. Included are Osborn's paleography files, which consist of 296 examples relating to seventeenth-century English government and law. There are also three 16mm silent film reels, two of which are titled "Tour to the Hebrides."</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Osborn, James M. (James Marshall), 1906-1976</part>
</persname>
</origination>
<origination label="Source">
<persname>
<part localtype="agent_person">Osborn, James M. (James Marshall), 1906-1976</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_95e4d07820d66ebeb14125d97cb7fb3d">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
<p>Box 25 (audiovisual material): Restricted fragile material. Reference copies are available. For further information, consult Access Services.</p>
</accessrestrict>
<acqinfo id="aspace_b9412fc426307b2661c1becfb79bc852">
<head>Immediate Source of Acquisition</head>
<p>Bequest of James Marshall Osborn, 1976.</p>
</acqinfo>
<arrangement id="aspace_8eb91acba00c75b54daed2f9fb4cbdc5">
<head>Arrangement</head>
<p>Organized into six series: I. Lecture and Class Notes, 1932-1940. II. Research Files and Other Papers, 1933-1979. III. Paleography Files, circa 1620s. IV. Index Card Files, circa 1940s-1970s. V. Audiovisual Material, 1932-1935. VI. Microfilm, circa 1950s-circa 1970s.</p>
</arrangement>
<bioghist id="aspace_540e93e7aea6de91162f401e4681086f">
<head>Biographical / Historical</head>
<p>James Marshall Osborn, literary historian, founder of the James Marshall and Marie-Louise Osborn Collection at Yale University, and Holstein cattle breeder, was born in Cleveland, Ohio in 1906. He graduated from Wesleyan University in 1928, and joined the investment advisory department of Guaranty Trust in New York. The next year, he married Marie-Louise Montgomery, a graduate of Vassar.</p>
<p>In 1932 Osborn left Guaranty Trust to study for a Master's degree in English at Columbia University. Two years later, the Osborns moved to England with their two sons, and James began to work toward a B.Litt degree at Oxford University. While at Oxford, Osborn pursued his interest in eighteenth-century literary history and began to acquire the literary and historical manuscripts that would form the core of the James Marshall and Marie-Louise Osborn Collection.</p>
<p>Osborn was appointed Research Associate in English at Yale University in 1938; he held the position until his death. He was named Adviser on Seventeenth Century Manuscripts to the Yale Library in 1954, and in 1963, when he began the transfer of his collection to Yale, became the first curator of the Osborn Collection.</p>
<p>Osborn's publications include <title>
<part>The Autobiography of Thomas Whythorne</part>
</title> (1961); an edition of Joseph Spence's <title>
<part>Observations, Anecdotes and Characters</part>
</title> (1966); and <title>
<part>Young Philip Sidney</part>
</title> (1972).</p>
<p>In addition to his scholarly activities, Osborn was also a noted dairy cattle breeder and promoter of Holsteins from 1940 to 1960. He received the D.Litt from Oxford University in 1968, and was named Curator Emeritus of the Osborn Collection in 1972. James Marshall Osborn died in New Haven on October 17, 1976.</p>
</bioghist>
<prefercite id="aspace_791cdb28f7a74101673848438ef85928">
<head>Preferred Citation</head>
<p>James Marshall Osborn Research Files. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_516f1de07681b0cd207a3c820ef175f4">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>These materials have been arranged and described according to national and local standards. For more information, please refer to the Beinecke Manuscript Unit Processing Manual.</p>
</processinfo>
<scopecontent id="aspace_ebbf038972e623241ec9bc29b2b5602e">
<head>Scope and Contents</head>
<p>Lecture and class notes, research files and other papers, card indexes, and microfilms compiled by James Marshall Osborn during the course of his studies at Columbia University and Oxford University, as well as his time teaching and curating at Yale University, 1932-1979. Included are Osborn's paleography files, which consist of 296 examples relating to seventeenth-century English government and law. There are also three 16mm silent film reels, two of which are titled "Tour to the Hebrides."</p>
</scopecontent>
<separatedmaterial id="aspace_fedc82863d80fbaaaf2ccb4e0b078659">
<head>Separated Materials</head>
<p>Printed material received with the collection was removed for separate cataloging and can be accessed by searching the library's online catalog.</p>
</separatedmaterial>
<userestrict id="aspace_58639bc3b79005a844be82b1f11d56b5">
<head>Conditions Governing Use</head>
<p>The James Marshall Osborn Research Files is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<genreform identifier="http://vocab.getty.edu/aat/300027204" source="aat">
<part localtype="genre_form">Lecture notes</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008119581"
source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="temporal">Early modern, 1500-1700</part>
<part localtype="topical">History and criticism</part>
</subject>
<subject source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="temporal">Early modern, 1500-1700</part>
<part localtype="topical">Study and teaching</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008102755"
source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="temporal">18th century</part>
<part localtype="topical">History and criticism</part>
</subject>
<subject source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="temporal">18th century</part>
<part localtype="topical">Study and teaching</part>
</subject>
<subject source="local">
<part localtype="topical">Learning and scholarship</part>
<part localtype="geographic">United States</part>
<part localtype="topical">History</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh86000092"
source="lcsh">
<part localtype="topical">Scholars</part>
<part localtype="geographic">United States</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056889"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Politics and government</part>
<part localtype="temporal">1603-1625</part>
</geogname>
<occupation source="lcsh">
<part localtype="occupation">Scholars</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<subject source="lcsh">
<part localtype="topical">Paleography, English</part>
<part localtype="temporal">17th century</part>
</subject>
<genreform identifier="300263815" source="aat">
<part localtype="genre_form">16mm (photographic film size)</part>
</genreform>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008116925"
source="lcsh">
<part localtype="geographic">Scotland</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Hebrides (Scotland)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300028598" source="aat">
<part localtype="genre_form">Microfilms</part>
</genreform>
<corpname>
<part localtype="agent_corporate_entity">Columbia University</part>
<part localtype="topical">Students</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">University of Oxford</part>
<part localtype="topical">Students</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Yale University</part>
<part localtype="topical">Faculty</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3511318"
id="aspace_21ee7a185ff9f182ab1fe69958c03cff"
level="series">
<did>
<unittitle>Lecture and Class Notes</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1932-1940" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_b6a8dc98a33643fd1afda4e71f221680">
<head>Arrangement</head>
<p>Series I is arranged in the order in which it was received.</p>
</arrangement>
<scopecontent id="aspace_378ccb2c22b37fad249247e2831608de">
<head>Scope and Contents</head>
<p>Series I contains manuscript and typescript lecture and class notes kept by James Marshall Obsorn during his time at Columbia University and Oxford University.</p>
<p>Folder titles were transcribed. Instructor and lecturer names are included in parentheses if present.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3511319"
id="aspace_9abdfc842c3c9e4fae56597241238dee"
level="file">
<did>
<unittitle>Great Scholars, Paleography (Campbell)</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_9abdfc842c3c9e4fae56597241238dee_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9abdfc842c3c9e4fae56597241238dee_c2"
localtype="folder"
parent="aspace_9abdfc842c3c9e4fae56597241238dee_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511320"
id="aspace_cbbc1c12fc11fc1d6b7b8a26deb1f5f3"
level="file">
<did>
<unittitle>Drafts of bibliography lectures</unittitle>
<unitdatestructured altrender="1938 December 10"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1938-12-10">1938 December 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_cbbc1c12fc11fc1d6b7b8a26deb1f5f3_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_cbbc1c12fc11fc1d6b7b8a26deb1f5f3_c2"
localtype="folder"
parent="aspace_cbbc1c12fc11fc1d6b7b8a26deb1f5f3_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511321"
id="aspace_e01a1e9fd38a69b1252d4d5099215050"
level="file">
<did>
<unittitle>History of English Studies (Nichol-Smith)</unittitle>
<unitdatestructured altrender="1934" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">1934</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_e01a1e9fd38a69b1252d4d5099215050_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_e01a1e9fd38a69b1252d4d5099215050_c2"
localtype="folder"
parent="aspace_e01a1e9fd38a69b1252d4d5099215050_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511322"
id="aspace_bd1008bb9a71c99c65eab7df8cbbe88c"
level="file">
<did>
<unittitle>Christian and Pagan Mood in OE Poetry (Mrs. Martin Clarke)</unittitle>
<unitdatestructured altrender="1934" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">1934</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_bd1008bb9a71c99c65eab7df8cbbe88c_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_bd1008bb9a71c99c65eab7df8cbbe88c_c2"
localtype="folder"
parent="aspace_bd1008bb9a71c99c65eab7df8cbbe88c_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511323"
id="aspace_db976b54541c3381ba3a88a3841b8f21"
level="file">
<did>
<unittitle>Textual Criticism</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_db976b54541c3381ba3a88a3841b8f21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_db976b54541c3381ba3a88a3841b8f21_c2"
localtype="folder"
parent="aspace_db976b54541c3381ba3a88a3841b8f21_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511324"
id="aspace_a12f9bcee0e47fffc5c969678b5a596b"
level="file">
<did>
<unittitle>History of English Studies (Nichol-Smith)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1937</unitdate>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_a12f9bcee0e47fffc5c969678b5a596b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a12f9bcee0e47fffc5c969678b5a596b_c2"
localtype="folder"
parent="aspace_a12f9bcee0e47fffc5c969678b5a596b_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511325"
id="aspace_643b0a403feae57d2b5ef33eb1a9a9f8"
level="file">
<did>
<unittitle>History versus criticism in the university study of literature (Crane)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_643b0a403feae57d2b5ef33eb1a9a9f8_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_643b0a403feae57d2b5ef33eb1a9a9f8_c2"
localtype="folder"
parent="aspace_643b0a403feae57d2b5ef33eb1a9a9f8_c1">7-8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511326"
id="aspace_ae02065e59a35067e5c06215a18f211c"
level="file">
<did>
<unittitle>Dryden, Swift & Defoe (Wolff)</unittitle>
<unitdatestructured altrender="1932" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1932">1932</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_ae02065e59a35067e5c06215a18f211c_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ae02065e59a35067e5c06215a18f211c_c2"
localtype="folder"
parent="aspace_ae02065e59a35067e5c06215a18f211c_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511327"
id="aspace_6cc656832aabc7153f5fe33cd36273f0"
level="file">
<did>
<unittitle>Literary Criticism</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1935</unitdate>
<container altrender="/repositories/11/top_containers/389659 /locations/9"
containerid="39002136829950"
encodinganalog="archive letter"
id="aspace_6cc656832aabc7153f5fe33cd36273f0_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6cc656832aabc7153f5fe33cd36273f0_c2"
localtype="folder"
parent="aspace_6cc656832aabc7153f5fe33cd36273f0_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511328"
id="aspace_e312419e9f7b519cedcc98a3fa159044"
level="file">
<did>
<unittitle>Economic History 1700-1850 (Clark)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_e312419e9f7b519cedcc98a3fa159044_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e312419e9f7b519cedcc98a3fa159044_c2"
localtype="folder"
parent="aspace_e312419e9f7b519cedcc98a3fa159044_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511329"
id="aspace_56a610b5c39d4b0c5680ff2f8faf86d9"
level="file">
<did>
<unittitle>Dr. Johnson (Nichol-Smith and Fletcher)</unittitle>
<unitdatestructured altrender="1936" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1936">1936</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_56a610b5c39d4b0c5680ff2f8faf86d9_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_56a610b5c39d4b0c5680ff2f8faf86d9_c2"
localtype="folder"
parent="aspace_56a610b5c39d4b0c5680ff2f8faf86d9_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511330"
id="aspace_55b983971d5ead760ceef9179cdbfedd"
level="file">
<did>
<unittitle>Medieval (Lewis)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_55b983971d5ead760ceef9179cdbfedd_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_55b983971d5ead760ceef9179cdbfedd_c2"
localtype="folder"
parent="aspace_55b983971d5ead760ceef9179cdbfedd_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511331"
id="aspace_25c5ad28a6abf698f7f08822415b89f3"
level="file">
<did>
<unittitle>English Economic History 1660-1760 (Clark)</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_25c5ad28a6abf698f7f08822415b89f3_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_25c5ad28a6abf698f7f08822415b89f3_c2"
localtype="folder"
parent="aspace_25c5ad28a6abf698f7f08822415b89f3_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511332"
id="aspace_92240b3788ee4575ee99a26a34600201"
level="file">
<did>
<unittitle>Resources of the Bodleian (Brett-Smith)</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_92240b3788ee4575ee99a26a34600201_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_92240b3788ee4575ee99a26a34600201_c2"
localtype="folder"
parent="aspace_92240b3788ee4575ee99a26a34600201_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511333"
id="aspace_e6de54db91f05902e55e2237f5700037"
level="file">
<did>
<unittitle>Donne and Metaphysical Poetry (Fletcher)</unittitle>
<unitdatestructured altrender="1936" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1936">1936</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_e6de54db91f05902e55e2237f5700037_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e6de54db91f05902e55e2237f5700037_c2"
localtype="folder"
parent="aspace_e6de54db91f05902e55e2237f5700037_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511334"
id="aspace_f34377cb62f555003f11698550517faa"
level="file">
<did>
<unittitle>The Interaction of Intellectual and Economic Movements 1550-1750 (Clark)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_f34377cb62f555003f11698550517faa_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_f34377cb62f555003f11698550517faa_c2"
localtype="folder"
parent="aspace_f34377cb62f555003f11698550517faa_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511335"
id="aspace_0dffe35a2896f3a7aff1aab12e311d95"
level="file">
<did>
<unittitle>Religion in England from 1660-1760 (Brewis)</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_0dffe35a2896f3a7aff1aab12e311d95_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_0dffe35a2896f3a7aff1aab12e311d95_c2"
localtype="folder"
parent="aspace_0dffe35a2896f3a7aff1aab12e311d95_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511336"
id="aspace_ba8e7c3ca06045df39df261d3299e12d"
level="file">
<did>
<unittitle>Bibliography (Gibson)</unittitle>
<unitdatestructured altrender="1937" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_ba8e7c3ca06045df39df261d3299e12d_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ba8e7c3ca06045df39df261d3299e12d_c2"
localtype="folder"
parent="aspace_ba8e7c3ca06045df39df261d3299e12d_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511337"
id="aspace_e9ada8446fd05a849da96bc85d4410b2"
level="file">
<did>
<unittitle>"The Evidence of Illustrations" (Dr. Edward Hodnett)</unittitle>
<unitdatestructured altrender="1940 September 10"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1940-09-10">1940 September 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_e9ada8446fd05a849da96bc85d4410b2_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e9ada8446fd05a849da96bc85d4410b2_c2"
localtype="folder"
parent="aspace_e9ada8446fd05a849da96bc85d4410b2_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511338"
id="aspace_2bdfc4eb00e895927e46fe37e97b2950"
level="file">
<did>
<unittitle>"The Evidence of Type and Printing House Practice" (Carl Purington Rollins)</unittitle>
<unitdatestructured altrender="1940 September 9"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1940-09-09">1940 September 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_2bdfc4eb00e895927e46fe37e97b2950_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_2bdfc4eb00e895927e46fe37e97b2950_c2"
localtype="folder"
parent="aspace_2bdfc4eb00e895927e46fe37e97b2950_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511339"
id="aspace_2f51251447cbcaba9d76a9892de7e8be"
level="file">
<did>
<unittitle>"Problems in the Priority of Editions and Issues" (R. H. Griffith)</unittitle>
<unitdatestructured altrender="1940 September 11"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1940-09-11">1940 September 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_2f51251447cbcaba9d76a9892de7e8be_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_2f51251447cbcaba9d76a9892de7e8be_c2"
localtype="folder"
parent="aspace_2f51251447cbcaba9d76a9892de7e8be_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511340"
id="aspace_b1b5e2cfee3ffe132a9b3e1bff5e9572"
level="file">
<did>
<unittitle>The Reign of James II (Ogg)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389660 /locations/9"
containerid="39002136829943"
encodinganalog="archive letter"
id="aspace_b1b5e2cfee3ffe132a9b3e1bff5e9572_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_b1b5e2cfee3ffe132a9b3e1bff5e9572_c2"
localtype="folder"
parent="aspace_b1b5e2cfee3ffe132a9b3e1bff5e9572_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511341"
id="aspace_51e2d86febdb3598c239aef8577b3b9a"
level="file">
<did>
<unittitle>Colloquial English in the Days of Dryden and Milton (Wyld)</unittitle>
<unitdatestructured altrender="1934-1935" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_51e2d86febdb3598c239aef8577b3b9a_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_51e2d86febdb3598c239aef8577b3b9a_c2"
localtype="folder"
parent="aspace_51e2d86febdb3598c239aef8577b3b9a_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511342"
id="aspace_170f1a8ba08c94c9a0a535e6f8a7e0f1"
level="file">
<did>
<unittitle>Lesser Eighteenth Century Poets (Lascelles)</unittitle>
<unitdatestructured altrender="1936" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1936">1936</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_170f1a8ba08c94c9a0a535e6f8a7e0f1_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_170f1a8ba08c94c9a0a535e6f8a7e0f1_c2"
localtype="folder"
parent="aspace_170f1a8ba08c94c9a0a535e6f8a7e0f1_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511343"
id="aspace_403bcc66e976cef2945f514c7d47d07b"
level="file">
<did>
<unittitle>Medieval (Lawrence)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_403bcc66e976cef2945f514c7d47d07b_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_403bcc66e976cef2945f514c7d47d07b_c2"
localtype="folder"
parent="aspace_403bcc66e976cef2945f514c7d47d07b_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511344"
id="aspace_7ee4ba46eb910baf3cfc35911cf196be"
level="file">
<did>
<unittitle>Victorian (Neff)</unittitle>
<unitdatestructured altrender="1932-1933" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1933">1933</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_7ee4ba46eb910baf3cfc35911cf196be_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_7ee4ba46eb910baf3cfc35911cf196be_c2"
localtype="folder"
parent="aspace_7ee4ba46eb910baf3cfc35911cf196be_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511345"
id="aspace_d4cbcf43e80879e942c4fb205356a62b"
level="file">
<did>
<unittitle>German Influence (Nobbe)</unittitle>
<unitdatestructured altrender="1933" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1933">1933</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_d4cbcf43e80879e942c4fb205356a62b_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_d4cbcf43e80879e942c4fb205356a62b_c2"
localtype="folder"
parent="aspace_d4cbcf43e80879e942c4fb205356a62b_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511346"
id="aspace_fb328260835a058fb6bd0cd841f18ad4"
level="file">
<did>
<unittitle>18th Century Literature (Wright)</unittitle>
<unitdatestructured altrender="1932" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1932">1932</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_fb328260835a058fb6bd0cd841f18ad4_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_fb328260835a058fb6bd0cd841f18ad4_c2"
localtype="folder"
parent="aspace_fb328260835a058fb6bd0cd841f18ad4_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511347"
id="aspace_d8eab46baee1570d3c0a110731c50e61"
level="file">
<did>
<unittitle>Romantic (Fairchild)</unittitle>
<unitdatestructured altrender="1932-1933" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1933">1933</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_d8eab46baee1570d3c0a110731c50e61_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_d8eab46baee1570d3c0a110731c50e61_c2"
localtype="folder"
parent="aspace_d8eab46baee1570d3c0a110731c50e61_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511348"
id="aspace_4f7a6997568211f154ae316a08e17bfc"
level="file">
<did>
<unittitle>Dryden (Nichol-Smith)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_4f7a6997568211f154ae316a08e17bfc_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_4f7a6997568211f154ae316a08e17bfc_c2"
localtype="folder"
parent="aspace_4f7a6997568211f154ae316a08e17bfc_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511349"
id="aspace_0defb46b260fe8fde2fd2d5d03ac579e"
level="file">
<did>
<unittitle>Shakespeare (Chambers)</unittitle>
<unitdatestructured altrender="1937" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389661 /locations/9"
containerid="39002136829935"
encodinganalog="archive letter"
id="aspace_0defb46b260fe8fde2fd2d5d03ac579e_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_0defb46b260fe8fde2fd2d5d03ac579e_c2"
localtype="folder"
parent="aspace_0defb46b260fe8fde2fd2d5d03ac579e_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511350"
id="aspace_cbf6ad16ee1736f0a7a9353fe6b9cf59"
level="file">
<did>
<unittitle>16th Century (Ayres)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389662 /locations/9"
containerid="39002136829927"
encodinganalog="archive letter"
id="aspace_cbf6ad16ee1736f0a7a9353fe6b9cf59_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_cbf6ad16ee1736f0a7a9353fe6b9cf59_c2"
localtype="folder"
parent="aspace_cbf6ad16ee1736f0a7a9353fe6b9cf59_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511351"
id="aspace_6be9a43f866786d23755b6f90dd3bec2"
level="file">
<did>
<unittitle>Chaucer (Lawrence and Barnouw)</unittitle>
<unitdatestructured altrender="1932" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1932">1932</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389662 /locations/9"
containerid="39002136829927"
encodinganalog="archive letter"
id="aspace_6be9a43f866786d23755b6f90dd3bec2_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_6be9a43f866786d23755b6f90dd3bec2_c2"
localtype="folder"
parent="aspace_6be9a43f866786d23755b6f90dd3bec2_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511352"
id="aspace_b6244b886c44a5c1e5bbe0dc7fcd81ed"
level="file">
<did>
<unittitle>Pope and Swift (Nichol-Smith)</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389662 /locations/9"
containerid="39002136829927"
encodinganalog="archive letter"
id="aspace_b6244b886c44a5c1e5bbe0dc7fcd81ed_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_b6244b886c44a5c1e5bbe0dc7fcd81ed_c2"
localtype="folder"
parent="aspace_b6244b886c44a5c1e5bbe0dc7fcd81ed_c1">35</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3509898"
id="aspace_d578608f2b6dd2e137ec28f79a150e60"
level="series">
<did>
<unittitle>Research Files and Other Papers</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1933-1979" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933">1933</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_9da179a582d7d7f20413554c3be37e61">
<head>Arrangement</head>
<p>Series II is arranged in the order in which it was received.</p>
</arrangement>
<scopecontent id="aspace_c6ed35a09a5840e9272eda273fb5f2d3">
<head>Scope and Contents</head>
<p>Series II contains research files and other papers kept by James Marshall Obsorn chiefly during his time at Yale University. Some papers relate to his time at Oxford University.</p>
<p>Folder titles were transcribed. Supplied folder titles are in brackets.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3511353"
id="aspace_69cf9f8833bf82d8dcc9f43c0404baaa"
level="file">
<did>
<unittitle>Notes on John Wesley (for presentation of portrait)</unittitle>
<unitdatestructured altrender="1962 June" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1962-06">1962 June</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389663 /locations/9"
containerid="39002136829901"
encodinganalog="archive legal"
id="aspace_69cf9f8833bf82d8dcc9f43c0404baaa_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_69cf9f8833bf82d8dcc9f43c0404baaa_c2"
localtype="folder"
parent="aspace_69cf9f8833bf82d8dcc9f43c0404baaa_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511354"
id="aspace_4bf22daeedf48c7ad5143ba0bdc3c574"
level="file">
<did>
<unittitle>Notes on the poems of John Cleaveland</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/389663 /locations/9"
containerid="39002136829901"
encodinganalog="archive legal"
id="aspace_4bf22daeedf48c7ad5143ba0bdc3c574_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_4bf22daeedf48c7ad5143ba0bdc3c574_c2"
localtype="folder"
parent="aspace_4bf22daeedf48c7ad5143ba0bdc3c574_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511355"
id="aspace_6bfa55d80dfb17f682a6446c32ad408e"
level="file">
<did>
<unittitle>Postscript and correspondence</unittitle>
<unitdatestructured altrender="circa 1941-1961"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1941">1941</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389663 /locations/9"
containerid="39002136829901"
encodinganalog="archive legal"
id="aspace_6bfa55d80dfb17f682a6446c32ad408e_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_6bfa55d80dfb17f682a6446c32ad408e_c2"
localtype="folder"
parent="aspace_6bfa55d80dfb17f682a6446c32ad408e_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3511356"