comparison lisp/prim/about.el @ 16:0293115a14e9 r19-15b91

Import from CVS: tag r19-15b91
author cvs
date Mon, 13 Aug 2007 08:49:20 +0200
parents ac2d302a0011
children 4103f0995bd7
comparison
equal deleted inserted replaced
15:ad457d5f7d04 16:0293115a14e9
1 ;;; about.el --- the About The Authors page (shameless self promotion). 1 ;;; about.el --- the About The Authors page (shameless self promotion).
2 ;;; 2 ;;;
3 3
4 ;; Copyright (c) 1995, 1996 XEmacs Advocacy Organization. 4 ;; Copyright (c) 1995, 1996, 1997 XEmacs Advocacy Organization.
5 5
6 ;; This file is part of XEmacs. 6 ;; This file is part of XEmacs.
7 7
8 ;; XEmacs is free software; you can redistribute it and/or modify it 8 ;; XEmacs is free software; you can redistribute it and/or modify it
9 ;; under the terms of the GNU General Public License as published by 9 ;; under the terms of the GNU General Public License as published by
14 ;; WITHOUT ANY WARRANTY; without even the implied warranty of 14 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 ;; General Public License for more details. 16 ;; General Public License for more details.
17 17
18 ;; You should have received a copy of the GNU General Public License 18 ;; You should have received a copy of the GNU General Public License
19 ;; along with XEmacs; see the file COPYING. If not, write to the Free 19 ;; along with XEmacs; see the file COPYING. If not, write to the
20 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 20 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 ;; Boston, MA 02111-1307, USA.
21 22
22 ;;; Synched up with: Not in FSF. 23 ;;; Synched up with: Not in FSF.
23 24
24 ;;; This is kind of a kludge. We were going to use W3 to do this, but 25 ;;; This is kind of a kludge. We were going to use W3 to do this, but
25 ;;; it's too slow to load, and HTML gives you too little control over 26 ;;; it's too slow to load, and HTML gives you too little control over
34 ;;; Soft: FG 2.0, DigiPaint 3.0, pbmplus (dec 91), xv 3.0. 35 ;;; Soft: FG 2.0, DigiPaint 3.0, pbmplus (dec 91), xv 3.0.
35 ;;; Modified for 19.11 by Eduardo Pelegri-Llopart <pelegri@eng.sun.com> 36 ;;; Modified for 19.11 by Eduardo Pelegri-Llopart <pelegri@eng.sun.com>
36 ;;; and Chuck Thompson <cthomp@xemacs.org> 37 ;;; and Chuck Thompson <cthomp@xemacs.org>
37 ;;; More hacking for 19.12 by Chuck Thompson and Ben Wing. 38 ;;; More hacking for 19.12 by Chuck Thompson and Ben Wing.
38 ;;; 19.13 and 19.14 updating done by Chuck Thompson. 39 ;;; 19.13 and 19.14 updating done by Chuck Thompson.
40 ;;; 19.15 and 20.0 updating done by Steve Baur.
39 41
40 (require 'browse-url) 42 (require 'browse-url)
41 (defvar about-xref-map (let ((map (make-sparse-keymap))) 43 (defvar about-xref-map (let ((map (make-sparse-keymap)))
42 (define-key map 'button1 'about-xemacs-xref) 44 (define-key map 'button1 'about-xemacs-xref)
43 (define-key map 'button2 'about-xemacs-xref) 45 (define-key map 'button2 'about-xemacs-xref)
74 (set (make-local-variable 'tab-width) 8) 76 (set (make-local-variable 'tab-width) 8)
75 (setq buffer-read-only t) 77 (setq buffer-read-only t)
76 (view-mode nil 'kill-buffer) ;; assume the new view-less 78 (view-mode nil 'kill-buffer) ;; assume the new view-less
77 (let* ((buffer-read-only nil) 79 (let* ((buffer-read-only nil)
78 (emacs-short-version (concat emacs-major-version "." emacs-minor-version)) 80 (emacs-short-version (concat emacs-major-version "." emacs-minor-version))
79 (emacs-about-version (format "version %s; June 1996" emacs-short-version)) 81 (emacs-about-version (format "version %s; March 1997" emacs-short-version))
80 (indent-tabs-mode t) 82 (indent-tabs-mode t)
81 ) 83 )
82 (erase-buffer) 84 (erase-buffer)
83 (insert "\n") 85 (insert "\n")
84 (indent-to (startup-center-spaces xemacs-logo)) 86 (indent-to (startup-center-spaces xemacs-logo))
123 (due to firewalls) in order to work correctly.\n\n\t") 125 (due to firewalls) in order to work correctly.\n\n\t")
124 126
125 (insert "XEmacs is the result of the time and effort of many people. 127 (insert "XEmacs is the result of the time and effort of many people.
126 The developers responsible for the " emacs-short-version " release are: 128 The developers responsible for the " emacs-short-version " release are:
127 129
130 * ") (about-xref "Steve Baur" 'steve "Find out more about Steve Baur") (insert " <steve@altair.xemacs.org>
131 * ") (about-xref "Martin Buchholz" 'mrb "Find out more about Martin Buchholz") (insert " <mrb@eng.sun.com>
132
133 * ") (about-xref "And many other contributors..." 'others "Read about the legion of XEmacs hackers") (insert "
134
135 Chuck Thompson was Mr. XEmacs from 19.11 through 19.14. Ben Wing
136 was crucial to each of those releases.
137
128 * ") (about-xref "Chuck Thompson" 'cthomp "Find out more about Chuck Thompson") (insert " <cthomp@xemacs.org> 138 * ") (about-xref "Chuck Thompson" 'cthomp "Find out more about Chuck Thompson") (insert " <cthomp@xemacs.org>
129 * ") (about-xref "Ben Wing" 'wing "Find out more about Ben Wing") (insert " <wing@xemacs.org> 139 * ") (about-xref "Ben Wing" 'wing "Find out more about Ben Wing") (insert " <wing@xemacs.org>
130
131 * ") (about-xref "And many other contributors..." 'others "Read about the legion of XEmacs hackers") (insert "
132 140
133 Jamie Zawinski was Mr. Lucid Emacs from 19.0 through 19.10, 141 Jamie Zawinski was Mr. Lucid Emacs from 19.0 through 19.10,
134 the last release actually named Lucid Emacs. Richard Mlynarik 142 the last release actually named Lucid Emacs. Richard Mlynarik
135 was crucial to most of those releases. 143 was crucial to most of those releases.
136 144
146 (save-excursion 154 (save-excursion
147 (set-buffer (get-buffer-create "About XEmacs")) 155 (set-buffer (get-buffer-create "About XEmacs"))
148 (toggle-read-only 0) 156 (toggle-read-only 0)
149 157
150 (let ((rest (if who-to-load (list who-to-load) 158 (let ((rest (if who-to-load (list who-to-load)
151 '(cthomp wing stig jwz mly vladimir baw piper bw wmperry))) 159 '(steve mrb cthomp wing stig jwz mly vladimir baw piper bw wmperry)))
152 (got-error nil)) 160 (got-error nil))
153 (while rest 161 (while rest
154 (let* ((who (car rest)) 162 (let* ((who (car rest))
155 (who-xpm (expand-file-name 163 (who-xpm (expand-file-name
156 (concat (symbol-name who) 164 (concat (symbol-name who)
196 ;; HERE TO PLACE ADDITIONAL MUGSHOTS 204 ;; HERE TO PLACE ADDITIONAL MUGSHOTS
197 205
198 (goto-char (point-max)) 206 (goto-char (point-max))
199 (insert "\n ") 207 (insert "\n ")
200 208
201 (let ((rest '(cthomp wing stig linebreak jwz mly vladimir linebreak baw piper bw linebreak wmperry)) 209 (let ((rest '(steve mrb cthomp wing stig linebreak jwz mly vladimir linebreak baw piper bw linebreak wmperry))
202 (got-error nil)) 210 (got-error nil))
203 (while rest 211 (while rest
204 (if (eq (car rest) 'linebreak) 212 (if (eq (car rest) 'linebreak)
205 (insert "\n\n ") 213 (insert "\n\n ")
206 (let* ((who (car rest)) 214 (let* ((who (car rest))
277 ((eq xref 'baw) "About Barry Warsaw") 285 ((eq xref 'baw) "About Barry Warsaw")
278 ((eq xref 'wmperry) "About William Perry") 286 ((eq xref 'wmperry) "About William Perry")
279 ((eq xref 'bw) "About Bob Weiner") 287 ((eq xref 'bw) "About Bob Weiner")
280 ((eq xref 'piper) "About Andy Piper") 288 ((eq xref 'piper) "About Andy Piper")
281 ((eq xref 'stig) "About Jonathan Stigelman") 289 ((eq xref 'stig) "About Jonathan Stigelman")
290 ((eq xref 'steve) "About Steve Baur")
291 ((eq xref 'mrb) "About Martin Buchholz")
282 ((eq xref 'others) "About Everyone") 292 ((eq xref 'others) "About Everyone")
283 ((eq xref 'features) "New XEmacs Features") 293 ((eq xref 'features) "New XEmacs Features")
284 ((eq xref 'history) "XEmacs History") 294 ((eq xref 'history) "XEmacs History")
285 ))) 295 )))
286 (delete-other-windows) 296 (delete-other-windows)
511 (about-xref "http://www.netscape.com/people/jwz/" 'w3-jamie "Visit Jamie's WWW page") 521 (about-xref "http://www.netscape.com/people/jwz/" 'w3-jamie "Visit Jamie's WWW page")
512 (insert "\n\n\tClick ") 522 (insert "\n\n\tClick ")
513 (about-xref "here" prev-page "Return to previous page") 523 (about-xref "here" prev-page "Return to previous page")
514 (insert " to go back to the previous page.\n") 524 (insert " to go back to the previous page.\n")
515 ) 525 )
526 ((eq xref 'steve)
527 (about-face "Steve Baur" 'bold)
528 (insert " <steve@altair.xemacs.org>
529
530 Steve took over the maintenance of XEmacs in November of 1996
531 (it seemed like a good idea at the time ...). In real life he is a
532 network administrator and Unix systems programmer for Miranova
533 Systems, Inc.
534
535 Steve's main contributions to XEmacs have been reviving the FAQ,
536 testing and integrating patches, tracking down and fixing bugs, and
537 answering hundreds of questions on Usenet.")
538
539 (insert "\n\n\tClick ")
540 (about-xref "here" prev-page "Return to previous page")
541 (insert " to go back to the previous page.\n")
542 )
543 ((eq xref 'mrb)
544 (about-face "Martin Buchholz" 'bold)
545 (insert " <mrb@eng.sun.com>
546
547 Martin Buchholz <Martin.Buchholz@sun.com>
548 Technical lead for XEmacs at DevPro (formerly SunPro), a
549 division of Sun Microsystems. Martin used to do XEmacs as a
550 `hobby' while at IBM, and was crazy enough to try to do it
551 for a living at Sun. Martin is currently working mostly on
552 Internationalization.")
553
554 (insert "\n\n\tClick ")
555 (about-xref "here" prev-page "Return to previous page")
556 (insert " to go back to the previous page.\n")
557 )
516 ((eq xref 'cthomp) 558 ((eq xref 'cthomp)
517 (about-face "Chuck Thompson" 'bold) 559 (about-face "Chuck Thompson" 'bold)
518 (insert " <cthomp@xemacs.org> 560 (insert " <cthomp@xemacs.org>
519 561
520 Chuck, through being in the wrong place at the right time, has 562 Chuck, through being in the wrong place at the right time, has
623 (insert " to go back to the previous page.\n") 665 (insert " to go back to the previous page.\n")
624 ) 666 )
625 667
626 ((eq xref 'bw) 668 ((eq xref 'bw)
627 (about-face "Bob Weiner" 'bold) 669 (about-face "Bob Weiner" 'bold)
628 (insert " <weiner@mot.com> 670 (insert " <weiner@infodock.com>
629 671
630 Author of the Hyperbole everyday information management 672 Author of the Hyperbole everyday information management
631 hypertext system and the OO-Browser multi-language code 673 hypertext system and the OO-Browser multi-language code
632 browser. He also designed the InfoDock integrated tool 674 browser. He also designed the InfoDock integrated tool
633 framework for software engineers. It runs atop XEmacs and is 675 framework for software engineers. It runs atop XEmacs and is
634 available from \"/anonymous@ftp.xemacs.org:pub/infodock\". 676 available from his firm, InfoDock Associates, which offers custom
677 development and support packages for corporate users of XEmacs,
678 GNU Emacs and InfoDock. See \"http://www.infodock.com>\".
635 His interests include user interfaces, information management, 679 His interests include user interfaces, information management,
636 CASE tools, communications and enterprise integration.") 680 CASE tools, communications and enterprise integration.")
637 681
638 (insert "\n\n\tClick ") 682 (insert "\n\n\tClick ")
639 (about-xref "here" prev-page "Return to previous page") 683 (about-xref "here" prev-page "Return to previous page")
673 717
674 ((eq xref 'wmperry) 718 ((eq xref 'wmperry)
675 (about-face "William Perry" 'bold) 719 (about-face "William Perry" 'bold)
676 (insert " <wmperry@spry.com> 720 (insert " <wmperry@spry.com>
677 721
678 Author of Emacs-w3, the builtin web browser that comes with XEmacs, 722 Author of Emacs-w3, the builtin web browser that comes with XEmacs,
679 and various additions to the C code (e.g. the database support, 723 and various additions to the C code (e.g. the database support,
680 the PNG support, some of the GIF/JPEG support, the strikethru 724 the PNG support, some of the GIF/JPEG support, the strikethru
681 face attribute support). 725 face attribute support).
682 726
683 He is currently working on adding really cool stylesheets to the 727 He is currently working at Aventail, Corp. on SOCKS v5 servers.")
684 web, which will stress the new capabilities of XEmacs to the limit.
685
686 He only gets paid for working on an HTTP server for Spry, but will
687 hack emacs for beer.")
688 728
689 (insert "\n\n\tClick ") 729 (insert "\n\n\tClick ")
690 (about-xref "here" prev-page "Return to previous page") 730 (about-xref "here" prev-page "Return to previous page")
691 (insert " to go back to the previous page.\n") 731 (insert " to go back to the previous page.\n")
692 ) 732 )
701 (insert " 741 (insert "
702 742
703 Like most free software, XEmacs is a collaborative effort. 743 Like most free software, XEmacs is a collaborative effort.
704 These are some of the contributors; we have no doubt forgotten 744 These are some of the contributors; we have no doubt forgotten
705 someone; we apologize! You can see some of our faces further below. 745 someone; we apologize! You can see some of our faces further below.
706
707 Martin Buchholz <Martin.Buchholz@sun.com>
708 Technical lead for XEmacs at DevPro (formerly SunPro), a
709 division of Sun Microsystems. Martin used to do XEmacs as a
710 `hobby' while at IBM, and was crazy enough to try to do it
711 for a living at Sun. Martin is currently working mostly on
712 Internationalization.
713 746
714 ") (about-xref "Vladimir Ivanovic" 'vladimir "Find out more about Vladimir Ivanovic") (insert " <vladimir@mri.com> 747 ") (about-xref "Vladimir Ivanovic" 'vladimir "Find out more about Vladimir Ivanovic") (insert " <vladimir@mri.com>
715 Former technical lead for XEmacs at Sun Microsystems. He is 748 Former technical lead for XEmacs at Sun Microsystems. He is
716 now with Microtec Research Inc., working on embedded systems 749 now with Microtec Research Inc., working on embedded systems
717 development tools. 750 development tools.
731 764
732 ") (about-xref "Andy Piper" 'piper "Find out more about Andy Piper") (insert " <andyp@parallax.co.uk> 765 ") (about-xref "Andy Piper" 'piper "Find out more about Andy Piper") (insert " <andyp@parallax.co.uk>
733 Created the prototype for the toolbars. Has been the first to make 766 Created the prototype for the toolbars. Has been the first to make
734 use of many of the new XEmacs graphics features. 767 use of many of the new XEmacs graphics features.
735 768
736 ") (about-xref "Bob Weiner" 'bw "Find out more about Bob Weiner") (insert " <weiner@mot.com> 769 ") (about-xref "Bob Weiner" 'bw "Find out more about Bob Weiner") (insert " <weiner@infodock.com>
737 Author of the Hyperbole everyday information management 770 Author of the Hyperbole everyday information management
738 hypertext system and the OO-Browser multi-language code 771 hypertext system and the OO-Browser multi-language code
739 browser. He also designed the InfoDock integrated tool 772 browser. He also designed the InfoDock integrated tool
740 framework for software engineers. It runs atop XEmacs and is 773 framework for software engineers. It runs atop XEmacs and is
741 available from \"/anonymous@ftp.xemacs.org:pub/infodock\". 774 available from his firm, InfoDock Associates, which offers custom
775 development and support packages for corporate users of XEmacs,
776 GNU Emacs and InfoDock. See \"http://www.infodock.com>\".
742 His interests include user interfaces, information management, 777 His interests include user interfaces, information management,
743 CASE tools, communications and enterprise integration. 778 CASE tools, communications and enterprise integration.
744 779
745 ") (about-xref "William Perry" 'wmperry "Find out more about Bill Perry") (insert " <wmperry@spry.com> 780 ") (about-xref "William Perry" 'wmperry "Find out more about Bill Perry") (insert " <wmperry@aventail.com>
746 Author of W3, a package for browsing the World Wide Web 781 Author of Emacs-w3, the builtin web browser that comes with XEmacs,
747 which is included in the standard XEmacs distribution. 782 and various additions to the C code (e.g. the database support,
748 Although W3 runs on all versions of Emacs, Bill has been 783 the PNG support, some of the GIF/JPEG support, the strikethru
749 quick to take advantage of the unique features of XEmacs 784 face attribute support).
750 (such as embedded images and windows). Thus, the XEmacs
751 version of W3 is significantly more powerful than versions
752 running in other Emacs variants.
753 785
754 Kyle Jones <kyle@crystal.wonderworks.com> 786 Kyle Jones <kyle@crystal.wonderworks.com>
755 Author of VM (View Mail), a mail-reading package that is 787 Author of VM (View Mail), a mail-reading package that is
756 included in the standard XEmacs distribution, and 788 included in the standard XEmacs distribution, and
757 contributor of many improvements and bug fixes. Unlike most 789 contributor of many improvements and bug fixes. Unlike most
812 Gary Adams <gra@zeppo.East.Sun.COM> 844 Gary Adams <gra@zeppo.East.Sun.COM>
813 Gennady Agranov <agranov@csa.CS.Technion.Ac.IL> 845 Gennady Agranov <agranov@csa.CS.Technion.Ac.IL>
814 Mark Allender <allender@vnet.IBM.COM> 846 Mark Allender <allender@vnet.IBM.COM>
815 Butch Anton <butch@zaphod.uchicago.edu> 847 Butch Anton <butch@zaphod.uchicago.edu>
816 Fred Appelman <Fred.Appelman@cv.ruu.nl> 848 Fred Appelman <Fred.Appelman@cv.ruu.nl>
849 Erik \"The Pope\" Arneson <lazarus@mind.net>
817 Tor Arntsen <tor@spacetec.no> 850 Tor Arntsen <tor@spacetec.no>
818 Mike Battaglia <mbattagl@dsccc.com> 851 Mike Battaglia <mbattagl@dsccc.com>
819 Steven L Baur <steve@miranova.com>
820 Neal Becker <neal@ctd.comsat.com> 852 Neal Becker <neal@ctd.comsat.com>
821 Paul Bibilo <peb@delcam.com> 853 Paul Bibilo <peb@delcam.com>
822 Jan Borchers <job@tk.uni-linz.ac.at> 854 Jan Borchers <job@tk.uni-linz.ac.at>
823 Mark Borges <mdb@cdc.noaa.gov> 855 Mark Borges <mdb@cdc.noaa.gov>
824 David P. Boswell <daveb@tau.space.thiokol.com> 856 David P. Boswell <daveb@tau.space.thiokol.com>
830 Richard Caley <rjc@cstr.edinburgh.ac.uk> 862 Richard Caley <rjc@cstr.edinburgh.ac.uk>
831 Stephen Carney <carney@gvc.dec.com> 863 Stephen Carney <carney@gvc.dec.com>
832 Philippe Charton <charton@lmd.ens.fr> 864 Philippe Charton <charton@lmd.ens.fr>
833 Peter Cheng <peter.cheng@sun.com> 865 Peter Cheng <peter.cheng@sun.com>
834 Jin S. Choi <jin@atype.com> 866 Jin S. Choi <jin@atype.com>
867 Tomasz J. Cholewo <tjchol01@mecca.spd.louisville.edu>
835 Serenella Ciongoli <czs00@ladybug.oes.amdahl.com> 868 Serenella Ciongoli <czs00@ladybug.oes.amdahl.com>
836 Richard Cognot <cognot@ensg.u-nancy.fr> 869 Richard Cognot <cognot@ensg.u-nancy.fr>
837 Andy Cohen <cohen@andy.bu.edu> 870 Andy Cohen <cohen@andy.bu.edu>
871 Andrew J Cosgriff <ajc@bing.wattle.id.au>
872 Nick J. Crabtree <nickc@scopic.com>
838 Christopher Davis <ckd@kei.com> 873 Christopher Davis <ckd@kei.com>
874 Soren Dayton <csdayton@cs.uchicago.edu>
839 Michael Diers <mdiers@logware.de> 875 Michael Diers <mdiers@logware.de>
840 William G. Dubuque <wgd@martigny.ai.mit.edu> 876 William G. Dubuque <wgd@martigny.ai.mit.edu>
841 Samuel J. Eaton <samuele@cogs.susx.ac.uk> 877 Samuel J. Eaton <samuele@cogs.susx.ac.uk>
842 Carl Edman <cedman@Princeton.EDU> 878 Carl Edman <cedman@Princeton.EDU>
843 Dave Edmondson <davided@sco.com> 879 Dave Edmondson <davided@sco.com>
880 Jonathan Edwards <edwards@intranet.com>
844 Eric Eide <eeide@asylum.cs.utah.edu> 881 Eric Eide <eeide@asylum.cs.utah.edu>
882 EKR <ekr@terisa.com>
883 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
845 David Fletcher <frodo@tsunami.com> 884 David Fletcher <frodo@tsunami.com>
846 Paul Flinders <ptf@delcam.co.uk> 885 Paul Flinders <ptf@delcam.co.uk>
847 Jered J Floyd <jered@mit.edu> 886 Jered J Floyd <jered@mit.edu>
848 Jerry Frain <jerry@sneffels.tivoli.com> 887 Jerry Frain <jerry@sneffels.tivoli.com>
849 Benjamin Fried <bf@morgan.com> 888 Benjamin Fried <bf@morgan.com>
850 Barry Friedman <friedman@bnr.ca> 889 Barry Friedman <friedman@bnr.ca>
851 Lew Gaiter III <lew@StarFire.com> 890 Lew Gaiter III <lew@StarFire.com>
891 Itay Gat <itay@cs.huji.ac.il>
852 Tim Geisler <Tim.Geisler@informatik.uni-muenchen.de> 892 Tim Geisler <Tim.Geisler@informatik.uni-muenchen.de>
853 Dave Gillespie <daveg@synaptics.com> 893 Dave Gillespie <daveg@synaptics.com>
854 Christian F. Goetze <cg@bigbook.com> 894 Christian F. Goetze <cg@bigbook.com>
855 Wolfgang Grieskamp <wg@cs.tu-berlin.de> 895 Wolfgang Grieskamp <wg@cs.tu-berlin.de>
856 James Grinter <jrg@demon.net> 896 James Grinter <jrg@demon.net>
860 Markus Gutschke <gutschk@GOEDEL.UNI-MUENSTER.DE> 900 Markus Gutschke <gutschk@GOEDEL.UNI-MUENSTER.DE>
861 Adam Hammer <hammer@cs.purdue.edu> 901 Adam Hammer <hammer@cs.purdue.edu>
862 Magnus Hammerin <magnush@epact.se> 902 Magnus Hammerin <magnush@epact.se>
863 ChangGil Han <cghan@phys401.phys.pusan.ac.kr> 903 ChangGil Han <cghan@phys401.phys.pusan.ac.kr>
864 Derek Harding <dharding@lssec.bt.co.uk> 904 Derek Harding <dharding@lssec.bt.co.uk>
905 Michael Harnois <mharnois@sbt.net>
865 John Haxby <J.Haxby@isode.com> 906 John Haxby <J.Haxby@isode.com>
866 Jareth \"JHod\" Hein <jhod@po.iijnet.or.jp> 907 Jareth \"JHod\" Hein <jhod@po.iijnet.or.jp>
867 Benedikt Heinen <beh@icemark.thenet.ch> 908 Benedikt Heinen <beh@icemark.thenet.ch>
868 Stephan Herrmann <sh@first.gmd.de> 909 Stephan Herrmann <sh@first.gmd.de>
869 Charles Hines <chuck_hines@VNET.IBM.COM> 910 Charles Hines <chuck_hines@VNET.IBM.COM>
872 Andrew Innes <andrewi@harlequin.co.uk> 913 Andrew Innes <andrewi@harlequin.co.uk>
873 Markku Jarvinen <Markku.Jarvinen@simpukka.funet.fi> 914 Markku Jarvinen <Markku.Jarvinen@simpukka.funet.fi>
874 Robin Jeffries <robin.jeffries@sun.com> 915 Robin Jeffries <robin.jeffries@sun.com>
875 Philip Johnson <johnson@uhics.ics.Hawaii.Edu> 916 Philip Johnson <johnson@uhics.ics.Hawaii.Edu>
876 J. Kean Johnston <jkj@paradigm-sa.com> 917 J. Kean Johnston <jkj@paradigm-sa.com>
918 Andreas Kaempf <andreas@sccon.com>
877 Doug Keller <dkeller@vnet.ibm.com> 919 Doug Keller <dkeller@vnet.ibm.com>
920 Hunter Kelly <retnuh@corona>
878 Gregor Kennedy <gregork@dadd.ti.com> 921 Gregor Kennedy <gregork@dadd.ti.com>
879 Michael Kifer <kifer@cs.sunysb.edu> 922 Michael Kifer <kifer@cs.sunysb.edu>
880 Yasuhiko Kiuchi <kiuchi@dsp.ksp.fujixerox.co.jp> 923 Yasuhiko Kiuchi <kiuchi@dsp.ksp.fujixerox.co.jp>
924 Greg Klanderman <greg@alphatech.com>
925 Valdis Kletnieks <Valdis.Kletnieks@vt.edu>
926 Jens Krinke <krinke@ips.cs.tu-bs.de>
927 Mats Larsson <Mats.Larsson@uab.ericsson.se>
881 Jens Lautenbacher <jens@lemcbed.lem.uni-karlsruhe.de> 928 Jens Lautenbacher <jens@lemcbed.lem.uni-karlsruhe.de>
882 Simon Leinen <simon@instrumatic.ch> 929 Simon Leinen <simon@instrumatic.ch>
930 Carsten Leonhardt <leo@arioch.tng.oche.de>
883 James LewisMoss <moss@cs.sc.edu> 931 James LewisMoss <moss@cs.sc.edu>
884 Mats Lidell <mats.lidell@contactor.se> 932 Mats Lidell <mats.lidell@contactor.se>
885 Matt Liggett <mliggett@seven.ucs.indiana.edu> 933 Matt Liggett <mliggett@seven.ucs.indiana.edu>
886 Christian Limpach <Christian.Limpach@nice.ch> 934 Christian Limpach <Christian.Limpach@nice.ch>
887 Robert Lipe <robertl@arnet.com> 935 Robert Lipe <robertl@arnet.com>
888 Damon Lipparelli <lipp@aa.net> 936 Damon Lipparelli <lipp@aa.net>
889 Hamish Macdonald <hamish@bnr.ca> 937 Hamish Macdonald <hamish@bnr.ca>
890 Ian MacKinnon <imac@rd.abs.alcatel.co.uk> 938 Ian MacKinnon <imackinnon@telia.co.uk>
891 Patrick MacRoberts <macro@hpcobr30.cup.hp.com> 939 Patrick MacRoberts <macro@hpcobr30.cup.hp.com>
892 Tonny Madsen <Tonny.Madsen@netman.dk> 940 Tonny Madsen <Tonny.Madsen@netman.dk>
893 Ketil Z Malde <ketil@ii.uib.no> 941 Ketil Z Malde <ketil@ii.uib.no>
894 Steve March <smarch@quaver.urbana.mcd.mot.com> 942 Steve March <smarch@quaver.urbana.mcd.mot.com>
943 Pekka Marjola <pema@iki.fi>
895 Simon Marshall <Simon.Marshall@mail.esrin.esa.it> 944 Simon Marshall <Simon.Marshall@mail.esrin.esa.it>
896 Dave Mason <dmason@plg.uwaterloo.ca> 945 Dave Mason <dmason@plg.uwaterloo.ca>
897 Jaye Mathisen <mrcpu@cdsnet.net> 946 Jaye Mathisen <mrcpu@cdsnet.net>
898 Michael Meissner <meissner@osf.org> 947 Michael Meissner <meissner@osf.org>
899 David M. Meyer <meyer@ns.uoregon.edu> 948 David M. Meyer <meyer@ns.uoregon.edu>
900 Brad Miller <bmiller@cs.umn.edu> 949 Brad Miller <bmiller@cs.umn.edu>
950 Jeff Miller <jmiller@bay1.bayserve.net>
951 David Moore <dmoore@UCSD.EDU>
901 John Morey <jmorey@crl.com> 952 John Morey <jmorey@crl.com>
902 Rob Mori <rob.mori@sun.com> 953 Rob Mori <rob.mori@sun.com>
903 Heiko Muenkel <muenkel@tnt.uni-hannover.de> 954 Heiko Muenkel <muenkel@tnt.uni-hannover.de>
904 Arup Mukherjee <arup+@cs.cmu.edu> 955 Arup Mukherjee <arup+@cs.cmu.edu>
905 Colas Nahaboo <Colas.Nahaboo@sophia.inria.fr> 956 Colas Nahaboo <Colas.Nahaboo@sophia.inria.fr>
906 Lynn D. Newton <lynn@ives.phx.mcd.mot.com> 957 Lynn D. Newton <lynn@ives.phx.mcd.mot.com>
958 Casey Nielson <knielson@joule.elee.calpoly.edu>
907 Georg Nikodym <Georg.Nikodym@canada.sun.com> 959 Georg Nikodym <Georg.Nikodym@canada.sun.com>
960 Hrvoje Niksic <hniksic@srce.hr>
908 Andy Norman <ange@hplb.hpl.hp.com> 961 Andy Norman <ange@hplb.hpl.hp.com>
909 Joseph J. Nuspl Jr. <nuspl@cc.purdue.edu> 962 Joseph J. Nuspl Jr. <nuspl@cc.purdue.edu>
910 Kim Nyberg <kny@tekla.fi> 963 Kim Nyberg <kny@tekla.fi>
911 David Ofelt <ofelt@getalife.Stanford.EDU> 964 David Ofelt <ofelt@getalife.Stanford.EDU>
965 Tore Olsen <toreo@colargol.idb.hist.no>
912 Greg Onufer <Greg.Onufer@eng.sun.com> 966 Greg Onufer <Greg.Onufer@eng.sun.com>
913 Achim Oppelt <aoppelt@theorie3.physik.uni-erlangen.de> 967 Achim Oppelt <aoppelt@theorie3.physik.uni-erlangen.de>
914 Sudeep Kumar Palat <palat@idt.unit.no> 968 Sudeep Kumar Palat <palat@idt.unit.no>
915 Marc Paquette <Marc.Paquette@Softimage.com> 969 Marc Paquette <Marc.Paquette@Softimage.com>
916 Jens-U H Petersen <petersen@kurims.kyoto-u.ac.jp> 970 Jens-U H Petersen <petersen@kurims.kyoto-u.ac.jp>
971 Joel Peterson <tarzan@aosi.com>
917 Thomas A. Peterson <tap@src.honeywell.com> 972 Thomas A. Peterson <tap@src.honeywell.com>
918 Peter Pezaris <pez@dwwc.com> 973 Peter Pezaris <pez@dwwc.com>
919 Tibor Polgar <tlp00@eng.amdahl.com> 974 Tibor Polgar <tlp00@eng.amdahl.com>
975 Frederic Poncin <fp@info.ucl.ac.be>
920 E. Rehmi Post <rehmi@asylum.sf.ca.us> 976 E. Rehmi Post <rehmi@asylum.sf.ca.us>
977 Colin Rafferty <craffert@spspme.ml.com>
921 Paul M Reilly <pmr@pajato.com> 978 Paul M Reilly <pmr@pajato.com>
922 Jack Repenning <jackr@sgi.com> 979 Jack Repenning <jackr@sgi.com>
923 Daniel Rich <drich@cisco.com> 980 Daniel Rich <drich@cisco.com>
924 Roland Rieke <rol@darmstadt.gmd.de> 981 Roland Rieke <rol@darmstadt.gmd.de>
925 Russell Ritchie <ritchier@msc.ie> 982 Russell Ritchie <ritchier@msc.ie>
983 Roland <rol@darmstadt.gmd.de>
926 Mike Russell <mjruss@rchland.vnet.ibm.com> 984 Mike Russell <mjruss@rchland.vnet.ibm.com>
927 Jan Sandquist <etxquist@iqa.ericsson.se> 985 Jan Sandquist <etxquist@iqa.ericsson.se>
928 Marty Sasaki <sasaki@spdcc.com> 986 Marty Sasaki <sasaki@spdcc.com>
929 Mike Scheidler <c23mts@eng.delcoelect.com> 987 Mike Scheidler <c23mts@eng.delcoelect.com>
930 Darrel Schneider <darrel@slc.com> 988 Darrel Schneider <darrel@slc.com>
931 Hayden Schultz <haydens@ll.mit.edu> 989 Hayden Schultz <haydens@ll.mit.edu>
932 Cotton Seed <cottons@cybercom.net> 990 Cotton Seed <cottons@cybercom.net>
933 Axel Seibert <seiberta@informatik.tu-muenchen.de> 991 Axel Seibert <seiberta@informatik.tu-muenchen.de>
934 Odd-Magne Sekkingstad <oddms@ii.uib.no> 992 Odd-Magne Sekkingstad <oddms@ii.uib.no>
993 Vinnie Shelton <shelton@icd.teradyne.com>
935 John Shen <zfs60@cas.org> 994 John Shen <zfs60@cas.org>
995 Murata Shuuichirou <mrt@mickey.ai.kyutech.ac.jp>
936 Jeffrey Sparkes <jsparkes@bnr.ca> 996 Jeffrey Sparkes <jsparkes@bnr.ca>
937 Michael Sperber <sperber@informatik.uni-tuebingen.de> 997 Michael Sperber <sperber@informatik.uni-tuebingen.de>
938 Manoj Srivastava <srivasta@pilgrim.umass.edu> 998 Manoj Srivastava <srivasta@pilgrim.umass.edu>
939 Francois Staes <frans@kiwi.uia.ac.be> 999 Francois Staes <frans@kiwi.uia.ac.be>
940 Jason Stewart <jasons@cs.unm.edu> 1000 Jason Stewart <jasons@cs.unm.edu>
941 Rick Tait <rickt@gnu.ai.mit.edu> 1001 Rick Tait <rickt@gnu.ai.mit.edu>
942 James Thompson <thompson@wg2.waii.com> 1002 James Thompson <thompson@wg2.waii.com>
943 Morioka Tomohiko <morioka@jaist.ac.jp> 1003 Morioka Tomohiko <morioka@jaist.ac.jp>
944 Raymond L. Toy <toy@rtp.ericsson.se> 1004 Raymond L. Toy <toy@rtp.ericsson.se>
945 John Turner <turner@xdiv.lanl.gov> 1005 John Turner <turner@xdiv.lanl.gov>
1006 Juan E. Villacis <jvillaci@cs.indiana.edu>
946 Vladimir Vukicevic <vladimir@intrepid.com> 1007 Vladimir Vukicevic <vladimir@intrepid.com>
947 Peter Ware <ware@cis.ohio-state.edu> 1008 Peter Ware <ware@cis.ohio-state.edu>
948 Yoav Weiss <yoav@zeus.datasrv.co.il> 1009 Yoav Weiss <yoav@zeus.datasrv.co.il>
949 Rod Whitby <rwhitby@asc.corp.mot.com> 1010 Rod Whitby <rwhitby@asc.corp.mot.com>
950 Rich Williams <rdw@hplb.hpl.hp.com> 1011 Rich Williams <rdw@hplb.hpl.hp.com>