-
Notifications
You must be signed in to change notification settings - Fork 257
/
contributors.yaml
2264 lines (2264 loc) · 45.7 KB
/
contributors.yaml
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
---
Aaron Wells:
commits: 2
committer: 211
first_commit: 1364690412
openhub: https://openhub.net/p/koha/contributors/6618544853243
Abby Robertson:
commits: 3
committer: 280
first_commit: 1421848603
Adam Styles:
commits: 4
committer: 454
first_commit: 1647419450
openhub: https://openhub.net/p/koha/contributors/6620694488116
Adam Thick:
notes: 'Adam worked at Strategic Data, in Australia, one of the first Koha support companies outside of Katipo'
Adolfo Rodríguez:
commits: 6
committer: 469
first_commit: 1658150550
openhub: https://openhub.net/p/koha/contributors/6620694570390
Adrien Saurat:
commits: 61
committer: 166
first_commit: 1323195881
openhub: https://openhub.net/p/koha/contributors/6620692556767
Agustín Moyano:
commits: 178
committer: 385
first_commit: 1547209930
openhub: https://openhub.net/p/koha/contributors/6620693548317
Ahmed:
commits: 1
committer: 299
first_commit: 1445522767
Al Banks:
commits: 3
committer: 22
first_commit: 1049492353
Alan Millar:
commits: 12
committer: 12
first_commit: 1021704973
Albert Oller:
commits: 2
committer: 167
first_commit: 1323200536
Alberto Martinez:
commits: 1
committer: 379
first_commit: 1537980426
Aleisha Amohia:
commits: 552
committer: 244
first_commit: 1389735467
openhub: https://openhub.net/p/koha/contributors/6618545147599
Aleksa Vujicic:
commits: 4
committer: 180
first_commit: 1328115371
Alex Arnaud:
commits: 180
committer: 110
first_commit: 1270653762
openhub: https://openhub.net/p/koha/contributors/6620692373622
Alex Buckley:
commits: 136
committer: 335
first_commit: 1488563481
openhub: https://openhub.net/p/koha/contributors/6618545415940
Alex Sassmannshausen:
commits: 35
committer: 252
first_commit: 1394808198
openhub: https://openhub.net/p/koha/contributors/6620692818201
Alexander Cheeseman:
commits: 1
committer: 272
first_commit: 1418858076
openhub: https://openhub.net/p/koha/contributors/6620692924823
Alexandra Horsman:
commits: 2
committer: 239
first_commit: 1389717018
Alexandre Noel:
commits: 2
committer: 510
first_commit: 1719852954
Alexis Ripetti:
commits: 4
committer: 427
first_commit: 1601298459
openhub: https://openhub.net/p/koha/contributors/6620694255315
Aliki Pavlidou:
commits: 1
committer: 309
first_commit: 1465043758
openhub: https://openhub.net/p/koha/contributors/6620693061087
Allen Reinmeyer:
commits: 10
committer: 73
first_commit: 1224707706
openhub: https://openhub.net/p/koha/contributors/6620692172296
Ambrose Li:
commits: 455
committer: 20
first_commit: 1042943512
notes: Translation tool
openhub: https://openhub.net/p/koha/contributors/6618544832748
Amit Gupta:
commits: 65
committer: 112
first_commit: 1271416477
openhub: https://openhub.net/p/koha/contributors/6618544747433
Amy King:
commits: 10
committer: 433
first_commit: 1611240029
openhub: https://openhub.net/p/koha/contributors/6620694309862
Andreas Hedström Mace: {}
Andreas Jonsson:
commits: 32
committer: 352
first_commit: 1511716404
Andreas Roussos:
commits: 62
committer: 317
first_commit: 1472831458
openhub: https://openhub.net/p/koha/contributors/6620693085053
Andrei V. Toutoukine:
commits: 4
committer: 91
first_commit: 1242906545
openhub: https://openhub.net/p/koha/contributors/6620692233527
Andres Tarallo: {}
Andrew Arensburger:
commits: 163
committer: 15
first_commit: 1032654635
history_notes: ', with the neat C4::Context'
notes: the small and great C4::Context module
openhub: https://www.openhub.net/p/koha/contributors/6620692124662
Andrew Auld:
commits: 4
committer: 478
first_commit: 1669206547
openhub: https://openhub.net/p/koha/contributors/6620694635927
Andrew Chilton:
commits: 1
committer: 118
first_commit: 1279549747
Andrew Elwell:
commits: 12
committer: 78
first_commit: 1234473564
Andrew Fuerste-Henry:
commits: 48
committer: 415
first_commit: 1583141390
openhub: https://openhub.net/p/koha/contributors/6620694154529
Andrew Hooper:
notes: Andrew worked for an ISP in NZ and was part of a team who ported Koha to Windows NT in the early 2000s
Andrew Isherwood:
commits: 221
committer: 372
first_commit: 1523897974
openhub: https://openhub.net/p/koha/contributors/6620693091854
Andrew Lockett:
commits: 1
committer: 229
first_commit: 1382401886
openhub: https://openhub.net/p/koha/contributors/6620692799398
Andrew Moore:
commits: 136
committer: 56
first_commit: 1205851483
openhub: https://www.openhub.net/p/koha/contributors/6618544607803
Andrew Nugged:
commits: 32
committer: 417
first_commit: 1585129199
openhub: https://openhub.net/p/koha/contributors/6620692477427
Andrii Veremeienko:
commits: 1
committer: 470
first_commit: 1658167817
openhub: https://openhub.net/p/koha/contributors/6620694570392
Andy Boze: {}
Antoine Farnault:
commits: 244
committer: 45
first_commit: 1152020129
openhub: https://www.openhub.net/p/koha/contributors/6618544609865
Arnaud Laurin:
commits: 18
committer: 44
first_commit: 1148032374
Arslan Farooq:
commits: 1
committer: 304
first_commit: 1461930076
openhub: https://openhub.net/p/koha/contributors/6620693057881
Arthur Suzuki:
commits: 20
committer: 398
first_commit: 1555033837
openhub: https://openhub.net/p/koha/contributors/6620693970405
Artur Norrby:
commits: 1
committer: 524
first_commit: 1731577592
Attila Kinali:
commits: 1
committer: 285
first_commit: 1428515266
openhub: https://openhub.net/p/koha/contributors/6620692133459
Aude Charillon:
commits: 3
committer: 501
first_commit: 1701364255
Ava Li:
commits: 9
committer: 439
first_commit: 1611319610
openhub: https://openhub.net/p/koha/contributors/6620694310964
Axel Amghar:
commits: 1
committer: 485
first_commit: 1681497583
openhub: https://openhub.net/p/koha/contributors/6620694373980
Baptiste Wojtkowski:
commits: 28
committer: 338
first_commit: 1490209288
openhub: https://openhub.net/p/koha/contributors/6620693201547
Barry Cannon:
commits: 4
committer: 212
first_commit: 1366551694
openhub: https://openhub.net/p/koha/contributors/6620692700971
Bart Jorgensen:
commits: 8
committer: 178
first_commit: 1328026910
openhub: https://openhub.net/p/koha/contributors/6620692566407
Barton Chittenden:
commits: 28
committer: 288
first_commit: 1429715566
openhub: https://openhub.net/p/koha/contributors/6620692969032
Benedict P. Barszcz:
commits: 110
committer: 19
first_commit: 1041815959
Benjamin Rokseth:
commits: 13
committer: 274
first_commit: 1419810397
openhub: https://openhub.net/p/koha/contributors/6620692477997
Bernardo González Kriegel:
commits: 303
committer: 120
first_commit: 1287337626
openhub: https://www.openhub.net/p/koha/contributors/6618544839606
Bin Wen:
commits: 2
committer: 408
first_commit: 1572766492
openhub: https://openhub.net/p/koha/contributors/6620693319811
Björn Nylén:
commits: 15
committer: 397
first_commit: 1553332298
openhub: https://openhub.net/p/koha/contributors/6620693961368
Bo Gustavsson:
commits: 1
committer: 520
first_commit: 1729254366
Bob Birchall:
notes: Started Calyx Information Essentials in Australia to support Koha in 2004
Bonnie Crawford:
commits: 1
committer: 360
first_commit: 1513787650
openhub: https://openhub.net/p/koha/contributors/6620693295175
Bouzid Fergani:
commits: 11
committer: 305
first_commit: 1461932425
openhub: https://openhub.net/p/koha/contributors/6620693057882
Brandon Haveman:
commits: 3
committer: 282
first_commit: 1423512010
Brendan Gallagher:
commits: 78
committer: 83
first_commit: 1240089404
openhub: https://www.openhub.net/p/koha/contributors/6618544661344
Brendan Lawlor:
commits: 32
committer: 500
first_commit: 1700783542
Brendon Ford:
commits: 1
committer: 265
first_commit: 1407281786
Brett Wilkins:
commits: 1
committer: 159
first_commit: 1315341558
Brian Engard:
commits: 2
committer: 121
first_commit: 1288474349
Brian Harrington:
commits: 5
committer: 79
first_commit: 1236176902
Brian Norris:
commits: 2
committer: 262
first_commit: 1406644459
Briana Greally:
commits: 3
committer: 302
first_commit: 1453245009
Brice Sanchez:
commits: 7
committer: 130
first_commit: 1294854177
Brig C. McCoy:
notes: Helped compile the first Koha manual in 2002
Brooke Johnson:
notes: Created the first Newbie Guide
Bruno Toumi:
commits: 74
committer: 43
first_commit: 1147427151
CJ Lynce:
commits: 9
committer: 513
first_commit: 1723822428
Caitlin Goodger:
commits: 7
committer: 331
first_commit: 1484832978
Caroline Cyr La Rose:
commits: 147
committer: 377
first_commit: 1537056051
Catherine Ma:
commits: 6
committer: 434
first_commit: 1611240166
Chad Billman:
commits: 1
committer: 366
first_commit: 1518467937
Chad Roseburg:
commits: 0
Charles Farmer:
commits: 26
committer: 269
first_commit: 1409923290
Charlotte Cordwell:
commits: 12
committer: 362
first_commit: 1516387614
Chloe Alabaster:
commits: 12
committer: 301
first_commit: 1453244306
Chloe Zermatten:
commits: 1
committer: 518
first_commit: 1727860704
Chris Catalfo:
commits: 5
committer: 49
first_commit: 1191357512
Chris Cormack:
commits: 2534
committer: 1
first_commit: 940540422
openhub: https://www.openhub.net/p/koha/contributors/6618544609030
Chris Hall:
commits: 59
committer: 124
first_commit: 1289527356
Chris Kirby:
commits: 2
committer: 322
first_commit: 1481887900
Chris Nighswonger:
commits: 445
committer: 53
first_commit: 1194351863
openhub: https://www.openhub.net/p/koha/contributors/6618544615991
Chris Weeks:
commits: 1
committer: 355
first_commit: 1513692792
Christophe Croullebois:
commits: 32
committer: 126
first_commit: 1292417245
Christophe Torin:
commits: 2
committer: 457
first_commit: 1654536531
Christopher Brannon:
commits: 16
committer: 339
first_commit: 1490966642
Christopher Hyde:
commits: 4
committer: 85
first_commit: 1240518896
Cindy Murdock Ames:
commits: 4
committer: 109
first_commit: 1270653154
Claire Gravely:
commits: 13
committer: 307
first_commit: 1464951863
Claire Hernandez:
commits: 2
committer: 187
first_commit: 1340219266
Claire Stent:
commits: 1
committer: 235
first_commit: 1386260530
Claudia Forsman:
commits: 2
committer: 133
first_commit: 1295295026
Clay Fouts:
commits: 3
committer: 71
first_commit: 1221782533
Clemens Tubach:
commits: 1
committer: 483
first_commit: 1680189227
Colin Campbell:
commits: 415
committer: 89
first_commit: 1241180217
Connor Dewar:
commits: 4
committer: 172
first_commit: 1326810715
Connor Fraser:
commits: 1
committer: 216
first_commit: 1369752523
Corey Fuimaono:
commits: 3
committer: 203
first_commit: 1358465272
Cori Lynn Arnold:
commits: 7
committer: 380
first_commit: 1538589017
Cory Jaeger:
commits: 2
committer: 84
first_commit: 1240239495
D Ruth Bavousett:
commits: 55
committer: 77
first_commit: 1234209584
Dan Scott:
commits: 5
committer: 221
first_commit: 1377697768
Dani Elder:
commits: 1
committer: 324
first_commit: 1482492215
Daniel Banzli:
commits: 2
committer: 54
first_commit: 1198194063
Daniel Barker:
commits: 2
committer: 240
first_commit: 1389732091
Daniel Grobani:
commits: 1
committer: 122
first_commit: 1288474415
Daniel Holth:
notes: Fundamental in implementing LCCN support
Daniel Kahn Gillmor:
commits: 1
committer: 63
first_commit: 1213702001
Daniel Sweeney:
commits: 9
committer: 76
first_commit: 1232115760
Danny Bouman:
commits: 7
committer: 67
first_commit: 1217622547
Danyon Sewell:
commits: 5
committer: 465
first_commit: 1657304362
openhub: https://openhub.net/p/koha/contributors/6620694566727
Darrell Ulm:
commits: 11
committer: 57
first_commit: 1207251727
David Birmingham:
commits: 6
committer: 90
first_commit: 1241216307
David Bourgault:
commits: 23
committer: 348
first_commit: 1507302595
David Cook:
commits: 403
committer: 181
first_commit: 1331895126
David Goldfein:
commits: 1
committer: 86
first_commit: 1240598176
David Gustafsson:
commits: 87
committer: 337
first_commit: 1490204418
David Kuhn:
commits: 6
committer: 340
first_commit: 1491213512
David Nind:
commits: 59
committer: 403
first_commit: 1561019591
David Roberts:
commits: 27
committer: 222
first_commit: 1379697467
David Schmidt:
commits: 4
committer: 453
first_commit: 1646210866
David Schuster:
commits: 2
committer: 136
first_commit: 1296281924
David Strainchamps:
commits: 14
committer: 16
first_commit: 1034711621
DeAndre Carroll:
commits: 1
committer: 66
first_commit: 1215181349
Denys Konovalov:
commits: 1
committer: 509
first_commit: 1719489886
Didier Gautheron:
commits: 28
committer: 422
first_commit: 1588173534
Dimitris Antonakis:
commits: 2
committer: 310
first_commit: 1465580144
openhub: https://www.openhub.net/p/koha/contributors/6618545413846
Dimitris Kamenopoulos:
commits: 1
committer: 336
first_commit: 1488565987
Dobrica Pavlinušić:
commits: 92
committer: 132
first_commit: 1295250784
Dominic Pichette:
commits: 1
committer: 347
first_commit: 1505228929
Donna Bachowski: {}
Donovan Jones:
commits: 25
committer: 111
first_commit: 1270661227
Dorian Meid:
commits: 10
committer: 14
first_commit: 1032167426
notes: German translation
Doris Tam:
commits: 1
committer: 516
first_commit: 1726228465
Doug Dearden:
commits: 1
committer: 143
first_commit: 1301618294
Doug Kingston:
commits: 3
committer: 231
first_commit: 1385316741
Duncan Tyler:
commits: 15
committer: 169
first_commit: 1323952897
Ed Summers:
notes: Some code and Perl packages like MARC::Record
Ed Veal:
commits: 1
committer: 205
first_commit: 1359650663
Eden Bacani:
commits: 8
committer: 437
first_commit: 1611319601
Edmund Balnaves:
commits: 1
committer: 214
first_commit: 1367403398
Edward Allen:
commits: 1
committer: 128
first_commit: 1292699961
Eivin Giske Skaaren:
commits: 6
committer: 290
first_commit: 1434982109
Ella Wipatene:
commits: 5
committer: 438
first_commit: 1611319602
Elliott Davis:
commits: 18
committer: 149
first_commit: 1307056700
Emily Lamancusa:
commits: 81
committer: 487
first_commit: 1683901344
Emily-Rose Francoeur:
commits: 6
committer: 494
first_commit: 1696432107
Emma Heath:
commits: 1
committer: 243
first_commit: 1389734973
Emma Nakamura Smith:
commits: 4
committer: 330
first_commit: 1484829937
Emmanuele Somma:
commits: 1
committer: 275
first_commit: 1421163806
Emmi Takkinen:
commits: 91
committer: 405
first_commit: 1563191316
Ere Maijala:
commits: 82
committer: 342
first_commit: 1494250040
Eric Garcia:
commits: 16
committer: 508
first_commit: 1719481810
Eric Olsen:
commits: 3
committer: 119
first_commit: 1286366636
Eric Phetteplace:
commits: 11
committer: 311
first_commit: 1465580892
Eric Vantillard:
commits: 1
committer: 349
first_commit: 1508525901
Ernesto Silva: {}
Ethan Amohia:
commits: 4
committer: 388
first_commit: 1547691807
Eugene Jose Espinoza:
commits: 1
committer: 507
first_commit: 1719481809
Evan Giles:
commits: 2
committer: 466
first_commit: 1657304425
openhub: https://openhub.net/p/koha/contributors/6620692172137
Evonne Cheung:
commits: 2
committer: 261
first_commit: 1406644432
Ewa Gozd:
commits: 1
committer: 522
first_commit: 1731001778
Fabio Tiana:
notes: Participate in a Catalyst Academy session
Fabricio Molina:
commits: 2
committer: 497
first_commit: 1699023884
Father Vlasie:
commits: 1
committer: 373
first_commit: 1529684822
Fernando Canizo:
commits: 2
committer: 147
first_commit: 1305357548
Filip Vujičić:
commits: 1
committer: 463
first_commit: 1657303987
openhub: https://openhub.net/p/koha/contributors/6620694566725
Finlay Thompson:
commits: 118
committer: 8
first_commit: 1015967072
openhub: https://www.openhub.net/p/koha/contributors/6618544609107
Florent Mara:
commits: 1
committer: 315
first_commit: 1468591660
Florian Bischof:
notes: Drove the adoption of HTML::Template which was used in Koha for 10 years before switching to Template Toolkit
Florian Bontemps:
commits: 9
committer: 447
first_commit: 1636369904
Francesca Moore:
commits: 3
committer: 246
first_commit: 1389806700
Francesco Rivetti:
commits: 3
committer: 334
first_commit: 1488559826
Francisco M. Marzoa Alonso:
commits: 3
committer: 18
first_commit: 1038607327
Francois Charbonnier:
commits: 1
committer: 306
first_commit: 1462370617
Francois Marier:
commits: 5
committer: 151
first_commit: 1309834869
Frank Hansen:
commits: 4
committer: 472
first_commit: 1664802000
François Pichenot:
commits: 1
committer: 460
first_commit: 1656705081
Fred Pierre:
commits: 1
committer: 204
first_commit: 1358474020
Fridolin Somers:
commits: 834
committer: 148
first_commit: 1306357874
openhub: https://www.openhub.net/p/koha/contributors/6620692831733
Friedrich zur Hellen:
commits: 16
committer: 37
first_commit: 1117798691
Frère Sébastien Marie:
commits: 10
committer: 58
first_commit: 1209125499
Frédéric Demians:
commits: 317
committer: 51
first_commit: 1191652682
openhub: https://www.openhub.net/p/koha/contributors/6620692210484
Frédéric Durand:
commits: 3
committer: 144
first_commit: 1302074967
Frédérick Capovilla:
commits: 56
committer: 138
first_commit: 1296682360
Gab Hikaka:
commits: 1
committer: 228
first_commit: 1382401837
Gaetan Boisson:
commits: 8
committer: 182
first_commit: 1332253028
Galen Charlton:
commits: 1996
committer: 52
first_commit: 1192623007
openhub: https://www.openhub.net/p/koha/contributors/6618544614260
Garry Collum:
commits: 189
committer: 87
first_commit: 1241009257
Gavin McCullagh:
commits: 2
committer: 36
first_commit: 1117720067
Genevieve Plantin:
commits: 5
committer: 297
first_commit: 1442588211
George Veranis:
commits: 13
committer: 423
first_commit: 1588183120
Glen Stewart:
commits: 4
committer: 5
first_commit: 984438909
notes: First user of Koha outside of the Horowhenua Library Trust
Grace McKenzie:
commits: 5
committer: 328
first_commit: 1484827279
Grace Smyth:
commits: 7
committer: 361
first_commit: 1516385612
Greg Barniskis:
commits: 2
committer: 164
first_commit: 1318640424
Gus Ellerm:
commits: 14
committer: 303
first_commit: 1453335643
Gynn Lomax:
commits: 16
committer: 10
first_commit: 1018417627
Géraud Frappier:
commits: 3
committer: 477
first_commit: 1669145201
H. Passini:
commits: 7
committer: 47
first_commit: 1175010820
Hammat Wele:
commits: 44
committer: 480
first_commit: 1675431014
Hayley Pelham:
commits: 23
committer: 396
first_commit: 1551724985
Helene Hickey:
commits: 9
committer: 387
first_commit: 1547691807
Henri-Damien LAURENT:
commits: 765
committer: 17
first_commit: 1037209979
openhub: https://www.openhub.net/p/koha/contributors/6618544614275
Henry Bolshaw:
commits: 14
committer: 400
first_commit: 1558623387
Hinemoea Viault:
commits: 2
committer: 495
first_commit: 1697037183
Holger Meißner:
commits: 22
committer: 245
first_commit: 1389800036
Holly Cooper: {}
Hugh Davenport:
commits: 2
committer: 202
first_commit: 1358464694
Héctor Eduardo Castro Avalos:
commits: 65
committer: 271
first_commit: 1416150905
Ian Walls:
commits: 131
committer: 102
first_commit: 1261315708
Indranil Das Gupta:
commits: 19
committer: 289
first_commit: 1432647725
Irma Birchall:
notes: Started Calyx Information Essentials in Australia to support Koha in 2004
Isaac Brodsky:
commits: 1
committer: 250
first_commit: 1394634562
Isabel Grubi:
commits: 1
committer: 359
first_commit: 1513787650
Isobel Graham:
commits: 14
committer: 382
first_commit: 1540570366
Ivan Brown:
commits: 1
committer: 195
first_commit: 1350052306
Ivan Dziuba:
commits: 2
committer: 442
first_commit: 1624274853
Ivan Masár:
commits: 2
committer: 431
first_commit: 1604507555
Jacek Ablewicz:
commits: 47
committer: 236
first_commit: 1386959006
Jack Kelliher:
commits: 2
committer: 389
first_commit: 1547691808
Jacob O'Mara:
commits: 9
committer: 475
first_commit: 1669118451
Jake Deery:
commits: 18
committer: 455
first_commit: 1649082225
James O'Keeffe:
commits: 11
committer: 435
first_commit: 1611240876
James Winter:
commits: 3
committer: 81
first_commit: 1236357379
Jan Kissig:
commits: 18
committer: 481
first_commit: 1675776650
Jane Sandberg:
commits: 2
committer: 378
first_commit: 1537364738
Jane Wagner:
commits: 38
committer: 82
first_commit: 1240086358
openhub: https://www.openhub.net/accounts/janewagner
Janet McGowan:
commits: 1
committer: 268
first_commit: 1409764574
Janik Hilser:
commits: 1
committer: 502
first_commit: 1706278429
Janusz Kaczmarek:
commits: 100
committer: 141
first_commit: 1299916134
Jared Camins-Esakov:
commits: 1030
committer: 114
first_commit: 1272594743
openhub: https://www.openhub.net/p/koha/contributors/6620692376789
Jasmine Amohia:
commits: 14
committer: 391
first_commit: 1547691808
Jason Boyer:
commits: 1