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