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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
|
<?xml version="1.0" encoding="UTF-8"?>
<ead xmlns="urn:isbn:1-931666-22-9" xmlns:xlink="http://www.w3.org/1999/xlink" relatedencoding="MARC21">
<eadheader audience="internal" langencoding="iso639-2b" scriptencoding="iso15924" dateencoding="iso8601" countryencoding="iso3166-1" repositoryencoding="iso15511" relatedencoding="DC">
<eadid countrycode="US" mainagencycode="BE-1" identifier="wayland-smith_p">wayland-smith_p</eadid>
<filedesc>
<titlestmt>
<titleproper encodinganalog="Title">Prudence Wayland-Smith Papers</titleproper>
<subtitle>An inventory of her papers at Syracuse University</subtitle>
<author encodinganalog="Creator">LR</author>
</titlestmt>
<publicationstmt>
<publisher encodinganalog="Publisher">
</publisher>
<date era="ce" calendar="gregorian" normal="2006-03-08" encodinganalog="Date">10 Aug 2009</date>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>
Lea Rowe
10 Aug 2009
</creation>
<langusage>
English
</langusage>
</profiledesc>
</eadheader>
<archdesc level="collection" type="inventory" relatedencoding="MARC21">
<did>
<head>Overview of the Collection</head>
<repository label="Repository: " encodinganalog="852$a">
</repository>
<origination label="Creator: ">
Wayland-Smith, Prudence
</origination>
<unittitle label="Title: " encodinganalog="245$a">Prudence Wayland-Smith Papers</unittitle>
<unitdate label="Inclusive Dates: " type="inclusive" era="ce" calendar="gregorian" normal="1925/1994" encodinganalog="245$f">1925-1994</unitdate>
<physdesc label="Quantity: " encodinganalog="300$a">
18 linear feet
</physdesc>
<abstract label="Abstract: " encodinganalog="520$a">
Papers of the 20th century social activist, focused on migrant reform, education for migrant children and prison reform. Correspondence, 1925- 1994. Also newspaper clippings, personal notes, and memorabilia including student artwork from migrant schools, photographs and photo boards. Some government documents and publications along with manuscript materials from Wayland-Smith's personal and professional life.
</abstract>
<unitid label="Identification: " countrycode="US" repositorycode="BE-1" encodinganalog="099">2697344</unitid>
<langmaterial label="Language: " encodinganalog="546">
Most material in
English
, with a few items in
Spanish
</langmaterial>
</did>
<bioghist encodinganalog="545">
<head>Biographical History</head>
<p>
Prudence Wayland-Smith (1908-1995) was a social activist dedicated to migrant and prison reform for over 50 years.
</p>
<p>
Born in 1908, Prudence Wayland-Smith was a descendant of the Oneida Community and a member of the Religious Society of Friends (Quakers). She graduated from Curtis High School on Staten Island in 1925 and went on to the Women's College at Brown University.
</p>
<p>
In 1934 Wayland-Smith was elected president of the Oneida-Kenwood-Sherrill League of Women Voters. Later, she became chairwoman of the Oneida-Kenwood-Sherrill Migrant Committee. Much of the work that the committee carried out was in response to the needs of migrant workers who came up from Florida and other southern states in the summer months to help plant and harvest crops in Oneida County and Madison County in central New York. Migrant families often lived in horrible conditions in labor camps and their children had little or no education. The migrant committee not only worked for better housing conditions and labor rights in migrant camps, they also established day-care centers and summer schools for migrant children so that they could get a basic education. The committee also established a scholarship fund for migrant children going on to college. Prudence remained an active member of the League and the Migrant Committee until the late 1970s when the committee disbanded due to the fact that agriculture had become more mechanized and labor camps were closing.
</p>
<p>
Beginning in the late 1970s, Wayland-Smith dedicated most of her time to prison reform in local correctional facilities in Oneida and Madison County. As a church leader she brought together other Quaker women to visit inmates, correspond, coordinate Alternatives to Violence workshops, and establish other education programs for prisoners, while also pushing for reform of the treatment of prisoners and conditions within the prisons themselves. Following the Quaker belief that there was goodness in everyone, Wayland-Smith worked to make sure that inmates would have a way to survive once they returned to society. She worked continually in local prisons up until her death at the age of 86 in 1995.
</p>
</bioghist>
<scopecontent encodinganalog="520">
<head>Scope and Contents of the Collection</head>
<p>
The
Prudence Wayland-Smith Papers
reflect the social reform work that Wayland-Smith carried out from the 1940s to the mid-1990s. The collection is divided into four parts: general files, migrant reform, prison reform and miscellaneous reform.
</p>
<p>
General files
contains material on a variety of non-reform topics, including the Oneida Community Mansion House, Syracuse University, and general news of the day. The majority of the material deals with the Religious Society of Friends (Quakers).
</p>
<p>
Migrant reform
contains correspondence, notes, photos, and other material related to Wayland-Smith's work with regional and state-level migrant committees and organizations, primarily the Oneida-Kenwood-Sherrill Migrant Committee. Included here is information on summer camps for migrant children, the migrant children's scholarship fund, and other related topics. There are also several scrapbooks and other items of memorabilia from the summer camps.
</p>
<p>
Prison reform
materials relate to Wayland-Smith's work assisting prisoners directly as well as her efforts to bring about reforms in the prison system as a whole. This series includes inmate correspondence, news and media coverage, and regional and state-level committee materials as well as material relating to specific prisons in central New York.
</p>
<p>
Miscellaneous reform
covers a range of other areas of reform in which Wayland-Smith was interested, including the peace movement, birth control, human relations, poverty, and non-violence.
</p>
</scopecontent>
<arrangement encodinganalog="351$a">
<head>Arrangement of the Collection</head>
<p>All series are arranged alphabetically.</p>
</arrangement>
<relatedmaterial encodinganalog="544 1">
<head>Related Material</head>
<p>
SCRC has several collections related to prison reform and the Oneida Community. Please refer to the for a complete listing. See in particular
Oneida Community
and
Robert Wayland-Smith Papers
(Prudence's husband).
</p>
</relatedmaterial>
<separatedmaterial encodinganalog="544 0">
<head>Separated Material</head>
<p>
Some material has been transferred to Rare Books for cataloging, including eight copies of
Migratory Labor Notes
and four other government publications, a pamphlet on Martin Luther King, Jr. Please refer to for a complete listing.
</p>
</separatedmaterial>
<controlaccess>
<head>Subject and Genre Headings</head>
<subject source="local" encodinganalog="650">New York State</subject>
<subject source="local" encodinganalog="650">Activism and social reform</subject>
<persname source="lcnaf" encodinganalog="600">Garofalo, James.</persname>
<persname source="lcnaf" encodinganalog="600">Wayland-Smith, Prudence.</persname>
<corpname source="lcnaf" encodinganalog="610">Alternatives to Violence Project.</corpname>
<corpname source="lcnaf" encodinganalog="610">American Friends Service Committee.</corpname>
<corpname source="lcnaf" encodinganalog="610">Auburn Correctional Facility.</corpname>
<corpname source="lcnaf" encodinganalog="610">Auburn Prison Friends Meeting (Auburn, N.Y.)</corpname>
<corpname source="local" encodinganalog="610">Consumers' League of New York.</corpname>
<corpname source="lcnaf" encodinganalog="610">Delta Kappa Gamma Society.</corpname>
<corpname source="lcnaf" encodinganalog="610">League of Women Voters of New York State.</corpname>
<corpname source="lcnaf" encodinganalog="610">New York State Council of Churches.</corpname>
<corpname source="local" encodinganalog="610">
New York State Federation of Growers and Processors.
</corpname>
<corpname source="local" encodinganalog="610">New York State Migrant Child Care Program.</corpname>
<corpname source="lcnaf" encodinganalog="610">
New York (State). Migrant Labor, Interdepartmental Committee on
</corpname>
<corpname source="lcnaf" encodinganalog="610">
New York Yearly Meeting of the Religious Society of Friends.
</corpname>
<corpname source="local" encodinganalog="610">Oneida-Kenwood-Sherrill Migrant Committee.</corpname>
<corpname source="lcnaf" encodinganalog="610">Oneida community.</corpname>
<corpname source="lcnaf" encodinganalog="610">
Quaker Project on Community Conflict of the New York Yearly Meeting.
</corpname>
<corpname source="lcnaf" encodinganalog="610">Quakers -- New York (State)</corpname>
<corpname source="lcnaf" encodinganalog="610">Quakers -- United States -- Political activity.</corpname>
<corpname source="lcnaf" encodinganalog="610">Society of Friends.</corpname>
<subject source="lcsh" encodinganalog="650">Children of migrant laborers.</subject>
<subject source="lcsh" encodinganalog="650">
Civil rights movement -- United States -- History -- 20th century.
</subject>
<subject source="lcsh" encodinganalog="650">
Migrant agricultural laborers -- Government policy -- New York (State)
</subject>
<subject source="lcsh" encodinganalog="650">
Migrant agricultural laborers -- Government policy -- United States.
</subject>
<subject source="lcsh" encodinganalog="650">
Migrant agricultural laborers -- Housing -- New York (State)
</subject>
<subject source="lcsh" encodinganalog="650">
Migrant agricultural laborers -- United States -- 1930-1960.
</subject>
<subject source="lcsh" encodinganalog="650">
Migrant agricultural laborers -- United States -- 1960-1970.
</subject>
<subject source="lcsh" encodinganalog="650">Migrant labor -- Camps.</subject>
<subject source="lcsh" encodinganalog="650">Migrant labor -- Education -- United States.</subject>
<subject source="lcsh" encodinganalog="650">Prisons -- Law and legislation -- United States.</subject>
<subject source="lcsh" encodinganalog="650">Race relations.</subject>
<genreform source="aat" encodinganalog="655">Annual reports.</genreform>
<genreform source="aat" encodinganalog="655">Clippings (information artifacts)</genreform>
<genreform source="aat" encodinganalog="655">Negatives (photographic)</genreform>
<genreform source="aat" encodinganalog="655">Photographs.</genreform>
<genreform source="aat" encodinganalog="655">Slides (photographs)</genreform>
<genreform source="aat" encodinganalog="655">Correspondence.</genreform>
<genreform source="aat" encodinganalog="655">Essays.</genreform>
<genreform source="aat" encodinganalog="655">Financial records.</genreform>
<genreform source="aat" encodinganalog="655">Government records.</genreform>
<genreform source="aat" encodinganalog="655">Memorabilia.</genreform>
<genreform source="aat" encodinganalog="655">Newsletters.</genreform>
<genreform source="aat" encodinganalog="655">Notes.</genreform>
<genreform source="aat" encodinganalog="655">Scrapbooks.</genreform>
<genreform source="aat" encodinganalog="655">Serials (publications)</genreform>
<occupation source="lcsh" encodinganalog="656">Prison reformers -- United States.</occupation>
</controlaccess>
<accessrestrict encodinganalog="506">
<head>Access Restrictions</head>
<p>There are no access restrictions on this material.</p>
</accessrestrict>
<userestrict encodinganalog="540">
<head>Use Restrictions</head>
<p>
The 1965-1970 Report published by the American Friends Service Committee (Box 4) is not to be quoted or reprinted without express permission of the AFSC. Permission of James Garofalo is required to quote or use any part of 1968 migrant teachers idea booklet (Box 4).
</p>
</userestrict>
<prefercite encodinganalog="524">
<head>Preferred Citation</head>
<p>
Preferred citation for this material is as follows:
</p>
<p>
Prudence Wayland-Smith Papers,
</p>
</prefercite>
<acqinfo encodinganalog="541">
<head>Acquisition Information</head>
<p>
Gift of Giles, Robert, and Paul Wayland-Smith, 2003.
</p>
</acqinfo>
<dsc type="combined">
<head>Inventory</head>
<c01 level="series">
<did>
<unittitle>General files</unittitle>
</did>
<c02>
<did>
<unittitle>Date book</unittitle>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1965">1965</unitdate>
<container type="Box">1</container>
</did>
</c02>
<c02>
<did>
<unittitle>Delta Kappa Gamma</unittitle>
<container type="Box">1</container>
</did>
</c02>
<c02>
<did>
<unittitle>Government documents</unittitle>
<container type="Box">1</container>
</did>
</c02>
<c02>
<did>
<unittitle>Negatives</unittitle>
<container type="Box">22</container>
</did>
</c02>
<c02>
<did>
<unittitle>Oneida Community Mansion House</unittitle>
<container type="Box">1</container>
</did>
</c02>
<c02>
<did>
<unittitle>Personal</unittitle>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1920/1989">1920s-1980s</unitdate>
<abstract>
Includes high school papers and continues with later correspondence
</abstract>
<container type="Box">1</container>
</did>
</c02>
<c02>
<did>
<unittitle>Religious Society of Friends</unittitle>
</did>
<c03>
<did>
<unittitle>General</unittitle>
<container type="Box">1</container>
</did>
</c03>
<c03>
<did>
<unittitle>Friends Journal</unittitle>
</did>
<c04>
<did>
<unittitle>
1950s
</unittitle>
<container type="Box">1</container>
</did>
</c04>
<c04>
<did>
<unittitle>
1960s
</unittitle>
<container type="Box">1</container>
</did>
</c04>
<c04>
<did>
<unittitle>
1970s-1980s
</unittitle>
<container type="Box">2</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>Friends World College</unittitle>
<container type="Box">2</container>
</did>
</c03>
<c03>
<did>
<unittitle>Friends World Committee for Consultation</unittitle>
<container type="Box">1</container>
</did>
</c03>
<c03>
<did>
<unittitle>Printed material</unittitle>
<container type="Box">2</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>Syracuse University</unittitle>
<container type="Box">2</container>
</did>
<c03>
<did>
<unittitle>George Arents Research Library</unittitle>
<container type="Box">2</container>
</did>
</c03>
<c03>
<did>
<unittitle>
Urban Education and Cultural Deprivation
</unittitle>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1964">1964</unitdate>
<container type="Box">2</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>World and national news</unittitle>
<container type="Box">2</container>
</did>
</c02>
<c02>
<did>
<unittitle>Miscellaneous</unittitle>
<physdesc>
2 folders
</physdesc>
<container type="Box">2</container>
</did>
</c02>
</c01>
<c01 level="series">
<did>
<unittitle>Migrant reform</unittitle>
</did>
<c02>
<did>
<unittitle>General correspondence</unittitle>
</did>
<c03>
<did>
<unittitle>A-G</unittitle>
<container type="Box">2</container>
</did>
</c03>
<c03>
<did>
<unittitle>H-Z</unittitle>
<physdesc>
3 folders
</physdesc>
<container type="Box">3</container>
</did>
</c03>
<c03>
<did>
<unittitle>
"Letters from families to whom boxes were sent"
Christmas 1957, Winter 1958-59
</unittitle>
<container type="Box">3</container>
</did>
</c03>
<c03>
<did>
<unittitle>Migrant letters</unittitle>
<container type="Box">3</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>Government legislation and reform</unittitle>
</did>
<c03>
<did>
<unittitle>General</unittitle>
<container type="Box">3</container>
</did>
</c03>
<c03>
<did>
<unittitle>Congressional hearings and Senate reports</unittitle>
<container type="Box">3</container>
</did>
</c03>
<c03>
<did>
<unittitle>
Migratory Labor Notes
by the President's Committee on Migratory Labor
</unittitle>
<note>
<p>Transferred to Rare Books for cataloging</p>
</note>
</did>
</c03>
<c03>
<did>
<unittitle>Printed material</unittitle>
<container type="Box">3</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>Exhibitions on black migration history</unittitle>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1989/1990">1989-1990</unitdate>
<container type="Box">3</container>
</did>
</c02>
<c02>
<did>
<unittitle>Financial</unittitle>
<container type="Box">4</container>
</did>
</c02>
<c02>
<did>
<unittitle>Housing</unittitle>
<container type="Box">4</container>
</did>
</c02>
<c02>
<did>
<unittitle>Newspaper clippings</unittitle>
<container type="Box">4</container>
</did>
</c02>
<c02>
<did>
<unittitle>Organizations</unittitle>
</did>
<c03 id="mrafsc">
<did>
<unittitle>American Friends Service Committee</unittitle>
</did>
<note>
<p>
See also
Prison Reform: Organizations: American Friends Service Committee
</p>
</note>
<c04>
<did>
<unittitle>General</unittitle>
<container type="Box">4</container>
</did>
</c04>
<c04>
<did>
<unittitle>
1965-1970
Report
</unittitle>
<container type="Box">4</container>
</did>
<userestrict>
<p>
Permission of AFSC required to quote or use any part of this report.
</p>
</userestrict>
</c04>
<c04>
<did>
<unittitle>Garofalo, James</unittitle>
</did>
<c05>
<did>
<unittitle>Correspondence</unittitle>
<container type="Box">4</container>
</did>
</c05>
<c05>
<did>
<unittitle>
1968
Migrant teachers idea booklet
</unittitle>
<container type="Box">4</container>
</did>
<userestrict>
<p>
Permission of James Garofalo required to quote or use any part of this booklet.
</p>
</userestrict>
</c05>
</c04>
</c03>
<c03>
<did>
<unittitle>Clinton Migrant Committee</unittitle>
<container type="Box">4</container>
</did>
</c03>
<c03>
<did>
<unittitle>Colorado State Department of Education</unittitle>
<abstract>
Report:
Providing Education for Migrant Children
</abstract>
<container type="Box">4</container>
</did>
</c03>
<c03>
<did>
<unittitle>Consumers League of New York</unittitle>
<abstract>
includes pamphlet titled
Sweatshops In the Sun
on the findings of a year's study of migrant farm workers in New York State
</abstract>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1952">1952</unitdate>
<container type="Box">5</container>
</did>
</c03>
<c03>
<did>
<unittitle>League of Women Voters</unittitle>
</did>
<c04>
<did>
<unittitle>Agenda and advocacy</unittitle>
<container type="Box">5</container>
</did>
</c04>
<c04>
<did>
<unittitle>Correspondence</unittitle>
<container type="Box">5</container>
</did>
</c04>
<c04>
<did>
<unittitle>Finances and fundraising</unittitle>
<container type="Box">5</container>
</did>
</c04>
<c04>
<did>
<unittitle>Newspaper clippings</unittitle>
<container type="Box">5</container>
</did>
</c04>
<c04>
<did>
<unittitle>Publications</unittitle>
<container type="Box">5</container>
</did>
</c04>
<c04>
<did>
<unittitle>Reports</unittitle>
<container type="Box">5</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>Mohawk Valley Meeting (Society of Friends)</unittitle>
<container type="Box">5</container>
</did>
</c03>
<c03>
<did>
<unittitle>National Migrant Committee and Ministry</unittitle>
<container type="Box">5</container>
</did>
</c03>
<c03>
<did>
<unittitle>National Sharecropper's Fund</unittitle>
<container type="Box">5</container>
</did>
</c03>
<c03>
<did>
<unittitle>
New York State Committee on Farm and Food Processing Labor
</unittitle>
<abstract>annual reports</abstract>
<container type="Box">5</container>
</did>
</c03>
<c03 id="mrny">
<did>
<unittitle>
New York State Council of Churches and "Migrant Ministry"
</unittitle>
</did>
<c04>
<did>
<unittitle>General correspondence</unittitle>
<container type="Box">5</container>
</did>
</c04>
<c04>
<did>
<unittitle>Financial</unittitle>
<container type="Box">5</container>
</did>
</c04>
<c04>
<did>
<unittitle>Meetings</unittitle>
<container type="Box">5</container>
</did>
</c04>
<c04>
<did>
<unittitle>Policies, legislation and agenda</unittitle>
<container type="Box">6</container>
</did>
</c04>
<c04>
<did>
<unittitle>Projects and reports</unittitle>
<container type="Box">6</container>
</did>
</c04>
<c04>
<did>
<unittitle>
State Council Reporter
publication
</unittitle>
<container type="Box">6</container>
</did>
</c04>
<c04>
<did>
<unittitle>Training conferences and workshops</unittitle>
<container type="Box">6</container>
</did>
</c04>
<c04>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">6</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>
New York State Federation of Growers and Processors - New York State Migrant Child Care Program
</unittitle>
</did>
<c04>
<did>
<unittitle>General correspondence</unittitle>
<container type="Box">6</container>
</did>
</c04>
<c04>
<did>
<unittitle>By-laws and program operations</unittitle>
<container type="Box">6</container>
</did>
</c04>
<c04>
<did>
<unittitle>Financial</unittitle>
<physdesc>
2 folders
</physdesc>
<container type="Box">6</container>
</did>
</c04>
<c04>
<did>
<unittitle>Meetings and conferences</unittitle>
<container type="Box">7</container>
</did>
</c04>
<c04>
<did>
<unittitle>Newsletters</unittitle>
<container type="Box">7</container>
</did>
</c04>
<c04>
<did>
<unittitle>Newspaper clippings</unittitle>
<container type="Box">7</container>
</did>
</c04>
<c04>
<did>
<unittitle>Summaries and statistics</unittitle>
<container type="Box">7</container>
</did>
</c04>
<c04>
<did>
<unittitle>Various local programs</unittitle>
<container type="Box">7</container>
</did>
</c04>
<c04>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">7</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>New York State Migrant Education Program</unittitle>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1981">1981</unitdate>
<container type="Box">7</container>
</did>
</c03>
<c03>
<did>
<unittitle>
New York State Interdepartmental Committee on Migrant Labor
</unittitle>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1969/1973">1969-1973</unitdate>
<physdesc>
2 folders
</physdesc>
<container type="Box">7</container>
</did>
</c03>
<c03>
<did>
<unittitle>Oneida-Kenwood-Sherrill Migrant Committee</unittitle>
</did>
<c04>
<did>
<unittitle>Annual reports</unittitle>
<container type="Box">7</container>
</did>
</c04>
<c04>
<did>
<unittitle>Correspondence</unittitle>
</did>
<c05>
<did>
<unittitle>General</unittitle>
<container type="Box">8</container>
</did>
</c05>
<c05>
<did>
<unittitle>Committee annual reports</unittitle>
<container type="Box">8</container>
</did>
</c05>
<c05>
<did>
<unittitle>
George, Anne V., New York State Committee on Farm and Food Processing Labor
</unittitle>
<container type="Box">8</container>
</did>
</c05>
<c05>
<did>
<unittitle>New York State Education Department</unittitle>
<container type="Box">8</container>
</did>
</c05>
<c05>
<did>
<unittitle>
Price, Arthur F., New York State Migrant Child Care Program
</unittitle>
<container type="Box">8</container>
</did>
</c05>
</c04>
<c04>
<did>
<unittitle>Daily notes of migrant activities</unittitle>
<container type="Box">8</container>
</did>
</c04>
<c04>
<did>
<unittitle>Essays/reports on migrant issues and reform</unittitle>
<container type="Box">8</container>
</did>
</c04>
<c04>
<did>
<unittitle>Financial</unittitle>
<abstract>budgets, receipts, fund raising and contributions</abstract>
<container type="Box">8</container>
</did>
</c04>
<c04>
<did>
<unittitle>Journal</unittitle>
<container type="Box">8</container>
</did>
</c04>
<c04>
<did>
<unittitle>Lobbying efforts</unittitle>
<container type="Box">9</container>
</did>
</c04>
<c04>
<did>
<unittitle>
McAllister Summer School/Vernon-Verona-Sherrill Central School
</unittitle>
<container type="Box">9</container>
</did>
</c04>
<c04>
<did>
<unittitle>Migrant camp choir</unittitle>
<container type="Box">9</container>
</did>
</c04>
<c04>
<did>
<unittitle>Migrant labor camps</unittitle>
</did>
<c05>
<did>
<unittitle>General</unittitle>
<container type="Box">9</container>
</did>
</c05>
<c05>
<did>
<unittitle>Photos</unittitle>
<abstract>
migrant labor camps, migrant child-care centers and summer schools
</abstract>
<container type="Box">9</container>
</did>
</c05>
<c05>
<did>
<unittitle>Photos, oversize</unittitle>
<container type="Oversize">3</container>
</did>
</c05>
</c04>
<c04>
<did>
<unittitle>Newspaper clippings</unittitle>
<container type="Box">9</container>
</did>
</c04>
<c04>
<did>
<unittitle>Personal notes</unittitle>
<container type="Box">9</container>
</did>
</c04>
<c04>
<did>
<unittitle>
The Readers' News
</unittitle>
<container type="Box">9</container>
</did>
</c04>
<c04>
<did>
<unittitle>Scholarship program</unittitle>
</did>
<c05>
<did>
<unittitle>Correspondence</unittitle>
</did>
<c06>
<did>
<unittitle>Brown family general files</unittitle>
<container type="Box">9</container>
</did>
</c06>
<c06>
<did>
<unittitle>Brown, Alfred</unittitle>
<container type="Box">10</container>
</did>
</c06>
<c06>
<did>
<unittitle>Brown, Anthony</unittitle>
<container type="Box">10</container>
</did>
</c06>
<c06>
<did>
<unittitle>Brown, Betty</unittitle>
<container type="Box">10</container>
</did>
</c06>
<c06>
<did>
<unittitle>Brown, James</unittitle>
<container type="Box">10</container>
</did>
</c06>
<c06>
<did>
<unittitle>Brown, Larry</unittitle>
<container type="Box">10</container>
</did>
</c06>
<c06>
<did>
<unittitle>Edwards, Cora</unittitle>
<container type="Box">10</container>
</did>
</c06>
<c06>
<did>
<unittitle>Freeman, Mary</unittitle>
<container type="Box">10</container>
</did>
</c06>
<c06>
<did>
<unittitle>Holloway, Janie</unittitle>
<container type="Box">10</container>
</did>
</c06>
<c06>
<did>
<unittitle>Williams family</unittitle>
<container type="Box">11</container>
</did>
</c06>
</c05>
<c05>
<did>
<unittitle>Funding</unittitle>
<container type="Box">11</container>
</did>
</c05>
<c05>
<did>
<unittitle>Memorabilia</unittitle>
<container type="Box">11</container>
</did>
</c05>
<c05>
<did>
<unittitle>Memorabilia, oversize</unittitle>
<container type="Oversize">3</container>
</did>
</c05>
<c05>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">11</container>
</did>
</c05>
</c04>
<c04>
<did>
<unittitle>Sherrill Child Care Center</unittitle>
<abstract>
part of the New York State Migrant Child Care Program
</abstract>
<container type="Box">11</container>
</did>
</c04>
<c04>
<did>
<unittitle>Special Milk Program</unittitle>
<container type="Box">11</container>
</did>
</c04>
<c04>
<did>
<unittitle>Workshops/conferences on migrant education</unittitle>
<container type="Box">11</container>
</did>
</c04>
<c04>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">11</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>Oneida-Madison Migrant Committee</unittitle>
<container type="Box">11</container>
</did>
</c03>
<c03>
<did>
<unittitle>State-level migrant groups in New York</unittitle>
<container type="Box">11</container>
</did>
</c03>
<c03>
<did>
<unittitle>Syracuse Monthly Meeting of Friends</unittitle>
<container type="Box">12</container>
</did>
</c03>
<c03>
<did>
<unittitle>Utica Area Migrant Committee</unittitle>
<container type="Box">12</container>
</did>
</c03>
<c03>
<did>
<unittitle>World Council of Churches</unittitle>
<abstract>
publication:
Migration today: current problems and Christian responsibility
</abstract>
<container type="Box">12</container>
</did>
</c03>
<c03>
<did>
<unittitle>
Miscellaneous conferences, committees, programs and workshops
</unittitle>
<container type="Box">12</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>Photographs</unittitle>
<physdesc>
3 folders
</physdesc>
<container type="Box">12</container>
</did>
</c02>
<c02>
<did>
<unittitle>Printed material</unittitle>
<container type="Box">12</container>
</did>
</c02>
<c02>
<did>
<unittitle>School memorabilia</unittitle>
<physdesc>
5 folders
</physdesc>
<container type="Box">13</container>
</did>
</c02>
<c02>
<did>
<unittitle>School memorabilia, oversize</unittitle>
<container type="Oversize">3</container>
</did>
</c02>
<c02>
<did>
<unittitle>Scrapbook</unittitle>
<container type="Box">14</container>
</did>
</c02>
<c02>
<did>
<unittitle>Scrapbooks, oversize</unittitle>
<container type="Oversize">2</container>
</did>
</c02>
<c02>
<did>
<unittitle>Slides</unittitle>
<container type="Box">23</container>
</did>
</c02>
<c02>
<did>
<unittitle>Slides</unittitle>
<container type="Box">24</container>
</did>
</c02>
<c02>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">14</container>
</did>
</c02>
</c01>
<c01 level="series">
<did>
<unittitle>Prison reform</unittitle>
</did>
<c02>
<did>
<unittitle>Advocacy and outreach</unittitle>
<abstract>coalitions, workshops, projects, legislation</abstract>
<container type="Box">14</container>
</did>
</c02>
<c02>
<did>
<unittitle>General correspondence</unittitle>
<container type="Box">14</container>
</did>
</c02>
<c02>
<did>
<unittitle>Inmate correspondence</unittitle>
</did>
<c03>
<did>
<unittitle>Ford, Glen (Ted)</unittitle>
<abstract>
Mid-Orange, Wallkill, Auburn and Elmira correctional facilities
</abstract>
<physdesc>
2 folders
</physdesc>
<container type="Box">14</container>
</did>
</c03>
<c03>
<did>
<unittitle>Johnson, Mel</unittitle>
<abstract>Auburn Correctional Facility</abstract>
<container type="Box">14</container>
</did>
</c03>
<c03>
<did>
<unittitle>Maloney, Robert</unittitle>
<container type="Box">14</container>
</did>
</c03>
<c03>
<did>
<unittitle>Montgomery, Michael</unittitle>
<abstract>
Eastern New York, Mohawk and Auburn correctional facilities
</abstract>
<physdesc>
2 folders
</physdesc>
<container type="Box">14</container>
</did>
</c03>
<c03>
<did>
<unittitle>Moseley, Winston</unittitle>
<abstract>Auburn Correctional Facility</abstract>
<container type="Box">15</container>
</did>
</c03>
<c03>
<did>
<unittitle>Sims, Bill</unittitle>
<abstract>Auburn Correctional Facility</abstract>
<note>
<p>
See also
Prison Reform: Organizations: Auburn Prison Friends
</p>
</note>
<container type="Box">15</container>
</did>
</c03>
<c03>
<did>
<unittitle>Swanson, John</unittitle>
<abstract>Auburn Correctional Facility</abstract>
<container type="Box">15</container>
</did>
</c03>
<c03>
<did>
<unittitle>Miscellaneous</unittitle>
<physdesc>
2 folders
</physdesc>
<container type="Box">15</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>News and media coverage</unittitle>
<container type="Box">15</container>
</did>
</c02>
<c02>
<did>
<unittitle>Organizations</unittitle>
</did>
<c03 id="prafsc">
<did>
<unittitle>American Friends Service Committee</unittitle>
<container type="Box">15</container>
</did>
<note>
<p>
See also
Migrant Reform: Organizations: American Friends Service Committee
</p>
</note>
</c03>
<c03>
<did>
<unittitle>Attica Friends Meeting</unittitle>
<container type="Box">15</container>
</did>
</c03>
<c03>
<did>
<unittitle>Auburn Correctional Facility</unittitle>
</did>
<c04>
<did>
<unittitle>General correspondence</unittitle>
<container type="Box">15</container>
</did>
</c04>
<c04>
<did>
<unittitle>Auburn Hospitality Association</unittitle>
<container type="Box">15</container>
</did>
</c04>
<c04>
<did>
<unittitle>
Contraband: Poetry from Prison and Other Ghettos of the Mind
</unittitle>
<container type="Box">16</container>
</did>
</c04>
</c03>
<c03 id="apf">
<did>
<unittitle>Auburn Prison Friends</unittitle>
</did>
<c04>
<did>
<unittitle>General correspondence</unittitle>
<physdesc>
2 folders
</physdesc>
<container type="Box">16</container>
</did>
</c04>
<c04>
<did>
<unittitle>Correspondence</unittitle>
</did>
<c05>
<did>
<unittitle>Alternatives to Violence Project (AVP)</unittitle>
<container type="Box">16</container>
</did>
</c05>
<c05>
<did>
<unittitle>
New York State Department of Correctional Facilities
</unittitle>
<container type="Box">16</container>
</did>
</c05>
<c05>
<did>
<unittitle>Schmidt, Mattie</unittitle>
<abstract>mostly financial</abstract>
<container type="Box">16</container>
</did>
</c05>
</c04>
<c04>
<did>
<unittitle>Auburn International Peace Petition</unittitle>
<container type="Box">16</container>
</did>
</c04>
<c04>
<did>
<unittitle>Meeting of Oversight Committee</unittitle>
</did>
<c05>
<did>
<unittitle>
1975-1982
</unittitle>
<physdesc>
5 folders
</physdesc>
<container type="Box">16</container>
</did>
</c05>
<c05>
<did>
<unittitle>
1983-1994
</unittitle>
<physdesc>
9 folders
</physdesc>
<container type="Box">17</container>
</did>
</c05>
<c05>
<did>
<unittitle>
Undated
</unittitle>
<container type="Box">17</container>
</did>
</c05>
</c04>
<c04>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">17</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>Central Intelligence Agency</unittitle>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Chautauqua County Rural Ministry</unittitle>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Church Women United of Oneida</unittitle>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Clinton Correctional Facility</unittitle>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Department of American Studies</unittitle>
<abstract>counseling, therapy, and crisis intervention</abstract>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Friends Committee on National Legislation</unittitle>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Idyllic Foundation</unittitle>
<abstract>for troubled young people</abstract>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>
Land Trust Committee of the New York Yearly Meeting of the Religious Society of Friends
</unittitle>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Madison County Correctional Facility</unittitle>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Madison County bail fund</unittitle>
<physdesc>
2 folders
</physdesc>
<container type="Box">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Mohawk Meeting (Society of Friends)</unittitle>
<container type="Box">18</container>
</did>
</c03>
<c03>
<did>
<unittitle>New York State Coalition for Criminal Justice</unittitle>
<container type="Box">18</container>
</did>
</c03>
<c03>
<did>
<unittitle>New York State Council of Churches</unittitle>
<note>
<p>
See also
Migrant Reform: Organizations: New York State Council of Churches
</p>
</note>
<container type="Box">18</container>
</did>
</c03>
<c03>
<did>
<unittitle>
New York Yearly Meeting of the Religious Society of Friends - Alternatives to Violence Project (NYYM/AVP)
</unittitle>
</did>
<c04>
<did>
<unittitle>Correspondence</unittitle>
<container type="Box">18</container>
</did>
</c04>
<c04>
<did>
<unittitle>Meetings and minutes</unittitle>
<container type="Box">18</container>
</did>
</c04>
<c04>
<did>
<unittitle>Newsletters and reports</unittitle>
<container type="Box">18</container>
</did>
</c04>
<c04>
<did>
<unittitle>Policies, by-laws and finance</unittitle>
<container type="Box">18</container>
</did>
</c04>
<c04>
<did>
<unittitle>Printed material</unittitle>
<container type="Box">18</container>
</did>
</c04>
<c04>
<did>
<unittitle>Prisons Committee</unittitle>
<container type="Box">18</container>
</did>
</c04>
<c04>
<did>
<unittitle>Training and workshops</unittitle>
<container type="Box">18</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>Offender Aid and Restoration (OAR)</unittitle>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>Syracuse Meeting (Society of Friends)</unittitle>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>Women's Prison Project</unittitle>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">19</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>Printed material</unittitle>
<container type="Box">19</container>
</did>
</c02>
<c02>
<did>
<unittitle>Training and coursework</unittitle>
<container type="Box">19</container>
</did>
</c02>
<c02>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">19</container>
</did>
</c02>
</c01>
<c01 level="series">
<did>
<unittitle>Miscellaneous reform</unittitle>
</did>
<c02>
<did>
<unittitle>Birth control - Planned Parenthood</unittitle>
<container type="Box">19</container>
</did>
</c02>
<c02>
<did>
<unittitle>Civil rights movement</unittitle>
</did>
<c03>
<did>
<unittitle>General correspondence</unittitle>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>The Fellowship of Reconciliation</unittitle>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>Magazine clippings</unittitle>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>Martin Luther King, Jr.</unittitle>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>
New York Yearly Meeting of the Religious Society of Friends (NYYM)
</unittitle>
<abstract>race relations</abstract>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1968">1968</unitdate>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>Newspaper clippings</unittitle>
<container type="Box">19</container>
</did>
</c03>
<c03>
<did>
<unittitle>Printed material</unittitle>
<container type="Box">20</container>
</did>
</c03>
<c03>
<did>
<unittitle>Runnymede Corporation against segregated housing</unittitle>
<container type="Box">20</container>
</did>
</c03>
<c03>
<did>
<unittitle>Southern Christian Leadership Conference (SCLC)</unittitle>
<container type="Box">20</container>
</did>
</c03>
<c03>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">20</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>
Discrimination in housing - Housing and Home Finance Agency, Washington DC
</unittitle>
<unitdate type="inclusive" era="ce" calendar="gregorian" normal="1957">1957</unitdate>
<container type="Box">20</container>
</did>
</c02>
<c02>
<did>
<unittitle>
Human relations - National Conference of Christians and Jews
</unittitle>
<container type="Box">20</container>
</did>
</c02>
<c02>
<did>
<unittitle>Low-income family aid</unittitle>
<container type="Box">20</container>
</did>
</c02>
<c02>
<did>
<unittitle>Missions work</unittitle>
<container type="Box">20</container>
</did>
</c02>
<c02>
<did>
<unittitle>Peace and community nonviolence</unittitle>
</did>
<c03>
<did>
<unittitle>General files</unittitle>
<container type="Box">20</container>
</did>
</c03>
<c03>
<did>
<unittitle>Quaker Project on Community Conflict</unittitle>
<container type="Box">20</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>Peace movement</unittitle>
<container type="Box">20</container>
</did>
<c03>
<did>
<unittitle>American Friends Service Committee</unittitle>
<container type="Box">20</container>
</did>
<note>
<p>
See also
Migrant Reform: Organizations: American Friends Service Committee
and
Prison Reform: Organizations: American Friends Service Committee
</p>
</note>
</c03>
<c03>
<did>
<unittitle>Disarmament</unittitle>
<container type="Box">20</container>
</did>
</c03>
<c03>
<did>
<unittitle>New York Telephone Federal Tax Protest</unittitle>
<container type="Box">20</container>
</did>
</c03>
<c03>
<did>
<unittitle>
Peacemaker
publication
</unittitle>
<container type="Box">20</container>
</did>
</c03>
<c03>
<did>
<unittitle>Peace walks and vigils</unittitle>
<container type="Box">20</container>
</did>
</c03>
<c03>
<did>
<unittitle>Publications and newsletters</unittitle>
<container type="Box">21</container>
</did>
</c03>
<c03>
<did>
<unittitle>Vietnam and draft law</unittitle>
<container type="Box">21</container>
</did>
</c03>
<c03>
<did>
<unittitle>Women's peace movements</unittitle>
<container type="Box">21</container>
</did>
</c03>
</c02>
<c02>
<did>
<unittitle>Poverty</unittitle>
<container type="Box">21</container>
</did>
</c02>
<c02>
<did>
<unittitle>Miscellaneous</unittitle>
<container type="Box">21</container>
</did>
</c02>
</c01>
</dsc>
</archdesc>
</ead>
|