-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path797.xml
2425 lines (2425 loc) · 134 KB
/
797.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.allegret">beinecke.allegret</recordid>
<otherrecordid localtype="BIB">9090569</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Marc Allégret Papers
</titleproper>
<titleproper localtype="filing">Allégret (Marc) Papers</titleproper>
<author>by Michael L. Forstrom</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 2010</date>
<num>GEN MSS 651</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">9090569</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1, 3-15</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 2, 16</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="4">4</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="29">29</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-08T23:38:51-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:38</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/797" level="collection">
<did>
<unittitle>Marc Allegrét papers</unittitle>
<unitid>GEN MSS 651</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="fre">French</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>Chiefly in French, with some materials in German and English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>7.51</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">16 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1900">1900</fromdate>
<todate standarddate="1972">1972</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_f8e2a0687834e50c82a1a24f19576064">The Marc Allégret Papers document Allégret 's career as a filmmaker and his association with author André Gide. Allegrét's working files include screenplays, shooting scripts, correspondence, background and research materials, production notes and documents, cut film, photographs, and printed ephemera. There are screenplays or shooting scripts for over a dozen feature-length films and larger, mixed files for the documentaries Voyage au Congo (1927), Occultisme et magie (1951), and Avec André Gide (1952). The files for Voyage au Congo also document Allegrét's travels with Gide through French equatorial Africa in the mid 1920s. Works by Others include writings by Gide and screenplays and shooting scripts by Allégret's collaborators. Works by Gide include corrected drafts and proofs for several titles dating from the 1920s, such as Corydon (1924) and Retour du Tchad (1927). Correspondence consists of letters to Allégret from Françoise Giroud, Roger Martin du Gard, and Roger Vadim, and third party correspondence between André Gide, Madeleine Louise Mathilde Gide, Elie Allégret, Roger Martin du Gard, producer Pierre Braunberger, and others.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Allégret, Marc, 1900-1973</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_0d72c5ff60889b7556da23a2388985df">
<head>Immediate Source of Acquisition</head>
<p>The Marc Allégret Papers was aquired through purchase from Librarie Benoit Forgeot on the Edwin J. Beinecke Book Fund, 2008.</p>
</acqinfo>
<accessrestrict id="aspace_aebbc2c724be1b1e610c9db9cffcb8b8">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Cut film contained in boxes 2-3 and 10 is restricted and may only be seen with permission of the appropriate curator.</p>
</accessrestrict>
<userestrict id="aspace_62daa90717bcb3014d1d267bd2aa37d3">
<head>Conditions Governing Use</head>
<p>The Marc Allégret 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>
<prefercite id="aspace_819c5a10c1359efa25f29e33c9be745a">
<head>Preferred Citation</head>
<p>Marc Allégret Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<bioghist id="aspace_89c378999dc3109b36e7b22d01d2c456">
<head>Marc Allégret (1900-1973)</head>
<p>Marc Allégret, a French screenwriter and filmmaker, was born in Basel, Switzerland and trained as a lawyer. After travelling in French equatorial Africa in the mid 1920s with André Gide, Allégret chose to pursue a career in the film industry. He directed his first feature-length film, <title localtype="simple" render="italic">
<part>Mam'zelle Nitouche</part>
</title>, in 1931 and went on to write numerous scripts and direct more than fifty films. He was the elder brother of Yves Allégret, also a filmmaker. Additional information is available in standard print and online biographical resources.</p>
<p>The following chronology provides dates for key events and film projects for which there are files in the collection:</p>
<p>1900 December 22 born in Basel, Switzerland</p>
<p>1925-1926 travel with André Gide in French equatorial Africa</p>
<p>1927 <title localtype="simple" render="italic">
<part>Voyage au Congo</part>
</title>
</p>
<p>1934 <title localtype="simple" render="italic">
<part>Zouzou</part>
</title>
</p>
<p>1934 <title localtype="simple" render="italic">
<part>L'Hôtel du libre échange</part>
</title>
</p>
<p>1937 <title localtype="simple" render="italic">
<part>Gribouille</part>
</title>
</p>
<p>1938 <title localtype="simple" render="italic">
<part>Orage</part>
</title>
</p>
<p>1942<title localtype="simple" render="italic">
<part>L'Arlésienne</part>
</title>
</p>
<p>1942 <title localtype="simple" render="italic">
<part>La belle aventure</part>
</title>
</p>
<p>1944 <title localtype="simple" render="italic">
<part>Les petites du quai aux fleurs</part>
</title>
</p>
<p>1945 <title localtype="simple" render="italic">
<part>Félicie Nanteuil</part>
</title>
</p>
<p>1946 <title localtype="simple" render="italic">
<part>Lunegarde</part>
</title>
</p>
<p>1946 <title localtype="simple" render="italic">
<part>Pétrus</part>
</title>
</p>
<p>1951 <title localtype="simple" render="italic">
<part>Occultisme et magie</part>
</title>
</p>
<p>1952 <title localtype="simple" render="italic">
<part>Avec André Gide</part>
</title>
</p>
<p>1953 <title localtype="simple" render="italic">
<part>Julietta</part>
</title>
</p>
<p>1955 <title localtype="simple" render="italic">
<part>L'Amant de lady Chatterley</part>
</title>
</p>
<p>1970 <title localtype="simple" render="italic">
<part>Le bal du comte d'Orgel</part>
</title>
</p>
<p>1973 November 3 dies in Versailles, France</p>
</bioghist>
<scopecontent id="aspace_96e5ddad659de7e1b124fad209b20dc3">
<head>Scope and Contents</head>
<p>The Marc Allégret papers feature material relating to films shot or directed by Allégret and to his association with André Gide. Allégret's working files include screenplays, shooting scripts, correspondence, background and research materials, production notes and documents, cut film, photographs, and printed ephemera dating from his earliest cinematic effort, the documentary <title localtype="simple" render="italic">
<part>Voyage au Congo</part>
</title> (1927), to his last feature-length film,<title localtype="simple" render="italic">
<part>Le bal du comte d'Orgel</part>
</title> (1970). Allégret became acquainted with Gide through his father's friendship and his travels with Gide into Africa in the mid 1920s are richly documented in the production files, which include correspondence, manuscript notes, photographs, and ephemera, for <title localtype="simple" render="italic">
<part>Voyage au Congo</part>
</title>. Other materials relating more or less directly to Gide include the production files for the late documentary <title localtype="simple" render="italic">
<part>Avec André Gide</part>
</title> (1952), corrected drafts and proofs for several titles by Gide from the 1920s, and third-party correspondence. Works by Others also include screenplays and shooting scripts by some of Allégret's collaborators. General correspondence consists of letters to Marc Allégret from Françoise Giroud, Roger Martin du Gard, and Roger Vadim, with over seventy pieces of correspondence from Martin du Gard. Third Party correspondence features approximately thirty pieces of correspondence between Marc Allégret's father, Elie Allégret, and André Gide, and include letters from Gide's wife Madeleine, Roger Martin du Gard, and producer Pierre Braunberger. Chiefly in French, with some materials in German and English.</p>
</scopecontent>
<arrangement id="aspace_d921ddfd0ef51856da3c067b57b08318">
<head>Arrangement</head>
<p>Organized into three series: I. Works by Marc Allégret, 1907-1969. II. Works by Others, 1919-1971. III. Correspondence, 1900-1972.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85026014"
source="lcsh">
<part localtype="topical">Cinematography</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85088067"
source="lcsh">
<part localtype="topical">Motion picture producers and directors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85088104"
source="lcsh">
<part localtype="topical">Motion pictures</part>
<part localtype="topical">Production and direction</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh95001753"
source="lcsh">
<part localtype="topical">Motion pictures</part>
<part localtype="geographic">France</part>
</subject>
<geogname source="local">
<part localtype="geographic">Africa, French-speaking Equatorial</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh90003578"
source="lcsh">
<part localtype="geographic">Cameroon</part>
<part localtype="topical">Description and travel</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Film scripts</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300264821" source="aat">
<part localtype="genre_form">Printed ephemera</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85088067"
source="lcsh">
<part localtype="topical">Motion picture producers and directors</part>
</subject>
<persname rules="aacr">
<part localtype="agent_person">Allégret, E. (Elie)</part>
</persname>
<persname>
<part localtype="agent_person">Allégret, Marc, 1900-1973</part>
</persname>
<persname>
<part localtype="agent_person">Braunberger, Pierre, 1905-1990</part>
</persname>
<persname>
<part localtype="agent_person">Gide, André, 1869-1951</part>
</persname>
<persname>
<part localtype="agent_person">Gide, Madeleine Louise Mathilde, approximately 1867-1938</part>
</persname>
<persname>
<part localtype="agent_person">Giroud, Françoise, 1916-2003</part>
</persname>
<persname>
<part localtype="agent_person">Martin Du Gard, Roger, 1881-1958</part>
</persname>
<persname>
<part localtype="agent_person">Vadim, Roger, 1928-2000</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/257670"
id="ref10"
level="series">
<did>
<unittitle>Works by Marc Allégret</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4.17</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">11 boxes</physdesc>
<unitdatestructured altrender="1907-1969" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1907">1907</fromdate>
<todate standarddate="1969">1969</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_ccd4a5aec8ee5a349543203983bc25f1">
<head>Arrangement</head>
<p>Arranged alphabetically by film title.</p>
</arrangement>
<scopecontent id="aspace_03dcbef2d63d914d961efe6a895abce0">
<head>Scope and Contents</head>
<p>Series I, Works by Marc Allégret, housed in boxes 1-11, consists of material relating to films shot or directed by Allégret throughout his career as a filmmaker. Materials include screenplays, shooting scripts, correspondence, background and research materials, production notes and documents, cut film, photographs, and printed ephemera. There are screenplays or shooting scripts for over a dozen feature-length films and larger, mixed files for three documentaries, <title localtype="simple" render="italic">
<part>Voyage au Congo</part>
</title> (1927), <title localtype="simple" render="italic">
<part>Occultisme et magie</part>
</title>(1951), and <title localtype="simple" render="italic">
<part>Avec André Gide</part>
</title> (1952).</p>
<p>The files for <title localtype="simple" render="italic">
<part>Voyage au Congo</part>
</title>, including correspondence, manuscript material, photographs, and printed ephemera, document Allegrét's travels with André Gide through French equatorial Africa in the mid 1920s--Gide's journals were also published shortly after their return as <title localtype="simple" render="italic">
<part>Voyage au Congo</part>
</title> (1927) and <title localtype="simple" render="italic">
<part>Retour du Tchad</part>
</title> (1928). Material identified in the list below as "Notes and notebooks" preserves folders of letters, background material, itineraries, lists of supplies, financial records, journal entries, ethnographic observations, language aids, and other papers. Correspondence relating chiefly to distribution of the documentary, as well as to publication of photographs, can be found in the "Correspondence" folders, which date from 1927 to 1930, while correspondence relating to travel can be found scattered throughout the "Notes and notebooks". Correspondents include Kodak founder George Eastman, to whom there is a draft of a letter, in English, soliticting camera equipment for "artistic and scientific research," and colleagues of Allégret's father, Elie, at the Sociéte des mission évangéliques de Paris.</p>
<p>The <title localtype="simple" render="italic">
<part>Voyage au Congo</part>
</title> materials in Series I complement the research materials, drafts, and proofs relating to Gide's travel writings in Series II. Together these two groups of material document travel through areas now known as the Republic of the Congo, the Central African Republic, Chad, and Cameroon, and aspects of life in parts of these countries, including colonial attitudes and relationships.</p>
<p>Allégret's documentary on André Gide, released shortly after Gide's death in 1951, combines still photographs, documentary and newsreel footage, and interviews. Files for the film include correspondence, manuscript material, and cut film. The manuscript material (also identified in the list as "Notes") preserves folders of correspondence, lists of photographs and documents used in the film, drafts of interviews and commentary, financial records, and other papers relating to the production and distribution of the film. Correspondents include: Gaston Criel, Henri Langlois of the Cinémathèque française, Jean Duché, Jean Schlumberger, René Gustave Nobécourt, Jean-Louis Barrault, Roger Martin du Gard, Justin O'Brien, Pierre Herbart, Philippe Halsman, Yvonne Davet, Georges Sirot, and many others; included are letters to and from Allégret's assistant Pierre Boursaus.</p>
<p>The files for <title localtype="simple" render="italic">
<part>Occultisme et magie</part>
</title>, including correspondence, printed ephemera, photographs, and manuscript material, feature drafts of interviews, essays, and notes on the following topics: astrology, black magic, occultism and science, parapsychology, alchemy, hypnotism, faith and medicine healers, spiritualism, yoga, and fakirs. There is material by or relating to Robert Amadou, Jean Piverd, Jean Auscher, Scarha-Bey, Jean Thévenot, and others.</p>
<p>Many of Allégret's feature films, such as <title localtype="simple" render="italic">
<part>L'Amant de Lady Chatterly</part>
</title> and <title localtype="simple" render="italic">
<part>Le Bal du Comte d'Orgel</part>
</title>, were adapted from literary works, and the dialogue and/or screenplays were either written by others or in collaboration with Allégret. Contributors include Marcel Achard, Françoise Giroud, H. G. Lustig, Charles de Peyret-Chappuis, and Carlo Rim. French composer Georges Auric also wrote scores for a number of Allégret's films, and music to a theatrical adaptation of <title localtype="simple" render="italic">
<part>Volpone</part>
</title> by Jules Romains can be found in Series II.</p>
<p>Cut film is stored in cold storage.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/257671"
id="ref12"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>L'amant de Lady Chatterley</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257672"
id="ref13"
level="file">
<did>
<unittitle>Screenplay, typescript</unittitle>
<unitdatestructured altrender="1954 June 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1954-06-30">1954 June 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22588 /locations/9"
containerid="39002075033507"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1-2</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257673"
id="ref14"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>L'arlésienne</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257674"
id="ref15"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22588 /locations/9"
containerid="39002075033507"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257675"
id="ref16"
level="file">
<did>
<unittitle>Shooting script, typescript, corrected</unittitle>
<unitdatestructured altrender="[ca. 1941]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1941">[ca. 1941]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22588 /locations/9"
containerid="39002075033507"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">4</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257676"
id="ref17"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Avec André Gide</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257677"
id="ref18"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1949-1952" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1952">1952</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22588 /locations/9"
containerid="39002075033507"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">5-7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257678"
id="ref20"
level="file">
<did>
<unittitle>Cut film</unittitle>
<unitdatestructured altrender="1951" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951">1951</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22589 /locations/4051"
containerid="39002075033515"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">8-19</container>
<daoset altrender="/repositories/11/digital_objects/250576">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2111634"
identifier="oid:2111634"
linktitle="24 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1348680/full/!150,150/0/default.jpg"
identifier="oid:2111634"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2111634"
identifier="oid:2111634"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Cut film</p>
</descriptivenote>
</daoset>
</did>
<accessrestrict id="aspace_2988c63f5b441255eca8d9f2df0d8a55"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted fragile material. For further information consult the appropriate curator.</p>
</accessrestrict>
</c>
<c altrender="/repositories/11/archival_objects/257679"
id="ref21"
level="file">
<did>
<unittitle>Cut film</unittitle>
<unitdatestructured altrender="1951" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951">1951</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22590 /locations/9"
containerid="39002075033523"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">20-25</container>
</did>
<accessrestrict id="aspace_e6baa78b9b796103cfea17940bf8126c"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted fragile material. For further information consult the appropriate curator.</p>
</accessrestrict>
</c>
<c altrender="/repositories/11/archival_objects/257680"
id="ref22"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdatestructured altrender="1931-1952, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931">1931</fromdate>
<todate standarddate="1952">1952</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22591 /locations/9"
containerid="39002075033531"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">26-44</container>
<daoset altrender="/repositories/11/digital_objects/250575">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2111642"
identifier="oid:2111642"
linktitle="1 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1348704/full/!150,150/0/default.jpg"
identifier="oid:2111642"
linktitle="1 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2111642"
identifier="oid:2111642"
linktitle="1 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Notes</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_3dc048053a40e58679f99d06691a21ea">
<head>Scope and Contents</head>
<p>Includes correspondence</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257681"
id="ref24"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Le bal du comte d'Orgel</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257682"
id="ref25"
level="file">
<did>
<unittitle>Clippings</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22603 /locations/4051"
containerid="39002093792191"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">16</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">171</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257683"
id="ref27"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22592 /locations/9"
containerid="39002075033549"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">45</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257684"
id="ref28"
level="file">
<did>
<unittitle>Shooting scripts, typescript</unittitle>
<unitdatestructured altrender="1969, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1969">1969, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22592 /locations/9"
containerid="39002075033549"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">46-47</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257685"
id="ref29"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>La belle aventure</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257686"
id="ref30"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdatestructured altrender="1942 September 4"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1942-09-04">1942 September 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22592 /locations/9"
containerid="39002075033549"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">48</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257687"
id="ref31"
level="file">
<did>
<unittitle>Shooting script, annotated</unittitle>
<unitdatestructured altrender="[1942?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1942">[1942?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22592 /locations/9"
containerid="39002075033549"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">49</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257688"
id="ref32"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Félicie Nanteuil</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257689"
id="ref33"
level="file">
<did>
<unittitle>Screenplay, holograph fragments</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">50</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257690"
id="ref34"
level="file">
<did>
<unittitle>Shooting script, typescript</unittitle>
<unitdatestructured altrender="[ca. 1945]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1945">[ca. 1945]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">51-53</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257691"
id="ref35"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Gribouille</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257692"
id="ref36"
level="file">
<did>
<unittitle>Screenplay, holograph, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">54</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257693"
id="ref37"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>L'hôtel du libre échange</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257694"
id="ref38"
level="file">
<did>
<unittitle>Shooting script, typescript, corrected</unittitle>
<unitdatestructured altrender="[ca. 1934]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">[ca. 1934]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">55</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257695"
id="ref39"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Julietta</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257696"
id="ref40"
level="file">
<did>
<unittitle>Screenplay, typescript</unittitle>
<unitdatestructured altrender="1953 April 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1953-04-17">1953 April 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">56</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257697"
id="ref41"
level="file">
<did>
<unittitle>Shooting script, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">57</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257698"
id="ref42"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Lunegarde</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257699"
id="ref43"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1941" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1941">1941</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1944" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1944">1944</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">58</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257700"
id="ref44"
level="file">
<did>
<unittitle>Documents</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">59</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257701"
id="ref45"
level="file">
<did>
<unittitle>Photographs</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22593 /locations/9"
containerid="39002075033556"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">60</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257702"
id="ref46"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Occultisme et magie</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3336734"
id="aspace_f178d4d5ef7def1fa9cf15f9f114ed6a"
level="file">
<did>
<unittitle>Clippings</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1950, undated</unitdate>
<container altrender="/repositories/11/top_containers/22603 /locations/4051"
containerid="39002093792191"
id="aspace_f178d4d5ef7def1fa9cf15f9f114ed6a_c1"
label="Mixed Materials"
localtype="box">16</container>
<container id="aspace_f178d4d5ef7def1fa9cf15f9f114ed6a_c2"
localtype="folder"
parent="aspace_f178d4d5ef7def1fa9cf15f9f114ed6a_c1">172</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257703"
id="ref47"
level="file">
<did>
<unittitle>Documents</unittitle>
<unitdatestructured altrender="1950-1953, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22594 /locations/9"
containerid="39002075033564"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">61-81</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257704"
id="ref48"
level="file">
<did>
<unittitle>Documents</unittitle>
<unitdatestructured altrender="1950-1953, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22595 /locations/9"
containerid="39002075033572"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">82-83</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257705"
id="ref49"
level="file">
<did>
<unittitle>Photographs</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/22595 /locations/9"
containerid="39002075033572"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">84</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/257706"
id="ref50"
level="file">
<did>
<unittitle>Printed ephemera</unittitle>
<unitdatestructured altrender="1950-1953, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/22595 /locations/9"
containerid="39002075033572"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">85-86</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/257707"
id="ref52"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Orage</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/257708"
id="ref53"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdatestructured altrender="1937, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937, undated</datesingle>
</unitdatestructured>