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