-
Notifications
You must be signed in to change notification settings - Fork 0
/
npkmc_222_215.xml
1354 lines (1354 loc) · 51 KB
/
npkmc_222_215.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"?>
<!DOCTYPE ead PUBLIC "+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival Description (EAD) Version 2002)//EN" "ead.dtd">
<ead xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:isbn:1-931666-22-9" xmlns:ns2="http://www.w3.org/1999/xlink" xsi:schemaLocation="urn:isbn:1-931666-22-9 https://www.loc.gov/ead/ead.xsd">
<!-- Header Portion of EAD -->
<eadheader langencoding="iso639-2b" scriptencoding="iso15924" repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601">
<eadid countrycode="US" mainagencycode="US-NPkMC" url="http://www.marist.edu">npkmc_222_215</eadid>
<filedesc>
<titlestmt>
<titleproper>Catholic Studies Collection</titleproper>
<author>Ashley Polašèk <![CDATA[&]]> John Ansley, PhD, 2005; Finding Aid Encoded by:
Monish M. Singh, 2005; Finding Aid Encoding updated by: Connor Johnson,
2022</author>
</titlestmt>
<publicationstmt>
<publisher>Marist College Archives and Special Collections</publisher>
<address>
<addressline>3399 North Road <lb/>Poughkeepsie, NY 12601 <lb/>Phone:
845-575-5217 <lb/>Fax: 845-575-3150 <lb/>Email:
library.archives@marist.edu<lb/>Website:
https://archives.marist.edu/</addressline>
</address>
<date type="publication" normal="2005">Summer 2005</date>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Monish M. Singh<date>2005</date>
</creation>
<langusage>Finding aid written in <language langcode="eng" scriptcode="Latn">English</language></langusage>
<descrules><abbr>DACS</abbr>Describing Archives: A Content Standard. Chicago: Society of
American Archivists, 2013.</descrules>
</profiledesc>
<revisiondesc>
<list>
<item>Feburary 2022, EAD updated by Connor Johnson</item>
</list>
</revisiondesc>
</eadheader>
<!-- Archival Description portion of EAD -->
<archdesc level="collection">
<did>
<unittitle>Catholic Studies Collection</unittitle>
<unitid countrycode="US" repositorycode="US-NPkMC">NPkMC-222-215</unitid>
<unitdate type="inclusive" normal="1870/2003">1870 – 2003</unitdate>
<physdesc>
<extent type="size">7.5 Linear Feet</extent>
</physdesc>
<repository>
<corpname>Marist College Archives and Special Collections</corpname>
</repository>
<origination label="creator">
<persname>Louis Zuccarello (Marist Heritage
Professor)</persname>
</origination>
<abstract>The Catholic Studies Collection consists of both local materials pertaining to
the state of New York and Dutchess County, as well as general materials on
Catholicism throughout the United States and abroad. The collection contains parish
histories, the papers and preparation notes of Louis Zuccarello, videos, photographs
of local churches, audio tapes, materials on education, essays, and various
newspapers and newspaper clippings on issues pertaining to Catholicism. </abstract>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physloc>Please contact the Marist College Archives and Special Collections for
information regarding use and access of this collection.</physloc>
</did>
<scopecontent>
<head>Collection Overview</head>
<p>The Catholic Studies Collection contains various documents, photographs, books,
essays, pamphlets, newspapers, and audio and video tapes all having to do with
Catholicism and/ or topics which touched on Catholicism and the lives of Catholics
in the years from 1870 through 2003. </p>
</scopecontent>
<acqinfo>
<head>Acquisitions Informantion</head>
<p>The Catholic Studies Collection was given to the Marist Library by Louis Zuccarello.
</p>
</acqinfo>
<bioghist encodinganalog="545">
<head>Biographical Note</head>
<p>Catholicism has played an important role in Dutchess County as Louis Zuccarello set
out to show by compiling this collection. With parishes springing up all over
Dutchess County to serve the needs of the various ethnic groups, Catholicism was a
vital element of the community and in America in general. American bishops in New
York and the Dutchess area, like Nilan and Burtsell were getting involved in trying
to reform the religion and align it more closely with people’s lifestyles and values
in America, as the Americanism school of thought sprung up and climaxed in the late
1800s. Catholicism also played an important role in the education of the local
populace as different parishes opened up their own schools, colleges, and
seminaries.</p>
</bioghist>
<accessrestrict>
<head>Restrictions to Access</head>
<p>There are no restrictions on this collection</p>
</accessrestrict>
<userestrict>
<head>Notice of Copyright</head>
<p>Individuals requesting reproductions expressly assume the responsibility for
compliance with all pertinent provisions of the Copyright Act, 17 U.S.C. ss101 et
seq. Patrons further agree to indemnify and hold harmless the Marist College
Archives and Special Collections and its staff in connection with any disputes
arising from the Copyright Act, over the reproduction of material at the request of
patrons. For more information please visit the following website:
http://www.loc.gov/copyright/title17/.</p>
</userestrict>
<prefercite>
<head>Preferred Citation</head>
<p>[Description of item, date, location of item in order of series, box number, folder
number ], in the Catholic Studies Collection, James A. Cannavino Library, Marist
College.</p>
</prefercite>
<arrangement>
<p>Materials are arranged into two series: 1) Catholic Studies, general, with seven subseries, and 2) The Catholic Church in New York, with seven subseries.</p>
</arrangement>
<dsc type="combined">
<c01 level="series">
<did>
<unitid>1</unitid>
<unittitle>1. Catholic Studies, general</unittitle>
<physdesc>
<extent type="boxes">Boxes: 1 - 2</extent>
<extent type="folders">Folders: 1 - 63</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains subseries Newspapers, Books/ Journals on Law, History, and
Catholicism, Audio Visual Materials, Education, College, Sodality, Assorted, General</p>
</scopecontent>
<arrangement>
<p>Subject</p>
</arrangement>
<c02 level="subseries">
<did>
<unitid>1.1</unitid>
<unittitle>Subseries 1.1: Newspapers</unittitle>
<physdesc>
<extent type="boxes">Box: 1</extent>
<extent type="folders">Folders: 1 - 5</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains a collection of assorted Catholic New York Newspapers
spanning from 1983 – 2000. There is also an issue of Stars and Stripes
covering Desert Storm and Queen of Peace from 1995.</p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">1</container>
<unittitle>Catholic New York. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">2</container>
<unittitle>Catholic New York. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">3</container>
<unittitle>Catholic New York. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">4</container>
<unittitle>Stars and Stripes. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">5</container>
<unittitle>Queen of Peace. </unittitle>
<container type="box">1</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.2</unitid>
<unittitle>Subseries 1.2: Books/ Journals on Law, History, and
Catholicism</unittitle>
<physdesc>
<extent type="boxes">Box: 1</extent>
<extent type="folders">Folders: 6 - 12</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains various books and journals dealing with different
Catholic issues and history.</p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">6</container>
<unittitle>Past and Present. A Journal of History and Government. Vol.
II (1957). St. John’s University. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">7</container>
<unittitle>Carthy, Mother Mary Peter. “English Influences on Early
American Catholicism.” Vol. XLIV (1959). Washington, D.C.: The
Catholic University of America Press. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">8</container>
<unittitle>The Catholic Lawyer. Vol. 9, No. 1 (1963). </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">9</container>
<unittitle>Land and Water Law Review. “Conscription and the
Conscientious Objectors”. Joseph F. Costanzo. Vol. VI, No. 2 (1971). </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">10</container>
<unittitle>American Views on Religion, Politics and Public Policy. April
2001. The Pew Forum. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">11</container>
<unittitle>The Catholic Historical Review. Vol. LXXXIX, No. 2. April
2003. The Catholic Historical Review. Vol. LXXXIX, No. 3. July 2003. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">12</container>
<unittitle>U.S. Catholic Historian. Vol. 21. No. 3. Summer 2003. </unittitle>
<container type="box">1</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.3</unitid>
<unittitle>Subseries 1.3: Audio Visual Materials</unittitle>
<physdesc>
<extent type="boxes">Box: 1</extent>
<extent type="folders">Folders: 13 - 17</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains video tapes and audio cassettes covering the Focolare
Movement, Marist College, and other topics in Catholicism.</p>
</scopecontent>
<arrangement>
<p>Size</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">13</container>
<unittitle>Knowledge Mgt. Focus Group. Marist Retirees discuss Marist
teaching approaches. April 3, 2002. Senior Faculty. May 14, 2002. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">14</container>
<unittitle>Cassette Tapes. Radio Free Europe. Radio Liberty. Mar. 14,
1986. Trinity Urban Issues Forum. Oct. 11, 1995. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">15</container>
<unittitle>Bishop Fulton J. Sheen. “Life is Worth Living.” 1992.
(Focolare Movement) </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">16</container>
<unittitle>DeMello, Anthony S.J. Sadhana: A Way to God. Christian
Exercises in Eastern Form. </unittitle>
<container type="box">1</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">17</container>
<unittitle>Lubich, Chiara. “What We Are.” April 2002. (Focolare
Movement) </unittitle>
<container type="box">1</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.4</unitid>
<unittitle>Subseries 1.4: Education</unittitle>
<physdesc>
<extent type="boxes">Box: 2</extent>
<extent type="folders">Folders: 18 - 32</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains assorted documents, posters, pamphlets, and newsletters
dealing with education. </p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">18</container>
<unittitle>Ad Campaign for better Schools, 1943, 1949-1951. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">19</container>
<unittitle>American Council on Education. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">20</container>
<unittitle>American Education Week. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">21</container>
<unittitle>Bulletins for institutions of Higher Learning.1944-1952. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">22</container>
<unittitle>Committee of the Catholic Commission on Intellectual and
Cultural Affairs </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">23</container>
<unittitle>Curriculum Conference for Catholic Schools </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">24</container>
<unittitle>Federal Aid to Education </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">25</container>
<unittitle>Miscellaneous Newsletters </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">26</container>
<unittitle>Miscellaneous Pamphlets on Education </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">27</container>
<unittitle>National Catholic Education Association </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">28</container>
<unittitle>NCEA Convention. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">29</container>
<unittitle>Notes and Comment on General Education. 1950 - 1952. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">30</container>
<unittitle>Radio and Education </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">31</container>
<unittitle>Religious Book Week </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">32</container>
<unittitle>Senate Legislation </unittitle>
<container type="box">2</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.5</unitid>
<unittitle>Subseries 1.5: College</unittitle>
<physdesc>
<extent type="boxes">Box: 2</extent>
<extent type="folders">Folders: 33 - 41</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains various documents dealing with higher education. There
are materials from the Catholic University of America as well as studies
and other information on college. </p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">33</container>
<unittitle>The Catholic University of America. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">34</container>
<unittitle>The Catholic University of America. The Workshop on College
Organization and Administration. 1. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">35</container>
<unittitle>The Catholic University of America. The Workshop on College
Organization and Administration. 2. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">36</container>
<unittitle>College and Church. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">37</container>
<unittitle>College Graduates in Industry. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">38</container>
<unittitle>Fordham </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">39</container>
<unittitle>Higher Education </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">40</container>
<unittitle>National Commission on Christian Higher Education </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">41</container>
<unittitle>The State Education Dept. </unittitle>
<container type="box">2</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.6</unitid>
<unittitle>Subseries 1.6: Sodality</unittitle>
<physdesc>
<extent type="boxes">Box: 2</extent>
<extent type="folders">Folders: 42 - 44</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains various materials having to do with sodality, including
the Parish Red Book for Sodality, Instructions for Sodality Candidates,
and pamphlets. </p>
</scopecontent>
<arrangement>
<p>Alphabetical</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">42</container>
<unittitle>Instruction of Sodality Candidates. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">43</container>
<unittitle>Parish Sodalist’s Red Book. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">44</container>
<unittitle>Sodality Pamphlets - The Queen’s Work </unittitle>
<container type="box">2</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>1.7</unitid>
<unittitle>Subseries 1.7: Assorted, General</unittitle>
<physdesc>
<extent type="boxes">Box: 2</extent>
<extent type="folders">Folders: 45 - 63</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains documents spanning a host of topics dealing with
Catholicism and the World War years, mostly from the early – middle
1900s.</p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">45</container>
<unittitle>The Antigonish Way </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">46</container>
<unittitle>Between the Lines </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">47</container>
<unittitle>Child Labor </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">48</container>
<unittitle>Christian Social Living </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">49</container>
<unittitle>Christmas </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">50</container>
<unittitle>The Christophers </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">51</container>
<unittitle>The Ford Foundation </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">52</container>
<unittitle>Forest Industry Pamphlets </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">53</container>
<unittitle>Foreign Affairs Outline: Building the Peace. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">54</container>
<unittitle>For Women Only. Newspaper Section. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">55</container>
<unittitle>French Religious Newsletter. Issues 1- 6. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">56</container>
<unittitle>French Religious Newsletter Issues 7 - 12. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">57</container>
<unittitle>International Religious Publications </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">58</container>
<unittitle>Mary’s Garden </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">59</container>
<unittitle>National Catholic Welfare Conference </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">60</container>
<unittitle>Our Lady </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">61</container>
<unittitle>Ten Outstanding Magazine Articles. 1946 - 1949. </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">62</container>
<unittitle>Vocations </unittitle>
<container type="box">2</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">63</container>
<unittitle>Writings on Spirituality </unittitle>
<container type="box">2</container>
</did>
</c03>
</c02>
</c01>
<c01 level="series">
<did>
<unitid>2</unitid>
<unittitle>2. The Catholic Church in New York</unittitle>
<physdesc>
<extent type="boxes">Boxes: 3 - 5</extent>
<extent type="folders">Folders: 64 - 133</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains the subseries References, bibliography, Notes for
Zuccarello’s Papers on the Church, Ethnic Issues, Dutchess County History,
Churches/ Parishes in New York, Marist College, and Miscellaneous</p>
</scopecontent>
<c02 level="subseries">
<did>
<unitid>2.1</unitid>
<unittitle>Subseries 2.1: References, bibliography</unittitle>
<physdesc>
<extent type="boxes">Box: 3</extent>
<extent type="folders">Folders: 64 - 66</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains references and bibliographies complied by Louis
Zuccarello while doing research for his papers on Catholics in the
Dutchess area. </p>
</scopecontent>
<arrangement>
<p>Original Order (Approximately)</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">64</container>
<unittitle>Selected bibliographies and references. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">65</container>
<unittitle>Catholic Scholars </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">66</container>
<unittitle>Citations from Poughkeepsie Journal and Daily Eagle </unittitle>
<container type="box">3</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>2.2</unitid>
<unittitle>Subseries 2.2: Notes for Zuccarello’s Papers on the
Church</unittitle>
<physdesc>
<extent type="boxes">Box: 3</extent>
<extent type="folders">Folders: 67 - 73</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains notes taken while researching Catholicism in Dutchess
County along with drafts of papers on the topic and correspondence
relating to the research process. </p>
</scopecontent>
<arrangement>
<p>Original Order (Approximately)</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">67</container>
<unittitle>Background Information for Papers </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">68</container>
<unittitle>Correspondence relating to research on Catholics in the
Mid-Hudson Area </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">69</container>
<unittitle>Correspondence, Copies of Notes. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">70</container>
<unittitle>Notes on Papers, Catholics in Poughkeepsie </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">71</container>
<unittitle>Drafts. The Catholic Community in Poughkeepsie, 1870 - 1900:
The Period of Testing </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">72</container>
<unittitle>The Catholic Community in Poughkeepsie, 1870 - 1900: The
Period of Testing. Editing of the Original. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">73</container>
<unittitle>Transformation of an American County. Tercentary Conference.
Pluralism in the Catholic Community in 19th Century Poughkeepsie. </unittitle>
<container type="box">3</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>2.3</unitid>
<unittitle>Subseries 2.3: Ethnic Issues</unittitle>
<physdesc>
<extent type="boxes">Box: 3</extent>
<extent type="folders">Folders: 74 - 78</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains various documents and newspapers clippings pertaining to
ethnic groups in New York and their interaction with one another.</p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">74</container>
<unittitle>Ethnics in Poughkeepsie and Dutchess </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">75</container>
<unittitle>Ethnics - Black Catholics </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">76</container>
<unittitle>Italian American Experience in U.S. and Poughkeepsie.
Materials and Clippings. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">77</container>
<unittitle>Ethnic Politics Materials </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">78</container>
<unittitle>Smith, Alfred E. and Taft, Robert. Writings on, by Louis </unittitle>
<container type="box">3</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>2.4</unitid>
<unittitle>Subseries 2.4: Dutchess County History</unittitle>
<physdesc>
<extent type="boxes">Box: 3</extent>
<extent type="folders">Folders: 79 - 86</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains includes a book of Louis Zuccarello’s papers on
Catholicism in the Poughkeepsie area as well as Dutchess County, and
Churches general history, as well as Poughkeepsie’s general history.
There are also various newspaper clippings describing events in Dutchess
County. </p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">79</container>
<unittitle>The Catholic Community in the Poughkeepsie Area, Louis
Zuccarello. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">80</container>
<unittitle>Dutchess, general history. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">81</container>
<unittitle>Dutchess County, Church. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">82</container>
<unittitle>Dutchess Churches and Cemeteries. Photos and Clippings. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">83</container>
<unittitle>Dutchess Catholic Churches. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">84</container>
<unittitle>Catholic Church in Dutchess County. 1808 - 1983. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">85</container>
<unittitle>Poughkeepsie, NY, History. </unittitle>
<container type="box">3</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">86</container>
<unittitle>Assorted Clippings </unittitle>
<container type="box">3</container>
</did>
</c03>
</c02>
<c02 level="subseries">
<did>
<unitid>2.5</unitid>
<unittitle>Subseries 2.5: Churches/ Parishes in New York</unittitle>
<physdesc>
<extent type="boxes">Box: 4</extent>
<extent type="folders">Folders: 87 - 108</extent>
</physdesc>
</did>
<scopecontent>
<p>Series contains documents, photographs, newspaper clippings, and census
data detailing the history of various parishes in New York. </p>
</scopecontent>
<arrangement>
<p>Chronological</p>
</arrangement>
<c03 level="file">
<did>
<container type="folder">87</container>
<unittitle>Archdiocese of New York Materials. </unittitle>
<container type="box">4</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">88</container>
<unittitle>Parish Histories </unittitle>
<container type="box">4</container>
</did>
</c03>
<c03 level="file">
<did>
<container type="folder">89</container>
<unittitle>Holy Trinity </unittitle>
<container type="box">4</container>