-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathorganizations.xml
More file actions
executable file
·6281 lines (6192 loc) · 349 KB
/
organizations.xml
File metadata and controls
executable file
·6281 lines (6192 loc) · 349 KB
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="schemas/lglc.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="schemas/lglc.rng" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>>-->
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title/>
</titleStmt>
<publicationStmt>
<ab/>
</publicationStmt>
<sourceDesc>
<ab/>
</sourceDesc>
</fileDesc>
</teiHeader>
<text>
<body>
<listOrg>
<!-- check @corresp for places.xml -->
<org xml:id="ABC">
<!-- TW https://en.wikipedia.org/wiki/American_Broadcasting_Company -->
<orgName from="1943">American Broadcasting Company</orgName>
<placeName corresp="places.xml#USA"/>
</org>
<org xml:id="ABCB">
<orgName>ABC Bookworld</orgName>
<!-- <date from="2003"/> -->
<placeName corresp="places.xml#BC"/>
</org>
<org xml:id="AC">
<!-- n76.65 -->
<orgName from="1976-03">The Archives Collective</orgName>
<!-- <date from="1976-03"/> -->
<placeName corresp="places.xml#VAN"/>
<placeName corresp="places.xml#UBC"/>
</org>
<org xml:id="ACC">
<!-- taken from JB& http://www.anglican.ca/ -->
<!--JB& Before 1867, Anglicans were already practicing in Canada. The first Anglican to come to North America was John Cabot in 1497. He landed in Newfoundland. http://en.wikipedia.org/wiki/Anglican_Church_of_Canada#History -->
<orgName notAfter="1867">Anglican Church of Canada</orgName>
<!-- <date notAfter="1867"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="ACHD">
<!-- taken from JB& http://www.diohuron.org/ -->
<orgName from="1857">Huron Diocese Anglican Church of Canada</orgName>
<!-- <date from="1857"/> -->
<placeName corresp="places.xml#ON"/>
</org>
<org xml:id="ACSW">
<!-- http://www.thecanadianencyclopedia.ca/en/article/canadian-advisory-council-on-the-status-of-women/ -->
<orgName from="1973" to="1995-04-01">Advisory Council on the Status of Women</orgName>
<!-- <date from="1973" to="1995-04-01"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="ACT">
<!-- TW: nothing online except references to Don n72.55 -->
<orgName notAfter="1972">Association for Canadian Transsexuals</orgName>
<!-- <date notAfter="1972"/> -->
<placeName corresp="places.xml#CAN"/>
<placeName corresp="places.xml#CHATC"/>
</org>
<org xml:id="AFL">
<!-- taken from JB http://www.afl.org/about -->
<orgName from="1912">Alberta Federation of Labour</orgName>
<!-- <date from="1912"/> -->
<placeName corresp="places.xml#AB"/>
</org>
<org xml:id="AFS">
<!-- n72.30 TW -->
<orgName from="1972-02" to="1977-08-14">Atropos Friendship Society</orgName>
<orgName from="1977-08-14">Gay Community of Regina</orgName>
<!-- <date from="1972-02" notBefore="1977-09-15"/> -->
<placeName corresp="places.xml#REG"/>
<placeName corresp="places.xml#ODY"/>
</org>
<org xml:id="AGL">
<!-- SRS n78.138 -->
<orgName from="1978-03-20">The Association des gai(e)s des Laurentides
(AGL)</orgName>
<placeName corresp="places.xml#STJE"/>
</org>
<org xml:id="AGLP">
<!-- TW: taken from http://www.aglp.org
https://en.wikipedia.org/wiki/Association_of_Gay_and_Lesbian_Psychiatrists-->
<orgName from="1973-08-30">Association of Gay Psychologists later Association of
Gay and Lesbian Psychologists</orgName>
<!-- <date from="1973-08-30"/> -->
<placeName corresp="places.xml#USA"/>
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="AHCGBLC">
<!-- taken from JB n77.168-->
<orgName from="1977-06-03">The Ad Hoc Committee of Gays to Bring Light into the
Clarkeness</orgName>
<!-- <date from="1977-06-03"/> -->
<placeName corresp="places.xml#TOR"/>
<placeName corresp="places.xml#CIP"/>
</org>
<org xml:id="AHM">
<orgName from="1973-06">Association homophile de Montreal Gay Montreal
Association AHM GMA</orgName>
<!-- <date from="1973-06"/> -->
<placeName corresp="places.xml#MON"/>
<placeName corresp="places.xml#GCCM"/>
<placeName corresp="places.xml#AHMLM"/>
</org>
<org xml:id="AKF">
<!-- RS nothing out there n77.133-->
<orgName from="1977-04-23">The Alpha Kira Fraternity</orgName>
<!-- <date from="1977-04-23"/> -->
<placeName corresp="places.xml#MON"/>
</org>
<org xml:id="AMC">
<!-- SRS there is an amazons motorcycle club website but no idea if its the same one. shows up #n78.24-->
<orgName>Amazons Motorcycle Club</orgName>
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="AMET">
<!-- SRS n78.74 no other info -->
<orgName from="1978-02">Amethyst</orgName>
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="ANIK">
<orgName from="1973-02" notBefore="1975">ANIK</orgName>
<!-- <date from="1973-02" notBefore="1975"/> -->
<placeName corresp="places.xml#TOR"/>
<placeName corresp="places.xml#HTC"/>
</org>
<org xml:id="AOC">
<!-- TW: taken from http://www.antiochian.org -->
<!-- yes, year 70 AD. placeName should be Greece -->
<orgName from="0070">Antiochian Orthodox Church</orgName>
<!-- <date from="0070"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="APPLE">
<!-- RS http://gay.hfxns.org/APPLE -->
<!-- SRS proso source:http://gay.hfxns.org/AnneFulton(http://goo.gl/wfl0OH) -->
<orgName from="1976">Atlantic Provinces Political Lesbians for
Equality</orgName>
<!-- <date from="1976"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="APSSP">
<!-- SRS http://www.apssp.org/ -->
<orgName from="1975">Association of Professional Student Service
Personnel</orgName>
<placeName corresp="places.xml#ON"/>
</org>
<org xml:id="APSSPT">
<!-- SRS notAfter source: n78.103 notBefore source:https://www.tcdsb.org/FORSTAFF/CurrentCollectiveAgreements/Documents/APSSP%20Agreement%202009.pdf -->
<orgName notAfter="1978-02-21" notBefore="2012-08-31">Association of
Professional Student Service Personnel (Toronto chapter)</orgName>
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="ARC">
<!-- taken from JB& http://en.wikipedia.org/wiki/Arcadie -->
<orgName from="1950">Arcadie</orgName>
<!-- <date from="1950"/> -->
<placeName corresp="places.xml#PAR"/>
</org>
<org xml:id="ASA">
<!-- TW: taken from www.asanet.org/ -->
<orgName from="1905">American Sociological Association</orgName>
<!-- <date from="1905"/> -->
<placeName corresp="places.xml#WAS"/>
</org>
<org xml:id="ASK">
<orgName from="1964" to="1969">Association for Social Knowledge ASK</orgName>
<!-- <date from="1964" to="1969"/> -->
<placeName corresp="places.xml#VAN"/>
<placeName corresp="places.xml#UCH"/>
<placeName corresp="places.xml#ACC"/>
</org>
<org xml:id="AW">
<orgName from="1974-06">Amazon Workshop</orgName>
<!-- <date from="1974-06"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="B4">
<!-- See n74.15 https://en.wikipedia.org/wiki/Brunswick_Four-->
<orgName from="1974-01-05">Brunswick Four</orgName>
<!-- <date from="1974-01-05"/> -->
<placeName corresp="places.xml#TOR"/>
<placeName corresp="places.xml#BHT"/>
</org>
<org xml:id="BAT">
<!-- TW: no website n74.14-->
<orgName from="1974" to="1980">Backstreet Athletic Club</orgName>
<!-- <date from="1974" to="1980"/> -->
<placeName corresp="places.xml#THU"/>
</org>
<org xml:id="BBAMT">
<!-- http://www.bbbst.com/en/Home/aboutus/100years.aspx -->
<orgName from="1913">The Big Brothers Association of Metropolitan
Toronto</orgName>
<!-- <date from="1913"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="BBB">
<orgName from="1974" to="1974">Brown Breast Brigade</orgName>
<!-- <date from="1974" to="1974"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="BBBSC">
<!-- SRS https://en.wikipedia.org/wiki/Big_Brothers_Big_Sisters_of_Canada -->
<orgName from="1912">Big Brothers Big Sisters of Canada</orgName>
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="BBGV">
<!-- SRS http://www.bigbrothersvancouver.com/about-us/our-history/ -->
<orgName from="1978">Big Brothers of Greater Vancouver</orgName>
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="BCCI">
<!-- SRS n78.150 http://www.vancourier.com/entertainment/movies/backstage-past-porn-protest-on-granville-strip-1.613770 -->
<orgName notAfter="1978-05" notBefore="1981"/>
<placeName corresp="places.xml#BC"/>
</org>
<org xml:id="BCCLA">
<!-- TW: taken from
http://en.wikipedia.org/wiki/British_Columbia_Civil_Liberties_Association
-->
<orgName from="1962">B.C. Civil Liberties Association</orgName>
<!-- <date from="1962"/> -->
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="BCFL">
<!-- RS http://en.wikipedia.org/wiki/British_Columbia_Federation_of_Labour -->
<orgName from="1910">British Columbia Federation of Labour</orgName>
<!-- <date from="1910"/> -->
<placeName corresp="places.xml#BC"/>
</org>
<org xml:id="BCFW">
<!-- SRS http://www.memorybc.ca/british-columbia-federation-of-women-fonds-->
<orgName notAfter="1977" notBefore="1980">BC Federation of Women
(BCFW)</orgName>
<placeName corresp="places.xml#BC"/>
</org>
<org xml:id="BCGEU">
<!-- http://www.bcgeu.ca/news_centre_quick -->
<orgName from="1919">British Columbia Government Employees Union</orgName>
<!-- <date from="1919"/> -->
<placeName corresp="places.xml#BC"/>
</org>
<org xml:id="BCGLA">
<!-- taken from JB& http://gayvancouver.net/community-profile/bc-gay-and-lesbian-archives/ -->
<orgName from="1976">B.C. Gay and Lesbian Archives</orgName>
<!-- <date from="1976"/> -->
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="BCHRC">
<!-- RS http://en.wikipedia.org/wiki/Human_rights_in_Canada#History -->
<orgName from="1969" to="2003">British Columbia Human Rights Commission</orgName>
<!-- <date from="1969" to="2003"/> -->
<placeName corresp="places.xml#BC"/>
</org>
<org xml:id="BCMHR">
<!-- RS n77.199-->
<orgName notAfter="1977-07-13">B.C. Ministry of Human Resources</orgName>
<!-- <date notAfter="1977-07-13"/> -->
<placeName corresp="places.xml#BC"/>
</org>
<org xml:id="BMC">
<!-- RS http://queermusicheritage.com/olivia-bwmc.html -->
<orgName from="1973">Berkeley Music Collective</orgName>
<!-- <date from="1973"/> -->
<placeName corresp="places.xml#BERK"/>
</org>
<org xml:id="BOP">
<!-- RS http://vancouverartinthesixties.com/archive/54 -->
<orgName from="1962-09" to="1983">blewointmentpress</orgName>
<!-- <date from="1962-09" to="1983"/> -->
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="BP">
<!-- taken from JB& http://www.briarpress.org/9604 -->
<orgName from="1969">Brandstead Press</orgName>
<!-- <date from="1969"/> -->
<placeName corresp="places.xml#ON"/>
</org>
<org xml:id="BPFPF">
<!-- SRS n78.41 -->
<orgName from="1978-01-04">Body Politic Free the Press Fund</orgName>
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="BPP">
<orgName from="1966" to="1982">Black Panther Party</orgName>
<!-- https://en.wikipedia.org/wiki/Black_Panther_Party -->
<!-- <date from="1966" to="1982"/> -->
<placeName corresp="places.xml#USA"/>
</org>
<org xml:id="BRMC">
<orgName from="1971-01" notBefore="1973">Border Riders M.C.</orgName>
<!-- <date from="1971-01" notBefore="1973"/> -->
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="BSB">
<!-- TW no source -->
<orgName notAfter="1977">Belles Star Band</orgName>
<!-- <date notAfter="1977"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CAAB">
<!-- SRS n78.144 -->
<orgName from="1978-03-31">Coalition to Answer Anita Bryant (Winnipeg)</orgName>
<placeName corresp="places.xml#WIN"/>
</org>
<org xml:id="CAABL">
<!-- SRS n78.210 -->
<orgName from="1978-05-23">Coalition to Answer Anita Bryant (London,
ON)</orgName>
<placeName corresp="places.xml#LON"/>
</org>
<org xml:id="CACS">
<!-- taken from JB nothing online -->
<orgName notAfter="1977-03-16">Citizens Advisory Council of
Saskatchewan</orgName>
<!-- <date notAfter="1977-03-16"/> -->
<placeName corresp="places.xml#SK"/>
</org>
<org xml:id="CAH">
<orgName from="1973-06" notBefore="1975">Centre d'accueil homophile Gay
Community Centre</orgName>
<!-- <date from="1973-06" notBefore="1975"/> -->
<placeName corresp="places.xml#MON"/>
</org>
<org xml:id="CAHRL">
<!-- RS -->
<orgName from="1977-10">Citizens against Homosexual Rights Legislation</orgName>
<!-- <date from="1977-10"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CALGR">
<!-- SRS n78.142 -->
<orgName from="1978-03-28">Coalition for the Advancement of Lesbian and Gay
Rights (CALGR)</orgName>
<placeName corresp="places.xml#CAL"/>
</org>
<org xml:id="CAMP">
<!-- taken from JB& http://en.wikipedia.org/wiki/LGBT_rights_in_New_South_Wales -->
<orgName from="1970-09">Campaign against Moral Persecution CAMP</orgName>
<!-- <date from="1970-09"/> -->
<placeName corresp="places.xml#AUS"/>
</org>
<org xml:id="CANLC">
<!-- taken from JB http://www.canadianlabour.ca/ -->
<orgName from="1956">Canadian Labour Congress</orgName>
<!-- <date from="1956"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CARAL">
<!-- TW: taken from http://en.wikipedia.org/wiki/Canadian_Abortion_Rights_Action_League -->
<orgName from="1973-06-20" to="1980">Canadian Association for Repeal of the
Abortion Law CARAL</orgName>
<orgName from="1980" to="2004">Canadian Abortion Rights Action League CARAL
ACDA</orgName>
<!-- <date from="1974" to="2004"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CARIP">
<!-- TW: nothing online -->
<orgName from="1973">Canadians Against a Racist Immigration Policy</orgName>
<!-- <date from="1973"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CBA">
<!-- https://en.wikipedia.org/wiki/Canadian_Bar_Association -->
<orgName from="1896">Canadian Bar Association</orgName>
<!-- <date from="1896"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CBC">
<!-- TW: taken from http://www.cbc.ca -->
<orgName from="1952-09-06">Canadian Broadcasting Corporation</orgName>
<!-- <date from="1952-09-06"/> -->
<placeName corresp="places.xml#CAN"/>
<placeName corresp="places.xml#CBCO"/>
</org>
<org xml:id="CBET">
<!-- SRS https://en.wikipedia.org/wiki/CBET-DT -->
<orgName from="1954-09-16">CBET-DT</orgName>
<placeName corresp="places.xml#WIND"/>
</org>
<org xml:id="CBH">
<!-- RS -->
<orgName notAfter="1990">CBH Radio 102.7 FM</orgName>
<!-- <date notAfter="1990"/> -->
<placeName corresp="places.xml#HAL"/>
</org>
<org xml:id="CBK">
<!-- taken from JB& Nothing Online -->
<orgName from="1978-03-03">Congregation B'nai Kehillah</orgName>
<!-- <date from="1978-03-03"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CBWFT">
<!-- RS http://en.wikipedia.org/wiki/CBWFT-DT -->
<orgName from="1959-02-17">CBWFT-DT</orgName>
<!-- <date from="1959-02-17"/> -->
<placeName corresp="places.xml#WIN"/>
</org>
<org xml:id="CBWT">
<!-- RS http://en.wikipedia.org/wiki/CBWT-DT -->
<orgName from="1952-11">CBWT-DT</orgName>
<!-- <date from="1952-11"/> -->
<placeName corresp="places.xml#WIN"/>
</org>
<org xml:id="CCA">
<!-- taken from JB http://canadacouncil.ca/council/overview-of-the-canada-council -->
<orgName from="1957">Canada Council for the Arts</orgName>
<!-- <date from="1957"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CCOC">
<!-- TW: taken from http://www.councilofchurches.ca -->
<orgName from="1944">Canadian Council of Churches</orgName>
<!-- <date from="1944"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CCRH">
<orgName from="1965-05" to="1966-11">Canadian Council on Religion and the
Homosexual</orgName>
<!-- <date from="1965-05" to="1966-11"/> -->
<placeName corresp="places.xml#OTT"/>
</org>
<org xml:id="CDDW">
<orgName from="1975">Committee to Defend Doug Wilson</orgName>
<!-- n75.151 TW -->
<!-- <date from="1975"/> -->
<placeName corresp="places.xml#SAS"/>
<placeName corresp="places.xml#USASK"/>
</org>
<org xml:id="CDJD">
<!-- TW n75.28 -->
<orgName from="1975-02">Committee to Defend John Damien</orgName>
<!-- <date from="1975-02"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CF">
<!-- taken from nothing online -->
<orgName notAfter="1976">Common Front</orgName>
<!-- <date notAfter="1976"/> -->
<placeName corresp="places.xml#MON"/>
</org>
<org xml:id="CGAA">
<orgName from="1971-02" to="1973">Canadian Gay Activists Alliance CGAA</orgName>
<!-- <date from="1971-02" to="1973"/> -->
<placeName corresp="places.xml#VAN"/>
<placeName corresp="places.xml#CGAAO"/>
<placeName corresp="places.xml#GOR"/>
</org>
<org xml:id="CGRJR">
<orgName from="1975-03" to="1975-06">Committee of Gays for the Re-election of
John Richards</orgName>
<!-- <date from="1975-03" to="1975-06"/> -->
<placeName corresp="places.xml#SAS"/>
</org>
<org xml:id="CGRO">
<orgName from="1975-01">Coalition for Gay Rights in Ontario CGRO</orgName>
<!-- <date from="1975-01"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CGSL">
<!-- taken from JB http://outsporttoronto.org/organisations/cabbagetown-group-softball-league?page=5 -->
<orgName from="1975">Cabbagetown Professional League</orgName>
<!-- <date from="1975"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CGU">
<!-- SRS: n78.3 not sure if this should be a notafter 1979 tag for the date instead?-->
<orgName from="1978">Chatham Gay Unity</orgName>
<placeName corresp="places.xml#CK"/>
</org>
<org xml:id="CHAL">
<orgName from="1972-05" notBefore="1975">Centre humanitaire d'aide et de
liberation CHAL</orgName>
<!-- <date from="1972-05" notBefore="1975"/> -->
<placeName corresp="places.xml#QUE"/>
<placeName corresp="places.xml#CHALC"/>
<!-- SRS: changes locations jan 1978. see n78.34 -->
</org>
<org xml:id="CHAN">
<orgName from="1974-05" notBefore="1975">Community Homophile Association of
Newfoundland</orgName>
<!-- <date from="1974-05" notBefore="1975"/> -->
<placeName corresp="places.xml#STJ"/>
<placeName corresp="places.xml#CB"/>
</org>
<org xml:id="CHAR">
<!-- taken from JB& mentioned inhttp://www.ubcpress.ca/books/pdf/chapters/2009/TheCanadianWarOnQueers.pdf -->
<orgName from="1976-05-20" to="1976-10-30">The Comité homosexuel anti-repression
Gay Coalition against Repression CHAR GCAR</orgName>
<orgName from="1976-10-30">Association pour les droits des gai(e)s du Québec
ADGQ</orgName>
<orgName from="1979-04">L’association pour les droits de la communauté gaie du
Québec ADGQ</orgName>
<!-- <date from="1976-05-20" notBefore="1976-10"/> -->
<placeName corresp="places.xml#MON"/>
</org>
<org xml:id="CHATT">
<orgName from="1970-12">Community Homophile Association of Toronto
CHAT</orgName>
<!-- <date from="1970-12" notBefore="1975"/> -->
<!-- SRS proso sources: n72.46 n70.39 n72.98 n72.35 n72.101 n72.36 n73.87 -->
<placeName corresp="places.xml#TOR"/>
<placeName corresp="places.xml#HTC"/>
<placeName corresp="places.xml#CHATC"/>
<placeName corresp="places.xml#CHATO"/>
<placeName corresp="places.xml#CHATTO"/>
<placeName corresp="places.xml#CHATTO2"/>
</org>
<org xml:id="CHCH">
<!-- TW: taken from http://en.wikipedia.org/wiki/CHCH-DT -->
<orgName from="1954-06-07">CHCH-TV</orgName>
<!-- <date from="1954-06-07"/> -->
<placeName corresp="places.xml#HAM"/>
</org>
<org xml:id="CHEX">
<!-- RS http://en.wikipedia.org/wiki/CKRU-FM -->
<orgName from="1942">CHEX Radio</orgName>
<!-- <date from="1942"/> -->
<placeName corresp="places.xml#PET"/>
</org>
<org xml:id="CHF">
<!--TW Nothing out there -->
<orgName notAfter="1977-07-05">Chatsworth Foundation</orgName>
<!-- <date notAfter="1977-07-05"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CHR">
<!-- taken from http://www.btb.termiumplus.gc.ca/tpv2alpha/alpha-eng.html?lang=eng&i=1&index=alt&srchtxt=COUNCIL%20HOMOSEXUALITY%20RELIGION -->
<orgName from="1976">The Council on Homosexuality and Religion Conseil de l
Homosexualité et la Religion</orgName>
<!-- <date from="1976"/> -->
<placeName corresp="places.xml#WIN"/>
</org>
<org xml:id="CHRC">
<!-- RS n77.234-->
<orgName from="1978-01-01">Canadian Human Rights Commission</orgName>
<!-- <date from="1978-01-01"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CHUM">
<orgName from="1974-01" notBefore="1975">Centre homophile urbain de Montreal
CHUM</orgName>
<!-- <date from="1974-01" notBefore="1975"/> -->
<placeName corresp="places.xml#MON"/>
<placeName corresp="places.xml#CHUMC"/>
</org>
<org xml:id="CIHC">
<!-- SRS fixed dates and added source from LGLC appendix 1: https://tspace.library.utoronto.ca/bitstream/1807/4397/64/Donald%20W.%20McLeod,%20Lesbian%20and%20Gay%20Liberation%20in%20Canada.Appendix%201.pdf -->
<orgName from="1971-09" notBefore="1971-09">Homophile Information Media
HIM</orgName>
<orgName notAfter="1974-01" to="1974-01">Homophile Information Media of Canada
Centre d'information homophile du Canada Homophile Dating
Association</orgName>
<!-- <date from="1971"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CILQ">
<!-- RS http://en.wikipedia.org/wiki/CILQ-FM -->
<orgName from="1977-05-22">CILQ-FM Q107</orgName>
<!-- <date from="1977-05-22"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CIP">
<!-- TW https://en.wikipedia.org/wiki/Centre_for_Addiction_and_Mental_Health -->
<orgName from="1951" to="1998">Clarke Institute for Psychiatry</orgName>
<orgName from="1998">Centre for Addiction and Mental Health</orgName>
<!-- <date from="1951"/> -->
<placeName corresp="places.xml#TOR"/>
<placeName corresp="places.xml#CIP"/>
</org>
<org xml:id="CIS">
<!-- MS: counter activists see xml:id="n68.11" -->
<orgName from="1951">Canadian Intelligence Service</orgName>
<!-- <date from="1951"/> -->
<placeName corresp="places.xml#FLE"/>
</org>
<org xml:id="CITV">
<!-- RS CITY TV http://en.wikipedia.org/wiki/City_(TV_network)-->
<orgName from="1971-11-25">CITY-TV</orgName>
<!-- <date from="1971-11-25"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CJOH">
<!-- TW: taken from http://en.wikipedia.org/wiki/CJOH-DT -->
<orgName from="1961-03-12">CJOH Radio Station</orgName>
<!-- <date from="1961-03-12"/> -->
<placeName corresp="places.xml#OTT"/>
</org>
<org xml:id="CJON">
<!-- TW: taken from http://en.wikipedia.org/wiki/CJYQ -->
<orgName from="1950-10-25">CJON Radio</orgName>
<!-- <date from="1950-10-25"/> -->
<placeName corresp="places.xml#STJ"/>
</org>
<org xml:id="CJOR">
<!-- TW: taken from http://en.wikipedia.org/wiki/CKPK-FM -->
<orgName from="1923">CKPK FM aka CJOR FM</orgName>
<!-- <date from="1923"/> -->
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="CJUM">
<!-- SRS https://en.wikipedia.org/wiki/CJUM-FM -->
<orgName from="1975-09">CJUM-FM (UMFM)</orgName>
<placeName corresp="places.xml#WIN"/>
<placeName corresp="places.xml#UM"/>
</org>
<org xml:id="CKLW">
<!-- TW: taken from http://en.wikipedia.org/wiki/CKLW -->
<orgName from="1932-05-31">CKLW News AM</orgName>
<!-- <date from="1932-05-31"/> -->
<placeName corresp="places.xml#WIND"/>
</org>
<org xml:id="CKNW">
<!-- TW: taken from http://www.cknw.com -->
<orgName from="1944-08-15">CKNW AM 980</orgName>
<!-- <date from="1944-08-15"/> -->
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="CKWS">
<!-- taken from https://en.wikipedia.org/wiki/CKWS-FM -->
<orgName from="1942">CKWS Radio</orgName>
<!-- <date from="1942"/> -->
<placeName corresp="places.xml#KIN"/>
</org>
<org xml:id="CLC">
<!-- TW: taken from n74.74 -->
<orgName from="1974-03">Civil Liberties Committee</orgName>
<!-- <date from="1974-03"/> -->
<placeName corresp="places.xml#QUE"/>
</org>
<org xml:id="CLGA">
<!-- Canadian Lesbian and Gay Archives https://en.wikipedia.org/wiki/Canadian_Lesbian_and_Gay_Archives-->
<orgName from="1973-07" to="1975">Canadian Gay Liberation Movement
Archives</orgName>
<orgName from="1975" to="1993">The Canadian Gay Archives</orgName>
<orgName from="1993">Canadian Lesbian and Gay Archives</orgName>
<!-- <date from="1973-07"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CLIT">
<!-- TW: taken from http://www.feministezine.com/feminist/lesbian/1970s-Lesbian-Feminism.html -->
<orgName from="1974">Collective Lesbian International Terrors</orgName>
<!-- <date from="1974"/> -->
<placeName corresp="places.xml#NEW"/>
</org>
<org xml:id="CMFTG">
<orgName from="1974-10" notBefore="1975">Committee for Media Fairness to
Gays</orgName>
<!-- <date from="1974-10" notBefore="1975"/> -->
<!-- SRS proso sources: n74.182 -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CMHC">
<!-- CC: taken from http://www.schl.ca/en/corp/about/hi/index.cfm -->
<orgName from="1946-01-01" to="1975">Central Mortgage and Housing
Corporation</orgName>
<orgName from="1975">Canada Mortgage and Housing Corporation</orgName>
<!-- <date from="1946-01-01"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CNDH">
<orgName from="1975-07">National Gay Rights Coalition Coalition nationale pour
les droits des homosexuels NGRC CNDH</orgName>
<orgName from="1978">Canadian Lesbian and Gay Rights Coalition / Coalition
canadienne pour les droits des lesbiennes et des gais (CLGRC /
CCDLG)</orgName>
<!-- <date from="1975-07"/> -->
<!-- renamed the Canadian Lesbian and Gay Rights Coalition / Coalition canadienne pour les droits des lesbiennes et des gais (CLGRC / CCDLG) in 1978 -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="COHRL">
<!-- SRS see n78.37 -->
<orgName notAfter="1978-01">The Committee to Oppose Homosexual Rights
Legislation</orgName>
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="COJO">
<!-- taken from JB& http://www.montrealolympics.com/mg_legacy.php -->
<orgName from="1976">Comite Organisateur des Jeux Olympiques de Montreal
1976</orgName>
<!-- <date from="1976"/> -->
<placeName corresp="places.xml#MON"/>
</org>
<org xml:id="COMA">
<!-- RS -->
<orgName from="1977-10-31">Committee of the Accused</orgName>
<!-- <date from="1977-10-31"/> -->
<placeName corresp="places.xml#MON"/>
<placeName corresp="places.xml#TRX"/>
</org>
<org xml:id="CON">
<!-- TW: taken from http://www.conservative.ca -->
<orgName from="1854" to="1873">Liberal-Conservative Party</orgName>
<orgName from="1873" to="1942">Conservative Party of Canada</orgName>
<orgName from="1942" to="2003">Progressive Conservative party of
Canada</orgName>
<orgName from="2003">Conservative Party of Canada</orgName>
<!-- <date from="1854"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CONC">
<!-- SRS n78.180 -->
<orgName notAfter="1978-04-29">Concern</orgName>
<placeName corresp="places.xml#EDM"/>
</org>
<org xml:id="CP">
<!-- CV n70.16 -->
<orgName from="1970" to="1980">Catalyst Press</orgName>
<!-- <date from="1970" to="1980"/> -->
<placeName corresp="places.xml#SCA"/>
</org>
<org xml:id="CPC">
<!-- TW: taken from www.parti-communiste.ca/ -->
<orgName from="1921-05">Communist Party of Canada</orgName>
<!-- <date from="1921-05"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CPCH">
<!-- SRS http://www.calgaryunited.ca/main/ -->
<orgName notAfter="1978-04-21">Calgary Presbytery</orgName>
<placeName corresp="places.xml#CAL"/>
</org>
<org xml:id="CPPA">
<!-- SRS: seen n78.45; http://www.btb.termiumplus.gc.ca/tpv2alpha/alpha-eng.html?lang=eng&i=1&index=alt&srchtxt=CANADIAN%20PERIODICAL%20PUBLISHERS%20ASSOCIATION ; i can't find any info on dates of this org. it changed its name to CMPA canadian magazine publishers association, not sure when-->
<orgName notAfter="1978-01-07">Canadian Periodical Publishers'
Association</orgName>
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CRE">
<!-- TW: taken from
http://en.wikipedia.org/wiki/Ralliement_créditiste_du_éébec -->
<orgName from="1970">Créditiste</orgName>
<!-- <date from="1970"/> -->
<placeName corresp="places.xml#QC"/>
</org>
<org xml:id="CREA">
<!-- RS https://www.theinterim.com/2006/oct/06kencampbell.html -->
<orgName from="1961">Campbell-Reese Evangelical Association</orgName>
<!-- <date from="1961"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CRTC">
<!-- RS http://en.wikipedia.org/wiki/Canadian_Radio-television_and_Telecommunications_Commission -->
<orgName from="1968">Canadian Radio-Television and Telecommunications
Commission</orgName>
<!-- <date from="1968"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CSA">
<orgName from="1973">Central Student Association (University of
Guelph)</orgName>
<placeName corresp="places.xml#UGUE"/>
</org>
<org xml:id="CSH">
<orgName from="1964" to="1965-05">Committee on Social Hygiene</orgName>
<!-- <date from="1964" to="1965-05"/> -->
<placeName corresp="places.xml#STI"/>
</org>
<org xml:id="CSHL">
<orgName from="1967-03">Cornell Student Homophile League</orgName>
<!-- <date from="1967-03"/> -->
<placeName corresp="places.xml#NEW"/>
</org>
<org xml:id="CSL">
<!-- taken from JB http://www.stlukemississauga.ca/ no date in source-->
<orgName notAfter="1977-03-06">Church of St. Luke</orgName>
<!-- <date notAfter="1977-03-06"/> -->
<placeName corresp="places.xml#MIS"/>
</org>
<org xml:id="CTC">
<!-- taken from no source -->
<orgName notAfter="1976">Cabaret Theatre Company</orgName>
<!-- <date notAfter="1976"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CTV">
<!-- TW: taken from www.ctv.ca/ -->
<orgName from="1961-10-01">Canadian Television Network</orgName>
<!-- <date from="1961-10-01"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CUC">
<!-- TW: taken from http://cuc.ca -->
<orgName from="1961">Canadian Unitarian Council</orgName>
<!-- <date from="1961"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CUNTS">
<orgName from="1971-12">The Cunts offshoot of CHAT</orgName>
<!-- <date from="1971-12"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CUP">
<!-- TW https://en.wikipedia.org/wiki/Canadian_University_Press -->
<orgName from="1938">Canadian University Press CUP</orgName>
<!-- <date from="1938"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CUPE1230">
<!-- TW: taken from http://1230.cupe.ca -->
<orgName from="1969">Canadian Union of Public Employees 1230</orgName>
<!-- <date from="1969"/> -->
<placeName corresp="places.xml#TOR"/>
<placeName corresp="places.xml#UOFT"/>
</org>
<org xml:id="CUPE1582">
<!-- TW: taken from http://www.cupe.on.ca -->
<orgName from="1974">Canadian Union of Public Employees 1582</orgName>
<!-- <date from="1974"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="CUPE82">
<!-- http://cupe82.ca/who-we-are/ -->
<orgName from="1963-09-24">CUPE82</orgName>
<!-- <date from="1963-09-24"/> -->
<placeName corresp="places.xml#WIND"/>
</org>
<org xml:id="CUPW">
<!-- taken from http://www.cupw.ca/index.cfm/ci_id/1165/la_id/1.htm -->
<orgName from="1965">Canadian union of Postal workers</orgName>
<!-- <date from="1965"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="CUSA">
<!-- taken from JB http://cusaonline.ca/ no date-->
<orgName notAfter="1977">Carleton University Students' Association</orgName>
<!-- <date notAfter="1977"/> -->
<placeName corresp="places.xml#OTT"/>
<placeName corresp="places.xml#CU"/>
</org>
<org xml:id="CV">
<!-- TW: taken from http://en.wikipedia.org/wiki/Cablevision_(Canada) ; from
the wiki it seems like cablevision is french only-->
<orgName from="1957">Cablevision Channel 10</orgName>
<!-- <date from="1957"/> -->
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="CWMA">
<!-- TW: taken from
http://www.alternativearchive.org/archive-review/the-canadian-womens-movement-archives -->
<orgName from="1960">Canadian Women's Movement Archives</orgName>
<!-- <date from="1960"/> -->
<placeName corresp="places.xml#OTT"/>
</org>
<org xml:id="CWU">
<!-- SRS n78.123 -->
<orgName notAfter="1978-03">Concordia Women's Union</orgName>
<placeName corresp="places.xml#CONC"/>
</org>
<org xml:id="D">
<orgName from="1974-11" notBefore="1975">Dignity</orgName>
<!-- <date from="1974-11" notBefore="1975"/> -->
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="DBLD">
<!-- taken from JB http://en.wikipedia.org/wiki/Doubleday_%28publisher%29 -->
<orgName from="1897">Doubleday</orgName>
<!-- <date from="1897"/> -->
<placeName corresp="places.xml#NEW"/>
</org>
<org xml:id="DBLDC">
<!-- SRS https://en.wikipedia.org/wiki/Doubleday_Canada -->
<orgName from="1945">Doubleday Canada</orgName>
<placeName corresp="places.xml#CAN"/>
</org>
<org xml:id="DC">
<!-- no source -->
<orgName notAfter="1976-09-26">Dignity Calgary</orgName>
<!-- <date notAfter="1976-09-26"/> -->
<placeName corresp="places.xml#CAL"/>
</org>
<org xml:id="DEDM">
<!-- SRS n78.254 -->
<orgName from="1978-07-10">Dignity Edmonton</orgName>
<placeName corresp="places.xml#EDM"/>
</org>
<org xml:id="DCHOP">
<!-- RS http://en.wikipedia.org/wiki/Wolfenden_report -->
<orgName notAfter="1954-09-15">Departmental Committee on Homosexual Offences and
Prostitution</orgName>
<!-- <date notAfter="1954-09-15"/> -->
<!-- SRS proso source: n74.195 -->
<placeName corresp="places.xml#UK"/>
</org>
<org xml:id="DGLF">
<!-- taken from JB& Nothing online -->
<orgName notAfter="1976">Danish Gay Liberation Front</orgName>
<!-- <date notAfter="1976"/> -->
<placeName corresp="places.xml#DEN"/>
</org>
<org xml:id="DHAL">
<!-- SRS proso source:http://gay.hfxns.org/TommyBurns -->
<orgName>Dignity Halifax</orgName>
<placeName corresp="places.xml#HAL"/>
</org>
<org xml:id="DIG">
<!-- TW: taken from http://dignitycanada.org/toronto.html -->
<orgName from="1974">Dignity Toronto</orgName>
<!-- <date from="1974"/> -->
<placeName corresp="places.xml#TOR"/>
<placeName corresp="places.xml#DT"/>
</org>
<org xml:id="DIGW">
<!-- taken from JB& http://dignitycanada.org/winnipeg.html -->
<orgName from="1976-04-03">Dignity Winnipeg</orgName>
<!-- <date from="1976-04-03"/> -->
<placeName corresp="places.xml#WIN"/>
</org>
<org xml:id="DOB">
<!-- TW: taken from http://en.wikipedia.org/wiki/Daughters_of_Bilitis -->
<orgName from="1955" to="1970">Daughters of Bilitis</orgName>
<!-- <date from="1955" to="1970"/> -->
<placeName corresp="places.xml#SF"/>
</org>
<org xml:id="DOBNY">
<!-- TW -->
<orgName from="1955" to="1995">Daughters of Bilitis</orgName>
<placeName corresp="places.xml#NEW"/>
</org>
<org xml:id="DOTT">
<!-- taken from n77.101 -->
<orgName from="1977-03-18">Dignity Ottawa Dignité</orgName>
<!-- <date from="1977-03-18"/> -->
<placeName corresp="places.xml#OTT"/>
<placeName corresp="places.xml#CRC"/>
</org>
<org xml:id="DROPG">
<!-- taken from n77.158 -->
<orgName from="1977-05-27">Drop-in Gay</orgName>
<!-- <date from="1977-05-27"/> -->
<placeName corresp="places.xml#MON"/>
</org>
<org xml:id="DS">
<!-- TW: taken from
http://en.wikipedia.org/wiki/History_of_the_LGBT_community_in_Seattle#The_Dorian_Society
-->
<orgName from="1967">Dorian Society</orgName>
<!-- <date from="1967"/> -->
<placeName corresp="places.xml#SEA"/>
</org>
<org xml:id="DV">
<!-- SRS -->
<orgName notAfter="1978-10-21">Dignity Vancouver</orgName>
<placeName corresp="places.xml#VAN"/>
</org>
<org xml:id="DNY">
<!-- RS -->
<orgName>Dignity New York</orgName>
<placeName corresp="places.xml#NY"/>
</org>
<org xml:id="E">
<orgName from="1973" notBefore="1975">Egaylity, Loyola College</orgName>
<!-- <date from="1973" notBefore="1975"/> -->
<placeName corresp="places.xml#MON"/>
</org>
<org xml:id="EBS">
<!-- MS: counter activists see xml:id="n68.11" https://en.wikipedia.org/wiki/Edmund_Burke_Society https://en.wikipedia.org/wiki/Western_Guard_Party-->
<orgName from="1967" to="1972">Edmund Burke Society</orgName>
<orgName from="1972" notBefore="1979">Western Guard</orgName>
<!-- <date from="1967" to="1972"/> -->
<placeName corresp="places.xml#TOR"/>
</org>
<org xml:id="ECC">
<!-- RS http://en.wikipedia.org/wiki/Edmonton_City_Council#From_1892_until_1898 -->
<orgName from="1892">Edmonton City Council</orgName>
<!-- <date from="1892"/> -->
<placeName corresp="places.xml#EDM"/>
</org>
<org xml:id="ECGC">
<!-- taken from JB nothing online -->
<orgName notAfter="1977-06">Edmonton Community of Gay Christians</orgName>
<!-- <date notAfter="1977-06"/> -->
<placeName corresp="places.xml#EDM"/>
</org>
<org xml:id="ECHO">
<!--SRS n65.5 https://en.wikipedia.org/wiki/Eastern_Regional_Conference_of_Homophile_Organizations-->
<orgName from="1963">East Coast Homophile Organizations</orgName>
<placeName corresp="places.xml#USA"/>
</org>