-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path10945.xml
5251 lines (5251 loc) · 314 KB
/
10945.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.shively">beinecke.shively</recordid>
<otherrecordid localtype="BIB">14040493</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Charley Shively Papers </titleproper>
<titleproper localtype="filing">Shively (Charley) Papers</titleproper>
<author>by Beinecke staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>November 2019</date>
<num>GEN MSS 1546</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-90, 91 (Oversize), 92-94, 96, 98-102, 104-107, 109, 111-114</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 103 (Oversize), 108 (Oversize), 110 (Broadside)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="6">6</num> published digital objects.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:18:20-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:18</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/10945" level="collection">
<did>
<unittitle>Charley Shively papers</unittitle>
<unitid>GEN MSS 1546</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>97.28</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">111 boxes + 1 broadside</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1900">1900</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1942">1942</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname>
<part localtype="agent_person">Shively, Charley (1937-2017)</part>
</persname>
</origination>
</did>
<scopecontent id="aspace_b4a77e8c921e29ce2b8e6e7937094918">
<head>Content Description</head>
<p>The papers consist of writings, correspondence, research files, notebooks, printed material, photographs, family papers, and other papers documenting the life and work of Charley Shively. Writings, correspondence, and research files document both Shively's academic work as a historian and his work as a gay rights activist and publisher. Documentation of Shively's work as a publisher includes extensive materials related to the Boston-area gay newspaper Fag Rag, which Shively co-founded, including submissions, correspondence, and business records. Printed materials include many publications concerning the gay community and activism.</p>
</scopecontent>
<acqinfo id="aspace_7d58215539ca99fc5db97e6cce66e5ec">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Charley Shively on the Edwin J. Beinecke Book Fund, 2013.</p>
<p>July 2015 Acquisition: Purchased from Elysium Press on the Edwin J. Beinecke Book Fund, 2015.</p>
</acqinfo>
<prefercite id="aspace_ca87309d9bed1254884b94132ac1762a">
<head>Preferred Citation</head>
<p>Charley Shively Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<bioghist id="aspace_ce04d56974914a6abf8991f561613237">
<head>Charley Shively</head>
<p>Charley Shively (1937-2017) was an American historian, publisher, poet, and gay rights activist.</p>
</bioghist>
<arrangement id="aspace_a07ca6a20c038c2ed8adeffa2b331510">
<head>Arrangement</head>
<p>Organized into two groupings: July 2013 Acquisition, July 2015 Acquisition.</p>
</arrangement>
<accessrestrict id="aspace_2ccacb1bb890cf942236e1b2a893c56a">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
<p>Some materials in this collection were damaged by cat urine prior to receipt. Use caution when handling.</p>
<p>Boxes 94, 96, 113 (digital media): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
<p>Boxes 92-93, 112 (audiovisual material): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<processinfo id="aspace_88894672f1648118994945f5cac00710">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections as they are acquired, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing, including rehousing and minimal organization.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
<p>Materials previously in Boxes 95 and 97 were deaccessioned in 2019. Boxes 95 and 97 no longer exist.</p>
<p>Some materials in this collection were damaged by cat urine prior to receipt. All materials were rehoused into new boxes, as well as folders when appropriate.</p>
</processinfo>
<userestrict id="aspace_0eae99c7333e3894f3be0f8ca4faf597">
<head>Conditions Governing Use</head>
<p>The Charley Shively Papers is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<subject source="local">
<part localtype="topical">Gay activists</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2003004887"
source="lcsh">
<part localtype="topical">Gay men</part>
<part localtype="geographic">United States</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300028661" source="aat">
<part localtype="genre_form">Audiocassettes</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300374824" source="aat">
<part localtype="genre_form">Born digital</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<subject source="local">
<part localtype="topical">LGBTQ resource</part>
</subject>
<persname>
<part localtype="agent_person">Shively, Charley (1937-2017)</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2725851"
id="aspace_dbd5c26beddbfe5a439ae7e16caea9b7"
level="otherlevel"
otherlevel="accession">
<did>
<unittitle>July 2013 acquisition</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>85.08</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">96 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1900">1900</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1942">1942</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
</did>
<acqinfo id="aspace_5f3b5039c73e69e0f05f0c1165b51e57">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Charley Shively on the Edwin J. Beinecke Book Fund, 2013.</p>
</acqinfo>
<accessrestrict id="aspace_eaf33eb533d80b4a91ea34e54334d41c">
<head>Conditions Governing Access</head>
<p>Box 93: (audiovisual material): Restricted fragile. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/2914155"
id="aspace_34c710791ccc0fafd95e4de043e64404"
level="file">
<did>
<unittitle>Fag Rag correspondence and research files</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1988">1988</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344393 /locations/9"
containerid="39002104646626"
encodinganalog="Paige 15"
id="aspace_34c710791ccc0fafd95e4de043e64404_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2733587"
id="aspace_a7b3ed5f9397fa79ccc2a1847abcf7a8"
level="file">
<did>
<unittitle>Research and teaching files</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328354 /locations/9"
containerid="39002104646618"
encodinganalog="Paige 15"
id="aspace_a7b3ed5f9397fa79ccc2a1847abcf7a8_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_5100a2e6b78784db1d384f9d647be452">
<head>Scope and Contents</head>
<p>Magazine articles, teaching files, Haymarket research and other materials. Contains: <title>
<part>The Chicago Haymarket Riot: Anarchy on Trial</part>
</title>, edited by Bernard R. Kogan (1959); <title>
<part>Radical America</part>
</title>, Vol. 13, No. 2 (1979); <title>
<part>Trifles: A Play in One Act</part>
</title>, by Susan Glaspell (1951); <title>
<part>Crime and Criminals: Address to the Prisoners in the Cook County Jail</part>
</title>, by Clarence Darrow (1974); <title>
<part>Inherit The Wind</part>
</title>, by Jerome Lawrence and Robert E. Lee (1955); <title>
<part>Communities: Journal of Cooperation</part>
</title>, No. 66 (1985 Spring); <title>
<part>A Discussion Guide for Galileo, a Play</part>
</title>, by Bertolt Brecht (circa 1967); <title>
<part>The Communist Manifesto</part>
</title>, by Karl Marx and Friedrich Engels, edited by Samuel H. Beer (1955); <title>
<part>Marx for Beginners</part>
</title> (1976); <title>
<part>The Communist Manifesto</part>
</title>, by Karl Marx and Fredrich Engels (1948).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2733588"
id="aspace_726626d4af9f2ee157b36485857aa70f"
level="file">
<did>
<unittitle>Research and teaching files</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328355 /locations/9"
containerid="39002104646600"
encodinganalog="archive legal"
id="aspace_726626d4af9f2ee157b36485857aa70f_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
<scopecontent id="aspace_73918cd205cb457af9bde73163cd51b3">
<head>Scope and Contents</head>
<p>Magazine articles, teaching files, and other materials. Contains: <title>
<part>The Lordstown Struggle, and the Real Crisis in Production</part>
</title>, by Ken Weller (Solidarity Pamphlet 145 - circa 1972); <title>
<part>Solidarity</part>
</title>, magazine (1977 May 13).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2901824"
id="aspace_3a631cf2ec3b2639ca8e65394b60f038"
level="file">
<did>
<unittitle>Fag Rag related materials</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1974">1974</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/343617 /locations/9"
containerid="39002104646592"
encodinganalog="Paige 15"
id="aspace_3a631cf2ec3b2639ca8e65394b60f038_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_cb0204607e2688c26eaa8b1978e3904d">
<head>Scope and Contents</head>
<p>Also includes a family geneology and other Charley Shively personal papers.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2901828"
id="aspace_7b123c11612c0775ed485798d29d43f6"
level="file">
<did>
<unittitle>91 Poetry / Cuauhtémoc's writings</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1991">1991</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/335134 /locations/9"
containerid="39002104646766"
encodinganalog="archive half letter"
id="aspace_7b123c11612c0775ed485798d29d43f6_c1"
label="Mixed Materials"
localtype="box">94</container>
</did>
<accessrestrict id="aspace_0086e6339c475e215433f51d7a6a5a3e"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted Fragile Material. Reference copies of electronic files may be requested. Consult Access Services for further information.</p>
</accessrestrict>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2833336"
id="aspace_821e235bd5475bf0220b2ddb940722ce"
level="file">
<did>
<unittitle>Writings and research files</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971">1971</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/335135 /locations/9"
containerid="39002104646584"
encodinganalog="Paige 15"
id="aspace_821e235bd5475bf0220b2ddb940722ce_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2833337"
id="aspace_17f7b7113d6b0abdcf0b045d29f78a8c"
level="file">
<did>
<unittitle>Writings and research files</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1983">1983</fromdate>
<todate standarddate="1990">1990</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/335136 /locations/9"
containerid="39002104646576"
encodinganalog="archive legal"
id="aspace_17f7b7113d6b0abdcf0b045d29f78a8c_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2900062"
id="aspace_adbb6a6897a2e027e2e5f397ecc2fcd6"
level="file">
<did>
<unittitle>Research and other files</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/343542 /locations/9"
containerid="39002104646279"
encodinganalog="Paige 15"
id="aspace_adbb6a6897a2e027e2e5f397ecc2fcd6_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
<scopecontent id="aspace_e22dfa2bbb26e660f16996fa291435b2">
<head>Scope and Contents</head>
<p>Contains research files for a dissertation and other files relating to various organization memberships.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2733601"
id="aspace_0e4120dbb183436ede2f7f511f754fef"
level="file">
<did>
<unittitle>Research for Walt Whitman</unittitle>
<unitdatestructured altrender="circa 1970s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/328357 /locations/9"
containerid="39002104646568"
encodinganalog="Paige 15"
id="aspace_0e4120dbb183436ede2f7f511f754fef_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
<scopecontent id="aspace_9637e49a39910c6b3971d2b7ca2ac4ac">
<head>Scope and Contents</head>
<p>Photocopies of Whitman correspondence and other materials.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2784291"
id="aspace_e402191a77ad63f0bc9c0d70f4327cbb"
level="file">
<did>
<unittitle>Fag Rag material</unittitle>
<unitdatestructured altrender="circa 1970s-2000s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2000">2000</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/332202 /locations/9"
containerid="39002104646550"
encodinganalog="Paige 15"
id="aspace_e402191a77ad63f0bc9c0d70f4327cbb_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
<scopecontent id="aspace_3370f03fb821bb8e00c3e439d9e04b39">
<head>Scope and Contents</head>
<p>Contains material related to Fag Rag, specifically receipts for subscriptions, bills, general office correspondence, correspondence with Winston Leyland (publisher of Gay Sunshine and Gay Sunshine Press), and book material related to Braun-Brumfield Inc. Also contains: <title>
<part>Directory of Short-Run Book Printers</part>
</title>, by John Kremer (1985); <title>
<part>Boss 5</part>
</title> (1979), edited by Reginald Gay.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2784293"
id="aspace_c62f087bf568dc0661f0cbfa0f8da1fa"
level="file">
<did>
<unittitle>Fag Rag expenses</unittitle>
<unitdatestructured altrender="circa 1977-1979"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/332203 /locations/9"
containerid="39002104646543"
encodinganalog="archive half letter"
id="aspace_c62f087bf568dc0661f0cbfa0f8da1fa_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2899859"
id="aspace_fbe4d87e8360328f23acf3f945f7a0f2"
level="file">
<did>
<unittitle>Writings</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/343539 /locations/9"
containerid="39002104646287"
encodinganalog="Paige 15"
id="aspace_fbe4d87e8360328f23acf3f945f7a0f2_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
<scopecontent id="aspace_43f058415b842342813d586a7e0e6dd0">
<head>Scope and Contents</head>
<p>Original manuscripts, submitted to Fag Rag and other publications, on varying subjects relating to sexuality and revolution. Themes include group sex, public sex, matricide, incest, pederasty, beauty, love, and others.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2938735"
id="aspace_efd4481da2f175c05bfb467a7f86dfc8"
level="file">
<did>
<unittitle>Writings</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1990">1990</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347264 /locations/9"
containerid="39002104646295"
encodinganalog="Paige 15"
id="aspace_efd4481da2f175c05bfb467a7f86dfc8_c1"
label="Mixed Materials"
localtype="box">12</container>
</did>
<scopecontent id="aspace_a067445c5764a82ddc70b9dba9dd4049">
<head>Scope and Contents</head>
<p>Includes works on history and poetry. Also includes subscriber and publisher bookkeeping.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2777910"
id="aspace_cdb97c2e5cfd6c4f374ea7bb9f9d4afc"
level="file">
<did>
<unittitle>Notebooks</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1962">1962</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="2000">2000</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/331891 /locations/9"
containerid="39002104646303"
encodinganalog="Paige 15"
id="aspace_cdb97c2e5cfd6c4f374ea7bb9f9d4afc_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
<scopecontent id="aspace_2f1d0b90ecc5087efd0e58ca3e2a8b08">
<head>Scope and Contents</head>
<p>Contains travel notes and "card poems."</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2781396"
id="aspace_baf469523d9e71f8beb953955865a154"
level="file">
<did>
<unittitle>Side A - "Family History, Move to Las Vegas + Tricks" / Side B - "Trial FBI and Family History"</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Audiocassette</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>00:31:11</quantity>
<unittype>Duration (HH:MM:SS.mmm)</unittype>
</physdescstructured>
<unitdatestructured altrender="circa 1967-2002"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
<materialspec id="aspace_3a299fb016a0190852666d7d5b952e69">Audio is distorted. Hiss and hum are present in the audio. The program starts and ends abruptly.</materialspec>
<container altrender="/repositories/11/top_containers/332058 /locations/9"
containerid="39002104646741"
encodinganalog="Paige 15"
id="aspace_baf469523d9e71f8beb953955865a154_c1"
label="Mixed Materials"
localtype="box">92</container>
<container id="aspace_baf469523d9e71f8beb953955865a154_c2"
localtype="item_barcode"
parent="aspace_baf469523d9e71f8beb953955865a154_c1">39002140904781</container>
</did>
<accessrestrict id="aspace_94fbd58c80d4667bf768e7c9fd0aef59"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted Fragile Material. Reference copies of audiovisual material may be requested. Consult Access Services for further information.</p>
</accessrestrict>
</c>
<c altrender="/repositories/11/archival_objects/2781399"
id="aspace_16490deb1c560a83d2521500f1b85b12"
level="file">
<did>
<unittitle>Side 1 - "Repression" / Side 2 - "Sexual Repression"</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Audiocassette</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>01:03:49</quantity>
<unittype>Duration (HH:MM:SS.mmm)</unittype>
</physdescstructured>
<unitdatestructured altrender="1972 March 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1972-03-03">1972 March 3</datesingle>
</unitdatestructured>
<materialspec id="aspace_55034625dc8ae53bb99a2272a8347759">The program is distorted at times. Audio, at times, sounds hollow or unclear. Audio is unbalanced. Static and high background noise are present. Dropouts in the audio are present. There is an echo at times throughout the program. high frequency background noise is present in the last 42 minutes.</materialspec>
<container altrender="/repositories/11/top_containers/332058 /locations/9"
containerid="39002104646741"
encodinganalog="Paige 15"
id="aspace_16490deb1c560a83d2521500f1b85b12_c1"
label="Mixed Materials"
localtype="box">92</container>
<container id="aspace_16490deb1c560a83d2521500f1b85b12_c2"
localtype="item_barcode"
parent="aspace_16490deb1c560a83d2521500f1b85b12_c1">39002140904963</container>
</did>
<accessrestrict id="aspace_22456e5514d004a3e0f8c21fc39534b3"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted Fragile Material. Reference copies of audiovisual material may be requested. Consult Access Services for further information.</p>
</accessrestrict>
</c>
<c altrender="/repositories/11/archival_objects/2781473"
id="aspace_e1e500bf3ac184bb6e79efa2fdd6b462"
level="file">
<did>
<unittitle>Transparent Language - Mi hermana Antonia / Los Vikingos de las Antillas</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Audiocassette</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>01:13:49</quantity>
<unittype>Duration (HH:MM:SS.mmm)</unittype>
</physdescstructured>
<unitdatestructured altrender="circa 1980s" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980">circa 1980s</datesingle>
</unitdatestructured>
<materialspec id="aspace_8385e41400850fb7aa284bf5e9ea54eb">The program is distorted at times. Audio, at times, sounds hollow or unclear. Dropouts in the audio are present.</materialspec>
<container altrender="/repositories/11/top_containers/332058 /locations/9"
containerid="39002104646741"
encodinganalog="Paige 15"
id="aspace_e1e500bf3ac184bb6e79efa2fdd6b462_c1"
label="Mixed Materials"
localtype="box">92</container>
<container id="aspace_e1e500bf3ac184bb6e79efa2fdd6b462_c2"
localtype="item_barcode"
parent="aspace_e1e500bf3ac184bb6e79efa2fdd6b462_c1">39002140904955</container>
</did>
<accessrestrict id="aspace_f173df65494c8ec1d1299f61a4fee0c7"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted Fragile Material. Reference copies of audiovisual material may be requested. Consult Access Services for further information.</p>
</accessrestrict>
</c>
<c altrender="/repositories/11/archival_objects/2781474"
id="aspace_c1a6f630b564c6dfdd9cb9482ccf42d7"
level="file">
<did>
<unittitle>Pat Quill</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Audiocassette</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>00:45:56</quantity>
<unittype>Duration (HH:MM:SS.mmm)</unittype>
</physdescstructured>
<unitdatestructured altrender="circa 1980s" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980">circa 1980s</datesingle>
</unitdatestructured>
<materialspec id="aspace_7bad408e62cb35e2ed0facd74ce9369c">The program is distorted at times. Audio, at times, sounds hollow or unclear. High background noise and static are present. Dropouts in the audio are present.</materialspec>
<container altrender="/repositories/11/top_containers/332058 /locations/9"
containerid="39002104646741"
encodinganalog="Paige 15"
id="aspace_c1a6f630b564c6dfdd9cb9482ccf42d7_c1"
label="Mixed Materials"
localtype="box">92</container>
<container id="aspace_c1a6f630b564c6dfdd9cb9482ccf42d7_c2"
localtype="item_barcode"
parent="aspace_c1a6f630b564c6dfdd9cb9482ccf42d7_c1">39002140904948</container>
</did>
<accessrestrict id="aspace_0a162f03c3eaaee2b9d01fd8e0284e39"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted Fragile Material. Reference copies of audiovisual material may be requested. Consult Access Services for further information.</p>
</accessrestrict>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2777914"
id="aspace_c5df3f45c1733ad26c8a507c01633753"
level="file">
<did>
<unittitle>Appointment books</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/331892 /locations/9"
containerid="39002104646311"
encodinganalog="archive legal"
id="aspace_c5df3f45c1733ad26c8a507c01633753_c1"
label="Mixed Materials"
localtype="box">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2946993"
id="aspace_63def03387ea011b3d98eba87fd58b63"
level="file">
<did>
<unittitle>Material related to Charley Shively's tenure at Boston State College
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1995">1995</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347925 /locations/9"
containerid="39002104646329"
encodinganalog="Paige 15"
id="aspace_63def03387ea011b3d98eba87fd58b63_c1"
label="Mixed Materials"
localtype="box">15</container>
</did>
<scopecontent id="aspace_cbb07b7e3d6fecdadd038c552e699191">
<head>Scope and Contents</head>
<p>Includes a quantity of academic material, newspapers, offprints, correspondence, and photocopies.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2741249"
id="aspace_dc8ca8bd1b522b3e57c89bcbc0f20463"
level="file">
<did>
<unittitle>Gay studies and research files</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1975">1975</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/329100 /locations/9"
containerid="39002104646337"
encodinganalog="Paige 15"
id="aspace_dc8ca8bd1b522b3e57c89bcbc0f20463_c1"
label="Mixed Materials"
localtype="box">16</container>
</did>
<scopecontent id="aspace_9976c4f349bf649cc08bd93845dbfdc4">
<head>Scope and Contents</head>
<p>Contains <title>
<part>Stigma: Notes on the Management of Spoiled Identity</part>
</title>, by Erving Goffman (1963). Also includes materials related to business expences.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2741250"
id="aspace_d0ab5abdbb2ce5aec4db7a90eb31ce7a"
level="file">
<did>
<unittitle>Gay Studies and research files</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1975">1975</fromdate>
<todate standarddate="1985">1985</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/329101 /locations/9"
containerid="39002104646345"
encodinganalog="archive letter"
id="aspace_d0ab5abdbb2ce5aec4db7a90eb31ce7a_c1"
label="Mixed Materials"
localtype="box">17</container>
</did>
<scopecontent id="aspace_9b0e40eb8f4d9ef2c5f0fd209cefb9cb">
<head>Scope and Contents</head>
<p>Contains <title>
<part>The Massachusetts Teacher</part>
</title> (1980 December); <title>
<part>Information For the Parent of the Transexual and Children with Gender Identity Disturbances</part>
</title>, by the Erickson Educational Foundation (1971); <title>
<part>Legal Aspects of Transexualism and Information on Administrative Procedures</part>
</title>, by the E.E. Foundation (1972 April); <title>
<part>Religious Aspects of Transexualism</part>
</title>, by the E.E. Foundation (circa 1970s); <title>
<part>Young, Gay and Proud</part>
</title>, by the <title>
<part>Melbourne Gay Teachers and Student Group</part>
</title> (1978); <title>
<part>Sexual Minorities and Employments</part>
</title>, compiled by Ellen F. Ratner (1972 June).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2744246"
id="aspace_b02dd0d5c2aa8d212b405198c24b39c0"
level="file">
<did>
<unittitle>Harvard University and high school yearbooks</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1955">1955</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/330277 /locations/9"
containerid="39002104646352"
encodinganalog="Paige 15"
id="aspace_b02dd0d5c2aa8d212b405198c24b39c0_c1"
label="Mixed Materials"
localtype="box">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2914156"
id="aspace_769a91bb333ddeb1980bb5b025750df5"
level="file">
<did>
<unittitle>Manuscript writings, notebooks, including "card poems"</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344394 /locations/9"
containerid="39002104646535"
encodinganalog="Paige 15"
id="aspace_769a91bb333ddeb1980bb5b025750df5_c1"
label="Mixed Materials"
localtype="box">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2914157"
id="aspace_fa22c5d44a9d9f9160280cd6d740cf32"
level="file">
<did>
<unittitle>Manuscript writings, notebooks, including "card poems"</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/344395 /locations/9"
containerid="39002104646527"
encodinganalog="Paige 15"
id="aspace_fa22c5d44a9d9f9160280cd6d740cf32_c1"
label="Mixed Materials"
localtype="box">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2950006"
id="aspace_5ccbf20bf11e1045cb03f057f01c66d2"
level="file">
<did>
<unittitle>Microfilm</unittitle>
<unitdatestructured altrender="circa 1960s-1970s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/2950008"
id="aspace_5e40d06e0cf478a07b1a18d9a4f608ac"
level="file">
<did>
<unittitle>Unlabeled microfilm</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="materialtype">
<quantity>3</quantity>
<unittype>Reels</unittype>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/348165 /locations/9"
containerid="39002104646519"
encodinganalog="Paige 15"
id="aspace_5e40d06e0cf478a07b1a18d9a4f608ac_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2950010"
id="aspace_9009c599295835af13851d076f336dec"
level="file">
<did>
<unittitle>Josiah Warren</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="materialtype">
<quantity>3</quantity>
<unittype>Reels</unittype>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/348165 /locations/9"
containerid="39002104646519"
encodinganalog="Paige 15"
id="aspace_9009c599295835af13851d076f336dec_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2950013"
id="aspace_44054452954300f9a80845efc8fa49d6"
level="file">
<did>
<unittitle>Unlabeled microfilm</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="materialtype">
<quantity>3</quantity>
<unittype>Reels</unittype>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/348165 /locations/9"
containerid="39002104646519"
encodinganalog="Paige 15"
id="aspace_44054452954300f9a80845efc8fa49d6_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2950074"
id="aspace_5f06afaa0e0f2456617ef524bd7423d2"
level="file">
<did>
<unittitle>Historical research from periodicals</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="materialtype">
<quantity>3</quantity>
<unittype>Reels</unittype>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/348165 /locations/9"
containerid="39002104646519"
encodinganalog="Paige 15"
id="aspace_5f06afaa0e0f2456617ef524bd7423d2_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2950075"
id="aspace_64fa237d3a82e927061a54015eefeb4b"
level="file">
<did>
<unittitle>A.J. MacDonald, Lysander Spooner, and Johnston Dale Allen research</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="materialtype">
<quantity>3</quantity>
<unittype>Reels</unittype>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/348165 /locations/9"
containerid="39002104646519"
encodinganalog="Paige 15"
id="aspace_64fa237d3a82e927061a54015eefeb4b_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2938732"
id="aspace_fda2b0af6a17ebf8b7595dc92ec8eaf4"
level="file">
<did>
<unittitle>Fag Rag materials, with related and personal correspondence</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>