428
|
1 ;;; about.el --- the About The Authors page (shameless self promotion).
|
|
2
|
|
3 ;; Copyright (c) 1997 Free Software Foundation, Inc.
|
479
|
4 ;; Copyright (C) 2001 Ben Wing.
|
428
|
5
|
|
6 ;; Keywords: extensions
|
479
|
7 ;; Version: 2.5
|
|
8 ;; Maintainer: XEmacs Development Team
|
428
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
24 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
25 ;; Boston, MA 02111-1307, USA.
|
|
26
|
|
27 ;;; Synched up with: Not in FSF.
|
|
28
|
|
29 ;; Original code: Jamie Zawinski <jwz@jwz.org>
|
|
30 ;; Text: Ben Wing <ben@xemacs.org>, Jamie Zawinski <jwz@jwz.org>
|
|
31 ;; Hard: Amiga 1000, Progressive Peripherals Frame Grabber.
|
|
32 ;; Soft: FG 2.0, DigiPaint 3.0, pbmplus (dec 91), xv 3.0.
|
|
33 ;; Modified for 19.11 by Eduardo Pelegri-Llopart <pelegri@eng.sun.com>
|
|
34 ;; and Chuck Thompson <cthomp@xemacs.org>
|
|
35 ;; More hacking for 19.12 by Chuck Thompson and Ben Wing.
|
|
36 ;; 19.13 and 19.14 updating done by Chuck Thompson.
|
|
37 ;; 19.15 and 20.0 updating done by Steve Baur and Martin Buchholz.
|
|
38
|
|
39 ;; Completely rewritten for 20.3 by Hrvoje Niksic <hniksic@xemacs.org>.
|
|
40 ;; The original had no version numbers; I numbered the rewrite as 2.0.
|
479
|
41 ;; Extensively revamped and most text rewritten by Ben Wing
|
|
42 ;; <ben@xemacs.org> for 21.4.
|
428
|
43
|
|
44 ;; Many things in this file are to gag. Ideally, we should just use
|
|
45 ;; HTML (or some other extension, e.g. info) for this sort of thing.
|
|
46 ;; However, W3 loads too long and is too large to be dumped with
|
|
47 ;; XEmacs.
|
|
48
|
|
49 ;; If you think this is ugly now -- o boy, you should have seen it
|
|
50 ;; before.
|
|
51
|
|
52 (require 'wid-edit)
|
|
53
|
|
54 ;; People in this list have their individual links from the main page,
|
|
55 ;; or from the `Legion' page. If they have an image, it should be
|
|
56 ;; named after the CAR of the list element (baw -> baw.png).
|
|
57 ;;
|
|
58 ;; If you add to this list, you'll want to update
|
479
|
59 ;; `about-personal-info' and `about-hackers', and add the name to one
|
|
60 ;; of the three mutually exclusive lists just below.
|
|
61
|
|
62 (defface about-headline-face
|
|
63 '((((class color) (background dark))
|
|
64 (:foreground "red" :bold t))
|
|
65 ;; red4 is hardly different from black on windows.
|
|
66 (((class color) (background light)
|
|
67 (type mswindows))
|
|
68 (:foreground "red" :bold t))
|
|
69 (((class color) (background light))
|
|
70 (:foreground "red4" :bold t))
|
|
71 (((class grayscale) (background light))
|
|
72 (:foreground "LightGray" :bold t))
|
|
73 (((class grayscale) (background dark))
|
|
74 (:foreground "DimGray" :bold t))
|
|
75 (t (:bold t)))
|
|
76 "Face used for color-highlighted headlines in the About page.")
|
|
77
|
|
78 (defface about-link-face
|
|
79 '((((class color) (background dark))
|
|
80 (:foreground "blue" :underline t))
|
|
81 ;; blue4 is hardly different from black on windows.
|
|
82 (((class color) (background light) (type mswindows))
|
|
83 (:foreground "blue3" :underline t))
|
|
84 (((class color) (background light))
|
|
85 (:foreground "blue4" :underline t))
|
|
86 (((class grayscale) (background light))
|
|
87 (:foreground "DimGray" :bold t :italic t :underline t))
|
|
88 (((class grayscale) (background dark))
|
|
89 (:foreground "LightGray" :bold t :italic t :underline t))
|
|
90 (t (:underline t)))
|
|
91 "Face used for links in the About page.")
|
|
92
|
428
|
93 (defvar xemacs-hackers
|
479
|
94 '(
|
|
95 ;; to sort the stuff below, use M-x sort-regexp-fields RET
|
|
96 ;; ^.*$ RET (\([a-z]*\) RET
|
|
97 (adrian "Adrian Aichner" "adrian@xemacs.org")
|
|
98 (aj "Andreas Jaeger" "aj@xemacs.org")
|
|
99 (ajc "Andrew Cosgriff" "ajc@xemacs.org")
|
|
100 (alastair "Alastair Houghton" "alastair@xemacs.org")
|
|
101 (baw "Barry Warsaw" "bwarsaw@xemacs.org")
|
|
102 (ben "Ben Wing" "ben@xemacs.org")
|
|
103 (bw "Bob Weiner" "weiner@xemacs.org")
|
|
104 (cgw "Charles Waldman" "cgw@xemacs.org")
|
|
105 (chr "Christian Nybø" "chr@xemacs.org")
|
|
106 (craig "Craig Lanning" "craig@xemacs.org")
|
428
|
107 (cthomp "Chuck Thompson" "cthomp@xemacs.org")
|
479
|
108 (daiki "Daiki Ueno" "daiki@xemacs.org")
|
|
109 (dan "Dan Holmsand" "dan@xemacs.org")
|
|
110 (darrylo "Darryl Okahata" "darrylo@xemacs.org")
|
|
111 (devin "Matthieu Devin" "devin@xemacs.org")
|
|
112 (dkindred "Darrell Kindred" "dkindred@xemacs.org")
|
|
113 (dmoore "David Moore" "dmoore@xemacs.org")
|
452
|
114 (dv "Didier Verna" "didier@xemacs.org")
|
479
|
115 (eb "Eric Benson" "eb@xemacs.org")
|
|
116 (fabrice "Fabrice Popineau" "fabrice@xemacs.org")
|
1215
|
117 (golubev "Ilya Golubev" "golubev@xemacs.org")
|
479
|
118 (gunnar "Gunnar Evermann" "gunnar@xemacs.org")
|
|
119 (hbs "Harlan Sexton" "hbs@xemacs.org")
|
|
120 (hisashi "Hisashi Miyashita" "hisashi@xemacs.org")
|
|
121 (hmuller "Hans Muller" "hmuller@xemacs.org")
|
428
|
122 (hniksic "Hrvoje Niksic" "hniksic@xemacs.org")
|
479
|
123 (hobley "David hobley" "hobley@xemacs.org")
|
1248
|
124 (james "Jerry James" "james@xemacs.org")
|
479
|
125 (jan "Jan Vroonhof" "jan@xemacs.org")
|
|
126 (jareth "Jareth Hein" "jareth@xemacs.org")
|
460
|
127 (jason "Jason R. Mastaler" "jason@xemacs.org")
|
479
|
128 (jens "Jens Lautenbacher" "jens@xemacs.org")
|
|
129 (jmiller "Jeff Miller" "jmiller@xemacs.org")
|
|
130 (jonathan "Jonathan Harris" "jonathan@xemacs.org")
|
|
131 (juhp "Jens-Ulrik Holger Petersen" "petersen@xemacs.org")
|
|
132 (jwz "Jamie Zawinski" "jwz@xemacs.org")
|
442
|
133 (kazz "IENAGA Kazuyuki" "ienaga@xemacs.org")
|
479
|
134 (kirill "Kirill Katsnelson" "kirill@xemacs.org")
|
|
135 (kyle "Kyle Jones" "kyle@xemacs.org")
|
|
136 (larsi "Lars Magne Ingebrigtsen" "larsi@xemacs.org")
|
|
137 (marcpa "Marc Paquette" "marcpa@xemacs.org")
|
428
|
138 (martin "Martin Buchholz" "martin@xemacs.org")
|
479
|
139 (mcook "Michael R. Cook" "mcook@xemacs.org")
|
|
140 (mly "Richard Mlynarik" "mly@xemacs.org")
|
|
141 (morioka "MORIOKA Tomohiko" "morioka@xemacs.org")
|
|
142 (mta "Mike Alexander" "mta@xemacs.org")
|
|
143 (ograf "Oliver Graf" "ograf@xemacs.org")
|
|
144 (olivier "Olivier Galibert" "olivier@xemacs.org")
|
|
145 (oscar "Oscar Figueiredo" "oscar@xemacs.org")
|
|
146 (pelegri "Eduardo Pelegri-Llopart" "pelegri@xemacs.org")
|
|
147 (pez "Peter Pezaris" "pez@xemacs.org")
|
428
|
148 (piper "Andy Piper" "andy@xemacs.org")
|
479
|
149 (pittman "Daniel Pittman" "pittman@xemacs.org")
|
2304
|
150 (purvis "Malcolm Purvis" "malcolmp@xemacs.org")
|
479
|
151 (rickc "Rick Campbell" "rickc@xemacs.org")
|
|
152 (rose "John Rose" "rose@xemacs.org")
|
|
153 (rossini "Anthony Rossini" "rossini@xemacs.org")
|
1248
|
154 (scop "Ville Skyttä" "scop@xemacs.org")
|
479
|
155 (slb "Steve Baur" "steve@xemacs.org")
|
487
|
156 (sperber "Michael Sperber" "mike@xemacs.org")
|
479
|
157 (stig "Jonathan Stigelman" "stig@xemacs.org")
|
|
158 (stigb "Stig Bjorlykke" "stigb@xemacs.org")
|
428
|
159 (thiessel "Marcus Thiessel" "marcus@xemacs.org")
|
479
|
160 (tomonori "Tomonori Ikeyama" "tomonori@xemacs.org")
|
|
161 (tuck "Matt Tucker" "tuck@xemacs.org")
|
2297
|
162 (turnbull "Stephen Turnbull" "stephen@xemacs.org")
|
479
|
163 (vin "Vin Shelton" "acs@xemacs.org")
|
2297
|
164 (viteno "Norbert Koch" "viteno@xemacs.org")
|
479
|
165 (vladimir "Vladimir Ivanovic" "vladimir@xemacs.org")
|
|
166 (wmperry "William Perry" "wmperry@xemacs.org")
|
|
167 (yoshiki "Yoshiki Hayashi" "yoshiki@xemacs.org")
|
|
168 )
|
428
|
169 "Alist of XEmacs hackers.")
|
|
170
|
479
|
171 (defvar about-current-release-maintainers
|
|
172 ;; this list should not necessarily be in sorted order.
|
2297
|
173 '(adrian james piper purvis sperber turnbull vin viteno))
|
479
|
174
|
|
175 (defvar about-other-current-hackers
|
|
176 ;; to sort this list or the one below, use:
|
|
177 ;; M-x sort-regexp-fields RET [a-z]+ RET \(.*\) RET
|
2297
|
178 '(ben daiki darrylo dv fabrice golubev hniksic jan jason jmiller jonathan
|
|
179 kazz kirill larsi martin morioka mta ograf olivier oscar rossini pittman
|
|
180 scop tomonori tuck wmperry yoshiki))
|
479
|
181
|
|
182 (defvar about-once-and-future-hackers
|
2297
|
183 '(aj ajc alastair baw bw cgw chr craig cthomp dan devin dkindred dmoore eb
|
|
184 gunnar hbs hisashi hmuller hobley jareth jens juhp jwz kyle marcpa mcook
|
|
185 mly ograf pelegri pez rickc rose slb stig stigb thiessel vladimir))
|
479
|
186
|
428
|
187 ;; The CAR of alist elements is a valid argument to `about-url-link'.
|
|
188 ;; It is preferred to a simple string, because it makes maintenance
|
|
189 ;; easier. Please add new URLs to this list.
|
|
190 (defvar about-url-alist
|
479
|
191 ;; to sort the stuff below, use M-x sort-regexp-fields RET
|
|
192 ;; ^.*$ RET (\([a-z]*\) RET
|
428
|
193 '((ajc . "http://www-personal.monash.edu.au/~ajc/")
|
487
|
194 (alastair . "http://website.lineone.net/~ajhoughton/")
|
479
|
195 (baw . "http://barry.wooz.org/")
|
428
|
196 (ben . "http://www.666.com/ben/")
|
479
|
197 (ben-xemacs . "http://www.xemacs.org/Architecting-XEmacs/index.html")
|
|
198 (beopen . "http://www.beopen.com/")
|
|
199 (cc-mode . "http://cc-mode.sourceforge.net/")
|
428
|
200 (chr . "http://www.xemacs.org/faq/")
|
479
|
201 (daiki . "http://deisui.bug.org/diary/servlet/view")
|
428
|
202 (dkindred . "http://www.cs.cmu.edu/People/dkindred/me.html")
|
|
203 (dmoore . "http://oj.egbt.org/dmoore/")
|
452
|
204 (dv . "http://www.lrde.epita.fr/~didier/")
|
479
|
205 (fabrice . "http://www.ese-metz.fr/~popineau/")
|
|
206 (fptex . "http://www.fptex.org/")
|
1290
|
207 (james . "http://www.ittc.ku.edu/~james/")
|
428
|
208 (jason . "http://www.mastaler.com/")
|
479
|
209 (juhp . "http://www.01.246.ne.jp/~juhp/")
|
428
|
210 (jwz . "http://www.jwz.org/")
|
|
211 (kazz . "http://www.imasy.or.jp/~kazz/")
|
|
212 (kyle . "http://www.wonderworks.com/kyle/")
|
479
|
213 (larsi . "http://quimby.gnus.org/lmi/")
|
428
|
214 (marcpa . "http://www.positron911.com/products/power.htm")
|
|
215 (ograf . "http://www.fga.de/~ograf/")
|
479
|
216 (pez . "http://cbs.sportsline.com/")
|
988
|
217 (piper . "http://www.andypiper.com/")
|
479
|
218 (rossini . "http://faculty.washington.edu/rossini/")
|
|
219 (stigb . "http://www.tihlde.hist.no/~stigb/")
|
2297
|
220 (turnbull . "http://turnbull.sk.tsukuba.ac.jp/yaseppochi-gumi.html")
|
428
|
221 (vin . "http://www.upa.org/")
|
479
|
222 (vladimir . "http://www.leonora.org/~vladimir/")
|
481
|
223 (wget . "http://sunsite.dk/wget/")
|
2297
|
224 (xemacs . "http://www.xemacs.org/")
|
|
225 (xemacs-cvs . "http://cvs.xemacs.org/")
|
|
226 (xemacs-lists . "http://www.xemacs.org/Lists/"))
|
428
|
227 "Some of the more important URLs.")
|
|
228
|
|
229 (defvar about-left-margin 3)
|
|
230
|
479
|
231 (defun about-lookup-url (name)
|
|
232 (let ((result (cdr (assq name about-url-alist))))
|
|
233 (assert result)
|
|
234 result))
|
|
235
|
|
236 ;; Insert a URL link in the buffer. TEXT-TO-INSERT is the text that will
|
|
237 ;; be hyperlinked; if omitted, the URL is used. HELP-ECHO is some text that
|
|
238 ;; will be displayed when the mouse moves over the link.
|
|
239 (defun about-url-link (url &optional text-to-insert help-echo)
|
|
240 (assert url)
|
|
241 (when (symbolp url)
|
|
242 (setq url (about-lookup-url url)))
|
|
243 (when (and text-to-insert (symbolp text-to-insert))
|
|
244 (setq text-to-insert (about-lookup-url text-to-insert)))
|
428
|
245 (widget-create 'url-link
|
|
246 :button-prefix ""
|
|
247 :button-suffix ""
|
479
|
248 :help-echo help-echo
|
|
249 :tag (or text-to-insert url)
|
|
250 url))
|
|
251
|
482
|
252 ;; Insert a mail link in the buffer.
|
479
|
253 (defun about-mailto-link (address)
|
482
|
254 (lexical-let ((address address))
|
|
255 (widget-create 'link
|
|
256 :tag address
|
|
257 :button-prefix ""
|
|
258 :button-suffix ""
|
|
259 :action (lambda (widget &optional event)
|
|
260 (compose-mail address))
|
|
261 :help-echo (format "Send mail to %s" address))))
|
428
|
262
|
|
263 ;; Attach a face to a string, in order to be inserted into the buffer.
|
|
264 ;; Make sure that the extent is duplicable, but unique. Returns the
|
|
265 ;; string.
|
|
266 (defun about-with-face (string face)
|
|
267 (let ((ext (make-extent 0 (length string) string)))
|
|
268 (set-extent-property ext 'duplicable t)
|
|
269 (set-extent-property ext 'unique t)
|
|
270 (set-extent-property ext 'start-open t)
|
|
271 (set-extent-property ext 'end-open t)
|
|
272 (set-extent-face ext face))
|
|
273 string)
|
|
274
|
|
275 ;; Switch to buffer NAME. If it doesn't exist, make it and switch to it.
|
|
276 (defun about-get-buffer (name)
|
|
277 (cond ((get-buffer name)
|
|
278 (switch-to-buffer name)
|
|
279 (delete-other-windows)
|
|
280 (goto-char (point-min))
|
|
281 name)
|
|
282 (t
|
|
283 (switch-to-buffer name)
|
|
284 (delete-other-windows)
|
|
285 (buffer-disable-undo)
|
479
|
286 ;; #### This is a temporary fix until wid-edit gets fixed right.
|
|
287 ;; We don't do everything that widget-button-click does -- i.e.
|
|
288 ;; we don't change the link color on button down -- but that's
|
|
289 ;; not important.
|
|
290 (add-local-hook
|
|
291 'mouse-track-click-hook
|
|
292 #'(lambda (event count)
|
|
293 (cond
|
|
294 ((widget-event-point event)
|
|
295 (let* ((pos (widget-event-point event))
|
|
296 (button (get-char-property pos 'button)))
|
|
297 (when button
|
|
298 (widget-apply-action button event)
|
|
299 t))))))
|
428
|
300 (set-specifier left-margin-width about-left-margin (current-buffer))
|
479
|
301 (set (make-local-variable 'widget-button-face) 'about-link-face)
|
428
|
302 nil)))
|
|
303
|
|
304 ;; Set up the stuff needed by widget. Allowed types are `bury' and
|
482
|
305 ;; `kill'. The reason why we offer both types is performance: when a
|
|
306 ;; large buffer is merely buried, `about' will find it again when the
|
|
307 ;; user requests it, instead of recreating it. Small buffers can be
|
|
308 ;; killed because it is cheap to generate their contents.
|
|
309
|
428
|
310 (defun about-finish-buffer (&optional type)
|
|
311 (or type (setq type 'bury))
|
|
312 (widget-insert "\n")
|
|
313 (if (eq type 'bury)
|
482
|
314 (widget-create 'link
|
|
315 :help-echo "Bury this buffer"
|
|
316 :action (lambda (widget event)
|
483
|
317 (if event
|
|
318 ;; For some reason,
|
|
319 ;; (bury-buffer (event-buffer event))
|
|
320 ;; doesn't work.
|
|
321 (with-selected-window (event-window event)
|
|
322 (bury-buffer))
|
482
|
323 (bury-buffer)))
|
|
324 :tag "Bury")
|
|
325 (widget-create 'link
|
|
326 :help-echo "Kill this buffer"
|
|
327 :action (lambda (widget event)
|
483
|
328 (if event
|
|
329 (kill-buffer (event-buffer event))
|
|
330 (kill-buffer (current-buffer))))
|
482
|
331 :tag "Kill"))
|
479
|
332 (widget-insert " this buffer and return to previous.\n")
|
428
|
333 (use-local-map (make-sparse-keymap))
|
|
334 (set-keymap-parent (current-local-map) widget-keymap)
|
|
335 (if (eq type 'bury)
|
|
336 (progn
|
|
337 (local-set-key "q" 'bury-buffer)
|
|
338 (local-set-key "l" 'bury-buffer))
|
|
339 (let ((dispose (lambda () (interactive) (kill-buffer (current-buffer)))))
|
|
340 (local-set-key "q" dispose)
|
|
341 (local-set-key "l" dispose)))
|
|
342 (local-set-key " " 'scroll-up)
|
479
|
343 (local-set-key [backspace] 'scroll-down)
|
428
|
344 (local-set-key "\177" 'scroll-down)
|
|
345 (widget-setup)
|
|
346 (goto-char (point-min))
|
|
347 (toggle-read-only 1)
|
|
348 (set-buffer-modified-p nil))
|
|
349
|
|
350 ;; Make the appropriate number of spaces.
|
|
351 (defun about-center (string-or-glyph)
|
|
352 (let ((n (- (startup-center-spaces string-or-glyph) about-left-margin)))
|
|
353 (make-string (if (natnump n) n 0) ?\ )))
|
|
354
|
|
355 ;; Main entry page.
|
|
356
|
|
357 ;;;###autoload
|
|
358 (defun about-xemacs ()
|
|
359 "Describe the True Editor and its minions."
|
|
360 (interactive)
|
|
361 (unless (about-get-buffer "*About XEmacs*")
|
|
362 (widget-insert (about-center xemacs-logo))
|
|
363 (widget-create 'default
|
|
364 :format "%t"
|
|
365 :tag-glyph xemacs-logo)
|
|
366 (widget-insert "\n")
|
2296
|
367 (let* ((emacs-short-version
|
|
368 (cond (emacs-beta-version (format "%d.%d.%d"
|
|
369 emacs-major-version
|
|
370 emacs-minor-version
|
|
371 emacs-beta-version))
|
|
372 (emacs-patch-level (format "%d.%d.%d"
|
|
373 emacs-major-version
|
|
374 emacs-minor-version
|
|
375 emacs-patch-level))
|
|
376 (t (format "%d.%d"
|
|
377 emacs-major-version
|
|
378 emacs-minor-version))))
|
|
379 (emacs-about-version (format "version %s of September 2004"
|
428
|
380 emacs-short-version)))
|
|
381 (widget-insert (about-center emacs-about-version))
|
479
|
382 (widget-create 'link :help-echo "What's new in XEmacs"
|
428
|
383 :action 'about-news
|
|
384 emacs-about-version))
|
|
385
|
|
386 (widget-insert
|
|
387 "\n\n"
|
479
|
388 (about-with-face "XEmacs" 'bold-italic)
|
|
389 " is a powerful, highly customizable open source text editor and
|
|
390 application development system, with full GUI support. It is protected
|
|
391 under the GNU Public License and related to other versions of Emacs, in
|
|
392 particular GNU Emacs. Its emphasis is on modern graphical user
|
|
393 interface support and an open software development model, similar to
|
|
394 Linux. XEmacs has an active development community numbering in the
|
|
395 hundreds (and thousands of active beta testers on top of this), and runs
|
|
396 on all versions of MS Windows, on Linux, and on nearly every other
|
|
397 version of Unix in existence. ")
|
428
|
398 (widget-create 'link :help-echo "An XEmacs history lesson"
|
|
399 :action 'about-collaboration
|
|
400 :button-prefix ""
|
|
401 :button-suffix ""
|
479
|
402 "Support for XEmacs")
|
428
|
403 (widget-insert
|
479
|
404 " has been supplied by
|
|
405 Sun Microsystems, University of Illinois, Lucid, ETL/Electrotechnical
|
|
406 Laboratory, Amdahl Corporation, BeOpen, and others, as well as the
|
|
407 unpaid time of a great number of individual developers.
|
428
|
408
|
479
|
409 XEmacs has many ")
|
|
410 (widget-create 'link :help-echo "See a list of XEmacs advantages over GNU Emacs"
|
|
411 :action 'about-advantages
|
|
412 :button-prefix ""
|
|
413 :button-suffix ""
|
|
414 "advantages")
|
2296
|
415 (widget-insert (format " over GNU Emacs. In addition, XEmacs %d.%d
|
|
416 provides many " emacs-major-version emacs-minor-version))
|
|
417 (widget-create 'link
|
|
418 :help-echo (format
|
|
419 "See a list of new features in XEmacs %d.%d"
|
|
420 emacs-major-version emacs-minor-version)
|
479
|
421 :action 'about-news
|
428
|
422 :button-prefix ""
|
|
423 :button-suffix ""
|
|
424 "new features")
|
479
|
425 (widget-insert " not found in previous versions of XEmacs.
|
|
426 More details on XEmacs's functionality, including bundled packages, can
|
|
427 be obtained through the ")
|
428
|
428 (widget-create 'info-link
|
|
429 :help-echo "Browse the info system"
|
|
430 :button-prefix ""
|
|
431 :button-suffix ""
|
|
432 :tag "info"
|
|
433 "(dir)")
|
|
434
|
|
435 (widget-insert
|
|
436 " on-line information system.\n
|
|
437 The XEmacs web page can be browsed, using any WWW browser at\n
|
|
438 \t\t ")
|
479
|
439 (about-url-link 'xemacs nil "Visit XEmacs WWW page")
|
428
|
440 (widget-insert "\n
|
|
441 Note that W3 (XEmacs's own browser), might need customization (due to
|
|
442 firewalls) in order to work correctly.
|
|
443
|
|
444 XEmacs is the result of the time and effort of many people. The
|
|
445 developers responsible for this release are:\n\n")
|
|
446
|
|
447 (flet ((setup-person (who)
|
|
448 (widget-insert "\t* ")
|
|
449 (let* ((entry (assq who xemacs-hackers))
|
|
450 (name (cadr entry))
|
|
451 (address (caddr entry)))
|
|
452 (widget-create 'link
|
|
453 :help-echo (concat "Find out more about " name)
|
|
454 :button-prefix ""
|
|
455 :button-suffix ""
|
|
456 :action 'about-maintainer
|
|
457 :tag name
|
|
458 :value who)
|
|
459 (widget-insert (format " <%s>\n" address)))))
|
|
460 ;; Setup persons responsible for this release.
|
479
|
461 (mapc 'setup-person about-current-release-maintainers)
|
428
|
462 (widget-insert "\n\t* ")
|
|
463 (widget-create 'link :help-echo "A legion of XEmacs hackers"
|
|
464 :action 'about-hackers
|
|
465 :button-prefix ""
|
|
466 :button-suffix ""
|
479
|
467 "The full list of contributors...")
|
428
|
468 (widget-insert "\n
|
2297
|
469 The current package release engineer is Norbert Koch.
|
|
470 Andreas Jaeger was the first package release engineer following the split
|
|
471 of the XEmacs code base into core implementation and packaged Lisp.
|
|
472 He was succeeded by Steve Youngs, then Ville Skyttä.\n\n")
|
|
473 (setup-person 'viteno)
|
|
474 (setup-person 'aj)
|
|
475 (setup-person 'scop)
|
|
476 (widget-insert "
|
|
477 Vin Shelton is the maintainer of the stable branch, 21.4.
|
|
478 Stephen Turnbull was the project manager for the release. Andy Piper
|
|
479 maintained the Windows branch until the release was declared stable.\n\n")
|
|
480 (setup-person 'vin)
|
|
481 (setup-person 'turnbull)
|
|
482 (setup-person 'piper)
|
|
483 (widget-insert "
|
|
484 Ben Wing and Martin Buchholz were heavy code contributors and maintainers
|
|
485 for 21.2 (the development branch leading to 21.4).\n\n")
|
|
486 (setup-person 'martin)
|
|
487 (setup-person 'ben)
|
|
488 (widget-insert "
|
479
|
489 Steve Baur was the primary maintainer for 19.15 through 21.0.\n\n")
|
|
490 (setup-person 'slb)
|
428
|
491 (widget-insert "
|
479
|
492 Chuck Thompson and Ben Wing were the maintainers for 19.11 through 19.14
|
|
493 and heavy code contributors for 19.8 through 19.10.\n\n")
|
|
494 (setup-person 'cthomp)
|
|
495 (setup-person 'ben)
|
|
496 (widget-insert "
|
|
497 Jamie Zawinski was the maintainer for 19.0 through 19.10 (the entire
|
|
498 history of Lucid Emacs).\n\n")
|
|
499 (setup-person 'jwz))
|
|
500 (about-finish-buffer)
|
|
501 ;; it looks horrible with the cursor on the first line, since it's
|
|
502 ;; so big.
|
|
503 (goto-line 2)))
|
428
|
504
|
|
505 ;; View news
|
|
506 (defun about-news (&rest ignore)
|
|
507 (view-emacs-news)
|
|
508 (message "%s" (substitute-command-keys
|
|
509 "Press \\[kill-buffer] to exit this buffer")))
|
|
510
|
|
511 (defun about-collaboration (&rest ignore)
|
|
512 (unless (about-get-buffer "*About Collaboration*")
|
|
513 (let ((title "Why Another Version of Emacs"))
|
|
514 (widget-insert
|
|
515 "\n"
|
|
516 (about-center title)
|
|
517 (about-with-face title 'bold)))
|
|
518 (widget-insert
|
|
519 "\n\n"
|
|
520 (about-with-face "The Lucid, Inc. Point of View"
|
|
521 'italic)
|
|
522 " (quite outdated)\n
|
|
523 At the time of the inception of Lucid Emacs (the former name of
|
|
524 XEmacs), Lucid's latest product was Energize, a C/C++ development
|
|
525 environment. Rather than invent (and force our users to learn) a new
|
|
526 user interface, we chose to build part of our environment on top of
|
|
527 the world's best editor, GNU Emacs. (Though our product is
|
|
528 commercial, the work we did on GNU Emacs is free software, and is
|
|
529 useful in its own right.)
|
|
530
|
|
531 We needed a version of Emacs with mouse-sensitive regions, multiple
|
|
532 fonts, the ability to mark sections of a buffer as read-only, the
|
|
533 ability to detect which parts of a buffer have been modified, and many
|
|
534 other features.
|
|
535
|
|
536 For our purposes, the existing version of Epoch was not sufficient; it
|
|
537 did not allow us to put arbitrary pixmaps/icons in buffers, `undo' did
|
|
538 not restore changes to regions, regions did not overlap and merge
|
|
539 their attributes in the way we needed, and several other things.
|
|
540
|
|
541 We could have devoted our time to making Epoch do what we needed (and,
|
|
542 in fact, we spent some time doing that in 1990) but, since the FSF
|
|
543 planned to include Epoch-like features in their version 19, we decided
|
|
544 that our efforts would be better spent improving Emacs 19 instead of
|
|
545 Epoch.
|
|
546
|
|
547 Our original hope was that our changes to Emacs would be incorporated
|
|
548 into the \"official\" v19. However, scheduling conflicts arose, and
|
|
549 we found that, given the amount of work still remaining to be done, we
|
|
550 didn't have the time or manpower to do the level of coordination that
|
|
551 would be necessary to get our changes accepted by the FSF.
|
|
552 Consequently, we released our work as a forked branch of Emacs,
|
|
553 instead of delaying any longer.
|
|
554
|
|
555 Roughly a year after Lucid Emacs 19.0 was released, a beta version of
|
|
556 the FSF branch of Emacs 19 was released. The FSF version is better in
|
|
557 some areas, and worse in others, as reflects the differing focus of
|
|
558 our development efforts.
|
|
559
|
|
560 We plan to continue developing and supporting Lucid Emacs, and merging
|
|
561 in bug fixes and new features from the FSF branch as appropriate; we
|
|
562 do not plan to discard any of the functionality that we implemented
|
|
563 which RMS has chosen not to include in his version.
|
|
564
|
|
565 Certain elements of Lucid Emacs, or derivatives of them, have been
|
|
566 ported to the FSF version. We have not been doing work in this
|
|
567 direction, because we feel that Lucid Emacs has a cleaner and more
|
|
568 extensible substrate, and that any kind of merger between the two
|
|
569 branches would be far easier by merging the FSF changes into our
|
|
570 version than the other way around.
|
|
571
|
|
572 We have been working closely with the Epoch developers to merge in the
|
|
573 remaining Epoch functionality which Lucid Emacs does not yet have.
|
|
574 Epoch and Lucid Emacs will soon be one and the same thing. Work is
|
|
575 being done on a compatibility package which will allow Epoch 4 code to
|
|
576 run in XEmacs with little or no change.\n\n"
|
|
577 (about-with-face "The Sun Microsystems, Inc. Point of View"
|
|
578 'italic)
|
|
579 "\n
|
|
580 Emacs 18 has been around for a long, long time. Version 19 was
|
|
581 supposed to be the successor to v18 with X support. It was going to
|
|
582 be available \"real soon\" for a long time (some people remember
|
|
583 hearing about v19 as early as 1984!), but it never came out. v19
|
|
584 development was going very, very slowly, and from the outside it
|
|
585 seemed that it was not moving at all. In the meantime other people
|
|
586 gave up waiting for v19 and decided to build their own X-aware
|
|
587 Emacsen. The most important of these was probably Epoch, which came
|
|
588 from the University of Illinois (\"UofI\") and was based on v18.
|
|
589
|
|
590 Around 1990, the Developer Products group within Sun Microsystems
|
|
591 Inc., decided that it wanted an integrated editor. (This group is now
|
|
592 known as DevPro. It used to be known as SunPro - the name was changed
|
|
593 in mid-1994.) They contracted with the University of Illinois to
|
|
594 provide a number of basic enhancements to the functionality in Epoch.
|
|
595 UofI initially was planning to deliver this on top of Epoch code.
|
|
596
|
|
597 In the meantime, (actually some time before they talked with UofI)
|
|
598 Lucid had decided that it also wanted to provide an integrated
|
|
599 environment with an integrated editor. Lucid decided that the Version
|
|
600 19 base was a better one than Version 18 and thus decided not to use
|
|
601 Epoch but instead to work with Richard Stallman, the head of the Free
|
|
602 Software Foundation and principal author of Emacs, on getting v19 out.
|
|
603 At some point Stallman and Lucid parted ways. Lucid kept working and
|
|
604 got a v19 out that they called Lucid Emacs 19.
|
|
605
|
|
606 After Lucid's v19 came out it became clear to us (the UofI and Sun)
|
|
607 that the right thing to do was to push for an integration of both
|
|
608 Lucid Emacs and Epoch, and to get the deliverables that Sun was asking
|
|
609 from the University of Illinois on top of this integrated platform.
|
|
610 Until 1994, Sun and Lucid both actively supported XEmacs as part of
|
|
611 their product suite and invested a comparable amount of effort into
|
|
612 it. Substantial portions of the current code have originated under
|
|
613 the support of Sun, either directly within Sun, or at UofI but paid
|
|
614 for by Sun. This code was kept away from Lucid for a while, but later
|
|
615 was made available to them. Initially Lucid didn't know that Sun was
|
|
616 supporting UofI, but later Sun was open about it.
|
|
617
|
|
618 Around 1992 DevPro-originated code started showing up in Lucid Emacs,
|
|
619 starting with the infusion of the Epoch redisplay code. The separate
|
|
620 code bases at Lucid, Sun, and the University of Illinois were merged,
|
|
621 allowing a single XEmacs to evolve from that point on.
|
|
622
|
|
623 Sun originally called the integrated product ERA, for \"Emacs
|
|
624 Rewritten Again\". SunPro and Lucid eventually came to an agreement
|
|
625 to find a name for the product that was not specific to either
|
|
626 company. An additional constraint that Lucid placed on the name was
|
|
627 that it must contain the word \"Emacs\" in it -- thus \"ERA\" was not
|
|
628 acceptable. The tentatively agreed-upon name was \"XEmacs\", and this
|
|
629 has been the name of the program since version 19.11.)
|
|
630
|
|
631 As of 1997, Sun is shipping XEmacs as part of its Developer Products
|
|
632 integrated programming environment \"Sun WorkShop\". Sun is
|
|
633 continuing to support XEmacs development, with focus on
|
|
634 internationalization and quality improvement.\n\n"
|
|
635 (about-with-face "Lucid goes under" 'italic)
|
|
636 "\n
|
|
637 Around mid-'94, Lucid went out of business. Lucid founder Richard
|
|
638 Gabriel's book \"Patterns of Software\", which is highly recommended
|
|
639 reading in any case, documents the demise of Lucid and suggests
|
|
640 lessons to be learned for the whole software development community.
|
|
641
|
|
642 Development on XEmacs, however, has continued unabated under the
|
|
643 auspices of Sun Microsystems and the University of Illinois, with help
|
|
644 from Amdahl Corporation and INS Engineering Corporation. Sun plans to
|
|
645 continue to support XEmacs into the future.\n\n"
|
|
646 (about-with-face "The Amdahl Corporation point of view"
|
|
647 'italic)
|
|
648 "\n
|
|
649 Amdahl Corporation's Storage Products Group (SPG) uses XEmacs as the
|
|
650 focal point of a environment for development of the microcode used in
|
|
651 Amdahl's large-scale disk arrays, or DASD's. SPG has joint ventures
|
|
652 with Japanese companies, and decided in late 1994 to contract out for
|
|
653 work on XEmacs in order to hasten the development of Mule support
|
|
654 \(i.e. support for Japanese, Chinese, etc.) in XEmacs and as a gesture
|
|
655 of goodwill towards the XEmacs community for all the work they have
|
|
656 done on making a powerful, modern, freely available text editor.
|
|
657 Through this contract, Amdahl provided a large amount of work in
|
|
658 XEmacs in the form of rewriting the basic text-processing mechanisms
|
|
659 to allow for Mule support and writing a large amount of the support
|
|
660 for multiple devices.
|
|
661
|
|
662 Although Amdahl is no longer hiring a full-time contractor, they are
|
|
663 still funding part-time work on XEmacs and providing resources for
|
|
664 further XEmacs development.\n\n"
|
|
665 (about-with-face "The INS Engineering point of view"
|
|
666 'italic)
|
|
667 "\n
|
|
668 INS Engineering Corporation, based in Tokyo, bought rights to sell
|
|
669 Energize when Lucid went out of business. Unhappy with the
|
|
670 performance of the Japanese support in XEmacs 19.11, INS also
|
|
671 contributed to the XEmacs development from late 1994 to early
|
|
672 1995.\n")
|
|
673 (about-finish-buffer)))
|
|
674
|
479
|
675 (defun about-advantages (&rest ignore)
|
|
676 (unless (about-get-buffer "*About Advantages*")
|
|
677 (let ((title "XEmacs Advantages over GNU Emacs"))
|
428
|
678 (widget-insert
|
|
679 "\n"
|
|
680 (about-center title)
|
|
681 (about-with-face title 'bold)))
|
|
682 (widget-insert
|
|
683 "\n
|
479
|
684 * Much better GUI support:
|
428
|
685
|
479
|
686 -- a real toolbar
|
|
687 -- more comprehensive and better-designed menubars
|
|
688 -- horizontal and vertical scrollbars in all windows
|
|
689 -- proper dialog boxes
|
|
690 -- tabs for selecting buffers
|
|
691 -- support for variable-width and variable height fonts
|
|
692 -- support for arbitrary pixmaps and widgets in a buffer
|
|
693 -- face support on TTY's, including color
|
428
|
694
|
2297
|
695 Many of these are now available in GNU Emacs 21, but the XEmacs
|
|
696 implementations are generally more efficient, and the XEmacs APIs are
|
|
697 generally more in line with modern programming practices.
|
|
698
|
479
|
699 * An installable package system, with a huge number of packages available
|
|
700 that have been tested and are known to work with the latest version
|
|
701 of XEmacs.
|
428
|
702
|
479
|
703 * Comprehensive support for the GTK toolkit.
|
428
|
704
|
479
|
705 * An open development community, with contributions welcome and no need
|
|
706 to sign over your copyright to any organization. (Please send
|
|
707 contributions to xemacs-patches@xemacs.org. See http://www.xemacs.org
|
|
708 for more information on XEmacs mailing lists, and other info.)
|
428
|
709
|
|
710 * Support for display on multiple simultaneous X and/or TTY devices.
|
|
711
|
|
712 * Powerful, flexible control over the display characteristics of most
|
|
713 of the visual aspects of XEmacs through the use of specifiers, which
|
|
714 allow separate values to be specified for individual buffers,
|
|
715 windows, frames, devices, device classes, and device types.
|
|
716
|
479
|
717 * A clean, modern, abstracted Lisp interface to the menubar, toolbar,
|
|
718 window-system events, key combinations, extents (regions in a buffer
|
|
719 with specific properties), and all other display aspects.
|
428
|
720
|
|
721 * Proper integration with Xt and Motif (including Motif menubars and
|
|
722 scrollbars). Motif look-alike menubars and scrollbars are provided
|
|
723 for those systems without real Motif support.
|
|
724
|
479
|
725 * Many improvements to the multilingual support, such as the ability to
|
|
726 enter text for complex languages using the XIM mechanism and
|
|
727 localization of menubar text for the Japanese locale.
|
|
728 \n\n")
|
428
|
729 (about-finish-buffer)))
|
|
730
|
|
731 (defvar about-glyphs nil
|
|
732 "Cached glyphs")
|
|
733
|
|
734 ;; Return a maintainer's glyph
|
|
735 (defun about-maintainer-glyph (who)
|
|
736 (let ((glyph (cdr (assq who about-glyphs))))
|
|
737 (unless glyph
|
|
738 (let ((file (expand-file-name
|
|
739 (concat (symbol-name who)
|
|
740 (if (memq (device-class)
|
|
741 '(color grayscale))
|
|
742 "" "m")
|
|
743 ".png")
|
|
744 (locate-data-directory "photos")))
|
|
745 (data nil))
|
|
746 (setq glyph
|
|
747 (cond ((stringp data)
|
|
748 (make-glyph
|
|
749 (if (featurep 'png)
|
|
750 `([png :data ,data]
|
|
751 [string :data "[Image]"])
|
|
752 `([string :data "[Image]"]))))
|
|
753 ((eq data 'error)
|
|
754 (make-glyph [string :data "[Error]"]))
|
|
755 (file
|
|
756 (make-glyph
|
|
757 (if (featurep 'png)
|
|
758 `([png :file ,file]
|
|
759 [string :data "[Image]"])
|
|
760 `([string :data "[Image]"]))))
|
|
761 (t
|
|
762 (make-glyph [nothing]))))
|
|
763 (set-glyph-property glyph 'baseline 100)
|
|
764 ;; Cache the glyph
|
|
765 (push (cons who glyph) about-glyphs)))
|
|
766 glyph))
|
|
767
|
479
|
768 ;; Insert personal info about a maintainer. See also
|
|
769 ;; `about-hacker-contribution'. Note that the info in
|
|
770 ;; `about-hacker-contribution' is automatically displayed in the
|
|
771 ;; person's own page, so there is no need to duplicate it.
|
|
772 (defun about-personal-info (entry)
|
428
|
773 (ecase (car entry)
|
479
|
774 ;; you can sort the stuff below with something like
|
|
775 ;;(sort-regexp-fields nil
|
|
776 ;; " *(\\([^()]\\|([^()]*)\\|(\\([^()]\\|([^()]*)\\)*)\\)*)\n"
|
|
777 ;; " *(\\([a-z]*\\)"
|
|
778 ;; (region-beginning) (region-end))
|
|
779 (adrian
|
428
|
780 (widget-insert
|
|
781 "\
|
479
|
782 Sorry, no personal information available about me yet.\n"))
|
|
783 (aj
|
428
|
784 (widget-insert "\
|
479
|
785 I'm a software developer working for the SuSE Labs of the Linux
|
|
786 distributor SuSE. My main task is to improve the GNU C library.")
|
428
|
787 (widget-insert ".\n"))
|
|
788 (ajc
|
|
789 (widget-insert "\
|
|
790 When not helping maintain the XEmacs website, Andrew is a Network
|
|
791 Software Engineer(tm) for Monash University in Australia, maintaining
|
|
792 webservers and doing random other things. As well as spending spare
|
|
793 time being an Eager Young Space Cadet and fiddling with XEmacs/Gnus
|
|
794 et. al., he spends his time pursuing, among other things, a Life.
|
|
795 Some of this currently involves doing an A-Z (by country) of
|
|
796 restaurants with friends, and has, in the past, involved dyeing his
|
|
797 hair various colours (see ")
|
479
|
798 (about-url-link 'ajc nil "Visit Andrew's home page")
|
428
|
799 (widget-insert ".\n"))
|
479
|
800 (alastair
|
|
801 (widget-insert
|
|
802 "\
|
487
|
803 Alastair, apart from being an all-round hacker, occasional contributor
|
|
804 to free software projects and general good egg(!), currently works for
|
|
805 Telsis, a manufacturer of telephony equipment on the south coast of
|
|
806 England. He'd quite like to have his own company one day, but has yet
|
|
807 to think of that killer product...
|
|
808
|
|
809 See also ")
|
|
810 (about-url-link 'alastair nil "Visit Alastair's home page")
|
|
811 (widget-insert ".\n"))
|
479
|
812 (baw
|
428
|
813 (widget-insert "\
|
479
|
814 As of November 2000, I am a software engineer with the Pythonlabs at
|
|
815 Digital Creations. Pythonlabs is the core team developing and
|
|
816 maintaining the Python open source, object-oriented scripting
|
|
817 language. Digital Creations is the publisher of Zope, an open source
|
|
818 content management system written in Python.
|
|
819
|
|
820 In addition to my Python and Zope work, I am lead developer for the
|
|
821 GNU Mailman project, a mailing list management system written,
|
|
822 naturally, in Python. See the trend?
|
|
823
|
|
824 On the side I play bass with a number of Washington DC area bands and
|
|
825 also write poems about cows, milk, and fathers. Here's a sample, and
|
|
826 drop me an email if you live in the NYC to Charlotte region; I'll let
|
|
827 you know when the band's playing in your area. It'd be cool to meet
|
|
828 you, and talking about XEmacs would make my wife very happy by helping
|
|
829 to fend off the legions of groupies that seem to follow me everywhere.
|
|
830
|
|
831 Milk Me Daddy
|
|
832 (C) 1990 Warsaw
|
|
833 ===============
|
|
834 Oh daddy with your fingers pink
|
|
835 From whose udders do you drink?
|
|
836 Thy milk offends with putrid stink
|
|
837 I'll vomit now, lactose I think
|
|
838
|
|
839 If I could dream, I'd be a cow
|
|
840 Not horse, or mule, or barnyard sow
|
|
841 The cud I'd chew would drip and how!
|
|
842 So milk me daddy, milk me now!
|
|
843
|
|
844 My bovine nature knows no bounds
|
|
845 I'd naught awake at midnight sounds
|
|
846 Of teens approaching o'er the grounds
|
|
847 To tip with glee, then screech like clowns
|
|
848
|
|
849 And so I stare into this glass
|
|
850 Of sweaty juice, I gulp so fast
|
|
851 Each drop I lick, down to the last
|
|
852 The vertigo I know will pass
|
|
853
|
|
854 My mother smiles and pats my head
|
|
855 She's proud of me, so she has said
|
|
856 My pop just now gets out of bed
|
|
857 His eyes quite comatose and red
|
|
858
|
|
859 He'll empathize my milky fate
|
|
860 Whilest sopping gravy from his plate
|
|
861 And as the hour is getting late
|
|
862 His belly taut with all he ate
|
|
863
|
|
864 He isn't often quite so chatty
|
|
865 His arteries clogged with meat so fatty
|
|
866 With burps that launch soup, thick and splatty
|
|
867 Oh how I wish you'd milk me daddy\n\n\t")
|
|
868 (about-url-link 'baw nil "Visit Barry's home page")
|
|
869 (widget-insert "\n"))
|
|
870 (ben
|
|
871 (widget-insert
|
|
872 "\
|
|
873 Since September 1992, I've worked on XEmacs as a contractor for
|
|
874 various companies and more recently as an unpaid volunteer.
|
428
|
875
|
479
|
876 Alas, life has not been good to me recently. This former San
|
|
877 Francisco \"Mission Critter\" developed insidious hand and neck
|
|
878 problems after a brief stint working on a Java-based VRML toolkit for
|
|
879 the now defunct Dimension X, and I was forced to quit working. I was
|
|
880 exiled first to \"Stroller Valley\" and later all the way to Tucson,
|
|
881 Arizona, and for two years was almost completely disabled due to pain.
|
|
882 More recently I have fought my way back with loads and loads of
|
|
883 narcotic painkillers, and currently I'm an art student at the
|
|
884 University of Arizona.\n\n")
|
|
885 (widget-insert "Architecting XEmacs: ")
|
|
886 (about-url-link 'ben-xemacs nil "Find the miracles in store for XEmacs")
|
|
887 (widget-insert "\nBen's home page: ")
|
|
888 (about-url-link 'ben nil "Visit Ben's page")
|
|
889 (widget-insert "\n"))
|
|
890 (bw
|
|
891 (widget-insert "\
|
|
892 His interests include user interfaces, information management, CASE
|
|
893 tools, communications and enterprise integration.\n"))
|
|
894 (cgw
|
|
895 (widget-insert
|
|
896 "\
|
|
897 Sorry, no personal information available about me yet.\n"))
|
|
898 (chr
|
|
899 (widget-insert "\
|
|
900 Christian is a student at the Norwegian School of Economics and
|
|
901 Business Administration in Bergen, Norway. He used to work for an
|
|
902 internet startup called New Media Science, doing scripting and
|
|
903 violation of HTML DTD's. After graduation, spring 1999, he'll be
|
|
904 looking for a job involving lisp programming, French and Russian.\n"))
|
|
905 (craig
|
|
906 (widget-insert
|
|
907 "\
|
|
908 Sorry, no personal information available about me yet.\n"))
|
|
909 (cthomp
|
|
910 (widget-insert "\
|
487
|
911 Chuck is a senior system and network administrator for the Computer
|
|
912 Science department at the Unversity of Illinois. In one previous life
|
|
913 he spent every waking hour working on XEmacs. In another he dabbled
|
|
914 as a project manager for a streaming video startup (RIP). His current
|
|
915 reason for not having time to contribute to XEmacs is the Thompson
|
|
916 Twins.\n"))
|
479
|
917 (daiki
|
|
918 (about-url-link 'daiki nil "Visit Daiki's page"))
|
|
919 (dan
|
|
920 (widget-insert
|
|
921 "\
|
|
922 Sorry, no personal information available about me yet.\n"))
|
|
923 (darrylo
|
|
924 (widget-insert
|
|
925 "\
|
|
926 Perennial Emacs hacker since 1986 or so, when he first started on GNU
|
|
927 Emacs 17.something. Over the years, he's developed \"OEmacs\", the first
|
|
928 version of GNU Emacs 19 for MSDOS, and \"bigperl\", a 32-bit version of
|
|
929 Perl4 for MSDOS. In recent years, reality has intruded and he no longer
|
|
930 has much time for playing with cool programs. What little time he has
|
|
931 now goes to XEmacs hacking, where he's worked on speeding up dired under
|
|
932 MS Windows, and to feeding his two cats.\n"))
|
|
933 (devin
|
|
934 (widget-insert
|
|
935 "\
|
|
936 Sorry, no personal information available about me yet.\n"))
|
428
|
937 (dkindred
|
|
938 (widget-insert "\
|
|
939 Darrell is currently a doctoral student in computer science at
|
|
940 Carnegie Mellon University, but he's trying hard to kick that
|
|
941 habit.
|
|
942
|
|
943 See ")
|
479
|
944 (about-url-link 'dkindred nil "Visit Darrell's WWW page")
|
428
|
945 (widget-insert ".\n"))
|
479
|
946 (dmoore
|
428
|
947 (widget-insert "\
|
479
|
948 David is a student in the Computer Systems Laboratory at UCSD. When
|
|
949 he manages to have free time, he usually spends it on 200 mile bicycle
|
|
950 rides, learning German or showing people the best mail & news
|
|
951 environment he's found in 10 years. (That'd be XEmacs, Gnus and bbdb,
|
|
952 of course.) He can be found at `druidmuck.egbt.org 4201' at various
|
|
953 hours of the day.
|
|
954
|
|
955 He has a page at ")
|
|
956 (about-url-link 'dmoore nil "Visit David's home page")
|
428
|
957 (widget-insert ".\n"))
|
|
958 (dv
|
|
959 (widget-insert "\
|
452
|
960 I graduated at ENST (an engineering school in Paris) and have a Ph.D.
|
|
961 in computer science. I'm currently a teacher at EPITA (another
|
|
962 engineering school, still in Paris) and a researcher at LRDE (EPITA's
|
|
963 research and development laboratory). Our research topics include
|
|
964 generic programming and distributed virtual reality.
|
428
|
965
|
452
|
966 Apart from XEmacs, I'm also involved in other free software projects,
|
|
967 including Gnus, BBDB, and the GNU \"autotools\". I also wrote some
|
|
968 LaTeX packages (ugh :-).
|
|
969
|
|
970 All of this, actually, is only 60% true. Two days per week, I'm also a
|
|
971 semi-professional Jazz guitar player (and singer), which means that it
|
|
972 is not the way I earn my crust, but things may very well reverse in
|
|
973 the future ...\n\n")
|
|
974 (widget-insert "Visit Didier's home page: ")
|
479
|
975 (about-url-link 'dv nil "Visit Didier's home page")
|
|
976 (widget-insert "\n"))
|
|
977 (eb
|
|
978 (widget-insert
|
|
979 "\
|
|
980 Sorry, no personal information available about me yet.\n"))
|
|
981 (fabrice
|
|
982 (widget-insert
|
|
983 "\
|
|
984 I'm a computer science researcher and teacher in a French electrical
|
|
985 engineering institution called Supelec. My fields of interest are
|
|
986 symbolic artificial intelligence, theoretical computer science, functional
|
|
987 languages ... and TeX.
|
|
988
|
|
989 Lately, my hacking time has been devoted to porting the Web2C/teTeX
|
|
990 distribution of TeX for Unix to Win32, and I'm still maintaining it.
|
|
991 It is included in the TeX Live cdrom edited by Sebastian Rahtz.\n")
|
|
992 (widget-insert "Visit fpTeX home page: ")
|
|
993 (about-url-link 'fptex nil "Visit fpTeX home page")
|
|
994 (widget-insert "\nFabrice's home page: ")
|
|
995 (about-url-link 'fabrice nil "Visit Fabrice's page")
|
452
|
996 (widget-insert "\n"))
|
479
|
997 (golubev
|
|
998 (widget-insert
|
|
999 "\
|
1215
|
1000 I appreciate power of XEmacs, but elementary editing operations should
|
|
1001 be done by single keystrokes with no modifiers. So would not use
|
|
1002 XEmacs until discovered viper, and now can't live without viper.
|
|
1003 Occasionally dislike something in there or in other free software, and
|
1248
|
1004 try to get it fixed. .plan file contains classic \(perhaps reinvented
|
|
1005 independently\) formula:
|
1215
|
1006
|
|
1007 Hacking world for ever
|
|
1008
|
1248
|
1009 \(borrowed from \"Hacking X for Y\" in ")
|
1215
|
1010 (about-url-link "http://www.jargon.org/"
|
|
1011 "Jargon File" "www.jargon.org")
|
|
1012 (widget-insert ").\n"))
|
479
|
1013 (gunnar
|
|
1014 (widget-insert
|
|
1015 "\
|
|
1016 Sorry, no personal information available about me yet.\n"))
|
|
1017 (hbs
|
|
1018 (widget-insert
|
|
1019 "\
|
|
1020 Sorry, no personal information available about me yet.\n"))
|
|
1021 (hisashi
|
|
1022 (widget-insert
|
|
1023 "\
|
|
1024 Sorry, no personal information available about me yet.\n"))
|
|
1025 (hmuller
|
|
1026 (widget-insert
|
|
1027 "\
|
|
1028 Sorry, no personal information available about me yet.\n"))
|
|
1029 (hniksic
|
|
1030 (widget-insert "\
|
481
|
1031 Hrvoje thinks he works in the server-side web business. In reality,
|
|
1032 he cranks out huge quantities of HTML, Tcl, and Java for the German
|
|
1033 branch of ")
|
|
1034 (about-url-link "http://www.arsdigita.com/"
|
|
1035 "ArsDigita, Inc." "www.arsdigita.com")
|
|
1036 ;; Avoid literal I18N characters in strings. *Displaying* a
|
|
1037 ;; Latin 1 character should always be safe, though, with or
|
|
1038 ;; without Mule.
|
|
1039 (let ((muenchen (format "M%cnchen" (make-char 'latin-iso8859-1 252))))
|
|
1040 (widget-insert (format "\
|
|
1041 He joined the ranks of Gastarbeiters only
|
|
1042 recently; he is trying to learn German and get attuned to %s
|
|
1043 and Bav^H^H^HGermany.\n" muenchen)))
|
|
1044
|
|
1045 (widget-insert "\
|
479
|
1046
|
481
|
1047 Before ArsDigita, he worked as a programmer at ")
|
|
1048 (about-url-link "http://www.iskon.hr/" "Iskon," "www.iskon.hr")
|
|
1049 (widget-insert " a fast-growing
|
|
1050 Croatian ISP. Even before that, he worked part-time for academic
|
|
1051 institutions like ")
|
|
1052 (about-url-link "http://www.srce.hr/" "SRCE" "www.srce.hr")
|
|
1053 (widget-insert " and ")
|
|
1054 (about-url-link "http://www.carnet.hr/" "CARNet," "www.carnet.hr")
|
|
1055 (widget-insert " and tried to attend university.
|
|
1056
|
|
1057 He takes perverse pleasure in building and maintaining free software
|
|
1058 in his free time. Apart from XEmacs, his major contribution is ")
|
|
1059 (about-url-link 'wget "Wget," "Wget home page")
|
|
1060 (widget-insert "
|
|
1061 his very own creation, now jointly maintained by a happy crew.
|
|
1062
|
|
1063 He dreams of having a home page.\n"))
|
479
|
1064 (hobley
|
|
1065 (widget-insert "\
|
|
1066 I used to do real work, but now I am a Project Manager for one of the
|
|
1067 Telco's in Australia. In my spare time I like to get back to basics and
|
|
1068 muck around with things. As a result I started the NT port. Hopefully I
|
|
1069 will get to finish it sometime sooner rather than later. I do vaguely
|
|
1070 remember University where it seems like I had more spare time that I can
|
|
1071 believe now. Oh well, such is life.\n"))
|
1248
|
1072 (james
|
|
1073 (widget-insert
|
|
1074 "\
|
1290
|
1075 Jerry James was managing a software development project as a Ph.D.
|
|
1076 student when two of his M.S. student helpers convinced him to switch
|
|
1077 from FSF Emacs to XEmacs. He thought that Gnus looked a lot cooler in
|
|
1078 XEmacs, and soon had a web page containing small patches to XEmacs
|
|
1079 20.3, which were picked up by the Debian Linux distribution.
|
|
1080
|
|
1081 He has since given up his native California to join the faculty at the
|
|
1082 University of Kansas. He is learning to like the weather in Lawrence,
|
|
1083 Kansas, where he lives with his wife and 3 children. His work on XEmacs
|
|
1084 mostly consists of extensions to the loadable module support in XEmacs,
|
|
1085 which was introduced by J. Kean Johnston and others. He has a ")
|
|
1086 (about-url-link 'james "home page" "Visit Jerry's home page")
|
|
1087 (widget-insert " (doesn't everybody?)\n"))
|
479
|
1088 (jan
|
|
1089 (widget-insert "\
|
|
1090 Jan Vroonhof has been using XEmacs since he needed to write .tex files
|
|
1091 for his work as a physics and maths student at the Univerisity of Leiden.
|
|
1092 His XEmacs hacking started when XEmacs kept freezing up under a his
|
|
1093 window manager. He submitted a fix and has been hooked every since.
|
|
1094
|
|
1095 XEmacs has followed him first to Switzerland where he did a maths
|
|
1096 doctorate at the ETH in Zurich, working on a conjecture by Migdal on
|
|
1097 the behavior of vertex corrections in Electron-Phonon theory. Finally
|
|
1098 sharing a house with his loved one, he now lives in Oxford (UK)
|
|
1099 working on the Jeode Java Virtual Machine, which like XEmacs is
|
|
1100 portable, implements a language, includes a non-trivial bit of
|
|
1101 graphics and a garbage collector, but is multithreaded to boot!
|
|
1102 Unfortunately his XEmacs time is directly limited by the amount of
|
|
1103 traffic on the M40.\n"))
|
|
1104 (jareth
|
|
1105 (widget-insert "\
|
|
1106 Jareth Hein is a mountain boy who abandoned his home state of Colorado
|
|
1107 for the perpetual state of chaos known as Tokyo in a failed attempt to
|
|
1108 become a cel-animator, and a more successful one to become a
|
|
1109 computer-game programmer. As he happens to be bilingual (guess which
|
|
1110 two?) he's been doing quite a bit of MULE hacking. He's also getting
|
|
1111 his hands dirty in the graphics areas as well.\n"))
|
|
1112 (jason
|
|
1113 (widget-insert "\
|
|
1114 Jason resides in Northern New Mexico where he works as a Systems
|
|
1115 Scientist(tm) in the Los Alamos National Laboratory's Advanced
|
|
1116 Computing Group.
|
|
1117
|
|
1118 See: ")
|
|
1119 (about-url-link 'jason nil "Visit Jason's homepage")
|
|
1120 (widget-insert ".\n"))
|
|
1121 (jens
|
|
1122 (widget-insert "\
|
487
|
1123 I'm currently working for 1&1 Internet AG, a large Domain and Webspace
|
|
1124 Provider in Germany and Europe. I do mostly Java/XML/OO/Component
|
|
1125 stuff today. I'm interested EJB, Corba and other middleware or
|
|
1126 distributed Systems. Besides work, I occasionally hack on The Gimp
|
|
1127 and other gtk/gnome related projects. Maybe the advent of XEmacs/Gtk
|
|
1128 will get me back to spend some time again hacking on XEmacs in the
|
|
1129 near future.\n"))
|
479
|
1130 (jmiller
|
|
1131 (widget-insert "\
|
|
1132 Jeff grew up in Indiana and is a country boy at heart. He currently
|
|
1133 lives in, of all places, Millersville Maryland. He spends a lot of
|
|
1134 his free time tinkering with Linux and hacking on XEmacs and loves it
|
|
1135 when he finds new cool features in either. When he's not doing that,
|
|
1136 he enjoys downhill skiing, puzzles, and sci-fi. Jeff is also really
|
|
1137 interested in classical Roman history and enjoys making trips to
|
|
1138 Italy, where he was born, and seeing the sights")
|
|
1139 (widget-insert ".\n"))
|
|
1140 (jonathan
|
428
|
1141 (widget-insert "\
|
479
|
1142 I work for Symbian Ltd in London, England, looking after low-level
|
|
1143 kernel, peripheral and toolchain stuff for the EPOC OS.
|
|
1144
|
|
1145 I've been using XEmacs since 1994, but didn't start hacking on it
|
|
1146 until late 1997 when I started working at Symbian, a Windows-only
|
|
1147 company, and felt lost without my favourite editing environment.\n"))
|
|
1148 (juhp
|
|
1149 (widget-insert "\
|
|
1150 Jens was born in Copenhagen, grew up in Britain and is now living in
|
|
1151 Japan. He started using XEmacs 20 (instead of Emacs) as his
|
|
1152 work-environment in June 1997 while still an EU postdoc at RIMS, Kyoto
|
|
1153 University, and quickly got involved in XEmacs development. Recently
|
|
1154 he is getting into Haskell, a very nice pure functional programming
|
|
1155 language.
|
|
1156
|
|
1157 ")
|
|
1158 (about-url-link 'juhp nil "Visit Jens' homepage")
|
|
1159 (widget-insert "\n"))
|
|
1160 (jwz
|
|
1161 (widget-insert
|
|
1162 "\t"
|
|
1163 (about-with-face "\"So much to do, so little time.\"" 'italic)
|
|
1164 "\n
|
|
1165 Jamie Zawinski was primarily to blame for Lucid Emacs from its
|
|
1166 inception in 1991, to 1994 when Lucid Inc. finally died. After that,
|
|
1167 he was one of the initial employees of Netscape Communications, writing
|
|
1168 the first Unix version of Netscape Navigator, and designing and
|
|
1169 implementing the first version of the Netscape Mail and News readers.
|
|
1170 He then helped create and run ")
|
|
1171 (about-url-link "http://www.mozilla.org/"
|
|
1172 "mozilla.org"
|
|
1173 "Visit The Mozilla Organization")
|
|
1174 (widget-insert " for its first two years,
|
|
1175 until America Online bought Netscape Communications, at which point he
|
|
1176 gave up in disgust and dropped out of the computer industry entirely.
|
|
1177
|
|
1178 He now runs a ")
|
|
1179 (about-url-link "http://www.dnalounge.com/"
|
|
1180 "nightclub"
|
|
1181 "Visit The DNA Lounge")
|
|
1182 (widget-insert " in San Francisco, and occasionally writes
|
|
1183 screen savers.\n\n")
|
|
1184 (widget-insert "Visit jwz's ")
|
|
1185 (about-url-link 'jwz "home page" "Visit jwz's home page")
|
|
1186 (widget-insert ".\n"))
|
|
1187 (kazz
|
|
1188 (widget-insert "\
|
|
1189 Kazz is the XEmacs lead on BSD (especially FreeBSD).
|
|
1190 His main workspace is, probably, the latest stable version of
|
|
1191 FreeBSD and it makes him comfortable and not.
|
|
1192 His *mission* is to make XEmacs runs on FreeBSD without
|
|
1193 any problem.
|
|
1194
|
|
1195 In real life, he is working on a PDM product based on CORBA,
|
|
1196 and doing consultation, design and implemention.
|
|
1197 He loves to play soccer, yes football!
|
|
1198 See also:")
|
|
1199 (about-url-link 'kazz nil "Visit Kazz's home page")
|
|
1200 (widget-insert ".\n"))
|
|
1201 (kirill
|
|
1202 (widget-insert
|
|
1203 "\
|
|
1204 Sorry, no personal information available about me yet.\n"))
|
|
1205 (kyle
|
|
1206 (widget-insert "\
|
|
1207 See\n")
|
|
1208 (about-url-link 'kyle nil "Visit Kyle's Home page")
|
|
1209 (widget-insert ".\n"))
|
|
1210 (larsi
|
|
1211 (widget-insert "\
|
|
1212 Lars's day job is as the head of the IT department of a Norwegian
|
|
1213 Internet stock broker. He claims no responsibility for the Dot
|
|
1214 Com Bomb, but he snickers a lot.
|
|
1215
|
|
1216 See ")
|
|
1217 (about-url-link 'larsi nil "Visit the Larsissistic pages")
|
|
1218 (widget-insert ".\n"))
|
|
1219 (marcpa
|
|
1220 (widget-insert "\
|
|
1221 I work for Positron Industries Inc., Public Safety Division.
|
|
1222 I'm part of the team producing POWER 911, a 911 emergency response
|
|
1223 system written in Modula3:\n")
|
|
1224 (about-url-link 'marcpa nil "Visit POWER 911")
|
|
1225 (widget-insert "\
|
|
1226 \n\nPreviously, I worked at Softimage Inc., now a Microsoft company
|
|
1227 \(eeekkk!), as a UNIX system administrator. This is where I've been
|
|
1228 converted to NT.
|
|
1229
|
|
1230 In a previous life, I was a programmer/sysadmin at CRIM (Centre de
|
|
1231 Recherche Informatique de Montreal) for the speech recognition group.\n"))
|
|
1232 (martin
|
|
1233 (widget-insert "\
|
|
1234 Martin was the XEmacs guy at DevPro, a part of Sun Microsystems.
|
|
1235 Martin used to do XEmacs as a `hobby' while at IBM, and was crazy
|
|
1236 enough to try to make a living doing it at Sun.
|
|
1237
|
|
1238 Martin starting using Emacs originally not to edit files, but to get
|
|
1239 the benefit of shell mode. He actually used to run nothing but a shell
|
|
1240 buffer, and use `xterm -e vi' to edit files. But then he saw the
|
|
1241 light. He dreams of rewriting shell mode from scratch. Stderr should
|
|
1242 show up in red!!
|
|
1243
|
|
1244 Martin is no longer doing XEmacs for a living, and is Just Another
|
|
1245 Volunteer.\n"))
|
|
1246 (mcook
|
|
1247 (widget-insert
|
|
1248 "\
|
|
1249 Sorry, no personal information available about me yet.\n"))
|
|
1250 (mly
|
|
1251 (widget-insert "Cars are evil. Ride a bike.\n"))
|
|
1252 (morioka
|
|
1253 (widget-insert "\
|
|
1254 I am a doctoral student at School of Information Science of JAIST
|
|
1255 \(Japan Advanced Institute of Science and Technology, Hokuriku). I'm
|
|
1256 interested in Natural Language, Affordance and writing systems.\n"))
|
|
1257 (mta
|
|
1258 (widget-insert
|
|
1259 "\
|
|
1260 I am a software developer who worked for the University of Michigan
|
|
1261 for many years where I was one of the principal architects of the
|
|
1262 Michigan Terminal System. For the last several years I've been
|
|
1263 working for Arbortext, a publisher of XML publishing and content
|
|
1264 management software.\n"))
|
428
|
1265 (ograf
|
|
1266 (widget-insert "\
|
|
1267 I'm a student of computer sciences at the University of Koblenz. My
|
|
1268 major is computational linguistics (human language generation and
|
|
1269 analysis).
|
|
1270
|
|
1271 I make my living as a managing director of a small but fine company
|
|
1272 which I started two years ago with one of my friends. We provide
|
|
1273 business network solutions based on linux servers and various other
|
|
1274 networking products.
|
|
1275
|
|
1276 Most of my spare time I spent on the development of the XEmacs
|
|
1277 Drag'n'Drop API, a enhanced version of Tk called TkStep (better looks,
|
|
1278 also Drag'n'Drop, and more), and various other hacks: ISDN-tools,
|
|
1279 cd players, python, etc...
|
|
1280
|
|
1281 To see some of these have a look at ")
|
479
|
1282 (about-url-link 'ograf nil "one of my homepages")
|
|
1283 (widget-insert ".\n"))
|
|
1284 (olivier
|
|
1285 (widget-insert
|
|
1286 "\
|
|
1287 Sorry, no personal information available about me yet.\n"))
|
|
1288 (oscar
|
487
|
1289 (widget-insert "\
|
|
1290 Oscar heads the Computer Science department at CPE Lyon, a french
|
|
1291 engineering school in France. Besides his administrative tasks he
|
|
1292 teaches networking basics, Internet technologies (you know, all these
|
|
1293 xxML and hairy script languages !) and the Scheme language.\n"))
|
479
|
1294 (pelegri
|
|
1295 (widget-insert
|
|
1296 "\
|
629
|
1297 I did my PhD at UCB and a postdoc at CSL/PARC. I joined Sun in 1990,
|
479
|
1298 spent some time in DevPro (that is when I made my contribution to
|
|
1299 XEmacs) and joined JavaSoft in fall '95, where I've been the lead for
|
|
1300 several JSP-related specifications and JAX-RPC. I'm currently the Web
|
|
1301 Layer architect for J2EE.
|
|
1302
|
|
1303 I was born in Barcelona and I grew up mostly in Caracas; I have two kids
|
|
1304 and I speak only catalan to them; I can juggle some (career, family, and
|
|
1305 4 balls or 3 pins); and my english can be idiosyncratic!.\n"))
|
|
1306 (pez
|
|
1307 (widget-insert "\
|
|
1308 Peter currently serves as Senior Vice President, Product Development
|
|
1309 for CBS SportsLine. See ")
|
|
1310 (about-url-link 'pez nil "CBS SportsLine")
|
428
|
1311 (widget-insert ".\n"))
|
479
|
1312 (piper
|
|
1313 (widget-insert "\
|
|
1314 My home page is here:\n")
|
|
1315 (about-url-link 'piper nil "Visit andy's home page")
|
988
|
1316 (widget-insert "\n Andy has been active in the XEmacs team for a
|
|
1317 number of years, helping port XEmacs to MS Windows operating
|
|
1318 systems. He is also the current MS Windows release manager and
|
|
1319 maintains the MS Windows netinstaller.\n"))
|
479
|
1320 (pittman
|
|
1321 (widget-insert
|
|
1322 "\
|
|
1323 Sorry, no personal information available about me yet.\n"))
|
2297
|
1324 (purvis
|
|
1325 (widget-insert
|
|
1326 "\
|
|
1327 Sorry, no personal information available about me yet.\n"))
|
479
|
1328 (rickc
|
|
1329 (widget-insert "\
|
487
|
1330 The hacker formerly known as Rick Busdiecker is a developer and
|
|
1331 technical manager at Deutsche Bank in New York during daylight hours.
|
|
1332 In the evenings he maintains three children, and when he ought to be
|
|
1333 sleeping he builds XEmacs betas, and tinkers with various personal
|
|
1334 hacking projects.\n"))
|
479
|
1335 (rose
|
|
1336 (widget-insert
|
|
1337 "\
|
|
1338 Sorry, no personal information available about me yet.\n"))
|
|
1339 (rossini
|
|
1340 (widget-insert "\
|
|
1341 Current development lead for ESS (Emacs Speaks Statistics), a mode and
|
|
1342 inferior mode for statistical programming and data analysis for SAS,
|
|
1343 S, S-PLUS, R, XLispStat; configurable for nearly any other statistical
|
|
1344 language/package one might want. In spare time, chases his son around
|
|
1345 and acts as a Ph.D. (bio)statistician for money and amusement,
|
|
1346 primarily focusing on statistical computing, visualization, and the
|
|
1347 design and analysis of HIV vaccine trials. Current position: Research
|
|
1348 Assistant Professor of Biostatistics at the University of Washington
|
|
1349 and the Fred Hutchinson Cancer Research Center.
|
|
1350
|
|
1351 See ")
|
1779
|
1352 (about-url-link 'rossini nil "Visit Anthony's home page")
|
479
|
1353 (widget-insert ".\n"))
|
1248
|
1354 (scop
|
|
1355 (widget-insert
|
|
1356 "\
|
|
1357 Sorry, no personal information available about me yet.\n"))
|
479
|
1358 (slb
|
|
1359 (widget-insert "\
|
|
1360 Peaches Baur, 1986-1999.
|
|
1361 Rest in peace")
|
|
1362 (widget-insert ".\n"))
|
|
1363 (sperber
|
|
1364 (widget-insert "\
|
|
1365 When Mike isn't busy putting together patches for free software he has
|
|
1366 just installed or changing his hairstyle, he does research in modern
|
|
1367 programming languages and their implementation, and hopes that one day
|
|
1368 XEmacs will speak Scheme.\n"))
|
|
1369 (stig
|
428
|
1370 (widget-insert "\
|
479
|
1371 Peripatetic uninominal Emacs hacker. Stig sometimes operates out of a
|
|
1372 big white van set up for nomadic living and hacking. Stig is sort of
|
|
1373 a tool fetishist. He has a hate/love relationship with computers and
|
|
1374 he hacks on XEmacs because it's a good tool that makes computers
|
|
1375 somewhat less of a nuisance. Besides XEmacs, Stig especially likes
|
|
1376 his Leatherman, his Makita, and his lockpicks. Stig wants a MIG
|
|
1377 welder and air tools.
|
|
1378
|
|
1379 Stig likes to perch, hang from the ceiling, and climb on the walls.
|
|
1380 Stig has a cool van. Stig would like to be able to telecommute from,
|
|
1381 say, the north rim of the Grand Canyon or the midst of Baja.\n"))
|
|
1382 (stigb
|
|
1383 (widget-insert "\
|
|
1384 Currently studying computer science in Trondheim, Norway. Full time
|
|
1385 Linux user and proud of it. XEmacs hacker light.
|
|
1386
|
|
1387 See:\t")
|
|
1388 (about-url-link 'stigb nil "Visit Stig's home page"))
|
|
1389 (thiessel
|
|
1390 (widget-insert "\
|
|
1391 Worked at University of Kaiserslautern where he took part in the
|
|
1392 development and design of a CAD framework for analog integrated
|
|
1393 circuits with special emphasis on distributed software concepts. He
|
|
1394 has now joined HP as technical consultant.
|
|
1395
|
|
1396 All of the buildings,
|
|
1397 all of the cars
|
|
1398 were once just a dream
|
|
1399 in somebody's head.\n
|
|
1400 P. Gabriel\n"))
|
|
1401 (tomonori
|
|
1402 (widget-insert
|
|
1403 "\
|
|
1404 Sorry, no personal information available about me yet.\n"))
|
|
1405 (tuck
|
|
1406 (widget-insert
|
|
1407 "\
|
|
1408 Sorry, no personal information available about me yet.\n"))
|
|
1409 (turnbull
|
|
1410 (widget-insert "\
|
|
1411 Stephen lives with his Japanese wife and children in Tsukuba, Japan,
|
2297
|
1412 where he is a professor of economics at the University of Tsukuba,
|
|
1413 and occasionally regretting not going to MIT for college, where he
|
|
1414 surely would have gotten addicted to computers early enough to have
|
|
1415 learned to actually code.
|
|
1416
|
|
1417 Well, they also serve who rail 'n' rant.
|
|
1418 ")
|
|
1419 (about-url-link 'turnbull nil "Visit Steve's personal page")
|
|
1420 (widget-insert "\n"))
|
479
|
1421 (vin
|
|
1422 (widget-insert "\
|
|
1423 I own and operate my own consulting firm, EtherSoft. Shhh, don't
|
|
1424 tell anyone, but it's named after an Ultimate team I used to play
|
|
1425 with in Austin, Texas - the Ether Bunnies. I'm getting too old
|
|
1426 to play competitive Ultimate any more, so now I've gotten roped
|
|
1427 into serving on the board of directors of the Ultimate Players
|
|
1428 Association. See ")
|
|
1429 (about-url-link 'vin nil "Visit the UPA homepage")
|
|
1430 (widget-insert ".\n"))
|
|
1431 (vladimir
|
|
1432 (widget-insert "\
|
|
1433 Former technical lead for XEmacs at Sun. He is now writing a book on
|
|
1434 distributed Java and is working at Xerox PARC documenting AspectJ, a
|
|
1435 light-weight extension to Java that supports crosscutting concerns.
|
|
1436 See ")
|
|
1437 (about-url-link 'vladimir nil "Visit Vladimir's home page")
|
|
1438 (widget-insert ".\n"))
|
|
1439 (wmperry
|
|
1440 (widget-insert "\
|
487
|
1441 Happily living in Indiana telecommuting for a company based in Seattle
|
|
1442 \(who I now prefer not to name), wishing I was in Ireland instead.\n"))
|
479
|
1443 (yoshiki
|
|
1444 (widget-insert
|
|
1445 "\
|
|
1446 Sorry, no personal information available about me yet.\n"))
|
|
1447 ))
|
428
|
1448
|
479
|
1449 ;; Insert info about a maintainer's contribution to XEmacs. See also
|
|
1450 ;; `about-personal-info'.
|
|
1451 (defun about-hacker-contribution (entry)
|
|
1452 (ecase (car entry)
|
|
1453 ;; to sort the entries below, use M-x sort-regexp-fields RET
|
|
1454 ;; then this regexp: ([^(]*([^"]*"[^"]*"[^)]*))
|
|
1455 ;; then this regexp: (\([a-z]*\)
|
|
1456 (adrian
|
|
1457 (widget-insert
|
|
1458 "\
|
|
1459 Adrian has done invaluable work rewriting and maintaining the XEmacs
|
|
1460 web pages at www.xemacs.org. During his tenureship, he has
|
|
1461 established a consistent look and feel, placed the web pages under
|
|
1462 CVS, set up maintenance procedures, written scripts to handle
|
|
1463 automatic updating, validation and mirroring, and done innumerable
|
|
1464 other tasks. He has also helped with many other administrative tasks,
|
|
1465 such as the thankless work of dealing with the providers of resources
|
|
1466 to XEmacs at SourceForge and tux.org.\n"))
|
|
1467 (aj
|
|
1468 (widget-insert "\
|
|
1469 Former `Package Patch Tender', beta tester and GNU libc developer.\n"))
|
|
1470 (ajc
|
|
1471 (widget-insert "\
|
|
1472 Former XEmacs web site maintainer.\n"))
|
|
1473 (alastair
|
|
1474 (widget-insert
|
|
1475 "\
|
|
1476 Rewrote the selection code, adding many new features such as better
|
|
1477 support for arbitrary selection types (especially under MS Windows,
|
|
1478 where the full power of the clipboard system is available under
|
|
1479 XEmacs).\n"))
|
|
1480 (baw
|
|
1481 (widget-insert "\
|
|
1482 I'm the author of ")
|
|
1483 (about-url-link 'cc-mode "CC Mode" "Visit the CC Mode page")
|
|
1484 (widget-insert ", for C, C++, Objective-C and Java editing,
|
|
1485 Supercite for mail and news citing, and sundry other XEmacs packages
|
|
1486 such as ELP (the Emacs Lisp Profiler), Reporter, xrdb-mode, and
|
|
1487 winring. Even though I still live almost 100% in XEmacs these days,
|
|
1488 my Lisp hacking has fallen off in recent years as I became more
|
|
1489 involved in Python, and in fact, I currently maintain the Python
|
|
1490 editing mode. See also: ")
|
|
1491 (about-url-link "http://www.python.org/emacs" nil
|
|
1492 "Visit the python.org Emacs Goodies page")
|
|
1493 (widget-insert ".\n"))
|
|
1494 (ben
|
|
1495 (widget-insert
|
|
1496 "\
|
|
1497 I am the largest code contributor to XEmacs, and the architect of many
|
|
1498 of the features that distinguish XEmacs from GNU Emacs and other Emacs
|
|
1499 versions. My main contributions to XEmacs include rewriting large
|
|
1500 parts of the internals and the gory Xt/Xlib interfacing, adding the
|
|
1501 Mule \(international) support, improving the MS Windows support,
|
|
1502 adding many GUI features to XEmacs, architecting the
|
|
1503 device-abstraction and specifier code, writing most of the XEmacs
|
|
1504 Internals Manual and the XEmacs-specific parts of the XEmacs Lisp
|
|
1505 Reference Manual, synching a great deal of code with GNU Emacs, and
|
|
1506 being a general nuisance ... er, brainstormer for many of the new
|
|
1507 features of XEmacs.\n"))
|
|
1508 (bw
|
|
1509 (widget-insert "\
|
|
1510 Author of the Hyperbole everyday information management hypertext
|
|
1511 system and the OO-Browser multi-language code browser. He also
|
|
1512 designed the BeOpen InfoDock integrated development environment
|
|
1513 for software engineers. It runs atop XEmacs and is available from
|
|
1514 his firm, BeOpen, which offers distributions, custom development,
|
|
1515 support, and training packages for corporate users of XEmacs, GNU
|
|
1516 Emacs and InfoDock. See ")
|
|
1517 (about-url-link 'beopen nil "Visit BeOpen WWW page")
|
|
1518 (widget-insert ".\n"))
|
|
1519 (cgw
|
|
1520 (widget-insert
|
|
1521 "\
|
|
1522 Author of an earlier version of the MS Windows setup program for XEmacs.\n"))
|
|
1523 (chr
|
|
1524 (widget-insert "\
|
|
1525 Maintainer of the XEmacs FAQ and proud author of `zap-up-to-char'.\n"))
|
|
1526 (craig
|
|
1527 (widget-insert
|
|
1528 "\
|
|
1529 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1530 (cthomp
|
|
1531 (widget-insert
|
|
1532 "\
|
|
1533 Maintainer of XEmacs from mid-1994 through 1996. Author of the
|
487
|
1534 redisplay engine, the original toolbar and scrollbars and some of the
|
|
1535 device-abstraction, TTY and glyph code. Creator of the xemacs.org
|
|
1536 domain and comp.emacs.xemacs.\n"))
|
479
|
1537 (daiki
|
|
1538 (widget-insert
|
|
1539 "\
|
|
1540 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1541 (dan
|
|
1542 (widget-insert
|
|
1543 "\
|
|
1544 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1545 (darrylo
|
|
1546 (widget-insert
|
|
1547 "\
|
|
1548 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1549 (devin
|
|
1550 (widget-insert "\
|
|
1551 Part of the original (pre-19.0) Lucid Emacs development team.
|
|
1552 Matthieu wrote the initial Energize interface, designed the
|
|
1553 toolkit-independent Lucid Widget library, and fixed enough redisplay
|
|
1554 bugs to last a lifetime. The features in Lucid Emacs were largely
|
|
1555 inspired by Matthieu's initial prototype of an Energize interface
|
|
1556 using Epoch.\n"))
|
|
1557 (dkindred
|
|
1558 (widget-insert "\
|
|
1559 Darrell tends to come out of the woodwork a couple of weeks
|
|
1560 before a new release with a flurry of fixes for bugs that
|
|
1561 annoy him. He hopes he's spared you from a core dump or two.\n"))
|
|
1562 (dmoore
|
|
1563 (widget-insert "\
|
|
1564 David has contributed greatly to the quest to speed up XEmacs.\n"))
|
|
1565 (dv
|
|
1566 (widget-insert "\
|
|
1567 I joined the development of XEmacs in 1996, and have been one of the
|
|
1568 core maintainers since 1998. Although I'm mostly interested in the
|
|
1569 GUI, ergonomics, redisplay and autoconf issues, it's probably simpler
|
|
1570 to describe what I'm *not* involved in: I've never touched the Lisp
|
|
1571 implementation, and I probably never will...
|
428
|
1572
|
479
|
1573 I'm the author of the multicast support, I wrote and maintain some
|
|
1574 external Emacs Lisp packages (including mchat) and I'm also
|
|
1575 responsible for some of the core Lisp code (including the rectangle
|
|
1576 library which I rewrote for both XEmacs and GNU Emacs).\n"))
|
|
1577 (eb
|
|
1578 (widget-insert "\
|
|
1579 Also part of the original Lucid Emacs development team. Eric played a
|
|
1580 big part in the design of many aspects of the system, including the
|
|
1581 new command loop and keymaps, fixed numerous bugs, and has been a
|
|
1582 reliable beta tester ever since.\n"))
|
|
1583 (fabrice
|
|
1584 (widget-insert
|
|
1585 "\
|
|
1586 I have started to provide binary kits for the 21.2 series when there
|
|
1587 was no installer available. I contributed a few lines of core code
|
|
1588 occasionally to make things smoother with the native win32 port which
|
|
1589 I'm using all the day.
|
428
|
1590
|
479
|
1591 I also contributed elisp code long ago to make Gnus run under XEmacs.\n"))
|
|
1592 (golubev
|
|
1593 (widget-insert
|
|
1594 "\
|
1215
|
1595 Used XEmacs since early 1997. Fixed bugs that annoy me, both in
|
|
1596 XEmacs core and in packages I use, mostly viper. Hoping to get
|
|
1597 coding-cookie package distributed, which is also a fix of what I
|
|
1598 consider a bug.\n"))
|
479
|
1599 (gunnar
|
|
1600 (widget-insert
|
|
1601 "\
|
|
1602 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1603 (hbs
|
|
1604 (widget-insert "\
|
|
1605 Part of the original (pre-19.0) Lucid Emacs development team. Harlan
|
|
1606 designed and implemented many of the low level data structures which
|
|
1607 are original to the Lucid version of Emacs, including extents and hash
|
|
1608 tables.\n"))
|
|
1609 (hisashi
|
|
1610 (widget-insert
|
|
1611 "\
|
|
1612 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1613 (hmuller
|
|
1614 (widget-insert "\
|
|
1615 Author of the code used to connect XEmacs with ToolTalk, and of an
|
|
1616 early client of the external Emacs widget.\n"))
|
|
1617 (hniksic
|
|
1618 (widget-insert
|
|
1619 "\
|
481
|
1620 Hrvoje's contribution to XEmacs consists of many hours spent working
|
|
1621 on code and taking part in public discussions.
|
|
1622
|
|
1623 He wrote `savehist' and `htmlize' packages, the latter having a pretty
|
|
1624 large gathering of users. He worked to improve many parts of XEmacs
|
|
1625 Lisp code, including isearch (FSF synch and new features), cl, edmacro
|
|
1626 \(FSF synch and an almost complete rewrite), profile, gnuserv,
|
|
1627 hyper-apropos, etags, about, and custom.
|
|
1628
|
|
1629 He has worked on improving and optimizing the C core. He ported many
|
|
1630 FSF core features such as indirect buffers, tty-erase-char,
|
|
1631 save-current-buffer and friends, debug-ignored-errors, etc. He also
|
|
1632 wrote line numbering optimizations for large buffers, initial support
|
|
1633 for TTY frames, abbrev improvements, Lisp printer and reader
|
|
1634 improvements, support for extent modification functions, and lots of
|
|
1635 minor bugfixes, optimizations, and Muleifications.
|
|
1636
|
|
1637 He contributed to Lispref and Internals documentation, including a
|
|
1638 section on writing Mule-compliant C code. Maintains NEWS. He
|
|
1639 participated on xemacs-beta since 1996 and on the Patch Review Board
|
|
1640 since its inception in 1998.\n"))
|
479
|
1641 (hobley
|
|
1642 (widget-insert
|
|
1643 "\
|
|
1644 Creator of the earliest version of the MS Windows port of XEmacs.\n"))
|
1248
|
1645 (james
|
|
1646 (widget-insert
|
|
1647 "\
|
|
1648 Jerry made lots of enhancements to the DSO code, including moving
|
|
1649 PostgreSQL and LDAP to modules.\n"))
|
479
|
1650 (jan
|
|
1651 (widget-insert "\
|
|
1652 Apart from hunting down redisplay bugs Jan has worked on such
|
|
1653 things as improvements to the package system, implementing lazy-shot,
|
|
1654 a short stint at tracking patches and currently acts as a guardian
|
|
1655 of the XEmacs custom subsystem and gnuserv.\n"))
|
|
1656 (jareth
|
|
1657 (widget-insert "\
|
|
1658 Owner of cvs.xemacs.org, the machine that holds the XEmacs CVS
|
|
1659 repository, and author of some of the graphics code in XEmacs.\n"))
|
428
|
1660 (jason
|
|
1661 (widget-insert "\
|
460
|
1662 Beta tester, manager of the various XEmacs mailing lists and binary
|
479
|
1663 kit manager. Also, originator and maintainer of the gnus.org domain.\n"))
|
|
1664 (jens
|
|
1665 (widget-insert "\
|
487
|
1666 Jens did the artwork for graphics added to XEmacs 20.2 and 19.15. He's
|
|
1667 also the author of \"XEmacs Mine\", a game similar to Minesweeper, but
|
|
1668 running in XEmacs\n"))
|
428
|
1669 (jmiller
|
|
1670 (widget-insert "\
|
479
|
1671 Beta tester and last hacker of calendar.\n"))
|
|
1672 (jonathan
|
|
1673 (widget-insert "\
|
|
1674 I started the native port of XEmacs to MS Windows. Author of the
|
|
1675 Windows frame, redisplay, face and event loop support.\n"))
|
|
1676 (juhp
|
|
1677 (widget-insert "\
|
|
1678 Author of \"find-func.el\", improvements to \"help.el\" and a good
|
|
1679 number of bug fixes during June 1997 to December 1998.\n"))
|
|
1680 (jwz
|
|
1681 (widget-insert
|
|
1682 "\
|
|
1683 Creator and maintainer of Lucid Emacs (the predecessor of XEmacs),
|
|
1684 from 1991 through mid-1994.\n"))
|
|
1685 (kazz
|
428
|
1686 (widget-insert "\
|
479
|
1687 IENAGA Kazuyuki is the XEmacs technical lead on BSD, particularly
|
|
1688 FreeBSD.\n"))
|
|
1689 (kirill
|
|
1690 (widget-insert
|
|
1691 "\
|
|
1692 Abstracted the subprocess code and wrote much of the MS Windows
|
|
1693 support in XEmacs, including the subprocess interface, dialog boxes,
|
|
1694 printing support, and much of the event loop.\n"))
|
|
1695 (kyle
|
|
1696 (widget-insert "\
|
|
1697 Author of VM, a mail-reading package that is included in the standard
|
|
1698 XEmacs distribution, and contributor of many improvements and bug
|
|
1699 fixes. Unlike RMAIL and MH-E, VM uses the standard UNIX mailbox
|
|
1700 format for its folders; thus, you can use VM concurrently with other
|
|
1701 UNIX mail readers such as Berkeley Mail and ELM.
|
428
|
1702
|
479
|
1703 Also rewrote the object allocation system in XEmacs to support full
|
|
1704 32-bit pointers and 31-bit integers.\n"))
|
|
1705 (larsi
|
|
1706 (widget-insert "\
|
|
1707 Author of Gnus the Usenet news and Mail reading package in the
|
|
1708 standard XEmacs distribution, and contributor of various enhancements
|
|
1709 and portability fixes.\n"))
|
|
1710 (marcpa
|
|
1711 (widget-insert
|
|
1712 "\
|
|
1713 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1714 (martin
|
|
1715 (widget-insert
|
|
1716 "\
|
1248
|
1717 Former beta release manager and author of many stability fixes and speed
|
479
|
1718 improvements in XEmacs.\n"))
|
|
1719 (mcook
|
|
1720 (widget-insert "\
|
|
1721 Author of the \"shy groups\" and minimal matching regular expression
|
|
1722 extensions.\n"))
|
|
1723 (mly
|
|
1724 (widget-insert "\
|
|
1725 Early code contributor to Lucid Emacs. Synched up Lucid Emacs with
|
|
1726 the first actual release of GNU Emacs 19, and architected and wrote
|
|
1727 the first version of XEmacs's object allocation system.\n"))
|
|
1728 (morioka
|
|
1729 (widget-insert "\
|
|
1730 I am the author of tm-view (general MIME Viewer for GNU Emacs) and
|
|
1731 major author and maintainer of tm (Tools for MIME; general MIME
|
|
1732 package for GNU Emacs). In addition, I am working to unify MULE API
|
|
1733 for Emacs and XEmacs. In XEmacs, I have ported many mule features.\n"))
|
|
1734 (mta
|
|
1735 (widget-insert
|
|
1736 "\
|
|
1737 Contributed minor improvements to the Windows support, especially
|
|
1738 related to subprocess communication and portable dumping as well as
|
|
1739 a bit of general bug fixing.\n"))
|
|
1740 (ograf
|
|
1741 (widget-insert "\
|
|
1742 Author of the XEmacs Drag'n'Drop API.\n"))
|
|
1743 (olivier
|
|
1744 (widget-insert
|
|
1745 "\
|
|
1746 Author of the portable dumper.\n"))
|
|
1747 (oscar
|
487
|
1748 (widget-insert "\
|
|
1749 Oscar's major contributions to XEmacs are the internal LDAP support
|
|
1750 and the EUDC package, an interface to query various directory services
|
|
1751 in a uniform manner (when composing mail for instance).\n"))
|
479
|
1752 (pelegri
|
|
1753 (widget-insert "\
|
|
1754 Author of EOS, a package included in the standard XEmacs distribution
|
|
1755 that integrates XEmacs with the SPARCworks development environment
|
|
1756 from Sun. Past lead for XEmacs at Sun; advocated the validity of
|
|
1757 using Epoch, and later Lemacs, at Sun through several early
|
|
1758 prototypes.\n"))
|
|
1759 (pez
|
|
1760 (widget-insert "\
|
|
1761 Author of SQL Mode, edit-toolbar, mailtool-mode, and various other
|
|
1762 small packages with varying degrees of usefulness.\n"))
|
|
1763 (piper
|
|
1764 (widget-insert "\
|
|
1765 Author of the Cygwin port of XEmacs including unexec, the widget,
|
|
1766 gutter and buffer-tab support, glyphs under MS-Windows, toolbars under
|
|
1767 MS-Windows, the original \"fake\" XEmacs toolbar, outl-mouse for mouse
|
|
1768 gesture based outlining, and the original CDE drag-n-drop
|
|
1769 support.\n"))
|
|
1770 (pittman
|
|
1771 (widget-insert
|
|
1772 "\
|
|
1773 Sorry, no information about my XEmacs contributions yet.\n"))
|
2297
|
1774 (purvis
|
|
1775 (widget-insert
|
|
1776 "\
|
|
1777 Currently filing off some of the splinters in the GTK port.\n"))
|
479
|
1778 (rickc
|
438
|
1779 (widget-insert "\
|
479
|
1780 Maintainer of ILISP.\n"))
|
|
1781 (rose
|
|
1782 (widget-insert "\
|
|
1783 Author of many extensions to the `extents' code, including the initial
|
|
1784 implementation of `duplicable' properties.\n"))
|
|
1785 (rossini
|
|
1786 (widget-insert "\
|
|
1787 Author of the first XEmacs FAQ;
|
|
1788 Development lead on Emacs Speaks Statistics;
|
|
1789 Assisted Jareth Hein with setting up the JitterBug tracking system.\n"))
|
1248
|
1790 (scop
|
|
1791 (widget-insert
|
|
1792 "\
|
1306
|
1793 Co Maintainer & Release Manager of the Packages.\n"))
|
479
|
1794 (slb
|
|
1795 (widget-insert
|
|
1796 "\
|
|
1797 Maintainer of XEmacs from 1996 through 1998. Author of the package
|
|
1798 system.\n"))
|
|
1799 (sperber
|
|
1800 (widget-insert "\
|
|
1801 Mike ported EFS to XEmacs 20 and integrated EFS into XEmacs. He's
|
|
1802 also responsible for the ports of facemenu.el and enriched.el, the
|
|
1803 code to handle path-frobbing at startup for the XEmacs core and the
|
|
1804 package system, the init file migration from .emacs to
|
|
1805 .xemacs/init.el, and the CVS Great Trunk Move.\n"))
|
|
1806 (stig
|
|
1807 (widget-insert "\
|
|
1808 Implemented the faster stay-up Lucid menus and hyper-apropos.
|
|
1809 Contributor of many dispersed improvements in the core Lisp code, and
|
|
1810 back-seat contributor for several of its major packages.\n"))
|
|
1811 (stigb
|
|
1812 (widget-insert "\
|
|
1813 Maintainer of the RPM package.\n"))
|
|
1814 (thiessel
|
|
1815 (widget-insert "\
|
|
1816 Does beta testing and helps take care of the XEmacs web site.\n"))
|
|
1817 (tomonori
|
|
1818 (widget-insert
|
|
1819 "\
|
|
1820 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1821 (tuck
|
|
1822 (widget-insert
|
|
1823 "\
|
|
1824 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1825 (turnbull
|
|
1826 (widget-insert
|
|
1827 "\
|
2297
|
1828 Mostly a source of random noise and occasionally useful advice on
|
|
1829 I18N up until people starting hinting that (2 years after the release
|
|
1830 of 21.1) it was time for various projects to get pushed into the public
|
|
1831 eye. Steve was the prime mover behind the release of 21.4.
|
|
1832
|
|
1833 Since Vin took over the maintainership of 21.4, Steve has featured as
|
|
1834 janitor and waterboy, handling (more or less) all those administrative
|
|
1835 tasks that need to get done somehow by somebody---wishing he were coding
|
|
1836 the whole time.
|
|
1837
|
|
1838 Steve is maintainer of the edict, mule-ucs, and latin-unity packages,
|
|
1839 and has contributed quite a bit of documentation, especially for Mule.\n"))
|
479
|
1840 (vin
|
|
1841 (widget-insert "\
|
|
1842 Vin helps maintain the older, more mature (read: moldy) versions of
|
|
1843 XEmacs. Vin maintains the XEmacs patch pages in order to bring a more
|
|
1844 stable XEmacs. (Actually, he does it 'cause it's fun and he's been
|
|
1845 using emacs for a long, long time.) Vin also contributed the detached
|
|
1846 minibuffer code as well as a few minor enhancements to the menubar
|
|
1847 options.\n"))
|
|
1848 (vladimir
|
|
1849 (widget-insert "\
|
|
1850 Former technical lead for XEmacs at Sun.\n"))
|
|
1851 (wmperry
|
|
1852 (widget-insert "\
|
|
1853 Author of the GTK support in XEmacs, Emacs-w3 (the builtin web browser
|
|
1854 that comes with XEmacs), and various additions to the C code (e.g. the
|
|
1855 database support, the PNG support, some of the GIF/JPEG support, the
|
|
1856 strikethru face attribute support).\n"))
|
|
1857 (yoshiki
|
|
1858 (widget-insert
|
|
1859 "\
|
|
1860 Sorry, no information about my XEmacs contributions yet.\n"))
|
|
1861 ))
|
428
|
1862
|
|
1863 ;; Setup the buffer for a maintainer.
|
|
1864 (defun about-maintainer (widget &optional event)
|
|
1865 (let* ((entry (assq (widget-value widget) xemacs-hackers))
|
|
1866 (who (car entry))
|
|
1867 (name (cadr entry))
|
|
1868 (address (caddr entry))
|
|
1869 (bufname (format "*About %s*" name)))
|
|
1870 (unless (about-get-buffer bufname)
|
|
1871 ;; Display the glyph and name
|
|
1872 (widget-insert "\n")
|
|
1873 (widget-create 'default :format "%t"
|
|
1874 :tag-glyph (about-maintainer-glyph who))
|
|
1875 (widget-insert
|
479
|
1876 "\n\n" (about-with-face (format "%s" name) 'bold)
|
|
1877 " <")
|
|
1878 (about-mailto-link address)
|
|
1879 (widget-insert ">\n\n")
|
428
|
1880 ;; Display the actual info
|
479
|
1881 (about-personal-info entry)
|
|
1882 (widget-insert "\n")
|
|
1883 (widget-insert
|
|
1884 (about-with-face "Contributions to XEmacs:\n\n" 'about-headline-face))
|
|
1885 (about-hacker-contribution entry)
|
428
|
1886 (widget-insert "\n")
|
|
1887 (about-finish-buffer 'kill)
|
|
1888 (forward-line 2))))
|
|
1889
|
|
1890 (defsubst about-tabs (str)
|
|
1891 (let ((x (length str)))
|
|
1892 (cond ((>= x 24) " ")
|
|
1893 ((>= x 16) "\t")
|
|
1894 ((>= x 8) "\t\t")
|
|
1895 (t "\t\t\t"))))
|
|
1896
|
479
|
1897 (defun about-show-linked-info (who)
|
428
|
1898 (let* ((entry (assq who xemacs-hackers))
|
|
1899 (name (cadr entry))
|
|
1900 (address (caddr entry)))
|
|
1901 (widget-create 'link :help-echo (concat "Find out more about " name)
|
|
1902 :action 'about-maintainer
|
|
1903 :button-prefix ""
|
|
1904 :button-suffix ""
|
|
1905 :tag name
|
|
1906 :value who)
|
|
1907 (widget-insert (about-tabs name)
|
479
|
1908 "<")
|
|
1909 (about-mailto-link address)
|
|
1910 (widget-insert ">\n")
|
|
1911 (about-hacker-contribution entry)
|
|
1912 (widget-insert "\n")))
|
428
|
1913
|
|
1914 (defun about-hackers (&rest ignore)
|
|
1915 (unless (about-get-buffer "*About Contributors*")
|
479
|
1916 (let ((title "A Legion of Contributors to XEmacs"))
|
428
|
1917 (widget-insert
|
|
1918 (about-center title)
|
|
1919 (about-with-face title 'bold)))
|
|
1920 (widget-insert
|
|
1921 "\n
|
|
1922 Like most free software, XEmacs is a collaborative effort. These are
|
|
1923 some of the contributors. We have no doubt forgotten someone; we
|
479
|
1924 apologize! You can see some of our faces under the links.\n\n"
|
|
1925 (about-with-face "Primary maintainers for this release:"
|
|
1926 'about-headline-face)
|
|
1927 "\n\n")
|
|
1928 (mapc 'about-show-linked-info about-current-release-maintainers)
|
|
1929 (widget-insert
|
|
1930 "\n"
|
|
1931 (about-with-face "Other notable current hackers:"
|
|
1932 'about-headline-face)
|
|
1933 "\n\n")
|
|
1934 (mapc 'about-show-linked-info about-other-current-hackers)
|
|
1935 (widget-insert
|
|
1936 "\n"
|
|
1937 (about-with-face "Other notable once and future hackers:"
|
|
1938 'about-headline-face)
|
|
1939 "\n\n")
|
|
1940 (mapc 'about-show-linked-info about-once-and-future-hackers)
|
428
|
1941 (flet ((print-short (name addr &optional shortinfo)
|
479
|
1942 (widget-insert (concat (about-with-face name 'italic)
|
|
1943 (about-tabs name)
|
|
1944 "<"))
|
|
1945 (about-mailto-link addr)
|
|
1946 (widget-insert
|
|
1947 (concat ">\n"
|
|
1948 (if shortinfo (concat shortinfo "\n") "")))))
|
428
|
1949 (widget-insert
|
|
1950 "\n\
|
|
1951 In addition to those just mentioned, the following people have spent a
|
|
1952 great deal of effort providing feedback, testing beta versions of
|
|
1953 XEmacs, providing patches to the source code, or doing all of the
|
479
|
1954 above. We couldn't have done it without them.\n\n")
|
|
1955 (print-short "Nagi M. Aboulenein" "aboulene@ponder.csci.unt.edu")
|
|
1956 (print-short "Per Abrahamsen" "abraham@dina.kvl.dk")
|
|
1957 (print-short "Gary Adams" "gra@zeppo.East.Sun.COM")
|
|
1958 (print-short "Gennady Agranov" "agranov@csa.CS.Technion.Ac.IL")
|
|
1959 (print-short "Mark Allender" "allender@vnet.IBM.COM")
|
|
1960 (print-short "Stephen R. Anderson" "sra@bloch.ling.yale.edu")
|
|
1961 (print-short "Butch Anton" "butch@zaphod.uchicago.edu")
|
|
1962 (print-short "Fred Appelman" "Fred.Appelman@cv.ruu.nl")
|
|
1963 (print-short "Erik \"The Pope\" Arneson" "lazarus@mind.net")
|
|
1964 (print-short "Tor Arntsen" "tor@spacetec.no")
|
|
1965 (print-short "Marc Aurel" "4-tea-2@bong.saar.de")
|
|
1966 (print-short "Larry Auton" "lda@control.att.com")
|
|
1967 (print-short "Larry Ayers" "layers@marktwain.net")
|
|
1968 (print-short "Oswald P. Backus IV" "backus@altagroup.com")
|
|
1969 (print-short "Mike Battaglia" "mbattagl@dsccc.com")
|
|
1970 (print-short "Neal Becker" "neal@ctd.comsat.com")
|
|
1971 (print-short "Paul Bibilo" "peb@delcam.com")
|
|
1972 (print-short "Leonard Blanks" "ltb@haruspex.demon.co.uk")
|
|
1973 (print-short "Jan Borchers" "job@tk.uni-linz.ac.at")
|
|
1974 (print-short "Mark Borges" "mdb@cdc.noaa.gov")
|
|
1975 (print-short "David P. Boswell" "daveb@tau.space.thiokol.com")
|
|
1976 (print-short "Tim Bradshaw" "tfb@edinburgh.ac.uk")
|
|
1977 (print-short "Rick Braumoeller" "rickb@mti.sgi.com")
|
|
1978 (print-short "Matthew J. Brown" "mjb@doc.ic.ac.uk")
|
|
1979 (print-short "Alastair Burt" "burt@dfki.uni-kl.de")
|
|
1980 (print-short "David Bush" "david.bush@adn.alcatel.com")
|
|
1981 (print-short "Richard Caley" "rjc@cstr.edinburgh.ac.uk")
|
|
1982 (print-short "Stephen Carney" "carney@gvc.dec.com")
|
|
1983 (print-short "Lorenzo M. Catucci" "lorenzo@argon.roma2.infn.it")
|
|
1984 (print-short "Philippe Charton" "charton@lmd.ens.fr")
|
|
1985 (print-short "Peter Cheng" "peter.cheng@sun.com")
|
|
1986 (print-short "Jin S. Choi" "jin@atype.com")
|
|
1987 (print-short "Tomasz J. Cholewo" "tjchol01@mecca.spd.louisville.edu")
|
|
1988 (print-short "Serenella Ciongoli" "czs00@ladybug.oes.amdahl.com")
|
|
1989 (print-short "Glynn Clements" "glynn@sensei.co.uk")
|
|
1990 (print-short "Richard Cognot" "cognot@ensg.u-nancy.fr")
|
|
1991 (print-short "Andy Cohen" "cohen@andy.bu.edu")
|
|
1992 (print-short "Richard Coleman" "coleman@math.gatech.edu")
|
|
1993 (print-short "Mauro Condarelli" "MC5686@mclink.it")
|
|
1994 (print-short "Nick J. Crabtree" "nickc@scopic.com")
|
|
1995 (print-short "Christopher Davis" "ckd@kei.com")
|
|
1996 (print-short "Soren Dayton" "csdayton@cs.uchicago.edu")
|
|
1997 (print-short "Chris Dean" "ctdean@cogit.com")
|
690
|
1998 (print-short "Michael Diers" "mdiers@elego.de")
|
479
|
1999 (print-short "William G. Dubuque" "wgd@martigny.ai.mit.edu")
|
|
2000 (print-short "Steve Dunham" "dunham@dunham.tcimet.net")
|
|
2001 (print-short "Samuel J. Eaton" "samuele@cogs.susx.ac.uk")
|
|
2002 (print-short "Carl Edman" "cedman@Princeton.EDU")
|
|
2003 (print-short "Dave Edmondson" "davided@sco.com")
|
|
2004 (print-short "Jonathan Edwards" "edwards@intranet.com")
|
|
2005 (print-short "Eric Eide" "eeide@asylum.cs.utah.edu")
|
|
2006 (print-short "EKR" "ekr@terisa.com")
|
|
2007 (print-short "David Fletcher" "frodo@tsunami.com")
|
|
2008 (print-short "Paul Flinders" "ptf@delcam.co.uk")
|
|
2009 (print-short "Jered J Floyd" "jered@mit.edu")
|
|
2010 (print-short "Gary D. Foster" "Gary.Foster@Corp.Sun.COM")
|
|
2011 (print-short "Jerry Frain" "jerry@sneffels.tivoli.com")
|
|
2012 (print-short "Holger Franz" "hfranz@physik.rwth-aachen.de")
|
|
2013 (print-short "Benjamin Fried" "bf@morgan.com")
|
|
2014 (print-short "Barry Friedman" "friedman@nortel.ca")
|
|
2015 (print-short "Noah Friedman" "friedman@splode.com")
|
|
2016 (print-short "Kazuyoshi Furutaka" "furutaka@Flux.tokai.jaeri.go.jp")
|
|
2017 (print-short "Lew Gaiter III" "lew@StarFire.com")
|
|
2018 (print-short "Itay Gat" "itay@cs.huji.ac.il")
|
|
2019 (print-short "Tim Geisler" "Tim.Geisler@informatik.uni-muenchen.de")
|
|
2020 (print-short "Dave Gillespie" "daveg@synaptics.com")
|
|
2021 (print-short "Christian F. Goetze" "cg@bigbook.com")
|
|
2022 (print-short "Yusuf Goolamabbas" "yusufg@iss.nus.sg")
|
|
2023 (print-short "Wolfgang Grieskamp" "wg@cs.tu-berlin.de")
|
|
2024 (print-short "John Griffith" "griffith@sfs.nphil.uni-tuebingen.de")
|
|
2025 (print-short "James Grinter" "jrg@demon.net")
|
|
2026 (print-short "Ben Gross" "bgross@uiuc.edu")
|
|
2027 (print-short "Dirk Grunwald" "grunwald@foobar.cs.Colorado.EDU")
|
|
2028 (print-short "Michael Guenther" "michaelg@igor.stuttgart.netsurf.de")
|
|
2029 (print-short "Dipankar Gupta" "dg@hplb.hpl.hp.com")
|
|
2030 (print-short "Markus Gutschke" "gutschk@GOEDEL.UNI-MUENSTER.DE")
|
|
2031 (print-short "Kai Haberzettl" "khaberz@synnet.de")
|
|
2032 (print-short "Adam Hammer" "hammer@cs.purdue.edu")
|
|
2033 (print-short "Magnus Hammerin" "magnush@epact.se")
|
|
2034 (print-short "ChangGil Han" "cghan@phys401.phys.pusan.ac.kr")
|
|
2035 (print-short "Derek Harding" "dharding@lssec.bt.co.uk")
|
|
2036 (print-short "Michael Harnois" "mharnois@sbt.net")
|
|
2037 (print-short "John Haxby" "J.Haxby@isode.com")
|
|
2038 (print-short "Karl M. Hegbloom" "karlheg@inetarena.com")
|
|
2039 (print-short "Benedikt Heinen" "beh@icemark.thenet.ch")
|
|
2040 (print-short "Stephan Herrmann" "sh@first.gmd.de")
|
|
2041 (print-short "August Hill" "awhill@inlink.com")
|
|
2042 (print-short "Mike Hill" "mikehill@hgeng.com")
|
|
2043 (print-short "Charles Hines" "chuck_hines@VNET.IBM.COM")
|
|
2044 (print-short "Shane Holder" "holder@rsn.hp.com")
|
|
2045 (print-short "Chris Holt" "xris@migraine.stanford.edu")
|
|
2046 (print-short "Tetsuya HOYANO" "hoyano@ari.bekkoame.or.jp")
|
|
2047 (print-short "David Hughes" "djh@harston.cv.com")
|
|
2048 (print-short "Tudor Hulubei" "tudor@cs.unh.edu")
|
|
2049 (print-short "Tatsuya Ichikawa" "ichikawa@hv.epson.co.jp")
|
|
2050 (print-short "Andrew Innes" "andrewi@harlequin.co.uk")
|
|
2051 (print-short "Markku Jarvinen" "Markku.Jarvinen@simpukka.funet.fi")
|
|
2052 (print-short "Robin Jeffries" "robin.jeffries@sun.com")
|
|
2053 (print-short "Philip Johnson" "johnson@uhics.ics.Hawaii.Edu")
|
|
2054 (print-short "J. Kean Johnston" "jkj@paradigm-sa.com")
|
|
2055 (print-short "John W. Jones" "jj@asu.edu")
|
|
2056 (print-short "Andreas Kaempf" "andreas@sccon.com")
|
|
2057 (print-short "Yoshiaki Kasahara" "kasahara@nc.kyushu-u.ac.jp")
|
|
2058 (print-short "Amir Katz" "amir@ndsoft.com")
|
|
2059 (print-short "Doug Keller" "dkeller@vnet.ibm.com")
|
|
2060 (print-short "Hunter Kelly" "retnuh@corona")
|
|
2061 (print-short "Gregor Kennedy" "gregork@dadd.ti.com")
|
|
2062 (print-short "Michael Kifer" "kifer@cs.sunysb.edu")
|
|
2063 (print-short "Yasuhiko Kiuchi" "kiuchi@dsp.ksp.fujixerox.co.jp")
|
|
2064 (print-short "Greg Klanderman" "greg.klanderman@alum.mit.edu")
|
|
2065 (print-short "Valdis Kletnieks" "Valdis.Kletnieks@vt.edu")
|
|
2066 (print-short "Norbert Koch" "n.koch@delta-ii.de")
|
|
2067 (print-short "Rob Kooper" "kooper@cc.gatech.edu")
|
|
2068 (print-short "Peter Skov Knudsen" "knu@dde.dk")
|
|
2069 (print-short "Jens Krinke" "krinke@ips.cs.tu-bs.de")
|
|
2070 (print-short "Maximilien Lincourt" "max@toonboom.com")
|
|
2071 (print-short "Mats Larsson" "Mats.Larsson@uab.ericsson.se")
|
|
2072 (print-short "Simon Leinen" "simon@instrumatic.ch")
|
|
2073 (print-short "Carsten Leonhardt" "leo@arioch.oche.de")
|
|
2074 (print-short "James LewisMoss" "moss@cs.sc.edu")
|
|
2075 (print-short "Mats Lidell" "mats.lidell@contactor.se")
|
|
2076 (print-short "Matt Liggett" "mliggett@seven.ucs.indiana.edu")
|
|
2077 (print-short "Christian Limpach" "Christian.Limpach@nice.ch")
|
|
2078 (print-short "Maximilien Lincourt" "max@toonboom.com")
|
|
2079 (print-short "Markus Linnala" "maage@b14b.tupsu.ton.tut.fi")
|
|
2080 (print-short "Robert Lipe" "robertl@arnet.com")
|
|
2081 (print-short "Derrell Lipman" "derrell@vis-av.com")
|
|
2082 (print-short "Damon Lipparelli" "lipp@aa.net")
|
|
2083 (print-short "Hamish Macdonald" "hamish@bnr.ca")
|
|
2084 (print-short "Ian MacKinnon" "imackinnon@telia.co.uk")
|
|
2085 (print-short "Patrick MacRoberts" "macro@hpcobr30.cup.hp.com")
|
|
2086 (print-short "Tonny Madsen" "Tonny.Madsen@netman.dk")
|
|
2087 (print-short "Ketil Z Malde" "ketil@ii.uib.no")
|
|
2088 (print-short "Steve March" "smarch@quaver.urbana.mcd.mot.com")
|
|
2089 (print-short "Ricardo Marek" "ricky@ornet.co.il")
|
|
2090 (print-short "Pekka Marjola" "pema@iki.fi")
|
|
2091 (print-short "Simon Marshall" "simon@gnu.ai.mit.edu")
|
|
2092 (print-short "Dave Mason" "dmason@plg.uwaterloo.ca")
|
|
2093 (print-short "Jaye Mathisen" "mrcpu@cdsnet.net")
|
|
2094 (print-short "Jason McLaren" "mclaren@math.mcgill.ca")
|
|
2095 (print-short "Michael McNamara" "mac@silicon-sorcery.com")
|
|
2096 (print-short "Michael Meissner" "meissner@osf.org")
|
|
2097 (print-short "David M. Meyer" "meyer@ns.uoregon.edu")
|
|
2098 (print-short "John Mignault" "jbm@panix.com")
|
|
2099 (print-short "Brad Miller" "bmiller@cs.umn.edu")
|
|
2100 (print-short "John Morey" "jmorey@crl.com")
|
|
2101 (print-short "Rob Mori" "rob.mori@sun.com")
|
|
2102 (print-short "Heiko Muenkel" "muenkel@tnt.uni-hannover.de")
|
|
2103 (print-short "Arup Mukherjee" "arup+@cs.cmu.edu")
|
|
2104 (print-short "Colas Nahaboo" "Colas.Nahaboo@sophia.inria.fr")
|
|
2105 (print-short "Lynn D. Newton" "lynn@ives.phx.mcd.mot.com")
|
|
2106 (print-short "Casey Nielson" "knielson@joule.elee.calpoly.edu")
|
|
2107 (print-short "Georg Nikodym" "Georg.Nikodym@canada.sun.com")
|
|
2108 (print-short "Andy Norman" "ange@hplb.hpl.hp.com")
|
|
2109 (print-short "Joe Nuspl" "nuspl@sequent.com")
|
|
2110 (print-short "Kim Nyberg" "kny@tekla.fi")
|
|
2111 (print-short "Kevin Oberman" "oberman@es.net")
|
|
2112 (print-short "David Ofelt" "ofelt@getalife.Stanford.EDU")
|
|
2113 (print-short "Alexandre Oliva" "oliva@dcc.unicamp.br")
|
|
2114 (print-short "Tore Olsen" "toreo@colargol.idb.hist.no")
|
|
2115 (print-short "Greg Onufer" "Greg.Onufer@eng.sun.com")
|
|
2116 (print-short "Achim Oppelt" "aoppelt@theorie3.physik.uni-erlangen.de")
|
|
2117 (print-short "Rebecca Ore" "rebecca.ore@op.net")
|
|
2118 (print-short "Sudeep Kumar Palat" "palat@idt.unit.no")
|
|
2119 (print-short "Joel Peterson" "tarzan@aosi.com")
|
|
2120 (print-short "Thomas A. Peterson" "tap@src.honeywell.com")
|
|
2121 (print-short "Tibor Polgar" "tibor@alteon.com")
|
|
2122 (print-short "Frederic Poncin" "fp@info.ucl.ac.be")
|
|
2123 (print-short "E. Rehmi Post" "rehmi@asylum.sf.ca.us")
|
|
2124 (print-short "Martin Pottendorfer" "Martin.Pottendorfer@aut.alcatel.at")
|
|
2125 (print-short "Colin Rafferty" "colin@xemacs.org")
|
|
2126 (print-short "Rick Rankin" "Rick_Rankin-P15254@email.mot.com")
|
|
2127 (print-short "Paul M Reilly" "pmr@pajato.com")
|
|
2128 (print-short "Jack Repenning" "jackr@sgi.com")
|
|
2129 (print-short "Daniel Rich" "drich@cisco.com")
|
|
2130 (print-short "Roland Rieke" "rol@darmstadt.gmd.de")
|
|
2131 (print-short "Art Rijos" "art.rijos@SNET.com")
|
|
2132 (print-short "Russell Ritchie" "ritchier@britannia-life.co.uk")
|
|
2133 (print-short "Roland" "rol@darmstadt.gmd.de")
|
|
2134 (print-short "Mike Russell" "mjruss@rchland.vnet.ibm.com")
|
|
2135 (print-short "Hajime Saitou" "hajime@jsk.t.u-tokyo.ac.jp")
|
|
2136 (print-short "Jan Sandquist" "etxquist@iqa.ericsson.se")
|
|
2137 (print-short "Marty Sasaki" "sasaki@spdcc.com")
|
|
2138 (print-short "SATO Daisuke" "densuke@ga2.so-net.or.jp")
|
|
2139 (print-short "Kenji Sato" "ken@ny.kdd.com")
|
|
2140 (print-short "Mike Scheidler" "c23mts@eng.delcoelect.com")
|
|
2141 (print-short "Daniel Schepler" "daniel@shep13.wustl.edu")
|
|
2142 (print-short "Holger Schauer" "schauer@coling.uni-freiburg.de")
|
|
2143 (print-short "Darrel Schneider" "darrel@slc.com")
|
|
2144 (print-short "Hayden Schultz" "haydens@ll.mit.edu")
|
|
2145 (print-short "Cotton Seed" "cottons@cybercom.net")
|
|
2146 (print-short "Axel Seibert" "seiberta@informatik.tu-muenchen.de")
|
|
2147 (print-short "Odd-Magne Sekkingstad" "oddms@ii.uib.no")
|
|
2148 (print-short "Gregory Neil Shapiro" "gshapiro@sendmail.org")
|
|
2149 (print-short "Justin Sheehy" "justin@linus.mitre.org")
|
|
2150 (print-short "John Shen" "zfs60@cas.org")
|
|
2151 (print-short "Murata Shuuichirou" "mrt@mickey.ai.kyutech.ac.jp")
|
|
2152 (print-short "Matt Simmons" "simmonmt@acm.org")
|
|
2153 (print-short "Dinesh Somasekhar" "somasekh@ecn.purdue.edu")
|
|
2154 (print-short "Jeffrey Sparkes" "jsparkes@bnr.ca")
|
|
2155 (print-short "Manoj Srivastava" "srivasta@pilgrim.umass.edu")
|
|
2156 (print-short "Francois Staes" "frans@kiwi.uia.ac.be")
|
|
2157 (print-short "Anders Stenman" "stenman@isy.liu.se")
|
|
2158 (print-short "Jason Stewart" "jasons@cs.unm.edu")
|
|
2159 (print-short "Rick Tait" "rickt@gnu.ai.mit.edu")
|
|
2160 (print-short "TANAKA Hayashi" "tanakah@mxa.mesh.ne.jp")
|
|
2161 (print-short "Samuel Tardieu" "sam@inf.enst.fr")
|
|
2162 (print-short "James Thompson" "thompson@wg2.waii.com")
|
|
2163 (print-short "Nobu Toge" "toge@accad1.kek.jp")
|
|
2164 (print-short "Raymond L. Toy" "toy@rtp.ericsson.se")
|
|
2165 (print-short "Remek Trzaska" "remek@npac.syr.edu")
|
|
2166 (print-short "TSUTOMU Nakamura" "tsutomu@rs.kyoto.omronsoft.co.jp")
|
|
2167 (print-short "Stefanie Teufel" "s.teufel@ndh.net")
|
|
2168 (print-short "Gary Thomas" "g.thomas@opengroup.org")
|
|
2169 (print-short "John Turner" "turner@xdiv.lanl.gov")
|
|
2170 (print-short "UENO Fumihiro" "7m2vej@ritp.ye.IHI.CO.JP")
|
|
2171 (print-short "Aki Vehtari" "Aki.Vehtari@hut.fi")
|
|
2172 (print-short "Juan E. Villacis" "jvillaci@cs.indiana.edu")
|
|
2173 (print-short "Vladimir Vukicevic" "vladimir@intrepid.com")
|
|
2174 (print-short "David Walte" "djw18@cornell.edu")
|
|
2175 (print-short "Peter Ware" "ware@cis.ohio-state.edu")
|
|
2176 (print-short "Christoph Wedler" "wedler@fmi.uni-passau.de")
|
|
2177 (print-short "Yoav Weiss" "yoav@zeus.datasrv.co.il")
|
|
2178 (print-short "Peter B. West" "p.west@uq.net.au")
|
|
2179 (print-short "Rod Whitby" "rwhitby@asc.corp.mot.com")
|
|
2180 (print-short "Rich Williams" "rdw@hplb.hpl.hp.com")
|
|
2181 (print-short "Raymond Wiker" "raymond@orion.no")
|
|
2182 (print-short "Peter Windle" "peterw@SDL.UG.EDS.COM")
|
|
2183 (print-short "David C Worenklein" "dcw@gcm.com")
|
|
2184 (print-short "Takeshi Yamada" "yamada@sylvie.kecl.ntt.jp")
|
|
2185 (print-short "Katsumi Yamaoka" "yamaoka@ga.sony.co.jp")
|
|
2186 (print-short "Jason Yanowitz" "yanowitz@eternity.cs.umass.edu")
|
|
2187 (print-short "La Monte Yarroll" "piggy@hilbert.maths.utas.edu.au")
|
|
2188 (print-short "Blair Zajac" "blair@olympia.gps.caltech.edu")
|
|
2189 (print-short "Volker Zell" "vzell@de.oracle.com")
|
|
2190 (print-short "Daniel Zivkovic" "daniel@canada.sun.com")
|
|
2191 (print-short "Karel Zuiderveld" "Karel.Zuiderveld@cv.ruu.nl")
|
|
2192 (widget-insert "\n"))
|
428
|
2193 (about-finish-buffer)))
|
|
2194
|
|
2195 ;;; about.el ends here
|