-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path869.xml
2523 lines (2523 loc) · 134 KB
/
869.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.jdwild">beinecke.jdwild</recordid>
<otherrecordid localtype="BIB">10516745</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the John Daniel Wild Papers
</titleproper>
<titleproper localtype="filing">Wild (John Daniel) Papers</titleproper>
<author>by Diane J Ducharme and James K. Fisher</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>May 2012</date>
<num>GEN MSS 842</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">10516745</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-12, 12a-13</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:44:09-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:44</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/869" level="collection">
<did>
<unittitle>John Daniel Wild papers</unittitle>
<unitid>GEN MSS 842</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>6.80</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">14 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1974">1974</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1957">1957</fromdate>
<todate standarddate="1972">1972</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_9c1854701cad4e81720a711cf80bb2f2">The collection contains writings, lecture notes, syllabi, research notes and notebooks and other materials documenting the scholarly career of American philosopher John Daniel Wild. In particular, the papers concern Wild's work on aspects of Phenomenology and Existentialism during the last decades of his career.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Wild, John, 1902-1972</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_d299508810149cc383e25f27505fdecf">
<head>Immediate Source of Acquisition</head>
<p>Gift of Mrs. John Wild, 1975; gift of Richard Sugarman, 2004.</p>
</acqinfo>
<accessrestrict id="aspace_a01fe9bb6dcb1c49e73c77ae933b94aa">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_01c5e03efe9544dfe32ef7d2397bfb59">
<head>Conditions Governing Use</head>
<p>The John Daniel Wild Papers are the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_06c4493c480e7558157b13ebe2c7621d">
<head>Preferred Citation</head>
<p>John Daniel Wild Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_f7b3c89827482c84e765e6347cb21da6">
<head>Processing Information</head>
<p>This collection received a basic level of processing, including rehousing and minimal organization, in 2012.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection, including a donor list, 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 were supplied by staff during basic processing.</p>
<p>Former call numbers: Uncat MS Vault Wild; Uncat MSS 733</p>
</processinfo>
<bioghist id="aspace_2b5f941420449d9433d7ace15bb42179">
<head>John Daniel Wild (1902-1972)</head>
<p>John Daniel Wild, American philosopher, was born in Chicago, Illinois. He received his B.A. from the University of Chicago and his M.A. from Harvard University. He completed his Ph.D at the University of Chicago in 1926. After teaching for one year at the University of Michigan, Wild joined the Harvard faculty and taught there until 1961.In that year he became chair of the philosophy department at Northwestern University, then a leading center for the study of Phenomenology. He left Northwestern to join the Yale faculty in 1963; his final academic position was with the University of Florida.</p>
<p>His works included <title localtype="simple" render="italic">
<part>Plato's Theory of Man</part>
</title> (1946); <title localtype="simple" render="italic">
<part>Plato's Modern Enemies and the Theory of Natural Law</part>
</title>(1953); <title localtype="simple" render="italic">
<part>The Challenge of Existentialism</part>
</title> (1955); and<title localtype="simple" render="italic">
<part>The Radical Empiricism of William James</part>
</title> (1969). Wild was also one of the founders of the Society for Phenomenology and Existential Philosophy.</p>
</bioghist>
<scopecontent id="aspace_cd95b54ec1ff1cebe5b605dd8212d2e3">
<head>Scope and Contents</head>
<p>The collection contains writings, lecture notes, syllabi, research notes and notebooks and other materials documenting the scholarly career of American philosopher John Daniel Wild. In particular, the papers concern Wild's work on aspects of Phenomenology and Existentialism during the last decades of his career.</p>
</scopecontent>
<arrangement id="aspace_c0c579bc878dd86f8557eb79f6af37d2">
<head>Arrangement</head>
<p>Organized in two groupings: I. 1974 Acquisition, 1943-1974; II. 2004 Acquisition, 1934-1972.</p>
<p>Material within this collection has been organized by acquisition reflecting the fact that the collection has been acquired in increments over time. Researchers should note that material within each acquisition overlaps with/or relates to material found in other acquisitions. For instance, writings and lecture notes can be found in both groupings. In order to locate all relevant material within this collection, researchers will need to consult each acquisition described in the Collection Contents section.</p>
<p>Researchers should also note that similar material can be arranged differently in each acquisition, depending on how the material was organized when it was received by the library.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85025243"
source="lcsh">
<part localtype="topical">Christianity and existentialism</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85046373"
source="lcsh">
<part localtype="topical">Existential phenomenology</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85046376"
source="lcsh">
<part localtype="topical">Existentialism</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85100683"
source="lcsh">
<part localtype="topical">Phenomenology</part>
</subject>
<subject source="local">
<part localtype="topical">Philosophers</part>
<part localtype="geographic">United States</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85100858"
source="lcsh">
<part localtype="topical">Philosophy, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<persname rules="aacr">
<part localtype="agent_person">Wild, John, 1902-1972</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/280973"
id="ref115"
level="series">
<did>
<unittitle>2004 Acquisition</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1934-1972" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1972">1972</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_ef7476e786febdf391dff61c10d35453">
<head>Arrangement</head>
<p>Arranged by subject and/or type of material by the donor.</p>
</arrangement>
<scopecontent id="aspace_068cbc89856553a610380b7ebba6772a">
<head>Scope and Contents</head>
<p>Notebooks, writings, lecture notes and subject files documenting the scholarly career of John Daniel Wild. Folder titles are derived from the detailed donor list, which is located in Box 12, folder 1.</p>
</scopecontent>
<scopecontent id="aspace_044c4c191ca1a89e3fc2573e84bf7321">
<head>Scope and Contents</head>
<p>Former call number: Uncat MSS 733</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/280881"
id="ref13"
level="file">
<did>
<unittitle>"Philosophy 201b, Spring 1969"</unittitle>
<unitdatestructured altrender="1969" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1969">1969</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25593 /locations/9"
containerid="39002091280595"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280882"
id="ref14"
level="file">
<did>
<unittitle>"Marxism and Existentialism II"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25593 /locations/9"
containerid="39002091280595"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280883"
id="ref15"
level="file">
<did>
<unittitle>"Seminar Yale 1963: Problems of Epistemology and Metaphysics"</unittitle>
<unitdatestructured altrender="1963" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1963">1963</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25593 /locations/9"
containerid="39002091280595"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280884"
id="ref16"
level="file">
<did>
<unittitle>"Ethics and Political Philosophy"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25593 /locations/9"
containerid="39002091280595"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280885"
id="ref17"
level="file">
<did>
<unittitle>"Philosophy of religion, 1967"</unittitle>
<unitdatestructured altrender="1967" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1967">1967</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25593 /locations/9"
containerid="39002091280595"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280886"
id="ref18"
level="file">
<did>
<unittitle>"Course on Otherness"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25593 /locations/9"
containerid="39002091280595"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280887"
id="ref19"
level="file">
<did>
<unittitle>"Ethics and political philosophy"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25594 /locations/9"
containerid="39002091280587"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280888"
id="ref20"
level="file">
<did>
<unittitle>"My Book, 1968 Summer!"</unittitle>
<unitdatestructured altrender="1968" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1968">1968</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25594 /locations/9"
containerid="39002091280587"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280889"
id="ref21"
level="file">
<did>
<unittitle>"Philosophy 255: My Book"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25594 /locations/9"
containerid="39002091280587"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280890"
id="ref22"
level="file">
<did>
<unittitle>"Phil. 138b 1960"</unittitle>
<unitdatestructured altrender="1960" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1960">1960</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25594 /locations/9"
containerid="39002091280587"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280891"
id="ref23"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Challenge of Existentialism</part>
</title>: incomplete draft</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25594 /locations/9"
containerid="39002091280587"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280892"
id="ref24"
level="file">
<did>
<unittitle>"My Book: Levels of Awareness"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25594 /locations/9"
containerid="39002091280587"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280893"
id="ref25"
level="file">
<did>
<unittitle>"My Book: Subjectiveness"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25594 /locations/9"
containerid="39002091280587"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280894"
id="ref26"
level="file">
<did>
<unittitle>"Philosophy 30A: 1965-66"</unittitle>
<unitdatestructured altrender="1965-1966" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1965">1965</fromdate>
<todate standarddate="1966">1966</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280895"
id="ref27"
level="file">
<did>
<unittitle>"What I Hold" (parts of APA paper)</unittitle>
<unitdatestructured altrender="1960" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1960">1960</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280896"
id="ref28"
level="file">
<did>
<unittitle>Willliam F. Zuurdeeg, "Short paper on methodological points"</unittitle>
<unitdatestructured altrender="1960" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1960">1960</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280897"
id="ref29"
level="file">
<did>
<unittitle>Materials related to <title localtype="simple" render="italic">
<part>The Other</part>
</title>, including typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280898"
id="ref30"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Other</part>
</title> and <title localtype="simple" render="italic">
<part>Otherness</part>
</title>, notes and fragments</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280899"
id="ref31"
level="file">
<did>
<unittitle>"Talks on Phenomenology and Existentialism"</unittitle>
<unitdatestructured altrender="1957, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1957">1957, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280900"
id="ref32"
level="file">
<did>
<unittitle>"The Other Person--Some Phenomenological Reflections"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280901"
id="ref33"
level="file">
<did>
<unittitle>"My Philosophy ideas"</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1957 November" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1957-11">1957 November</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280902"
id="ref35"
level="file">
<did>
<unittitle>"Preface to <title localtype="simple" render="italic">
<part>Challenge</part>
</title>"</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1963" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1963">1963</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280903"
id="ref37"
level="file">
<did>
<unittitle>Lecture notes, article notes and bibliography</unittitle>
<unitdatestructured altrender="1957, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1957">1957, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25595 /locations/9"
containerid="39002091280579"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280904"
id="ref38"
level="file">
<did>
<unittitle>"Ethics 11b: Secular and Christian ethics"</unittitle>
<unitdatestructured altrender="1956" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956">1956</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25596 /locations/9"
containerid="39002091280561"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280905"
id="ref39"
level="file">
<did>
<unittitle>"The Human Lebenswelt"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25596 /locations/9"
containerid="39002091280561"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280906"
id="ref40"
level="file">
<did>
<unittitle>"Poli. Sci. talk, April 9, 1961"</unittitle>
<unitdatestructured altrender="1961" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1961">1961</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25596 /locations/9"
containerid="39002091280561"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280907"
id="ref41"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Uses of Philosophy</part>
</title>: lecture</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25596 /locations/9"
containerid="39002091280561"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280908"
id="ref42"
level="file">
<did>
<unittitle>"Existentialism and Realism:" notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25596 /locations/9"
containerid="39002091280561"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280909"
id="ref43"
level="file">
<did>
<unittitle>"Philosophy 150, Spring 1964"</unittitle>
<unitdatestructured altrender="1964" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1964">1964</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25596 /locations/9"
containerid="39002091280561"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280910"
id="ref44"
level="file">
<did>
<unittitle>Notes and drafts on Christianity and Existentialism</unittitle>
<unitdatestructured altrender="1960-1961" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25596 /locations/9"
containerid="39002091280561"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280911"
id="ref45"
level="file">
<did>
<unittitle>John Wild bibliography</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25596 /locations/9"
containerid="39002091280561"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280912"
id="ref46"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Death of God and the Life of Man</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280913"
id="ref47"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Rights of the Other as Other</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280914"
id="ref48"
level="file">
<did>
<unittitle>"Lecture notes for Philosophy 504"</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280915"
id="ref50"
level="file">
<did>
<unittitle>"Projects 1960 ff. Also 1964"</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280916"
id="ref52"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Other Person</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280917"
id="ref53"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The World and Its Versions</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280918"
id="ref54"
level="file">
<did>
<unittitle>Notes, lecture notes and memoranda</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280919"
id="ref56"
level="file">
<did>
<unittitle>"Collective existences: notes for lecture"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280920"
id="ref57"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Existential Themes in the Thought of William James</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280921"
id="ref58"
level="file">
<did>
<unittitle>"Notes for Seminar on <title localtype="simple" render="italic">
<part>The A-Priori Philosophy</part>
</title>"</unittitle>
<unitdatestructured altrender="1967" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1967">1967</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280922"
id="ref59"
level="file">
<did>
<unittitle>"Notes for Philosophy 56a, Freedom and responsibility"</unittitle>
<unitdatestructured altrender="1966" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1966">1966</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280923"
id="ref60"
level="file">
<did>
<unittitle>Unidentified typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25597 /locations/9"
containerid="39002091280553"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280924"
id="ref61"
level="file">
<did>
<unittitle>"Popper Paper"</unittitle>
<unitdatestructured altrender="1964" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1964">1964</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25598 /locations/9"
containerid="39002091280546"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280925"
id="ref62"
level="file">
<did>
<unittitle>"Work: conference:" papers in several languages</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25598 /locations/9"
containerid="39002091280546"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280926"
id="ref63"
level="file">
<did>
<unittitle>"Natural law and personal ethics:" lecture notes</unittitle>
<unitdatestructured altrender="1958" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958">1958</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25598 /locations/9"
containerid="39002091280546"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280927"
id="ref64"
level="file">
<did>
<unittitle>Review of <title localtype="simple" render="italic">
<part>Being and Nothingness</part>
</title>
</unittitle>
<unitdatestructured altrender="1956" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956">1956</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25598 /locations/9"
containerid="39002091280546"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280928"
id="ref65"
level="file">
<did>
<unittitle>"Is Normative Ethics a Rational Discipline?"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25598 /locations/9"
containerid="39002091280546"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280929"
id="ref66"
level="file">
<did>
<unittitle>Photocopy of conclusion of unidentified dissertation</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25598 /locations/9"
containerid="39002091280546"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280930"
id="ref67"
level="file">
<did>
<unittitle>"Freedom--paper fragments"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25598 /locations/9"
containerid="39002091280546"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280931"
id="ref68"
level="file">
<did>
<unittitle>Manuscript and typescript draft of an unidentified history of Western philosophy</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25598 /locations/9"
containerid="39002091280546"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/280932"
id="ref70"
level="file">
<did>
<unittitle>"A Philosophy of Freedom, Moravian College, 1964"</unittitle>