forked from pandamicro/Spidermonkey
-
Notifications
You must be signed in to change notification settings - Fork 28
/
AUTHORS
1071 lines (1069 loc) · 33.4 KB
/
AUTHORS
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
This is an (incomplete) list of people who have contributed to the
codebase which lives in this repository. If you make a contribution
here, you may add your name and, optionally, email address in the
appropriate place.
For a full list of the people who are credited with making a
contribution to Mozilla, see http://www.mozilla.org/credits/ .
Aaron Boodman <[email protected]>
Aaron Kaluszka <[email protected]>
Aaron Leventhal <[email protected]>
Aaron Nowack <[email protected]>
Aaron Reed <[email protected]>
Aaron Spangler <[email protected]>
Aaron Train <[email protected]>
Achim Hasenmueller <[email protected]>
ActiveState Tool Corp.
Adam Barth <[email protected]>
Adam Christian <[email protected]>
Adam Hauner
Adam Lock <[email protected]>
Adam L. Peller
Adam Souzis <[email protected]>
Aditya Rao <[email protected]>
Adobe Systems Incorporated
Adrian Havill <[email protected]>
Adrian Herscu <[email protected]>
Adrian Johnson <[email protected]>
Adrian Kalla <[email protected]>
Adrian Klein <[email protected]>
a-higuti
Aiko
Akhil Arora <[email protected]>
Akkana Peck <[email protected]>
Alden D'Souza <[email protected]>
Alec Flett <[email protected]>
Aleksey Chernoraenko <[email protected]>
Aleksey Nogin <[email protected]>
Aleks Totic <[email protected]>
Alexander Law <[email protected]>
Alexander Surkov <[email protected]>
Alexey Chernyak <[email protected]>
Alex Fritze <[email protected]>
Alex Miller <[email protected]>
Alex Musil
Alex Pakhotin <[email protected]>
Alex Russell
Alex Vincent <[email protected]>
Alfred Kayser <[email protected]>
Alfred Peng <[email protected]>
Ali Juma <[email protected]>
Allan Beaufour <[email protected]>
Allen Eubank <[email protected]>
Allison Naaktgeboren <[email protected]>
Alon Zakai <[email protected]>
Amir Szekely <[email protected]>
Anant Narayanan <[email protected]>
An-Cheng Huang <[email protected]>
Anders Hammarquist
Andras Timar
Andrea Canciani <[email protected]>
Andreas Gal <[email protected]>
Andreas M. Schneider <[email protected]>
Andreas Otte <[email protected]>
Andrei Saprykin
Andrei Volkov <[email protected]>
Andrew Drake <[email protected]>
Andrew Halberstadt <[email protected]>
Andrew Huntwork <[email protected]>
Andrew Schultz <[email protected]>
Andrew Shilliday <[email protected]>
Andrew Shultz
Andrew Smith
Andrew Sutherland <[email protected]>
Andrew Thompson
Andrew Zabolotny
Andrzej Skalski <[email protected]>
Annie Sullivan <[email protected]>
Anoop Saldanha <[email protected]>
antonglv
Antti Järvelin <[email protected]>
Arkady Blyakher <[email protected]>
Armen Zambrano Gasparnian <[email protected]>
Arno Renevier
Arpad Borsos <[email protected]>
Arron Mogge <[email protected]>
Arthur Wiebe <[email protected]>
Asaf Romano <[email protected]>
Asko Tontti <[email protected]>
Atul Apte <[email protected]>
Atul Varma <[email protected]>
Axel Hecht <[email protected]>
Aza Raskin <[email protected]>
Bart <[email protected]>
Bas Schouten <[email protected]>
Bastiaan Jacques <[email protected]>
Behdad Esfahbod <[email protected]>
Behnam Esfahbod <[email protected]>
Ben Basson <[email protected]>
Ben Bucksch <[email protected]>
Ben Combee <[email protected]>
Bencsath Boldizsar
Benedict Hsieh <[email protected]>
Ben Goodger <[email protected]>
Ben Hearsum <[email protected]>
Ben Hsieh <[email protected]>
Benjamin Frisch <[email protected]>
Benjamin Otte <[email protected]>
Benjamin Smedberg <[email protected]>
Benjamin Stover <[email protected]>
Ben Newman <[email protected]>
Benoit Girard <[email protected]>
Benoit Jacob <[email protected]>
Ben Turner <[email protected]>
Bertrand Le Roy
Biju
Bill Haneman ([email protected])
Bill Law <[email protected]>
Bill Worley
Biro Arpad
Bjarne Geir Herland <[email protected]>
Björn Jacke <[email protected]>
Blair McBride <[email protected]>
Blake Kaplan <[email protected]>
Blake Ross <[email protected]>
Blue Static
Bobby Holley <[email protected]>
Bob Clary <[email protected]>
Bob Lord <[email protected]>
Bob Miller <[email protected]>
Bob Moss <[email protected]>
Bob Relyea <[email protected]>
Bodo Moeller <[email protected]>
bogomip
Bolian Yin <[email protected]>
Boris Zbarsky <[email protected]>
Brad Lassey <[email protected]>
Bradley Baetz <[email protected]>
Brad Taylor <[email protected]>
Bram Moolenaar
Brandon Pung <[email protected]>
Brandon Sterne <[email protected]>
Brant Gurganus <[email protected]>
Braun <[email protected]>
Brendan Eich <[email protected]>
Brett Wilson <[email protected]>
Brian Birtles <[email protected]>
Brian Bober <[email protected]>
Brian Crowder <[email protected]>
Brian Hackett <[email protected]>
Brian Lu <[email protected]>
Brian Nesse <[email protected]>
Brian Nicholson <[email protected]>
Brian O'Keefe <[email protected]>
Brian R. Bondy <[email protected]>
Brian Ryner <[email protected]>
Brian Smith <[email protected]>
Brian Stell <[email protected]>
Brijesh Patel <[email protected]>
Brodie Thiesfield <[email protected]>
Bruce Hoult
Bruno Haible <[email protected]>
Bryant Chen
Calum Robinson <[email protected]>
CanadianGuy
Canonical Ltd
Caolan McNamara <[email protected]>
Carl D. Worth <[email protected]>
Carlo Alberto Ferraris <[email protected]>
Carsten Book
Catalin Patulea
Cavin Song <[email protected]>
Cedric Vivier <[email protected]>
Celso Aguiar <[email protected]>
Chak Nanga <[email protected]>
Chao-ying Fu <[email protected]>
Charles Manske <[email protected]>
Charles Verdon
Chase Phillips <[email protected]>
Chase Tingley <[email protected]>
Chenxia Liu <[email protected]>
Chip Clark <[email protected]>
Chookij Vanatham <[email protected]>
Chris AtLee <[email protected]>
Chris Beard <[email protected]>
Chris Coulson <[email protected]>
Chris Double <[email protected]>
Chris Evans
Chris Halls
Chris Jones <[email protected]>
Chris Leary <[email protected]>
Chris Lord <[email protected]>
Chris McAfee <[email protected]>
Chris Pearce <[email protected]>
Chris Saari <[email protected]>
Chris Seawood <[email protected]>
Christian Biesinger <[email protected]>
Christian Bodart <[email protected]>
Christian Schneider <[email protected]>
Christopher A. Aillon <[email protected]>
Christopher Blizzard <[email protected]>
Christopher Davis <[email protected]>
Christopher Nebergall <[email protected]>
Christopher Thomas <[email protected]>
Chris Torek <[email protected]>
Chris Waterson <[email protected]>
Chris Wilson <[email protected]>
Claudio Ciccani <[email protected]>
Clayton Williams <[email protected]>
Clint Talbert <[email protected]>
Colin Barrett <[email protected]>
Colin Blake <[email protected]>
Collabora Ltd
Collin Jackson <[email protected]>
Conrad Carlen <[email protected]>
Constantine A. Murenin <cnst+moz#bugmail.mojo.ru>
Craig Topper <[email protected]>
Crocodile Clips Ltd
Cryptography Research
CSIRO
Curtis Bartley <[email protected]>
Cyrus Omar
Cyrus Patel <[email protected]>
Dafydd Jones
Dainis Jonitis <[email protected]>
Daniel Aquino <[email protected]>
Daniel Bratell <[email protected]>
Daniel Brooks <[email protected]>
Daniel Glazman <[email protected]>
Daniel Holbert <[email protected]>
Daniel Kouril <[email protected]>
Daniel Kraft <[email protected]>
Daniel Krieg
Daniel Veditz <[email protected]>
Daniel Witte <[email protected]>
Dan Matejka <[email protected]>
Dan Mills <[email protected]>
Dan Mosedale <[email protected]>
Dan Rosen <[email protected]>
Dan Witte <[email protected]>
Dão Gottwald <[email protected]>
Darin Fisher <[email protected]>
Dave Camp <[email protected]>
Dave Herman <[email protected]>
Dave Mandelin <[email protected]>
Dave Reed
Dave Townsend <[email protected]>
David Anderson <[email protected]>
David Baron <[email protected]>
David Bienvenu <[email protected]>
David Bradley <[email protected]>
David Burns <[email protected]>
David Courtin <[email protected]>
David Dahl <[email protected]>
David Dick <[email protected]>
David Drinan <[email protected]>
David Einstein <[email protected]>
Davide Prina
David Finch
David Gardiner <[email protected]>
David Greenspan
David Haas <[email protected]>
David Hamp-Gonsalves
David Humphrey <[email protected]>
David Hyatt <[email protected]>
David James
David J. Fiddes <[email protected]>
David Andersson <[email protected]>
David P. Caldwell <[email protected]>
David Rajchenbach-Teller <[email protected]>
David Savage
David S. Miller <[email protected]>
David Woodhouse <[email protected]>
David Zbarsky <[email protected]>
Dean Tessman <[email protected]>
Denis Antrushin <[email protected]>
Denis Issoupov <[email protected]>
Dennis Handly
Derrick Rice <[email protected]>
diablohn
Diane Trout <[email protected]>
Dietrich Ayala <[email protected]>
Digital Creations 2, Inc
Disruptive Innovations
Don Bragg <[email protected]>
Don Brown
Don Cone <[email protected]>
Doodle <[email protected]>
Doron Rosenberg <[email protected]>
Dorus Peelen
Douglas Stebila <[email protected]>
Doug Sherk <[email protected]>
Doug Turner <[email protected]>
Doug Wright
Drew Willcoxon <[email protected]>
Dr Stephen Henson <[email protected]>
Dr Vipul Gupta <[email protected]>
Dvornik Laszlo
Ed Burns <[email protected]>
Edward Lee <[email protected]>
Egor Starkov <[email protected]>
Ehsan Akhgari <[email protected]>
Eitan Isaacson <[email protected]>
Eli Friedman <[email protected]>
Elika J. Etemad <[email protected]>
Emanuele Costa <[email protected]>
emk <[email protected]>
Emmanuel Pacaud <[email protected]>
Ere Maijala <[email protected]>
Eric Anholt <[email protected]>
Eric Butler <[email protected]>
Eric Hedekar <[email protected]>
Eric J. Burley <[email protected]>
Eric Promislow
Eric Vaughan <[email protected]>
Erik Fabert <[email protected]>
Erik van der Poel
Erik Vold <[email protected]>
Ervin Yan <[email protected]>
Erwan Loisant <[email protected]>
Esben Mose Hansen <[email protected]>
Ethan Hugg
Eugeniy Meshcheryakov <[email protected]>
Evan Yan <[email protected]>
Fabrice Desré <[email protected]>
Federico Mena-Quintero <[email protected]>
Felipe Gomes <[email protected]>
Felix Fung <[email protected]>
Feng Qian
Fernando Herrera <[email protected]>
Fernando Jimenez <[email protected]>
Flock Inc.
Florian Boesch <[email protected]>
Florian Hänel <[email protected]>
Florian Queze <[email protected]>
Florian Scholz <[email protected]>
France Telecom Research and Development
Franck
Frank Tang <[email protected]>
Frank Yan <[email protected]>
Franky Braem
Franz Sirl <[email protected]>
Frederic Plourde <[email protected]>
Frederic Wang <[email protected]>
Fredrik Holmqvist <[email protected]>
Fredrik Larsson <[email protected]>
Fritz Schneider <[email protected]>
Gagan Saksena <[email protected]>
Ming Gao <[email protected]>
Garrett Arch Blythe
Garrett Smith
Garth Smedley <[email protected]>
Gary Kwong
Gavin Sharp <[email protected]>
Gefferth Andras
Geoff Lankow <[email protected]>
George Kangas
George Wright <[email protected]>
Georgi Guninski <[email protected]>
Georg Maaß <[email protected]>
Gervase Markham <[email protected]>
Gian-Carlo Pascutto <[email protected]>
Gianluca Turconi
Gianugo Rabellino <[email protected]>
Gijs Kruitbosch <[email protected]>
Ginn Chen <[email protected]>
Giorgio Maone <[email protected]>
Girish Sharma <[email protected]>
Girts
Giscard Girard
Giuseppe Modugno
Glen Nakamura <[email protected]>
Glenn Randers-Pehrson <[email protected]>
Goldman Eleonora
Google Inc.
Gordon Sheridan <[email protected]>
Graeme McCutcheon <[email protected]>
Graydon Hoare <[email protected]>
Gregory Szorc <[email protected]>
Grig Gheorghiu <[email protected]>
Guillermo Robla Vicario <[email protected]>
Guoxin Fan <[email protected]>
Gus Verdun <[email protected]>
Haamed Gheibi <[email protected]>
Håkan Waara <[email protected]>
Halacsy Peter
Hanno Boeck <[email protected]>
Hans-Andreas Engel
Harri Pitkanen
Harshal Pradhan <[email protected]>
Heather Arthur <[email protected]>
Heikki Toivonen <[email protected]>
Hein Roehrig
Henrik Gemal <[email protected]>
Henrik Skupin <[email protected]>
Henri Sivonen <[email protected]>
Henry Cejtin
Henry Sobotka <[email protected]>
Heriot-Watt University
Hermann Schwab <[email protected]>
Hermecz Vajk
Hernan Rodriguez Colmeiro <[email protected]>.
Hewlett-Packard Company
Hiroshi Shimoda <[email protected]>
Hoa Nguyen <[email protected]>
Honza Bambas <[email protected]>
Howard Chu <[email protected]>
Hubbie Shaw
Hubert Figuière <[email protected]>
Ian Gilman <[email protected]>
Ian Hickson <[email protected]>
Ian McGreer <[email protected]>
Ian Melven <[email protected]>
Ian Oeschger
IBM Corporation
i-DNS.net International
Igor Bazarny <[email protected]>
Igor Bukanov <[email protected]>
Igor Tandetnik
Ilya Konstantinov <[email protected]>
Intel Corporation
Jaakko Kiviluoto <[email protected]>
Jacek Piskozub <[email protected]>
Jacob Bramley <[email protected]>
Jae-Seong Lee-Russo <[email protected]>
James Boston <[email protected]>
James Bunton <[email protected]>
James Justin Harrell
James L. Nance
James Ross <[email protected]>
James Willcox <[email protected]>
Jamie Zawinski <[email protected]>
Jan Bambas <[email protected]>
Jan Darmochwal
Jan de Mooij <[email protected]>
Jan Horak <[email protected]>
Jan-Klaas Kollhof
Jan Odvarko <[email protected]>
Jan Varga <[email protected]>
Jan Wrobel <[email protected]>
Jared Wein <[email protected]>
Jason Barnabe <[email protected]>
Jason Duell <[email protected]>
Jason Eager <[email protected]>
Jason Sachs <[email protected]>
Jason Kersey <[email protected]>
Jason Orendorff <[email protected]>
Jason Voll <[email protected]>
Javier Delgadillo <[email protected]>
Javier Pedemonte <[email protected]>
Jay Patel <[email protected]>
Jean-Francois Ducarroz <[email protected]>
Jean-Jacques Enser <[email protected]>
Jeff Gilbert <[email protected]>
Jeff Hammel <[email protected]>
Jeff Muizelaar <[email protected]>
Jeff Thompson
Jeff Walden <[email protected]>
Jens Bannmann <[email protected]>
Jens Hatlak <[email protected]>
Jeremias Bosch <[email protected]>
Jeremy D. Lea <[email protected]>
Jeroen Dobbelaere <[email protected]>
Jesper Kristensen <[email protected]>
Jesse Ruderman <[email protected]>
Jessica Blanco <[email protected]>
Jignesh Kakadiya <[email protected]>
Jim Blandy <[email protected]>
Jim Chen <[email protected]>
Jim Grandy
Jim Ley <[email protected]>
Jim Mathies <[email protected]>
Jim Nance <[email protected]>
Jim Roskind <[email protected]>
Joachim Kuebart
Joaquin Cuenca Abela
Joe Drew <[email protected]>
Joe Hewitt <[email protected]>
Joe Hughes <[email protected]>
Joel Maher <[email protected]>
Joe Walker <[email protected]>
Joey Armstrong <[email protected]>
Joey Minta <[email protected]>
Johan Charlez <[email protected]>
Johann Petrak <[email protected]>
Johnathan Nightingale <[email protected]>
John Bandhauer <[email protected]>
John B. Keiser
John C. Griggs <[email protected]>
John Daggett <[email protected]>
John Fairhurst <[email protected]>
John Ford <[email protected]>
John Gardiner Myers <[email protected]>
John Gaunt <[email protected]>
John Hanely
John Morkel <[email protected]>
John Morrison <[email protected]>
Johnny Stenback <[email protected]>
John Resig <[email protected]>
John Schneider
John Sun <[email protected]>
John Taylor <[email protected]>
John Zhang <[email protected]>
Jonas Jonsson <[email protected]>
Jonas Sicking <[email protected]>
Jonathan Granrose <[email protected]>
Jonathan Griffin <[email protected]>
Jonathan Hage <[email protected]>
Jonathan Kew <[email protected]>
Jonathan Protzenko <[email protected]>
Jonathan Watt <[email protected]>
Jonathan Wilson <[email protected]>
Jonathon Jongsma <[email protected]>
Jon Herron <[email protected]>
Jono DiCarlo <[email protected]>
Joonas Pihlaja <[email protected]>
Jorge Villalobos <[email protected]>
Jory A. Pratt <[email protected]>
Josh Aas <[email protected]>
Josh Lurz <[email protected]>
Josh Matthews <[email protected]>
Joshua M. <[email protected]>
Joshua Randall <[email protected]>
J. Paul Reed <[email protected]>
Juan Lang
Julian Seward <[email protected]>
Julian Viereck <[email protected]>
Julien Lafon <[email protected]>
Julien Lecomte
Jungshik Shin <[email protected]>
Justin Arthur <[email protected]>
Justin Bradford <[email protected]>
Justin Dolske <[email protected]>
Justin Lebar <[email protected]>
Kai Engert <[email protected]>
Kailas Patil <[email protected]>
Kan-Ru Chen <[email protected]>
Karl Tomlinson <[email protected]>
Karsten Sperling <[email protected]>
Kartikaya Gupta <[email protected]>
Kaspar Brand <[email protected]>
Kathleen Brade <[email protected]>
Katsuhiko Momoi
Keith Packard <[email protected]>
Keith Rarick <[email protected]>
Keith Schwarz <[email protected]>
Keith Visco <[email protected]>
Ken Key <[email protected]>
Kenneth Herron <[email protected]>
Kenny Heaton <[email protected]>
Kevin Gerich <[email protected]>
Kevin Hendricks <[email protected]>
Kevin McCluskey <[email protected]>
Kevin Puetz <[email protected]>
Kin Blas <[email protected]>
Kipp E.B. Hickman
Kishore Arepalli <[email protected]>
Konstantin Mirny
Korea Information Security Agency
Kris Maglione <[email protected]>
Kristian Høgsberg <[email protected]>
Kurt Lidl <[email protected]>
Kyle Huey <[email protected]>
Kyle Machulis <[email protected]>
Kyle Simpson <[email protected]>
Kyle Yuan <[email protected]>
Landry Breuil <[email protected]>
Lan Qiang <[email protected]>
Larry Fitzpatrick <[email protected]>
Lars Erdmann
Lars Knoll <[email protected]>
LastPass.com
László Jánszky
László Németh <[email protected]>
Laurent Jouanneau <[email protected]>
Lenka Fibikova <[email protected]>
Leon Sha <[email protected]>
Lev Serebryakov <[email protected]>
Le Zhang <[email protected]>
Liam Davis-Mead
Lidong <[email protected]>
Lina Kemmel <[email protected]>
Louie Zhao <[email protected]>
Lubos Ures
Lucas Rocha <[email protected]>
Luke Wagner <[email protected]>
Maha Abou El Rous <[email protected]>
Makoto Kato <[email protected]>
Malcolm Rowe <[email protected]>
Malcolm Smith <[email protected]>
Malini Das <[email protected]>
Manish Singh <[email protected]>
Marc Attinasi
Marc Bevand <[email protected]>
Marcin Lubonski
Marc Mulcahy <[email protected]>
Marco Bonardo <[email protected]>
Marco Castelluccio <[email protected]>
Marco Fabbri
Marco Pesenti Gritti <[email protected]>
Margaret Leibovic <[email protected]>
Marina Samuel <[email protected]>
Mark Banner <[email protected]>
Mark Capella <[email protected]>
Mark Cote <[email protected]>
Mark Finkle <[email protected]>
Mark Hammond <[email protected]>
Mark Mentovai <[email protected]>
Mark Pilgrim <[email protected]>
Mark Smith <[email protected]>
Mark Steele <[email protected]>
Markus G. Kuhn <[email protected]>
Markus Stange <[email protected]>
Martijn Pieters <[email protected]>
Martijn Wargers <[email protected]>
Martin Hassman <[email protected]>
Martin Honnen <[email protected]>
Martin McNickle <[email protected]>
Martin Schroeder <[email protected]>
Martin Stransky <[email protected]>
Martin v. Loewis <[email protected]>
Martin Zvieger <[email protected]>
Masakazu Takahashi
Masaki Katakai <[email protected]>
Masatoshi Kimura <[email protected]>
Masayuki Nakano <[email protected]>
Mathias Hasselmann <[email protected]>
Mathieu Fenniak
Mats Palmgren <[email protected]>
Matt Brubeck <[email protected]>
Matt Crocker <[email protected]>
Matt Fisher <[email protected]>
Matthew Gregan <[email protected]>
Matthew Noorenberghe <[email protected]>
Matt Woodrow <[email protected]>
Max Stepin <[email protected]>
Meena Vyas <[email protected]>
Mehdi Mulani <[email protected]>
Merle Sterling <[email protected]>
Michael Ash <[email protected]>
Michael Daumling <[email protected]>
Michael Emmel <[email protected]>
Michael Hanson <[email protected]>
Michael J. Fromberger <[email protected]>
Michael Johnston <[email protected]>
Michael Judge <[email protected]>
Michael Kohler <[email protected]>
Michael Kraft <[email protected]>
Michael Lipp
Michael Lowe <[email protected]>
Michael Martin
michaelp
Michael Ratcliffe <[email protected]>
Michael Roovers
Michael Ventnor <[email protected]>
Michael Wu <[email protected]>
Michael Yoshitaka Erlewine <[email protected]>
Michal Novotny <[email protected]>
Michiel van Leeuwen <[email protected]>
Mihai Șucan <[email protected]>
Miika Jarvinen <[email protected]>
Mikeal Rogers <[email protected]>
Mike Beltzner <[email protected]>
Mike Connor <[email protected]>
Mike Hommey <[email protected]>
Mike Kaplinskiy <[email protected]>
Mike Kaply
Mike Kowalski <[email protected]>
Mike Kristoffersen <[email protected]>
Mike McCabe <[email protected]>
Mike Pinkerton <[email protected]>
Mike Shaver <[email protected]>
Milen Nankov
Milind <[email protected]>
Mitchell Field <[email protected]>
Mitchell Stoltz <[email protected]>
Mitesh Shah <[email protected]>
M Joonas Pihlaja <[email protected]>
Mohammad R. Haghighat <[email protected]>
Mook <[email protected]>
Morten Nilsen <[email protected]>
Mounir Lamouri <[email protected]>
moz_bug_r_a4
Mozdev Group, Inc
Mozilla Foundation
Mozilla Japan
Mrinal Kant <[email protected]>
Ms2ger <[email protected]>
Murali S R <[email protected]>
Muzaffar Mahkamov <[email protected]>
Myk Melez <[email protected]>
Nagendra Modadugu <[email protected]>
Nagy Viktor
Naoki Hotta <[email protected]>
Nao Toyamo
Nate Nielsen <[email protected]>
Nattachai Ungsriwong <[email protected]>
Neil Deakin <[email protected]>
Neil Rashbrook <[email protected]>
Nelson Bolyard <[email protected]>
Neo Liu <[email protected]>
Netscape Communications Corporation
Nicholas Nethercote <[email protected]>
Nick Fitzgerald <[email protected]>
Nickolay Ponomarev <[email protected]>
Niels Provos <[email protected]>
Nikhil Marathe <[email protected]>
Nils Gura <[email protected]>
Nils Larsch <[email protected]>
Nils Maier <[email protected]>
Ningjie Chen <[email protected]>
Nino D'Aversa <[email protected]>
Nippon Telegraph and Telephone Corporation
Nochum Sossonko <[email protected]>
Nokia Corporation
Noll Janos
Norris Boyd <[email protected]>
Novell Corporation
NVIDIA Corporation
OEone Corporation
Oleg Romashin <[email protected]>
Oliver Hunt
Olivier Cahagne
Olivier Gerardin <[email protected]>
Olli Pettay <[email protected]>
Ondrej Brablc <[email protected]>
Oracle Corporation
Oscar Fogelberg <[email protected]>
Owen Taylor <[email protected]>
Øyvind Kolås <[email protected]>
Pamela Greene <[email protected]>
Panagiotis Astithas <[email protected]>
Paolo Amadini <http://www.amadzone.org/>
Patipat Susumpow <[email protected]>
Patrick Beard <[email protected]>
Patrick Fey <[email protected]>
Patrick McManus <[email protected]>
Patrick Walton <[email protected]>
Pattara Kiatisevi <[email protected]>
Paul Ashford <[email protected]>
Paul Biggar <[email protected]>
Paul Kocher
Paul Kurczaba
Paul O'Shannessy <[email protected]>
Paul Rouget <[email protected]>
Paul Sandoz <[email protected]>
Pavel Cvrcek
Pawel Chmielowski
PenPal
Pete Collins <[email protected]>
Peter Annema <[email protected]>
Peter Bajusz <[email protected]>
Peter Lubczynski <[email protected]>
Peter Naulls
Peter Parente <[email protected]>
Peter Seliger
Peter Van der Beken <[email protected]>
Peter van der Woude
Peter Weilbacher <[email protected]>
Pete Zha <[email protected]>
Petr Kostka <[email protected]>
Philipp Kewisch <[email protected]>
Philipp Vogt <[email protected]>
Philipp von Weitershausen <[email protected]>
Philip Taylor <[email protected]>
Phil Ringnalda
Phil Schwartau <[email protected]>
Pierre Chanial <[email protected]>
Pierre Phaneuf <[email protected]>
Pierre Tardy <[email protected]>
POTI Inc
Prabhat Hegde <[email protected]>
Pranav Ravichandran <[email protected]>
Prasad Sunkari <[email protected]>
Priit Laes
Proofpoint, Inc.
Q42 <http://www.q42.nl>
Radha Kulkarni <[email protected]>
Ramanathan Guha <[email protected]>
Ramiro Estrugo <[email protected]>
Randell Jesup
Randolph Chung <[email protected]>
Rangan Sen <[email protected]>
Raúl Porcel <[email protected]>
Raymond Lee <[email protected]>
Red Hat, Inc
Rene Engelhard
Rene Pronk <[email protected]>
Reto Laemmler
Ria Klaassen
Richard C. Swift <[email protected]>
Richard L. Walsh <[email protected]>
Richard Newman <[email protected]>
Richard Verhoeven <[email protected]>
Richard Walsh
Rich Dougherty
Rich Salz
Rich Walsh <[email protected]>
Rick Gessner <[email protected]>
R.J. Keller <[email protected]>
Rob Arnold <[email protected]>
Rob Campbell <[email protected]>
Robert Accettura <[email protected]>
Robert Churchill <[email protected]>
Robert Ginda <[email protected]>
Robert Kaiser <[email protected]>
Robert Longson <[email protected]>
Robert Miner <[email protected]>
Robert O'Callahan <[email protected]>
Roberto Estrada <[email protected]>
Robert Relyea <[email protected]>
Robert Sayre <[email protected]>
Robert Sesek <[email protected]>
Robert Strong <[email protected]>
Robin Lu <[email protected]>
Rob McCool
Rod Spears <[email protected]>
Roger B. Sidje <[email protected]>
Roland Mainz <[email protected]>
Roman Ivanov <[email protected]>
Ronny Perinke <[email protected]>
Roozbeh Pournader <[email protected]>
Roy Frostig <[email protected]>
Roy Yokoyama <[email protected]>
RSA Security, Inc
Russell King <[email protected]>
Rusty Lynch <[email protected]>
Ryan Cassin <[email protected]>
Ryan Flint <[email protected]>
Ryan Jones <[email protected]>
Ryan VanderMeulen <[email protected]>
Ryoichi Furukawa <[email protected]>
Samir Gehani <[email protected]>
Sammy Ford
Samphan Raruenrom
Samuel Sieb <[email protected]>
Sarlos Tamas
Scooter Morris <[email protected]>
Scott Collins <[email protected]>
Scott MacGregor <[email protected]>
Scott Putterman <[email protected]>
Sean Cotter <[email protected]>
Sean Dunn <[email protected]>
Sean Echevarria <[email protected]>
Sean McMurray
Sean Stangl <[email protected]>
Sebastian Andrzej Siewior <[email protected]>
Sebastian Kromp <[email protected]>
Seno Aiko <[email protected]>
Serge Gautherie <[email protected]>
Sergei Dolgov <[email protected]>
Sergey Novikov <[email protected]>
Seth Spitzer <[email protected]>
shadowpage
Shailendra N Jain<[email protected]>
Shaohua Wen
Shawn Gong <[email protected]>
Shawn Wilsher <[email protected]>
Sheueling Chang Shantz <[email protected]>,
Shi-Jun He
Shoji Matsumoto <[email protected]>
Shoshannah Forbes <[email protected]>
Shyjan Mahamud <[email protected]>
Shy Shalom <[email protected]>
Siarhei Siamashka <[email protected]>
Siddharth Agarwal <[email protected]>
Sid Stamm <[email protected]>
Silvia Zhao <[email protected]>
Silviu Trasca
Simeon Morrison <[email protected]>
Simmule Turner
Simon Brouwer
Simon Bünzli <[email protected]>
Simon Fraser <[email protected]>
Simon Montagu <[email protected]>
Simon Wilkinson <[email protected]>
simonzack
Sindre Dammann <[email protected]>
Sinker Li <[email protected]>
Sion Fraser <[email protected]>
Siraj Razick <[email protected]>
Sjoerd Visscher <[email protected]>
Slavomir Katuscak <[email protected]>
Soeren Munk Skroeder
Sonja Mirtitsch
Sonny Piers <[email protected]>
Søren Sandmann <[email protected]>
Spyros Livathinos <[email protected]>
Sriram Ramasubramanian <[email protected]>
Srirang G Doddihal <[email protected]>
Stanford University
Stan Shebs <[email protected]>
Stefan Borggraefe
Stefan Hundhammer <[email protected]>
Stefanik Gábor
Stefan Sitter <[email protected]>
Steffen Imhof <[email protected]>
Steffen Wilberg <[email protected]>
Stephen Blackheath <[email protected]>
Stephen Donner
Stephen Fung <[email protected]>
Stephen Horlander <[email protected]>
Stephen Lamm <[email protected]>
Steve Chapel <[email protected]>
Steve Clark <[email protected]>
Steve Dagley <[email protected]>
Steve Fink <[email protected]>
Steve Lamm <[email protected]>
Steve Meredith <[email protected]>
Steve Morse <[email protected]>
Steven Garrity <[email protected]>
Steven Michaud <[email protected]>
Steve Roussey
Steve Swanson <[email protected]>
Stuart Morgan <[email protected]>
Stuart Parmenter <[email protected]>
Sungjoon Steve Won <[email protected]>
Sun Microsystems, Inc.
Suresh Duddi <[email protected]>
Sylvain Pasche <[email protected]>
Takayuki Tei <[email protected]>
Takeshi Ichimaru <[email protected]>
Takuro Ashie <[email protected]>
Tanner M. Young <[email protected]>
Taras Glek <[email protected]>
Tatiana Meshkova <[email protected]>
Ted Mielczarek <[email protected]>
Tero Koskinen <[email protected]>
Terrence Cole <[email protected]>
Terry Hayes <[email protected]>
Teune van Steeg <[email protected]>
The Hewlett-Packard Company
The MITRE Corporation
The Nokia Corporation
Theppitak Karoonboonyanan <[email protected]>
The University of Queensland
Thiemo Seufer <[email protected]>
Thomas Blatter <[email protected]>
Thomas de Grenier de Latour <[email protected]>
Thomas K. Dyas <[email protected]>
Tim Copperfield <[email protected]>
timeless <[email protected]>
Tim Hill <[email protected]>
Tim Miller <[email protected]>
Timothy B. Terriberry <[email protected]>
Timothy Nikkel <[email protected]>
Timothy Wall <[email protected]>