Mercurial > emacs
annotate lisp/gnus/gnus.el @ 33202:0a59b8c1e2fc
*** empty log message ***
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 03 Nov 2000 23:06:54 +0000 |
parents | 6a62ea78ba04 |
children | e06db3b8e558 |
rev | line source |
---|---|
32019
bd101eca34c1
(gnus-mode-line-buffer-identification)[EMACS]: Fix
Gerd Moellmann <gerd@gnu.org>
parents:
32016
diff
changeset
|
1 :;;; gnus.el --- a newsreader for GNU Emacs |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2 ;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3 ;; 1997, 1998, 2000 Free Software Foundation, Inc. |
17493 | 4 |
5 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet> | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
6 ;; Lars Magne Ingebrigtsen <larsi@gnus.org> |
32981 | 7 ;; Maintainer: bugs@gnus.org |
17493 | 8 ;; Keywords: news, mail |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;;; Code: | |
30 | |
31 (eval '(run-hooks 'gnus-load-hook)) | |
32 | |
19524
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
33 (eval-when-compile (require 'cl)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
34 (require 'mm-util) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
35 |
17493 | 36 (defgroup gnus nil |
37 "The coffee-brewing, all singing, all dancing, kitchen sink newsreader." | |
38 :group 'news | |
39 :group 'mail) | |
40 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
41 (defgroup gnus-charset nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
42 "Group character set issues." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
43 :link '(custom-manual "(gnus)Charsets") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
44 :version "21.1" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
45 :group 'gnus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
46 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
47 (defgroup gnus-cache nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
48 "Cache interface." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
49 :group 'gnus) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
50 |
17493 | 51 (defgroup gnus-start nil |
52 "Starting your favorite newsreader." | |
53 :group 'gnus) | |
54 | |
55 (defgroup gnus-start-server nil | |
56 "Server options at startup." | |
57 :group 'gnus-start) | |
58 | |
59 ;; These belong to gnus-group.el. | |
60 (defgroup gnus-group nil | |
61 "Group buffers." | |
62 :link '(custom-manual "(gnus)The Group Buffer") | |
63 :group 'gnus) | |
64 | |
65 (defgroup gnus-group-foreign nil | |
66 "Foreign groups." | |
67 :link '(custom-manual "(gnus)Foreign Groups") | |
68 :group 'gnus-group) | |
69 | |
70 (defgroup gnus-group-new nil | |
71 "Automatic subscription of new groups." | |
72 :group 'gnus-group) | |
73 | |
74 (defgroup gnus-group-levels nil | |
75 "Group levels." | |
76 :link '(custom-manual "(gnus)Group Levels") | |
77 :group 'gnus-group) | |
78 | |
79 (defgroup gnus-group-select nil | |
80 "Selecting a Group." | |
81 :link '(custom-manual "(gnus)Selecting a Group") | |
82 :group 'gnus-group) | |
83 | |
84 (defgroup gnus-group-listing nil | |
85 "Showing slices of the group list." | |
86 :link '(custom-manual "(gnus)Listing Groups") | |
87 :group 'gnus-group) | |
88 | |
89 (defgroup gnus-group-visual nil | |
90 "Sorting the group buffer." | |
91 :link '(custom-manual "(gnus)Group Buffer Format") | |
92 :group 'gnus-group | |
93 :group 'gnus-visual) | |
94 | |
95 (defgroup gnus-group-various nil | |
96 "Various group options." | |
97 :link '(custom-manual "(gnus)Scanning New Messages") | |
98 :group 'gnus-group) | |
99 | |
100 ;; These belong to gnus-sum.el. | |
101 (defgroup gnus-summary nil | |
102 "Summary buffers." | |
103 :link '(custom-manual "(gnus)The Summary Buffer") | |
104 :group 'gnus) | |
105 | |
106 (defgroup gnus-summary-exit nil | |
107 "Leaving summary buffers." | |
108 :link '(custom-manual "(gnus)Exiting the Summary Buffer") | |
109 :group 'gnus-summary) | |
110 | |
111 (defgroup gnus-summary-marks nil | |
112 "Marks used in summary buffers." | |
113 :link '(custom-manual "(gnus)Marking Articles") | |
114 :group 'gnus-summary) | |
115 | |
116 (defgroup gnus-thread nil | |
117 "Ordering articles according to replies." | |
118 :link '(custom-manual "(gnus)Threading") | |
119 :group 'gnus-summary) | |
120 | |
121 (defgroup gnus-summary-format nil | |
122 "Formatting of the summary buffer." | |
123 :link '(custom-manual "(gnus)Summary Buffer Format") | |
124 :group 'gnus-summary) | |
125 | |
126 (defgroup gnus-summary-choose nil | |
127 "Choosing Articles." | |
128 :link '(custom-manual "(gnus)Choosing Articles") | |
129 :group 'gnus-summary) | |
130 | |
131 (defgroup gnus-summary-maneuvering nil | |
132 "Summary movement commands." | |
133 :link '(custom-manual "(gnus)Summary Maneuvering") | |
134 :group 'gnus-summary) | |
135 | |
136 (defgroup gnus-summary-mail nil | |
137 "Mail group commands." | |
138 :link '(custom-manual "(gnus)Mail Group Commands") | |
139 :group 'gnus-summary) | |
140 | |
141 (defgroup gnus-summary-sort nil | |
142 "Sorting the summary buffer." | |
143 :link '(custom-manual "(gnus)Sorting") | |
144 :group 'gnus-summary) | |
145 | |
146 (defgroup gnus-summary-visual nil | |
147 "Highlighting and menus in the summary buffer." | |
148 :link '(custom-manual "(gnus)Summary Highlighting") | |
149 :group 'gnus-visual | |
150 :group 'gnus-summary) | |
151 | |
152 (defgroup gnus-summary-various nil | |
153 "Various summary buffer options." | |
154 :link '(custom-manual "(gnus)Various Summary Stuff") | |
155 :group 'gnus-summary) | |
156 | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
157 (defgroup gnus-summary-pick nil |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
158 "Pick mode in the summary buffer." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
159 :link '(custom-manual "(gnus)Pick and Read") |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
160 :prefix "gnus-pick-" |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
161 :group 'gnus-summary) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
162 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
163 (defgroup gnus-summary-tree nil |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
164 "Tree display of threads in the summary buffer." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
165 :link '(custom-manual "(gnus)Tree Display") |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
166 :prefix "gnus-tree-" |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
167 :group 'gnus-summary) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
168 |
17493 | 169 ;; Belongs to gnus-uu.el |
170 (defgroup gnus-extract-view nil | |
171 "Viewing extracted files." | |
172 :link '(custom-manual "(gnus)Viewing Files") | |
173 :group 'gnus-extract) | |
174 | |
175 ;; Belongs to gnus-score.el | |
176 (defgroup gnus-score nil | |
177 "Score and kill file handling." | |
178 :group 'gnus) | |
179 | |
180 (defgroup gnus-score-kill nil | |
181 "Kill files." | |
182 :group 'gnus-score) | |
183 | |
184 (defgroup gnus-score-adapt nil | |
185 "Adaptive score files." | |
186 :group 'gnus-score) | |
187 | |
188 (defgroup gnus-score-default nil | |
189 "Default values for score files." | |
190 :group 'gnus-score) | |
191 | |
192 (defgroup gnus-score-expire nil | |
193 "Expiring score rules." | |
194 :group 'gnus-score) | |
195 | |
196 (defgroup gnus-score-decay nil | |
197 "Decaying score rules." | |
198 :group 'gnus-score) | |
199 | |
200 (defgroup gnus-score-files nil | |
201 "Score and kill file names." | |
202 :group 'gnus-score | |
203 :group 'gnus-files) | |
204 | |
205 (defgroup gnus-score-various nil | |
206 "Various scoring and killing options." | |
207 :group 'gnus-score) | |
208 | |
209 ;; Other | |
210 (defgroup gnus-visual nil | |
211 "Options controling the visual fluff." | |
212 :group 'gnus | |
213 :group 'faces) | |
214 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
215 (defgroup gnus-agent nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
216 "Offline support for Gnus." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
217 :group 'gnus) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
218 |
17493 | 219 (defgroup gnus-files nil |
220 "Files used by Gnus." | |
221 :group 'gnus) | |
222 | |
223 (defgroup gnus-dribble-file nil | |
224 "Auto save file." | |
225 :link '(custom-manual "(gnus)Auto Save") | |
226 :group 'gnus-files) | |
227 | |
228 (defgroup gnus-newsrc nil | |
229 "Storing Gnus state." | |
230 :group 'gnus-files) | |
231 | |
232 (defgroup gnus-server nil | |
233 "Options related to newsservers and other servers used by Gnus." | |
234 :group 'gnus) | |
235 | |
236 (defgroup gnus-message '((message custom-group)) | |
237 "Composing replies and followups in Gnus." | |
238 :group 'gnus) | |
239 | |
240 (defgroup gnus-meta nil | |
241 "Meta variables controling major portions of Gnus. | |
242 In general, modifying these variables does not take affect until Gnus | |
243 is restarted, and sometimes reloaded." | |
244 :group 'gnus) | |
245 | |
246 (defgroup gnus-various nil | |
247 "Other Gnus options." | |
248 :link '(custom-manual "(gnus)Various Various") | |
249 :group 'gnus) | |
250 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
251 (defgroup gnus-mime nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
252 "Variables for controlling the Gnus MIME interface." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
253 :group 'gnus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
254 |
17493 | 255 (defgroup gnus-exit nil |
256 "Exiting gnus." | |
257 :link '(custom-manual "(gnus)Exiting Gnus") | |
258 :group 'gnus) | |
259 | |
31781
8a6a4f06f145
(gnus-version-number): Start 5.9 series. Avoid some
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
260 (defconst gnus-version-number "5.9.0" |
17493 | 261 "Version number for this version of Gnus.") |
262 | |
263 (defconst gnus-version (format "Gnus v%s" gnus-version-number) | |
264 "Version string for this version of Gnus.") | |
265 | |
266 (defcustom gnus-inhibit-startup-message nil | |
267 "If non-nil, the startup message will not be displayed. | |
268 This variable is used before `.gnus.el' is loaded, so it should | |
269 be set in `.emacs' instead." | |
270 :group 'gnus-start | |
271 :type 'boolean) | |
272 | |
273 (defcustom gnus-play-startup-jingle nil | |
274 "If non-nil, play the Gnus jingle at startup." | |
275 :group 'gnus-start | |
276 :type 'boolean) | |
277 | |
278 (unless (featurep 'gnus-xmas) | |
279 (defalias 'gnus-make-overlay 'make-overlay) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
280 (defalias 'gnus-delete-overlay 'delete-overlay) |
17493 | 281 (defalias 'gnus-overlay-put 'overlay-put) |
282 (defalias 'gnus-move-overlay 'move-overlay) | |
32981 | 283 (defalias 'gnus-overlay-buffer 'overlay-buffer) |
284 (defalias 'gnus-overlay-start 'overlay-start) | |
17493 | 285 (defalias 'gnus-overlay-end 'overlay-end) |
286 (defalias 'gnus-extent-detached-p 'ignore) | |
287 (defalias 'gnus-extent-start-open 'ignore) | |
288 (defalias 'gnus-set-text-properties 'set-text-properties) | |
289 (defalias 'gnus-group-remove-excess-properties 'ignore) | |
290 (defalias 'gnus-appt-select-lowest-window 'appt-select-lowest-window) | |
291 (defalias 'gnus-mail-strip-quoted-names 'mail-strip-quoted-names) | |
292 (defalias 'gnus-character-to-event 'identity) | |
293 (defalias 'gnus-add-text-properties 'add-text-properties) | |
294 (defalias 'gnus-put-text-property 'put-text-property) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
295 (defvar gnus-mode-line-image-cache t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
296 (if (fboundp 'find-image) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
297 (defun gnus-mode-line-buffer-identification (line) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
298 (let ((str (car-safe line))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
299 (if (and (stringp str) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
300 (string-match "^Gnus:" str)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
301 (progn (add-text-properties |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
302 0 5 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
303 (list 'display |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
304 (if (eq t gnus-mode-line-image-cache) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
305 (setq gnus-mode-line-image-cache |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
306 (find-image |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
307 '((:type xpm :file "gnus-pointer.xpm" |
32019
bd101eca34c1
(gnus-mode-line-buffer-identification)[EMACS]: Fix
Gerd Moellmann <gerd@gnu.org>
parents:
32016
diff
changeset
|
308 :ascent center) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
309 (:type xbm :file "gnus-pointer.xbm" |
32019
bd101eca34c1
(gnus-mode-line-buffer-identification)[EMACS]: Fix
Gerd Moellmann <gerd@gnu.org>
parents:
32016
diff
changeset
|
310 :ascent center)))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
311 gnus-mode-line-image-cache) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
312 'help-echo "This is Gnus") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
313 str) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
314 (list str)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
315 line))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
316 (defalias 'gnus-mode-line-buffer-identification 'identity)) |
17493 | 317 (defalias 'gnus-characterp 'numberp) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
318 (defalias 'gnus-deactivate-mark 'deactivate-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
319 (defalias 'gnus-window-edges 'window-edges) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
320 (defalias 'gnus-key-press-event-p 'numberp) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
321 (defalias 'gnus-decode-rfc1522 'ignore)) |
17493 | 322 |
323 ;; We define these group faces here to avoid the display | |
324 ;; update forced when creating new faces. | |
325 | |
326 (defface gnus-group-news-1-face | |
327 '((((class color) | |
328 (background dark)) | |
329 (:foreground "PaleTurquoise" :bold t)) | |
330 (((class color) | |
331 (background light)) | |
332 (:foreground "ForestGreen" :bold t)) | |
333 (t | |
334 ())) | |
335 "Level 1 newsgroup face.") | |
336 | |
337 (defface gnus-group-news-1-empty-face | |
338 '((((class color) | |
339 (background dark)) | |
340 (:foreground "PaleTurquoise")) | |
341 (((class color) | |
342 (background light)) | |
343 (:foreground "ForestGreen")) | |
344 (t | |
345 ())) | |
346 "Level 1 empty newsgroup face.") | |
347 | |
348 (defface gnus-group-news-2-face | |
349 '((((class color) | |
350 (background dark)) | |
351 (:foreground "turquoise" :bold t)) | |
352 (((class color) | |
353 (background light)) | |
354 (:foreground "CadetBlue4" :bold t)) | |
355 (t | |
356 ())) | |
357 "Level 2 newsgroup face.") | |
358 | |
359 (defface gnus-group-news-2-empty-face | |
360 '((((class color) | |
361 (background dark)) | |
362 (:foreground "turquoise")) | |
363 (((class color) | |
364 (background light)) | |
365 (:foreground "CadetBlue4")) | |
366 (t | |
367 ())) | |
368 "Level 2 empty newsgroup face.") | |
369 | |
370 (defface gnus-group-news-3-face | |
371 '((((class color) | |
372 (background dark)) | |
373 (:bold t)) | |
374 (((class color) | |
375 (background light)) | |
376 (:bold t)) | |
377 (t | |
378 ())) | |
379 "Level 3 newsgroup face.") | |
380 | |
381 (defface gnus-group-news-3-empty-face | |
382 '((((class color) | |
383 (background dark)) | |
384 ()) | |
385 (((class color) | |
386 (background light)) | |
387 ()) | |
388 (t | |
389 ())) | |
390 "Level 3 empty newsgroup face.") | |
391 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
392 (defface gnus-group-news-4-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
393 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
394 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
395 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
396 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
397 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
398 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
399 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
400 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
401 "Level 4 newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
402 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
403 (defface gnus-group-news-4-empty-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
404 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
405 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
406 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
407 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
408 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
409 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
410 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
411 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
412 "Level 4 empty newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
413 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
414 (defface gnus-group-news-5-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
415 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
416 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
417 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
418 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
419 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
420 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
421 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
422 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
423 "Level 5 newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
424 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
425 (defface gnus-group-news-5-empty-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
426 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
427 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
428 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
429 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
430 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
431 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
432 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
433 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
434 "Level 5 empty newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
435 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
436 (defface gnus-group-news-6-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
437 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
438 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
439 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
440 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
441 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
442 (:bold t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
443 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
444 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
445 "Level 6 newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
446 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
447 (defface gnus-group-news-6-empty-face |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
448 '((((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
449 (background dark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
450 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
451 (((class color) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
452 (background light)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
453 ()) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
454 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
455 ())) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
456 "Level 6 empty newsgroup face.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
457 |
17493 | 458 (defface gnus-group-news-low-face |
459 '((((class color) | |
460 (background dark)) | |
461 (:foreground "DarkTurquoise" :bold t)) | |
462 (((class color) | |
463 (background light)) | |
464 (:foreground "DarkGreen" :bold t)) | |
465 (t | |
466 ())) | |
467 "Low level newsgroup face.") | |
468 | |
469 (defface gnus-group-news-low-empty-face | |
470 '((((class color) | |
471 (background dark)) | |
472 (:foreground "DarkTurquoise")) | |
473 (((class color) | |
474 (background light)) | |
475 (:foreground "DarkGreen")) | |
476 (t | |
477 ())) | |
478 "Low level empty newsgroup face.") | |
479 | |
480 (defface gnus-group-mail-1-face | |
481 '((((class color) | |
482 (background dark)) | |
483 (:foreground "aquamarine1" :bold t)) | |
484 (((class color) | |
485 (background light)) | |
486 (:foreground "DeepPink3" :bold t)) | |
487 (t | |
488 (:bold t))) | |
489 "Level 1 mailgroup face.") | |
490 | |
491 (defface gnus-group-mail-1-empty-face | |
492 '((((class color) | |
493 (background dark)) | |
494 (:foreground "aquamarine1")) | |
495 (((class color) | |
496 (background light)) | |
497 (:foreground "DeepPink3")) | |
498 (t | |
499 (:italic t :bold t))) | |
500 "Level 1 empty mailgroup face.") | |
501 | |
502 (defface gnus-group-mail-2-face | |
503 '((((class color) | |
504 (background dark)) | |
505 (:foreground "aquamarine2" :bold t)) | |
506 (((class color) | |
507 (background light)) | |
508 (:foreground "HotPink3" :bold t)) | |
509 (t | |
510 (:bold t))) | |
511 "Level 2 mailgroup face.") | |
512 | |
513 (defface gnus-group-mail-2-empty-face | |
514 '((((class color) | |
515 (background dark)) | |
516 (:foreground "aquamarine2")) | |
517 (((class color) | |
518 (background light)) | |
519 (:foreground "HotPink3")) | |
520 (t | |
521 (:bold t))) | |
522 "Level 2 empty mailgroup face.") | |
523 | |
524 (defface gnus-group-mail-3-face | |
525 '((((class color) | |
526 (background dark)) | |
527 (:foreground "aquamarine3" :bold t)) | |
528 (((class color) | |
529 (background light)) | |
530 (:foreground "magenta4" :bold t)) | |
531 (t | |
532 (:bold t))) | |
533 "Level 3 mailgroup face.") | |
534 | |
535 (defface gnus-group-mail-3-empty-face | |
536 '((((class color) | |
537 (background dark)) | |
538 (:foreground "aquamarine3")) | |
539 (((class color) | |
540 (background light)) | |
541 (:foreground "magenta4")) | |
542 (t | |
543 ())) | |
544 "Level 3 empty mailgroup face.") | |
545 | |
546 (defface gnus-group-mail-low-face | |
547 '((((class color) | |
548 (background dark)) | |
549 (:foreground "aquamarine4" :bold t)) | |
550 (((class color) | |
551 (background light)) | |
552 (:foreground "DeepPink4" :bold t)) | |
553 (t | |
554 (:bold t))) | |
555 "Low level mailgroup face.") | |
556 | |
557 (defface gnus-group-mail-low-empty-face | |
558 '((((class color) | |
559 (background dark)) | |
560 (:foreground "aquamarine4")) | |
561 (((class color) | |
562 (background light)) | |
563 (:foreground "DeepPink4")) | |
564 (t | |
565 (:bold t))) | |
566 "Low level empty mailgroup face.") | |
567 | |
568 ;; Summary mode faces. | |
569 | |
570 (defface gnus-summary-selected-face '((t | |
571 (:underline t))) | |
572 "Face used for selected articles.") | |
573 | |
574 (defface gnus-summary-cancelled-face | |
575 '((((class color)) | |
576 (:foreground "yellow" :background "black"))) | |
577 "Face used for cancelled articles.") | |
578 | |
579 (defface gnus-summary-high-ticked-face | |
580 '((((class color) | |
581 (background dark)) | |
582 (:foreground "pink" :bold t)) | |
583 (((class color) | |
584 (background light)) | |
585 (:foreground "firebrick" :bold t)) | |
586 (t | |
587 (:bold t))) | |
588 "Face used for high interest ticked articles.") | |
589 | |
590 (defface gnus-summary-low-ticked-face | |
591 '((((class color) | |
592 (background dark)) | |
593 (:foreground "pink" :italic t)) | |
594 (((class color) | |
595 (background light)) | |
596 (:foreground "firebrick" :italic t)) | |
597 (t | |
598 (:italic t))) | |
599 "Face used for low interest ticked articles.") | |
600 | |
601 (defface gnus-summary-normal-ticked-face | |
602 '((((class color) | |
603 (background dark)) | |
604 (:foreground "pink")) | |
605 (((class color) | |
606 (background light)) | |
607 (:foreground "firebrick")) | |
608 (t | |
609 ())) | |
610 "Face used for normal interest ticked articles.") | |
611 | |
612 (defface gnus-summary-high-ancient-face | |
613 '((((class color) | |
614 (background dark)) | |
615 (:foreground "SkyBlue" :bold t)) | |
616 (((class color) | |
617 (background light)) | |
618 (:foreground "RoyalBlue" :bold t)) | |
619 (t | |
620 (:bold t))) | |
621 "Face used for high interest ancient articles.") | |
622 | |
623 (defface gnus-summary-low-ancient-face | |
624 '((((class color) | |
625 (background dark)) | |
626 (:foreground "SkyBlue" :italic t)) | |
627 (((class color) | |
628 (background light)) | |
629 (:foreground "RoyalBlue" :italic t)) | |
630 (t | |
631 (:italic t))) | |
632 "Face used for low interest ancient articles.") | |
633 | |
634 (defface gnus-summary-normal-ancient-face | |
635 '((((class color) | |
636 (background dark)) | |
637 (:foreground "SkyBlue")) | |
638 (((class color) | |
639 (background light)) | |
640 (:foreground "RoyalBlue")) | |
641 (t | |
642 ())) | |
643 "Face used for normal interest ancient articles.") | |
644 | |
645 (defface gnus-summary-high-unread-face | |
646 '((t | |
647 (:bold t))) | |
648 "Face used for high interest unread articles.") | |
649 | |
650 (defface gnus-summary-low-unread-face | |
651 '((t | |
652 (:italic t))) | |
653 "Face used for low interest unread articles.") | |
654 | |
655 (defface gnus-summary-normal-unread-face | |
656 '((t | |
657 ())) | |
658 "Face used for normal interest unread articles.") | |
659 | |
660 (defface gnus-summary-high-read-face | |
661 '((((class color) | |
662 (background dark)) | |
663 (:foreground "PaleGreen" | |
664 :bold t)) | |
665 (((class color) | |
666 (background light)) | |
667 (:foreground "DarkGreen" | |
668 :bold t)) | |
669 (t | |
670 (:bold t))) | |
671 "Face used for high interest read articles.") | |
672 | |
673 (defface gnus-summary-low-read-face | |
674 '((((class color) | |
675 (background dark)) | |
676 (:foreground "PaleGreen" | |
677 :italic t)) | |
678 (((class color) | |
679 (background light)) | |
680 (:foreground "DarkGreen" | |
681 :italic t)) | |
682 (t | |
683 (:italic t))) | |
684 "Face used for low interest read articles.") | |
685 | |
686 (defface gnus-summary-normal-read-face | |
687 '((((class color) | |
688 (background dark)) | |
689 (:foreground "PaleGreen")) | |
690 (((class color) | |
691 (background light)) | |
692 (:foreground "DarkGreen")) | |
693 (t | |
694 ())) | |
695 "Face used for normal interest read articles.") | |
696 | |
697 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
698 ;;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
699 ;;; Gnus buffers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
700 ;;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
701 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
702 (defvar gnus-buffers nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
703 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
704 (defun gnus-get-buffer-create (name) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
705 "Do the same as `get-buffer-create', but store the created buffer." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
706 (or (get-buffer name) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
707 (car (push (get-buffer-create name) gnus-buffers)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
708 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
709 (defun gnus-add-buffer () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
710 "Add the current buffer to the list of Gnus buffers." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
711 (push (current-buffer) gnus-buffers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
712 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
713 (defun gnus-buffers () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
714 "Return a list of live Gnus buffers." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
715 (while (and gnus-buffers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
716 (not (buffer-name (car gnus-buffers)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
717 (pop gnus-buffers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
718 (let ((buffers gnus-buffers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
719 (while (cdr buffers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
720 (if (buffer-name (cadr buffers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
721 (pop buffers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
722 (setcdr buffers (cddr buffers))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
723 gnus-buffers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
724 |
17493 | 725 ;;; Splash screen. |
726 | |
727 (defvar gnus-group-buffer "*Group*") | |
728 | |
729 (eval-and-compile | |
730 (autoload 'gnus-play-jingle "gnus-audio")) | |
731 | |
732 (defface gnus-splash-face | |
733 '((((class color) | |
734 (background dark)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
735 (:foreground "Brown")) |
17493 | 736 (((class color) |
737 (background light)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
738 (:foreground "Brown")) |
17493 | 739 (t |
740 ())) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
741 "Face of the splash screen.") |
17493 | 742 |
743 (defun gnus-splash () | |
744 (save-excursion | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
745 (switch-to-buffer (gnus-get-buffer-create gnus-group-buffer)) |
17493 | 746 (let ((buffer-read-only nil)) |
747 (erase-buffer) | |
748 (unless gnus-inhibit-startup-message | |
749 (gnus-group-startup-message) | |
750 (sit-for 0) | |
751 (when gnus-play-startup-jingle | |
752 (gnus-play-jingle)))))) | |
753 | |
754 (defun gnus-indent-rigidly (start end arg) | |
755 "Indent rigidly using only spaces and no tabs." | |
756 (save-excursion | |
757 (save-restriction | |
758 (narrow-to-region start end) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
759 (let ((tab-width 8)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
760 (indent-rigidly start end arg) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
761 ;; We translate tabs into spaces -- not everybody uses |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
762 ;; an 8-character tab. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
763 (goto-char (point-min)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
764 (while (search-forward "\t" nil t) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
765 (replace-match " " t t)))))) |
17493 | 766 |
767 (defvar gnus-simple-splash nil) | |
768 | |
769 (defun gnus-group-startup-message (&optional x y) | |
770 "Insert startup message in current buffer." | |
771 ;; Insert the message. | |
772 (erase-buffer) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
773 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
774 ((and |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
775 (fboundp 'find-image) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
776 (display-graphic-p) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
777 (let ((image (find-image |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
778 `((:type xpm :file "gnus.xpm") |
32407 | 779 (:type pbm :file "gnus.pbm" |
780 ;; Account for the pbm's blackground. | |
32406
f95da738b2f4
(gnus-group-startup-message): Check for PBM image.
Dave Love <fx@gnu.org>
parents:
32019
diff
changeset
|
781 :background ,(face-foreground 'gnus-splash-face) |
f95da738b2f4
(gnus-group-startup-message): Check for PBM image.
Dave Love <fx@gnu.org>
parents:
32019
diff
changeset
|
782 :foreground ,(face-background 'default)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
783 (:type xbm :file "gnus.xbm" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
784 ;; Account for the xbm's blackground. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
785 :background ,(face-foreground 'gnus-splash-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
786 :foreground ,(face-background 'default)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
787 (when image |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
788 (let ((size (image-size image))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
789 (insert-char ?\n (max 0 (round (- (window-height) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
790 (or y (cdr size)) 1) 2))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
791 (insert-char ?\ (max 0 (round (- (window-width) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
792 (or x (car size))) 2))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
793 (insert-image image)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
794 (setq gnus-simple-splash nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
795 t)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
796 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
797 (insert |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
798 (format " %s |
17493 | 799 _ ___ _ _ |
800 _ ___ __ ___ __ _ ___ | |
801 __ _ ___ __ ___ | |
802 _ ___ _ | |
803 _ _ __ _ | |
804 ___ __ _ | |
805 __ _ | |
806 _ _ _ | |
807 _ _ _ | |
808 _ _ _ | |
809 __ ___ | |
810 _ _ _ _ | |
811 _ _ | |
812 _ _ | |
813 _ _ | |
814 _ | |
815 __ | |
816 | |
817 " | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
818 "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
819 ;; And then hack it. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
820 (gnus-indent-rigidly (point-min) (point-max) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
821 (/ (max (- (window-width) (or x 46)) 0) 2)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
822 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
823 (forward-line 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
824 (let* ((pheight (count-lines (point-min) (point-max))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
825 (wheight (window-height)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
826 (rest (- wheight pheight))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
827 (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
828 ;; Fontify some. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
829 (put-text-property (point-min) (point-max) 'face 'gnus-splash-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
830 (setq gnus-simple-splash t))) |
17493 | 831 (goto-char (point-min)) |
832 (setq mode-line-buffer-identification (concat " " gnus-version)) | |
833 (set-buffer-modified-p t)) | |
834 | |
835 (eval-when (load) | |
836 (let ((command (format "%s" this-command))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
837 (if (and (string-match "gnus" command) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
838 (not (string-match "gnus-other-frame" command))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
839 (gnus-splash) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
840 (gnus-get-buffer-create gnus-group-buffer)))) |
17493 | 841 |
842 ;;; Do the rest. | |
843 | |
844 (require 'gnus-util) | |
845 (require 'nnheader) | |
846 | |
847 (defcustom gnus-home-directory "~/" | |
848 "Directory variable that specifies the \"home\" directory. | |
849 All other Gnus path variables are initialized from this variable." | |
850 :group 'gnus-files | |
851 :type 'directory) | |
852 | |
853 (defcustom gnus-directory (or (getenv "SAVEDIR") | |
854 (nnheader-concat gnus-home-directory "News/")) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
855 "*Directory variable from which all other Gnus file variables are derived. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
856 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
857 Note that Gnus is mostly loaded when the `.gnus.el' file is read. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
858 This means that other directory variables that are initialized from |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
859 this variable won't be set properly if you set this variable in `.gnus.el'. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
860 Set this variable in `.emacs' instead." |
17493 | 861 :group 'gnus-files |
862 :type 'directory) | |
863 | |
864 (defcustom gnus-default-directory nil | |
865 "*Default directory for all Gnus buffers." | |
866 :group 'gnus-files | |
867 :type '(choice (const :tag "current" nil) | |
868 directory)) | |
869 | |
870 ;; Site dependent variables. These variables should be defined in | |
871 ;; paths.el. | |
872 | |
873 (defvar gnus-default-nntp-server nil | |
874 "Specify a default NNTP server. | |
875 This variable should be defined in paths.el, and should never be set | |
876 by the user. | |
877 If you want to change servers, you should use `gnus-select-method'. | |
878 See the documentation to that variable.") | |
879 | |
880 ;; Don't touch this variable. | |
881 (defvar gnus-nntp-service "nntp" | |
882 "NNTP service name (\"nntp\" or 119). | |
883 This is an obsolete variable, which is scarcely used. If you use an | |
884 nntp server for your newsgroup and want to change the port number | |
885 used to 899, you would say something along these lines: | |
886 | |
887 (setq gnus-select-method '(nntp \"my.nntp.server\" (nntp-port-number 899)))") | |
888 | |
889 (defcustom gnus-nntpserver-file "/etc/nntpserver" | |
890 "A file with only the name of the nntp server in it." | |
891 :group 'gnus-files | |
892 :group 'gnus-server | |
893 :type 'file) | |
894 | |
895 ;; This function is used to check both the environment variable | |
896 ;; NNTPSERVER and the /etc/nntpserver file to see whether one can find | |
897 ;; an nntp server name default. | |
898 (defun gnus-getenv-nntpserver () | |
899 (or (getenv "NNTPSERVER") | |
900 (and (file-readable-p gnus-nntpserver-file) | |
901 (save-excursion | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
902 (set-buffer (gnus-get-buffer-create " *gnus nntp*")) |
17493 | 903 (insert-file-contents gnus-nntpserver-file) |
904 (let ((name (buffer-string))) | |
905 (prog1 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
906 (if (string-match "\\'[ \t\n]*$" name) |
17493 | 907 nil |
908 name) | |
909 (kill-buffer (current-buffer)))))))) | |
910 | |
911 (defcustom gnus-select-method | |
19524
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
912 (condition-case nil |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
913 (nconc |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
914 (list 'nntp (or (condition-case nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
915 (gnus-getenv-nntpserver) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
916 (error nil)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
917 (when (and gnus-default-nntp-server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
918 (not (string= gnus-default-nntp-server ""))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
919 gnus-default-nntp-server) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
920 "news")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
921 (if (or (null gnus-nntp-service) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
922 (equal gnus-nntp-service "nntp")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
923 nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
924 (list gnus-nntp-service))) |
19524
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
925 (error nil)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
926 "Default method for selecting a newsgroup. |
17493 | 927 This variable should be a list, where the first element is how the |
928 news is to be fetched, the second is the address. | |
929 | |
930 For instance, if you want to get your news via NNTP from | |
931 \"flab.flab.edu\", you could say: | |
932 | |
933 \(setq gnus-select-method '(nntp \"flab.flab.edu\")) | |
934 | |
935 If you want to use your local spool, say: | |
936 | |
937 \(setq gnus-select-method (list 'nnspool (system-name))) | |
938 | |
939 If you use this variable, you must set `gnus-nntp-server' to nil. | |
940 | |
941 There is a lot more to know about select methods and virtual servers - | |
942 see the manual for details." | |
943 :group 'gnus-server | |
944 :type 'gnus-select-method) | |
945 | |
946 (defcustom gnus-message-archive-method | |
32981 | 947 (progn |
948 ;; Don't require it at top level to avoid circularity. | |
949 (require 'message) | |
950 `(nnfolder | |
951 "archive" | |
952 (nnfolder-directory ,(nnheader-concat message-directory "archive")) | |
953 (nnfolder-active-file | |
954 ,(nnheader-concat message-directory "archive/active")) | |
955 (nnfolder-get-new-mail nil) | |
956 (nnfolder-inhibit-expiry t))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
957 "*Method used for archiving messages you've sent. |
17493 | 958 This should be a mail method. |
959 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
960 It's probably not very effective to change this variable once you've |
17493 | 961 run Gnus once. After doing that, you must edit this server from the |
962 server buffer." | |
963 :group 'gnus-server | |
964 :group 'gnus-message | |
965 :type 'gnus-select-method) | |
966 | |
967 (defcustom gnus-message-archive-group nil | |
968 "*Name of the group in which to save the messages you've written. | |
969 This can either be a string; a list of strings; or an alist | |
970 of regexps/functions/forms to be evaluated to return a string (or a list | |
971 of strings). The functions are called with the name of the current | |
972 group (or nil) as a parameter. | |
973 | |
974 If you want to save your mail in one group and the news articles you | |
975 write in another group, you could say something like: | |
976 | |
977 \(setq gnus-message-archive-group | |
978 '((if (message-news-p) | |
979 \"misc-news\" | |
980 \"misc-mail\"))) | |
981 | |
982 Normally the group names returned by this variable should be | |
983 unprefixed -- which implicitly means \"store on the archive server\". | |
984 However, you may wish to store the message on some other server. In | |
985 that case, just return a fully prefixed name of the group -- | |
986 \"nnml+private:mail.misc\", for instance." | |
987 :group 'gnus-message | |
988 :type '(choice (const :tag "none" nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
989 function |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
990 sexp |
17493 | 991 string)) |
992 | |
993 (defcustom gnus-secondary-servers nil | |
994 "List of NNTP servers that the user can choose between interactively. | |
995 To make Gnus query you for a server, you have to give `gnus' a | |
996 non-numeric prefix - `C-u M-x gnus', in short." | |
997 :group 'gnus-server | |
998 :type '(repeat string)) | |
999 | |
1000 (defcustom gnus-nntp-server nil | |
1001 "*The name of the host running the NNTP server. | |
1002 This variable is semi-obsolete. Use the `gnus-select-method' | |
1003 variable instead." | |
1004 :group 'gnus-server | |
1005 :type '(choice (const :tag "disable" nil) | |
1006 string)) | |
1007 | |
1008 (defcustom gnus-secondary-select-methods nil | |
1009 "A list of secondary methods that will be used for reading news. | |
1010 This is a list where each element is a complete select method (see | |
1011 `gnus-select-method'). | |
1012 | |
1013 If, for instance, you want to read your mail with the nnml backend, | |
1014 you could set this variable: | |
1015 | |
1016 \(setq gnus-secondary-select-methods '((nnml \"\")))" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1017 :group 'gnus-server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1018 :type '(repeat gnus-select-method)) |
17493 | 1019 |
1020 (defvar gnus-backup-default-subscribed-newsgroups | |
1021 '("news.announce.newusers" "news.groups.questions" "gnu.emacs.gnus") | |
1022 "Default default new newsgroups the first time Gnus is run. | |
1023 Should be set in paths.el, and shouldn't be touched by the user.") | |
1024 | |
1025 (defcustom gnus-local-domain nil | |
1026 "Local domain name without a host name. | |
1027 The DOMAINNAME environment variable is used instead if it is defined. | |
1028 If the `system-name' function returns the full Internet name, there is | |
1029 no need to set this variable." | |
1030 :group 'gnus-message | |
1031 :type '(choice (const :tag "default" nil) | |
1032 string)) | |
1033 | |
1034 (defvar gnus-local-organization nil | |
1035 "String with a description of what organization (if any) the user belongs to. | |
1036 Obsolete variable; use `message-user-organization' instead.") | |
1037 | |
1038 ;; Customization variables | |
1039 | |
1040 (defcustom gnus-refer-article-method nil | |
1041 "Preferred method for fetching an article by Message-ID. | |
1042 If you are reading news from the local spool (with nnspool), fetching | |
1043 articles by Message-ID is painfully slow. By setting this method to an | |
1044 nntp method, you might get acceptable results. | |
1045 | |
1046 The value of this variable must be a valid select method as discussed | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1047 in the documentation of `gnus-select-method'. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1048 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1049 It can also be a list of select methods, as well as the special symbol |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1050 `current', which means to use the current select method. If it is a |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1051 list, Gnus will try all the methods in the list until it finds a match." |
17493 | 1052 :group 'gnus-server |
1053 :type '(choice (const :tag "default" nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1054 (const :tag "DejaNews" (nnweb "refer" (nnweb-type dejanews))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1055 gnus-select-method |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1056 (repeat :menu-tag "Try multiple" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1057 :tag "Multiple" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1058 :value (current (nnweb "refer" (nnweb-type dejanews))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1059 (choice :tag "Method" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1060 (const current) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1061 (const :tag "DejaNews" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1062 (nnweb "refer" (nnweb-type dejanews))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1063 gnus-select-method)))) |
17493 | 1064 |
1065 (defcustom gnus-group-faq-directory | |
1066 '("/ftp@mirrors.aol.com:/pub/rtfm/usenet/" | |
1067 "/ftp@sunsite.auc.dk:/pub/usenet/" | |
1068 "/ftp@sunsite.doc.ic.ac.uk:/pub/usenet/news-faqs/" | |
1069 "/ftp@src.doc.ic.ac.uk:/usenet/news-FAQS/" | |
1070 "/ftp@ftp.seas.gwu.edu:/pub/rtfm/" | |
1071 "/ftp@rtfm.mit.edu:/pub/usenet/" | |
1072 "/ftp@ftp.uni-paderborn.de:/pub/FAQ/" | |
1073 "/ftp@ftp.sunet.se:/pub/usenet/" | |
1074 "/ftp@nctuccca.edu.tw:/USENET/FAQ/" | |
1075 "/ftp@hwarang.postech.ac.kr:/pub/usenet/" | |
1076 "/ftp@ftp.hk.super.net:/mirror/faqs/") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1077 "*Directory where the group FAQs are stored. |
17493 | 1078 This will most commonly be on a remote machine, and the file will be |
1079 fetched by ange-ftp. | |
1080 | |
1081 This variable can also be a list of directories. In that case, the | |
1082 first element in the list will be used by default. The others can | |
1083 be used when being prompted for a site. | |
1084 | |
1085 Note that Gnus uses an aol machine as the default directory. If this | |
1086 feels fundamentally unclean, just think of it as a way to finally get | |
1087 something of value back from them. | |
1088 | |
1089 If the default site is too slow, try one of these: | |
1090 | |
1091 North America: mirrors.aol.com /pub/rtfm/usenet | |
1092 ftp.seas.gwu.edu /pub/rtfm | |
1093 rtfm.mit.edu /pub/usenet | |
1094 Europe: ftp.uni-paderborn.de /pub/FAQ | |
1095 src.doc.ic.ac.uk /usenet/news-FAQS | |
1096 ftp.sunet.se /pub/usenet | |
1097 sunsite.auc.dk /pub/usenet | |
1098 Asia: nctuccca.edu.tw /USENET/FAQ | |
1099 hwarang.postech.ac.kr /pub/usenet | |
1100 ftp.hk.super.net /mirror/faqs" | |
1101 :group 'gnus-group-various | |
1102 :type '(choice directory | |
1103 (repeat directory))) | |
1104 | |
1105 (defcustom gnus-use-cross-reference t | |
1106 "*Non-nil means that cross referenced articles will be marked as read. | |
1107 If nil, ignore cross references. If t, mark articles as read in | |
1108 subscribed newsgroups. If neither t nor nil, mark as read in all | |
1109 newsgroups." | |
1110 :group 'gnus-server | |
1111 :type '(choice (const :tag "off" nil) | |
1112 (const :tag "subscribed" t) | |
1113 (sexp :format "all" | |
1114 :value always))) | |
1115 | |
1116 (defcustom gnus-process-mark ?# | |
1117 "*Process mark." | |
1118 :group 'gnus-group-visual | |
1119 :group 'gnus-summary-marks | |
1120 :type 'character) | |
1121 | |
1122 (defcustom gnus-large-newsgroup 200 | |
1123 "*The number of articles which indicates a large newsgroup. | |
1124 If the number of articles in a newsgroup is greater than this value, | |
1125 confirmation is required for selecting the newsgroup." | |
1126 :group 'gnus-group-select | |
1127 :type 'integer) | |
1128 | |
1129 (defcustom gnus-use-long-file-name (not (memq system-type '(usg-unix-v xenix))) | |
1130 "*Non-nil means that the default name of a file to save articles in is the group name. | |
1131 If it's nil, the directory form of the group name is used instead. | |
1132 | |
1133 If this variable is a list, and the list contains the element | |
1134 `not-score', long file names will not be used for score files; if it | |
1135 contains the element `not-save', long file names will not be used for | |
1136 saving; and if it contains the element `not-kill', long file names | |
1137 will not be used for kill files. | |
1138 | |
1139 Note that the default for this variable varies according to what system | |
1140 type you're using. On `usg-unix-v' and `xenix' this variable defaults | |
1141 to nil while on all other systems it defaults to t." | |
1142 :group 'gnus-start | |
1143 :type 'boolean) | |
1144 | |
1145 (defcustom gnus-kill-files-directory gnus-directory | |
1146 "*Name of the directory where kill files will be stored (default \"~/News\")." | |
1147 :group 'gnus-score-files | |
1148 :group 'gnus-score-kill | |
1149 :type 'directory) | |
1150 | |
1151 (defcustom gnus-save-score nil | |
1152 "*If non-nil, save group scoring info." | |
1153 :group 'gnus-score-various | |
1154 :group 'gnus-start | |
1155 :type 'boolean) | |
1156 | |
1157 (defcustom gnus-use-undo t | |
1158 "*If non-nil, allow undoing in Gnus group mode buffers." | |
1159 :group 'gnus-meta | |
1160 :type 'boolean) | |
1161 | |
1162 (defcustom gnus-use-adaptive-scoring nil | |
1163 "*If non-nil, use some adaptive scoring scheme. | |
1164 If a list, then the values `word' and `line' are meaningful. The | |
1165 former will perform adaption on individual words in the subject | |
1166 header while `line' will perform adaption on several headers." | |
1167 :group 'gnus-meta | |
1168 :group 'gnus-score-adapt | |
1169 :type '(set (const word) (const line))) | |
1170 | |
1171 (defcustom gnus-use-cache 'passive | |
1172 "*If nil, Gnus will ignore the article cache. | |
1173 If `passive', it will allow entering (and reading) articles | |
1174 explicitly entered into the cache. If anything else, use the | |
1175 cache to the full extent of the law." | |
1176 :group 'gnus-meta | |
1177 :group 'gnus-cache | |
1178 :type '(choice (const :tag "off" nil) | |
1179 (const :tag "passive" passive) | |
1180 (const :tag "active" t))) | |
1181 | |
1182 (defcustom gnus-use-trees nil | |
1183 "*If non-nil, display a thread tree buffer." | |
1184 :group 'gnus-meta | |
1185 :type 'boolean) | |
1186 | |
1187 (defcustom gnus-use-grouplens nil | |
1188 "*If non-nil, use GroupLens ratings." | |
1189 :group 'gnus-meta | |
1190 :type 'boolean) | |
1191 | |
1192 (defcustom gnus-keep-backlog nil | |
1193 "*If non-nil, Gnus will keep read articles for later re-retrieval. | |
1194 If it is a number N, then Gnus will only keep the last N articles | |
1195 read. If it is neither nil nor a number, Gnus will keep all read | |
1196 articles. This is not a good idea." | |
1197 :group 'gnus-meta | |
1198 :type '(choice (const :tag "off" nil) | |
1199 integer | |
1200 (sexp :format "all" | |
1201 :value t))) | |
1202 | |
1203 (defcustom gnus-use-nocem nil | |
1204 "*If non-nil, Gnus will read NoCeM cancel messages." | |
1205 :group 'gnus-meta | |
1206 :type 'boolean) | |
1207 | |
1208 (defcustom gnus-suppress-duplicates nil | |
1209 "*If non-nil, Gnus will mark duplicate copies of the same article as read." | |
1210 :group 'gnus-meta | |
1211 :type 'boolean) | |
1212 | |
1213 (defcustom gnus-use-scoring t | |
1214 "*If non-nil, enable scoring." | |
1215 :group 'gnus-meta | |
1216 :type 'boolean) | |
1217 | |
1218 (defcustom gnus-use-picons nil | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1219 "*If non-nil, display picons in a frame of their own." |
17493 | 1220 :group 'gnus-meta |
1221 :type 'boolean) | |
1222 | |
1223 (defcustom gnus-summary-prepare-exit-hook | |
1224 '(gnus-summary-expire-articles) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1225 "*A hook called when preparing to exit from the summary buffer. |
17493 | 1226 It calls `gnus-summary-expire-articles' by default." |
1227 :group 'gnus-summary-exit | |
1228 :type 'hook) | |
1229 | |
1230 (defcustom gnus-novice-user t | |
1231 "*Non-nil means that you are a usenet novice. | |
1232 If non-nil, verbose messages may be displayed and confirmations may be | |
1233 required." | |
1234 :group 'gnus-meta | |
1235 :type 'boolean) | |
1236 | |
1237 (defcustom gnus-expert-user nil | |
1238 "*Non-nil means that you will never be asked for confirmation about anything. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1239 That doesn't mean *anything* anything; particularly destructive |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1240 commands will still require prompting." |
17493 | 1241 :group 'gnus-meta |
1242 :type 'boolean) | |
1243 | |
1244 (defcustom gnus-interactive-catchup t | |
1245 "*If non-nil, require your confirmation when catching up a group." | |
1246 :group 'gnus-group-select | |
1247 :type 'boolean) | |
1248 | |
1249 (defcustom gnus-interactive-exit t | |
1250 "*If non-nil, require your confirmation when exiting Gnus." | |
1251 :group 'gnus-exit | |
1252 :type 'boolean) | |
1253 | |
1254 (defcustom gnus-extract-address-components 'gnus-extract-address-components | |
1255 "*Function for extracting address components from a From header. | |
1256 Two pre-defined function exist: `gnus-extract-address-components', | |
1257 which is the default, quite fast, and too simplistic solution, and | |
1258 `mail-extract-address-components', which works much better, but is | |
1259 slower." | |
1260 :group 'gnus-summary-format | |
1261 :type '(radio (function-item gnus-extract-address-components) | |
1262 (function-item mail-extract-address-components) | |
1263 (function :tag "Other"))) | |
1264 | |
1265 (defcustom gnus-carpal nil | |
1266 "*If non-nil, display clickable icons." | |
1267 :group 'gnus-meta | |
1268 :type 'boolean) | |
1269 | |
1270 (defcustom gnus-shell-command-separator ";" | |
1271 "String used to separate to shell commands." | |
1272 :group 'gnus-files | |
1273 :type 'string) | |
1274 | |
1275 (defcustom gnus-valid-select-methods | |
1276 '(("nntp" post address prompt-address physical-address) | |
1277 ("nnspool" post address) | |
1278 ("nnvirtual" post-mail virtual prompt-address) | |
1279 ("nnmbox" mail respool address) | |
1280 ("nnml" mail respool address) | |
1281 ("nnmh" mail respool address) | |
1282 ("nndir" post-mail prompt-address physical-address) | |
1283 ("nneething" none address prompt-address physical-address) | |
1284 ("nndoc" none address prompt-address) | |
1285 ("nnbabyl" mail address respool) | |
1286 ("nnkiboze" post virtual) | |
1287 ("nnsoup" post-mail address) | |
1288 ("nndraft" post-mail) | |
1289 ("nnfolder" mail respool address) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1290 ("nngateway" post-mail address prompt-address physical-address) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1291 ("nnweb" none) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1292 ("nnslashdot" post) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1293 ("nnultimate" none) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1294 ("nnwarchive" none) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1295 ("nnlistserv" none) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1296 ("nnagent" post-mail) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1297 ("nnimap" post-mail address prompt-address physical-address)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1298 "*An alist of valid select methods. |
17493 | 1299 The first element of each list lists should be a string with the name |
1300 of the select method. The other elements may be the category of | |
1301 this method (i. e., `post', `mail', `none' or whatever) or other | |
1302 properties that this method has (like being respoolable). | |
1303 If you implement a new select method, all you should have to change is | |
1304 this variable. I think." | |
1305 :group 'gnus-server | |
1306 :type '(repeat (group (string :tag "Name") | |
1307 (radio-button-choice (const :format "%v " post) | |
1308 (const :format "%v " mail) | |
1309 (const :format "%v " none) | |
1310 (const post-mail)) | |
1311 (checklist :inline t | |
1312 (const :format "%v " address) | |
1313 (const :format "%v " prompt-address) | |
23364
aa359fe9fe1e
(gnus-valid-select-methods): Fix type.
Karl Heuer <kwzh@gnu.org>
parents:
23317
diff
changeset
|
1314 (const :format "%v " physical-address) |
17493 | 1315 (const :format "%v " virtual) |
1316 (const respool))))) | |
1317 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1318 (defun gnus-redefine-select-method-widget () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1319 "Recomputes the select-method widget based on the value of |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1320 `gnus-valid-select-methods'." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1321 (define-widget 'gnus-select-method 'list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1322 "Widget for entering a select method." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1323 :value '(nntp "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1324 :tag "Select Method" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1325 :args `((choice :tag "Method" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1326 ,@(mapcar (lambda (entry) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1327 (list 'const :format "%v\n" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1328 (intern (car entry)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1329 gnus-valid-select-methods) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1330 (symbol :tag "other")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1331 (string :tag "Address") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1332 (repeat :tag "Options" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1333 :inline t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1334 (list :format "%v" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1335 variable |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1336 (sexp :tag "Value")))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1337 )) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1338 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1339 (gnus-redefine-select-method-widget) |
17493 | 1340 |
1341 (defcustom gnus-updated-mode-lines '(group article summary tree) | |
1342 "List of buffers that should update their mode lines. | |
1343 The list may contain the symbols `group', `article', `tree' and | |
1344 `summary'. If the corresponding symbol is present, Gnus will keep | |
1345 that mode line updated with information that may be pertinent. | |
1346 If this variable is nil, screen refresh may be quicker." | |
1347 :group 'gnus-various | |
1348 :type '(set (const group) | |
1349 (const article) | |
1350 (const summary) | |
1351 (const tree))) | |
1352 | |
1353 ;; Added by Keinonen Kari <kk85613@cs.tut.fi>. | |
1354 (defcustom gnus-mode-non-string-length nil | |
1355 "*Max length of mode-line non-string contents. | |
1356 If this is nil, Gnus will take space as is needed, leaving the rest | |
1357 of the modeline intact. Note that the default of nil is unlikely | |
1358 to be desirable; see the manual for further details." | |
1359 :group 'gnus-various | |
1360 :type '(choice (const nil) | |
1361 integer)) | |
1362 | |
1363 (defcustom gnus-auto-expirable-newsgroups nil | |
1364 "*Groups in which to automatically mark read articles as expirable. | |
1365 If non-nil, this should be a regexp that should match all groups in | |
1366 which to perform auto-expiry. This only makes sense for mail groups." | |
1367 :group 'nnmail-expire | |
1368 :type '(choice (const nil) | |
1369 regexp)) | |
1370 | |
1371 (defcustom gnus-total-expirable-newsgroups nil | |
1372 "*Groups in which to perform expiry of all read articles. | |
1373 Use with extreme caution. All groups that match this regexp will be | |
1374 expiring - which means that all read articles will be deleted after | |
1375 \(say) one week. (This only goes for mail groups and the like, of | |
1376 course.)" | |
1377 :group 'nnmail-expire | |
1378 :type '(choice (const nil) | |
1379 regexp)) | |
1380 | |
1381 (defcustom gnus-group-uncollapsed-levels 1 | |
1382 "Number of group name elements to leave alone when making a short group name." | |
1383 :group 'gnus-group-visual | |
1384 :type 'integer) | |
1385 | |
1386 (defcustom gnus-group-use-permanent-levels nil | |
1387 "*If non-nil, once you set a level, Gnus will use this level." | |
1388 :group 'gnus-group-levels | |
1389 :type 'boolean) | |
1390 | |
1391 ;; Hooks. | |
1392 | |
1393 (defcustom gnus-load-hook nil | |
1394 "A hook run while Gnus is loaded." | |
1395 :group 'gnus-start | |
1396 :type 'hook) | |
1397 | |
1398 (defcustom gnus-apply-kill-hook '(gnus-apply-kill-file) | |
1399 "A hook called to apply kill files to a group. | |
1400 This hook is intended to apply a kill file to the selected newsgroup. | |
1401 The function `gnus-apply-kill-file' is called by default. | |
1402 | |
1403 Since a general kill file is too heavy to use only for a few | |
1404 newsgroups, I recommend you to use a lighter hook function. For | |
1405 example, if you'd like to apply a kill file to articles which contains | |
1406 a string `rmgroup' in subject in newsgroup `control', you can use the | |
1407 following hook: | |
1408 | |
1409 (setq gnus-apply-kill-hook | |
1410 (list | |
1411 (lambda () | |
1412 (cond ((string-match \"control\" gnus-newsgroup-name) | |
1413 (gnus-kill \"Subject\" \"rmgroup\") | |
1414 (gnus-expunge \"X\"))))))" | |
1415 :group 'gnus-score-kill | |
1416 :options '(gnus-apply-kill-file) | |
1417 :type 'hook) | |
1418 | |
1419 (defcustom gnus-group-change-level-function nil | |
1420 "Function run when a group level is changed. | |
1421 It is called with three parameters -- GROUP, LEVEL and OLDLEVEL." | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1422 :group 'gnus-group-levels |
17493 | 1423 :type 'function) |
1424 | |
1425 ;;; Face thingies. | |
1426 | |
1427 (defcustom gnus-visual | |
1428 '(summary-highlight group-highlight article-highlight | |
1429 mouse-face | |
1430 summary-menu group-menu article-menu | |
1431 tree-highlight menu highlight | |
1432 browse-menu server-menu | |
1433 page-marker tree-menu binary-menu pick-menu | |
1434 grouplens-menu) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1435 "*Enable visual features. |
17493 | 1436 If `visual' is disabled, there will be no menus and few faces. Most of |
1437 the visual customization options below will be ignored. Gnus will use | |
1438 less space and be faster as a result. | |
1439 | |
1440 This variable can also be a list of visual elements to switch on. For | |
1441 instance, to switch off all visual things except menus, you can say: | |
1442 | |
1443 (setq gnus-visual '(menu)) | |
1444 | |
1445 Valid elements include `summary-highlight', `group-highlight', | |
1446 `article-highlight', `mouse-face', `summary-menu', `group-menu', | |
1447 `article-menu', `tree-highlight', `menu', `highlight', `browse-menu', | |
1448 `server-menu', `page-marker', `tree-menu', `binary-menu', `pick-menu', | |
1449 and `grouplens-menu'." | |
1450 :group 'gnus-meta | |
1451 :group 'gnus-visual | |
1452 :type '(set (const summary-highlight) | |
1453 (const group-highlight) | |
1454 (const article-highlight) | |
1455 (const mouse-face) | |
1456 (const summary-menu) | |
1457 (const group-menu) | |
1458 (const article-menu) | |
1459 (const tree-highlight) | |
1460 (const menu) | |
1461 (const highlight) | |
1462 (const browse-menu) | |
1463 (const server-menu) | |
1464 (const page-marker) | |
1465 (const tree-menu) | |
1466 (const binary-menu) | |
1467 (const pick-menu) | |
1468 (const grouplens-menu))) | |
1469 | |
1470 (defcustom gnus-mouse-face | |
1471 (condition-case () | |
1472 (if (gnus-visual-p 'mouse-face 'highlight) | |
1473 (if (boundp 'gnus-mouse-face) | |
1474 (or gnus-mouse-face 'highlight) | |
1475 'highlight) | |
1476 'default) | |
1477 (error 'highlight)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1478 "*Face used for group or summary buffer mouse highlighting. |
17493 | 1479 The line beneath the mouse pointer will be highlighted with this |
1480 face." | |
1481 :group 'gnus-visual | |
1482 :type 'face) | |
1483 | |
1484 (defcustom gnus-article-save-directory gnus-directory | |
1485 "*Name of the directory articles will be saved in (default \"~/News\")." | |
1486 :group 'gnus-article-saving | |
1487 :type 'directory) | |
1488 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1489 (defvar gnus-plugged t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1490 "Whether Gnus is plugged or not.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1491 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1492 (defcustom gnus-default-charset 'iso-8859-1 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1493 "Default charset assumed to be used when viewing non-ASCII characters. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1494 This variable is overridden on a group-to-group basis by the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1495 gnus-group-charset-alist variable and is only used on groups not |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1496 covered by that variable." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1497 :type 'symbol |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1498 :group 'gnus-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1499 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1500 (defcustom gnus-default-posting-charset nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1501 "Default charset assumed to be used when posting non-ASCII characters. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1502 This variable is overridden on a group-to-group basis by the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1503 gnus-group-posting-charset-alist variable and is only used on groups not |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1504 covered by that variable. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1505 If nil, no default charset is assumed when posting." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1506 :type 'symbol |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1507 :group 'gnus-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1508 |
17493 | 1509 |
1510 ;;; Internal variables | |
1511 | |
32981 | 1512 (defvar gnus-agent-gcc-header "X-Gnus-Agent-Gcc") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1513 (defvar gnus-agent-meta-information-header "X-Gnus-Agent-Meta-Information") |
17493 | 1514 (defvar gnus-group-get-parameter-function 'gnus-group-get-parameter) |
1515 (defvar gnus-original-article-buffer " *Original Article*") | |
1516 (defvar gnus-newsgroup-name nil) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1517 (defvar gnus-ephemeral-servers nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1518 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1519 (defvar gnus-agent nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1520 "Whether we want to use the Gnus agent or not.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1521 |
32981 | 1522 (defvar gnus-agent-fetching nil |
1523 "Whether Gnus agent is in fetching mode.") | |
1524 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1525 (defvar gnus-command-method nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1526 "Dynamically bound variable that says what the current backend is.") |
17493 | 1527 |
1528 (defvar gnus-current-select-method nil | |
1529 "The current method for selecting a newsgroup.") | |
1530 | |
1531 (defvar gnus-tree-buffer "*Tree*" | |
1532 "Buffer where Gnus thread trees are displayed.") | |
1533 | |
1534 ;; Dummy variable. | |
1535 (defvar gnus-use-generic-from nil) | |
1536 | |
1537 ;; Variable holding the user answers to all method prompts. | |
1538 (defvar gnus-method-history nil) | |
1539 | |
1540 ;; Variable holding the user answers to all mail method prompts. | |
1541 (defvar gnus-mail-method-history nil) | |
1542 | |
1543 ;; Variable holding the user answers to all group prompts. | |
1544 (defvar gnus-group-history nil) | |
1545 | |
1546 (defvar gnus-server-alist nil | |
1547 "List of available servers.") | |
1548 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1549 (defcustom gnus-cache-directory |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1550 (nnheader-concat gnus-directory "cache/") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1551 "*The directory where cached articles will be stored." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1552 :group 'gnus-cache |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1553 :type 'directory) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1554 |
17493 | 1555 (defvar gnus-predefined-server-alist |
1556 `(("cache" | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1557 nnspool "cache" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1558 (nnspool-spool-directory ,gnus-cache-directory) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1559 (nnspool-nov-directory ,gnus-cache-directory) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1560 (nnspool-active-file |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1561 ,(nnheader-concat gnus-cache-directory "active")))) |
17493 | 1562 "List of predefined (convenience) servers.") |
1563 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1564 (defvar gnus-topic-indentation "");; Obsolete variable. |
17493 | 1565 |
1566 (defconst gnus-article-mark-lists | |
1567 '((marked . tick) (replied . reply) | |
1568 (expirable . expire) (killed . killed) | |
1569 (bookmarks . bookmark) (dormant . dormant) | |
1570 (scored . score) (saved . save) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1571 (cached . cache) (downloadable . download) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1572 (unsendable . unsend))) |
17493 | 1573 |
1574 (defvar gnus-headers-retrieved-by nil) | |
1575 (defvar gnus-article-reply nil) | |
1576 (defvar gnus-override-method nil) | |
1577 (defvar gnus-article-check-size nil) | |
1578 (defvar gnus-opened-servers nil) | |
1579 | |
1580 (defvar gnus-current-kill-article nil) | |
1581 | |
1582 (defvar gnus-have-read-active-file nil) | |
1583 | |
1584 (defconst gnus-maintainer | |
1585 "bugs@gnus.org (The Gnus Bugfixing Girls + Boys)" | |
1586 "The mail address of the Gnus maintainers.") | |
1587 | |
1588 (defvar gnus-info-nodes | |
1589 '((gnus-group-mode "(gnus)The Group Buffer") | |
1590 (gnus-summary-mode "(gnus)The Summary Buffer") | |
1591 (gnus-article-mode "(gnus)The Article Buffer") | |
1592 (gnus-server-mode "(gnus)The Server Buffer") | |
1593 (gnus-browse-mode "(gnus)Browse Foreign Server") | |
1594 (gnus-tree-mode "(gnus)Tree Display")) | |
1595 "Alist of major modes and related Info nodes.") | |
1596 | |
1597 (defvar gnus-group-buffer "*Group*") | |
1598 (defvar gnus-summary-buffer "*Summary*") | |
1599 (defvar gnus-article-buffer "*Article*") | |
1600 (defvar gnus-server-buffer "*Server*") | |
1601 | |
1602 (defvar gnus-slave nil | |
1603 "Whether this Gnus is a slave or not.") | |
1604 | |
1605 (defvar gnus-batch-mode nil | |
1606 "Whether this Gnus is running in batch mode or not.") | |
1607 | |
1608 (defvar gnus-variable-list | |
1609 '(gnus-newsrc-options gnus-newsrc-options-n | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1610 gnus-newsrc-last-checked-date |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1611 gnus-newsrc-alist gnus-server-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1612 gnus-killed-list gnus-zombie-list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1613 gnus-topic-topology gnus-topic-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1614 gnus-format-specs) |
17493 | 1615 "Gnus variables saved in the quick startup file.") |
1616 | |
1617 (defvar gnus-newsrc-alist nil | |
1618 "Assoc list of read articles. | |
1619 gnus-newsrc-hashtb should be kept so that both hold the same information.") | |
1620 | |
1621 (defvar gnus-newsrc-hashtb nil | |
1622 "Hashtable of gnus-newsrc-alist.") | |
1623 | |
1624 (defvar gnus-killed-list nil | |
1625 "List of killed newsgroups.") | |
1626 | |
1627 (defvar gnus-killed-hashtb nil | |
1628 "Hash table equivalent of gnus-killed-list.") | |
1629 | |
1630 (defvar gnus-zombie-list nil | |
1631 "List of almost dead newsgroups.") | |
1632 | |
1633 (defvar gnus-description-hashtb nil | |
1634 "Descriptions of newsgroups.") | |
1635 | |
1636 (defvar gnus-list-of-killed-groups nil | |
1637 "List of newsgroups that have recently been killed by the user.") | |
1638 | |
1639 (defvar gnus-active-hashtb nil | |
1640 "Hashtable of active articles.") | |
1641 | |
1642 (defvar gnus-moderated-hashtb nil | |
1643 "Hashtable of moderated newsgroups.") | |
1644 | |
1645 ;; Save window configuration. | |
1646 (defvar gnus-prev-winconf nil) | |
1647 | |
1648 (defvar gnus-reffed-article-number nil) | |
1649 | |
1650 ;;; Let the byte-compiler know that we know about this variable. | |
1651 (defvar rmail-default-rmail-file) | |
1652 | |
1653 (defvar gnus-dead-summary nil) | |
1654 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1655 (defvar gnus-invalid-group-regexp "[: `'\"/]\\|^$" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1656 "Regexp matching invalid groups.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1657 |
17493 | 1658 ;;; End of variables. |
1659 | |
1660 ;; Define some autoload functions Gnus might use. | |
1661 (eval-and-compile | |
1662 | |
1663 ;; This little mapcar goes through the list below and marks the | |
1664 ;; symbols in question as autoloaded functions. | |
1665 (mapcar | |
1666 (lambda (package) | |
1667 (let ((interactive (nth 1 (memq ':interactive package)))) | |
1668 (mapcar | |
1669 (lambda (function) | |
1670 (let (keymap) | |
1671 (when (consp function) | |
1672 (setq keymap (car (memq 'keymap function))) | |
1673 (setq function (car function))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1674 (unless (fboundp function) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1675 (autoload function (car package) nil interactive keymap)))) |
17493 | 1676 (if (eq (nth 1 package) ':interactive) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1677 (nthcdr 3 package) |
17493 | 1678 (cdr package))))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1679 '(("info" :interactive t Info-goto-node) |
31781
8a6a4f06f145
(gnus-version-number): Start 5.9 series. Avoid some
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
1680 ("pp" pp-to-string) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1681 ("qp" quoted-printable-decode-region quoted-printable-decode-string) |
17493 | 1682 ("ps-print" ps-print-preprint) |
1683 ("message" :interactive t | |
1684 message-send-and-exit message-yank-original) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1685 ("babel" babel-as-string) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1686 ("nnmail" nnmail-split-fancy nnmail-article-group) |
17493 | 1687 ("nnvirtual" nnvirtual-catchup-group nnvirtual-convert-headers) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1688 ("rmailout" rmail-output rmail-output-to-rmail-file) |
17493 | 1689 ("rmail" rmail-insert-rmail-file-header rmail-count-new-messages |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1690 rmail-show-message rmail-summary-exists |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1691 rmail-select-summary rmail-update-summary) |
17493 | 1692 ("gnus-audio" :interactive t gnus-audio-play) |
1693 ("gnus-xmas" gnus-xmas-splash) | |
1694 ("gnus-soup" :interactive t | |
1695 gnus-group-brew-soup gnus-brew-soup gnus-soup-add-article | |
1696 gnus-soup-send-replies gnus-soup-save-areas gnus-soup-pack-packet) | |
1697 ("nnsoup" nnsoup-pack-replies) | |
1698 ("score-mode" :interactive t gnus-score-mode) | |
1699 ("gnus-mh" gnus-summary-save-article-folder | |
1700 gnus-Folder-save-name gnus-folder-save-name) | |
1701 ("gnus-mh" :interactive t gnus-summary-save-in-folder) | |
1702 ("gnus-demon" gnus-demon-add-nocem gnus-demon-add-scanmail | |
1703 gnus-demon-add-rescan gnus-demon-add-scan-timestamps | |
1704 gnus-demon-add-disconnection gnus-demon-add-handler | |
1705 gnus-demon-remove-handler) | |
1706 ("gnus-demon" :interactive t | |
1707 gnus-demon-init gnus-demon-cancel) | |
1708 ("gnus-salt" gnus-highlight-selected-tree gnus-possibly-generate-tree | |
1709 gnus-tree-open gnus-tree-close gnus-carpal-setup-buffer) | |
1710 ("gnus-nocem" gnus-nocem-scan-groups gnus-nocem-close | |
1711 gnus-nocem-unwanted-article-p) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1712 ("gnus-srvr" gnus-enter-server-buffer gnus-server-set-info |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1713 gnus-server-server-name) |
17493 | 1714 ("gnus-srvr" gnus-browse-foreign-server) |
1715 ("gnus-cite" :interactive t | |
1716 gnus-article-highlight-citation gnus-article-hide-citation-maybe | |
1717 gnus-article-hide-citation gnus-article-fill-cited-article | |
1718 gnus-article-hide-citation-in-followups) | |
1719 ("gnus-kill" gnus-kill gnus-apply-kill-file-internal | |
1720 gnus-kill-file-edit-file gnus-kill-file-raise-followups-to-author | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1721 gnus-execute gnus-expunge gnus-batch-kill gnus-batch-score) |
17493 | 1722 ("gnus-cache" gnus-cache-possibly-enter-article gnus-cache-save-buffers |
1723 gnus-cache-possibly-remove-articles gnus-cache-request-article | |
1724 gnus-cache-retrieve-headers gnus-cache-possibly-alter-active | |
1725 gnus-cache-enter-remove-article gnus-cached-article-p | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1726 gnus-cache-open gnus-cache-close gnus-cache-update-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1727 gnus-cache-articles-in-group) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1728 ("gnus-cache" :interactive t gnus-jog-cache gnus-cache-enter-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1729 gnus-cache-remove-article gnus-summary-insert-cached-articles) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1730 ("gnus-score" :interactive t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1731 gnus-summary-increase-score gnus-summary-set-score |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1732 gnus-summary-raise-thread gnus-summary-raise-same-subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1733 gnus-summary-raise-score gnus-summary-raise-same-subject-and-select |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1734 gnus-summary-lower-thread gnus-summary-lower-same-subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1735 gnus-summary-lower-score gnus-summary-lower-same-subject-and-select |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1736 gnus-summary-current-score gnus-score-delta-default |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1737 gnus-score-flush-cache gnus-score-close |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1738 gnus-possibly-score-headers gnus-score-followup-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1739 gnus-score-followup-thread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1740 ("gnus-score" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1741 (gnus-summary-score-map keymap) gnus-score-save gnus-score-headers |
17493 | 1742 gnus-current-score-file-nondirectory gnus-score-adaptive |
1743 gnus-score-find-trace gnus-score-file-name) | |
1744 ("gnus-cus" :interactive t gnus-group-customize gnus-score-customize) | |
1745 ("gnus-topic" :interactive t gnus-topic-mode) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1746 ("gnus-topic" gnus-topic-remove-group gnus-topic-set-parameters |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1747 gnus-subscribe-topics) |
17493 | 1748 ("gnus-salt" :interactive t gnus-pick-mode gnus-binary-mode) |
1749 ("gnus-uu" (gnus-uu-extract-map keymap) (gnus-uu-mark-map keymap)) | |
1750 ("gnus-uu" :interactive t | |
1751 gnus-uu-digest-mail-forward gnus-uu-digest-post-forward | |
1752 gnus-uu-mark-series gnus-uu-mark-region gnus-uu-mark-buffer | |
1753 gnus-uu-mark-by-regexp gnus-uu-mark-all | |
1754 gnus-uu-mark-sparse gnus-uu-mark-thread gnus-uu-decode-uu | |
1755 gnus-uu-decode-uu-and-save gnus-uu-decode-unshar | |
1756 gnus-uu-decode-unshar-and-save gnus-uu-decode-save | |
1757 gnus-uu-decode-binhex gnus-uu-decode-uu-view | |
1758 gnus-uu-decode-uu-and-save-view gnus-uu-decode-unshar-view | |
1759 gnus-uu-decode-unshar-and-save-view gnus-uu-decode-save-view | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1760 gnus-uu-decode-binhex-view gnus-uu-unmark-thread |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1761 gnus-uu-mark-over gnus-uu-post-news) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1762 ("gnus-uu" gnus-uu-delete-work-dir gnus-uu-unmark-thread) |
17493 | 1763 ("gnus-msg" (gnus-summary-send-map keymap) |
1764 gnus-article-mail gnus-copy-article-buffer gnus-extended-version) | |
1765 ("gnus-msg" :interactive t | |
1766 gnus-group-post-news gnus-group-mail gnus-summary-post-news | |
1767 gnus-summary-followup gnus-summary-followup-with-original | |
1768 gnus-summary-cancel-article gnus-summary-supersede-article | |
1769 gnus-post-news gnus-summary-reply gnus-summary-reply-with-original | |
1770 gnus-summary-mail-forward gnus-summary-mail-other-window | |
1771 gnus-summary-resend-message gnus-summary-resend-bounced-mail | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1772 gnus-summary-wide-reply gnus-summary-followup-to-mail |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1773 gnus-summary-followup-to-mail-with-original gnus-bug |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1774 gnus-summary-wide-reply-with-original |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1775 gnus-summary-post-forward gnus-summary-wide-reply-with-original |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1776 gnus-summary-post-forward) |
17493 | 1777 ("gnus-picon" :interactive t gnus-article-display-picons |
1778 gnus-group-display-picons gnus-picons-article-display-x-face | |
1779 gnus-picons-display-x-face) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1780 ("gnus-picon" gnus-picons-buffer-name) |
17493 | 1781 ("gnus-gl" bbb-login bbb-logout bbb-grouplens-group-p |
1782 gnus-grouplens-mode) | |
1783 ("smiley" :interactive t gnus-smiley-display) | |
1784 ("gnus-win" gnus-configure-windows gnus-add-configuration) | |
1785 ("gnus-sum" gnus-summary-insert-line gnus-summary-read-group | |
1786 gnus-list-of-unread-articles gnus-list-of-read-articles | |
1787 gnus-offer-save-summaries gnus-make-thread-indent-array | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1788 gnus-summary-exit gnus-update-read-articles gnus-summary-last-subject |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1789 gnus-summary-skip-intangible gnus-summary-article-number |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1790 gnus-data-header gnus-data-find) |
17493 | 1791 ("gnus-group" gnus-group-insert-group-line gnus-group-quit |
1792 gnus-group-list-groups gnus-group-first-unread-group | |
1793 gnus-group-set-mode-line gnus-group-set-info gnus-group-save-newsrc | |
1794 gnus-group-setup-buffer gnus-group-get-new-news | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1795 gnus-group-make-help-group gnus-group-update-group |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1796 gnus-group-iterate gnus-group-group-name) |
17493 | 1797 ("gnus-bcklg" gnus-backlog-request-article gnus-backlog-enter-article |
1798 gnus-backlog-remove-article) | |
1799 ("gnus-art" gnus-article-read-summary-keys gnus-article-save | |
1800 gnus-article-prepare gnus-article-set-window-start | |
1801 gnus-article-next-page gnus-article-prev-page | |
1802 gnus-request-article-this-buffer gnus-article-mode | |
1803 gnus-article-setup-buffer gnus-narrow-to-page | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1804 gnus-article-delete-invisible-text gnus-treat-article) |
17493 | 1805 ("gnus-art" :interactive t |
1806 gnus-article-hide-headers gnus-article-hide-boring-headers | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1807 gnus-article-treat-overstrike |
17493 | 1808 gnus-article-remove-cr gnus-article-remove-trailing-blank-lines |
1809 gnus-article-display-x-face gnus-article-de-quoted-unreadable | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1810 gnus-article-de-base64-unreadable |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1811 gnus-article-decode-HZ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1812 gnus-article-wash-html |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1813 gnus-article-hide-pgp |
17493 | 1814 gnus-article-hide-pem gnus-article-hide-signature |
1815 gnus-article-strip-leading-blank-lines gnus-article-date-local | |
1816 gnus-article-date-original gnus-article-date-lapsed | |
1817 gnus-article-show-all-headers | |
1818 gnus-article-edit-mode gnus-article-edit-article | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1819 gnus-article-edit-done gnus-article-decode-encoded-words |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1820 gnus-start-date-timer gnus-stop-date-timer |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1821 gnus-mime-view-all-parts) |
17493 | 1822 ("gnus-int" gnus-request-type) |
1823 ("gnus-start" gnus-newsrc-parse-options gnus-1 gnus-no-server-1 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1824 gnus-dribble-enter gnus-read-init-file gnus-dribble-touch) |
17493 | 1825 ("gnus-dup" gnus-dup-suppress-articles gnus-dup-unsuppress-article |
1826 gnus-dup-enter-articles) | |
1827 ("gnus-range" gnus-copy-sequence) | |
1828 ("gnus-eform" gnus-edit-form) | |
1829 ("gnus-move" :interactive t | |
1830 gnus-group-move-group-to-server gnus-change-server) | |
1831 ("gnus-logic" gnus-score-advanced) | |
1832 ("gnus-undo" gnus-undo-mode gnus-undo-register) | |
1833 ("gnus-async" gnus-async-request-fetched-article gnus-async-prefetch-next | |
1834 gnus-async-prefetch-article gnus-async-prefetch-remove-group | |
1835 gnus-async-halt-prefetch) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1836 ("gnus-agent" gnus-open-agent gnus-agent-get-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1837 gnus-agent-save-groups gnus-agent-save-active gnus-agent-method-p |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1838 gnus-agent-get-undownloaded-list gnus-agent-fetch-session |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1839 gnus-summary-set-agent-mark gnus-agent-save-group-info) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1840 ("gnus-agent" :interactive t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1841 gnus-unplugged gnus-agentize gnus-agent-batch) |
17493 | 1842 ("gnus-vm" :interactive t gnus-summary-save-in-vm |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1843 gnus-summary-save-article-vm) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1844 ("gnus-draft" :interactive t gnus-draft-mode gnus-group-send-drafts) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1845 ("gnus-mlspl" gnus-group-split gnus-group-split-fancy) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1846 ("gnus-mlspl" :interactive t gnus-group-split-setup |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1847 gnus-group-split-update)))) |
17493 | 1848 |
1849 ;;; gnus-sum.el thingies | |
1850 | |
1851 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1852 (defcustom gnus-summary-line-format "%U%R%z%I%(%[%4L: %-20,20n%]%) %s\n" |
17493 | 1853 "*The format specification of the lines in the summary buffer. |
1854 | |
1855 It works along the same lines as a normal formatting string, | |
1856 with some simple extensions. | |
1857 | |
1858 %N Article number, left padded with spaces (string) | |
1859 %S Subject (string) | |
1860 %s Subject if it is at the root of a thread, and \"\" otherwise (string) | |
1861 %n Name of the poster (string) | |
1862 %a Extracted name of the poster (string) | |
1863 %A Extracted address of the poster (string) | |
1864 %F Contents of the From: header (string) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1865 %f Contents of the From: or To: headers (string) |
17493 | 1866 %x Contents of the Xref: header (string) |
1867 %D Date of the article (string) | |
1868 %d Date of the article (string) in DD-MMM format | |
1869 %M Message-id of the article (string) | |
1870 %r References of the article (string) | |
1871 %c Number of characters in the article (integer) | |
1872 %L Number of lines in the article (integer) | |
1873 %I Indentation based on thread level (a string of spaces) | |
1874 %T A string with two possible values: 80 spaces if the article | |
1875 is on thread level two or larger and 0 spaces on level one | |
1876 %R \"A\" if this article has been replied to, \" \" otherwise (character) | |
1877 %U Status of this article (character, \"R\", \"K\", \"-\" or \" \") | |
1878 %[ Opening bracket (character, \"[\" or \"<\") | |
1879 %] Closing bracket (character, \"]\" or \">\") | |
1880 %> Spaces of length thread-level (string) | |
1881 %< Spaces of length (- 20 thread-level) (string) | |
1882 %i Article score (number) | |
1883 %z Article zcore (character) | |
1884 %t Number of articles under the current thread (number). | |
1885 %e Whether the thread is empty or not (character). | |
1886 %l GroupLens score (string). | |
1887 %V Total thread score (number). | |
1888 %P The line number (number). | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1889 %O Download mark (character). |
17493 | 1890 %u User defined specifier. The next character in the format string should |
1891 be a letter. Gnus will call the function gnus-user-format-function-X, | |
1892 where X is the letter following %u. The function will be passed the | |
1893 current header as argument. The function should return a string, which | |
1894 will be inserted into the summary just like information from any other | |
1895 summary specifier. | |
1896 | |
1897 Text between %( and %) will be highlighted with `gnus-mouse-face' | |
1898 when the mouse point is placed inside the area. There can only be one | |
1899 such area. | |
1900 | |
1901 The %U (status), %R (replied) and %z (zcore) specs have to be handled | |
1902 with care. For reasons of efficiency, Gnus will compute what column | |
1903 these characters will end up in, and \"hard-code\" that. This means that | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1904 it is invalid to have these specs after a variable-length spec. Well, |
17493 | 1905 you might not be arrested, but your summary buffer will look strange, |
1906 which is bad enough. | |
1907 | |
1908 The smart choice is to have these specs as for to the left as | |
1909 possible. | |
1910 | |
1911 This restriction may disappear in later versions of Gnus." | |
1912 :type 'string | |
1913 :group 'gnus-summary-format) | |
1914 | |
1915 ;;; | |
1916 ;;; Skeleton keymaps | |
1917 ;;; | |
1918 | |
1919 (defun gnus-suppress-keymap (keymap) | |
1920 (suppress-keymap keymap) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
1921 (let ((keys `([backspace] [delete] "\177" "\M-u"))) ;gnus-mouse-2 |
17493 | 1922 (while keys |
1923 (define-key keymap (pop keys) 'undefined)))) | |
1924 | |
1925 (defvar gnus-article-mode-map | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
1926 (let ((keymap (make-sparse-keymap))) |
17493 | 1927 (gnus-suppress-keymap keymap) |
1928 keymap)) | |
1929 (defvar gnus-summary-mode-map | |
1930 (let ((keymap (make-keymap))) | |
1931 (gnus-suppress-keymap keymap) | |
1932 keymap)) | |
1933 (defvar gnus-group-mode-map | |
1934 (let ((keymap (make-keymap))) | |
1935 (gnus-suppress-keymap keymap) | |
1936 keymap)) | |
1937 | |
1938 | |
1939 | |
1940 ;; Fix by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>. | |
1941 ;; If you want the cursor to go somewhere else, set these two | |
1942 ;; functions in some startup hook to whatever you want. | |
1943 (defalias 'gnus-summary-position-point 'gnus-goto-colon) | |
1944 (defalias 'gnus-group-position-point 'gnus-goto-colon) | |
1945 | |
1946 ;;; Various macros and substs. | |
1947 | |
1948 (defun gnus-header-from (header) | |
1949 (mail-header-from header)) | |
1950 | |
1951 (defmacro gnus-gethash (string hashtable) | |
1952 "Get hash value of STRING in HASHTABLE." | |
1953 `(symbol-value (intern-soft ,string ,hashtable))) | |
1954 | |
1955 (defmacro gnus-sethash (string value hashtable) | |
1956 "Set hash value. Arguments are STRING, VALUE, and HASHTABLE." | |
1957 `(set (intern ,string ,hashtable) ,value)) | |
1958 (put 'gnus-sethash 'edebug-form-spec '(form form form)) | |
1959 | |
1960 (defmacro gnus-group-unread (group) | |
1961 "Get the currently computed number of unread articles in GROUP." | |
1962 `(car (gnus-gethash ,group gnus-newsrc-hashtb))) | |
1963 | |
1964 (defmacro gnus-group-entry (group) | |
1965 "Get the newsrc entry for GROUP." | |
1966 `(gnus-gethash ,group gnus-newsrc-hashtb)) | |
1967 | |
1968 (defmacro gnus-active (group) | |
1969 "Get active info on GROUP." | |
1970 `(gnus-gethash ,group gnus-active-hashtb)) | |
1971 | |
1972 (defmacro gnus-set-active (group active) | |
1973 "Set GROUP's active info." | |
1974 `(gnus-sethash ,group ,active gnus-active-hashtb)) | |
1975 | |
1976 ;; Info access macros. | |
1977 | |
1978 (defmacro gnus-info-group (info) | |
1979 `(nth 0 ,info)) | |
1980 (defmacro gnus-info-rank (info) | |
1981 `(nth 1 ,info)) | |
1982 (defmacro gnus-info-read (info) | |
1983 `(nth 2 ,info)) | |
1984 (defmacro gnus-info-marks (info) | |
1985 `(nth 3 ,info)) | |
1986 (defmacro gnus-info-method (info) | |
1987 `(nth 4 ,info)) | |
1988 (defmacro gnus-info-params (info) | |
1989 `(nth 5 ,info)) | |
1990 | |
1991 (defmacro gnus-info-level (info) | |
1992 `(let ((rank (gnus-info-rank ,info))) | |
1993 (if (consp rank) | |
1994 (car rank) | |
1995 rank))) | |
1996 (defmacro gnus-info-score (info) | |
1997 `(let ((rank (gnus-info-rank ,info))) | |
1998 (or (and (consp rank) (cdr rank)) 0))) | |
1999 | |
2000 (defmacro gnus-info-set-group (info group) | |
2001 `(setcar ,info ,group)) | |
2002 (defmacro gnus-info-set-rank (info rank) | |
2003 `(setcar (nthcdr 1 ,info) ,rank)) | |
2004 (defmacro gnus-info-set-read (info read) | |
2005 `(setcar (nthcdr 2 ,info) ,read)) | |
2006 (defmacro gnus-info-set-marks (info marks &optional extend) | |
2007 (if extend | |
2008 `(gnus-info-set-entry ,info ,marks 3) | |
2009 `(setcar (nthcdr 3 ,info) ,marks))) | |
2010 (defmacro gnus-info-set-method (info method &optional extend) | |
2011 (if extend | |
2012 `(gnus-info-set-entry ,info ,method 4) | |
2013 `(setcar (nthcdr 4 ,info) ,method))) | |
2014 (defmacro gnus-info-set-params (info params &optional extend) | |
2015 (if extend | |
2016 `(gnus-info-set-entry ,info ,params 5) | |
2017 `(setcar (nthcdr 5 ,info) ,params))) | |
2018 | |
2019 (defun gnus-info-set-entry (info entry number) | |
2020 ;; Extend the info until we have enough elements. | |
2021 (while (<= (length info) number) | |
2022 (nconc info (list nil))) | |
2023 ;; Set the entry. | |
2024 (setcar (nthcdr number info) entry)) | |
2025 | |
2026 (defmacro gnus-info-set-level (info level) | |
2027 `(let ((rank (cdr ,info))) | |
2028 (if (consp (car rank)) | |
2029 (setcar (car rank) ,level) | |
2030 (setcar rank ,level)))) | |
2031 (defmacro gnus-info-set-score (info score) | |
2032 `(let ((rank (cdr ,info))) | |
2033 (if (consp (car rank)) | |
2034 (setcdr (car rank) ,score) | |
2035 (setcar rank (cons (car rank) ,score))))) | |
2036 | |
2037 (defmacro gnus-get-info (group) | |
2038 `(nth 2 (gnus-gethash ,group gnus-newsrc-hashtb))) | |
2039 | |
2040 ;; Byte-compiler warning. | |
2041 (defvar gnus-visual) | |
2042 ;; Find out whether the gnus-visual TYPE is wanted. | |
2043 (defun gnus-visual-p (&optional type class) | |
2044 (and gnus-visual ; Has to be non-nil, at least. | |
2045 (if (not type) ; We don't care about type. | |
2046 gnus-visual | |
2047 (if (listp gnus-visual) ; It's a list, so we check it. | |
2048 (or (memq type gnus-visual) | |
2049 (memq class gnus-visual)) | |
2050 t)))) | |
2051 | |
2052 ;;; Load the compatability functions. | |
2053 | |
2054 (require 'gnus-ems) | |
2055 | |
2056 | |
2057 ;;; | |
2058 ;;; Shutdown | |
2059 ;;; | |
2060 | |
2061 (defvar gnus-shutdown-alist nil) | |
2062 | |
2063 (defun gnus-add-shutdown (function &rest symbols) | |
2064 "Run FUNCTION whenever one of SYMBOLS is shut down." | |
2065 (push (cons function symbols) gnus-shutdown-alist)) | |
2066 | |
2067 (defun gnus-shutdown (symbol) | |
2068 "Shut down everything that waits for SYMBOL." | |
2069 (let ((alist gnus-shutdown-alist) | |
2070 entry) | |
2071 (while (setq entry (pop alist)) | |
2072 (when (memq symbol (cdr entry)) | |
2073 (funcall (car entry)))))) | |
2074 | |
2075 | |
2076 ;;; | |
2077 ;;; Gnus Utility Functions | |
2078 ;;; | |
2079 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2080 |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2081 (defmacro gnus-string-or (&rest strings) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2082 "Return the first element of STRINGS that is a non-blank string. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2083 STRINGS will be evaluated in normal `or' order." |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2084 `(gnus-string-or-1 ',strings)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2085 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2086 (defun gnus-string-or-1 (strings) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2087 (let (string) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2088 (while strings |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2089 (setq string (eval (pop strings))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2090 (if (string-match "^[ \t]*$" string) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2091 (setq string nil) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2092 (setq strings nil))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2093 string)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2094 |
17493 | 2095 (defun gnus-version (&optional arg) |
2096 "Version number of this version of Gnus. | |
2097 If ARG, insert string at point." | |
2098 (interactive "P") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2099 (if arg |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2100 (insert (message gnus-version)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2101 (message gnus-version))) |
17493 | 2102 |
2103 (defun gnus-continuum-version (version) | |
2104 "Return VERSION as a floating point number." | |
2105 (when (or (string-match "^\\([^ ]+\\)? ?Gnus v?\\([0-9.]+\\)$" version) | |
2106 (string-match "^\\(.?\\)gnus-\\([0-9.]+\\)$" version)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2107 (let ((alpha (and (match-beginning 1) (match-string 1 version))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2108 (number (match-string 2 version)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2109 major minor least) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2110 (unless (string-match |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2111 "\\([0-9]\\)\\.\\([0-9]+\\)\\.?\\([0-9]+\\)?" number) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2112 (error "Invalid version string: %s" version)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2113 (setq major (string-to-number (match-string 1 number)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2114 minor (string-to-number (match-string 2 number)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2115 least (if (match-beginning 3) |
17493 | 2116 (string-to-number (match-string 3 number)) |
2117 0)) | |
2118 (string-to-number | |
2119 (if (zerop major) | |
2120 (format "%s00%02d%02d" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2121 (if (member alpha '("(ding)" "d")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2122 "4.99" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2123 (+ 5 (* 0.02 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2124 (abs |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2125 (- (mm-char-int (aref (downcase alpha) 0)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2126 (mm-char-int ?t)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2127 -0.01)) |
17493 | 2128 minor least) |
2129 (format "%d.%02d%02d" major minor least)))))) | |
2130 | |
2131 (defun gnus-info-find-node () | |
2132 "Find Info documentation of Gnus." | |
2133 (interactive) | |
2134 ;; Enlarge info window if needed. | |
2135 (let (gnus-info-buffer) | |
2136 (Info-goto-node (cadr (assq major-mode gnus-info-nodes))) | |
2137 (setq gnus-info-buffer (current-buffer)) | |
2138 (gnus-configure-windows 'info))) | |
2139 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2140 ;;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2141 ;;; gnus-interactive |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2142 ;;; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2143 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2144 (defvar gnus-current-prefix-symbol nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2145 "Current prefix symbol.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2146 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2147 (defvar gnus-current-prefix-symbols nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2148 "List of current prefix symbols.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2149 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2150 (defun gnus-interactive (string &optional params) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2151 "Return a list that can be fed to `interactive'. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2152 See `interactive' for full documentation. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2153 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2154 Adds the following specs: |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2155 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2156 y -- The current symbolic prefix. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2157 Y -- A list of the current symbolic prefix(es). |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2158 A -- Article number. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2159 H -- Article header. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2160 g -- Group name." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2161 (let ((i 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2162 out c prompt) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2163 (while (< i (length string)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2164 (string-match ".\\([^\n]*\\)\n?" string i) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2165 (setq c (aref string i)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2166 (when (match-end 1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2167 (setq prompt (match-string 1 string))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2168 (setq i (match-end 0)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2169 ;; We basically emulate just about everything that |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2170 ;; `interactive' does, but add the specs listed above. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2171 (push |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2172 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2173 ((= c ?a) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2174 (completing-read prompt obarray 'fboundp t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2175 ((= c ?b) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2176 (read-buffer prompt (current-buffer) t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2177 ((= c ?B) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2178 (read-buffer prompt (other-buffer (current-buffer)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2179 ((= c ?c) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2180 (read-char)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2181 ((= c ?C) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2182 (completing-read prompt obarray 'commandp t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2183 ((= c ?d) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2184 (point)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2185 ((= c ?D) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2186 (read-file-name prompt nil default-directory 'lambda)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2187 ((= c ?f) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2188 (read-file-name prompt nil nil 'lambda)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2189 ((= c ?F) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2190 (read-file-name prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2191 ((= c ?k) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2192 (read-key-sequence prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2193 ((= c ?K) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2194 (error "Not implemented spec")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2195 ((= c ?e) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2196 (error "Not implemented spec")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2197 ((= c ?m) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2198 (mark)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2199 ((= c ?N) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2200 (error "Not implemented spec")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2201 ((= c ?n) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2202 (string-to-number (read-from-minibuffer prompt))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2203 ((= c ?p) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2204 (prefix-numeric-value current-prefix-arg)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2205 ((= c ?P) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2206 current-prefix-arg) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2207 ((= c ?r) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2208 'gnus-prefix-nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2209 ((= c ?s) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2210 (read-string prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2211 ((= c ?S) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2212 (intern (read-string prompt))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2213 ((= c ?v) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2214 (read-variable prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2215 ((= c ?x) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2216 (read-minibuffer prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2217 ((= c ?x) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2218 (eval-minibuffer prompt)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2219 ;; And here the new specs come. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2220 ((= c ?y) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2221 gnus-current-prefix-symbol) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2222 ((= c ?Y) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2223 gnus-current-prefix-symbols) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2224 ((= c ?g) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2225 (gnus-group-group-name)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2226 ((= c ?A) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2227 (gnus-summary-skip-intangible) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2228 (or (get-text-property (point) 'gnus-number) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2229 (gnus-summary-last-subject))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2230 ((= c ?H) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2231 (gnus-data-header (gnus-data-find (gnus-summary-article-number)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2232 (t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2233 (error "Non-implemented spec"))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2234 out) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2235 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2236 ((= c ?r) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2237 (push (if (< (point) (mark) (point) (mark))) out) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2238 (push (if (> (point) (mark) (point) (mark))) out)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2239 (setq out (delq 'gnus-prefix-nil out)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2240 (nreverse out))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2241 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2242 (defun gnus-symbolic-argument (&optional arg) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2243 "Read a symbolic argument and a command, and then execute command." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2244 (interactive "P") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2245 (let* ((in-command (this-command-keys)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2246 (command in-command) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2247 gnus-current-prefix-symbols |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2248 gnus-current-prefix-symbol |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2249 syms) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2250 (while (equal in-command command) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2251 (message "%s-" (key-description (this-command-keys))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2252 (push (intern (char-to-string (read-char))) syms) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2253 (setq command (read-key-sequence nil t))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2254 (setq gnus-current-prefix-symbols (nreverse syms) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2255 gnus-current-prefix-symbol (car gnus-current-prefix-symbols)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2256 (call-interactively (key-binding command t)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2257 |
17493 | 2258 ;;; More various functions. |
2259 | |
19524
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2260 (defsubst gnus-check-backend-function (func group) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2261 "Check whether GROUP supports function FUNC. |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2262 GROUP can either be a string (a group name) or a select method." |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2263 (ignore-errors |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2264 (let ((method (if (stringp group) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2265 (car (gnus-find-method-for-group group)) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2266 group))) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2267 (unless (featurep method) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2268 (require method)) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2269 (fboundp (intern (format "%s-%s" method func)))))) |
f7cceca576e3
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17494
diff
changeset
|
2270 |
17493 | 2271 (defun gnus-group-read-only-p (&optional group) |
2272 "Check whether GROUP supports editing or not. | |
2273 If GROUP is nil, `gnus-newsgroup-name' will be checked instead. Note | |
2274 that that variable is buffer-local to the summary buffers." | |
2275 (let ((group (or group gnus-newsgroup-name))) | |
2276 (not (gnus-check-backend-function 'request-replace-article group)))) | |
2277 | |
2278 (defun gnus-group-total-expirable-p (group) | |
2279 "Check whether GROUP is total-expirable or not." | |
2280 (let ((params (gnus-group-find-parameter group)) | |
2281 val) | |
2282 (cond | |
2283 ((memq 'total-expire params) | |
2284 t) | |
2285 ((setq val (assq 'total-expire params)) ; (auto-expire . t) | |
2286 (cdr val)) | |
2287 (gnus-total-expirable-newsgroups ; Check var. | |
2288 (string-match gnus-total-expirable-newsgroups group))))) | |
2289 | |
2290 (defun gnus-group-auto-expirable-p (group) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2291 "Check whether GROUP is auto-expirable or not." |
17493 | 2292 (let ((params (gnus-group-find-parameter group)) |
2293 val) | |
2294 (cond | |
2295 ((memq 'auto-expire params) | |
2296 t) | |
2297 ((setq val (assq 'auto-expire params)) ; (auto-expire . t) | |
2298 (cdr val)) | |
2299 (gnus-auto-expirable-newsgroups ; Check var. | |
2300 (string-match gnus-auto-expirable-newsgroups group))))) | |
2301 | |
2302 (defun gnus-virtual-group-p (group) | |
2303 "Say whether GROUP is virtual or not." | |
2304 (memq 'virtual (assoc (symbol-name (car (gnus-find-method-for-group group))) | |
2305 gnus-valid-select-methods))) | |
2306 | |
2307 (defun gnus-news-group-p (group &optional article) | |
2308 "Return non-nil if GROUP (and ARTICLE) come from a news server." | |
2309 (or (gnus-member-of-valid 'post group) ; Ordinary news group. | |
2310 (and (gnus-member-of-valid 'post-mail group) ; Combined group. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2311 (if (or (null article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2312 (not (< article 0))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2313 (eq (gnus-request-type group article) 'news) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2314 (if (not (vectorp article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2315 nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2316 ;; It's a real article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2317 (eq (gnus-request-type group (mail-header-id article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2318 'news)))))) |
17493 | 2319 |
2320 ;; Returns a list of writable groups. | |
2321 (defun gnus-writable-groups () | |
2322 (let ((alist gnus-newsrc-alist) | |
2323 groups group) | |
2324 (while (setq group (car (pop alist))) | |
2325 (unless (gnus-group-read-only-p group) | |
2326 (push group groups))) | |
2327 (nreverse groups))) | |
2328 | |
2329 ;; Check whether to use long file names. | |
2330 (defun gnus-use-long-file-name (symbol) | |
2331 ;; The variable has to be set... | |
2332 (and gnus-use-long-file-name | |
2333 ;; If it isn't a list, then we return t. | |
2334 (or (not (listp gnus-use-long-file-name)) | |
2335 ;; If it is a list, and the list contains `symbol', we | |
2336 ;; return nil. | |
2337 (not (memq symbol gnus-use-long-file-name))))) | |
2338 | |
2339 ;; Generate a unique new group name. | |
2340 (defun gnus-generate-new-group-name (leaf) | |
2341 (let ((name leaf) | |
2342 (num 0)) | |
2343 (while (gnus-gethash name gnus-newsrc-hashtb) | |
2344 (setq name (concat leaf "<" (int-to-string (setq num (1+ num))) ">"))) | |
2345 name)) | |
2346 | |
2347 (defun gnus-ephemeral-group-p (group) | |
2348 "Say whether GROUP is ephemeral or not." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2349 (gnus-group-get-parameter group 'quit-config t)) |
17493 | 2350 |
2351 (defun gnus-group-quit-config (group) | |
2352 "Return the quit-config of GROUP." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2353 (gnus-group-get-parameter group 'quit-config t)) |
17493 | 2354 |
2355 (defun gnus-kill-ephemeral-group (group) | |
2356 "Remove ephemeral GROUP from relevant structures." | |
2357 (gnus-sethash group nil gnus-newsrc-hashtb)) | |
2358 | |
2359 (defun gnus-simplify-mode-line () | |
2360 "Make mode lines a bit simpler." | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19560
diff
changeset
|
2361 (setq mode-line-modified (cdr gnus-mode-line-modified)) |
17493 | 2362 (when (listp mode-line-format) |
2363 (make-local-variable 'mode-line-format) | |
2364 (setq mode-line-format (copy-sequence mode-line-format)) | |
2365 (when (equal (nth 3 mode-line-format) " ") | |
2366 (setcar (nthcdr 3 mode-line-format) " ")))) | |
2367 | |
2368 ;;; Servers and groups. | |
2369 | |
2370 (defsubst gnus-server-add-address (method) | |
2371 (let ((method-name (symbol-name (car method)))) | |
2372 (if (and (memq 'address (assoc method-name gnus-valid-select-methods)) | |
2373 (not (assq (intern (concat method-name "-address")) method)) | |
2374 (memq 'physical-address (assq (car method) | |
2375 gnus-valid-select-methods))) | |
2376 (append method (list (list (intern (concat method-name "-address")) | |
2377 (nth 1 method)))) | |
2378 method))) | |
2379 | |
2380 (defsubst gnus-server-get-method (group method) | |
2381 ;; Input either a server name, and extended server name, or a | |
2382 ;; select method, and return a select method. | |
2383 (cond ((stringp method) | |
2384 (gnus-server-to-method method)) | |
2385 ((equal method gnus-select-method) | |
2386 gnus-select-method) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2387 ((and (stringp (car method)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2388 group) |
17493 | 2389 (gnus-server-extend-method group method)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2390 ((and method |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2391 (not group) |
17493 | 2392 (equal (cadr method) "")) |
2393 method) | |
2394 (t | |
2395 (gnus-server-add-address method)))) | |
2396 | |
2397 (defun gnus-server-to-method (server) | |
2398 "Map virtual server names to select methods." | |
2399 (or | |
2400 ;; Is this a method, perhaps? | |
2401 (and server (listp server) server) | |
2402 ;; Perhaps this is the native server? | |
2403 (and (equal server "native") gnus-select-method) | |
2404 ;; It should be in the server alist. | |
2405 (cdr (assoc server gnus-server-alist)) | |
2406 ;; It could be in the predefined server alist. | |
2407 (cdr (assoc server gnus-predefined-server-alist)) | |
2408 ;; If not, we look through all the opened server | |
2409 ;; to see whether we can find it there. | |
2410 (let ((opened gnus-opened-servers)) | |
2411 (while (and opened | |
2412 (not (equal server (format "%s:%s" (caaar opened) | |
2413 (cadaar opened))))) | |
2414 (pop opened)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2415 (caar opened)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2416 ;; It could be a named method, search all servers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2417 (let ((servers gnus-secondary-select-methods)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2418 (while (and servers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2419 (not (equal server (format "%s:%s" (caar servers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2420 (cadar servers))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2421 (pop servers)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2422 (car servers)))) |
17493 | 2423 |
2424 (defmacro gnus-method-equal (ss1 ss2) | |
2425 "Say whether two servers are equal." | |
2426 `(let ((s1 ,ss1) | |
2427 (s2 ,ss2)) | |
2428 (or (equal s1 s2) | |
2429 (and (= (length s1) (length s2)) | |
2430 (progn | |
2431 (while (and s1 (member (car s1) s2)) | |
2432 (setq s1 (cdr s1))) | |
2433 (null s1)))))) | |
2434 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2435 (defun gnus-methods-equal-p (m1 m2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2436 (let ((m1 (or m1 gnus-select-method)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2437 (m2 (or m2 gnus-select-method))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2438 (or (equal m1 m2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2439 (and (eq (car m1) (car m2)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2440 (or (not (memq 'address (assoc (symbol-name (car m1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2441 gnus-valid-select-methods))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2442 (equal (nth 1 m1) (nth 1 m2))))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2443 |
17493 | 2444 (defun gnus-server-equal (m1 m2) |
2445 "Say whether two methods are equal." | |
2446 (let ((m1 (cond ((null m1) gnus-select-method) | |
2447 ((stringp m1) (gnus-server-to-method m1)) | |
2448 (t m1))) | |
2449 (m2 (cond ((null m2) gnus-select-method) | |
2450 ((stringp m2) (gnus-server-to-method m2)) | |
2451 (t m2)))) | |
2452 (gnus-method-equal m1 m2))) | |
2453 | |
2454 (defun gnus-servers-using-backend (backend) | |
2455 "Return a list of known servers using BACKEND." | |
2456 (let ((opened gnus-opened-servers) | |
2457 out) | |
2458 (while opened | |
2459 (when (eq backend (caaar opened)) | |
2460 (push (caar opened) out)) | |
2461 (pop opened)) | |
2462 out)) | |
2463 | |
2464 (defun gnus-archive-server-wanted-p () | |
2465 "Say whether the user wants to use the archive server." | |
2466 (cond | |
2467 ((or (not gnus-message-archive-method) | |
2468 (not gnus-message-archive-group)) | |
2469 nil) | |
2470 ((and gnus-message-archive-method gnus-message-archive-group) | |
2471 t) | |
2472 (t | |
2473 (let ((active (cadr (assq 'nnfolder-active-file | |
2474 gnus-message-archive-method)))) | |
2475 (and active | |
2476 (file-exists-p active)))))) | |
2477 | |
2478 (defun gnus-group-prefixed-name (group method) | |
2479 "Return the whole name from GROUP and METHOD." | |
2480 (and (stringp method) (setq method (gnus-server-to-method method))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2481 (if (or (not method) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2482 (gnus-server-equal method "native")) |
17493 | 2483 group |
2484 (concat (format "%s" (car method)) | |
2485 (when (and | |
2486 (or (assoc (format "%s" (car method)) | |
2487 (gnus-methods-using 'address)) | |
2488 (gnus-server-equal method gnus-message-archive-method)) | |
2489 (nth 1 method) | |
2490 (not (string= (nth 1 method) ""))) | |
2491 (concat "+" (nth 1 method))) | |
2492 ":" group))) | |
2493 | |
2494 (defun gnus-group-real-prefix (group) | |
2495 "Return the prefix of the current group name." | |
2496 (if (string-match "^[^:]+:" group) | |
2497 (substring group 0 (match-end 0)) | |
2498 "")) | |
2499 | |
2500 (defun gnus-group-method (group) | |
2501 "Return the server or method used for selecting GROUP. | |
2502 You should probably use `gnus-find-method-for-group' instead." | |
2503 (let ((prefix (gnus-group-real-prefix group))) | |
2504 (if (equal prefix "") | |
2505 gnus-select-method | |
2506 (let ((servers gnus-opened-servers) | |
2507 (server "") | |
2508 backend possible found) | |
2509 (if (string-match "^[^\\+]+\\+" prefix) | |
2510 (setq backend (intern (substring prefix 0 (1- (match-end 0)))) | |
2511 server (substring prefix (match-end 0) (1- (length prefix)))) | |
2512 (setq backend (intern (substring prefix 0 (1- (length prefix)))))) | |
2513 (while servers | |
2514 (when (eq (caaar servers) backend) | |
2515 (setq possible (caar servers)) | |
2516 (when (equal (cadaar servers) server) | |
2517 (setq found (caar servers)))) | |
2518 (pop servers)) | |
2519 (or (car (rassoc found gnus-server-alist)) | |
2520 found | |
2521 (car (rassoc possible gnus-server-alist)) | |
2522 possible | |
2523 (list backend server)))))) | |
2524 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2525 (defsubst gnus-native-method-p (method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2526 "Return whether METHOD is the native select method." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2527 (gnus-method-equal method gnus-select-method)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2528 |
17493 | 2529 (defsubst gnus-secondary-method-p (method) |
2530 "Return whether METHOD is a secondary select method." | |
2531 (let ((methods gnus-secondary-select-methods) | |
2532 (gmethod (gnus-server-get-method nil method))) | |
2533 (while (and methods | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2534 (not (gnus-method-equal |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2535 (gnus-server-get-method nil (car methods)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2536 gmethod))) |
17493 | 2537 (setq methods (cdr methods))) |
2538 methods)) | |
2539 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2540 (defun gnus-method-simplify (method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2541 "Return the shortest uniquely identifying string or method for METHOD." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2542 (cond ((stringp method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2543 method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2544 ((gnus-native-method-p method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2545 nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2546 ((gnus-secondary-method-p method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2547 (format "%s:%s" (nth 0 method) (nth 1 method))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2548 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2549 method))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2550 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2551 (defun gnus-groups-from-server (server) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2552 "Return a list of all groups that are fetched from SERVER." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2553 (let ((alist (cdr gnus-newsrc-alist)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2554 info groups) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2555 (while (setq info (pop alist)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2556 (when (gnus-server-equal (gnus-info-method info) server) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2557 (push (gnus-info-group info) groups))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2558 (sort groups 'string<))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2559 |
17493 | 2560 (defun gnus-group-foreign-p (group) |
2561 "Say whether a group is foreign or not." | |
2562 (and (not (gnus-group-native-p group)) | |
2563 (not (gnus-group-secondary-p group)))) | |
2564 | |
2565 (defun gnus-group-native-p (group) | |
2566 "Say whether the group is native or not." | |
2567 (not (string-match ":" group))) | |
2568 | |
2569 (defun gnus-group-secondary-p (group) | |
2570 "Say whether the group is secondary or not." | |
2571 (gnus-secondary-method-p (gnus-find-method-for-group group))) | |
2572 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2573 (defun gnus-group-find-parameter (group &optional symbol allow-list) |
17493 | 2574 "Return the group parameters for GROUP. |
2575 If SYMBOL, return the value of that symbol in the group parameters." | |
2576 (save-excursion | |
2577 (set-buffer gnus-group-buffer) | |
2578 (let ((parameters (funcall gnus-group-get-parameter-function group))) | |
2579 (if symbol | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2580 (gnus-group-parameter-value parameters symbol allow-list) |
17493 | 2581 parameters)))) |
2582 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2583 (defun gnus-group-get-parameter (group &optional symbol allow-list) |
17493 | 2584 "Return the group parameters for GROUP. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2585 If SYMBOL, return the value of that symbol in the group parameters. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2586 Most functions should use `gnus-group-find-parameter', which |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2587 also examines the topic parameters." |
17493 | 2588 (let ((params (gnus-info-params (gnus-get-info group)))) |
2589 (if symbol | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2590 (gnus-group-parameter-value params symbol allow-list) |
17493 | 2591 params))) |
2592 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2593 (defun gnus-group-parameter-value (params symbol &optional allow-list) |
17493 | 2594 "Return the value of SYMBOL in group PARAMS." |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2595 ;; We only wish to return group parameters (dotted lists) and |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2596 ;; not local variables, which may have the same names. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2597 ;; But first we handle single elements... |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2598 (or (car (memq symbol params)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2599 ;; Handle alist. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2600 (let (elem) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2601 (catch 'found |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2602 (while (setq elem (pop params)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2603 (when (and (consp elem) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2604 (eq (car elem) symbol) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2605 (or allow-list |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2606 (atom (cdr elem)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2607 (throw 'found (cdr elem)))))))) |
17493 | 2608 |
2609 (defun gnus-group-add-parameter (group param) | |
2610 "Add parameter PARAM to GROUP." | |
2611 (let ((info (gnus-get-info group))) | |
2612 (when info | |
2613 (gnus-group-remove-parameter group (if (consp param) (car param) param)) | |
2614 ;; Cons the new param to the old one and update. | |
2615 (gnus-group-set-info (cons param (gnus-info-params info)) | |
2616 group 'params)))) | |
2617 | |
2618 (defun gnus-group-set-parameter (group name value) | |
2619 "Set parameter NAME to VALUE in GROUP." | |
2620 (let ((info (gnus-get-info group))) | |
2621 (when info | |
2622 (gnus-group-remove-parameter group name) | |
2623 (let ((old-params (gnus-info-params info)) | |
2624 (new-params (list (cons name value)))) | |
2625 (while old-params | |
2626 (when (or (not (listp (car old-params))) | |
2627 (not (eq (caar old-params) name))) | |
2628 (setq new-params (append new-params (list (car old-params))))) | |
2629 (setq old-params (cdr old-params))) | |
2630 (gnus-group-set-info new-params group 'params))))) | |
2631 | |
2632 (defun gnus-group-remove-parameter (group name) | |
2633 "Remove parameter NAME from GROUP." | |
2634 (let ((info (gnus-get-info group))) | |
2635 (when info | |
2636 (let ((params (gnus-info-params info))) | |
2637 (when params | |
2638 (setq params (delq name params)) | |
2639 (while (assq name params) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2640 (gnus-pull name params)) |
17493 | 2641 (gnus-info-set-params info params)))))) |
2642 | |
2643 (defun gnus-group-add-score (group &optional score) | |
2644 "Add SCORE to the GROUP score. | |
2645 If SCORE is nil, add 1 to the score of GROUP." | |
2646 (let ((info (gnus-get-info group))) | |
2647 (when info | |
2648 (gnus-info-set-score info (+ (gnus-info-score info) (or score 1)))))) | |
2649 | |
2650 (defun gnus-short-group-name (group &optional levels) | |
2651 "Collapse GROUP name LEVELS. | |
2652 Select methods are stripped and any remote host name is stripped down to | |
2653 just the host name." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2654 (let* ((name "") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2655 (foreign "") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2656 (depth 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2657 (skip 1) |
17493 | 2658 (levels (or levels |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2659 gnus-group-uncollapsed-levels |
17493 | 2660 (progn |
2661 (while (string-match "\\." group skip) | |
2662 (setq skip (match-end 0) | |
2663 depth (+ depth 1))) | |
2664 depth)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2665 ;; Separate foreign select method from group name and collapse. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2666 ;; If method contains a server, collapse to non-domain server name, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2667 ;; otherwise collapse to select method. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2668 (let* ((colon (string-match ":" group)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2669 (server (and colon (substring group 0 colon))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2670 (plus (and server (string-match "+" server)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2671 (when server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2672 (if plus |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2673 (setq foreign (substring server (+ 1 plus) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2674 (string-match "\\." server)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2675 group (substring group (+ 1 colon))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2676 (setq foreign server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2677 group (substring group (+ 1 colon)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2678 (setq foreign (concat foreign ":"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2679 ;; Collapse group name leaving LEVELS uncollapsed elements |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2680 (let* ((slist (split-string group "/")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2681 (slen (length slist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2682 (dlist (split-string group "\\.")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2683 (dlen (length dlist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2684 glist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2685 glen |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2686 gsep |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2687 res) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2688 (if (> slen dlen) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2689 (setq glist slist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2690 glen slen |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2691 gsep "/") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2692 (setq glist dlist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2693 glen dlen |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2694 gsep ".")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2695 (setq levels (- glen levels)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2696 (dolist (g glist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2697 (push (if (>= (decf levels) 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2698 (if (zerop (length g)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2699 "" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2700 (substring g 0 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2701 g) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2702 res)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2703 (concat foreign (mapconcat 'identity (nreverse res) gsep)))))) |
17493 | 2704 |
2705 (defun gnus-narrow-to-body () | |
2706 "Narrow to the body of an article." | |
2707 (narrow-to-region | |
2708 (progn | |
2709 (goto-char (point-min)) | |
2710 (or (search-forward "\n\n" nil t) | |
2711 (point-max))) | |
2712 (point-max))) | |
2713 | |
2714 | |
2715 ;;; | |
2716 ;;; Kill file handling. | |
2717 ;;; | |
2718 | |
2719 (defun gnus-apply-kill-file () | |
2720 "Apply a kill file to the current newsgroup. | |
2721 Returns the number of articles marked as read." | |
2722 (if (or (file-exists-p (gnus-newsgroup-kill-file nil)) | |
2723 (file-exists-p (gnus-newsgroup-kill-file gnus-newsgroup-name))) | |
2724 (gnus-apply-kill-file-internal) | |
2725 0)) | |
2726 | |
2727 (defun gnus-kill-save-kill-buffer () | |
2728 (let ((file (gnus-newsgroup-kill-file gnus-newsgroup-name))) | |
2729 (when (get-file-buffer file) | |
2730 (save-excursion | |
2731 (set-buffer (get-file-buffer file)) | |
2732 (when (buffer-modified-p) | |
2733 (save-buffer)) | |
2734 (kill-buffer (current-buffer)))))) | |
2735 | |
2736 (defcustom gnus-kill-file-name "KILL" | |
2737 "Suffix of the kill files." | |
2738 :group 'gnus-score-kill | |
2739 :group 'gnus-score-files | |
2740 :type 'string) | |
2741 | |
2742 (defun gnus-newsgroup-kill-file (newsgroup) | |
2743 "Return the name of a kill file name for NEWSGROUP. | |
2744 If NEWSGROUP is nil, return the global kill file name instead." | |
2745 (cond | |
2746 ;; The global KILL file is placed at top of the directory. | |
2747 ((or (null newsgroup) | |
2748 (string-equal newsgroup "")) | |
2749 (expand-file-name gnus-kill-file-name | |
2750 gnus-kill-files-directory)) | |
2751 ;; Append ".KILL" to newsgroup name. | |
2752 ((gnus-use-long-file-name 'not-kill) | |
2753 (expand-file-name (concat (gnus-newsgroup-savable-name newsgroup) | |
2754 "." gnus-kill-file-name) | |
2755 gnus-kill-files-directory)) | |
2756 ;; Place "KILL" under the hierarchical directory. | |
2757 (t | |
2758 (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup) | |
2759 "/" gnus-kill-file-name) | |
2760 gnus-kill-files-directory)))) | |
2761 | |
2762 ;;; Server things. | |
2763 | |
2764 (defun gnus-member-of-valid (symbol group) | |
2765 "Find out if GROUP has SYMBOL as part of its \"valid\" spec." | |
2766 (memq symbol (assoc | |
2767 (symbol-name (car (gnus-find-method-for-group group))) | |
2768 gnus-valid-select-methods))) | |
2769 | |
2770 (defun gnus-method-option-p (method option) | |
2771 "Return non-nil if select METHOD has OPTION as a parameter." | |
2772 (when (stringp method) | |
2773 (setq method (gnus-server-to-method method))) | |
2774 (memq option (assoc (format "%s" (car method)) | |
2775 gnus-valid-select-methods))) | |
2776 | |
2777 (defun gnus-similar-server-opened (method) | |
2778 (let ((opened gnus-opened-servers)) | |
2779 (while (and method opened) | |
2780 (when (and (equal (cadr method) (cadaar opened)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2781 (equal (car method) (caaar opened)) |
17493 | 2782 (not (equal method (caar opened)))) |
2783 (setq method nil)) | |
2784 (pop opened)) | |
2785 (not method))) | |
2786 | |
2787 (defun gnus-server-extend-method (group method) | |
2788 ;; This function "extends" a virtual server. If the server is | |
2789 ;; "hello", and the select method is ("hello" (my-var "something")) | |
2790 ;; in the group "alt.alt", this will result in a new virtual server | |
2791 ;; called "hello+alt.alt". | |
2792 (if (or (not (inline (gnus-similar-server-opened method))) | |
2793 (not (cddr method))) | |
2794 method | |
2795 `(,(car method) ,(concat (cadr method) "+" group) | |
2796 (,(intern (format "%s-address" (car method))) ,(cadr method)) | |
2797 ,@(cddr method)))) | |
2798 | |
2799 (defun gnus-server-status (method) | |
2800 "Return the status of METHOD." | |
2801 (nth 1 (assoc method gnus-opened-servers))) | |
2802 | |
2803 (defun gnus-group-name-to-method (group) | |
2804 "Guess a select method based on GROUP." | |
2805 (if (string-match ":" group) | |
2806 (let ((server (substring group 0 (match-beginning 0)))) | |
2807 (if (string-match "\\+" server) | |
2808 (list (intern (substring server 0 (match-beginning 0))) | |
2809 (substring server (match-end 0))) | |
2810 (list (intern server) ""))) | |
2811 gnus-select-method)) | |
2812 | |
2813 (defun gnus-find-method-for-group (group &optional info) | |
2814 "Find the select method that GROUP uses." | |
2815 (or gnus-override-method | |
2816 (and (not group) | |
2817 gnus-select-method) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2818 (and (not (gnus-group-entry group));; a new group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2819 (gnus-group-name-to-method group)) |
17493 | 2820 (let ((info (or info (gnus-get-info group))) |
2821 method) | |
2822 (if (or (not info) | |
2823 (not (setq method (gnus-info-method info))) | |
2824 (equal method "native")) | |
2825 gnus-select-method | |
2826 (setq method | |
2827 (cond ((stringp method) | |
2828 (inline (gnus-server-to-method method))) | |
2829 ((stringp (cadr method)) | |
2830 (inline (gnus-server-extend-method group method))) | |
2831 (t | |
2832 method))) | |
2833 (cond ((equal (cadr method) "") | |
2834 method) | |
2835 ((null (cadr method)) | |
2836 (list (car method) "")) | |
2837 (t | |
2838 (gnus-server-add-address method))))))) | |
2839 | |
2840 (defun gnus-methods-using (feature) | |
2841 "Find all methods that have FEATURE." | |
2842 (let ((valids gnus-valid-select-methods) | |
2843 outs) | |
2844 (while valids | |
2845 (when (memq feature (car valids)) | |
2846 (push (car valids) outs)) | |
2847 (setq valids (cdr valids))) | |
2848 outs)) | |
2849 | |
2850 (defun gnus-read-group (prompt &optional default) | |
2851 "Prompt the user for a group name. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2852 Disallow invalid group names." |
17493 | 2853 (let ((prefix "") |
2854 group) | |
2855 (while (not group) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2856 (when (string-match |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2857 gnus-invalid-group-regexp |
17493 | 2858 (setq group (read-string (concat prefix prompt) |
2859 (cons (or default "") 0) | |
2860 'gnus-group-history))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2861 (setq prefix (format "Invalid group name: \"%s\". " group) |
17493 | 2862 group nil))) |
2863 group)) | |
2864 | |
2865 (defun gnus-read-method (prompt) | |
2866 "Prompt the user for a method. | |
2867 Allow completion over sensible values." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2868 (let* ((servers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2869 (append gnus-valid-select-methods |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2870 (mapcar (lambda (i) (list (format "%s:%s" (caar i) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2871 (cadar i)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2872 gnus-opened-servers) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2873 gnus-predefined-server-alist |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2874 gnus-server-alist)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2875 (method |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2876 (completing-read |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2877 prompt servers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2878 nil t nil 'gnus-method-history))) |
17493 | 2879 (cond |
2880 ((equal method "") | |
2881 (setq method gnus-select-method)) | |
2882 ((assoc method gnus-valid-select-methods) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2883 (let ((address (if (memq 'prompt-address |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2884 (assoc method gnus-valid-select-methods)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2885 (read-string "Address: ") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2886 ""))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2887 (or (let ((opened gnus-opened-servers)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2888 (while (and opened |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2889 (not (equal (format "%s:%s" method address) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2890 (format "%s:%s" (caaar opened) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2891 (cadaar opened))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2892 (pop opened)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2893 (caar opened)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2894 (list (intern method) address)))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2895 ((assoc method servers) |
17493 | 2896 method) |
2897 (t | |
2898 (list (intern method) ""))))) | |
2899 | |
2900 ;;; User-level commands. | |
2901 | |
2902 ;;;###autoload | |
2903 (defun gnus-slave-no-server (&optional arg) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23364
diff
changeset
|
2904 "Read network news as a slave, without connecting to local server." |
17493 | 2905 (interactive "P") |
2906 (gnus-no-server arg t)) | |
2907 | |
2908 ;;;###autoload | |
2909 (defun gnus-no-server (&optional arg slave) | |
2910 "Read network news. | |
2911 If ARG is a positive number, Gnus will use that as the | |
2912 startup level. If ARG is nil, Gnus will be started at level 2. | |
2913 If ARG is non-nil and not a positive number, Gnus will | |
2914 prompt the user for the name of an NNTP server to use. | |
2915 As opposed to `gnus', this command will not connect to the local server." | |
2916 (interactive "P") | |
2917 (gnus-no-server-1 arg slave)) | |
2918 | |
2919 ;;;###autoload | |
2920 (defun gnus-slave (&optional arg) | |
2921 "Read news as a slave." | |
2922 (interactive "P") | |
2923 (gnus arg nil 'slave)) | |
2924 | |
2925 ;;;###autoload | |
2926 (defun gnus-other-frame (&optional arg) | |
2927 "Pop up a frame to read news." | |
2928 (interactive "P") | |
2929 (let ((window (get-buffer-window gnus-group-buffer))) | |
2930 (cond (window | |
2931 (select-frame (window-frame window))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2932 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2933 (select-frame (make-frame))))) |
17493 | 2934 (gnus arg)) |
2935 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2936 ;;(setq thing ? ; this is a comment |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2937 ;; more 'yes) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2938 |
17493 | 2939 ;;;###autoload |
2940 (defun gnus (&optional arg dont-connect slave) | |
2941 "Read network news. | |
2942 If ARG is non-nil and a positive number, Gnus will use that as the | |
2943 startup level. If ARG is non-nil and not a positive number, Gnus will | |
2944 prompt the user for the name of an NNTP server to use." | |
2945 (interactive "P") | |
2946 (gnus-1 arg dont-connect slave)) | |
2947 | |
2948 ;; Allow redefinition of Gnus functions. | |
2949 | |
2950 (gnus-ems-redefine) | |
2951 | |
2952 (provide 'gnus) | |
2953 | |
2954 ;;; gnus.el ends here |