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