-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1208.xml
4754 lines (4754 loc) · 257 KB
/
1208.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.wagner">beinecke.wagner</recordid>
<otherrecordid localtype="BIB">3160620</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Henry Raup Wagner Papers
</titleproper>
<titleproper localtype="filing">Wagner (Henry Raup) Papers</titleproper>
<author>by Susie R. Bock</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>August 1987</date>
<num>WA MSS S-1299</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: <num localtype="Orbis-bib">3160620</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-34, 14.1, 30.1</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 35</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>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:16:31-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:16</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1208" level="collection">
<did>
<unittitle>Henry Raup Wagner papers</unittitle>
<unitid>WA MSS S-1299</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>17.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">37 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1917">1917</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1930">1930</fromdate>
<todate standarddate="1952">1952</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_968781882b755c79432eff31078a7bef">The papers consist of correspondence with scholars and members of the rare book world, notes and drafts related to Henry Wagner's published works, and other papers related to Wagner's research.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Wagner, Henry R. (Henry Raup), 1862-1957</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_969b47a87f033a28c9295a5b6d6d49b2">
<head>Immediate Source of Acquisition</head>
<p>The papers were donated by Henry R. Wagner.</p>
</acqinfo>
<userestrict id="aspace_0e1f463b327fb8a337b072d4a59b60a2">
<head>Conditions Governing Use</head>
<p>The Henry Raup Wagner Papers are 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>
<prefercite id="aspace_e420f59b59d21f3adfe11c6e3353f360">
<head>Preferred Citation</head>
<p>Henry Raup Wagner Papers. Yale Collection of Western Americana. Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_80c751d7a94f68be4c439aaf7fff025d">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<bioghist id="aspace_3ec2b432a8e40866332fdb9e960005ce">
<head>HENRY RAUP WAGNER, 1862-1957</head>
<p>Henry Raup Wagner, known for his contributions to the bibliography and scholarship of the American and Spanish-American West, attended Yale College and Law School. Wagner eventually entered the mining business, spending most of his career working for the Guggenheim's American Smelting and Refining Company. Retiring in 1917, he married Blanche Henrietta Collet and settled in California. Most of Wagner's scholarly work dates from after his retirement.</p>
<p>Wagner's interest in rare books began in the 1880s. Although his collecting fields changed over the years, he eventually focused on Western Americana, using his collections to write bibliographies such as <title localtype="simple" render="italic">
<part>The Plains and the Rockies</part>
</title> and <title localtype="simple" render="italic">
<part>The Spanish Southwest</part>
</title>. In addition, he wrote on a variety of topics from the cartography of the West coast to Fernando Cortés.</p>
<p>Wagner was active in the California Historical Society, the Cortés Society, and the Quivira Society, and served as president of the Historical Society of Southern California in 1933-34. He was a good friend to many libraries. He not only donated works to the Bancroft Library, the Henry E. Huntington Library, the John Carter Brown Library, and the Yale University Library, but also served on committees to promote and support these institutions.</p>
<p>Further information on Wagner and his work can be found in his autobiography <title localtype="simple" render="italic">
<part>Bullion to Books</part>
</title> (1942). <title localtype="simple" render="italic">
<part>The Published Writings of Henry R. Wagner</part>
</title> (New Haven: William Reese Company, announced for 1987) contains a biographical essay by Stephen A. Colston, and a list of books about Wagner.</p>
</bioghist>
<scopecontent id="aspace_e9db430a16ed1082f26f59adb01a67c8">
<head>Scope and Contents</head>
<p>The Henry Raup Wagner Papers document his work as a bibliographer and historian of the American and Spanish-American West. The collection spans the dates 1917-1962, but the bulk of the material falls in the years 1930-1952.</p>
<p>The Wagner collection is organized into three series. Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, provides information on Wagner's association with the rare book and scholarly worlds. <title localtype="simple" render="italic">
<part>Works from The Published Writings</part>
</title>, Series II, chronicles Wagner's research and publication activity. Series III, <title localtype="simple" render="italic">
<part>Research Files</part>
</title>, documents subjects Wagner studied and includes personal papers.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref11">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, is arranged alphabetically by individual or corporate name. Appropriate cross-references have been made for significant individuals whose letters are filed under corporate bodies. The majority of the files contain letters to Wagner and copies of his replies.</p>
<p>Wagner sought research assistance from libraries and was in turn used as a source of information. Randolph Adams of the William L. Clements Library questioned Wagner on Mexican incunabula, and many libraries discussed their acquisitions and business affairs with him. Most of the letters from libraries, however, are form letters thanking Wagner for the books he donated.</p>
<p>Wagner's correspondence with scholarly societies focuses on publication issues. He served as editor for the Cortés Society, and was often consulted by the Quivira Society. Publishing questions even dominate correspondence with the Historical Society of Southern California, but since Wagner was the society's president from 1933-34, the letters document other business as well.</p>
<p>Wagner's letters show how he conducted researched, how he found publishers, and to whom he turned for comments. An excellent example is <title localtype="simple" render="italic">
<part>Nueva Bibliografía del Siglo XVI, Suplemento to a las Bibliografías de Don Joaquín García Icazbalceta</part>
</title>, number 135 in <title localtype="simple" render="italic">
<part>The Published Writings of Henry R. Wagner</part>
</title>. Icazbalceta was a Mexican bibliographer, whose grandson Joaquin Garcia Pimentel supplied Wagner with bibliographic information for his <title localtype="simple" render="italic">
<part>Suplemento</part>
</title>, while G. R. G. Conway helped Wagner gather the history of Icazbalceta's library. Publishing <title localtype="simple" render="italic">
<part>Nueva Bibliografía</part>
</title> proved a problem, as correspondence with the Bibliographical Society of America and the Grolier Club demonstrates. With the help of Pimentel, Federico Gómez de Orozco, and Jesús Guisa y Azevedo, Wagner eventually published the work in Spanish, an undertaking he discussed in depth with Lawrence Wroth.</p>
<p>Wagner enjoyed long friendships with George P. Hammond and Thomas W. Streeter. Their correspondence files are the largest in the series and cover all aspects of Wagner's scholarly career. Hammond, director of the Bancroft Library and active member of the Cortés Society and the Quivira Society, discussed the business affairs of these groups, particularly the formation of the Friends of the Bancroft Library. Wagner and Hammond also exchanged information on Mexican history and rare books. The correspondence of Thomas W. Streeter, bibliographer and collector, provides a fascinating account of the rare book world of the 1930s and 1940s.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref147">Series II, <title localtype="simple" render="italic">
<part>Works from The Published Writings</part>
</title>
</ref>, is arranged according to the bibliography <title localtype="simple" render="italic">
<part>The Published Writings of Henry R. Wagner</part>
</title> (chronologically by date of publication). In the "Box and Folder List," material is identified by numbers from the bibliography and short title. Series II contains Wagner's research files and papers concerning the publication of each work. He often bound these files, establishing a specific order; this arrangement has been maintained and applied to unbound papers.</p>
<p>The pattern of Wagner's arrangement is: a copy of the text, correspondence, notes, reproductions, and reviews. The offprint or typescript draft of each work is usually annotated by Wagner. Correspondence with the publisher or printer usually follows, along with receipts for binding and printing. Often research letters and comments from other scholars are included. Since Wagner gave copies of his works to friends and libraries, presentation lists and letters of acknowledgment may also be found in the correspondence. Notes and reproductions come next, though their order varies. Most of Wagner's notes are typewritten lists or prose sketches. Reproductions of primary documents (typescripts, photocopies, photographs) were used for research and often became part of the printed work as illustrative material. Finally, there are reviews, usually concerning his earlier books.</p>
<p>Not every work listed in Series II is fully documented. Of the described material, copies of the text and correspondence are the most common. The background material for <title localtype="simple" render="italic">
<part>The Plains and the Rockies</part>
</title> (7, 8), <title localtype="simple" render="italic">
<part>Spanish Southwest</part>
</title> (26), <title localtype="simple" render="italic">
<part>Discovery of New Spain</part>
</title> (118), <title localtype="simple" render="italic">
<part>Rise of Cortés</part>
</title> (124), and <title localtype="simple" render="italic">
<part>Nueva Bibliografía</part>
</title> (135) is exceptional. The files for these works are good examples of the contents of Series II, <title localtype="simple" render="italic">
<part>Works from The Published Writings</part>
</title>.</p>
<p>
<title localtype="simple" render="italic">
<part>The Plains and the Rockies</part>
</title> files include evidence of the physical production of the 1920 edition and both 1921 editions. Wagner often issued two editions of his books, one normal copy and one enhanced with photo-reproductions. Orders for facsimiles, correspondence with the printers, printing and binding receipts, presentation and purchase lists, trace the creation of these fine editions.</p>
<p>
<title localtype="simple" render="italic">
<part>Spanish Southwest</part>
</title> files, which include numerous typescripts, especially of individual bibliographic entries, notes, and correspondence with libraries, gives evidence about Wagner's research methods. Though correspondence usually relates only to publication and public reaction, Wilberforce Eames's letters, here and elsewhere, cover both research and printing.</p>
<p>
<title localtype="simple" render="italic">
<part>Discovery of New Spain</part>
</title> contains correspondence with the Cortés Society, publisher of the work. Some of these files are of general interest, documenting the group's publishing activities. Similarly, correspondence files in Series II for the Antiquarian Society, the Bibliographical Society of America, the California Historical Society, the <title localtype="simple" render="italic">
<part>Hispanic America Historical Review</part>
</title>, the Historical Society of Southern California, and the Zamorano Club, all of which published works by Wagner, contain much general information about the group.</p>
<p>
<title localtype="simple" render="italic">
<part>Rise of Cortés</part>
</title> is the most fully documented work in Series II. Every type of material is included, together with notes for Wagner's lecture on Cortés to the Zamorano Club. There is a complete typescript draft and a set of photo-reproductions used as plates. Notes for the work consist of a series of typewritten prose sketches, lists, and transcripts of historic documents.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref240">Series III, <title localtype="simple" render="italic">
<part>Research Files</part>
</title>
</ref>, is arranged alphabetically by headings, many of which were supplied by Wagner. The material is similar to that in Series II and is arranged the same way. Though most files contain a typescript and some pre-draft material, there is no correspondence or publication information. Of particular interest is "Spanish Southwest 1795-1845," a short typescript, which may be an introduction to a continuation of <title localtype="simple" render="italic">
<part>Spanish Southwest, 1542-1794</part>
</title> (26). The series contains a great deal of material related to a bibliography of Texas, including an extensively annotated version of C. W. Raines's <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title> (1896). Some of Wagner's more personal papers are also housed in Series III.</p>
</scopecontent>
<controlaccess>
<title source="local">
<part localtype="uniform_title">Hispanic American historical review</part>
</title>
<title source="local">
<part localtype="uniform_title">Imago Mundi: Review of Early Cartography</part>
</title>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85013838"
source="lcsh">
<part localtype="topical">Bibliography</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85015610"
source="lcsh">
<part localtype="topical">Book collecting</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85015611"
source="lcsh">
<part localtype="topical">Book collectors</part>
</subject>
<geogname source="local">
<part localtype="geographic">Mexico</part>
<part localtype="genre_form">Imprints</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Southwest, New</part>
<part localtype="genre_form">Imprints</part>
</geogname>
<geogname source="local">
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Bibliography</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Bibliography</part>
<part localtype="geographic">United States</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photoprints</part>
<part localtype="geographic">United States</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Bibliographers</part>
<part localtype="geographic">United States</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Bagrow, Leo, 1881-1951</part>
</persname>
<persname>
<part localtype="agent_person">Brigham, Clarence S. (Clarence Saunders), 1877-1963</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Caughey, John Walton, 1902-1995</part>
</persname>
<persname>
<part localtype="agent_person">Childs, James B. (James Bennett), 1896-1977</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Coney, Donald</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Conway, G. R. G. (George Robert Graham), 1873-1951</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Duke, Elizabeth F. (Elizabeth Foster)</part>
</persname>
<persname>
<part localtype="agent_person">García Pimentel, Joaquín</part>
</persname>
<persname>
<part localtype="agent_person">Hammond, George P. (George Peter), 1896-1993</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Harding, Dorothy Huggins, 1894-</part>
</persname>
<persname source="local">
<part localtype="agent_person">King, James F.</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Lanning, John Tate, 1902-1976</part>
</persname>
<persname>
<part localtype="agent_person">Lydenberg, Harry Miller, 1874-1960</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">McCombs, Nelson N.</part>
</persname>
<persname>
<part localtype="agent_person">Powell, Lawrence Clark, 1906-2001</part>
</persname>
<persname>
<part localtype="agent_person">Shearer, Augustus Hunt, 1878-1941</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Sproul, Robert Gordon, 1891-1975</part>
</persname>
<persname>
<part localtype="agent_person">Streeter, Thomas W. (Thomas Winthrop), 1883-1965</part>
</persname>
<persname>
<part localtype="agent_person">Wagner, Henry R. (Henry Raup), 1862-1957</part>
</persname>
<persname>
<part localtype="agent_person">Wroth, Lawrence C. (Lawrence Counselman), 1884-1970</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">American Antiquarian Society</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Bibliographical Society of America</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">California Historical Society</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Historical Society of Southern California</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">John Carter Brown Library</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">University of California, Berkeley</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">University of Texas at Austin</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Yale University</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/445181"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">6 boxes</physdesc>
<unitdatestructured altrender="1921-55" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1921">1921</fromdate>
<todate standarddate="1955">1955</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_dcd7c8e86890006d646acfa0e31f9ed4">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, is housed in Boxes 1-6. The material is arranged alphabetically by surname of an individual or the organization and then chronologically. In a few cases other material, such as papers of a society, have been placed with the correspondence.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/445182"
id="ref13"
level="file">
<did>
<unittitle>"A" general</unittitle>
<unitdatestructured altrender="1948-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1948">1948</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445183"
id="ref14"
level="file">
<did>
<unittitle>Academy of American Franciscan History</unittitle>
<unitdatestructured altrender="1949-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445184"
id="ref15"
level="file">
<did>
<unittitle>Adams, Randolph G.</unittitle>
</did>
<relatedmaterial id="aspace_4c6d75528330000aa83ec66416de8d76">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref135">See: Box 5, folder 124</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445185"
id="ref17"
level="file">
<did>
<unittitle>American Antiquarian Society</unittitle>
<unitdatestructured altrender="1935-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935">1935</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">3-6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445186"
id="ref18"
level="file">
<did>
<unittitle>"B" general</unittitle>
<unitdatestructured altrender="1939-49" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939">1939</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445187"
id="ref19"
level="file">
<did>
<unittitle>Babb, James T.</unittitle>
</did>
<relatedmaterial id="aspace_c444311e200438c74b164dea1784fdac">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref139">See: Box 5-6, folders 125-3</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445188"
id="ref21"
level="file">
<did>
<unittitle>Bagrow, Leo</unittitle>
</did>
<relatedmaterial id="aspace_820bb694d215073a0330751278c6d12e">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref82">See: Box 3, folder 73</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445189"
id="ref23"
level="file">
<did>
<unittitle>Bancroft, Eleanor</unittitle>
<unitdatestructured altrender="1943-47" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1943">1943</fromdate>
<todate standarddate="1947">1947</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445190"
id="ref24"
level="file">
<did>
<unittitle>Bancroft Library</unittitle>
</did>
<relatedmaterial id="aspace_4d1c77c924bea09155a2b7dc935b1716">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref23">See: Box 1, folders 8, 31-32</ref>; <ref actuate="onrequest" show="replace" target="ref69">Box 2, folders 49-57</ref>; <ref actuate="onrequest" show="replace" target="ref118">Box 4-5, folders 95-114</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445191"
id="ref26"
level="file">
<did>
<unittitle>Bibliographical Society of America</unittitle>
<unitdatestructured altrender="1934-45" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1945">1945</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">9-11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445192"
id="ref27"
level="file">
<did>
<unittitle>Brigham, Clarence S.</unittitle>
</did>
<relatedmaterial id="aspace_c77117b3bb39c1283b6d71cf5bc1abec">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref17">See: Box 1, folders 3-6</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445193"
id="ref29"
level="file">
<did>
<unittitle>"C" general</unittitle>
<unitdatestructured altrender="1939-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939">1939</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445194"
id="ref30"
level="file">
<did>
<unittitle>California Historical Society</unittitle>
<unitdatestructured altrender="1928-51" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1951">1951</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">13-16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445195"
id="ref31"
level="file">
<did>
<unittitle>Camp, Charles L.</unittitle>
<unitdatestructured altrender="1944" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1944">1944</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445196"
id="ref32"
level="file">
<did>
<unittitle>Caughey, John W.</unittitle>
</did>
<relatedmaterial id="aspace_7fdff41f118a647dcab79a0036f52fb4">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref126">See: Box 5, folder 119</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445197"
id="ref34"
level="file">
<did>
<unittitle>Childs, James B.</unittitle>
</did>
<relatedmaterial id="aspace_49ccb298df5fb717cae3d473ce579d77">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref26">See: Box 1, folders 9-11</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445198"
id="ref36"
level="file">
<did>
<unittitle>Claremont Colleges Library</unittitle>
<unitdatestructured altrender="1937-39" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937">1937</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445199"
id="ref37"
level="file">
<did>
<unittitle>Coney, David</unittitle>
</did>
<relatedmaterial id="aspace_7647e371e156e908283c92f2f615f9eb">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref129">See: Box 5, folder 121</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445200"
id="ref39"
level="file">
<did>
<unittitle>Conway, G. R. G.</unittitle>
<unitdatestructured altrender="1931-39" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931">1931</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">19-20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445201"
id="ref40"
level="file">
<did>
<unittitle>Cortés Society</unittitle>
<unitdatestructured altrender="1943-48" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1943">1943</fromdate>
<todate standarddate="1948">1948</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">21</container>
</did>
<relatedmaterial id="aspace_f4664671ed2eef09eb4d5fbc9630d8ab">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref23">See also: Box 1, folder 8</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445202"
id="ref42"
level="file">
<did>
<unittitle>"D" general</unittitle>
<unitdatestructured altrender="1945" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1945">1945</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1947" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1947">1947</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445203"
id="ref43"
level="file">
<did>
<unittitle>Eastwood, Alice</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445204"
id="ref44"
level="file">
<did>
<unittitle>Eberstadt, Edward</unittitle>
<unitdatestructured altrender="1948-49" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1948">1948</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445205"
id="ref45"
level="file">
<did>
<unittitle>"F" general</unittitle>
<unitdatestructured altrender="1938-46" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938">1938</fromdate>
<todate standarddate="1946">1946</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445206"
id="ref46"
level="file">
<did>
<unittitle>Farquhar, Francis P.</unittitle>
<unitdatestructured altrender="1944-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1944">1944</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445207"
id="ref47"
level="file">
<did>
<unittitle>Foster, Elizabeth</unittitle>
</did>
<relatedmaterial id="aspace_b670864b5c3a14ae5539737985154bc0">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref23">See also: Box 1, folders 8, 21</ref>
</p>
</relatedmaterial>
<c altrender="/repositories/11/archival_objects/445208"
id="ref48"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1941-48" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1941">1941</fromdate>
<todate standarddate="1948">1948</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">27-29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445209"
id="ref49"
level="file">
<did>
<unittitle>Wagner's notes on Motolina</unittitle>
<unitdatestructured altrender="[ca. 1940s]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">30</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/445210"
id="ref51"
level="file">
<did>
<unittitle>Friends of the Bancroft Library</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/445211"
id="ref52"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1947-48" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1947">1947</fromdate>
<todate standarddate="1948">1948</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445212"
id="ref53"
level="file">
<did>
<unittitle>Papers of the Friends</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58404 /locations/9"
containerid="39002091617093"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">32</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/445213"
id="ref54"
level="file">
<did>
<unittitle>Garcia Pimentel, Joaquin</unittitle>
<unitdatestructured altrender="1934-43" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1943">1943</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58405 /locations/9"
containerid="39002091617101"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">33-41</container>
</did>
<relatedmaterial id="aspace_b1112d601162dd327c61bc66509a330f">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref39">See also: Box 1, folders 19-20</ref>; <ref actuate="onrequest" show="replace" target="ref56">Box 2, folders 42, 47</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445214"
id="ref56"
level="file">
<did>
<unittitle>Gómez de Orozco, Federico</unittitle>
<unitdatestructured altrender="1937-39" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937">1937</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58405 /locations/9"
containerid="39002091617101"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">42</container>
</did>
<relatedmaterial id="aspace_f8e94f19f44f0ed6990d773fd4c205e4">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref54">See also: Box 2, folders 33-41</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445215"
id="ref58"
level="file">
<did>
<unittitle>Grabhorn, Jane</unittitle>
</did>
<relatedmaterial id="aspace_a52087c868ad79c7a3e3077eb89679d0">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref29">See: Colt Press, "C" general, Box 1, folder 12</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/445216"
id="ref60"
level="file">
<did>
<unittitle>Grabhorn Press</unittitle>
<unitdatestructured altrender="1935-44" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935">1935</fromdate>
<todate standarddate="1944">1944</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58405 /locations/9"
containerid="39002091617101"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445217"
id="ref61"
level="file">
<did>
<unittitle>Graff, Everett D.</unittitle>
<unitdatestructured altrender="1947-49" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1947">1947</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58405 /locations/9"
containerid="39002091617101"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445218"
id="ref62"
level="file">
<did>