0
|
1 ;;; about.el --- the About The Authors page (shameless self promotion).
|
|
2 ;;;
|
|
3
|
16
|
4 ;; Copyright (c) 1995, 1996, 1997 XEmacs Advocacy Organization.
|
0
|
5
|
|
6 ;; This file is part of XEmacs.
|
|
7
|
|
8 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
9 ;; under the terms of the GNU General Public License as published by
|
|
10 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
11 ;; any later version.
|
|
12
|
|
13 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
14 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
16 ;; General Public License for more details.
|
|
17
|
|
18 ;; You should have received a copy of the GNU General Public License
|
16
|
19 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
20 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 ;; Boston, MA 02111-1307, USA.
|
0
|
22
|
|
23 ;;; Synched up with: Not in FSF.
|
|
24
|
|
25 ;;; This is kind of a kludge. We were going to use W3 to do this, but
|
|
26 ;;; it's too slow to load, and HTML gives you too little control over
|
|
27 ;;; the layout (especially indentation and inter-paragraph spacing).
|
|
28 ;;; Maybe the text should have been written in limited HTML anyway,
|
|
29 ;;; and I should have hacked up a simple and fast parser for it, but
|
|
30 ;;; it's done now...
|
|
31 ;;;
|
|
32 ;;; Code: Jamie Zawinski <jwz@netscape.com>
|
|
33 ;;; Text: Ben Wing <wing@666.com>, Jamie Zawinski <jwz@netscape.com>
|
|
34 ;;; Hard: Amiga 1000, Progressive Peripherals Frame Grabber.
|
|
35 ;;; Soft: FG 2.0, DigiPaint 3.0, pbmplus (dec 91), xv 3.0.
|
|
36 ;;; Modified for 19.11 by Eduardo Pelegri-Llopart <pelegri@eng.sun.com>
|
|
37 ;;; and Chuck Thompson <cthomp@xemacs.org>
|
|
38 ;;; More hacking for 19.12 by Chuck Thompson and Ben Wing.
|
|
39 ;;; 19.13 and 19.14 updating done by Chuck Thompson.
|
16
|
40 ;;; 19.15 and 20.0 updating done by Steve Baur.
|
0
|
41
|
|
42 (require 'browse-url)
|
30
|
43 (require 'view-less)
|
|
44
|
0
|
45 (defvar about-xref-map (let ((map (make-sparse-keymap)))
|
|
46 (define-key map 'button1 'about-xemacs-xref)
|
|
47 (define-key map 'button2 'about-xemacs-xref)
|
|
48 (define-key map '(return) 'about-xemacs-xref)
|
|
49 map))
|
|
50
|
|
51 ;; This historically significant variable has been removed from service.
|
|
52 (defvar what-are-we-calling-it-today "XEmacs")
|
|
53
|
|
54 (defun about-face (text face)
|
|
55 (let ((p (point))
|
|
56 e)
|
|
57 (insert text)
|
|
58 (setq e (make-extent p (point)))
|
|
59 ;;(set-extent-property e 'start-open t)
|
|
60 (set-extent-face e face)
|
|
61 e))
|
|
62
|
|
63 (defun about-xref (text xref help)
|
|
64 (let ((e (about-face text 'bold)))
|
|
65 (set-extent-property e 'keymap about-xref-map)
|
|
66 (set-extent-property e 'mouse-face 'highlight)
|
|
67 (set-extent-property e 'xref xref)
|
|
68 (set-extent-property e 'help-echo help)
|
|
69 e))
|
|
70
|
|
71 ;;;###autoload
|
|
72 (defun about-xemacs ()
|
|
73 (interactive)
|
|
74 (switch-to-buffer (get-buffer-create "About XEmacs"))
|
|
75 (delete-other-windows)
|
|
76 (buffer-disable-undo (current-buffer))
|
|
77 (widen)
|
|
78 (set (make-local-variable 'tab-width) 8)
|
|
79 (setq buffer-read-only t)
|
|
80 (view-mode nil 'kill-buffer) ;; assume the new view-less
|
|
81 (let* ((buffer-read-only nil)
|
|
82 (emacs-short-version (concat emacs-major-version "." emacs-minor-version))
|
16
|
83 (emacs-about-version (format "version %s; March 1997" emacs-short-version))
|
0
|
84 (indent-tabs-mode t)
|
|
85 )
|
|
86 (erase-buffer)
|
|
87 (insert "\n")
|
|
88 (indent-to (startup-center-spaces xemacs-logo))
|
|
89 (let ((e (make-extent (point) (point))))
|
|
90 (set-extent-begin-glyph e xemacs-logo))
|
|
91 (insert "\n\n")
|
|
92 (indent-to (startup-center-spaces "(formerly known as Lucid Emacs)"))
|
|
93 (insert "(formerly known as Lucid Emacs)")
|
|
94 (insert "\n\n")
|
|
95 (indent-to (startup-center-spaces emacs-about-version))
|
|
96 (about-xref emacs-about-version 'news "The latest NEWS of XEmacs")
|
|
97 (insert "\n\n")
|
|
98
|
|
99 (insert "\n\t")
|
|
100 (about-face "XEmacs" 'italic)
|
|
101 (insert " is a powerful, extensible text editor with full GUI
|
|
102 support, initially based on an early version of GNU Emacs 19 from
|
|
103 the Free Software Foundation and since kept up to date with recent
|
|
104 versions of that product. XEmacs stems from a ")
|
|
105 (about-xref "collaboration" 'history "An XEmacs History Lesson")
|
|
106 (insert "\n\tof Lucid, Inc. with Sun Microsystems, Inc. and the University
|
|
107 of Illinois with additional support having been provided by
|
|
108 Amdahl Corporation and INS Engineering Corporation.\n\n\t")
|
|
109
|
|
110 (insert "In almost all circumstances, Emacs-Lisp code written for
|
|
111 GNU Emacs versions 18 and 19 will run under XEmacs without
|
|
112 requiring any modifications, or at most will require small
|
|
113 changes to accommodate an improved functional interface.\n\n\t")
|
|
114
|
|
115 (insert "XEmacs provides a great number of ")
|
|
116 (about-xref "new features" 'features "See a list of the new features.")
|
|
117 (insert ". More details
|
|
118 on XEmacs's functionality, including bundled packages can be
|
|
119 obtained through the ")
|
|
120
|
|
121 (about-xref "`info`" 'info "Look at the info pages")
|
|
122 (insert " on-line information system.
|
|
123
|
|
124 The WWW page for XEmacs can be browsed, using any WWW browser, at\n\t\t")
|
|
125 (about-xref "http://www.xemacs.org/" 'w3-xemacs "Go to the XEmacs World Wide Web page")
|
|
126 (insert "\n\n\tNote that w3 (XEmacs's own browser), might need customization
|
|
127 (due to firewalls) in order to work correctly.\n\n\t")
|
|
128
|
|
129 (insert "XEmacs is the result of the time and effort of many people.
|
|
130 The developers responsible for the " emacs-short-version " release are:
|
|
131
|
16
|
132 * ") (about-xref "Steve Baur" 'steve "Find out more about Steve Baur") (insert " <steve@altair.xemacs.org>
|
|
133 * ") (about-xref "Martin Buchholz" 'mrb "Find out more about Martin Buchholz") (insert " <mrb@eng.sun.com>
|
|
134
|
|
135 * ") (about-xref "And many other contributors..." 'others "Read about the legion of XEmacs hackers") (insert "
|
|
136
|
|
137 Chuck Thompson was Mr. XEmacs from 19.11 through 19.14. Ben Wing
|
|
138 was crucial to each of those releases.
|
|
139
|
0
|
140 * ") (about-xref "Chuck Thompson" 'cthomp "Find out more about Chuck Thompson") (insert " <cthomp@xemacs.org>
|
|
141 * ") (about-xref "Ben Wing" 'wing "Find out more about Ben Wing") (insert " <wing@xemacs.org>
|
|
142
|
|
143 Jamie Zawinski was Mr. Lucid Emacs from 19.0 through 19.10,
|
|
144 the last release actually named Lucid Emacs. Richard Mlynarik
|
|
145 was crucial to most of those releases.
|
|
146
|
|
147 * ") (about-xref "Jamie Zawinski" 'jwz "Find out more about Jamie Zawinski") (insert " <jwz@netscape.com>
|
|
148 * ") (about-xref "Richard Mlynarik" 'mly "Find out more about Richard Mlynarik") (insert " <mly@adoc.xerox.com>")
|
|
149 (insert "\n\n\tClick ")
|
|
150 (about-xref "here" 'kill-buffer "Exit the About page")
|
|
151 (insert " to remove (kill) this buffer.")
|
|
152 (goto-char (point-min)))
|
|
153 )
|
|
154
|
|
155 (defun about-load-mosaic (&optional who-to-load)
|
|
156 (save-excursion
|
|
157 (set-buffer (get-buffer-create "About XEmacs"))
|
|
158 (toggle-read-only 0)
|
|
159
|
|
160 (let ((rest (if who-to-load (list who-to-load)
|
32
|
161 '(steve mrb cthomp wing stig jwz mly vladimir baw piper bw wmperry kyle larsi jens)))
|
0
|
162 (got-error nil))
|
|
163 (while rest
|
|
164 (let* ((who (car rest))
|
|
165 (who-xpm (expand-file-name
|
|
166 (concat (symbol-name who)
|
|
167 (if (memq (device-class (selected-device))
|
|
168 '(color grayscale))
|
|
169 ""
|
|
170 "m")
|
|
171 ".xpm")
|
|
172 data-directory)))
|
|
173 (or (file-exists-p who-xpm) (setq who-xpm (concat who-xpm ".Z")))
|
|
174 (if (eq nil (assoc who (buffer-local-variables)))
|
|
175 (make-local-variable who))
|
|
176 (if (and (boundp who)
|
|
177 (glyphp (symbol-value who)))
|
|
178 nil
|
|
179 (message "One moment please...")
|
|
180 (condition-case c
|
|
181 (save-restriction
|
|
182 (set who nil)
|
|
183 (narrow-to-region (point) (point))
|
|
184 (insert-file-contents who-xpm)
|
|
185 (if (looking-at "\037\235") ;may already be decompressed...
|
|
186 (call-process-region (point-min) (point-max)
|
|
187 "zcat" t t nil))
|
|
188 (set who (make-glyph
|
|
189 (prog1 (buffer-string)
|
|
190 (delete-region (point-min) (point-max)))))
|
|
191 )
|
|
192 (error
|
|
193 (setq got-error t)
|
|
194 (message nil)
|
|
195 (display-error c nil)
|
|
196 (sit-for 2)))))
|
|
197 (setq rest (cdr rest)))
|
|
198 (or got-error (message nil)))
|
|
199 (toggle-read-only 1)
|
|
200 ))
|
|
201
|
|
202 (defun about-add-mosaic ()
|
|
203 (goto-char (point-min))
|
|
204 (about-load-mosaic)
|
32
|
205 )
|
0
|
206 ;; HERE TO PLACE ADDITIONAL MUGSHOTS
|
|
207
|
32
|
208 ;; This is losing badly to a redisplay glitch, and it doesn't scale up.
|
|
209
|
|
210 ; (goto-char (point-max))
|
|
211 ; (insert "\n ")
|
0
|
212
|
32
|
213 ; (let ((rest '(steve mrb cthomp wing stig linebreak jwz mly vladimir linebreak baw piper bw linebreak wmperry kyle larsi jens))
|
|
214 ; (got-error nil))
|
|
215 ; (while rest
|
|
216 ; (if (eq (car rest) 'linebreak)
|
|
217 ; (insert "\n\n ")
|
|
218 ; (let* ((who (car rest))
|
|
219 ; (b (get-buffer "About XEmacs"))
|
|
220 ; (p (symbol-value-in-buffer who b nil)))
|
|
221 ; (or (glyphp p) (setq p nil))
|
|
222 ; (and p
|
|
223 ; (let ((e (make-extent (point) (point))))
|
|
224 ; (set-extent-begin-glyph e p)
|
|
225 ; (set-extent-property e 'keymap about-xref-map)
|
|
226 ; (set-extent-property e 'xref who)))
|
|
227 ; (insert " ")
|
|
228 ; (sit-for 0)))
|
|
229 ; (setq rest (cdr rest)))
|
|
230 ; (insert "\n")
|
|
231 ; (goto-char (point-min))
|
|
232 ; (or got-error (message nil)))
|
|
233 ; )
|
0
|
234
|
44
|
235 (defvar about-xref-alist
|
|
236 '((w3-xemacs . "http://www.xemacs.org/")
|
|
237 (w3-jamie . "http://www.netscape.com/people/jwz/")
|
|
238 (w3-baw . "http://www.python.org/~bwarsaw/")
|
|
239 (w3-python . "http://www.python.org/ftp/emacs/")
|
|
240 (w3-infodock . "http://www.infodock.com")
|
|
241 (w3-kyle . "http://www.wonderworks.com/kyle/")
|
|
242 (w3-larsi . "http://www.ifi.uio.no/~larsi/")
|
|
243 (w3-hrvoje . "ftp://gnjilux.cc.fer.hr/pub/unix/util/wget/")
|
|
244 ;; add more here
|
|
245 )
|
|
246 "Mappings between xref symbols and URLs")
|
|
247
|
0
|
248 (defun about-xemacs-xref ()
|
|
249 (interactive "@")
|
|
250 (let* ((e (or current-mouse-event last-input-event))
|
|
251 (extent (or (and (null e) (extent-at (point)))
|
|
252 (and (mouse-event-p e) (event-glyph-extent e))
|
|
253 (extent-at (if (mouse-event-p e)
|
|
254 (event-point e)
|
|
255 (point))
|
|
256 (if (mouse-event-p e)
|
|
257 (event-buffer e)
|
|
258 (current-buffer))
|
|
259 'xref)))
|
|
260 (xref (extent-property extent 'xref))
|
|
261 prev-page)
|
|
262 ;; prev-page is used for the core people's pages since they can be
|
|
263 ;; reached from two different locations
|
|
264 (if (equal (buffer-name) "About XEmacs")
|
|
265 (setq prev-page 'about)
|
|
266 ;; Kill the sub-buffers when going back to the top, so that we
|
|
267 ;; don't hold pointers to the bitmaps longer than necessary.
|
44
|
268 (if (not (assq xref about-xref-alist))
|
0
|
269 (progn
|
|
270 (kill-buffer (current-buffer))
|
|
271 (setq prev-page 'others))))
|
|
272 (cond
|
|
273 ((eq xref 'about)
|
|
274 (about-xemacs))
|
|
275 ((eq xref 'info)
|
|
276 (info))
|
44
|
277 ((assq xref about-xref-alist)
|
0
|
278 (funcall browse-url-browser-function
|
44
|
279 (cdr (assq xref about-xref-alist))))
|
0
|
280 ((eq xref 'kill-buffer)
|
|
281 (kill-buffer (current-buffer)))
|
|
282 ((eq xref 'news)
|
|
283 (view-emacs-news)
|
|
284 (view-mode nil 'kill-buffer) ;; assume the new view-less
|
|
285 (save-excursion
|
|
286 (goto-char (point-min))
|
|
287 (let ((buffer-read-only nil))
|
|
288 (insert "\nClick ")
|
|
289 (about-xref "here" prev-page "Return to previous page")
|
|
290 (insert " to go back to the previous page.\n\n")
|
|
291 (set-buffer-modified-p nil)
|
|
292 )))
|
|
293 (t
|
|
294 (switch-to-buffer (get-buffer-create
|
|
295 (cond ((eq xref 'jwz) "About Jamie Zawinski")
|
|
296 ((eq xref 'cthomp) "About Chuck Thompson")
|
|
297 ((eq xref 'wing) "About Ben Wing")
|
|
298 ((eq xref 'mly) "About Richard Mlynarik")
|
|
299 ((eq xref 'vladimir) "About Vladimir Ivanovic")
|
|
300 ((eq xref 'baw) "About Barry Warsaw")
|
|
301 ((eq xref 'wmperry) "About William Perry")
|
|
302 ((eq xref 'bw) "About Bob Weiner")
|
|
303 ((eq xref 'piper) "About Andy Piper")
|
|
304 ((eq xref 'stig) "About Jonathan Stigelman")
|
16
|
305 ((eq xref 'steve) "About Steve Baur")
|
|
306 ((eq xref 'mrb) "About Martin Buchholz")
|
24
|
307 ((eq xref 'kyle) "About Kyle Jones")
|
26
|
308 ((eq xref 'larsi) "About Lars Magne Ingebrigtsen")
|
32
|
309 ((eq xref 'jens) "About Jens Lautenbacher")
|
0
|
310 ((eq xref 'others) "About Everyone")
|
|
311 ((eq xref 'features) "New XEmacs Features")
|
|
312 ((eq xref 'history) "XEmacs History")
|
44
|
313 (t (error "Can't follow xref: %s" xref))
|
0
|
314 )))
|
|
315 (delete-other-windows)
|
|
316 (buffer-disable-undo (current-buffer))
|
|
317 (widen)
|
|
318 (setq buffer-read-only t)
|
|
319 (view-mode nil 'kill-buffer) ;; assume the new view-less
|
|
320 (let ((buffer-read-only nil)
|
|
321 (case-fold-search nil)
|
|
322 )
|
|
323 (if (and (not (eq xref 'others)) (not (eq xref 'history))
|
|
324 (not (eq xref 'features)))
|
|
325 (about-load-mosaic xref))
|
|
326 (erase-buffer)
|
|
327 (let* ((b (get-buffer "About XEmacs"))
|
|
328 (p (and b (symbol-value-in-buffer xref b nil))))
|
|
329 (or (glyphp p) (setq p nil))
|
|
330 (cond (p
|
|
331 (insert "\n\t")
|
|
332 (set-extent-begin-glyph (make-extent (point) (point)) p)
|
|
333 (insert "\n\t"))
|
|
334 (t
|
|
335 (insert "\n\t"))))
|
|
336 (cond
|
|
337 ((eq xref 'history)
|
|
338 (insert "Click ")
|
|
339 (about-xref "here" prev-page "Return to previous page")
|
|
340 (insert " to go back to the previous page.\n\n\t")
|
|
341
|
|
342 (about-face "XEmacs" 'bold)
|
|
343 (insert "\n\n\n\t")
|
|
344 (about-face "The Lucid, Inc. Point of View" 'italic)
|
|
345 (insert "
|
|
346
|
|
347 At the time of the inception of Lucid Emacs (the former name
|
|
348 of XEmacs), Lucid's latest product was Energize, a C/C++
|
|
349 development environment. Rather than invent (and force our
|
|
350 users to learn) a new user interface, we chose to build part
|
|
351 of our environment on top of the world's best editor, GNU
|
|
352 Emacs. (Though our product is commercial, the work we did on
|
|
353 GNU Emacs is free software, and is useful in its own right.)
|
|
354
|
|
355 We needed a version of Emacs with mouse-sensitive regions,
|
|
356 multiple fonts, the ability to mark sections of a buffer as
|
|
357 read-only, the ability to detect which parts of a buffer has
|
|
358 been modified, and many other features.
|
|
359
|
|
360 For our purposes, the existing version of Epoch was not
|
|
361 sufficient; it did not allow us to put arbitrary pixmaps/icons
|
|
362 in buffers, `undo' did not restore changes to regions, regions
|
|
363 did not overlap and merge their attributes in the way we needed,
|
|
364 and several other things.
|
|
365
|
|
366 We could have devoted our time to making Epoch do what we needed
|
|
367 (and, in fact, we spent some time doing that in 1990) but, since
|
|
368 the FSF planned to include Epoch-like features in their version
|
|
369 19, we decided that our efforts would be better spent improving
|
|
370 Emacs 19 instead of Epoch.
|
|
371
|
|
372 Our original hope was that our changes to Emacs would be
|
|
373 incorporated into the \"official\" v19. However, scheduling
|
|
374 conflicts arose, and we found that, given the amount of work
|
|
375 still remaining to be done, we didn't have the time or manpower
|
|
376 to do the level of coordination that would be necessary to get
|
|
377 our changes accepted by the FSF. Consequently, we released our
|
|
378 work as a forked branch of Emacs, instead of delaying any
|
|
379 longer.
|
|
380
|
|
381 Roughly a year after Lucid Emacs 19.0 was released, a beta
|
|
382 version of the FSF branch of Emacs 19 was released. The FSF
|
|
383 version is better in some areas, and worse in others, as
|
|
384 reflects the differing focus of our development efforts.
|
|
385
|
|
386 We plan to continue developing and supporting Lucid Emacs, and
|
|
387 merging in bug fixes and new features from the FSF branch as
|
|
388 appropriate; we do not plan to discard any of the functionality
|
|
389 that we implemented which RMS has chosen not to include in his
|
|
390 version.
|
|
391
|
|
392 Certain elements of Lucid Emacs, or derivatives of them, have
|
|
393 been ported to the FSF version. We have not been doing work in
|
|
394 this direction, because we feel that Lucid Emacs has a cleaner
|
|
395 and more extensible substrate, and that any kind of merger
|
|
396 between the two branches would be far easier by merging the FSF
|
|
397 changes into our version than the other way around.
|
|
398
|
|
399 We have been working closely with the Epoch developers to merge
|
|
400 in the remaining Epoch functionality which Lucid Emacs does not
|
|
401 yet have. Epoch and Lucid Emacs will soon be one and the same
|
|
402 thing. Work is being done on a compatibility package which will
|
|
403 allow Epoch 4 code to run in XEmacs with little or no change.")
|
|
404
|
|
405 (insert "\n\n\n\t")
|
|
406 (about-face "The Sun Microsystems, Inc. Point of View" 'italic)
|
|
407 (insert "
|
|
408
|
|
409 Emacs 18 has been around for a long, long time. Version 19 was
|
|
410 supposed to be the successor to v18 with X support. It was
|
|
411 going to be available \"real soon\" for a long time (some
|
|
412 people remember hearing about v19 as early as 1984!), but it
|
|
413 never came out. v19 development was going very, very slowly,
|
|
414 and from the outside it seemed that it was not moving at all.
|
|
415 In the meantime other people gave up waiting for v19 and
|
|
416 decided to build their own X-aware Emacsen. The most important
|
|
417 of these was probably Epoch, which came from University of
|
|
418 Illinois (\"UofI\") and was based on v18.
|
|
419
|
|
420 Around three or four years ago what was then called SunPro (a
|
|
421 division of Sun Microsystems, Inc.) decided that it wanted an
|
|
422 integrated editor. They contracted with UofI to provide a
|
|
423 number of basic enhancements to the functionality in Epoch.
|
|
424 UofI initially was planning to deliver this on top of Epoch
|
|
425 code.
|
|
426
|
|
427 In the meantime (actually some time before they talked with UofI)
|
|
428 Lucid had decided that it also wanted to provide an integrated
|
|
429 environment with an integrated editor. Lucid decided that the
|
|
430 v19 basis was a better one than v18 and thus decided not to use
|
|
431 Epoch but instead work with Richard Stallman, the head of the
|
|
432 Free Software Foundation and principle author of Emacs, on
|
|
433 getting v19 out. At some point Stallman and Lucid parted ways.
|
|
434 Lucid kept working and got a v19 out that they called Lucid
|
|
435 Emacs 19.
|
|
436
|
|
437 After Lucid's v19 came out it became clear to UofI and SunPro
|
|
438 that the right thing to do was to push for an integration of
|
|
439 both Lucid Emacs and Epoch, and to get the deliverables that
|
|
440 SunPro was asking from UofI on top of this integrated
|
|
441 platform. Through the last three or four years, SunPro has
|
|
442 been actively supporting this product and has been investing a
|
|
443 comparable amount of effort into it as Lucid has. Substantial
|
|
444 portions of the current code have originated under the support
|
|
445 of SunPro, either directly in SunPro, or in UofI but paid for
|
|
446 by SunPro. This code was kept away from Lucid for a while,
|
|
447 but later was made available to them. Initially Lucid didn't
|
|
448 know that SunPro was supporting UofI, but later they were open
|
|
449 about it.
|
|
450
|
|
451 Around two years ago the SunPro-related code started showing up
|
|
452 in Lucid Emacs. This started with the infusion of the Epoch
|
|
453 redisplay code.
|
|
454
|
|
455 At this moment there is basically no difference in the source
|
|
456 trees between what is at UofI and at Sun. All the development
|
|
457 sites are in sync.
|
|
458
|
|
459 SunPro originally called the integrated product ERA, for
|
|
460 \"Emacs Rewritten Again\". SunPro and Lucid eventually came
|
|
461 to an agreement to find a name for the product that was not
|
|
462 specific to either company. An additional constraint that
|
|
463 Lucid placed on the name was that it must contain the word
|
|
464 \"Emacs\" in it -- thus \"ERA\" was not acceptable. The
|
|
465 tentatively agreed-upon name was \"XEmacs\", and this has
|
|
466 been the name of the product since version 19.11.)")
|
|
467
|
|
468 (insert "\n\n\n\t")
|
2
|
469 (about-face "SunPro is now DevPro (Sun Developer Products)\n" 'italic)
|
0
|
470 (insert "
|
2
|
471 In mid-'94 Sun completed a reorganization where SunPro moved
|
|
472 to SunSoft. As a consequence, SunPro was then called SunSoft
|
|
473 Developer Products, or DevPro for short. De-planetization is
|
|
474 continuing in 1996, and the name `Sunsoft' is falling into
|
|
475 disuse in favour of `Sun'.")
|
0
|
476
|
|
477 (insert "\n\n\n\t")
|
|
478 (about-face "Lucid goes under\n" 'italic)
|
|
479 (insert "
|
|
480 Around mid-'94, Lucid went out of business. Development on
|
|
481 XEmacs, however, has continued unabated under the auspices of
|
|
482 Sun Microsystems and the University of Illinois, with help
|
|
483 from Amdahl Corporation and INS Engineering Corporation.
|
|
484 Sun plans to continue to support XEmacs into the future.")
|
|
485
|
|
486 (insert "\n\n\n\t")
|
|
487 (about-face "The Amdahl Corporation point of view" 'italic)
|
|
488 (insert "
|
|
489
|
|
490 Amdahl Corporation's Storage Products Group (SPG) uses XEmacs
|
|
491 as the focal point of a environment for development of the
|
|
492 microcode used in Amdahl's large-scale disk arrays, or DASD's.
|
|
493 SPG has joint ventures with Japanese companies, and decided
|
|
494 in late 1994 to contract out for work on XEmacs in order
|
|
495 to hasten the development of Mule support (i.e. support for
|
|
496 Japanese, Chinese, etc.) in XEmacs and as a gesture of goodwill
|
|
497 towards the XEmacs community for all the work they have done
|
|
498 on making a powerful, modern, freely available text editor.
|
|
499 Through this contract, Amdahl provided a large amount of work
|
|
500 in XEmacs in the form of rewriting the basic text-processing
|
|
501 mechanisms to allow for Mule support and writing a large
|
|
502 amount of the support for multiple devices.
|
|
503
|
|
504 Although Amdahl is no longer hiring a full-time contractor,
|
|
505 they are still funding part-time work on XEmacs and providing
|
|
506 resources for further XEmacs development.")
|
|
507
|
|
508 (insert "\n\n\n\t")
|
|
509 (about-face "The INS Engineering point of view" 'italic)
|
|
510 (insert "
|
|
511
|
|
512 INS Engineering Corporation, based in Tokyo, bought rights
|
|
513 to sell Energize when Lucid went out of business. Unhappy
|
|
514 with the performance of the Japanese support in XEmacs 19.11,
|
|
515 INS also contributed to the XEmacs development from late 1994
|
|
516 to early 1995.")
|
|
517
|
|
518 (insert "\n\n\n\t")
|
|
519 (insert "Click ")
|
|
520 (about-xref "here" prev-page "Return to previous page")
|
|
521 (insert " to go back to the previous page.\n\n\t")
|
|
522 )
|
|
523 ((eq xref 'jwz)
|
|
524 (about-face "Jamie Zawinski" 'bold)
|
|
525 (insert "\t\t\"")
|
|
526 (about-face "So much to do, so little time." 'italic)
|
|
527 (insert "\"\n")
|
|
528 (insert "\n
|
|
529 Jamie Zawinski was primarily to blame for Lucid Emacs from its
|
|
530 inception in 1991, to 1994 when Lucid Inc. finally died. He is
|
|
531 now to be found at Netscape Communications, hacking on Netscape
|
|
532 Navigator (he did the first Unix version and the mail reader).
|
|
533 Thankfully his extensive sleep deprivation experiments conducted
|
|
534 during 1994 and 1995 are now a thing of the past, but his
|
|
535 predilection for dark, Gothic music remains unabated.
|
|
536
|
|
537 Come visit his glorified .plan file at
|
|
538
|
|
539 ")
|
|
540 (about-xref "http://www.netscape.com/people/jwz/" 'w3-jamie "Visit Jamie's WWW page")
|
|
541 (insert "\n\n\tClick ")
|
|
542 (about-xref "here" prev-page "Return to previous page")
|
|
543 (insert " to go back to the previous page.\n")
|
|
544 )
|
16
|
545 ((eq xref 'steve)
|
|
546 (about-face "Steve Baur" 'bold)
|
|
547 (insert " <steve@altair.xemacs.org>
|
|
548
|
|
549 Steve took over the maintenance of XEmacs in November of 1996
|
|
550 (it seemed like a good idea at the time ...). In real life he is a
|
|
551 network administrator and Unix systems programmer for Miranova
|
|
552 Systems, Inc.
|
|
553
|
|
554 Steve's main contributions to XEmacs have been reviving the FAQ,
|
|
555 testing and integrating patches, tracking down and fixing bugs, and
|
|
556 answering hundreds of questions on Usenet.")
|
|
557
|
|
558 (insert "\n\n\tClick ")
|
|
559 (about-xref "here" prev-page "Return to previous page")
|
|
560 (insert " to go back to the previous page.\n")
|
|
561 )
|
|
562 ((eq xref 'mrb)
|
|
563 (about-face "Martin Buchholz" 'bold)
|
|
564 (insert " <mrb@eng.sun.com>
|
|
565
|
|
566 Martin Buchholz <Martin.Buchholz@sun.com>
|
|
567 Technical lead for XEmacs at DevPro (formerly SunPro), a
|
|
568 division of Sun Microsystems. Martin used to do XEmacs as a
|
|
569 `hobby' while at IBM, and was crazy enough to try to do it
|
|
570 for a living at Sun. Martin is currently working mostly on
|
|
571 Internationalization.")
|
|
572
|
|
573 (insert "\n\n\tClick ")
|
|
574 (about-xref "here" prev-page "Return to previous page")
|
|
575 (insert " to go back to the previous page.\n")
|
|
576 )
|
0
|
577 ((eq xref 'cthomp)
|
|
578 (about-face "Chuck Thompson" 'bold)
|
|
579 (insert " <cthomp@xemacs.org>
|
|
580
|
|
581 Chuck, through being in the wrong place at the right time, has
|
|
582 gotten stuck with being Jamie's replacement as the primary
|
|
583 maintainer of XEmacs. This has caused his hair to begin
|
|
584 falling out and quadrupled his daily coffee dosage. Though he
|
|
585 works at and for the University of Illinois his funding for
|
|
586 XEmacs work actually came from Sun Microsystems.
|
|
587
|
|
588 He has worked on XEmacs since November 1992, which fact
|
|
589 occasionally gives him nightmares. As of October 1995, he no
|
|
590 longer works full-time on XEmacs, though he does continue as
|
|
591 an active maintainer. His main contributions have been the
|
|
592 greatly enhanced redisplay engine, scrollbar support, the
|
|
593 toolbars, configure support and numerous other minor features
|
|
594 and fixes.
|
|
595
|
|
596 Rumors that Chuck is aka Black Francis aka Frank Black are
|
|
597 completely unfounded.")
|
|
598
|
|
599 (insert "\n\n\tClick ")
|
|
600 (about-xref "here" prev-page "Return to previous page")
|
|
601 (insert " to go back to the previous page.\n")
|
|
602 )
|
|
603 ((eq xref 'wing)
|
|
604 (about-face "Ben Wing" 'bold)
|
|
605 (insert " <wing@666.com>
|
|
606
|
|
607 I'm not a thug -- I just play one on video.
|
|
608 My roommate says I'm a San Francisco \"Mission Critter\".\n\n\t")
|
|
609 (about-face "Gory stuff follows:" 'italic)
|
|
610 (insert "
|
|
611
|
|
612 In 1992 I left a stuffy East-Coast university, set out into the
|
|
613 real world, and ended up a co-founder of Pearl Software. As
|
|
614 part of this company, I became the principal architect of
|
|
615 Win-Emacs, a port of Lucid Emacs to Microsoft Windows and
|
|
616 Windows NT (for more info, e-mail to ")
|
|
617 (about-face "info@pearlsoft.com" 'italic)
|
|
618 (insert ").
|
|
619
|
|
620 Since April 1993, I've worked on XEmacs as a contractor
|
|
621 for various companies, changing hats faster than Ronald Reagan's
|
|
622 hair color (oops, did I just show my age?). My main contributions
|
|
623 to XEmacs include rewriting large parts of the internals and the
|
|
624 gory Xt/Xlib interfacing, adding the Mule support, implementing
|
|
625 the external client widget, improving the documentation (especially
|
|
626 the Emacs Lisp manual), and being a general nuisance ... er,
|
|
627 brainstormer for many of the new features of XEmacs.
|
|
628
|
|
629 Recently I took a job at Dimension X, where I'm working on a
|
|
630 Java-based toolkit for developing VRML applications.")
|
|
631 (insert "\n\n\tClick ")
|
|
632 (about-xref "here" prev-page "Return to previous page")
|
|
633 (insert " to go back to the previous page.\n")
|
|
634 )
|
|
635 ((eq xref 'mly)
|
|
636 (about-face "Richard Mlynarik" 'bold)
|
|
637 (insert " <mly@adoc.xerox.com>
|
|
638
|
|
639 Cars are Evil. Ride a bike.")
|
|
640
|
|
641 (insert "\n\n\tClick ")
|
|
642 (about-xref "here" prev-page "Return to previous page")
|
|
643 (insert " to go back to the previous page.\n")
|
|
644 )
|
|
645 ((eq xref 'vladimir)
|
|
646 (about-face "Vladimir Ivanovic" 'bold)
|
|
647 (insert " <vladimir@mri.com>
|
|
648
|
|
649 Former technical lead for XEmacs at DevPro (formerly SunPro),
|
|
650 a division of Sun Microsystems. He is now with Microtec
|
|
651 Research Inc., working on embedded systems development
|
|
652 tools.")
|
|
653
|
|
654 (insert "\n\n\tClick ")
|
|
655 (about-xref "here" prev-page "Return to previous page")
|
|
656 (insert " to go back to the previous page.\n")
|
|
657 )
|
|
658
|
|
659 ((eq xref 'baw)
|
|
660 (about-face "Barry Warsaw" 'bold)
|
38
|
661 (insert " <bwarsaw@python.org>
|
0
|
662
|
44
|
663 Author of CC Mode, for C, C++, Objective-C, and Java editing,
|
|
664 and Supercite for mail and news citing. Also various and
|
|
665 sundry other Emacs packages, utilities, fixes, enhancements
|
|
666 and kludgery as whimsy, boredom, and ToT dictate (but not
|
|
667 necessarily in that order). See also:\n
|
|
668 ")
|
|
669 (about-xref "http://www.python.org/~bwarsaw/" 'w3-baw
|
|
670 "Visit Barry's WWW page")
|
|
671 (insert "\n and:
|
|
672 ")
|
|
673 (about-xref "http://www.python.org/ftp/emacs/" 'w3-python
|
|
674 "Visit the CC Mode distribution")
|
|
675 (insert "\n\n
|
0
|
676
|
|
677 Daddy
|
|
678 © 1994 Warsaw
|
44
|
679 =============
|
0
|
680 Drive me Daddy, drive me quick
|
|
681 Push my pedal, shift my stick
|
|
682 Fill me up with golden gas
|
|
683 My rubber squeals, I go real fast
|
|
684
|
|
685 Milk me Daddy, milk me now
|
|
686 Milk me like a big ol' cow
|
|
687 I've got milk inside my udder
|
|
688 Churn it up and make some butter")
|
|
689
|
|
690 (insert "\n\n\tClick ")
|
|
691 (about-xref "here" prev-page "Return to previous page")
|
|
692 (insert " to go back to the previous page.\n")
|
|
693 )
|
|
694
|
|
695 ((eq xref 'bw)
|
|
696 (about-face "Bob Weiner" 'bold)
|
16
|
697 (insert " <weiner@infodock.com>
|
0
|
698
|
|
699 Author of the Hyperbole everyday information management
|
|
700 hypertext system and the OO-Browser multi-language code
|
|
701 browser. He also designed the InfoDock integrated tool
|
|
702 framework for software engineers. It runs atop XEmacs and is
|
16
|
703 available from his firm, InfoDock Associates, which offers custom
|
|
704 development and support packages for corporate users of XEmacs,
|
44
|
705 GNU Emacs and InfoDock. See ")
|
|
706 (about-xref "http://www.infodock.com" 'w3-infodock
|
|
707 "Visit the Infodock WWW page")
|
|
708 (insert "
|
0
|
709 His interests include user interfaces, information management,
|
|
710 CASE tools, communications and enterprise integration.")
|
|
711
|
|
712 (insert "\n\n\tClick ")
|
|
713 (about-xref "here" prev-page "Return to previous page")
|
|
714 (insert " to go back to the previous page.\n")
|
|
715 )
|
|
716
|
|
717 ((eq xref 'piper)
|
|
718 (about-face "Andy Piper" 'bold)
|
|
719 (insert " <andyp@parallax.co.uk>
|
|
720
|
|
721 Author of the original \"fake\" XEmacs toolbar, and outl-mouse for
|
|
722 mouse gesture based outlining. Accomplished kludge contributor.")
|
|
723
|
|
724 (insert "\n\n\tClick ")
|
|
725 (about-xref "here" prev-page "Return to previous page")
|
|
726 (insert " to go back to the previous page.\n")
|
|
727 )
|
|
728
|
|
729 ((eq xref 'stig)
|
|
730 (about-face "Jonathan Stigelman" 'bold)
|
|
731 (insert " <stig@hackvan.com>
|
|
732
|
|
733 Stig is sort of a tool fetishist. He has a hate/love relationship
|
|
734 with computers and he hacks on XEmacs because it's a good tool that
|
|
735 makes computers somewhat less of a nuisance. Besides XEmacs, Stig
|
|
736 especially likes his Leatherman, his Makita, and his lockpicks.
|
|
737 Stig wants a MIG welder and air tools.
|
|
738
|
|
739 Stig likes to perch, hang from the ceiling, and climb on the walls.
|
|
740 Stig has a cool van. Stig would like to be able to telecommute
|
|
741 from, say, the north rim of the Grand Canyon or the midst of Baja.")
|
|
742
|
|
743 (insert "\n\n\tClick ")
|
|
744 (about-xref "here" prev-page "Return to previous page")
|
|
745 (insert " to go back to the previous page.\n")
|
|
746 )
|
|
747
|
|
748 ((eq xref 'wmperry)
|
|
749 (about-face "William Perry" 'bold)
|
|
750 (insert " <wmperry@spry.com>
|
|
751
|
16
|
752 Author of Emacs-w3, the builtin web browser that comes with XEmacs,
|
|
753 and various additions to the C code (e.g. the database support,
|
|
754 the PNG support, some of the GIF/JPEG support, the strikethru
|
|
755 face attribute support).
|
0
|
756
|
16
|
757 He is currently working at Aventail, Corp. on SOCKS v5 servers.")
|
0
|
758
|
|
759 (insert "\n\n\tClick ")
|
|
760 (about-xref "here" prev-page "Return to previous page")
|
|
761 (insert " to go back to the previous page.\n")
|
|
762 )
|
|
763
|
24
|
764 ((eq xref 'kyle)
|
|
765 (about-face "Kyle Jones" 'bold)
|
|
766 (insert " <kyle_jones@wonderworks.com>
|
|
767
|
|
768 Author of VM, a mail-reading package that is included in
|
|
769 the standard XEmacs distribution, and contributor of many
|
|
770 improvements and bug fixes. Unlike RMAIL and MH-E, VM
|
|
771 uses the standard UNIX mailbox format for its folders;
|
|
772 thus, you can use VM concurrently with other UNIX mail
|
|
773 readers such as Berkeley Mail and ELM.
|
44
|
774 See ")
|
|
775 (about-xref "http://www.wonderworks.com/kyle/" 'w3-kyle
|
|
776 "Visit Kyle's WWW page")
|
|
777 (insert ". \n\n\tClick ")
|
24
|
778 (about-xref "here" prev-page "Return to previous page")
|
|
779 (insert " to go back to the previous page.\n")
|
|
780 )
|
|
781
|
26
|
782 ((eq xref 'larsi)
|
|
783 (about-face "Lars Magne Ingebrigtsen" 'bold)
|
|
784 (insert " <larsi@ifi.uio.no>
|
|
785
|
|
786 Author of Gnus the Usenet news and Mail reading package in
|
|
787 the standard XEmacs distribution, and contributor of various
|
|
788 enhancements and portability fixes. Lars is a student at the
|
|
789 Institute of Informatics at the University of Oslo. He is
|
|
790 currently plumbing away at his majors work at the Institute of
|
|
791 Physics, working on an SCI project connected with CASCADE and
|
|
792 CERN and stuff.
|
44
|
793 See ")
|
|
794 (about-xref "http://www.ifi.uio.no/~larsi/" 'w3-larsi
|
|
795 "Visit Lars' WWW page")
|
26
|
796
|
44
|
797 (insert ". \n\n\tClick ")
|
26
|
798 (about-xref "here" prev-page "Return to previous page")
|
|
799 (insert " to go back to the previous page.\n")
|
|
800 )
|
|
801
|
32
|
802 ((eq xref 'jens)
|
|
803 (about-face "Jens Lautenbacher" 'bold)
|
|
804 (insert " <jens@lemcbed.lem.uni-karlsruhe.de>
|
|
805
|
|
806 Jens did the artwork for graphics added to XEmacs 20.1 and 19.15.
|
|
807
|
|
808 I'm currently working at the University of Karlsruhe, Germany
|
|
809 on getting my diploma thesis on Supersymmetry (uuh, that's
|
|
810 physics) done. After that (and all the remaining exams) I'm
|
|
811 looking forward to make a living out of my hobbies --
|
|
812 computers (and graphics). But because I have no deadline for
|
|
813 the exams and XEmacs betas are released at a high rate this
|
|
814 may take some time...")
|
|
815
|
|
816 (insert "\n\n\tClick ")
|
|
817 (about-xref "here" prev-page "Return to previous page")
|
|
818 (insert " to go back to the previous page.\n")
|
|
819 )
|
|
820
|
0
|
821 ((eq xref 'others)
|
|
822 (insert "Click ")
|
|
823 (about-xref "here" 'about "Return to previous page")
|
|
824 (insert " to go back to the previous page\n\n\t")
|
|
825
|
|
826 (about-face "Other Contributors to XEmacs" 'italic)
|
|
827
|
|
828 (insert "
|
|
829
|
|
830 Like most free software, XEmacs is a collaborative effort.
|
|
831 These are some of the contributors; we have no doubt forgotten
|
|
832 someone; we apologize! You can see some of our faces further below.
|
|
833
|
|
834 ") (about-xref "Vladimir Ivanovic" 'vladimir "Find out more about Vladimir Ivanovic") (insert " <vladimir@mri.com>
|
|
835 Former technical lead for XEmacs at Sun Microsystems. He is
|
|
836 now with Microtec Research Inc., working on embedded systems
|
|
837 development tools.
|
|
838
|
|
839 ") (about-xref "Jonathan Stigelman" 'stig "Find out more about Jonathan Stigelman") (insert " <stig@hackvan.com>
|
|
840 Peripatetic uninominal Emacs hacker. Stig sometimes operates
|
|
841 out of a big white van set up for nomadic living and hacking.
|
|
842 Implemented the faster stay-up Lucid menus and hyper-apropos.
|
|
843 Contributor of many dispersed improvements in the core Lisp code,
|
|
844 and back-seat contributor for several of it's major packages.
|
|
845
|
38
|
846 ") (about-xref "Barry Warsaw" 'baw "Find out more about Barry Warsaw") (insert " <bwarsaw@python.org>
|
44
|
847 Author of CC Mode for C, C++, Objective-C and Java editing,
|
|
848 and Supercite for mail and news citing. Also various and
|
|
849 sundry other Emacs packages, utilities, fixes, enhancements
|
|
850 and kludgery as whimsy, boredom, and ToT dictate (but not
|
|
851 necessarily in that order). See also:
|
|
852 ")
|
|
853 (about-xref "http://www.python.org/~bwarsaw/" 'w3-baw
|
|
854 "Visit Barry's WWW page")
|
|
855 (insert "\n and:
|
|
856 ")
|
|
857 (about-xref "http://www.python.org/ftp/emacs/" 'w3-python
|
|
858 "Visit Barry's Emacs Goodies page")
|
|
859 (insert "
|
0
|
860
|
|
861 ") (about-xref "Andy Piper" 'piper "Find out more about Andy Piper") (insert " <andyp@parallax.co.uk>
|
|
862 Created the prototype for the toolbars. Has been the first to make
|
|
863 use of many of the new XEmacs graphics features.
|
|
864
|
16
|
865 ") (about-xref "Bob Weiner" 'bw "Find out more about Bob Weiner") (insert " <weiner@infodock.com>
|
0
|
866 Author of the Hyperbole everyday information management
|
|
867 hypertext system and the OO-Browser multi-language code
|
|
868 browser. He also designed the InfoDock integrated tool
|
|
869 framework for software engineers. It runs atop XEmacs and is
|
16
|
870 available from his firm, InfoDock Associates, which offers custom
|
|
871 development and support packages for corporate users of XEmacs,
|
44
|
872 GNU Emacs and InfoDock. See ")
|
|
873 (about-xref "http://www.infodock.com" 'w3-infodock
|
|
874 "Visit the Infodock WWW page")
|
|
875 (insert ".
|
0
|
876 His interests include user interfaces, information management,
|
16
|
877 CASE tools, communications and enterprise integration.
|
0
|
878
|
16
|
879 ") (about-xref "William Perry" 'wmperry "Find out more about Bill Perry") (insert " <wmperry@aventail.com>
|
|
880 Author of Emacs-w3, the builtin web browser that comes with XEmacs,
|
|
881 and various additions to the C code (e.g. the database support,
|
|
882 the PNG support, some of the GIF/JPEG support, the strikethru
|
|
883 face attribute support).
|
0
|
884
|
24
|
885 ") (about-xref "Kyle Jones" 'kyle "Find out more about Kyle Jones") (insert " <kyle_jones@wonderworks.com>
|
26
|
886 Author of VM, a mail-reading package that is included in
|
|
887 the standard XEmacs distribution, and contributor of many
|
|
888 improvements and bug fixes. Unlike RMAIL and MH-E, VM
|
|
889 uses the standard UNIX mailbox format for its folders;
|
|
890 thus, you can use VM concurrently with other UNIX mail
|
|
891 readers such as Berkeley Mail and ELM.
|
44
|
892 See ")
|
|
893 (about-xref "http://www.wonderworks.com/kyle/" 'w3-kyle
|
|
894 "Visit Kyle's WWW page")
|
|
895 (insert ".
|
26
|
896
|
|
897 ") (about-xref "Lars Magne Ingebrigtsen" 'larsi "Find out more about Lars Magne Ingebrigtsen") (insert " <larsi@ifi.uio.no>
|
|
898 Author of Gnus the Usenet news and Mail reading package in
|
|
899 the standard XEmacs distribution, and contributor of various
|
|
900 enhancements and portability fixes. Lars is a student at the
|
|
901 Institute of Informatics at the University of Oslo. He is
|
|
902 currently plumbing away at his majors work at the Institute of
|
|
903 Physics, working on an SCI project connected with CASCADE and
|
|
904 CERN and stuff.
|
44
|
905 See ")
|
|
906 (about-xref "http://www.ifi.uio.no/~larsi/" 'w3-larsi
|
|
907 "Visit Lars' WWW page")
|
|
908 (insert ".
|
0
|
909
|
32
|
910 ") (about-xref "Jens Lautenbacher" 'jens "Find out more about Jens Lautenbacher") (insert " <jens@lemcbed.lem.uni-karlsruhe.de>
|
44
|
911 I'm currently working at the University of Karlsruhe, Germany
|
|
912 on getting my diploma thesis on Supersymmetry (uuh, that's
|
|
913 physics) done. After that (and all the remaining exams) I'm
|
|
914 looking forward to make a living out of my hobbies --
|
|
915 computers (and graphics). But because I have no deadline for
|
|
916 the exams and XEmacs betas are released at a high rate this
|
|
917 may take some time...
|
32
|
918
|
0
|
919 Darrell Kindred <Darrell.Kindred@cmu.edu>
|
|
920 Unofficial maintainer of the xemacs-beta list of extant
|
|
921 bugs and contributor of an extraordinary number of
|
|
922 important bug fixes, many of them in areas that neither
|
|
923 Chuck nor Ben was particularly enthusiastic about
|
|
924 investigating.
|
|
925
|
|
926 Eduardo Pelegri-Llopart <pelegri@eng.sun.com>
|
|
927 Author of EOS, a package included in the standard XEmacs
|
|
928 distribution that integrates XEmacs with the SPARCworks
|
|
929 development environment from SunPro. Past lead for XEmacs
|
|
930 at SunPro; advocated the validity of using Epoch, and later
|
|
931 Lemacs, at SunPro through several early prototypes.
|
|
932
|
|
933 Matthieu Devin <devin@rs.com>
|
|
934 Part of the original (pre-19.0) Lucid Emacs development team.
|
|
935 Matthieu wrote the initial Energize interface, designed the
|
|
936 toolkit-independent Lucid Widget library, and fixed enough
|
|
937 redisplay bugs to last a lifetime. The features in Lucid
|
|
938 Emacs were largely inspired by Matthieu's initial prototype
|
|
939 of an Energize interface using Epoch.
|
|
940
|
|
941 Harlan Sexton <hbs@odi.com>
|
|
942 Part of the original (pre-19.0) Lucid Emacs development team.
|
|
943 Harlan designed and implemented many of the low level data
|
|
944 structures which are original to the Lucid version of Emacs,
|
|
945 including extents and hash tables.
|
|
946
|
|
947 Eric Benson <eb@kaleida.com>
|
|
948 Part of the original (pre-19.0) Lucid Emacs development team.
|
|
949 Eric played a big part in the design of many aspects of the
|
|
950 system, including the new command loop and keymaps, fixed
|
|
951 numerous bugs, and has been a reliable beta tester ever
|
|
952 since.
|
|
953
|
|
954 John Rose <john.rose@sun.com>
|
|
955 Author of many extensions to the `extents' code, including
|
|
956 the initial implementation of `duplicable' properties.
|
|
957
|
|
958 Hans Muller <hmuller@eng.sun.com>
|
|
959 Author of the code used to connect XEmacs with ToolTalk,
|
|
960 and of an early client of the external Emacs widget.
|
|
961
|
24
|
962 David Moore <dmoore@UCSD.EDU>
|
|
963 David has contributed greatly to the quest to speed up XEmacs.
|
|
964 He is a student in the Computer Systems Laboratory at UCSD.
|
|
965 When he manages to have free time, he usually spends it on 200
|
|
966 mile bicycle rides, learning german or showing people the best
|
|
967 mail & news environment he's found in 10 years. (That'd be
|
|
968 XEmacs, Gnus and bbdb, of course.) He can be found at
|
|
969 `druidmuck.egbt.org 4201' at various hours of the day.
|
|
970
|
|
971 Hrvoje Niksic <hniksic@srce.hr>
|
|
972 Hrvoje is currently a student at the Faculty of Electrical
|
|
973 Engineering and Computing in Zagreb, Croatia. He works part-
|
|
974 time at SRCE, where he helps run the network machines.
|
|
975 In his free time he is helping develop free software (especially
|
|
976 XEmacs, as well as GNU software) and is writing his own -- he has
|
|
977 written a small network mirroring utility Wget, see
|
44
|
978 ")
|
|
979 (about-xref "ftp://gnjilux.cc.fer.hr/pub/unix/util/wget/"
|
|
980 'w3-hrvoje "Visit Hrvoje's Wget distribution")
|
|
981 (insert "
|
24
|
982
|
0
|
983 In addition to those just mentioned, the following people have
|
|
984 spent a great deal of effort providing feedback, testing beta
|
|
985 versions of XEmacs, providing patches to the source code,
|
|
986 or doing all of the above. We couldn't have done it without
|
|
987 them.
|
|
988
|
|
989 Nagi M. Aboulenein <aboulene@ponder.csci.unt.edu>
|
|
990 Gary Adams <gra@zeppo.East.Sun.COM>
|
|
991 Gennady Agranov <agranov@csa.CS.Technion.Ac.IL>
|
|
992 Mark Allender <allender@vnet.IBM.COM>
|
|
993 Butch Anton <butch@zaphod.uchicago.edu>
|
|
994 Fred Appelman <Fred.Appelman@cv.ruu.nl>
|
16
|
995 Erik \"The Pope\" Arneson <lazarus@mind.net>
|
0
|
996 Tor Arntsen <tor@spacetec.no>
|
|
997 Mike Battaglia <mbattagl@dsccc.com>
|
|
998 Neal Becker <neal@ctd.comsat.com>
|
|
999 Paul Bibilo <peb@delcam.com>
|
|
1000 Jan Borchers <job@tk.uni-linz.ac.at>
|
|
1001 Mark Borges <mdb@cdc.noaa.gov>
|
|
1002 David P. Boswell <daveb@tau.space.thiokol.com>
|
|
1003 Tim Bradshaw <tfb@edinburgh.ac.uk>
|
|
1004 Rick Braumoeller <rickb@mti.sgi.com>
|
|
1005 Matthew J. Brown <mjb@doc.ic.ac.uk>
|
|
1006 Alastair Burt <burt@dfki.uni-kl.de>
|
|
1007 Rick Busdiecker <rfb@lehman.com>
|
|
1008 Richard Caley <rjc@cstr.edinburgh.ac.uk>
|
|
1009 Stephen Carney <carney@gvc.dec.com>
|
|
1010 Philippe Charton <charton@lmd.ens.fr>
|
|
1011 Peter Cheng <peter.cheng@sun.com>
|
|
1012 Jin S. Choi <jin@atype.com>
|
16
|
1013 Tomasz J. Cholewo <tjchol01@mecca.spd.louisville.edu>
|
0
|
1014 Serenella Ciongoli <czs00@ladybug.oes.amdahl.com>
|
|
1015 Richard Cognot <cognot@ensg.u-nancy.fr>
|
|
1016 Andy Cohen <cohen@andy.bu.edu>
|
16
|
1017 Andrew J Cosgriff <ajc@bing.wattle.id.au>
|
|
1018 Nick J. Crabtree <nickc@scopic.com>
|
0
|
1019 Christopher Davis <ckd@kei.com>
|
16
|
1020 Soren Dayton <csdayton@cs.uchicago.edu>
|
0
|
1021 Michael Diers <mdiers@logware.de>
|
|
1022 William G. Dubuque <wgd@martigny.ai.mit.edu>
|
|
1023 Samuel J. Eaton <samuele@cogs.susx.ac.uk>
|
|
1024 Carl Edman <cedman@Princeton.EDU>
|
|
1025 Dave Edmondson <davided@sco.com>
|
16
|
1026 Jonathan Edwards <edwards@intranet.com>
|
0
|
1027 Eric Eide <eeide@asylum.cs.utah.edu>
|
16
|
1028 EKR <ekr@terisa.com>
|
|
1029 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
|
0
|
1030 David Fletcher <frodo@tsunami.com>
|
|
1031 Paul Flinders <ptf@delcam.co.uk>
|
|
1032 Jered J Floyd <jered@mit.edu>
|
|
1033 Jerry Frain <jerry@sneffels.tivoli.com>
|
|
1034 Benjamin Fried <bf@morgan.com>
|
|
1035 Barry Friedman <friedman@bnr.ca>
|
|
1036 Lew Gaiter III <lew@StarFire.com>
|
16
|
1037 Itay Gat <itay@cs.huji.ac.il>
|
0
|
1038 Tim Geisler <Tim.Geisler@informatik.uni-muenchen.de>
|
|
1039 Dave Gillespie <daveg@synaptics.com>
|
|
1040 Christian F. Goetze <cg@bigbook.com>
|
|
1041 Wolfgang Grieskamp <wg@cs.tu-berlin.de>
|
|
1042 James Grinter <jrg@demon.net>
|
|
1043 Ben Gross <bgross@uiuc.edu>
|
|
1044 Dirk Grunwald <grunwald@foobar.cs.Colorado.EDU>
|
|
1045 Dipankar Gupta <dg@hplb.hpl.hp.com>
|
|
1046 Markus Gutschke <gutschk@GOEDEL.UNI-MUENSTER.DE>
|
|
1047 Adam Hammer <hammer@cs.purdue.edu>
|
|
1048 Magnus Hammerin <magnush@epact.se>
|
|
1049 ChangGil Han <cghan@phys401.phys.pusan.ac.kr>
|
|
1050 Derek Harding <dharding@lssec.bt.co.uk>
|
16
|
1051 Michael Harnois <mharnois@sbt.net>
|
0
|
1052 John Haxby <J.Haxby@isode.com>
|
|
1053 Jareth \"JHod\" Hein <jhod@po.iijnet.or.jp>
|
|
1054 Benedikt Heinen <beh@icemark.thenet.ch>
|
|
1055 Stephan Herrmann <sh@first.gmd.de>
|
|
1056 Charles Hines <chuck_hines@VNET.IBM.COM>
|
|
1057 David Hughes <djh@harston.cv.com>
|
|
1058 Andrew Innes <andrewi@harlequin.co.uk>
|
|
1059 Markku Jarvinen <Markku.Jarvinen@simpukka.funet.fi>
|
|
1060 Robin Jeffries <robin.jeffries@sun.com>
|
|
1061 Philip Johnson <johnson@uhics.ics.Hawaii.Edu>
|
|
1062 J. Kean Johnston <jkj@paradigm-sa.com>
|
16
|
1063 Andreas Kaempf <andreas@sccon.com>
|
0
|
1064 Doug Keller <dkeller@vnet.ibm.com>
|
16
|
1065 Hunter Kelly <retnuh@corona>
|
0
|
1066 Gregor Kennedy <gregork@dadd.ti.com>
|
|
1067 Michael Kifer <kifer@cs.sunysb.edu>
|
|
1068 Yasuhiko Kiuchi <kiuchi@dsp.ksp.fujixerox.co.jp>
|
16
|
1069 Greg Klanderman <greg@alphatech.com>
|
|
1070 Valdis Kletnieks <Valdis.Kletnieks@vt.edu>
|
|
1071 Jens Krinke <krinke@ips.cs.tu-bs.de>
|
|
1072 Mats Larsson <Mats.Larsson@uab.ericsson.se>
|
0
|
1073 Jens Lautenbacher <jens@lemcbed.lem.uni-karlsruhe.de>
|
|
1074 Simon Leinen <simon@instrumatic.ch>
|
16
|
1075 Carsten Leonhardt <leo@arioch.tng.oche.de>
|
0
|
1076 James LewisMoss <moss@cs.sc.edu>
|
|
1077 Mats Lidell <mats.lidell@contactor.se>
|
|
1078 Matt Liggett <mliggett@seven.ucs.indiana.edu>
|
|
1079 Christian Limpach <Christian.Limpach@nice.ch>
|
|
1080 Robert Lipe <robertl@arnet.com>
|
|
1081 Damon Lipparelli <lipp@aa.net>
|
|
1082 Hamish Macdonald <hamish@bnr.ca>
|
16
|
1083 Ian MacKinnon <imackinnon@telia.co.uk>
|
0
|
1084 Patrick MacRoberts <macro@hpcobr30.cup.hp.com>
|
|
1085 Tonny Madsen <Tonny.Madsen@netman.dk>
|
|
1086 Ketil Z Malde <ketil@ii.uib.no>
|
|
1087 Steve March <smarch@quaver.urbana.mcd.mot.com>
|
16
|
1088 Pekka Marjola <pema@iki.fi>
|
24
|
1089 Simon Marshall <simon@gnu.ai.mit.edu>
|
0
|
1090 Dave Mason <dmason@plg.uwaterloo.ca>
|
|
1091 Jaye Mathisen <mrcpu@cdsnet.net>
|
|
1092 Michael Meissner <meissner@osf.org>
|
|
1093 David M. Meyer <meyer@ns.uoregon.edu>
|
|
1094 Brad Miller <bmiller@cs.umn.edu>
|
16
|
1095 Jeff Miller <jmiller@bay1.bayserve.net>
|
0
|
1096 John Morey <jmorey@crl.com>
|
|
1097 Rob Mori <rob.mori@sun.com>
|
|
1098 Heiko Muenkel <muenkel@tnt.uni-hannover.de>
|
|
1099 Arup Mukherjee <arup+@cs.cmu.edu>
|
|
1100 Colas Nahaboo <Colas.Nahaboo@sophia.inria.fr>
|
|
1101 Lynn D. Newton <lynn@ives.phx.mcd.mot.com>
|
16
|
1102 Casey Nielson <knielson@joule.elee.calpoly.edu>
|
0
|
1103 Georg Nikodym <Georg.Nikodym@canada.sun.com>
|
16
|
1104 Hrvoje Niksic <hniksic@srce.hr>
|
0
|
1105 Andy Norman <ange@hplb.hpl.hp.com>
|
|
1106 Joseph J. Nuspl Jr. <nuspl@cc.purdue.edu>
|
|
1107 Kim Nyberg <kny@tekla.fi>
|
|
1108 David Ofelt <ofelt@getalife.Stanford.EDU>
|
16
|
1109 Tore Olsen <toreo@colargol.idb.hist.no>
|
0
|
1110 Greg Onufer <Greg.Onufer@eng.sun.com>
|
|
1111 Achim Oppelt <aoppelt@theorie3.physik.uni-erlangen.de>
|
|
1112 Sudeep Kumar Palat <palat@idt.unit.no>
|
|
1113 Marc Paquette <Marc.Paquette@Softimage.com>
|
|
1114 Jens-U H Petersen <petersen@kurims.kyoto-u.ac.jp>
|
16
|
1115 Joel Peterson <tarzan@aosi.com>
|
0
|
1116 Thomas A. Peterson <tap@src.honeywell.com>
|
|
1117 Peter Pezaris <pez@dwwc.com>
|
|
1118 Tibor Polgar <tlp00@eng.amdahl.com>
|
16
|
1119 Frederic Poncin <fp@info.ucl.ac.be>
|
0
|
1120 E. Rehmi Post <rehmi@asylum.sf.ca.us>
|
16
|
1121 Colin Rafferty <craffert@spspme.ml.com>
|
0
|
1122 Paul M Reilly <pmr@pajato.com>
|
|
1123 Jack Repenning <jackr@sgi.com>
|
|
1124 Daniel Rich <drich@cisco.com>
|
|
1125 Roland Rieke <rol@darmstadt.gmd.de>
|
|
1126 Russell Ritchie <ritchier@msc.ie>
|
16
|
1127 Roland <rol@darmstadt.gmd.de>
|
0
|
1128 Mike Russell <mjruss@rchland.vnet.ibm.com>
|
|
1129 Jan Sandquist <etxquist@iqa.ericsson.se>
|
|
1130 Marty Sasaki <sasaki@spdcc.com>
|
|
1131 Mike Scheidler <c23mts@eng.delcoelect.com>
|
|
1132 Darrel Schneider <darrel@slc.com>
|
|
1133 Hayden Schultz <haydens@ll.mit.edu>
|
|
1134 Cotton Seed <cottons@cybercom.net>
|
|
1135 Axel Seibert <seiberta@informatik.tu-muenchen.de>
|
|
1136 Odd-Magne Sekkingstad <oddms@ii.uib.no>
|
16
|
1137 Vinnie Shelton <shelton@icd.teradyne.com>
|
0
|
1138 John Shen <zfs60@cas.org>
|
16
|
1139 Murata Shuuichirou <mrt@mickey.ai.kyutech.ac.jp>
|
0
|
1140 Jeffrey Sparkes <jsparkes@bnr.ca>
|
|
1141 Michael Sperber <sperber@informatik.uni-tuebingen.de>
|
|
1142 Manoj Srivastava <srivasta@pilgrim.umass.edu>
|
|
1143 Francois Staes <frans@kiwi.uia.ac.be>
|
|
1144 Jason Stewart <jasons@cs.unm.edu>
|
|
1145 Rick Tait <rickt@gnu.ai.mit.edu>
|
|
1146 James Thompson <thompson@wg2.waii.com>
|
|
1147 Morioka Tomohiko <morioka@jaist.ac.jp>
|
|
1148 Raymond L. Toy <toy@rtp.ericsson.se>
|
|
1149 John Turner <turner@xdiv.lanl.gov>
|
16
|
1150 Juan E. Villacis <jvillaci@cs.indiana.edu>
|
0
|
1151 Vladimir Vukicevic <vladimir@intrepid.com>
|
|
1152 Peter Ware <ware@cis.ohio-state.edu>
|
|
1153 Yoav Weiss <yoav@zeus.datasrv.co.il>
|
|
1154 Rod Whitby <rwhitby@asc.corp.mot.com>
|
|
1155 Rich Williams <rdw@hplb.hpl.hp.com>
|
|
1156 David C Worenklein <dcw@gcm.com>
|
|
1157 Takeshi Yamada <yamada@sylvie.kecl.ntt.jp>
|
|
1158 Jason Yanowitz <yanowitz@eternity.cs.umass.edu>
|
|
1159 La Monte Yarroll <piggy@hilbert.maths.utas.edu.au>
|
|
1160 Blair Zajac <blair@olympia.gps.caltech.edu>
|
|
1161 Daniel Zivkovic <daniel@canada.sun.com>
|
|
1162 Karel Zuiderveld <Karel.Zuiderveld@cv.ruu.nl>
|
|
1163 and the makers of Jolt Cola (tm)")
|
|
1164 (goto-char (point-min))
|
|
1165 (while (re-search-forward "^[ \t]*\\([^<>\n]+\\) <[^>\n]+>$"
|
|
1166 nil t)
|
|
1167 (set-extent-face (make-extent (match-beginning 1) (match-end 1))
|
|
1168 'bold))
|
|
1169 (goto-char (point-min))
|
|
1170 (while (re-search-forward "^[ \t]*<\\([^>\n]+\\)>$" nil t)
|
|
1171 (set-extent-face (make-extent (match-beginning 1) (match-end 1))
|
|
1172 'bold))
|
|
1173
|
|
1174 (goto-char (point-max))
|
|
1175 (insert "\n")
|
|
1176 (about-add-mosaic)
|
|
1177 (goto-char (point-max))
|
|
1178 (insert "\n\n\tClick ")
|
|
1179 (about-xref "here" 'about "Return to previous page")
|
|
1180 (insert " to go back to the previous page.\n")
|
|
1181 )
|
|
1182 ((eq xref 'features)
|
|
1183 (insert "Click ")
|
|
1184 (about-xref "here" 'about "Return to previous page")
|
|
1185 (insert " to go back to the previous page\n\n\t")
|
|
1186
|
|
1187 (about-face "New Features in XEmacs" 'bold-italic)
|
|
1188
|
|
1189 (insert "\n
|
|
1190 * A real toolbar.
|
|
1191 * Proper integration with Xt and Motif (including Motif menubars
|
|
1192 and scrollbars). Motif look-alike menubars and scrollbars
|
|
1193 are provided for those systems without real Motif support.
|
|
1194 * Face support on TTY's, including color.
|
|
1195 * Horizontal and vertical scrollbars in all windows.
|
|
1196 * Support for variable-width and variable height fonts.
|
|
1197 * Support for display on multiple simultaneous X and/or TTY devices.
|
|
1198 * Support for arbitrary pixmaps in a buffer.
|
|
1199 * Access to the ToolTalk API.
|
|
1200 * Support for using XEmacs frames as Xt widgets.
|
|
1201 * Support for overlapping regions (or extents) and efficient handling
|
|
1202 of a large number of such extents in a single buffer.
|
|
1203 * Powerful, flexible control over the display characteristics
|
|
1204 of most of the visual aspects of XEmacs through the use
|
|
1205 of specifiers, which allow separate values to be specified
|
|
1206 for individual buffers, windows, frames, devices, device classes,
|
|
1207 and device types.
|
|
1208 * A clean interface to the menubar, window-system events, and key
|
|
1209 combinations."))
|
|
1210 ))
|
|
1211 (goto-char (point-min))
|
|
1212 ))))
|
30
|
1213
|
|
1214 ;;; about.el ends here
|