-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1863.xml
7029 lines (7029 loc) · 399 KB
/
1863.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.vogel">beinecke.vogel</recordid>
<otherrecordid localtype="BIB">12289086</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Paula Vogel Papers
</titleproper>
<titleproper localtype="filing">Vogel (Paula) Papers</titleproper>
<author>by Beinecke staff</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>April 2019</date>
<num>YCAL MSS 972</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">12289086</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-30, 31 (Oversize), 32-38, 41, 51-52</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 39-40 (Art), 42-43 (Oversize), 44 (Broadside), 46-50 (Broadside)</p>
<p>Folder: 45 (Broadside)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object. And that object are comprised of <num localtype="files" altrender="4">4</num> digital files.</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:54:26-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 01:54</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1863" level="collection">
<did>
<unittitle>Paula Vogel papers</unittitle>
<unitid>YCAL MSS 972</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>43.92</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">43 boxes + 7 broadside, 2 art</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname>
<part localtype="agent_person">Vogel, Paula</part>
</persname>
</origination>
</did>
<bioghist id="aspace_6c07f19db62409c33168e9ca6ada1f08">
<head>Paula Vogel</head>
<p>Paula Vogel (b. 1951) is an American playwright, university professor, and advocate for gay and lesbian rights. She won the 1998 Pulitzer Prize for Drama for her play How I Learned to Drive.</p>
</bioghist>
<accessrestrict id="aspace_9ae157fbc93a9303057a2f08d81c6886">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
<p>Box 38 (audiovisual materials): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
<p>Boxes 37, 39, 40, 51, 52 (digital media): Restricted fragile material. Access copies of digital files may be requested. Consult Access Services for further information.</p>
<p>Digital files (student records): Restricted until 2095. For further information consult the appropriate curator.</p>
<p>Digital files (financial records): Restricted until 2065. For further information consult the appropriate curator.</p>
</accessrestrict>
<userestrict id="aspace_c35e5b1b6596799e7ae53408184a2dcd">
<head>Conditions Governing Use</head>
<p>The Paula Vogel Papers 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>
<acqinfo id="aspace_2fbeaebb997226ff06c0891a16609cc9">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Paula Vogel on the Adele Gutman Nathan Theatrical Collection Fund, 2014.</p>
</acqinfo>
<prefercite id="aspace_564201996e7b15e1f918a067377065e9">
<head>Preferred Citation</head>
<p>Paula Vogel Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<scopecontent id="aspace_d483c69a5dfb7a3ae3745d650fbfac0d">
<head>Scope and Contents</head>
<p>The collection consists of writings, correspondence, family papers, teaching materials, photographs, posters, awards, audiovisual materials, electronic media, and other papers documenting the life and work of playwright Paula Vogel. Writings include scripts, drafts, production materials, research materials, clippings, and other papers relating to plays by Vogel including Hot and Throbbing, How I Learned to Drive, Civil War Christmas, The Mineola Twins, and others.</p>
</scopecontent>
<processinfo id="aspace_bd1d9845bff198acf693f88a07bac53f">
<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 as they are acquired, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing, including rehousing and minimal organization.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<arrangement id="aspace_8cc0deebbb81d272e43be09174d0b3a9">
<head>Arrangement</head>
<p>Organized into eight series: I. Writings, 1970-2009. II. Correspondence and personal papers, 1949-2013. III. Teaching materials, 1970-2009. IV. Photographs and slides, circa 1970s-2013. V. Posters, 1970-2009. VI. Awards and recognitions, 1990-2009. VII. Audiovisual materials, circa 1990s. VIII. Electronic media, circa 2000s.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008117581"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">21st century</part>
</subject>
<subject source="local">
<part localtype="topical">Dramatists, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Dramatists, American</part>
<part localtype="temporal">21st century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85147456"
source="lcsh">
<part localtype="topical">Women authors</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300028045" source="aat">
<part localtype="genre_form">Audiovisual materials</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300374824" source="aat">
<part localtype="genre_form">Born digital</part>
</genreform>
<subject source="local">
<part localtype="topical">Dramatists</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</subject>
<occupation source="local">
<part localtype="occupation">Dramatists</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">21st century</part>
</occupation>
<subject source="local">
<part localtype="topical">LGBTQ resource</part>
</subject>
<persname>
<part localtype="agent_person">Vogel, Paula</part>
<part localtype="genre_form">Archives</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/764738"
id="ref67"
level="series">
<did>
<unittitle>Computer media</unittitle>
<unitid>Series VIII</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes + 2 art</physdesc>
<unitdatestructured altrender="circa 2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
</did>
<accessrestrict id="aspace_7f223ad2d695a27320324136144c6891"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted fragile material. Access copies of digital files may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/764677"
id="ref25"
level="file">
<did>
<unittitle>Early plays</unittitle>
<unitdatestructured altrender="1970s-1980s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88367 /locations/9"
containerid="39002091338906"
encodinganalog="Paige 15"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_a0e96da19c315ca685bf5527825bd1d0">
<head>Scope and Contents</head>
<p>Includes the following plays: Balls, Cried the Queen; Meg; Dorr; Silver Threads; The Swann Song of Sir Henry; Apple Brown Betty; And Baby Makes Seven; and others.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/764678"
id="ref26"
level="file">
<did>
<unittitle>Plays</unittitle>
<unitdatestructured altrender="1980s-2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88368 /locations/9"
containerid="39002091338914"
encodinganalog="Paige 15"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_74555c20f431d392754b2281b1503a6e">
<head>Scope and Contents</head>
<p>Includes The Oldest Profession and I Am No Angel.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/764679"
id="ref27"
level="file">
<did>
<unittitle>Plays</unittitle>
<unitdatestructured altrender="1990s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88369 /locations/9"
containerid="39002091338922"
encodinganalog="Paige 15"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
<scopecontent id="aspace_3e3804188940e185f09230e807de9a37">
<head>Scope and Contents</head>
<p>Titles; Golden Girls - Hold the Mayo; The Unmasking of O; The Oldest Profession; Teaser; and others.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/764680"
id="ref31"
level="file">
<did>
<unittitle>Hot and Throbbing</unittitle>
<unitdatestructured altrender="circa 1993-2003"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1993">1993</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88370 /locations/9"
containerid="39002091338930"
encodinganalog="Paige 15"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764681"
id="ref32"
level="file">
<did>
<unittitle>How I Learned to Drive</unittitle>
<unitdatestructured altrender="circa 1997-2000"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1997">1997</fromdate>
<todate standarddate="2000">2000</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88371 /locations/9"
containerid="39002091338948"
encodinganalog="Paige 15"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764682"
id="ref33"
level="file">
<did>
<unittitle>Civil War Christmas research material</unittitle>
<unitdatestructured altrender="circa 1990s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88372 /locations/9"
containerid="39002091338955"
encodinganalog="Paige 15"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764683"
id="ref34"
level="file">
<did>
<unittitle>Civil War Christmas</unittitle>
<unitdatestructured altrender="circa 1997-2007"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1997">1997</fromdate>
<todate standarddate="2007">2007</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88373 /locations/9"
containerid="39002091338963"
encodinganalog="Paige 15"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764684"
id="ref35"
level="file">
<did>
<unittitle>Civil War Christmas research material</unittitle>
<unitdatestructured altrender="circa 1990s-2000s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88374 /locations/9"
containerid="39002091338971"
encodinganalog="Paige 15"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764685"
id="ref36"
level="file">
<did>
<unittitle>The Oldest Profession, Hot and Throbbing, The Baltimore Waltz, How I Learned to Drive</unittitle>
<unitdatestructured altrender="circa 1980s-1990s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88375 /locations/9"
containerid="39002091338989"
encodinganalog="Paige 15"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764686"
id="ref37"
level="file">
<did>
<unittitle>The Mineola Twins</unittitle>
<unitdatestructured altrender="circa 1990s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88376 /locations/9"
containerid="39002091338997"
encodinganalog="archive legal"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764687"
id="ref38"
level="file">
<did>
<unittitle>The Mineola Twins</unittitle>
<unitdatestructured altrender="circa 1990s-2000s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88377 /locations/9"
containerid="39002091339003"
encodinganalog="archive legal"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764688"
id="ref39"
level="file">
<did>
<unittitle>The Long Christmas Ride Home</unittitle>
<unitdatestructured altrender="circa 2002-2003"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2002">2002</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88378 /locations/9"
containerid="39002091339011"
encodinganalog="Paige 15"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764689"
id="ref42"
level="file">
<did>
<unittitle>Signature Theater and Arena Stage productions</unittitle>
<unitdatestructured altrender="circa 1980s-1990s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88379 /locations/9"
containerid="39002091339029"
encodinganalog="Paige 15"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
<scopecontent id="aspace_adb940c0b5b5358c67d176a8c019ba05">
<head>Scope and Contents</head>
<p>Includes scripts, playbills, programs, and press materials.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/764690"
id="ref44"
level="file">
<did>
<unittitle>Production materials from various theaters</unittitle>
<unitdatestructured altrender="1970s-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88380 /locations/9"
containerid="39002091339037"
encodinganalog="Paige 15"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">14</container>
</did>
<scopecontent id="aspace_b133c46ec69607f2419e467b7b7768e8">
<head>Scope and Contents</head>
<p>Includes playbills, programs, press, contact sheets.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/764691"
id="ref46"
level="file">
<did>
<unittitle>Clippings, photographs and production materials from various productions</unittitle>
<unitdatestructured altrender="circa 1980s-1990s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88381 /locations/9"
containerid="39002091339045"
encodinganalog="Paige 15"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764692"
id="ref47"
level="file">
<did>
<unittitle>Clippings from various productions</unittitle>
<unitdatestructured altrender="circa 1980 to 2000s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88382 /locations/9"
containerid="39002091339052"
encodinganalog="Paige 15"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764693"
id="ref48"
level="file">
<did>
<unittitle>Screenplays and television scripts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>16</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">16 Boxes</physdesc>
<unitdatestructured altrender="circa 1990s-2000s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88383 /locations/9"
containerid="39002091339078"
encodinganalog="Paige 15"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">17</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/764676"
id="ref24"
level="series">
<did>
<unittitle>Writings </unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>17.08</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">17 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_309f15de8712ab49ac7c8bfd24a926dd">
<head>Arrangement</head>
<p>Writings are arranged in roughly the order in which they were received.</p>
</arrangement>
<scopecontent id="aspace_5617377de3f86a2b3b31e343eabe946a">
<head>Scope and Contents</head>
<p>Writings include scripts, drafts, production materials, research materials, clippings, and other papers related to plays and screenplays written by Paula Vogel. Notable works include Hot and Throbbing, How I Learned to Drive, Civil War Christmas, and The Mineola Twins.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/764695"
id="ref20"
level="file">
<did>
<unittitle>Family papers
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="2012">2012</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88384 /locations/9"
containerid="39002091339060"
encodinganalog="Paige 15"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764696"
id="ref21"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1980-2013" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88385 /locations/9"
containerid="39002091339086"
encodinganalog="Paige 15"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764697"
id="ref22"
level="file">
<did>
<unittitle>Correspondence, notes, and contracts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary"> 3 Boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88386 /locations/9"
containerid="39002091339094"
encodinganalog="Paige 15"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">20</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/764694"
id="ref18"
level="series">
<did>
<unittitle>Correspondence and personal papers</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/764699"
id="ref62"
level="file">
<did>
<unittitle>Teaching files</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>9</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">9 Boxes</physdesc>
<unitdatestructured altrender="circa 1970s- 2000s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88387 /locations/9"
containerid="39002091339185"
encodinganalog="Paige 15"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
<scopecontent id="aspace_f347acf1cdea59b68ec5a9745b361979">
<head>Scope and Contents</head>
<p>Includes resumes, student evaluations and other materials.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/764700"
id="ref64"
level="file">
<did>
<unittitle>Writings and syllabi</unittitle>
<unitdatestructured altrender="1970s-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88388 /locations/9"
containerid="39002091339193"
encodinganalog="Paige 15"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764701"
id="ref53"
level="file">
<did>
<unittitle>Student writings</unittitle>
<unitdatestructured altrender="2000s-2010s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2019">2019</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88389 /locations/9"
containerid="39002091339201"
encodinganalog="Paige 15"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764702"
id="ref54"
level="file">
<did>
<unittitle>Scripts used in teaching</unittitle>
<unitdatestructured altrender="circa 1990s-2010s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="2019">2019</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88390 /locations/9"
containerid="39002091339219"
encodinganalog="Paige 15"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764703"
id="ref59"
level="file">
<did>
<unittitle>Student writings</unittitle>
<unitdatestructured altrender="2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88391 /locations/9"
containerid="39002091339227"
encodinganalog="Paige 15"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764704"
id="ref58"
level="file">
<did>
<unittitle>Student writings</unittitle>
<unitdatestructured altrender="2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88392 /locations/9"
containerid="39002091339235"
encodinganalog="Paige 15"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764705"
id="ref55"
level="file">
<did>
<unittitle>Student writings</unittitle>
<unitdatestructured altrender="2000s-2010s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2019">2019</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88393 /locations/9"
containerid="39002091339243"
encodinganalog="Paige 15"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764706"
id="ref56"
level="file">
<did>
<unittitle>Student writings</unittitle>
<unitdatestructured altrender="2000s-2010s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2019">2019</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88394 /locations/9"
containerid="39002091339250"
encodinganalog="Paige 15"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764707"
id="ref57"
level="file">
<did>
<unittitle>Student writings</unittitle>
<unitdatestructured altrender="2000s-2010s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2019">2019</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88395 /locations/9"
containerid="39002091339268"
encodinganalog="Paige 15"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">29</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/764698"
id="ref52"
level="series">
<did>
<unittitle>Teaching materials</unittitle>
<unitid>Series III</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>9.75</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">9 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/764709"
id="ref60"
level="file">
<did>
<unittitle>Photographs and slides</unittitle>
<unitdatestructured altrender="circa 1970s-2013"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88396 /locations/9"
containerid="39002091339177"
encodinganalog="archive legal"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">30</container>
<daoset altrender="/repositories/11/digital_objects/185696">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:32212132"
linktitle="4 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/32212132"
identifier="oid:32212132"
linktitle="4 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Photographs and slides</p>
</descriptivenote>
</daoset>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/764708"
id="ref73"
level="series">
<did>
<unittitle>Photographs and slides</unittitle>
<unitid>Series IV</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="circa 1970s-2013"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/764711"
id="ref5"
level="file">
<did>
<unittitle>Photograph, Academy of Arts and Letters award ceremony</unittitle>
<container altrender="/repositories/11/top_containers/88397 /locations/4051"
containerid="39002093690742"
encodinganalog="flat box (22d 1h 28w)"
id="aspace_ref5_c1"
label="Mixed Materials"
localtype="box">43 (Oversize)</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/764712"
id="ref7"
level="file">
<did>
<unittitle>Present "On the occasion of her first Pulitzer Prize"</unittitle>
<unitdatestructured altrender="1998" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998">1998</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/88397 /locations/4051"
containerid="39002093690742"
encodinganalog="flat box (22d 1h 28w)"
id="aspace_ref7_c1"
label="Mixed Materials"
localtype="box">43 (Oversize)</container>
</did>
</c>