-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnalcsr_0005.xml
1216 lines (1216 loc) · 67.2 KB
/
nalcsr_0005.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"?>
<ead xmlns="urn:isbn:1-931666-22-9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd">
<eadheader repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601" langencoding="iso639-2b">
<eadid mainagencycode="US-nalcsr" url="file:/usr/local/projects/migration_scripts/nyead/ead/nalcsr/STROSE_scrapbook.xml">nalcsr_0005</eadid>
<filedesc>
<titlestmt>
<titleproper>
<num>Scrpbk</num>
</titleproper>
<author>Finding aid prepared by Maria Kessler McShane</author>
</titlestmt>
<publicationstmt>
<publisher>The College of Saint Rose Archives</publisher>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>This finding aid was produced using the Archivists' Toolkit<date>2013-11-25T09:34-0500</date>
</creation>
<descrules>Describing Archives: A Content Standard</descrules>
</profiledesc>
</eadheader>
<archdesc level="collection">
<did>
<unittitle>Scrapbook Collection</unittitle>
<unitid>Scrpbk</unitid>
<repository>
<corpname>The College of Saint Rose Archives</corpname>
</repository>
<langmaterial>
<language langcode="eng"/>
</langmaterial>
<physdesc>
<extent>18.0 Linear feet</extent>
<extent>(42 boxes)</extent>
</physdesc>
<unitdate normal="1920/1997" type="inclusive">1920-1997</unitdate>
<abstract id="ref218" label="Abstract">This is a collection of scrapbooks created by former students and faculty. The subjects range from general academic years to specific events.</abstract>
</did>
<relatedmaterial id="ref1">
<head>Related Archival Materials note</head>
<p>There is also an "Officical College Scrapbook Collection" that includes large scrapbooks of newspaper clippings.</p>
</relatedmaterial>
<dsc>
<c id="ref2" level="item">
<did>
<unittitle>Scrapbook 01</unittitle>
<container id="cid12095" type="box" label="Mixed materials">1</container>
<unitdate normal="1921/1927" type="inclusive">1921-1927</unitdate>
<physdesc id="ref6" label="General Physical Description note">Cloth binding (good condition, missing bottom tie); Both fixed and loose items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Maas, Anita, (1925)</persname>
</origination>
</did>
<scopecontent id="ref7">
<head>Scope and Contents note</head>
<p>Includes: Calendar, Correspondence, Dance Cards, Dance Favors, Memorabilia, Newspaper Clippings, Personal Items, Photographs</p>
</scopecontent>
<controlaccess>
<subject source="local">Dances, proms, and balls</subject>
<subject source="local">Rose Day</subject>
</controlaccess>
</c>
<c id="ref9" level="item">
<did>
<unittitle>Scrapbook 02</unittitle>
<container id="cid12096" type="box" label="Mixed materials">2</container>
<container parent="cid12096" type="box">3</container>
<unitdate normal="1921/1927" type="inclusive">1921-1927</unitdate>
<physdesc id="ref10" label="General Physical Description note">Cloth binding (good condition, missing top tie); Both fixed and loose items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Maas, Anita, (1925)</persname>
</origination>
</did>
<scopecontent id="ref11">
<head>Scope and Contents note</head>
<p>Includes: Calendar/Daybook, Correspondence, Dance Cards, Dance Favors, Memorabilia, Newspaper Clippings, Paper Memorabilia, Personal Items, Photographs</p>
</scopecontent>
<controlaccess>
<subject source="local">Dances, proms, and balls</subject>
<subject source="local">Rose Day</subject>
</controlaccess>
<c id="ref13" otherlevel="folders" level="otherlevel">
<did>
<unittitle>Items from Scrapbook 02 Items</unittitle>
<container id="cid12098" type="box" label="Mixed materials">3</container>
<unitdate normal="1921/1927" type="inclusive">1921/1927</unitdate>
</did>
<scopecontent id="ref14">
<head>Scope and Contents note</head>
<p>Folder List: Correspondence 1921, Class Offerings 1921-1922, Correspondence 1922, Class Offerings 1922-1923, Correspondence 1923, Correspondence 1924 [contains $1 silver certificate and check], Musicale; Rose Day Program – 1924, Class Day Programs, Commencement Programs, Graduation Repertoire Program, Rose Day Program, Annual Retreat Programs – 1924, Correspondence 1925 [contains apron from “Apron Social” and check], Card Party, Musicale, Rose Day – 1925, Correspondence 1926, Correspondence 1927, Undated Correspondence, Correspondence from Scrapbook 1, Correspondence from Scrapbook 2, Dance Cards from Scrapbook 1, Ephemera from Scrapbook 1, Ephemera from Scrapbook 2, School Papers from Scrapbook 1, Original Envelope from Scrapbook 1, Original Envelope from Scrapbook 2</p>
</scopecontent>
</c>
</c>
<c id="ref12" level="item">
<did>
<unittitle>Scrapbook 03</unittitle>
<container id="cid12097" type="box" label="Mixed materials">4</container>
<unitdate normal="1940/1941" type="inclusive">1940-1941</unitdate>
<physdesc id="ref15" label="General Physical Description note">Faux-leather cover; Pages very brittle; Fixed items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Whalen, Jean, Sister, (Eleanor)</persname>
</origination>
</did>
<scopecontent id="ref16">
<head>Scope and Contents note</head>
<p>Includes: Music Programs, Newspaper Clippings, Paper Memorabilia</p>
</scopecontent>
<controlaccess>
<subject source="local">Rose Day</subject>
</controlaccess>
</c>
<c id="ref17" level="item">
<did>
<unittitle>Scrapbook 04</unittitle>
<container id="cid12099" type="box" label="Mixed materials">4</container>
<unitdate normal="1939/1940" type="inclusive">1939-1940</unitdate>
<physdesc id="ref19" label="General Physical Description note">Faux-leather cover; Pages very brittle; Fixed items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Whalen, Jean, Sister, (Eleanor)</persname>
</origination>
</did>
<scopecontent id="ref18">
<head>Scope and Contents note</head>
<p>Includes: Correspondence, Drama Programs, Music Programs, Newspaper Clippings, Paper Memorabilia</p>
</scopecontent>
<controlaccess>
<subject source="local">Peace Club</subject>
<subject source="local">Rose Day</subject>
</controlaccess>
</c>
<c id="ref20" level="item">
<did>
<unittitle>Scrapbook 05</unittitle>
<container id="cid12100" type="box" label="Mixed materials">4</container>
<unitdate normal="1939/1968" type="inclusive">1939-1941, 1968</unitdate>
<physdesc id="ref22" label="General Physical Description note">Faux-leather cover; Fixed items; loose packet</physdesc>
<origination label="creator">
<persname rules="local" source="local">Whalen, Jean, Sister, (Eleanor)</persname>
</origination>
</did>
<scopecontent id="ref21">
<head>Scope and Contents note</head>
<p>Includes: Magazine, Photographs</p>
</scopecontent>
<controlaccess>
<subject source="local">Reunions and Homecomings</subject>
</controlaccess>
</c>
<c id="ref23" level="item">
<did>
<unittitle>Scrapbook 06</unittitle>
<container id="cid12101" type="box" label="Mixed materials">5</container>
<unitdate normal="1927/1941" type="inclusive">1927-1931, 1936, 1941</unitdate>
<physdesc id="ref25" label="General Physical Description note">Cloth Binding; Mostly fixed items</physdesc>
<origination label="creator">
<persname rules="dacs" source="local">Welsh, Helen</persname>
</origination>
</did>
<scopecontent id="ref24">
<head>Scope and Contents note</head>
<p>Includes: Correspondence, Drama Programs, Football Programs, Memorabilia, Music Programs, Newspaper Clippings, Newspapers, Photographs, Theatre tickets</p>
</scopecontent>
<controlaccess>
<subject source="local">Dances, proms, and balls</subject>
<subject source="local">Reunions and Homecomings</subject>
<subject source="local">Rose Day</subject>
</controlaccess>
</c>
<c id="ref26" level="item">
<did>
<unittitle>Scrapbook 07</unittitle>
<container id="cid12102" type="box" label="Mixed materials">6</container>
<unitdate normal="1986/1992" type="inclusive">1986-1992</unitdate>
<physdesc id="ref28" label="General Physical Description note">Plastic Binding; Fixed items</physdesc>
<origination label="creator">
<persname rules="dacs" source="local">Faul, Karene</persname>
</origination>
</did>
<scopecontent id="ref27">
<head>Scope and Contents note</head>
<p>Includes: Correspondence, Exhibit Announcements, Newspaper Clippings, Postcards</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Art Department.</corpname>
</controlaccess>
</c>
<c id="ref29" level="item">
<did>
<unittitle>Scrapbook 08</unittitle>
<container id="cid12103" type="box" label="Mixed materials">6</container>
<unitdate normal="1973/1992" type="inclusive">1973-1974, 1985-1992</unitdate>
<physdesc id="ref31" label="General Physical Description note">Plastic Binding; Fixed items</physdesc>
<origination label="creator">
<persname rules="dacs" source="local">Faul, Karene</persname>
</origination>
</did>
<scopecontent id="ref30">
<head>Scope and Contents note</head>
<p>Includes: Correspondence, Exhibit Announcements, Newspaper Clippings, Photographs</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Art Department.</corpname>
</controlaccess>
</c>
<c id="ref32" level="item">
<did>
<unittitle>Scrapbook 09</unittitle>
<container id="cid12104" type="box" label="Mixed materials">6</container>
<unitdate normal="1987/1991" type="inclusive">1987-1991</unitdate>
<origination label="creator">
<persname rules="dacs" source="local">Faul, Karene</persname>
</origination>
</did>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Art Department.</corpname>
</controlaccess>
</c>
<c id="ref33" level="item">
<did>
<unittitle>Scrapbook 10</unittitle>
<container id="cid12105" type="box" label="Mixed materials">7</container>
<unitdate normal="1945/1945">1945</unitdate>
<physdesc id="ref35" label="General Physical Description note">Plastic Cover; Some Loose Items</physdesc>
</did>
<scopecontent id="ref34">
<head>Scope and Contents note</head>
<p>Includes: Music Programs, Newspaper Clippings, Timelines</p>
</scopecontent>
<controlaccess>
<subject source="local">25th Anniversary</subject>
</controlaccess>
</c>
<c id="ref36" level="item">
<did>
<unittitle>Scrapbook 11</unittitle>
<container id="cid12106" type="box" label="Mixed materials">7</container>
<unitdate normal="1955/1956" type="inclusive">1955-1956</unitdate>
<physdesc id="ref38" label="General Physical Description note">Leather Cover; Fixed Items</physdesc>
</did>
<scopecontent id="ref37">
<head>Scope and Contents note</head>
<p>Includes: Newspaper Clippings, Papers</p>
</scopecontent>
<controlaccess>
<subject source="local">Student Senate</subject>
</controlaccess>
</c>
<c id="ref39" level="item">
<did>
<unittitle>Scrapbook 12</unittitle>
<container id="cid12107" type="box" label="Mixed materials">7</container>
<unitdate normal="1960/1960">1960</unitdate>
<physdesc id="ref41" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref40">
<head>Scope and Contents note</head>
<p>Includes: Fundraising Letters, Newsletters, Newspaper Clippings, Papers, Receipt</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Alumni Relations Department.</corpname>
<subject source="local">Fundraising</subject>
</controlaccess>
</c>
<c id="ref42" level="item">
<did>
<unittitle>Scrapbook 13</unittitle>
<container id="cid12108" type="box" label="Mixed materials">8</container>
<unitdate normal="1977/1984" type="inclusive">1977-1984</unitdate>
<physdesc id="ref44" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref43">
<head>Scope and Contents note</head>
<p>Includes: Music Programs</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Art Department.</corpname>
</controlaccess>
</c>
<c id="ref45" level="item">
<did>
<unittitle>Scrapbook 14</unittitle>
<container id="cid12109" type="box" label="Mixed materials">9</container>
<unitdate normal="1984/1988" type="inclusive">1984-1988</unitdate>
<physdesc id="ref47" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref46">
<head>Scope and Contents note</head>
<p>Includes: Music Programs</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Art Department.</corpname>
</controlaccess>
</c>
<c id="ref48" level="item">
<did>
<unittitle>Scrapbook 15</unittitle>
<container id="cid12110" type="box" label="Mixed materials">10</container>
<unitdate normal="1941/1952" type="bulk">Bulk, 1941-1952</unitdate>
<unitdate normal="1941/1979" type="inclusive">1941-1952, 1979[?]</unitdate>
<physdesc id="ref50" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<persname rules="dacs" source="local">Sister Agnesine</persname>
</origination>
</did>
<scopecontent id="ref49">
<head>Scope and Contents note</head>
<p>Includes: Papers, Prayer Cards</p>
</scopecontent>
<controlaccess>
<subject source="local">Neil Hellman Library (392 Western Avenue)</subject>
</controlaccess>
</c>
<c id="ref51" level="item">
<did>
<unittitle>Scrapbook 16</unittitle>
<unitdate normal="1973/1976" type="inclusive">1973-1976</unitdate>
<physdesc id="ref54" label="General Physical Description note">Fixed and loose items</physdesc>
</did>
<scopecontent id="ref52">
<head>Scope and Contents note</head>
<p>Includes: Memorabilia from various classes (1920s-1970s), Newsletters, Newspaper Clippings, Photographs, Publicity Materials</p>
</scopecontent>
<controlaccess>
<subject source="local">Alumni/ae Association</subject>
<subject source="local">Reunions and Homecomings</subject>
</controlaccess>
</c>
<c id="ref55" level="item">
<did>
<unittitle>Scrapbook 17</unittitle>
<container id="cid12111" type="box" label="Mixed materials">11</container>
<unitdate normal="1924/1969" type="inclusive">1924-1969</unitdate>
<physdesc id="ref57" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref56">
<head>Scope and Contents note</head>
<p>Includes: Programs</p>
</scopecontent>
<controlaccess>
<subject source="local">Class Night</subject>
<subject source="local">Commencement - Graduation - Baccalaureate Exercises</subject>
<subject source="local">Moving Up Night</subject>
</controlaccess>
</c>
<c id="ref58" level="item">
<did>
<unittitle>Scrapbook 18</unittitle>
<container id="cid12112" type="box" label="Mixed materials">11</container>
<unitdate normal="1974/1974">1974</unitdate>
<physdesc id="ref60" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref59">
<head>Scope and Contents note</head>
<p>Includes: Certificate, Correspondence, Invitations, Newspaper Clippings, Photographs, Programs, Speeches</p>
</scopecontent>
<controlaccess>
<subject source="local">Anniversary of First Graduation</subject>
</controlaccess>
</c>
<c id="ref61" level="item">
<did>
<unittitle>Scrapbook 19</unittitle>
<container id="cid12113" type="box" label="Mixed materials">12</container>
<unitdate normal="1920/1929" type="inclusive">1920s</unitdate>
<physdesc id="ref63" label="General Physical Description note">Heavy water/mold damage; Fixed Items</physdesc>
</did>
<scopecontent id="ref62">
<head>Scope and Contents note</head>
<p>Includes: Advertisements, Class Notes, Commencement Invitation, Commencement Programs, Correspondence, Dance Memorabilia, Newspaper Clippings, Theatre Programs, Theatre Tickets</p>
</scopecontent>
<controlaccess>
<subject source="local">Commencement - Graduation - Baccalaureate Exercises</subject>
<subject source="local">Dances, proms, and balls</subject>
</controlaccess>
</c>
<c id="ref64" level="item">
<did>
<unittitle>Scrapbook 20</unittitle>
<container id="cid12114" type="box" label="Mixed materials">13</container>
<unitdate normal="1953/1954" type="inclusive">1953-1954</unitdate>
<physdesc id="ref66" label="General Physical Description note">Fixed items</physdesc>
</did>
<scopecontent id="ref65">
<head>Scope and Contents note</head>
<p>Includes: Newspaper Clippings, Photographs</p>
</scopecontent>
<controlaccess>
<subject source="local">Student Senate</subject>
</controlaccess>
</c>
<c id="ref67" level="item">
<did>
<unittitle>Scrapbook 21</unittitle>
<container id="cid13001" type="box" label="Mixed materials">13</container>
<unitdate normal="1951/1951">1951</unitdate>
<physdesc id="ref69" label="General Physical Description note">Cloth cover; spiral binding</physdesc>
</did>
<scopecontent id="ref68">
<head>Scope and Contents note</head>
<p>Includes: 8 x 10 Photographs</p>
</scopecontent>
</c>
<c id="ref70" level="item">
<did>
<unittitle>Scrapbook 22</unittitle>
<container id="cid13002" type="box" label="Mixed materials">13</container>
<unitdate normal="1980/1980">1980</unitdate>
<physdesc id="ref72" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<persname rules="dacs" source="local">Gilroy, Rosaleen, Sister</persname>
</origination>
</did>
<scopecontent id="ref71">
<head>Scope and Contents note</head>
<p>Includes: Convocation Programs, Correspondence, Newspaper Clippings, Promotional Materials, Sixtieth Year Committee Materials</p>
</scopecontent>
<controlaccess>
<subject source="local">60th Anniversary</subject>
</controlaccess>
</c>
<c id="ref73" level="item">
<did>
<unittitle>Scrapbook 23</unittitle>
<container id="cid13003" type="box" label="Mixed materials">14</container>
<unitdate normal="1958/1958">1958</unitdate>
<physdesc id="ref75" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref74">
<head>Scope and Contents note</head>
<p>Includes: Itinerary, Photographs, Postcards</p>
</scopecontent>
<controlaccess>
<subject source="local">European Trips</subject>
</controlaccess>
</c>
<c id="ref77" level="item">
<did>
<unittitle>Scrapbook 24</unittitle>
<container id="cid13004" type="box" label="Mixed materials">14</container>
<unitdate normal="1970/1970">1970</unitdate>
<physdesc id="ref80" label="General Physical Description note">Fixed Items, some coming loose</physdesc>
<origination label="creator">
<persname rules="local" source="local">Sister Margaret Frances Kelly</persname>
</origination>
</did>
<scopecontent id="ref76">
<head>Scope and Contents note</head>
<p>Includes: Correspondence, Fiftieth Jubilee Committee Materials, Newspaper Clippings, Photographs, Programs, Promotional Materials</p>
</scopecontent>
<controlaccess>
<subject source="local">50th Anniversary</subject>
</controlaccess>
</c>
<c id="ref79" level="item">
<did>
<unittitle>Scrapbook 25</unittitle>
<container id="cid13005" type="box" label="Mixed materials">15</container>
<unitdate normal="1980/1988" type="inclusive">1980-1988</unitdate>
<physdesc id="ref81" label="General Physical Description note">Fixed and Loose Items</physdesc>
</did>
<scopecontent id="ref78">
<head>Scope and Contents note</head>
<p>Includes: Newspaper Clippings, Photocopies, Schedules</p>
</scopecontent>
<controlaccess>
<subject source="local">Sports</subject>
</controlaccess>
</c>
<c id="ref84" level="item">
<did>
<unittitle>Scrapbook 26</unittitle>
<container id="cid13006" type="box" label="Mixed materials">16</container>
<unitdate normal="1949/1959" type="inclusive">1949-1959</unitdate>
<physdesc id="ref83" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref82">
<head>Scope and Contents note</head>
<p>Includes: Newspaper Clippings, Notes, Photographs, Rosaverian Excerpts</p>
</scopecontent>
</c>
<c id="ref87" level="item">
<did>
<unittitle>Scrapbook 27</unittitle>
<container id="cid13007" type="box" label="Mixed materials">16</container>
<unitdate normal="1959/1959">1959</unitdate>
<physdesc id="ref86" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref85">
<head>Scope and Contents note</head>
<p>Includes: Yearbook [?] Pages</p>
</scopecontent>
</c>
<c id="ref90" level="item">
<did>
<unittitle>Scrapbook 28</unittitle>
<container id="cid13008" type="box" label="Mixed materials">16</container>
<unitdate normal="1960/1969" type="inclusive">1960-1969</unitdate>
<physdesc id="ref89" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref88">
<head>Scope and Contents note</head>
<p>Includes: Keynote Excerpts, Newspaper Clippings, Notes, Photographs, Rosaverian Excerpts</p>
</scopecontent>
</c>
<c id="ref93" level="item">
<did>
<unittitle>Scrapbook 29</unittitle>
<container id="cid13009" type="box" label="Mixed materials">17</container>
<unitdate normal="1980/1980">1980</unitdate>
<physdesc id="ref92" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref91">
<head>Scope and Contents note</head>
<p>Includes: Fabric, Newspaper Clippings, Press Releases, Programs, Schedules</p>
</scopecontent>
<controlaccess>
<subject source="local">60th Anniversary</subject>
</controlaccess>
</c>
<c id="ref96" level="item">
<did>
<unittitle>Scrapbook 30</unittitle>
<container id="cid13010" type="box" label="Mixed materials">17</container>
<unitdate normal="1959/1964" type="inclusive">1959-1964</unitdate>
<physdesc id="ref95" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref94">
<head>Scope and Contents note</head>
<p>Includes: Newspaper Clippings, Photographs, Timeline</p>
</scopecontent>
<controlaccess>
<subject source="local">Campus Center</subject>
</controlaccess>
</c>
<c id="ref99" level="item">
<did>
<unittitle>Scrapbook 31</unittitle>
<container id="cid13011" type="box" label="Mixed materials">18</container>
<unitdate normal="1920/1924" type="inclusive">1920-1924</unitdate>
<physdesc id="ref98" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref97">
<head>Scope and Contents note</head>
<p>Includes: Funeral Cards, Newspaper Clippings, Photographs, Programs, Regulations, Schedules</p>
</scopecontent>
<controlaccess>
<subject source="local">Rose Day</subject>
</controlaccess>
</c>
<c id="ref102" level="item">
<did>
<unittitle>Scrapbook 32</unittitle>
<container id="cid13012" type="box" label="Mixed materials">18</container>
<unitdate normal="1920/1978" type="inclusive">1920-1978</unitdate>
<physdesc id="ref101" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref100">
<head>Scope and Contents note</head>
<p>Includes: CSR News, Newspaper Clippings, Programs</p>
</scopecontent>
<controlaccess>
<subject source="local">Rose Day</subject>
</controlaccess>
</c>
<c id="ref105" level="item">
<did>
<unittitle>Scrapbook 33</unittitle>
<container id="cid13013" type="box" label="Mixed materials">19</container>
<unitdate normal="1956/1971" type="inclusive">1956-1971</unitdate>
<physdesc id="ref104" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref103">
<head>Scope and Contents note</head>
<p>Includes: Brochures, Itineraries, Newspaper Clippings, Press Releases, Reservation Materials</p>
</scopecontent>
<controlaccess>
<subject source="local">European Trips</subject>
</controlaccess>
</c>
<c id="ref108" level="item">
<did>
<unittitle>Scrapbook 34</unittitle>
<container id="cid13014" type="box" label="Mixed materials">19</container>
<unitdate normal="1960/1960">1960</unitdate>
<physdesc id="ref107" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<persname rules="dacs" source="local">Gilroy, Rosaleen, Sister</persname>
</origination>
</did>
<scopecontent id="ref106">
<head>Scope and Contents note</head>
<p>Includes: Brochures, Cards, Correspondence, Diary, Hotel Memorabilia, Luggage Tags, Menus, Newspaper Clippings, Photographs, Postcards</p>
</scopecontent>
<controlaccess>
<subject source="local">European Trips</subject>
</controlaccess>
</c>
<c id="ref111" level="item">
<did>
<unittitle>Scrapbook 35</unittitle>
<container id="cid13015" type="box" label="Mixed materials">20</container>
<unitdate normal="1956/1956">1956</unitdate>
<physdesc id="ref110" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref109">
<head>Scope and Contents note</head>
<p>Includes: Brochure, Diary (Sr. Benita), Itineraries, Menus, Participant List, Photographs, Postcards, Rosetta Newsletter, Ship’s Activities List</p>
</scopecontent>
<controlaccess>
<subject source="local">European Trips</subject>
</controlaccess>
</c>
<c id="ref114" level="item">
<did>
<unittitle>Scrapbook 36</unittitle>
<container id="cid13016" type="box" label="Mixed materials">20</container>
<unitdate normal="1960/1961" type="inclusive">1960-1961</unitdate>
<physdesc id="ref113" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref112">
<head>Scope and Contents note</head>
<p>Includes: Christmas Cards, Newspaper Clippings, Receipt, Telegram</p>
</scopecontent>
</c>
<c id="ref117" level="item">
<did>
<unittitle>Scrapbook 37</unittitle>
<container id="cid13017" type="box" label="Mixed materials">20</container>
<unitdate normal="1959/1961" type="inclusive">1959-1961</unitdate>
<physdesc id="ref116" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref115">
<head>Scope and Contents note</head>
<p>Includes: Calendar, Cards, Correspondence, Investiture Proceedings, Newspaper Clippings, Parents’ Weekend Schedule, Programs, Rosaverian Newsletter</p>
</scopecontent>
<controlaccess>
<subject source="local">Student Senate</subject>
</controlaccess>
</c>
<c id="ref120" level="item">
<did>
<unittitle>Scrapbook 38</unittitle>
<container id="cid13018" type="box" label="Mixed materials">21</container>
<unitdate>1970-1971</unitdate>
<physdesc id="ref119" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref118">
<head>Scope and Contents note</head>
<p>Includes: “Faculty Day” Schedule, Anniversary Announcement, Brochures, Concert Programs, Correspondence, Keynote Magazines, Newspaper Clippings, Photos</p>
</scopecontent>
<controlaccess>
<subject source="local">50th Anniversary</subject>
</controlaccess>
</c>
<c id="ref123" level="item">
<did>
<unittitle>Scrapbook 39</unittitle>
<container id="cid13019" type="box" label="Mixed materials">21</container>
<unitdate normal="1970/1971" type="inclusive">1970-1971</unitdate>
<physdesc id="ref122" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref121">
<head>Scope and Contents note</head>
<p>Includes: Class Offerings, Convocation Program, Foreign Study Brochure, Newspaper Clippings, Theatre Programs</p>
</scopecontent>
<controlaccess>
<subject source="local">50th Anniversary</subject>
</controlaccess>
</c>
<c id="ref126" level="item">
<did>
<unittitle>Scrapbook 40</unittitle>
<container id="cid13020" type="box" label="Mixed materials">21</container>
<unitdate normal="1970/1970">1970</unitdate>
<physdesc id="ref125" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref124">
<head>Scope and Contents note</head>
<p>Includes: Convocation Program, Keynote Magazine, Newspaper Clippings</p>
</scopecontent>
<controlaccess>
<persname rules="local" source="local">Miele, Alphonse, (5th President)</persname>
</controlaccess>
</c>
<c id="ref129" level="item">
<did>
<unittitle>Scrapbook 41</unittitle>
<container id="cid13021" type="box" label="Mixed materials">22</container>
<unitdate normal="1935/1940" type="inclusive">1935-1940</unitdate>
<physdesc id="ref128" label="General Physical Description note">Not a scrapbook: loose materials in box</physdesc>
<origination label="creator">
<persname rules="local" source="local">Lehner, Margaret Yaggle, (1939)</persname>
</origination>
</did>
<scopecontent id="ref127">
<head>Scope and Contents note</head>
<p>Includes: Invitations, Newspaper Clippings, Programs</p>
</scopecontent>
</c>
<c id="ref132" level="item">
<did>
<unittitle>Scrapbook 42</unittitle>
<container id="cid13022" type="box" label="Mixed materials">23</container>
<unitdate normal="1966/1966">1966</unitdate>
<physdesc id="ref131" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref130">
<head>Scope and Contents note</head>
<p>Includes: Inaugural Materials, Invitations, Keynote Magazine, Letters of Congratulation, Letters of Regret, Newspaper Clippings, Photographs</p>
</scopecontent>
<controlaccess>
<persname rules="local" source="local">Keeshan, Margaret, Sister, (4th President)</persname>
</controlaccess>
</c>
<c id="ref135" level="item">
<did>
<unittitle>Scrapbook 43</unittitle>
<container id="cid13023" type="box" label="Mixed materials">24</container>
<unitdate normal="1976/1981" type="inclusive">1976-1981</unitdate>
<physdesc id="ref134" label="General Physical Description note">Mostly fixed items, some loose items</physdesc>
<origination label="creator">
<persname source="ingest">Wysolmerski, Theresa, Sister, (1953)</persname>
</origination>
</did>
<scopecontent id="ref133">
<head>Scope and Contents note</head>
<p>Includes: High School Science Program Materials, Lecture Programs, Newsletters, Notes on Graduates, Papers, Photographs</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Science Department.</corpname>
<subject source="local">Biology Courses and Students</subject>
</controlaccess>
</c>
<c id="ref138" level="item">
<did>
<unittitle>Scrapbook 44</unittitle>
<container id="cid13024" type="box" label="Mixed materials">25</container>
<unitdate normal="1966/1966">1966</unitdate>
<physdesc id="ref137" label="General Physical Description note">Mostly Fixed Items, some loose</physdesc>
</did>
<scopecontent id="ref136">
<head>Scope and Contents note</head>
<p>Includes: Committee for Inauguration Materials, Correspondence, Invitation, Keynote Magazine, Photographs, Program, Rosaverian, Thank You Forms</p>
</scopecontent>
<controlaccess>
<persname rules="local" source="local">Keeshan, Margaret, Sister, (4th President)</persname>
<subject source="local">Presidential Inaugurations</subject>
</controlaccess>
</c>
<c id="ref141" level="item">
<did>
<unittitle>Scrapbook 45</unittitle>
<container id="cid13025" type="box" label="Mixed materials">26</container>
<unitdate normal="1971/1971">1971</unitdate>
<physdesc id="ref140" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref139">
<head>Scope and Contents note</head>
<p>Includes: Convocation Program, Inaugural Committee Materials, Invitation, Letter of Thanks, Letters of Congratulation, Newspaper Clippings, Photographs</p>
</scopecontent>
<controlaccess>
<persname rules="local" source="local">Miele, Alphonse, (5th President)</persname>
<subject source="local">Presidential Inaugurations</subject>
</controlaccess>
</c>
<c id="ref144" level="item">
<did>
<unittitle>Scrapbook 46</unittitle>
<container id="cid13026" type="box" label="Mixed materials">27</container>
<unitdate normal="1983/1983">1983</unitdate>
<physdesc id="ref143" label="General Physical Description note">Fixed Items; Loose Items in Envelope</physdesc>
</did>
<scopecontent id="ref142">
<head>Scope and Contents note</head>
<p>Includes: Inaugural Materials, Letters of Greeting, Newspaper Clippings</p>
</scopecontent>
<controlaccess>
<persname rules="local" source="local">Vaccaro, Louis, (7th President)</persname>
<subject source="local">Presidential Inaugurations</subject>
</controlaccess>
</c>
<c id="ref147" level="item">
<did>
<unittitle>Scrapbook 47</unittitle>
<container id="cid13027" type="box" label="Mixed materials">28</container>
<unitdate normal="1981/1981">1981</unitdate>
<physdesc id="ref146" label="General Physical Description note">Fixed Items; Binding Cracked</physdesc>
<origination label="creator">
<persname rules="local" source="local">Singer, Ann Bartlett, (1981)</persname>
</origination>
</did>
<scopecontent id="ref145">
<head>Scope and Contents note</head>
<p>Master's Project: includes Newspaper Clippings, Photographs, Printed Material</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Art Department.</corpname>
<subject source="local">Student Work</subject>
</controlaccess>
</c>
<c id="ref150" level="item">
<did>
<unittitle>Scrapbook 48</unittitle>
<container id="cid13028" type="box" label="Mixed materials">28</container>
<unitdate>undated</unitdate>
<physdesc id="ref149" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<corpname source="ingest">College of Saint Rose (Albany, N.Y.). Student Affairs.</corpname>
</origination>
</did>
<scopecontent id="ref148">
<head>Scope and Contents note</head>
<p>Includes: Photographs for brochures</p>
</scopecontent>
</c>
<c id="ref153" level="item">
<did>
<unittitle>Scrapbook 49</unittitle>
<container id="cid13029" type="box" label="Mixed materials">29</container>
<unitdate normal="1956/1956">1956</unitdate>
<physdesc id="ref152" label="General Physical Description note">Many loose items [possibly some missing]; Fixed Items</physdesc>
</did>
<scopecontent id="ref151">
<head>Scope and Contents note</head>
<p>Seminar for American Teachers of German materials: including Music Programs, Photographs, Tickets, Travel Stickers</p>
</scopecontent>
<controlaccess>
<subject source="local">German Studies Faculty</subject>
<subject source="local">Seminars, Symposia, and Workshops</subject>
</controlaccess>
</c>
<c id="ref156" level="item">
<did>
<unittitle>Scrapbook 50</unittitle>
<container id="cid13030" type="box" label="Mixed materials">29</container>
<unitdate normal="1965/1965">1965</unitdate>
<physdesc id="ref155" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Kearney, Alice Teresa, Sister</persname>
</origination>
</did>
<scopecontent id="ref154">
<head>Scope and Contents note</head>
<p>Includes: Itinerary, Participant List, Photographs, Postcards</p>
</scopecontent>
<controlaccess>
<subject source="local">European Trips</subject>
</controlaccess>
</c>
<c id="ref159" level="item">
<did>
<unittitle>Scrapbook 51</unittitle>
<container id="cid13031" type="box" label="Mixed materials">29</container>
<unitdate normal="1965/1965">1965</unitdate>
<physdesc id="ref158" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Kearney, Alice Teresa, Sister</persname>
</origination>
</did>
<scopecontent id="ref157">
<head>Scope and Contents note</head>
<p>Includes: Airplane Tickets, Brochures, Diary, Menus, Photographs, Postcards, Theatre Programs</p>
</scopecontent>
<controlaccess>
<subject source="local">European Trips</subject>
</controlaccess>
</c>
<c id="ref162" level="item">
<did>
<unittitle>Scrapbook 52</unittitle>
<container id="cid13032" type="box" label="Mixed materials">30</container>
<unitdate normal="1962/1962">1962</unitdate>
<physdesc id="ref161" label="General Physical Description note">Fixed Items; Wooden Cover</physdesc>
</did>
<scopecontent id="ref160">
<head>Scope and Contents note</head>
<p>Includes: Essays, Magazine Articles, Newspaper Clippings, Pamphlets</p>
</scopecontent>
<controlaccess>
<subject source="local">Vatican II</subject>
</controlaccess>
</c>
<c id="ref165" level="item">
<did>
<unittitle>Scrapbook 53</unittitle>
<container id="cid13033" type="box" label="Mixed materials">31</container>
<unitdate normal="1980/1980">1980</unitdate>
<physdesc id="ref164" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Tarricone, Ronnie N.</persname>
</origination>
</did>
<scopecontent id="ref163">
<head>Scope and Contents note</head>
<p>Master's Project: including essays, photographs</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Art Department.</corpname>
<subject source="local">Student Work</subject>
</controlaccess>
</c>
<c id="ref168" level="item">
<did>
<unittitle>Scrapbook 54</unittitle>
<container id="cid13034" type="box" label="Mixed materials">32</container>
<unitdate normal="1956/1956">1956</unitdate>
<physdesc id="ref167" label="General Physical Description note">Fixed Items; Binding Cracked</physdesc>
</did>
<scopecontent id="ref166">
<head>Scope and Contents note</head>
<p>Includes: Map, Memorabilia, Photographs, Telegram</p>
</scopecontent>
<controlaccess>
<subject source="local">European Trips</subject>
</controlaccess>
</c>
<c id="ref171" level="item">
<did>
<unittitle>Scrapbook 55</unittitle>
<container id="cid13035" type="box" label="Mixed materials">32</container>
<unitdate normal="1980/1980">1980</unitdate>
<physdesc id="ref170" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Yarbrow-Medina, Teri</persname>
</origination>
</did>
<scopecontent id="ref169">
<head>Scope and Contents note</head>
<p>Includes: Paper Materials, Photographs</p>
</scopecontent>
<controlaccess>
<corpname rules="dacs" source="local">College of Saint Rose (Albany, N.Y.). Art Department.</corpname>
<subject source="local">Art Exhibits</subject>
</controlaccess>
</c>
<c id="ref174" level="item">
<did>
<unittitle>Scrapbook 56</unittitle>
<container id="cid13036" type="box" label="Mixed materials">33</container>
<unitdate normal="1971/1971">c. 1971</unitdate>
<physdesc id="ref173" label="General Physical Description note">Fixed Items [Some missing?]</physdesc>
</did>
<scopecontent id="ref172">
<head>Scope and Contents note</head>
<p>Includes: Photographs, Postcards</p>
</scopecontent>
<controlaccess>
<subject source="local">European Trips</subject>
</controlaccess>
</c>
<c id="ref177" level="item">
<did>
<unittitle>Scrapbook 57</unittitle>
<container id="cid13037" type="box" label="Mixed materials">33</container>
<unitdate normal="1972/1972">1972</unitdate>
<physdesc id="ref176" label="General Physical Description note">Fixed Items</physdesc>
<origination label="creator">
<persname rules="local" source="local">Neat, Charles Marie, Sister</persname>
</origination>
</did>
<scopecontent id="ref175">
<head>Scope and Contents note</head>
<p>Includes: Maps, Memorabilia, Pamphlets, Photographs, Postcards</p>
</scopecontent>
<controlaccess>
<subject source="local">United States Trips</subject>
</controlaccess>
</c>
<c id="ref180" level="item">
<did>
<unittitle>Scrapbook 58</unittitle>
<container id="cid13038" type="box" label="Mixed materials">34</container>
<unitdate normal="1936/1936">1936</unitdate>
<physdesc id="ref179" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref178">
<head>Scope and Contents note</head>
<p>Includes: Newspaper Clippings, Photographs, Programs</p>
</scopecontent>
<controlaccess>
<subject source="local">Class of 1936</subject>
</controlaccess>
</c>
<c id="ref183" level="item">
<did>
<unittitle>Scrapbook 59</unittitle>
<container id="cid13039" type="box" label="Mixed materials">35</container>
<unitdate normal="1982/1988" type="inclusive">1982-1988</unitdate>
<physdesc id="ref182" label="General Physical Description note">Fixed Items</physdesc>
</did>
<scopecontent id="ref181">
<head>Scope and Contents note</head>
<p>Includes: Newspaper Clippings, Funeral Cards</p>
</scopecontent>
<controlaccess>
<subject source="local">Deceased Alumni and Faculty</subject>
</controlaccess>
</c>
<c id="ref186" level="item">
<did>