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