annotate lisp/prim/about.el @ 151:59463afc5666 r20-3b2

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