-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpkmc_225_023.xml
1222 lines (1222 loc) · 48.7 KB
/
npkmc_225_023.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ead PUBLIC "+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival Description (EAD) Version 2002)//EN" "ead.dtd">
<ead xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:isbn:1-931666-22-9" xmlns:ns2="http://www.w3.org/1999/xlink" xsi:schemaLocation="urn:isbn:1-931666-22-9 https://www.loc.gov/ead/ead.xsd">
<!-- Header Portion of EAD -->
<eadheader langencoding="iso639-2b" scriptencoding="iso15924" repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601">
<eadid countrycode="US" mainagencycode="US-NPkMC" url="http://www.marist.edu">npkmc_225_023</eadid>
<filedesc>
<titlestmt>
<titleproper>John Tillman Collection</titleproper>
<author>Gianna D’Ambrosca<![CDATA[&]]> John Ansley, PhD, 2005; Finding Aid Encoded
by: Monish M. Singh, 2005; Finding Aid Encoding updated by: Connor Johnson,
2022</author>
</titlestmt>
<publicationstmt>
<publisher>Marist University Archives and Special Collections</publisher>
<address>
<addressline>3399 North Road<lb/>Poughkeepsie, NY 12601<lb/>Phone:
845-575-5217<lb/>Fax: 845-575-3150<lb/>Email:
[email protected]<lb/>Website:
https://archives.marist.edu/</addressline>
</address>
<date type="publication" normal="2010-11-19">November 19, 2010</date>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Kayla Michelle Benifield</creation>
<langusage>Finding aid written in<language langcode="eng" scriptcode="Latn">English</language></langusage>
<descrules><abbr>DACS</abbr>Describing Archives: A Content Standard. Chicago: Society of
American Archivists, 2013.</descrules>
</profiledesc>
<revisiondesc>
<list>
<item>Feburary 2022, EAD updated by Connor Johnson</item>
</list>
</revisiondesc>
</eadheader>
<!-- Archival Description portion of EAD -->
<archdesc level="collection">
<did>
<unittitle>John Tillman Collection</unittitle>
<unitid countrycode="US" repositorycode="US-NPkMC">NPkMC-225-022</unitid>
<unitdate type="inclusive" normal="1927/1936">1927-1936</unitdate>
<unitdate type="inclusive" normal="1957/1966">1957-1966</unitdate>
<physdesc>
<extent type="size">5 Linear Feet</extent>
</physdesc>
<repository>
<corpname>Marist University Archives and Special Collections</corpname>
</repository>
<origination label="creator">
<persname>John Tillman</persname>
</origination>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<abstract>John Tillman was a long-time reporter, anchor and announcer for WB 11 WPIX
News in New York from its start-up in 1948 until 1967. This collection contains records of news reports, original 16mm film cores, and
quarter inch audio news reels, all pertaining to the reporting and news casting of
John Tillman for WPIX New York through the years of 1948 to 1967.</abstract>
<physloc>Please contact the Marist University Archives and Special Collections for
information regarding use and access of this collection.</physloc>
</did>
<scopecontent>
<head>Collection Overview</head>
<p>This collection contains records of news reports, original 16mm film cores, and
quarter inch audio news reels, all pertaining to the reporting and news casting of
John Tillman for WPIX New York through the years of 1948 to 1967. The subject matter
contained in the film interviews is of metropolitan New York, including footage of
former NYC Mayor John Lindsay. Also contained in this collection, aside from the
WPIX news materials is record industry information collected by Tillman from the
1920s and 1930s.</p>
</scopecontent>
<acqinfo>
<head>Acquisitions Informantion</head>
<p>John Tillman donated this collection to Marist University in 1980.</p>
</acqinfo>
<bioghist encodinganalog="545">
<head>Biographical Note</head>
<p>John Tillman of Rivercross, Roosevelt Island, New York was a long-time reporter,
anchor and announcer for WB 11 WPIX News in New York from its start-up in 1948 until
1967. Prior to working in television news he had been a radio announcer and after
WPIX he was a spokesperson for The Port Authority of New York and New Jersey in
1977. Reports and interviews by John Tillman were part of a segment interchangeably
called ‘On-The-Spot/On-the-Scene Reports’ from 1957-1965. During his time at WPIX
Tillman’s reports covered subjects such as, the Metropolitan New York area and
issues of National and International significance. His interview subjects were from
the fields of politics, sports and entertainment. WPIX, channel 11’s newscasts cover
the tri-state New York metropolitan area. In 2006, the WB and UPN networks merged
into The CW Television Network and the WPIX newscast became CW11 News, in 2008 it
became PIX News. As of 2022, it is now WPIX news.</p>
</bioghist>
<accessrestrict>
<head>Restrictions to Access</head>
<p>There are no restrictions on this collection</p>
</accessrestrict>
<userestrict>
<head>Notice of Copyright</head>
<p>Individuals requesting reproductions expressly assume the responsibility for
compliance with all pertinent provisions of the Copyright Act, 17 U.S.C. ss101 et
seq. Patrons further agree to indemnify and hold harmless the Marist University
Archives and Special Collections and its staff in connection with any disputes
arising from the Copyright Act, over the reproduction of material at the request of
patrons. For more information please visit the following website:
http://www.loc.gov/copyright/title17/.</p>
</userestrict>
<prefercite>
<head>Preferred Citation</head>
<p>[Description of item, date, location of item in order of series, box number, folder
number ], in the John Tillman Collection, James A. Cannavino Library, Marist
College.</p>
</prefercite>
<arrangement>
<p>Collection is arranged into four series: 1) Time Tables of Reports and Interviews by John Tillman, 2) Original 16mm film (cores): WPIX, 3) Quarter Inch Audio News Reels, and 4) Record Industry Information</p>
</arrangement>
<dsc type="combined">
<c01 level="series">
<did>
<unitid>1</unitid>
<unittitle>1. Time Tables of Reports and Interviews by John Tillman</unittitle>
<unitdate type="inclusive" normal="1957/1965">1957-1965</unitdate>
<physdesc>
<extent type="folders">Folders: 1 - 68</extent>
<extent type="boxes">Boxes: 1 - 2</extent>
</physdesc>
</did>
<c02 level="file">
<did>
<container type="folder">1</container>
<unittitle>Details of the contribution of The John Tillman Collection to
Marist University and tape inventory (2 copies)</unittitle>
<unitdate label="Date">1986</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">2</container>
<unittitle>Interview subjects</unittitle>
<unitdate label="Date">July 1, 1957- December 31, 1957</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">3</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">May 1959</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">4</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">June 1959</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">5</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">July 1959</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">6</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">August 1959</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">7</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">September 1959</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">8</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">October 1959</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">9</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">November 1959</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">10</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">December 1959</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">11</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">January 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">12</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">February 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">13</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">March 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">14</container>
<unittitle>‘On-The-Spot Coverage’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">April 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">15</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">May 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">16</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">June 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">17</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">July 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">18</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">August 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">19</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">September 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">20</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">October 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">21</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">November 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">22</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">December 1960</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">23</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">January 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">24</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">February 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">25</container>
<unittitle>‘On-The-Spot/ On-The-Scene News Reporting’- Reports and
Interviews by John Tillman</unittitle>
<unitdate label="Date">March 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">26</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">April 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">27</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">May 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">28</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">June 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">29</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">August 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">30</container>
<unittitle>‘On-The-Scene News Reporting’- Reports and Interviews by John
Tillman</unittitle>
<unitdate label="Date">September 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">31</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">October 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">32</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">November 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">33</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">December 1961</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">34</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">January 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">35</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">February 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">36</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">March 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">37</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">April 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">38</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">May 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">39</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">June 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">40</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">July 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">41</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">September 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">42</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">October 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">43</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">November 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">44</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">December 1962</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">45</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">January 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">46</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">February 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">47</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">March 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">48</container>
<unittitle>‘On-The-Spot Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">April 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">49</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">May 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">50</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">June 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">51</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">July 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">52</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">August 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">53</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">September 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">54</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">October 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">55</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">November 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">56</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">December 1963</unitdate>
<container type="box">1</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">57</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">January 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">58</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">February 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">59</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">March 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">60</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">April 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">61</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">May 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">62</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">June 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">63</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">July 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">64</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">August 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">65</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">September 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">66</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">October 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">67</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">November 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">68</container>
<unittitle>‘On-The-Scene Reports’- Reports and Interviews by John Tillman</unittitle>
<unitdate label="Date">December 1965</unitdate>
<container type="box">2</container>
</did>
</c02>
</c01>
<c01 level="series">
<did>
<unitid>2</unitid>
<unittitle>2. Original 16mm film (cores): WPIX</unittitle>
<physdesc>
<extent type="folders">Folders: 1 - 20</extent>
<extent type="boxes">Box: 3</extent>
</physdesc>
</did>
<c02 level="file">
<did>
<container type="folder">1</container>
<unittitle>Robert Moses at Triboro 30th Anniversary</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">2</container>
<unittitle>Robert Moses at dedication Lehman 200</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">3</container>
<unittitle>Robert Moses on New Bruckner Expressway</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">4</container>
<unittitle>Robert Moses at NY World’s Fair with Indian Chief</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">5</container>
<unittitle>Fire Island Highway Controversy; Interviews with residents;
hearing, Robert Moses</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">6</container>
<unittitle>Protestors at City Hall against Robert Moses, Breezy Pt.
Development</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">7</container>
<unittitle>Politician interview re: opposition to Breezy Pt. development</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">8</container>
<unittitle>Rent control protestors, City Hall</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">9</container>
<unittitle>Mayor John Lindsay on housing renewal</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">10</container>
<unittitle>Mayor John Lindsay on Transit Strike</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">11</container>
<unittitle>Paul Screvane on mayor’s power</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">12</container>
<unittitle>Paul Screvane on L.I.E.</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">13</container>
<unittitle>Boat trip around NYC; traffic commissioner Barnes Interview</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">14</container>
<unittitle>Bill Haddad</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">15</container>
<unittitle>Bill Haddad on defective cars</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">16</container>
<unittitle>Paley Park</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">17</container>
<unittitle>Paley Park Interview</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">18</container>
<unittitle>Pushcarts Bleeker Street</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">19</container>
<unittitle>Archival R2 Head</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">20</container>
<unittitle>? sd. neg.</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">3</container>
</did>
</c02>
</c01>
<c01 level="series">
<did>
<unitid>3</unitid>
<unittitle>3. Quarter Inch Audio News Reels</unittitle>
<physdesc>
<extent type="folders">Folders: 1 - 30</extent>
<extent type="boxes">Boxes: 4 - 5</extent>
</physdesc>
</did>
<c02 level="file">
<did>
<container type="folder">1</container>
<unittitle>Reel-to-Reel (101-105)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">2</container>
<unittitle>Reel-to-Reel (1069-1075, 182)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">3</container>
<unittitle>Reel-to-Reel (896-904, 910)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">4</container>
<unittitle>Reel-to-Reel (686-695)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">5</container>
<unittitle>Reel-to-Reel (251-260)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">6</container>
<unittitle>Reel-to-Reel (363-370)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">7</container>
<unittitle>Reel-to Reel (371-378)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">8</container>
<unittitle>Reel-to-Reel (662-666, 668-670, 673-675)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">9</container>
<unittitle>Reel-to-Reel (106-110)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">10</container>
<unittitle>Information transcribed from the Reel-to-Reel:<lb/>1. R NY
<lb/>1. Around NY<lb/> 2. Book World<lb/>2. Thanksgiving<lb/>3. WRUL-
Earl Nightingale Promo’s<lb/>4. 8/4/64 Vietnam<lb/>5. 3/15/66 From the
Capital<lb/>6. 3/28/65 Voices in the Headline<lb/>7. 1/16/66 Voices in
the Headline<lb/>8. 8/12- 10/63<lb/>9. 4/13-5/15/ 62<lb/>10. #795
2/13/64 United Kingdom<lb/>11. #794 10/18/63 United Kingdom</unittitle>
<unitdate label="Date">1962-1966</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">11</container>
<unittitle>Reel-to-Reel (387-399)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">12</container>
<unittitle>Reel-to-Reel (751-759)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">13</container>
<unittitle>Reel-to-Reel (450, 651-655, 657-661)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">14</container>
<unittitle>Information transcribed from the Reel-to-Reel:<lb/>1.
Actualities 10/6-10/14/63<lb/>2. Voices in the headline 4/24/66<lb/>3.
Issues and Answers 5/15/66<lb/>4. Music<lb/>5. 1966 Mormon PT 1
<lb/>6. 12/8/66 Romney- Grand Ballroom WA, 71st Annual Congress<lb/>7.
Great Moments- 13 Days of valor (Hungary)<lb/>8. 8/28/63 Washington</unittitle>
<unitdate label="Date">1963-1966</unitdate>
<container type="box">4</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">15</container>
<unittitle>Reel-to-Reel (696-697, 761, 662, 763-764, 767-768, 771-772)</unittitle>
<unitdate label="Date">undated</unitdate>
<container type="box">5</container>
</did>
</c02>
<c02 level="file">
<did>
<container type="folder">16</container>