-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path10950.xml
1312 lines (1312 loc) · 76.6 KB
/
10950.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.lgbtqfilm">beinecke.lgbtqfilm</recordid>
<otherrecordid localtype="BIB">14873822</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the LGBTQ Film, Television, and Theater Collection </titleproper>
<titleproper localtype="filing">LGBTQ Film, Television, and Theater Collection</titleproper>
<author>by Rosemary K. J. Davis</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>January 2020</date>
<num>GEN MSS 1580</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-2, 3 (Oversize), 4-8</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-08T23:19:19-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:19</eventdescription>
</maintenanceevent>
<maintenanceevent>
<eventtype value="revised"/>
<eventdatetime>2023-06-21</eventdatetime>
<agenttype value="unknown"/>
<agent/>
<eventdescription>Finding aid revised to address euphemistic and/or stigmatizing descriptive language related to suicide. </eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/10950" level="collection">
<did>
<unittitle>LGBTQ film, television, and theater collection</unittitle>
<unitid>GEN MSS 1580</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>7.04</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">8 boxes</physdesc>
<unitdatestructured altrender="circa 1923-2008"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
</did>
<accessrestrict id="aspace_a8d4bf098a8f30a04a04456e4a1273ee">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<acqinfo id="aspace_378576413d1fd0bd6997aa5df1c212d6">
<head>Immediate Source of Acquisition</head>
<p>Purchased from various sources, 2015-2019.</p>
</acqinfo>
<arrangement id="aspace_d2087c3b77d997bea7dafa49670b6fcd">
<head>Arrangement</head>
<p>Organized into four groupings: July 2015 Acquisition, July 2017 Acquisition, October 2019 Acquistion, and November 2019 Acquisition.</p>
</arrangement>
<prefercite id="aspace_a998322ceaa78a21a159a74b410c54c4">
<head>Preferred Citation</head>
<p>LGBTQ Film, Television, and Theater Collection. General Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_256a4b25604e21d47fd3d2d5cd8cff45">
<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>
<scopecontent id="aspace_230e00d2d14b1885a16436eb161742ab">
<head>Scope and Contents</head>
<p>The LGBTQ Film, Television, and Theater Collection primarily consists of screenplays, scripts, and photographs from productions that include characters, storylines, or cultural references to lesbian, gay, bisexual, transgender, and queer individuals, communities, or events.</p>
</scopecontent>
<userestrict id="aspace_060eaa15c397bb82393eb4162c4def28">
<head>Conditions Governing Use</head>
<p>The LGBTQ Film, Television, and Theater Collection 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>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2003006224"
source="lcsh">
<part localtype="topical">Gays and the performing arts</part>
</subject>
<subject source="local">
<part localtype="topical">Gay theater</part>
<part localtype="geographic">United States</part>
</subject>
<subject source="local">
<part localtype="topical">Lesbian and gay experience</part>
</subject>
<subject source="local">
<part localtype="topical">LGBTQ resource</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85088112"
source="lcsh">
<part localtype="topical">Motion pictures</part>
<part localtype="geographic">United States</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Screenplays</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<subject source="local">
<part localtype="topical">Television</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85133621"
source="lcsh">
<part localtype="topical">Television scripts</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Television scripts</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85134522"
source="lcsh">
<part localtype="topical">Theater</part>
</subject>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2734840"
id="aspace_09f16c532326c9ad0963426459f350dd"
level="otherlevel"
otherlevel="accession">
<did>
<unittitle>July 2015 acquisition</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4.04</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_9f46af3b691a66d4cf50a4d4d3859887">
<head>Arrangement</head>
<p>Materials roughly maintain order found at time of acquisition.</p>
</arrangement>
<scopecontent id="aspace_625ea1697ebc5bd6d3a4dd5fa2af81d2">
<head>Scope and Contents</head>
<p>Contains scripts for television shows and films focused on LGBTQ-themes or LGBTQ characters. Also includes photographs of actors, directors, and productions.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2734842"
id="aspace_1618b9baa7ad5a6f041cb846b6e61ad7"
level="file">
<did>
<unittitle>"The Detective" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1967">1967</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_1618b9baa7ad5a6f041cb846b6e61ad7_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_b5e6c7048fbc5e0f38b84f68c3f42bd4">
<head>Scope and Contents</head>
<p>Contains a final draft script dated 8/17/1967 for the film starring Frank Sinatra and Lee Remick. Adapted from the novel by Roderick Thorp, this film represents an early attempt to portray issues of gay life. Sinatra is cast as a New York City homicide detective who investigates the deaths of some gay men. Despite stereotyped depictions of gay men, this was one of the first early Hollywood films to address, in any way, issues around gay oppression.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2734927"
id="aspace_988c7c18c7a390e4c9f4a739d1ce433b"
level="file">
<did>
<unittitle>Script of "Just Coffee" episode for "Ellen" sitcom</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_988c7c18c7a390e4c9f4a739d1ce433b_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_22d9ba00305a09adf64a9516b1657278">
<head>Scope and Contents</head>
<p>Contains a table draft script dated 9/2/1997 for an episode of the TV sitcom "Ellen," titled "Just Coffee." This script belonged to production assistant Angela Giannoni and has numerous MS notes which primarily concern the blocking of scenes. In 1996, Ellen DeGeneres began negotiating with ABC for her character to come out as a lesbian. She was eventually successful, and the 1997-98 season would contain the famous "Puppy Episode," in which she made her lesbianism public. This script is from the subsequent and final season of the show.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2734959"
id="aspace_9fe807bafd4248589704bbcc2b06edad"
level="file">
<did>
<unittitle>Script of "Public Display of Affection" episode for "Ellen" sitcom</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_9fe807bafd4248589704bbcc2b06edad_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2734960"
id="aspace_3741059907fd7189ffffc93362a9c7ae"
level="file">
<did>
<unittitle>Script of "Public Display of Affection" episode for "Ellen" sitcom</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_3741059907fd7189ffffc93362a9c7ae_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2734962"
id="aspace_fe4d67f91844d841a84793431f63eecf"
level="file">
<did>
<unittitle>Script of "Rent to Own" episode for "Ellen" sitcom"</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_fe4d67f91844d841a84793431f63eecf_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2734963"
id="aspace_7d670921f4b93605ed440384e42432b2"
level="file">
<did>
<unittitle>Script of "Roommates" episode for "Ellen" sitcom" </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_7d670921f4b93605ed440384e42432b2_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2734964"
id="aspace_bcba91abfa2639707424e44cdc498026"
level="file">
<did>
<unittitle>Script of "Womyn Fest" episode for "Ellen" sitcom</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_bcba91abfa2639707424e44cdc498026_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2734966"
id="aspace_245698c22a62db01b6b00ee31f5aa579"
level="file">
<did>
<unittitle>Script of "Womyn Fest" episode for "Ellen" sitcom</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_245698c22a62db01b6b00ee31f5aa579_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2734973"
id="aspace_57bf07f87b5bbe1faa9ee3460be34c2f"
level="file">
<did>
<unittitle>"The Fox" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_57bf07f87b5bbe1faa9ee3460be34c2f_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_f1258f2ebd7e12e07058ec037e30e084">
<head>Scope and Contents</head>
<p>Contains a production breakdown script dated 12/8/1966 for the screenplay by Lewis John Carlino. The screenplay, adapted from the novella by D.H. Lawrence, was made into the Mark Rydell-directed 1967 film starring Sandy Dennis, Anne Heywood, and Keir Dullea. The film is a tale of a lesbian couple struggling to successfully operate a chicken farm in rural Canada.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2734974"
id="aspace_745779c4fde34b62b21e2da0f732be1e"
level="file">
<did>
<unittitle>"Norman...Is That You?" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1976">1976</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328576 /locations/9"
containerid="39002109917519"
encodinganalog="archive legal"
id="aspace_745779c4fde34b62b21e2da0f732be1e_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_85a5fe45fac59d6f3e5623ab70403129">
<head>Scope and Contents</head>
<p>Contains a script dated 4/16/1976 for the screenplay from writers Ron Clark, Sam Bobrick, and George Schlatter. The comedy tells of a young gay interracial couple dealing with the arrival of the black man's conservative family.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2735053"
id="aspace_ddc08396baef4a8f6d27b7fe6b6e14a5"
level="file">
<did>
<unittitle>"An Early Frost" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1985">1985</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328582 /locations/9"
containerid="39002109917527"
encodinganalog="archive legal"
id="aspace_ddc08396baef4a8f6d27b7fe6b6e14a5_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_40aa3e75112890bfb5cdf51460e855b2">
<head>Scope and Contents</head>
<p>Contains a revised final draft script dated 2/21/1985 for the TV movie. This movie was an early film about the AIDS epidemic, portraying a young successful lawyer who must tell his family that he is gay and has contracted AIDS. The cast includes Gena Rowlands, Ben Gazzara, Sylvia Sidney, and Aidan Quinn.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2735054"
id="aspace_0ada2c0e28463c0ea2dd39df2a23dfdb"
level="file">
<did>
<unittitle>"Partners" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1981">1981</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328582 /locations/9"
containerid="39002109917527"
encodinganalog="archive legal"
id="aspace_0ada2c0e28463c0ea2dd39df2a23dfdb_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_1d5fc086492c5c7a1962129b71b30eb6">
<head>Scope and Contents</head>
<p>Contains a third-draft script dated 2/19/1981 for the original screenplay by Francis Veber. The film, released in 1982, is a cop/buddy movie starring Ryan O'Neal and John Hurt, who must pose as a gay couple in order to go undercover in the gay community and track down a likely serial killer. Hurt plays a gay police clerk and O'Neal a heterosexual detective.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2737176"
id="aspace_15447df3e17b6675b33dff00248be4d6"
level="file">
<did>
<unittitle>"The Lair 2" scripts</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="2008">2008</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328582 /locations/9"
containerid="39002109917527"
encodinganalog="archive legal"
id="aspace_15447df3e17b6675b33dff00248be4d6_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_7899bea22716ed34214b2cd6c32efbf0">
<head>Scope and Contents</head>
<p>Contains a spiral-bound collection of scripts dated 2/4/2008 for the entirety of the second season of the Lair. The television show is set at a private gay club operated by vampires, who use the club as a source for attractive young men to feed upon. This collection of scripts is signed by Fred Olen Ray, the show's supervising producer.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2737178"
id="aspace_78c04b609f82fe6eb1125cb69184c981"
level="file">
<did>
<unittitle>"The Sergeant" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1967">1967</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328582 /locations/9"
containerid="39002109917527"
encodinganalog="archive legal"
id="aspace_78c04b609f82fe6eb1125cb69184c981_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_9788028926ec6a1544e74cfa4851fe66">
<head>Scope and Contents</head>
<p>Contains an estimating script dated 5/8/1967 for the film. The screenplay was written by Dennis Murphy, who originally authored the novel of the same name. "The Sergeant," set in post-war France, concerns an Army Sergeant who develops an obsessive homoerotic interest in a private under his charge.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2737177"
id="aspace_4c19667d0092fbd6128c4f744baf450f"
level="file">
<did>
<unittitle>"The Sergeant" novel with annotations by Dennis Murphy</unittitle>
<unitdatestructured altrender="circa 1958" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958">circa 1958</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328582 /locations/9"
containerid="39002109917527"
encodinganalog="archive legal"
id="aspace_4c19667d0092fbd6128c4f744baf450f_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_360fdb250ec56a3f3e9696c365ad976e">
<head>Scope and Contents</head>
<p>Contains a print copy of Dennis Murphy's novel "The Sergeant." This is Murphy's personal copy, which he used while subsequently adapting the work to the screen. Virtually every page contains Murphy's extensive annotations.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3193314"
id="aspace_5d4e149436e0914a3b170d8c68477623"
level="file">
<did>
<unittitle>Photographs--Jackie Curtis/Amerika Cleopatra</unittitle>
<unitdatestructured altrender="circa 1968" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1968">circa 1968</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_5d4e149436e0914a3b170d8c68477623_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193315"
id="aspace_50f39ba38cdba60f8a312feb0e9513a6"
level="file">
<did>
<unittitle>Photographs--Kiss of the Spider Woman</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1985">1985</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_50f39ba38cdba60f8a312feb0e9513a6_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193316"
id="aspace_53a365ebc601317edbf3aae9ca0f1dc6"
level="file">
<did>
<unittitle>Photographs--Pedro Almodovar/What have I done to deserve this?</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1984">1984</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_53a365ebc601317edbf3aae9ca0f1dc6_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193317"
id="aspace_361207df87bdba72bd913c93244f3a9c"
level="file">
<did>
<unittitle>Photographs--Patriot for me</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1984">1984</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_361207df87bdba72bd913c93244f3a9c_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193318"
id="aspace_3af547d0ab6dbe70554eeefbdce17916"
level="file">
<did>
<unittitle>Photographs--Nighthawks</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1978">1978</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_3af547d0ab6dbe70554eeefbdce17916_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193319"
id="aspace_b38c4a13bde2b402df4f94c5b3f1f2f2"
level="file">
<did>
<unittitle>Photographs--Craig Russell/Outrageous!</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1977">1977</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_b38c4a13bde2b402df4f94c5b3f1f2f2_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193320"
id="aspace_d3b4e07969827d24eb2cadd90c634027"
level="file">
<did>
<unittitle>Photographs--F. W. Murnau</unittitle>
<unitdatestructured altrender="circa 1928-1931"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1931">1931</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_d3b4e07969827d24eb2cadd90c634027_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193321"
id="aspace_b408a6be9f62225fe6d534bb96200c19"
level="file">
<did>
<unittitle>Photograph--Cal Culver</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_b408a6be9f62225fe6d534bb96200c19_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193322"
id="aspace_45d11b1cd4fa125cc07a36430b90e74d"
level="file">
<did>
<unittitle>Photographs--Boys don't cry</unittitle>
<unitdatestructured altrender="circa 1999" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1999">circa 1999</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_45d11b1cd4fa125cc07a36430b90e74d_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193323"
id="aspace_a22c4d760788e9e56341d24815719a57"
level="file">
<did>
<unittitle>Photographs--Les biches</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1968">1968</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_a22c4d760788e9e56341d24815719a57_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193324"
id="aspace_a672f17cf4ed46fc53613af865b6c111"
level="file">
<did>
<unittitle>Photographs--Ramón Novarro</unittitle>
<unitdatestructured altrender="circa 1923-1932"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1932">1932</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367014 /locations/9"
containerid="39002098798953"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_a672f17cf4ed46fc53613af865b6c111_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193325"
id="aspace_a3f34e4754feebd228bb2a76bc5be5e3"
level="file">
<did>
<unittitle>Photographs--Pink flamingos/Divine</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1973">1973</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_a3f34e4754feebd228bb2a76bc5be5e3_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193326"
id="aspace_b9d5f9a573cfee2582e65f6b7067a39f"
level="file">
<did>
<unittitle>Photographs--Cruising</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980">1980</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_b9d5f9a573cfee2582e65f6b7067a39f_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193327"
id="aspace_48a25d10278d9e1dc4208310eac797ff"
level="file">
<did>
<unittitle>Photographs--William Haines</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1934">1934</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_48a25d10278d9e1dc4208310eac797ff_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193328"
id="aspace_49da0a1f9180bdd5c0fca416afb4f77d"
level="file">
<did>
<unittitle>Photographs--Joe Orton/What the butler saw</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1970">1970</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_49da0a1f9180bdd5c0fca416afb4f77d_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193329"
id="aspace_889db9243ea59f081ca83373b1855e99"
level="file">
<did>
<unittitle>Photographs--Andy Warhol/Imitation of Christ</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1967">1967</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_889db9243ea59f081ca83373b1855e99_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193330"
id="aspace_da560f6631f545edad97f0a7876db375"
level="file">
<did>
<unittitle>Photograph--End as a man</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1953">1953</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_da560f6631f545edad97f0a7876db375_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193331"
id="aspace_7a41c1d2787e3e1ff9a76034af08c135"
level="file">
<did>
<unittitle>Photograph--Montgomery Clift/You touched me</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1945">1945</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_7a41c1d2787e3e1ff9a76034af08c135_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193332"
id="aspace_dbc4fbade638c117f6871894df639dd6"
level="file">
<did>
<unittitle>Photograph--Cary Grant and Randolph Scott</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_dbc4fbade638c117f6871894df639dd6_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
<scopecontent id="aspace_085009686fd2fe5225c8271d52ceee4f">
<head>Scope and Contents</head>
<p>Photograph is a publicity portrait entitled "Hollywood Bachelors".</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3193333"
id="aspace_7bbc9c1a0fd3cb058935fb846dd7b878"
level="file">
<did>
<unittitle>Photograph--Alla Nazimova</unittitle>
<unitdatestructured altrender="circa 1923" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923">circa 1923</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_7bbc9c1a0fd3cb058935fb846dd7b878_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193334"
id="aspace_9770bcaaaca2c2cc05afeb11c7a24a80"
level="file">
<did>
<unittitle>Photographs--Ed Wood/Glen or Glenda</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1953">1953</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_9770bcaaaca2c2cc05afeb11c7a24a80_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193335"
id="aspace_cc829b22ba666f3a38bd757a78a358fe"
level="file">
<did>
<unittitle>Photograph--All about Eve</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/367015 /locations/9"
containerid="39002098798961"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_cc829b22ba666f3a38bd757a78a358fe_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2737184"
id="aspace_022104af31bf536011749f37141ea032"
level="otherlevel"
otherlevel="accession">
<did>
<unittitle>July 2017 acquisition</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.75</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1944">1944</fromdate>
<todate standarddate="2012">2012</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_197d441e6a6e1812153c10d9e6819cad">
<head>Arrangement</head>
<p>Materials roughly maintain order found at time of acquisition.</p>
</arrangement>
<scopecontent id="aspace_fc070acbe92b3d8fe43f30c6e12a46f2">
<head>Scope and Contents</head>
<p>Contains scripts and artwork related to television shows and films focused on LGBTQ-themes or LGBTQ characters.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2737185"
id="aspace_d23a6f99034a4e0976068b5fd4326d7f"
level="file">
<did>
<unittitle>Sketch for Lily Tomlin's costume on "Rowan and Martin's Laugh-In"</unittitle>
<unitdatestructured altrender="circa 1970" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1970">circa 1970</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328689 /locations/9"
containerid="39002098798946"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_d23a6f99034a4e0976068b5fd4326d7f_c1"
label="Mixed Materials"
localtype="box">3 (Oversize)</container>
</did>
<scopecontent id="aspace_787cb0dd643034663e4711fae70d0104">
<head>Scope and Contents</head>
<p>Contains an original costume sketch for Lily Tomlin by costume designer Michael Travis. The piece is ink and watercolor on paper, and is for a bit on the NBC sketch-comedy show "Rowan and Martin's Laugh-In," on which Tomlin was a regular performer.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2737202"
id="aspace_04abb1e9ac1689a6c378f481e1b663cb"
level="file">
<did>
<unittitle>"Advise and Consent" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1961">1961</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328692 /locations/9"
containerid="39002109917543"
encodinganalog="Paige 15"
id="aspace_04abb1e9ac1689a6c378f481e1b663cb_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_6ebd96c970f5f2a0f444bfdd40d353a7">
<head>Scope and Contents</head>
<p>Contains a script by Wendell Mayes dated 7/5/1961 for the film. The story, adapted from the novel by Alan Drury, is the first Hollywood studio film to feature a main character who is bisexual. The story is loosely based on a real-life episode--in 1954, Wyoming Senator Lester Hunt died by suicide in the face of denouncement by Republican opponents (and McCarthy allies) regarding his gay son.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2737203"
id="aspace_1dcfc4c89c1f9c5c3b3270a234ee6e9c"
level="file">
<did>
<unittitle>"Alexander: The Other Side of Dawn" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1977">1977</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328692 /locations/9"
containerid="39002109917543"
encodinganalog="Paige 15"
id="aspace_1dcfc4c89c1f9c5c3b3270a234ee6e9c_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_944a7cb99b966d7de27b454011253024">
<head>Scope and Contents</head>
<p>Contains a shooting script datedd 2/24/1977 for the made-for-TV NBC movie, a sequel to "Dawn: Portrait of a Teenage Runaway." The story concerns a teenage boy from Oklahoma who arrives in Los Angeles hoping to become a movie star who instead ends up a sex worker. This was one of the first films dealing with homosexuality to be broadcast to a wide mainstream television audience.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2737204"
id="aspace_d1ec830254926e1f8a2cc0e4dae37271"
level="file">
<did>
<unittitle>"Behind the Candelabra" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="2012">2012</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328692 /locations/9"
containerid="39002109917543"
encodinganalog="Paige 15"
id="aspace_d1ec830254926e1f8a2cc0e4dae37271_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_a5120349269a59a4325ce3d7c922139e">
<head>Scope and Contents</head>
<p>Contains a script by Richard Lagravenese dated 3/27/2012 for the film. The biographical film, directed by Stephen Soderbergh, is an account of the performer Liberace and his relationship with Scott Thorson.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2739110"
id="aspace_26623d3cafe97d50e644606b28836087"
level="file">
<did>
<unittitle>"The Devils" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1970">1970</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328692 /locations/9"
containerid="39002109917543"
encodinganalog="Paige 15"
id="aspace_26623d3cafe97d50e644606b28836087_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_9891b512bb9949cd004154a107286616">
<head>Scope and Contents</head>
<p>Contains a final script dated 7/28/1970 for the film. This screenplay was written by Ken Russell, and was adapted from the novel "The Devils of Loudun" by Aldous Huxley and the play "The Devils" by John Whiting.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2739111"
id="aspace_c7eeec6571540c310a02d0eaa7e176b1"
level="file">
<did>
<unittitle>"Dress Gray" script</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1979">1979</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328692 /locations/9"
containerid="39002109917543"
encodinganalog="Paige 15"
id="aspace_c7eeec6571540c310a02d0eaa7e176b1_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_5246f5be4edd1f866856fac1e267cad4">
<head>Scope and Contents</head>
<p>Contains a first draft script dated 6/22/1979 by Gore Vidal. This screenplay was adapted from a novel by Lucian Truscott IV, and concerns the murder of a closeted gay cadet at a military academy.</p>
</scopecontent>