annotate lisp/prim/about.el @ 44:8d2a9b52c682 r19-15prefinal

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