-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuwmac0001.xml
7039 lines (7033 loc) · 268 KB
/
uwmac0001.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="ascii" standalone="no"?>
<!--<!DOCTYPE ead PUBLIC "+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival Description (EAD) Version 2002)//EN" "http://lcweb2.loc.gov/xmlcommon/dtds/ead2002/ead.dtd" [ <!ENTITY uwmlogo SYSTEM "foo.jpg" NDATA jpeg>]>-->
<!-- wiarchives version:2008-05-22 -->
<ead id="uw-mil-uwmac0001" relatedencoding="MARC21">
<eadheader langencoding="iso639-2b" audience="internal" countryencoding="iso3166-1"
dateencoding="iso8601" repositoryencoding="iso15511" scriptencoding="iso15924"
relatedencoding="MARC21">
<eadid countrycode="US" mainagencycode="wimiugma"
url="http://digital.library.wisc.edu/1711.dl/wiarchives.uw-mil-uwmac0001"
encodinganalog="856$u">uw-mil-uwmac0001</eadid>
<filedesc>
<titlestmt>
<titleproper encodinganalog="245$a">Finding Aid of the UW-Milwaukee College of Letters &
Science Records, 1948-2014</titleproper>
</titlestmt>
<publicationstmt>
<publisher encodinganalog="260$b">University of Wisconsin-Milwaukee Libraries, Archives
Department</publisher>
<address>
<addressline>University of Wisconsin-Milwaukee</addressline>
<addressline>UWM Libraries</addressline>
<addressline>Archives Department</addressline>
<addressline>P.O. Box 604</addressline>
<addressline>Milwaukee, Wisconsin 53201-0604</addressline>
<addressline>URL: www.uwm.edu/Libraries/arch/index.html<extptr href="http://www.uwm.edu/Libraries/arch/index.html"/></addressline>
</address>
<date encodinganalog="260$c" type="publication" normal="2007">Copyright © 2007
University of Wisconsin Board of Regents</date>
</publicationstmt>
</filedesc>
<profiledesc>
<creation encodinganalog="500">Finding aid encoded by Dan Vinson</creation>
<langusage encodinganalog="546">Finding aid written in <language encodinganalog="041"
langcode="eng" scriptcode="Latn">English.</language></langusage>
</profiledesc>
<revisiondesc>
<change>
<date normal="2016-08-01">March 21, 2017</date>
<item>Ashlie Biddle updated the finding aid to reflect the addition of accession 2016-032.
Changes were made to call number, extent, abstract, arrangement, bioghist, accessrestrict,
acqinfo, processinfo, and the contents list.</item>
</change>
<change>
<date normal="2016-08-04">August 4, 2016</date>
<item>Christel Maass made a correction to the number of accessions in the arrangement
note.</item>
</change>
<change>
<date normal="2016-08-01">August 1, 2016</date>
<item>Brad Houston updated the finding aid to reflect the addition of accession 2016-003.
Changes were made to extent, arrangement, otherfindaid, accessrestrict acqinfo,
processinfo, and the contents list.</item>
</change>
<change>
<date normal="2016-07-21">July 21, 2016</date>
<item>Phyllis Reske updated the finding aid to reflect the addition of materials to box 29.
Changes were made to processinfo and the contents list.</item>
</change>
<change encodinganalog="583">
<date normal="2016-06-02">June 2, 2016</date>
<item>Ashlie Biddle updated the finding aid to reflect the change in extent of accession
2009-063.</item>
</change>
<change encodinganalog="583">
<date normal="2016-05-25">May 25, 2016</date>
<item>Ashlie Biddle updated the finding aid to reflect the change in extent of accession
2002-071. Accession 2010-068(2) was weeded down to two small personnel folders, and it was
decided to add these two folders to box 2 of accession 2002-071 since both accessions
contained personnel files from the College of Letters and Science.</item>
</change>
<change encodinganalog="583">
<date normal="2016-04-29">April 29, 2016</date>
<item>Brad Houston further consolidated Accession 2013-011 to 3 boxes. Changes were made to
the extent and contents list.</item>
</change>
<change encodinganalog="583">
<date normal="2016-04-21">April 21, 2016</date>
<item>Ashlie Biddle updated the finding aid after moving items in Box 4 of Accession
2013-011 to a smaller box. Changes were made to the extent.</item>
</change>
<change encodinganalog="583">
<date normal="2015-07-07">July 7, 2015</date>
<item>Brad Houston updated the finding aid to reflect minimal processing of a number of
accessions. An Other Finding Aids component was added to indicate the existence of
inventories for these accessions.</item>
</change>
<change encodinganalog="583">
<date normal="2014-05-07">July 28, 2014</date>
<item>Charles updated the finding aid after adding records from the dribble file. Changes
were made to the collection contents list.</item>
</change>
<change encodinganalog="583">
<date normal="2014-05-07">July 28, 2014</date>
<item>Brad Houston updated the finding aid to make some corrections to the web crawl links
below. Changes were made to collection unitdate, arrangement, titleproper, and the
contents list.</item>
</change>
<change encodinganalog="583">
<date normal="2014-05-07">May 7, 2014</date>
<item>Charles Tonelli updated the finding aid to include links to materials collected via
web crawl. Changes were made to relatedmaterials and the contents list.</item>
</change>
<change encodinganalog="583">
<date normal="2013-10-03">October 3, 2013</date>
<item>Brad Houston updated the finding aid to reflect consolidation of two publications, L
& S Update and Letters and Science Review. Since the runs of both publications
overlap, and the runs in box 83 were more complete than those in boxes 58 and 78, the
other folders were deaccessioned and the folder numbers in the affected boxes were
updated. </item>
</change>
<change encodinganalog="583">
<date normal="2013-09-25">September 25, 2013</date>
<item>Christel Maass made a number of corrections and general updates to the finding
aid.</item>
</change>
<change encodinganalog="583">
<date normal="2013-09-19">September 19, 2013</date>
<item>Christel Maass updated the finding aid, adding information about a new, unprocessed
accessions.</item>
</change>
<change>
<date normal="2013-08-07">August 7, 2013</date>
<item>Brad Houston updated the finding aid to reflect the addition of accession 2011-019 to
the collection. Changes were made to physdesc, abstract, scopecontent, arrangement,
accessioninfo, processinfo, and the contents list (box 83).</item>
</change>
<change>
<date normal="2012-08-02">August 2, 2012</date>
<item>Charles Welborn added dribble files to the collection. Updated: filedesc, archdesc,
bioghist, processinfo, and the contents list.</item>
</change>
<change encodinganalog="583">
<date normal="2008-05-01">May 1, 2008</date>
<item>Brad Houston updated this finding aid to reflect addition of two accessions to the
processed collection by Jenny Juno. Changes were made to physdesc, abstract, bioghist,
scopecontent, and the contents list (boxes 80-82).</item>
</change>
</revisiondesc>
</eadheader>
<archdesc level="collection" relatedencoding="MARC21">
<did>
<physloc type="locationcode" audience="internal">wimiugma</physloc>
<unittitle encodinganalog="245$a">UW-Milwaukee College of Letters & Science Records,
<unitdate type="inclusive" encodinganalog="245$f" normal="1948/2014"
>1948-2014</unitdate></unittitle>
<origination label="Creator">
<corpname encodinganalog="110">University of Wisconsin-Milwaukee. College of Letters &
Science. Office of the Dean</corpname>
</origination>
<unitid label="Call Number" encodinganalog="099" repositorycode="us-wimiugma" countrycode="US"
>UWM Archival Collection 1</unitid>
<unitid label="Call Number" encodinganalog="099" repositorycode="us-wimiugma" countrycode="US"
>Accession 2002-071</unitid>
<unitid label="Call Number" encodinganalog="099" repositorycode="us-wimiugma" countrycode="US"
>Accession 2009-063</unitid>
<unitid label="Call Number" encodinganalog="099" repositorycode="us-wimiugma" countrycode="US"
>Accession 2010-068(2)</unitid>
<unitid label="Call Number" encodinganalog="099" repositorycode="us-wimiugma" countrycode="US"
>Accession 2013-011</unitid>
<unitid label="Call Number" encodinganalog="099" repositorycode="us-wimiugma" countrycode="US"
>Accession 2016-003</unitid>
<unitid label="Call Number" encodinganalog="099" repositorycode="us-wimiugma" countrycode="US"
>Accession 2016-032</unitid>
<physdesc label="Quantity">
<extent encodinganalog="300">73.9 cubic ft. (83 boxes)</extent>
<extent encodinganalog="300">plus additions of 22 cubic ft. (24 boxes)</extent>
</physdesc>
<repository encodinganalog="852">
<extptr entityref="uwmlogo" show="embed" actuate="onload" altrender="center"
title="University of Wisconsin-Milwaukee Logo." role="logoimage"/>
<corpname>University of Wisconsin-Milwaukee Libraries, Archives Department</corpname>
</repository>
<abstract encodinganalog="520">Records of the largest academic division at the University of
Wisconsin-Milwaukee (UWM), which administers numerous centers, departments, and programs.
The records document the administration of the college's seven deans: Joseph G. Baier
(1956-1966), Roy G. Francis (1966-1969), Howard J. Pincus (1969-1972), William F. Halloran
(1972-1998), Marshall Goodman (1999-2002), Richard Meadows (2002-2011), and Rodney Swain
(2011-2017). Most of the records date from 1965 to 2000, but the collection contains a few
records of UWM's predecessor institutions. The majority of the records are correspondence
and reports between the deans, associate deans, and the department heads concerning academic
activities, curriculum development, and program funding. The files also contain records of
numerous ad hoc and standing college committees, and committees organized within the
departments. Also included are photos of faculty, student life, departmental functions, and
other events sponsored by the College.</abstract>
<langmaterial encodinganalog="546" label="Language">
<language encodinganalog="041" langcode="eng">English</language>
</langmaterial>
</did>
<bioghist encodinganalog="545">
<p>The University of Wisconsin-Milwaukee was created in 1956 following the merger of the
University of Wisconsin's Milwaukee Center and the Wisconsin State College, Milwaukee. The
College of Letters & Science was established at the time of merger. Joseph G. Baier was
named dean, and he served until 1966.</p>
<p>Histories of the college can be found in <title render="italic">The First Ten Years</title>
and <title render="italic">Forum 1977</title>. Both are available in the collection and in
the UWM Libraries.</p>
<bioghist>
<head>Deans of the College</head>
<chronlist>
<chronitem>
<date>1956-1966</date>
<event>Joseph G. Baier</event>
</chronitem>
<chronitem>
<date>1966-1969</date>
<event>Roy G. Francis</event>
</chronitem>
<chronitem>
<date>1969-1972</date>
<event>Howard J. Pincus</event>
</chronitem>
<chronitem>
<date>1972-1998</date>
<event>William F. Halloran</event>
</chronitem>
<chronitem>
<date>1999-2002</date>
<event>Marshall Goodman</event>
</chronitem>
<chronitem>
<date>2002-2011</date>
<event>G. Richard Meadows</event>
</chronitem>
<chronitem>
<date>2011-2016</date>
<event>Rodney Swain</event>
</chronitem>
<chronitem>
<date>2017- </date>
<event>Dave Clark (interim)</event>
</chronitem>
</chronlist>
</bioghist>
</bioghist>
<scopecontent encodinganalog="520">
<p>Records of the largest academic division at the University of Wisconsin-Milwaukee (UWM),
which administers numerous centers, departments, and programs. The records document the
administration of the college's six deans: Joseph G. Baier (1956-1966), Roy G. Francis
(1966-1969), Howard J. Pincus (1969-1972), William F. Halloran (1972-1998), Marshall Goodman
(1999-2002), and Richard Meadows (2002-2011). Most of the records date from 1965 to 1980,
but the collection contains a few records from UWM's predecessor institutions and three
boxes of post-1980 material from the Halloran administration.</p>
<p>The majority of the collection consists of the dean's files concerning the centers,
departments, and programs within the college. The records document the development of new
courses and degrees; staffing and equipment needs; plans for future expansion; and efforts
to streamline operations. Also included are copies of correspondence, reports, and
background materials either created by the dean or sent to him from other offices. The files
also contain agendas, minutes, and supporting materials from departmental ad hoc and
standing committees.</p>
<p>The files often contain frank assessments written by the faculty or staff most intimately
involved with the operations, which are very useful in understanding the development of
plans and programs. In many cases, correspondence between the vice chancellor and the dean
found in the departmental files also provides useful documentation. Among the most
well-documented operations are the Centers for Latin American and Twentieth Century Studies;
the Departments of Chemistry, English, and Mass Communication; the Honors Program; Master of
Arts in Foreign Language and Literature Program; and the WUWM radio station.</p>
<p>The records of the Academic Deans Council document the L&S Dean's involvement in
general administrative concerns such as the budget, relevant decisions of the UW System
Regents, and grading and salary policies.</p>
<p>There are numerous records concerning the relations with the local African-American
community and minority students at UWM. Materials can be found in files on "Achievements,
Plans, Resources"; the Ad Hoc Committee on Afro-American Students; affirmative action plan;
Black student advising; the proposed 1968 mentor project; minority students; and the Dept.
of Afro-American Studies. Controversies concerning the cancellation of radio programs aimed
at the African American community are well documented in the files pertaining to the WUWM
radio station.</p>
<p>The chancellor's files, which are most extensive for the early 1960s, usually contain
correspondence regarding general policy issues. Of interest are occasional letters from
Chancellor Klotsche regarding the division of responsibility for a program between the
College and another academic unit.</p>
<p>The correspondence files contain the dean's incoming and outgoing letters with individuals
on and off the campus, usually concerning general policy issues, funding, staffing, and
other administrative concerns. The files also contain some copies of the correspondence of
other university personnel when it pertained to college operations. There is overlap in the
files of correspondence for the years 1964-1966. Some of the correspondence can also be
found in the files on committees, centers, departments, and programs.</p>
<p>The records of the Course and Curriculum Committee normally contain agendas, minutes, and
supporting materials. The committee reviewed plans for new degrees, majors, and minors. It
also discussed and approved course action requests such as changing a course description or
title, or adding and dropping courses. The committee, appointed by the dean, met about every
two weeks.</p>
<p>The records of the Dean's Faculty Advisory Committee normally contain agendas, minutes, and
supporting materials. The committee met monthly to discuss general issues with the dean that
were raised by the Committee members. The records of the college's faculty meetings normally
contain the agendas, minutes, and supporting materials. The faculty approved recommendations
for consideration of candidates for degrees and honors, and approved annual reports and
special reports of the committees within the College. The faculty met once in the spring
semester and once in the fall semester.</p>
<p>Files on the history of the college include a copy of <title render="italic">The First Ten
Years</title>, written by Dean Joseph Baier in 1975, and the proceedings, and audio and
video recordings of <title render="italic">Forum 1977</title>, a symposium celebrating the
20th anniversary of the college.</p>
<p>The collection contains an extensive run of the memos sent by the dean and the assistant
and associate deans to members of the college. Most of the memos concern routine procedural
matters about meetings, or budgetary, staff, or student affairs.</p>
<p>An excellent overview of the college's operations and plans in the 1970s is the files
containing "Ten Year Plans," and for the 1980s in the files containing "Achievements, Plans,
Resources." The latter normally include a formal organizational chart, and detailed analyses
of affirmative action plans, budgets, student retention, workloads, and other issues.</p>
<p>The statistical analyses and reports contain both summary and detailed information on class
size and cumulative grade point averages; and the number of courses, sections, and students.
The information is presented in graphs and tables.</p>
<p>The collection contains extensive correspondence between the dean and the vice chancellor,
copies of which can sometimes be found in the departmental files. The correspondence usually
discusses funding and staff levels for college operations or major changes in university
procedures.</p>
<p>Also included in the collection is a selection of photographs from various Letters &
Science events and publications. The majority of these are portrait photos of faculty and
staff, but also present are photos of students and alumni, including documentation of the
1999-2000 Alumni College. There are numerous photos of student life, such as students in
class and laboratories, students clubs & groups, and the freshmen scholar picnic. A
folder of departmental files includes scenes from events sponsored by the departments of
Forensic Science, Psychology, and Biology, among others.</p>
</scopecontent>
<arrangement>
<p>This collection was received in, and is organized in, multiple parts. Additional materials
have not been physically or intellectually arranged and interfiled, and researchers may need
to consult more than one part of the collection to locate similar materials.</p>
<list type="simple">
<item>
<ref target="uwmac0001" show="replace" actuate="onrequest">UWM Archival Collection 1:
Records, 1948-2014</ref>
</item>
</list>
<p>The collection is arranged into the following series:</p>
<list type="ordered" numeration="arabic">
<item>
<ref target="series1" show="replace" actuate="onrequest">Subject Files, 1948-2014</ref>
</item>
<item>
<ref target="series2" show="replace" actuate="onrequest">Publicity Files, 1970-2009</ref>
</item>
</list>
<p>The files are organized alphabetically by folder heading within each series.</p>
<p>The collection contains five additional accessions.</p>
<list type="simple">
<item>
<ref target="acc2002-071" show="replace" actuate="onrequest">Accession 2002-071: Personnel
Files, 1965-1998</ref>
</item>
<item>
<ref target="acc2009-063" show="replace" actuate="onrequest">Accession 2009-063: Personnel
Files, 1956-2009</ref>
</item>
<item>
<ref target="acc2010-068" show="replace" actuate="onrequest">Accession 2010-068(2):
Personnel Files, 1997</ref>
</item>
<item>
<ref target="acc2013-011" show="replace" actuate="onrequest">Accession 2013-011: Personnel
Files, 1964-2013</ref>
</item>
<item>
<ref target="acc2016-003" show="replace" actuate="onrequest">Accession 2016-003: Personnel
Files, 1960-2011</ref>
</item>
<item>
<ref target="acc2016-003" show="replace" actuate="onrequest">Accession 2016-032: Subject
and Personnel Files, 1968-2013</ref>
</item>
</list>
</arrangement>
<otherfindaid encodinganalog="555">
<p>Finding aids for the personnel files in boxes 36-56, and for accessions 2002-071, 2009-063,
2010-068(2), 2013-011, and 2016-003 are available in the Archives.</p>
<p>An item-level inventory of the photographs in series 2 is available as a spreadsheet in the
Archives. The spreadsheet includes the subject and date of the photographs (if known), as
well as correspondence to photo jobs from the UWM Photo Services Collection (UWM AC
214).</p>
</otherfindaid>
<prefercite encodinganalog="524">
<p>
<extref
href="http://uwm.edu/libraries/archives/research/citation-guide-for-primary-sources/"
>Citation Guide for Primary Sources</extref>
</p>
</prefercite>
<descgrp type="admininfo">
<head>Administrative/Restriction Information</head>
<accessrestrict encodinganalog="506">
<p>The unclassified personnel files in boxes 36-56 and in accessions 2002-071, 2009-063,
2010-068, 2013-011, 2016-003, and 2016-032 (boxes 11-15) are restricted in accordance with
UWM Personnel File Policy S-42. Access is regulated by Section III. A.2 and III. A.3.
There are no access restrictions on the rest of the collection, which is open to all
members of the public in accordance with state law.</p>
</accessrestrict>
<userestrict encodinganalog="540">
<p>The researcher assumes full responsibility for conforming with the laws of libel,
privacy, and copyright which may be involved in the use of this collection (Wisconsin
Statutes 19.21-19.39).</p>
</userestrict>
<acqinfo encodinganalog="541">
<p>The collection originally consisted of 33 processed and unprocessed accessions acquired
before 1989. In October 1997 Anne Potter transferred an accession (1995-022) of personnel
files. William Halloran transferred some project materials (1998-049) in 1999. An
additional accession (2006-013) was transferred in 2006. The College of Letters &
Science transferred accession 2011-029 in November 2011. The College transferred
additional materials in June 2010 (accession 2009-063), August 2013 (accession 2013-011),
July 2016 (2016-003), and February 2017 (accession 2019-032). Dept. of Philosophy
personnel files were transferred to the Archives in January 2003 (accession 2002-071) and
Dept. of Psychology personnel files were transferred in June 2011 (accession
2010-068).</p>
</acqinfo>
<processinfo encodinganalog="583">
<p>Mark A. Vargas processed the collection at the Archives between November 1992 and January
1993. Christel T. Maass added the unclassified personnel file accession (1995-022) to the
collection in November 1995. Christel T. Maass added accession 1994-011, as well as
miscellaneous materials collected in the Archives, to the collection in November 1996
(boxes 57-59). In October 1997 Christel T. Maass added some additional boxes of
miscellaneous materials to the collection (boxes 60-63). Jeremy Brett added the personnel
files from 2001-022 and 2002-074 (boxes 68-77) to the collection in November 2006. Jeremy
Brett added a few files to the series (boxes 78-79) in January 2007. Jenny Juno processed
accessions 1998-049 and 2006-013 in January 2008, under the supervision of Brad Houston.
Charles Welborn processed additional material in August 2012. Wen-Ling Lo processed
accession 2011-029 in June 2013 as part of a fieldwork project with National Taiwan Normal
University. Christel Maass updated the finding aid to include information about accessions
2002-071, 2009-063, 2010-068(2), and 2013-011 in September 2013. Charles Hosale added two
folders of processed records from the dribble file in September 2014. Phyllis Reske
processed some additional materials in July 2016 (Brad Houston supervised). Brad Houston
updated the finding aid to include information about accession 2016-003 in August 2016.
Ashlie Biddle updated the finding aid to include information about accession 2016-032 and
separated restricted information within the accession.</p>
</processinfo>
</descgrp>
<dsc type="combined">
<head>Contents List</head>
<c01 level="otherlevel" otherlevel="processed" id="uwmac0001">
<did>
<unitid>UWM Archival Collection 1</unitid>
<unittitle>Records, <unitdate type="inclusive" normal="1948/2014"
>1948-2014</unitdate></unittitle>
<physdesc>
<extent>73.9 cubic ft. (83 boxes)</extent>
</physdesc>
</did>
<c02 id="series1" level="series">
<did>
<unittitle>1. Subject Files, <unitdate>1948-2014</unitdate></unittitle>
</did>
<c03>
<did>
<unittitle>30th Anniversary of Merger, Faculty Party,
<unitdate>1986</unitdate></unittitle>
<container type="box" label="Box">80</container>
<container type="folder" label="Folder">1</container>
</did>
</c03>
<c03>
<did>
<unittitle>Academic Affairs Committee, 1972-1973</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">1</container>
</did>
</c03>
<c03>
<did>
<unittitle>Academic Computing, 1983-1984</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">2</container>
</did>
</c03>
<c03>
<did>
<unittitle>Academic Deans Council</unittitle>
</did>
<c04>
<did>
<unittitle>
<unitdate>1969-1986</unitdate>
</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">3-19</container>
</did>
</c04>
<c04>
<did>
<unittitle>Retreat, <unitdate>1977</unitdate></unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">20</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>Academic Planning Committee, 1981-1990</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">21</container>
</did>
</c03>
<c03>
<did>
<unittitle>Academic Policy Committee, 1977-1982</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">22</container>
</did>
</c03>
<c03>
<did>
<unittitle>Academic Program, 1973-1978</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">24-25</container>
</did>
</c03>
<c03>
<did>
<unittitle>Academic Staff Policy and Procedures, 1976-1979</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">23</container>
</did>
</c03>
<c03>
<did>
<unittitle>Accreditation of L & S Programs, 1979-1984</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">26</container>
</did>
</c03>
<c03>
<did>
<unittitle>Achievements, Plans, Resources</unittitle>
</did>
<c04>
<did>
<unittitle>1981-1984</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">27</container>
</did>
</c04>
<c04>
<did>
<unittitle>1982-1985</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">28</container>
</did>
</c04>
<c04>
<did>
<unittitle>1983-1986</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">29</container>
</did>
</c04>
<c04>
<did>
<unittitle>1983-1991</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">30</container>
</did>
</c04>
<c04>
<did>
<unittitle>1985-1988</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">31</container>
</did>
</c04>
<c04>
<did>
<unittitle>1986-1989</unittitle>
<container type="box" label="Box">1</container>
<container type="folder" label="Folder">32</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Afro-American Studies</unittitle>
</did>
<c04>
<did>
<unittitle>1976-1977</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">1-6</container>
</did>
</c04>
<c04>
<did>
<unittitle>Black Faculty, 1976-1977</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">7</container>
</did>
</c04>
<c04>
<did>
<unittitle>Black Student Analyses, 1974-1977</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">8-9</container>
</did>
</c04>
<c04>
<did>
<unittitle>Questionnaire on Black Faculty, 1976</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">10</container>
</did>
</c04>
<c04>
<did>
<unittitle>Reviewers, 1976</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">11</container>
</did>
</c04>
<c04>
<did>
<unittitle>Subcommittee on Student Support Services, 1976-1977</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">12</container>
</did>
</c04>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Bachelor of Liberal Arts, 1967-1971</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">13</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Faculty Sabbatical Program, 1976</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">14</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Future Use of Space in the North Wing of Lapham Hall,
1969</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">15</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Honors, 1972-1974</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">16</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Honors Designations, 1969</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Language Learning, 1967-1970</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">18-20</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Medieval Studies, 1972-1973</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">21</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Problems Facing Freshmen, 1965-1966</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">22</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Student Absences, 1971-1972</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">23</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Student Loans, 1962</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">24</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on the College Level Examination Program,
1970-1974</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">25</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Undergraduate Degree Requirements,
1969-1971</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">26-29</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Urban Planning, 1972</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">30</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee on Women's Recruitment, 1978</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">31</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Committee to Study Proposal for Social Science Research Project,
1965</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">32</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Teaching Evaluation Advisory Committee, 1976</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">33</container>
</did>
</c03>
<c03>
<did>
<unittitle>Ad Hoc Transfer Policy Committee, 1972</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">34</container>
</did>
</c03>
<c03>
<did>
<unittitle>Administrative Affairs, 1970-1984</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">37</container>
</did>
</c03>
<c03>
<did>
<unittitle>Admissions and Records, 1957-1985</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">35</container>
</did>
</c03>
<c03>
<did>
<unittitle>Admissions Policy Committee, 1975-1984</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">36</container>
</did>
</c03>
<c03>
<did>
<unittitle>Advising Office, 1964-1966</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">38</container>
</did>
</c03>
<c03>
<did>
<unittitle>Advisory Committee for the Language Resource Center, 1984-1989</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">39</container>
</did>
</c03>
<c03>
<did>
<unittitle>Affirmative Action Plan, 1993-1994</unittitle>
<container type="box" label="Box">57</container>
<container type="folder" label="Folder">1</container>
</did>
</c03>
<c03>
<did>
<unittitle>Affirmative Action Program, 1970-1971</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">40</container>
</did>
</c03>
<c03>
<did>
<unittitle>Afro-American Conference on Black Scholarship, 1979-1980</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">41</container>
</did>
</c03>
<c03>
<did>
<unittitle>Afro-Urban Institute, 1972</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">42</container>
</did>
</c03>
<c03>
<did>
<unittitle>Allied Health Education Advisory Council of South-Eastern Wisconsin,
1972-1974</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">43</container>
</did>
</c03>
<c03>
<did>
<unittitle>Alumni Association, 1966-1976</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">44</container>
</did>
</c03>
<c03>
<did>
<unittitle>Alumni Relations, 1965</unittitle>
<container type="box" label="Box">2</container>
<container type="folder" label="Folder">45</container>
</did>
</c03>
<c03>
<did>
<unittitle>American Civilization Course, 1956-1963</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">1-2</container>
</did>
</c03>
<c03>
<did>
<unittitle>American Federation of Teachers, 1968-1973</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">3</container>
</did>
</c03>
<c03>
<did>
<unittitle>American Geographical Society Collection, 1976-1977</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">4</container>
</did>
</c03>
<c03>
<did>
<unittitle>American Men of Science, 1959</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">5</container>
</did>
</c03>
<c03>
<did>
<unittitle>Applied Mathematics and Physics Major, 1956-1958</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">6</container>
</did>
</c03>
<c03>
<did>
<unittitle>Applied Science and Engineering, 1964-1966</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">7</container>
</did>
</c03>
<c03>
<did>
<unittitle>Approval Matrix Revision, 2006</unittitle>
</did>
<scopecontent>
<p>Records captured as part of <extref href="https://archive-it.org/organizations/664"
actuate="onrequest" show="new">UWM Web Collection.</extref></p>
</scopecontent>
<dao actuate="onrequest" show="new"
href="http://wayback.archive-it.org/3368/20140407051919/http://www4.uwm.edu/letsci/committees/2007/fdn/fdn744.html">
<daodesc>
<p>View these materials online</p>
</daodesc>
</dao>
</c03>
<c03>
<did>
<unittitle>Associate Degree, 1959-1960</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">8</container>
</did>
</c03>
<c03>
<did>
<unittitle>Atmospheric Sciences, 1972-1982</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">9-14</container>
</did>
</c03>
<c03>
<did>
<unittitle>Auditing Courses, 1972-1973</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">15</container>
</did>
</c03>
<c03>
<did>
<unittitle>Bacteriology Major, 1965-1966</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">16</container>
</did>
</c03>
<c03>
<did>
<unittitle>Baldwin, I. L., Meetings with Departments, 1957</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">17</container>
</did>
</c03>
<c03>
<did>
<unittitle>Benkley Property, 1974-1975</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">18</container>
</did>
</c03>
<c03>
<did>
<unittitle>Biennial Budget, 1975-1977</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">19-21</container>
</did>
</c03>
<c03>
<did>
<unittitle>Biological Aspects of Conservation Major, 1958</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">22</container>
</did>
</c03>
<c03>
<did>
<unittitle>Black Student Advising, 1980-1982</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">23</container>
</did>
</c03>
<c03>
<did>
<unittitle>Brochures, 1975-1987, 1994-1996, undated</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">24</container>
</did>
</c03>
<c03>
<did>
<unittitle>Budget, 1956-1962</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">25-26</container>
</did>
</c03>
<c03>
<did>
<unittitle>Budget Control, 1971-1974</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">27</container>
</did>
</c03>
<c03>
<did>
<unittitle>Budget Planning Document: 1993-1994, 1994-1995, and 1996-1997, 1993,
1995</unittitle>
<container type="box" label="Box">57</container>
<container type="folder" label="Folder">2-3</container>
</did>
</c03>
<c03>
<did>
<unittitle>Budget Planning Document: 1995-1996, 1994</unittitle>
<container type="box" label="Box">78</container>
<container type="folder" label="Folder">1</container>
</did>
</c03>
<c03>
<did>
<unittitle>Buildings and Grounds, 1959-1963</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">28</container>
</did>
</c03>
<c03>
<did>
<unittitle>Business and Liberal Arts Conference, 1983-1984</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">29</container>
</did>
</c03>
<c03>
<did>
<unittitle>Business-Economics Building, 1972-1974</unittitle>
<container type="box" label="Box">3</container>
<container type="folder" label="Folder">30</container>
</did>
</c03>
<c03>
<did>
<unittitle>Business Office, 1966-1968</unittitle>