Convert font parse testsuite to an ERT test.
[bpt/emacs.git] / lisp / gnus / gnus-sum.el
CommitLineData
eec82323 1;;; gnus-sum.el --- summary mode commands for Gnus
e84b4b86 2
73b0cd50 3;; Copyright (C) 1996-2011 Free Software Foundation, Inc.
eec82323 4
6748645f 5;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
eec82323
LMI
6;; Keywords: news
7
8;; This file is part of GNU Emacs.
9
5e809f55 10;; GNU Emacs is free software: you can redistribute it and/or modify
eec82323 11;; it under the terms of the GNU General Public License as published by
5e809f55
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
eec82323
LMI
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
01ccbb85 17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
eec82323
LMI
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
5e809f55 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
eec82323
LMI
22
23;;; Commentary:
24
25;;; Code:
26
f0b7f5a8 27;; For Emacs <22.2 and XEmacs.
d09ae6ca
GM
28(eval-and-compile
29 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
23f87bed 30(eval-when-compile
9efa445f 31 (require 'cl))
d029b5d2
KY
32(eval-when-compile
33 (when (featurep 'xemacs)
34 (require 'easy-mmode))) ; for `define-minor-mode'
9efa445f
DN
35
36(defvar tool-bar-mode)
37(defvar gnus-tmp-header)
5ab7173c 38
eec82323
LMI
39(require 'gnus)
40(require 'gnus-group)
41(require 'gnus-spec)
42(require 'gnus-range)
43(require 'gnus-int)
44(require 'gnus-undo)
6748645f 45(require 'gnus-util)
18c06a99 46(require 'gmm-utils)
16409b0b 47(require 'mm-decode)
08c9a385 48(require 'nnoo)
23f87bed 49
6748645f 50(autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
d4dfaa19 51(autoload 'gnus-cache-write-active "gnus-cache")
23f87bed
MB
52(autoload 'gnus-mailing-list-insinuate "gnus-ml" nil t)
53(autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil t)
531e5812 54(autoload 'gnus-pick-line-number "gnus-salt" nil t)
08c9a385 55(autoload 'mm-uu-dissect "mm-uu")
23f87bed
MB
56(autoload 'gnus-article-outlook-deuglify-article "deuglify"
57 "Deuglify broken Outlook (Express) articles and redisplay."
58 t)
59(autoload 'gnus-article-outlook-unwrap-lines "deuglify" nil t)
60(autoload 'gnus-article-outlook-repair-attribution "deuglify" nil t)
61(autoload 'gnus-article-outlook-rearrange-citation "deuglify" nil t)
1b811c90
AC
62(autoload 'nnir-article-rsv "nnir" nil nil 'macro)
63(autoload 'nnir-article-group "nnir" nil nil 'macro)
eec82323
LMI
64
65(defcustom gnus-kill-summary-on-exit t
66 "*If non-nil, kill the summary buffer when you exit from it.
67If nil, the summary will become a \"*Dead Summary*\" buffer, and
68it will be killed sometime later."
69 :group 'gnus-summary-exit
70 :type 'boolean)
71
01c52d31
MB
72(defcustom gnus-summary-next-group-on-exit t
73 "If non-nil, go to the next unread newsgroup on summary exit.
74See `gnus-group-goto-unread'."
75 :link '(custom-manual "(gnus)Group Maneuvering")
76 :group 'gnus-summary-exit
330f707b 77 :version "23.1" ;; No Gnus
01c52d31
MB
78 :type 'boolean)
79
b1992461
KY
80(defcustom gnus-summary-stop-at-end-of-message nil
81 "If non-nil, don't select the next message when using `SPC'."
82 :link '(custom-manual "(gnus)Group Maneuvering")
83 :group 'gnus-summary-maneuvering
1a10d421 84 :version "24.1"
b1992461
KY
85 :type 'boolean)
86
eec82323
LMI
87(defcustom gnus-fetch-old-headers nil
88 "*Non-nil means that Gnus will try to build threads by grabbing old headers.
01c52d31
MB
89If an unread article in the group refers to an older, already
90read (or just marked as read) article, the old article will not
91normally be displayed in the Summary buffer. If this variable is
92t, Gnus will attempt to grab the headers to the old articles, and
93thereby build complete threads. If it has the value `some', all
94old headers will be fetched but only enough headers to connect
95otherwise loose threads will be displayed. This variable can
96also be a number. In that case, no more than that number of old
97headers will be fetched. If it has the value `invisible', all
6748645f 98old headers will be fetched, but none will be displayed.
eec82323 99
01c52d31
MB
100The server has to support NOV for any of this to work.
101
102This feature can seriously impact performance it ignores all
f394fa25
MB
103locally cached header entries. Setting it to t for groups for a
104server that doesn't expire articles (such as news.gmane.org),
105leads to very slow summary generation."
eec82323
LMI
106 :group 'gnus-thread
107 :type '(choice (const :tag "off" nil)
1232b9cb 108 (const :tag "on" t)
eec82323 109 (const some)
1232b9cb 110 (const invisible)
eec82323
LMI
111 number
112 (sexp :menu-tag "other" t)))
113
01c52d31 114(defcustom gnus-refer-thread-limit 500
6748645f
LMI
115 "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
116If t, fetch all the available old headers."
117 :group 'gnus-thread
118 :type '(choice number
119 (sexp :menu-tag "other" t)))
120
eec82323
LMI
121(defcustom gnus-summary-make-false-root 'adopt
122 "*nil means that Gnus won't gather loose threads.
123If the root of a thread has expired or been read in a previous
124session, the information necessary to build a complete thread has been
125lost. Instead of having many small sub-threads from this original thread
126scattered all over the summary buffer, Gnus can gather them.
127
128If non-nil, Gnus will try to gather all loose sub-threads from an
129original thread into one large thread.
130
131If this variable is non-nil, it should be one of `none', `adopt',
132`dummy' or `empty'.
133
134If this variable is `none', Gnus will not make a false root, but just
135present the sub-threads after another.
136If this variable is `dummy', Gnus will create a dummy root that will
137have all the sub-threads as children.
138If this variable is `adopt', Gnus will make one of the \"children\"
139the parent and mark all the step-children as such.
140If this variable is `empty', the \"children\" are printed with empty
01ccbb85 141subject fields. (Or rather, they will be printed with a string
eec82323
LMI
142given by the `gnus-summary-same-subject' variable.)"
143 :group 'gnus-thread
144 :type '(choice (const :tag "off" nil)
145 (const none)
146 (const dummy)
147 (const adopt)
148 (const empty)))
149
23f87bed
MB
150(defcustom gnus-summary-make-false-root-always nil
151 "Always make a false dummy root."
bf247b6e 152 :version "22.1"
23f87bed
MB
153 :group 'gnus-thread
154 :type 'boolean)
155
eec82323
LMI
156(defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
157 "*A regexp to match subjects to be excluded from loose thread gathering.
158As loose thread gathering is done on subjects only, that means that
159there can be many false gatherings performed. By rooting out certain
160common subjects, gathering might become saner."
161 :group 'gnus-thread
162 :type 'regexp)
163
164(defcustom gnus-summary-gather-subject-limit nil
165 "*Maximum length of subject comparisons when gathering loose threads.
166Use nil to compare full subjects. Setting this variable to a low
167number will help gather threads that have been corrupted by
168newsreaders chopping off subject lines, but it might also mean that
169unrelated articles that have subject that happen to begin with the
170same few characters will be incorrectly gathered.
171
172If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
173comparing subjects."
174 :group 'gnus-thread
175 :type '(choice (const :tag "off" nil)
176 (const fuzzy)
177 (sexp :menu-tag "on" t)))
178
6748645f
LMI
179(defcustom gnus-simplify-subject-functions nil
180 "List of functions taking a string argument that simplify subjects.
181The functions are applied recursively.
182
23f87bed
MB
183Useful functions to put in this list include:
184`gnus-simplify-subject-re', `gnus-simplify-subject-fuzzy',
185`gnus-simplify-whitespace', and `gnus-simplify-all-whitespace'."
6748645f
LMI
186 :group 'gnus-thread
187 :type '(repeat function))
188
eec82323 189(defcustom gnus-simplify-ignored-prefixes nil
23f87bed 190 "*Remove matches for this regexp from subject lines when simplifying fuzzily."
eec82323
LMI
191 :group 'gnus-thread
192 :type '(choice (const :tag "off" nil)
193 regexp))
194
195(defcustom gnus-build-sparse-threads nil
196 "*If non-nil, fill in the gaps in threads.
197If `some', only fill in the gaps that are needed to tie loose threads
198together. If `more', fill in all leaf nodes that Gnus can find. If
199non-nil and non-`some', fill in all gaps that Gnus manages to guess."
200 :group 'gnus-thread
201 :type '(choice (const :tag "off" nil)
202 (const some)
203 (const more)
204 (sexp :menu-tag "all" t)))
205
206(defcustom gnus-summary-thread-gathering-function
207 'gnus-gather-threads-by-subject
6748645f 208 "*Function used for gathering loose threads.
eec82323
LMI
209There are two pre-defined functions: `gnus-gather-threads-by-subject',
210which only takes Subjects into consideration; and
211`gnus-gather-threads-by-references', which compared the References
212headers of the articles to find matches."
213 :group 'gnus-thread
22115a9e
RS
214 :type '(radio (function-item gnus-gather-threads-by-subject)
215 (function-item gnus-gather-threads-by-references)
216 (function :tag "other")))
eec82323 217
eec82323
LMI
218(defcustom gnus-summary-same-subject ""
219 "*String indicating that the current article has the same subject as the previous.
220This variable will only be used if the value of
221`gnus-summary-make-false-root' is `empty'."
222 :group 'gnus-summary-format
223 :type 'string)
224
1d297c49 225(defcustom gnus-summary-goto-unread nil
16409b0b
GM
226 "*If t, many commands will go to the next unread article.
227This applies to marking commands as well as other commands that
228\"naturally\" select the next article, like, for instance, `SPC' at
229the end of an article.
230
231If nil, the marking commands do NOT go to the next unread article
2642ac8f 232\(they go to the next article instead). If `never', commands that
16409b0b
GM
233usually go to the next unread article, will go to the next article,
234whether it is read or not."
1d297c49 235 :version "24.1"
eec82323
LMI
236 :group 'gnus-summary-marks
237 :link '(custom-manual "(gnus)Setting Marks")
238 :type '(choice (const :tag "off" nil)
239 (const never)
240 (sexp :menu-tag "on" t)))
241
242(defcustom gnus-summary-default-score 0
243 "*Default article score level.
244All scores generated by the score files will be added to this score.
245If this variable is nil, scoring will be disabled."
246 :group 'gnus-score-default
247 :type '(choice (const :tag "disable")
248 integer))
249
23f87bed
MB
250(defcustom gnus-summary-default-high-score 0
251 "*Default threshold for a high scored article.
252An article will be highlighted as high scored if its score is greater
253than this score."
bf247b6e 254 :version "22.1"
23f87bed
MB
255 :group 'gnus-score-default
256 :type 'integer)
257
258(defcustom gnus-summary-default-low-score 0
259 "*Default threshold for a low scored article.
260An article will be highlighted as low scored if its score is smaller
261than this score."
bf247b6e 262 :version "22.1"
23f87bed
MB
263 :group 'gnus-score-default
264 :type 'integer)
265
eec82323
LMI
266(defcustom gnus-summary-zcore-fuzz 0
267 "*Fuzziness factor for the zcore in the summary buffer.
268Articles with scores closer than this to `gnus-summary-default-score'
269will not be marked."
270 :group 'gnus-summary-format
271 :type 'integer)
272
273(defcustom gnus-simplify-subject-fuzzy-regexp nil
274 "*Strings to be removed when doing fuzzy matches.
275This can either be a regular expression or list of regular expressions
276that will be removed from subject strings if fuzzy subject
277simplification is selected."
278 :group 'gnus-thread
279 :type '(repeat regexp))
280
281(defcustom gnus-show-threads t
282 "*If non-nil, display threads in summary mode."
283 :group 'gnus-thread
284 :type 'boolean)
285
286(defcustom gnus-thread-hide-subtree nil
287 "*If non-nil, hide all threads initially.
23f87bed 288This can be a predicate specifier which says which threads to hide.
eec82323 289If threads are hidden, you have to run the command
4a2358e9 290`gnus-summary-show-thread' by hand or select an article."
eec82323 291 :group 'gnus-thread
23f87bed
MB
292 :type '(radio (sexp :format "Non-nil\n"
293 :match (lambda (widget value)
294 (not (or (consp value) (functionp value))))
295 :value t)
296 (const nil)
ad136a7c 297 (sexp :tag "Predicate specifier")))
eec82323
LMI
298
299(defcustom gnus-thread-hide-killed t
300 "*If non-nil, hide killed threads automatically."
301 :group 'gnus-thread
302 :type 'boolean)
303
6748645f
LMI
304(defcustom gnus-thread-ignore-subject t
305 "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
306If nil, articles that have different subjects from their parents will
307start separate threads."
eec82323
LMI
308 :group 'gnus-thread
309 :type 'boolean)
310
311(defcustom gnus-thread-operation-ignore-subject t
312 "*If non-nil, subjects will be ignored when doing thread commands.
313This affects commands like `gnus-summary-kill-thread' and
314`gnus-summary-lower-thread'.
315
316If this variable is nil, articles in the same thread with different
317subjects will not be included in the operation in question. If this
318variable is `fuzzy', only articles that have subjects that are fuzzily
319equal will be included."
320 :group 'gnus-thread
321 :type '(choice (const :tag "off" nil)
322 (const fuzzy)
323 (sexp :tag "on" t)))
324
325(defcustom gnus-thread-indent-level 4
326 "*Number that says how much each sub-thread should be indented."
327 :group 'gnus-thread
328 :type 'integer)
329
330(defcustom gnus-auto-extend-newsgroup t
331 "*If non-nil, extend newsgroup forward and backward when requested."
332 :group 'gnus-summary-choose
333 :type 'boolean)
334
335(defcustom gnus-auto-select-first t
651408cb
MB
336 "If non-nil, select an article on group entry.
337An article is selected automatically when entering a group
338e.g. with \\<gnus-group-mode-map>\\[gnus-group-read-group], or via `gnus-summary-next-page' or
339`gnus-summary-catchup-and-goto-next-group'.
340
341Which article is selected is controlled by the variable
342`gnus-auto-select-subject'.
23f87bed
MB
343
344If you want to prevent automatic selection of articles in some
345newsgroups, set the variable to nil in `gnus-select-group-hook'."
651408cb
MB
346 ;; Commands include...
347 ;; \\<gnus-group-mode-map>\\[gnus-group-read-group]
348 ;; \\<gnus-summary-mode-map>\\[gnus-summary-next-page]
349 ;; \\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]
eec82323
LMI
350 :group 'gnus-group-select
351 :type '(choice (const :tag "none" nil)
23f87bed
MB
352 (sexp :menu-tag "first" t)))
353
a1347097 354(defcustom gnus-auto-select-subject 'unseen-or-unread
23f87bed
MB
355 "*Says what subject to place under point when entering a group.
356
357This variable can either be the symbols `first' (place point on the
358first subject), `unread' (place point on the subject line of the first
359unread article), `best' (place point on the subject line of the
360higest-scored article), `unseen' (place point on the subject line of
99b5aab7 361the first unseen article), `unseen-or-unread' (place point on the subject
647559c2 362line of the first unseen article or, if all articles have been seen, on the
23f87bed
MB
363subject line of the first unread article), or a function to be called to
364place point on some subject line."
a1347097 365 :version "24.1"
23f87bed
MB
366 :group 'gnus-group-select
367 :type '(choice (const best)
368 (const unread)
369 (const first)
370 (const unseen)
371 (const unseen-or-unread)))
eec82323
LMI
372
373(defcustom gnus-auto-select-next t
374 "*If non-nil, offer to go to the next group from the end of the previous.
375If the value is t and the next newsgroup is empty, Gnus will exit
23f87bed
MB
376summary mode and go back to group mode. If the value is neither nil
377nor t, Gnus will select the following unread newsgroup. In
eec82323
LMI
378particular, if the value is the symbol `quietly', the next unread
379newsgroup will be selected without any confirmation, and if it is
380`almost-quietly', the next group will be selected without any
381confirmation if you are located on the last article in the group.
23f87bed 382Finally, if this variable is `slightly-quietly', the `\\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]' command
eec82323
LMI
383will go to the next group without confirmation."
384 :group 'gnus-summary-maneuvering
385 :type '(choice (const :tag "off" nil)
386 (const quietly)
387 (const almost-quietly)
388 (const slightly-quietly)
389 (sexp :menu-tag "on" t)))
390
391(defcustom gnus-auto-select-same nil
6748645f
LMI
392 "*If non-nil, select the next article with the same subject.
393If there are no more articles with the same subject, go to
394the first unread article."
eec82323
LMI
395 :group 'gnus-summary-maneuvering
396 :type 'boolean)
397
01c52d31
MB
398(defcustom gnus-auto-select-on-ephemeral-exit 'next-noselect
399 "What article should be selected after exiting an ephemeral group.
400Valid values include:
401
402`next'
403 Select the next article.
404`next-unread'
405 Select the next unread article.
406`next-noselect'
407 Move the cursor to the next article. This is the default.
408`next-unread-noselect'
409 Move the cursor to the next unread article.
410
411If it has any other value or there is no next (unread) article, the
412article selected before entering to the ephemeral group will appear."
330f707b 413 :version "23.1" ;; No Gnus
01c52d31
MB
414 :group 'gnus-summary-maneuvering
415 :type '(choice :format "%{%t%}:\n %[Value Menu%] %v"
416 (const next) (const next-unread)
417 (const next-noselect) (const next-unread-noselect)
418 (sexp :tag "other" :value nil)))
419
23f87bed
MB
420(defcustom gnus-auto-goto-ignores 'unfetched
421 "*Says how to handle unfetched articles when maneuvering.
422
423This variable can either be the symbols nil (maneuver to any
424article), `undownloaded' (maneuvering while unplugged ignores articles
425that have not been fetched), `always-undownloaded' (maneuvering always
426ignores articles that have not been fetched), `unfetched' (maneuvering
427ignores articles whose headers have not been fetched).
428
429NOTE: The list of unfetched articles will always be nil when plugged
430and, when unplugged, a subset of the undownloaded article list."
bf247b6e 431 :version "22.1"
23f87bed
MB
432 :group 'gnus-summary-maneuvering
433 :type '(choice (const :tag "None" nil)
434 (const :tag "Undownloaded when unplugged" undownloaded)
435 (const :tag "Undownloaded" always-undownloaded)
436 (const :tag "Unfetched" unfetched)))
437
eec82323
LMI
438(defcustom gnus-summary-check-current nil
439 "*If non-nil, consider the current article when moving.
440The \"unread\" movement commands will stay on the same line if the
441current article is unread."
442 :group 'gnus-summary-maneuvering
443 :type 'boolean)
444
01c52d31 445(defcustom gnus-auto-center-summary 2
eec82323
LMI
446 "*If non-nil, always center the current summary buffer.
447In particular, if `vertical' do only vertical recentering. If non-nil
448and non-`vertical', do both horizontal and vertical recentering."
449 :group 'gnus-summary-maneuvering
450 :type '(choice (const :tag "none" nil)
451 (const vertical)
16409b0b 452 (integer :tag "height")
eec82323
LMI
453 (sexp :menu-tag "both" t)))
454
2d04f304
G
455(defcustom gnus-auto-center-group t
456 "If non-nil, always center the group buffer."
457 :group 'gnus-summary-maneuvering
458 :type 'boolean)
23f87bed 459
eec82323
LMI
460(defcustom gnus-show-all-headers nil
461 "*If non-nil, don't hide any headers."
462 :group 'gnus-article-hiding
463 :group 'gnus-article-headers
464 :type 'boolean)
465
466(defcustom gnus-summary-ignore-duplicates nil
467 "*If non-nil, ignore articles with identical Message-ID headers."
468 :group 'gnus-summary
469 :type 'boolean)
6748645f 470
1d297c49 471(defcustom gnus-single-article-buffer nil
eec82323
LMI
472 "*If non-nil, display all articles in the same buffer.
473If nil, each group will get its own article buffer."
1d297c49 474 :version "24.1"
eec82323
LMI
475 :group 'gnus-article-various
476 :type 'boolean)
477
71e691a5
G
478(defcustom gnus-widen-article-window nil
479 "If non-nil, selecting the article buffer will display only the article buffer."
480 :version "24.1"
481 :group 'gnus-article-various
482 :type 'boolean)
483
eec82323
LMI
484(defcustom gnus-break-pages t
485 "*If non-nil, do page breaking on articles.
486The page delimiter is specified by the `gnus-page-delimiter'
487variable."
488 :group 'gnus-article-various
489 :type 'boolean)
490
eec82323
LMI
491(defcustom gnus-move-split-methods nil
492 "*Variable used to suggest where articles are to be moved to.
23f87bed
MB
493It uses the same syntax as the `gnus-split-methods' variable.
494However, whereas `gnus-split-methods' specifies file names as targets,
495this variable specifies group names."
eec82323 496 :group 'gnus-summary-mail
6748645f
LMI
497 :type '(repeat (choice (list :value (fun) function)
498 (cons :value ("" "") regexp (repeat string))
499 (sexp :value nil))))
eec82323 500
01c52d31
MB
501(defcustom gnus-move-group-prefix-function 'gnus-group-real-prefix
502 "Function used to compute default prefix for article move/copy/etc prompts.
503The function should take one argument, a group name, and return a
504string with the suggested prefix."
505 :group 'gnus-summary-mail
506 :type 'function)
507
e62e7654
MB
508;; FIXME: Although the custom type is `character' for the following variables,
509;; using multibyte characters (Latin-1, UTF-8) doesn't work. -- rs
510
23f87bed 511(defcustom gnus-unread-mark ? ;Whitespace
eec82323
LMI
512 "*Mark used for unread articles."
513 :group 'gnus-summary-marks
514 :type 'character)
515
516(defcustom gnus-ticked-mark ?!
517 "*Mark used for ticked articles."
518 :group 'gnus-summary-marks
519 :type 'character)
520
521(defcustom gnus-dormant-mark ??
522 "*Mark used for dormant articles."
523 :group 'gnus-summary-marks
524 :type 'character)
525
526(defcustom gnus-del-mark ?r
527 "*Mark used for del'd articles."
528 :group 'gnus-summary-marks
529 :type 'character)
530
531(defcustom gnus-read-mark ?R
532 "*Mark used for read articles."
533 :group 'gnus-summary-marks
534 :type 'character)
535
536(defcustom gnus-expirable-mark ?E
537 "*Mark used for expirable articles."
538 :group 'gnus-summary-marks
539 :type 'character)
540
541(defcustom gnus-killed-mark ?K
542 "*Mark used for killed articles."
543 :group 'gnus-summary-marks
544 :type 'character)
545
23f87bed
MB
546(defcustom gnus-spam-mark ?$
547 "*Mark used for spam articles."
bf247b6e 548 :version "22.1"
23f87bed
MB
549 :group 'gnus-summary-marks
550 :type 'character)
551
eec82323
LMI
552(defcustom gnus-kill-file-mark ?X
553 "*Mark used for articles killed by kill files."
554 :group 'gnus-summary-marks
555 :type 'character)
556
557(defcustom gnus-low-score-mark ?Y
558 "*Mark used for articles with a low score."
559 :group 'gnus-summary-marks
560 :type 'character)
561
562(defcustom gnus-catchup-mark ?C
563 "*Mark used for articles that are caught up."
564 :group 'gnus-summary-marks
565 :type 'character)
566
567(defcustom gnus-replied-mark ?A
568 "*Mark used for articles that have been replied to."
569 :group 'gnus-summary-marks
570 :type 'character)
571
23f87bed
MB
572(defcustom gnus-forwarded-mark ?F
573 "*Mark used for articles that have been forwarded."
bf247b6e 574 :version "22.1"
23f87bed
MB
575 :group 'gnus-summary-marks
576 :type 'character)
577
578(defcustom gnus-recent-mark ?N
579 "*Mark used for articles that are recent."
bf247b6e 580 :version "22.1"
23f87bed
MB
581 :group 'gnus-summary-marks
582 :type 'character)
583
eec82323
LMI
584(defcustom gnus-cached-mark ?*
585 "*Mark used for articles that are in the cache."
586 :group 'gnus-summary-marks
587 :type 'character)
588
589(defcustom gnus-saved-mark ?S
23f87bed
MB
590 "*Mark used for articles that have been saved."
591 :group 'gnus-summary-marks
592 :type 'character)
593
594(defcustom gnus-unseen-mark ?.
595 "*Mark used for articles that haven't been seen."
bf247b6e 596 :version "22.1"
23f87bed
MB
597 :group 'gnus-summary-marks
598 :type 'character)
599
600(defcustom gnus-no-mark ? ;Whitespace
601 "*Mark used for articles that have no other secondary mark."
bf247b6e 602 :version "22.1"
eec82323
LMI
603 :group 'gnus-summary-marks
604 :type 'character)
605
606(defcustom gnus-ancient-mark ?O
607 "*Mark used for ancient articles."
608 :group 'gnus-summary-marks
609 :type 'character)
610
611(defcustom gnus-sparse-mark ?Q
612 "*Mark used for sparsely reffed articles."
613 :group 'gnus-summary-marks
614 :type 'character)
615
616(defcustom gnus-canceled-mark ?G
617 "*Mark used for canceled articles."
618 :group 'gnus-summary-marks
619 :type 'character)
620
621(defcustom gnus-duplicate-mark ?M
622 "*Mark used for duplicate articles."
623 :group 'gnus-summary-marks
624 :type 'character)
625
23f87bed 626(defcustom gnus-undownloaded-mark ?-
6748645f 627 "*Mark used for articles that weren't downloaded."
bf247b6e 628 :version "22.1"
6748645f
LMI
629 :group 'gnus-summary-marks
630 :type 'character)
631
23f87bed
MB
632(defcustom gnus-downloaded-mark ?+
633 "*Mark used for articles that were downloaded."
634 :group 'gnus-summary-marks
635 :type 'character)
636
6748645f
LMI
637(defcustom gnus-downloadable-mark ?%
638 "*Mark used for articles that are to be downloaded."
639 :group 'gnus-summary-marks
640 :type 'character)
641
642(defcustom gnus-unsendable-mark ?=
643 "*Mark used for articles that won't be sent."
644 :group 'gnus-summary-marks
645 :type 'character)
646
eec82323
LMI
647(defcustom gnus-score-over-mark ?+
648 "*Score mark used for articles with high scores."
649 :group 'gnus-summary-marks
650 :type 'character)
651
652(defcustom gnus-score-below-mark ?-
653 "*Score mark used for articles with low scores."
654 :group 'gnus-summary-marks
655 :type 'character)
656
23f87bed 657(defcustom gnus-empty-thread-mark ? ;Whitespace
eec82323
LMI
658 "*There is no thread under the article."
659 :group 'gnus-summary-marks
660 :type 'character)
661
662(defcustom gnus-not-empty-thread-mark ?=
663 "*There is a thread under the article."
664 :group 'gnus-summary-marks
665 :type 'character)
666
667(defcustom gnus-view-pseudo-asynchronously nil
668 "*If non-nil, Gnus will view pseudo-articles asynchronously."
669 :group 'gnus-extract-view
670 :type 'boolean)
671
16409b0b
GM
672(defcustom gnus-auto-expirable-marks
673 (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
674 gnus-low-score-mark gnus-ancient-mark gnus-read-mark
c4d82de8 675 gnus-duplicate-mark)
16409b0b 676 "*The list of marks converted into expiration if a group is auto-expirable."
b0e30310 677 :version "24.1"
16409b0b
GM
678 :group 'gnus-summary
679 :type '(repeat character))
680
681(defcustom gnus-inhibit-user-auto-expire t
682 "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
58e39d05 683 :version "21.1"
16409b0b
GM
684 :group 'gnus-summary
685 :type 'boolean)
686
b0b63450
MB
687(defcustom gnus-mark-copied-or-moved-articles-as-expirable nil
688 "If non-nil, mark articles copied or moved to auto-expire group as expirable.
689If nil, the expirable marks will be unchanged except that the marks
690will be removed when copying or moving articles to a group that has
691not turned auto-expire on. If non-nil, articles that have been read
692will be marked as expirable when being copied or moved to a group in
693which auto-expire is turned on."
694 :version "23.2"
695 :type 'boolean
696 :group 'gnus-summary-marks)
697
eec82323
LMI
698(defcustom gnus-view-pseudos nil
699 "*If `automatic', pseudo-articles will be viewed automatically.
700If `not-confirm', pseudos will be viewed automatically, and the user
701will not be asked to confirm the command."
702 :group 'gnus-extract-view
703 :type '(choice (const :tag "off" nil)
704 (const automatic)
705 (const not-confirm)))
706
707(defcustom gnus-view-pseudos-separately t
708 "*If non-nil, one pseudo-article will be created for each file to be viewed.
709If nil, all files that use the same viewing command will be given as a
710list of parameters to that command."
711 :group 'gnus-extract-view
712 :type 'boolean)
713
714(defcustom gnus-insert-pseudo-articles t
715 "*If non-nil, insert pseudo-articles when decoding articles."
716 :group 'gnus-extract-view
717 :type 'boolean)
718
719(defcustom gnus-summary-dummy-line-format
23f87bed 720 " %(: :%) %S\n"
eec82323
LMI
721 "*The format specification for the dummy roots in the summary buffer.
722It works along the same lines as a normal formatting string,
723with some simple extensions.
724
23f87bed
MB
725%S The subject
726
727General format specifiers can also be used.
728See `(gnus)Formatting Variables'."
729 :link '(custom-manual "(gnus)Formatting Variables")
eec82323
LMI
730 :group 'gnus-threading
731 :type 'string)
732
16409b0b 733(defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
eec82323
LMI
734 "*The format specification for the summary mode line.
735It works along the same lines as a normal formatting string,
736with some simple extensions:
737
738%G Group name
739%p Unprefixed group name
740%A Current article number
6748645f 741%z Current article score
eec82323
LMI
742%V Gnus version
743%U Number of unread articles in the group
744%e Number of unselected articles in the group
745%Z A string with unread/unselected article counts
746%g Shortish group name
747%S Subject of the current article
748%u User-defined spec
749%s Current score file name
750%d Number of dormant articles
751%r Number of articles that have been marked as read in this session
752%E Number of articles expunged by the score files"
753 :group 'gnus-summary-format
754 :type 'string)
755
16409b0b
GM
756(defcustom gnus-list-identifiers nil
757 "Regexp that matches list identifiers to be removed from subject.
758This can also be a list of regexps."
58e39d05 759 :version "21.1"
16409b0b
GM
760 :group 'gnus-summary-format
761 :group 'gnus-article-hiding
762 :type '(choice (const :tag "none" nil)
763 (regexp :value ".*")
764 (repeat :value (".*") regexp)))
765
eec82323
LMI
766(defcustom gnus-summary-mark-below 0
767 "*Mark all articles with a score below this variable as read.
768This variable is local to each summary buffer and usually set by the
769score file."
770 :group 'gnus-score-default
771 :type 'integer)
772
01c52d31
MB
773(defun gnus-widget-reversible-match (widget value)
774 "Ignoring WIDGET, convert VALUE to internal form.
775VALUE should have the form `FOO' or `(not FOO)', where FOO is an symbol."
776 ;; (debug value)
777 (or (symbolp value)
778 (and (listp value)
779 (eq (length value) 2)
780 (eq (nth 0 value) 'not)
781 (symbolp (nth 1 value)))))
782
783(defun gnus-widget-reversible-to-internal (widget value)
784 "Ignoring WIDGET, convert VALUE to internal form.
785VALUE should have the form `FOO' or `(not FOO)', where FOO is an atom.
786FOO is converted to (FOO nil) and (not FOO) is converted to (FOO t)."
787 ;; (debug value)
788 (if (atom value)
789 (list value nil)
790 (list (nth 1 value) t)))
791
792(defun gnus-widget-reversible-to-external (widget value)
793 "Ignoring WIDGET, convert VALUE to external form.
794VALUE should have the form `(FOO nil)' or `(FOO t)', where FOO is an atom.
795\(FOO nil) is converted to FOO and (FOO t) is converted to (not FOO)."
796 ;; (debug value)
797 (if (nth 1 value)
798 (list 'not (nth 0 value))
799 (nth 0 value)))
800
801(define-widget 'gnus-widget-reversible 'group
802 "A `group' that convert values."
803 :match 'gnus-widget-reversible-match
804 :value-to-internal 'gnus-widget-reversible-to-internal
805 :value-to-external 'gnus-widget-reversible-to-external)
806
eec82323
LMI
807(defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
808 "*List of functions used for sorting articles in the summary buffer.
23f87bed
MB
809
810Each function takes two articles and returns non-nil if the first
811article should be sorted before the other. If you use more than one
812function, the primary sort function should be the last. You should
813probably always include `gnus-article-sort-by-number' in the list of
814sorting functions -- preferably first. Also note that sorting by date
815is often much slower than sorting by number, and the sorting order is
816very similar. (Sorting by date means sorting by the time the message
817was sent, sorting by number means sorting by arrival time.)
818
01c52d31
MB
819Each item can also be a list `(not F)' where F is a function;
820this reverses the sort order.
821
23f87bed
MB
822Ready-made functions include `gnus-article-sort-by-number',
823`gnus-article-sort-by-author', `gnus-article-sort-by-subject',
824`gnus-article-sort-by-date', `gnus-article-sort-by-random'
825and `gnus-article-sort-by-score'.
826
827When threading is turned on, the variable `gnus-thread-sort-functions'
828controls how articles are sorted."
eec82323 829 :group 'gnus-summary-sort
01c52d31
MB
830 :type '(repeat (gnus-widget-reversible
831 (choice (function-item gnus-article-sort-by-number)
832 (function-item gnus-article-sort-by-author)
833 (function-item gnus-article-sort-by-subject)
834 (function-item gnus-article-sort-by-date)
835 (function-item gnus-article-sort-by-score)
836 (function-item gnus-article-sort-by-random)
837 (function :tag "other"))
838 (boolean :tag "Reverse order"))))
839
eec82323
LMI
840
841(defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
842 "*List of functions used for sorting threads in the summary buffer.
843By default, threads are sorted by article number.
844
23f87bed
MB
845Each function takes two threads and returns non-nil if the first
846thread should be sorted before the other. If you use more than one
847function, the primary sort function should be the last. You should
848probably always include `gnus-thread-sort-by-number' in the list of
849sorting functions -- preferably first. Also note that sorting by date
850is often much slower than sorting by number, and the sorting order is
851very similar. (Sorting by date means sorting by the time the message
852was sent, sorting by number means sorting by arrival time.)
eec82323 853
01c52d31
MB
854Each list item can also be a list `(not F)' where F is a
855function; this specifies reversed sort order.
856
eec82323 857Ready-made functions include `gnus-thread-sort-by-number',
01c52d31
MB
858`gnus-thread-sort-by-author', `gnus-thread-sort-by-recipient'
859`gnus-thread-sort-by-subject', `gnus-thread-sort-by-date',
860`gnus-thread-sort-by-score', `gnus-thread-sort-by-most-recent-number',
861`gnus-thread-sort-by-most-recent-date', `gnus-thread-sort-by-random',
862and `gnus-thread-sort-by-total-score' (see
863`gnus-thread-score-function').
23f87bed
MB
864
865When threading is turned off, the variable
866`gnus-article-sort-functions' controls how articles are sorted."
eec82323 867 :group 'gnus-summary-sort
01c52d31
MB
868 :type '(repeat
869 (gnus-widget-reversible
870 (choice (function-item gnus-thread-sort-by-number)
871 (function-item gnus-thread-sort-by-author)
872 (function-item gnus-thread-sort-by-recipient)
873 (function-item gnus-thread-sort-by-subject)
874 (function-item gnus-thread-sort-by-date)
875 (function-item gnus-thread-sort-by-score)
876 (function-item gnus-thread-sort-by-most-recent-number)
877 (function-item gnus-thread-sort-by-most-recent-date)
878 (function-item gnus-thread-sort-by-random)
879 (function-item gnus-thread-sort-by-total-score)
880 (function :tag "other"))
881 (boolean :tag "Reverse order"))))
eec82323
LMI
882
883(defcustom gnus-thread-score-function '+
884 "*Function used for calculating the total score of a thread.
885
886The function is called with the scores of the article and each
887subthread and should then return the score of the thread.
888
889Some functions you can use are `+', `max', or `min'."
890 :group 'gnus-summary-sort
891 :type 'function)
892
893(defcustom gnus-summary-expunge-below nil
6748645f
LMI
894 "All articles that have a score less than this variable will be expunged.
895This variable is local to the summary buffers."
eec82323
LMI
896 :group 'gnus-score-default
897 :type '(choice (const :tag "off" nil)
898 integer))
899
900(defcustom gnus-thread-expunge-below nil
901 "All threads that have a total score less than this variable will be expunged.
902See `gnus-thread-score-function' for en explanation of what a
6748645f
LMI
903\"thread score\" is.
904
905This variable is local to the summary buffers."
16409b0b 906 :group 'gnus-threading
eec82323
LMI
907 :group 'gnus-score-default
908 :type '(choice (const :tag "off" nil)
909 integer))
910
911(defcustom gnus-summary-mode-hook nil
912 "*A hook for Gnus summary mode.
913This hook is run before any variables are set in the summary buffer."
23f87bed 914 :options '(turn-on-gnus-mailing-list-mode gnus-pick-mode)
eec82323
LMI
915 :group 'gnus-summary-various
916 :type 'hook)
917
23f87bed
MB
918;; Extracted from gnus-xmas-redefine in order to preserve user settings
919(when (featurep 'xemacs)
920 (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
921 (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
922 (add-hook 'gnus-summary-mode-hook
923 'gnus-xmas-switch-horizontal-scrollbar-off))
924
eec82323
LMI
925(defcustom gnus-summary-menu-hook nil
926 "*Hook run after the creation of the summary mode menu."
927 :group 'gnus-summary-visual
928 :type 'hook)
929
930(defcustom gnus-summary-exit-hook nil
931 "*A hook called on exit from the summary buffer.
932It will be called with point in the group buffer."
933 :group 'gnus-summary-exit
934 :type 'hook)
935
936(defcustom gnus-summary-prepare-hook nil
937 "*A hook called after the summary buffer has been generated.
938If you want to modify the summary buffer, you can use this hook."
939 :group 'gnus-summary-various
940 :type 'hook)
941
6748645f
LMI
942(defcustom gnus-summary-prepared-hook nil
943 "*A hook called as the last thing after the summary buffer has been generated."
944 :group 'gnus-summary-various
945 :type 'hook)
946
eec82323
LMI
947(defcustom gnus-summary-generate-hook nil
948 "*A hook run just before generating the summary buffer.
949This hook is commonly used to customize threading variables and the
950like."
951 :group 'gnus-summary-various
952 :type 'hook)
953
954(defcustom gnus-select-group-hook nil
955 "*A hook called when a newsgroup is selected.
956
957If you'd like to simplify subjects like the
958`gnus-summary-next-same-subject' command does, you can use the
959following hook:
960
23f87bed
MB
961 (add-hook gnus-select-group-hook
962 (lambda ()
963 (mapcar (lambda (header)
964 (mail-header-set-subject
965 header
966 (gnus-simplify-subject
967 (mail-header-subject header) 're-only)))
968 gnus-newsgroup-headers)))"
eec82323
LMI
969 :group 'gnus-group-select
970 :type 'hook)
971
972(defcustom gnus-select-article-hook nil
973 "*A hook called when an article is selected."
974 :group 'gnus-summary-choose
23f87bed 975 :options '(gnus-agent-fetch-selected-article)
eec82323
LMI
976 :type 'hook)
977
978(defcustom gnus-visual-mark-article-hook
979 (list 'gnus-highlight-selected-summary)
980 "*Hook run after selecting an article in the summary buffer.
981It is meant to be used for highlighting the article in some way. It
982is not run if `gnus-visual' is nil."
983 :group 'gnus-summary-visual
984 :type 'hook)
985
16409b0b 986(defcustom gnus-parse-headers-hook nil
eec82323
LMI
987 "*A hook called before parsing the headers."
988 :group 'gnus-various
989 :type 'hook)
990
991(defcustom gnus-exit-group-hook nil
16409b0b
GM
992 "*A hook called when exiting summary mode.
993This hook is not called from the non-updating exit commands like `Q'."
eec82323
LMI
994 :group 'gnus-various
995 :type 'hook)
996
a9ec34f4 997(defcustom gnus-summary-update-hook nil
eec82323
LMI
998 "*A hook called when a summary line is changed.
999The hook will not be called if `gnus-visual' is nil.
1000
1001The default function `gnus-summary-highlight-line' will
1002highlight the line according to the `gnus-summary-highlight'
1003variable."
1004 :group 'gnus-summary-visual
1005 :type 'hook)
1006
1007(defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
1008 "*A hook called when an article is selected for the first time.
1009The hook is intended to mark an article as read (or unread)
1010automatically when it is selected."
1011 :group 'gnus-summary-choose
1012 :type 'hook)
1013
1014(defcustom gnus-group-no-more-groups-hook nil
1015 "*A hook run when returning to group mode having no more (unread) groups."
1016 :group 'gnus-group-select
1017 :type 'hook)
1018
1019(defcustom gnus-ps-print-hook nil
1020 "*A hook run before ps-printing something from Gnus."
1021 :group 'gnus-summary
1022 :type 'hook)
1023
23f87bed
MB
1024(defcustom gnus-summary-article-move-hook nil
1025 "*A hook called after an article is moved, copied, respooled, or crossposted."
bf247b6e 1026 :version "22.1"
23f87bed
MB
1027 :group 'gnus-summary
1028 :type 'hook)
1029
1030(defcustom gnus-summary-article-delete-hook nil
1031 "*A hook called after an article is deleted."
bf247b6e 1032 :version "22.1"
23f87bed
MB
1033 :group 'gnus-summary
1034 :type 'hook)
1035
1036(defcustom gnus-summary-article-expire-hook nil
1037 "*A hook called after an article is expired."
bf247b6e 1038 :version "22.1"
23f87bed
MB
1039 :group 'gnus-summary
1040 :type 'hook)
1041
1042(defcustom gnus-summary-display-arrow
1043 (and (fboundp 'display-graphic-p)
1044 (display-graphic-p))
1045 "*If non-nil, display an arrow highlighting the current article."
bf247b6e 1046 :version "22.1"
23f87bed
MB
1047 :group 'gnus-summary
1048 :type 'boolean)
1049
0f49874b 1050(defcustom gnus-summary-selected-face 'gnus-summary-selected
eec82323
LMI
1051 "Face used for highlighting the current article in the summary buffer."
1052 :group 'gnus-summary-visual
1053 :type 'face)
1054
23f87bed
MB
1055(defvar gnus-tmp-downloaded nil)
1056
eec82323 1057(defcustom gnus-summary-highlight
23f87bed 1058 '(((eq mark gnus-canceled-mark)
0f49874b 1059 . gnus-summary-cancelled)
23f87bed 1060 ((and uncached (> score default-high))
0f49874b 1061 . gnus-summary-high-undownloaded)
23f87bed 1062 ((and uncached (< score default-low))
0f49874b 1063 . gnus-summary-low-undownloaded)
23f87bed 1064 (uncached
0f49874b 1065 . gnus-summary-normal-undownloaded)
23f87bed
MB
1066 ((and (> score default-high)
1067 (or (eq mark gnus-dormant-mark)
1068 (eq mark gnus-ticked-mark)))
0f49874b 1069 . gnus-summary-high-ticked)
23f87bed
MB
1070 ((and (< score default-low)
1071 (or (eq mark gnus-dormant-mark)
1072 (eq mark gnus-ticked-mark)))
0f49874b 1073 . gnus-summary-low-ticked)
23f87bed
MB
1074 ((or (eq mark gnus-dormant-mark)
1075 (eq mark gnus-ticked-mark))
0f49874b 1076 . gnus-summary-normal-ticked)
23f87bed 1077 ((and (> score default-high) (eq mark gnus-ancient-mark))
0f49874b 1078 . gnus-summary-high-ancient)
23f87bed 1079 ((and (< score default-low) (eq mark gnus-ancient-mark))
0f49874b 1080 . gnus-summary-low-ancient)
23f87bed 1081 ((eq mark gnus-ancient-mark)
0f49874b 1082 . gnus-summary-normal-ancient)
23f87bed 1083 ((and (> score default-high) (eq mark gnus-unread-mark))
0f49874b 1084 . gnus-summary-high-unread)
23f87bed 1085 ((and (< score default-low) (eq mark gnus-unread-mark))
0f49874b 1086 . gnus-summary-low-unread)
23f87bed 1087 ((eq mark gnus-unread-mark)
0f49874b 1088 . gnus-summary-normal-unread)
23f87bed 1089 ((> score default-high)
0f49874b 1090 . gnus-summary-high-read)
23f87bed 1091 ((< score default-low)
0f49874b 1092 . gnus-summary-low-read)
eec82323 1093 (t
0f49874b 1094 . gnus-summary-normal-read))
6748645f 1095 "*Controls the highlighting of summary buffer lines.
eec82323 1096
107cf8ec 1097A list of (FORM . FACE) pairs. When deciding how a particular
23f87bed
MB
1098summary line should be displayed, each form is evaluated. The content
1099of the face field after the first true form is used. You can change
1100how those summary lines are displayed, by editing the face field.
eec82323
LMI
1101
1102You can use the following variables in the FORM field.
1103
107cf8ec 1104score: The article's score.
23f87bed
MB
1105default: The default article score.
1106default-high: The default score for high scored articles.
1107default-low: The default score for low scored articles.
1108below: The score below which articles are automatically marked as read.
1109mark: The article's mark.
1110uncached: Non-nil if the article is uncached."
eec82323
LMI
1111 :group 'gnus-summary-visual
1112 :type '(repeat (cons (sexp :tag "Form" nil)
1113 face)))
c12ecb0a 1114(put 'gnus-summary-highlight 'risky-local-variable t)
eec82323 1115
6748645f
LMI
1116(defcustom gnus-alter-header-function nil
1117 "Function called to allow alteration of article header structures.
1118The function is called with one parameter, the article header vector,
0ab0f2d3
SZ
1119which it may alter in any way."
1120 :type '(choice (const :tag "None" nil)
1121 function)
1122 :group 'gnus-summary)
eec82323 1123
16409b0b 1124(defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string
343d6628
MB
1125 "Function used to decode a string with encoded words.")
1126
1127(defvar gnus-decode-encoded-address-function
1128 'mail-decode-encoded-address-string
1129 "Function used to decode addresses with encoded words.")
16409b0b 1130
23f87bed 1131(defcustom gnus-extra-headers '(To Newsgroups)
16409b0b 1132 "*Extra headers to parse."
58e39d05 1133 :version "21.1"
16409b0b
GM
1134 :group 'gnus-summary
1135 :type '(repeat symbol))
1136
1137(defcustom gnus-ignored-from-addresses
343d6628 1138 (and user-mail-address
7cd9f860
CY
1139 (not (string= user-mail-address ""))
1140 (regexp-quote user-mail-address))
01c52d31
MB
1141 "*From headers that may be suppressed in favor of To headers.
1142This can be a regexp or a list of regexps."
58e39d05 1143 :version "21.1"
16409b0b 1144 :group 'gnus-summary
01c52d31
MB
1145 :type '(choice regexp
1146 (repeat :tag "Regexp List" regexp)))
1147
1148(defsubst gnus-ignored-from-addresses ()
1149 (gmm-regexp-concat gnus-ignored-from-addresses))
1150
1151(defcustom gnus-summary-to-prefix "-> "
1152 "*String prefixed to the To field in the summary line when
1153using `gnus-ignored-from-addresses'."
1154 :version "22.1"
1155 :group 'gnus-summary
1156 :type 'string)
1157
1158(defcustom gnus-summary-newsgroup-prefix "=> "
1159 "*String prefixed to the Newsgroup field in the summary
1160line when using `gnus-ignored-from-addresses'."
1161 :version "22.1"
1162 :group 'gnus-summary
1163 :type 'string)
16409b0b 1164
16409b0b
GM
1165(defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
1166 "List of charsets that should be ignored.
1167When these charsets are used in the \"charset\" parameter, the
1168default charset will be used instead."
58e39d05 1169 :version "21.1"
16409b0b
GM
1170 :type '(repeat symbol)
1171 :group 'gnus-charset)
1172
4b70e299
MB
1173(defcustom gnus-newsgroup-maximum-articles nil
1174 "The maximum number of articles a newsgroup.
1175If this is a number, old articles in a newsgroup exceeding this number
1176are silently ignored. If it is nil, no article is ignored. Note that
1177setting this variable to a number might prevent you from reading very
1178old articles."
1179 :group 'gnus-group-select
1180 :version "22.2"
1181 :type '(choice (const :tag "No limit" nil)
1182 integer))
1183
23f87bed
MB
1184(gnus-define-group-parameter
1185 ignored-charsets
1186 :type list
1187 :function-document
1188 "Return the ignored charsets of GROUP."
1189 :variable gnus-group-ignored-charsets-alist
1190 :variable-default
1191 '(("alt\\.chinese\\.text" iso-8859-1))
1192 :variable-document
1193 "Alist of regexps (to match group names) and charsets that should be ignored.
16409b0b
GM
1194When these charsets are used in the \"charset\" parameter, the
1195default charset will be used instead."
23f87bed
MB
1196 :variable-group gnus-charset
1197 :variable-type '(repeat (cons (regexp :tag "Group")
1198 (repeat symbol)))
1199 :parameter-type '(choice :tag "Ignored charsets"
1200 :value nil
1201 (repeat (symbol)))
1202 :parameter-document "\
1203List of charsets that should be ignored.
1204
1205When these charsets are used in the \"charset\" parameter, the
1206default charset will be used instead.")
16409b0b
GM
1207
1208(defcustom gnus-group-highlight-words-alist nil
1209 "Alist of group regexps and highlight regexps.
1210This variable uses the same syntax as `gnus-emphasis-alist'."
58e39d05 1211 :version "21.1"
16409b0b
GM
1212 :type '(repeat (cons (regexp :tag "Group")
1213 (repeat (list (regexp :tag "Highlight regexp")
1214 (number :tag "Group for entire word" 0)
1215 (number :tag "Group for displayed part" 0)
1216 (symbol :tag "Face"
1217 gnus-emphasis-highlight-words)))))
1218 :group 'gnus-summary-visual)
1219
1220(defcustom gnus-summary-show-article-charset-alist
1221 nil
1222 "Alist of number and charset.
1223The article will be shown with the charset corresponding to the
1224numbered argument.
1225For example: ((1 . cn-gb-2312) (2 . big5))."
58e39d05 1226 :version "21.1"
16409b0b
GM
1227 :type '(repeat (cons (number :tag "Argument" 1)
1228 (symbol :tag "Charset")))
1229 :group 'gnus-charset)
1230
1231(defcustom gnus-preserve-marks t
1232 "Whether marks are preserved when moving, copying and respooling messages."
58e39d05 1233 :version "21.1"
16409b0b
GM
1234 :type 'boolean
1235 :group 'gnus-summary-marks)
1236
3a23a519
MB
1237(defcustom gnus-propagate-marks t
1238 "If non-nil, do not propagate marks to the backends."
f8a29505 1239 :version "23.1" ;; No Gnus
3a23a519
MB
1240 :type 'boolean
1241 :group 'gnus-summary-marks)
1242
16409b0b
GM
1243(defcustom gnus-alter-articles-to-read-function nil
1244 "Function to be called to alter the list of articles to be selected."
8fc7a9a1 1245 :type '(choice (const nil) function)
16409b0b
GM
1246 :group 'gnus-summary)
1247
1248(defcustom gnus-orphan-score nil
1249 "*All orphans get this score added. Set in the score file."
1250 :group 'gnus-score-default
1251 :type '(choice (const nil)
1252 integer))
1253
8b93df01 1254(defcustom gnus-summary-save-parts-default-mime "image/.*"
23f87bed
MB
1255 "*A regexp to match MIME parts when saving multiple parts of a
1256message with `gnus-summary-save-parts' (\\<gnus-summary-mode-map>\\[gnus-summary-save-parts]).
1257This regexp will be used by default when prompting the user for which
1258type of files to save."
8b93df01
DL
1259 :group 'gnus-summary
1260 :type 'regexp)
1261
23f87bed
MB
1262(defcustom gnus-read-all-available-headers nil
1263 "Whether Gnus should parse all headers made available to it.
1264This is mostly relevant for slow back ends where the user may
1265wish to widen the summary buffer to include all headers
c4d82de8 1266that were fetched."
bf247b6e 1267 :version "22.1"
23f87bed
MB
1268 :group 'gnus-summary
1269 :type '(choice boolean regexp))
1270
89167438
MB
1271(defcustom gnus-summary-pipe-output-default-command nil
1272 "Command (and optional arguments) used to pipe article to subprocess.
1273This will be used as the default command if it is non-nil. The value
1274will be updated if you modify it when executing the command
1275`gnus-summary-pipe-output' or the function `gnus-summary-save-in-pipe'."
1276 :version "23.1" ;; No Gnus
1277 :group 'gnus-summary
1278 :type '(radio (const :tag "None" nil) (string :tag "Command")))
1279
23f87bed 1280(defcustom gnus-summary-muttprint-program "muttprint"
89167438
MB
1281 "Command (and optional arguments) used to run Muttprint.
1282The value will be updated if you modify it when executing the command
1283`gnus-summary-muttprint'."
bf247b6e 1284 :version "22.1"
23f87bed
MB
1285 :group 'gnus-summary
1286 :type 'string)
1287
01c52d31 1288(defcustom gnus-article-loose-mime t
23f87bed
MB
1289 "If non-nil, don't require MIME-Version header.
1290Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
a08b59c9 1291supply the MIME-Version header or deliberately strip it from the mail.
01c52d31
MB
1292If non-nil (the default), Gnus will treat some articles as MIME
1293even if the MIME-Version header is missing."
bf247b6e 1294 :version "22.1"
23f87bed
MB
1295 :type 'boolean
1296 :group 'gnus-article-mime)
1297
1298(defcustom gnus-article-emulate-mime t
1299 "If non-nil, use MIME emulation for uuencode and the like.
1300This means that Gnus will search message bodies for text that look
1301like uuencoded bits, yEncoded bits, and so on, and present that using
1302the normal Gnus MIME machinery."
bf247b6e 1303 :version "22.1"
23f87bed
MB
1304 :type 'boolean
1305 :group 'gnus-article-mime)
8b93df01 1306
eec82323
LMI
1307;;; Internal variables
1308
23f87bed 1309(defvar gnus-summary-display-cache nil)
16409b0b
GM
1310(defvar gnus-article-mime-handles nil)
1311(defvar gnus-article-decoded-p nil)
23f87bed
MB
1312(defvar gnus-article-charset nil)
1313(defvar gnus-article-ignored-charsets nil)
eec82323
LMI
1314(defvar gnus-scores-exclude-files nil)
1315(defvar gnus-page-broken nil)
1316
1317(defvar gnus-original-article nil)
1318(defvar gnus-article-internal-prepare-hook nil)
1319(defvar gnus-newsgroup-process-stack nil)
1320
1321(defvar gnus-thread-indent-array nil)
1322(defvar gnus-thread-indent-array-level gnus-thread-indent-level)
16409b0b
GM
1323(defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1324 "Function called to sort the articles within a thread after it has been gathered together.")
eec82323 1325
8b93df01 1326(defvar gnus-summary-save-parts-type-history nil)
23f87bed 1327(defvar gnus-summary-save-parts-last-directory mm-default-directory)
8b93df01 1328
eec82323
LMI
1329;; Avoid highlighting in kill files.
1330(defvar gnus-summary-inhibit-highlight nil)
1331(defvar gnus-newsgroup-selected-overlay nil)
1332(defvar gnus-inhibit-limiting nil)
1333(defvar gnus-newsgroup-adaptive-score-file nil)
1334(defvar gnus-current-score-file nil)
1335(defvar gnus-current-move-group nil)
1336(defvar gnus-current-copy-group nil)
1337(defvar gnus-current-crosspost-group nil)
23f87bed 1338(defvar gnus-newsgroup-display nil)
eec82323
LMI
1339
1340(defvar gnus-newsgroup-dependencies nil)
1341(defvar gnus-newsgroup-adaptive nil)
1342(defvar gnus-summary-display-article-function nil)
1343(defvar gnus-summary-highlight-line-function nil
1344 "Function called after highlighting a summary line.")
1345
1346(defvar gnus-summary-line-format-alist
1347 `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1348 (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1349 (?s gnus-tmp-subject-or-nil ?s)
1350 (?n gnus-tmp-name ?s)
1351 (?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
1352 ?s)
1353 (?a (or (car (funcall gnus-extract-address-components gnus-tmp-from))
1354 gnus-tmp-from) ?s)
1355 (?F gnus-tmp-from ?s)
1356 (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1357 (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1358 (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
6748645f 1359 (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
eec82323
LMI
1360 (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1361 (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1362 (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
23f87bed
MB
1363 (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
1364 (?L gnus-tmp-lines ?s)
d6f6af81 1365 (?Z (or ,(gnus-macroexpand-all
ed797193
G
1366 '(nnir-article-rsv (mail-header-number gnus-tmp-header)))
1367 0) ?d)
d6f6af81 1368 (?G (or ,(gnus-macroexpand-all
ed797193
G
1369 '(nnir-article-group (mail-header-number gnus-tmp-header)))
1370 "") ?s)
d6f6af81 1371 (?g (or ,(gnus-macroexpand-all
ed797193
G
1372 '(gnus-group-short-name
1373 (nnir-article-group (mail-header-number gnus-tmp-header))))
1374 "") ?s)
23f87bed 1375 (?O gnus-tmp-downloaded ?c)
eec82323
LMI
1376 (?I gnus-tmp-indentation ?s)
1377 (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1378 (?R gnus-tmp-replied ?c)
1379 (?\[ gnus-tmp-opening-bracket ?c)
1380 (?\] gnus-tmp-closing-bracket ?c)
1381 (?\> (make-string gnus-tmp-level ? ) ?s)
1382 (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1383 (?i gnus-tmp-score ?d)
1384 (?z gnus-tmp-score-char ?c)
eec82323
LMI
1385 (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1386 (?U gnus-tmp-unread ?c)
23f87bed
MB
1387 (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1388 ?s)
eec82323
LMI
1389 (?t (gnus-summary-number-of-articles-in-thread
1390 (and (boundp 'thread) (car thread)) gnus-tmp-level)
1391 ?d)
1392 (?e (gnus-summary-number-of-articles-in-thread
1393 (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1394 ?c)
1395 (?u gnus-tmp-user-defined ?s)
23f87bed
MB
1396 (?P (gnus-pick-line-number) ?d)
1397 (?B gnus-tmp-thread-tree-header-string ?s)
1398 (user-date (gnus-user-date
1399 ,(macroexpand '(mail-header-date gnus-tmp-header))) ?s))
16409b0b
GM
1400 "An alist of format specifications that can appear in summary lines.
1401These are paired with what variables they correspond with, along with
1402the type of the variable (string, integer, character, etc).")
eec82323
LMI
1403
1404(defvar gnus-summary-dummy-line-format-alist
1405 `((?S gnus-tmp-subject ?s)
1406 (?N gnus-tmp-number ?d)
1407 (?u gnus-tmp-user-defined ?s)))
1408
1409(defvar gnus-summary-mode-line-format-alist
1410 `((?G gnus-tmp-group-name ?s)
1411 (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1412 (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1413 (?A gnus-tmp-article-number ?d)
1414 (?Z gnus-tmp-unread-and-unselected ?s)
1415 (?V gnus-version ?s)
1416 (?U gnus-tmp-unread-and-unticked ?d)
1417 (?S gnus-tmp-subject ?s)
1418 (?e gnus-tmp-unselected ?d)
1419 (?u gnus-tmp-user-defined ?s)
1420 (?d (length gnus-newsgroup-dormant) ?d)
1421 (?t (length gnus-newsgroup-marked) ?d)
23f87bed 1422 (?h (length gnus-newsgroup-spam-marked) ?d)
eec82323 1423 (?r (length gnus-newsgroup-reads) ?d)
6748645f 1424 (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
eec82323
LMI
1425 (?E gnus-newsgroup-expunged-tally ?d)
1426 (?s (gnus-current-score-file-nondirectory) ?s)))
1427
c1717fbd
GM
1428;; This is here rather than in gnus-art for compilation reasons.
1429(defvar gnus-article-mode-line-format-alist
1430 (nconc '((?w (gnus-article-wash-status) ?s)
1431 (?m (gnus-article-mime-part-status) ?s))
1432 gnus-summary-mode-line-format-alist))
1433
eec82323
LMI
1434(defvar gnus-last-search-regexp nil
1435 "Default regexp for article search command.")
1436
1437(defvar gnus-last-shell-command nil
1438 "Default shell command on article.")
1439
23f87bed
MB
1440(defvar gnus-newsgroup-agentized nil
1441 "Locally bound in each summary buffer to indicate whether the server has been agentized.")
eec82323
LMI
1442(defvar gnus-newsgroup-begin nil)
1443(defvar gnus-newsgroup-end nil)
1444(defvar gnus-newsgroup-last-rmail nil)
1445(defvar gnus-newsgroup-last-mail nil)
1446(defvar gnus-newsgroup-last-folder nil)
1447(defvar gnus-newsgroup-last-file nil)
26c9afc3 1448(defvar gnus-newsgroup-last-directory nil)
eec82323
LMI
1449(defvar gnus-newsgroup-auto-expire nil)
1450(defvar gnus-newsgroup-active nil)
9f2d52e7 1451(defvar gnus-newsgroup-highest nil)
eec82323
LMI
1452
1453(defvar gnus-newsgroup-data nil)
1454(defvar gnus-newsgroup-data-reverse nil)
1455(defvar gnus-newsgroup-limit nil)
1456(defvar gnus-newsgroup-limits nil)
23f87bed 1457(defvar gnus-summary-use-undownloaded-faces nil)
eec82323
LMI
1458
1459(defvar gnus-newsgroup-unreads nil
23f87bed 1460 "Sorted list of unread articles in the current newsgroup.")
eec82323
LMI
1461
1462(defvar gnus-newsgroup-unselected nil
23f87bed 1463 "Sorted list of unselected unread articles in the current newsgroup.")
eec82323
LMI
1464
1465(defvar gnus-newsgroup-reads nil
1466 "Alist of read articles and article marks in the current newsgroup.")
1467
1468(defvar gnus-newsgroup-expunged-tally nil)
1469
1470(defvar gnus-newsgroup-marked nil
23f87bed
MB
1471 "Sorted list of ticked articles in the current newsgroup (a subset of unread art).")
1472
1473(defvar gnus-newsgroup-spam-marked nil
1474 "List of ranges of articles that have been marked as spam.")
eec82323
LMI
1475
1476(defvar gnus-newsgroup-killed nil
1477 "List of ranges of articles that have been through the scoring process.")
1478
1479(defvar gnus-newsgroup-cached nil
23f87bed 1480 "Sorted list of articles that come from the article cache.")
eec82323
LMI
1481
1482(defvar gnus-newsgroup-saved nil
1483 "List of articles that have been saved.")
1484
1485(defvar gnus-newsgroup-kill-headers nil)
1486
1487(defvar gnus-newsgroup-replied nil
1488 "List of articles that have been replied to in the current newsgroup.")
1489
23f87bed
MB
1490(defvar gnus-newsgroup-forwarded nil
1491 "List of articles that have been forwarded in the current newsgroup.")
1492
1493(defvar gnus-newsgroup-recent nil
1494 "List of articles that have are recent in the current newsgroup.")
1495
eec82323 1496(defvar gnus-newsgroup-expirable nil
23f87bed 1497 "Sorted list of articles in the current newsgroup that can be expired.")
eec82323
LMI
1498
1499(defvar gnus-newsgroup-processable nil
1500 "List of articles in the current newsgroup that can be processed.")
1501
6748645f 1502(defvar gnus-newsgroup-downloadable nil
23f87bed
MB
1503 "Sorted list of articles in the current newsgroup that can be processed.")
1504
1505(defvar gnus-newsgroup-unfetched nil
1506 "Sorted list of articles in the current newsgroup whose headers have
1507not been fetched into the agent.
1508
1509This list will always be a subset of gnus-newsgroup-undownloaded.")
6748645f
LMI
1510
1511(defvar gnus-newsgroup-undownloaded nil
23f87bed 1512 "List of articles in the current newsgroup that haven't been downloaded.")
6748645f
LMI
1513
1514(defvar gnus-newsgroup-unsendable nil
1515 "List of articles in the current newsgroup that won't be sent.")
1516
eec82323
LMI
1517(defvar gnus-newsgroup-bookmarks nil
1518 "List of articles in the current newsgroup that have bookmarks.")
1519
1520(defvar gnus-newsgroup-dormant nil
23f87bed
MB
1521 "Sorted list of dormant articles in the current newsgroup.")
1522
1523(defvar gnus-newsgroup-unseen nil
1524 "List of unseen articles in the current newsgroup.")
1525
1526(defvar gnus-newsgroup-seen nil
1527 "Range of seen articles in the current newsgroup.")
1528
1529(defvar gnus-newsgroup-articles nil
1530 "List of articles in the current newsgroup.")
eec82323
LMI
1531
1532(defvar gnus-newsgroup-scored nil
1533 "List of scored articles in the current newsgroup.")
1534
1535(defvar gnus-newsgroup-headers nil
1536 "List of article headers in the current newsgroup.")
1537
1538(defvar gnus-newsgroup-threads nil)
1539
1540(defvar gnus-newsgroup-prepared nil
1541 "Whether the current group has been prepared properly.")
1542
1543(defvar gnus-newsgroup-ancient nil
1544 "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1545
1546(defvar gnus-newsgroup-sparse nil)
1547
1548(defvar gnus-current-article nil)
1549(defvar gnus-article-current nil)
1550(defvar gnus-current-headers nil)
1551(defvar gnus-have-all-headers nil)
1552(defvar gnus-last-article nil)
1553(defvar gnus-newsgroup-history nil)
16409b0b
GM
1554(defvar gnus-newsgroup-charset nil)
1555(defvar gnus-newsgroup-ephemeral-charset nil)
1556(defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
eec82323 1557
23f87bed
MB
1558(defvar gnus-article-before-search nil)
1559
1560(defvar gnus-summary-local-variables
eec82323 1561 '(gnus-newsgroup-name
b1ae92ba
G
1562
1563 ;; Marks lists
1564 gnus-newsgroup-unreads
1565 gnus-newsgroup-unselected
1566 gnus-newsgroup-marked
1567 gnus-newsgroup-spam-marked
1568 gnus-newsgroup-reads
1569 gnus-newsgroup-saved
1570 gnus-newsgroup-replied
1571 gnus-newsgroup-forwarded
1572 gnus-newsgroup-recent
1573 gnus-newsgroup-expirable
1574 gnus-newsgroup-killed
1575 gnus-newsgroup-unseen
1576 gnus-newsgroup-seen
1577 gnus-newsgroup-cached
1578 gnus-newsgroup-downloadable
1579 gnus-newsgroup-undownloaded
1580 gnus-newsgroup-unsendable
1581
eec82323
LMI
1582 gnus-newsgroup-begin gnus-newsgroup-end
1583 gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1584 gnus-newsgroup-last-folder gnus-newsgroup-last-file
26c9afc3 1585 gnus-newsgroup-last-directory
b1ae92ba
G
1586 gnus-newsgroup-auto-expire
1587 gnus-newsgroup-processable
23f87bed 1588 gnus-newsgroup-unfetched
b1ae92ba 1589 gnus-newsgroup-articles
eec82323
LMI
1590 gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1591 gnus-newsgroup-headers gnus-newsgroup-threads
1592 gnus-newsgroup-prepared gnus-summary-highlight-line-function
1593 gnus-current-article gnus-current-headers gnus-have-all-headers
1594 gnus-last-article gnus-article-internal-prepare-hook
ed797193
G
1595 (gnus-summary-article-delete-hook . global)
1596 (gnus-summary-article-move-hook . global)
eec82323
LMI
1597 gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1598 gnus-newsgroup-scored gnus-newsgroup-kill-headers
1599 gnus-thread-expunge-below
16409b0b
GM
1600 gnus-score-alist gnus-current-score-file
1601 (gnus-summary-expunge-below . global)
eec82323 1602 (gnus-summary-mark-below . global)
16409b0b 1603 (gnus-orphan-score . global)
eec82323 1604 gnus-newsgroup-active gnus-scores-exclude-files
9f2d52e7 1605 gnus-newsgroup-highest
eec82323
LMI
1606 gnus-newsgroup-history gnus-newsgroup-ancient
1607 gnus-newsgroup-sparse gnus-newsgroup-process-stack
1608 (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1609 gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1610 (gnus-newsgroup-expunged-tally . 0)
b1ae92ba 1611 gnus-cache-removable-articles
eec82323 1612 gnus-newsgroup-data gnus-newsgroup-data-reverse
16409b0b 1613 gnus-newsgroup-limit gnus-newsgroup-limits
23f87bed
MB
1614 gnus-newsgroup-charset gnus-newsgroup-display
1615 gnus-summary-use-undownloaded-faces)
eec82323
LMI
1616 "Variables that are buffer-local to the summary buffers.")
1617
23f87bed
MB
1618(defvar gnus-newsgroup-variables nil
1619 "A list of variables that have separate values in different newsgroups.
1620A list of newsgroup (summary buffer) local variables, or cons of
1621variables and their default expressions to be evalled (when the default
1622values are not nil), that should be made global while the summary buffer
1623is active.
1624
1625Note: The default expressions will be evaluated (using function `eval')
1626before assignment to the local variable rather than just assigned to it.
1627If the default expression is the symbol `global', that symbol will not
1628be evaluated but the global value of the local variable will be used
1629instead.
1630
1631These variables can be used to set variables in the group parameters
1632while still allowing them to affect operations done in other buffers.
1633For example:
1634
1635\(setq gnus-newsgroup-variables
1636 '(message-use-followup-to
1637 (gnus-visible-headers .
1638 \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1639")
1640
23f87bed
MB
1641(eval-when-compile
1642 ;; Bind features so that require will believe that gnus-sum has
1643 ;; already been loaded (avoids infinite recursion)
1644 (let ((features (cons 'gnus-sum features)))
23f87bed 1645 (require 'gnus-art)))
eec82323 1646
16409b0b
GM
1647;; MIME stuff.
1648
1649(defvar gnus-decode-encoded-word-methods
1650 '(mail-decode-encoded-word-string)
1651 "List of methods used to decode encoded words.
1652
23f87bed
MB
1653This variable is a list of FUNCTION or (REGEXP . FUNCTION). If item
1654is FUNCTION, FUNCTION will be apply to all newsgroups. If item is a
1655\(REGEXP . FUNCTION), FUNCTION will be only apply to thes newsgroups
16409b0b
GM
1656whose names match REGEXP.
1657
1658For example:
23f87bed 1659\((\"chinese\" . gnus-decode-encoded-word-string-by-guess)
16409b0b
GM
1660 mail-decode-encoded-word-string
1661 (\"chinese\" . rfc1843-decode-string))")
1662
1663(defvar gnus-decode-encoded-word-methods-cache nil)
1664
1665(defun gnus-multi-decode-encoded-word-string (string)
1666 "Apply the functions from `gnus-encoded-word-methods' that match."
1667 (unless (and gnus-decode-encoded-word-methods-cache
1668 (eq gnus-newsgroup-name
1669 (car gnus-decode-encoded-word-methods-cache)))
1670 (setq gnus-decode-encoded-word-methods-cache (list gnus-newsgroup-name))
01c52d31
MB
1671 (dolist (method gnus-decode-encoded-word-methods)
1672 (if (symbolp method)
1673 (nconc gnus-decode-encoded-word-methods-cache (list method))
1674 (if (and gnus-newsgroup-name
1675 (string-match (car method) gnus-newsgroup-name))
1676 (nconc gnus-decode-encoded-word-methods-cache
1677 (list (cdr method)))))))
1678 (dolist (method (cdr gnus-decode-encoded-word-methods-cache) string)
1679 (setq string (funcall method string))))
16409b0b 1680
eec82323
LMI
1681;; Subject simplification.
1682
6748645f 1683(defun gnus-simplify-whitespace (str)
16409b0b 1684 "Remove excessive whitespace from STR."
23f87bed
MB
1685 ;; Multiple spaces.
1686 (while (string-match "[ \t][ \t]+" str)
1687 (setq str (concat (substring str 0 (match-beginning 0))
1688 " "
1689 (substring str (match-end 0)))))
1690 ;; Leading spaces.
1691 (when (string-match "^[ \t]+" str)
1692 (setq str (substring str (match-end 0))))
1693 ;; Trailing spaces.
1694 (when (string-match "[ \t]+$" str)
1695 (setq str (substring str 0 (match-beginning 0))))
1696 str)
1697
1698(defun gnus-simplify-all-whitespace (str)
1699 "Remove all whitespace from STR."
1700 (while (string-match "[ \t\n]+" str)
1701 (setq str (replace-match "" nil nil str)))
1702 str)
6748645f 1703
eec82323
LMI
1704(defsubst gnus-simplify-subject-re (subject)
1705 "Remove \"Re:\" from subject lines."
23f87bed 1706 (if (string-match message-subject-re-regexp subject)
eec82323
LMI
1707 (substring subject (match-end 0))
1708 subject))
1709
1710(defun gnus-simplify-subject (subject &optional re-only)
1711 "Remove `Re:' and words in parentheses.
1712If RE-ONLY is non-nil, strip leading `Re:'s only."
1713 (let ((case-fold-search t)) ;Ignore case.
1714 ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1715 (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1716 (setq subject (substring subject (match-end 0))))
1717 ;; Remove uninteresting prefixes.
1718 (when (and (not re-only)
1719 gnus-simplify-ignored-prefixes
1720 (string-match gnus-simplify-ignored-prefixes subject))
1721 (setq subject (substring subject (match-end 0))))
1722 ;; Remove words in parentheses from end.
1723 (unless re-only
1724 (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1725 (setq subject (substring subject 0 (match-beginning 0)))))
1726 ;; Return subject string.
1727 subject))
1728
1729;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1730;; all whitespace.
1731(defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1732 (goto-char (point-min))
1733 (while (re-search-forward regexp nil t)
16409b0b 1734 (replace-match (or newtext ""))))
eec82323
LMI
1735
1736(defun gnus-simplify-buffer-fuzzy ()
1737 "Simplify string in the buffer fuzzily.
1738The string in the accessible portion of the current buffer is simplified.
1739It is assumed to be a single-line subject.
1740Whitespace is generally cleaned up, and miscellaneous leading/trailing
1741matter is removed. Additional things can be deleted by setting
16409b0b 1742`gnus-simplify-subject-fuzzy-regexp'."
eec82323
LMI
1743 (let ((case-fold-search t)
1744 (modified-tick))
1745 (gnus-simplify-buffer-fuzzy-step "\t" " ")
1746
1747 (while (not (eq modified-tick (buffer-modified-tick)))
1748 (setq modified-tick (buffer-modified-tick))
1749 (cond
1750 ((listp gnus-simplify-subject-fuzzy-regexp)
01c52d31
MB
1751 (mapc 'gnus-simplify-buffer-fuzzy-step
1752 gnus-simplify-subject-fuzzy-regexp))
eec82323
LMI
1753 (gnus-simplify-subject-fuzzy-regexp
1754 (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1755 (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1756 (gnus-simplify-buffer-fuzzy-step
1757 "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1758 (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1759
1760 (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1761 (gnus-simplify-buffer-fuzzy-step " +" " ")
1762 (gnus-simplify-buffer-fuzzy-step " $")
1763 (gnus-simplify-buffer-fuzzy-step "^ +")))
1764
1765(defun gnus-simplify-subject-fuzzy (subject)
1766 "Simplify a subject string fuzzily.
6748645f 1767See `gnus-simplify-buffer-fuzzy' for details."
eec82323
LMI
1768 (save-excursion
1769 (gnus-set-work-buffer)
1770 (let ((case-fold-search t))
6748645f
LMI
1771 ;; Remove uninteresting prefixes.
1772 (when (and gnus-simplify-ignored-prefixes
1773 (string-match gnus-simplify-ignored-prefixes subject))
1774 (setq subject (substring subject (match-end 0))))
eec82323
LMI
1775 (insert subject)
1776 (inline (gnus-simplify-buffer-fuzzy))
1777 (buffer-string))))
1778
1779(defsubst gnus-simplify-subject-fully (subject)
23f87bed 1780 "Simplify a subject string according to `gnus-summary-gather-subject-limit'."
eec82323 1781 (cond
6748645f
LMI
1782 (gnus-simplify-subject-functions
1783 (gnus-map-function gnus-simplify-subject-functions subject))
eec82323
LMI
1784 ((null gnus-summary-gather-subject-limit)
1785 (gnus-simplify-subject-re subject))
1786 ((eq gnus-summary-gather-subject-limit 'fuzzy)
1787 (gnus-simplify-subject-fuzzy subject))
1788 ((numberp gnus-summary-gather-subject-limit)
01c52d31
MB
1789 (truncate-string-to-width (gnus-simplify-subject-re subject)
1790 gnus-summary-gather-subject-limit))
eec82323
LMI
1791 (t
1792 subject)))
1793
1794(defsubst gnus-subject-equal (s1 s2 &optional simple-first)
6748645f 1795 "Check whether two subjects are equal.
23f87bed 1796If optional argument SIMPLE-FIRST is t, first argument is already
6748645f 1797simplified."
eec82323
LMI
1798 (cond
1799 ((null simple-first)
1800 (equal (gnus-simplify-subject-fully s1)
1801 (gnus-simplify-subject-fully s2)))
1802 (t
1803 (equal s1
1804 (gnus-simplify-subject-fully s2)))))
1805
1806(defun gnus-summary-bubble-group ()
1807 "Increase the score of the current group.
1808This is a handy function to add to `gnus-summary-exit-hook' to
1809increase the score of each group you read."
1810 (gnus-group-add-score gnus-newsgroup-name))
1811
1812\f
1813;;;
1814;;; Gnus summary mode
1815;;;
1816
1817(put 'gnus-summary-mode 'mode-class 'special)
1818
1653df0f
SZ
1819(defvar gnus-article-commands-menu)
1820
23f87bed
MB
1821;; Non-orthogonal keys
1822
1823(gnus-define-keys gnus-summary-mode-map
1824 " " gnus-summary-next-page
1825 "\177" gnus-summary-prev-page
1826 [delete] gnus-summary-prev-page
1827 [backspace] gnus-summary-prev-page
1828 "\r" gnus-summary-scroll-up
1829 "\M-\r" gnus-summary-scroll-down
1830 "n" gnus-summary-next-unread-article
1831 "p" gnus-summary-prev-unread-article
1832 "N" gnus-summary-next-article
1833 "P" gnus-summary-prev-article
1834 "\M-\C-n" gnus-summary-next-same-subject
1835 "\M-\C-p" gnus-summary-prev-same-subject
1836 "\M-n" gnus-summary-next-unread-subject
1837 "\M-p" gnus-summary-prev-unread-subject
1838 "." gnus-summary-first-unread-article
1839 "," gnus-summary-best-unread-article
1840 "\M-s" gnus-summary-search-article-forward
1841 "\M-r" gnus-summary-search-article-backward
01c52d31
MB
1842 "\M-S" gnus-summary-repeat-search-article-forward
1843 "\M-R" gnus-summary-repeat-search-article-backward
23f87bed
MB
1844 "<" gnus-summary-beginning-of-article
1845 ">" gnus-summary-end-of-article
1846 "j" gnus-summary-goto-article
1847 "^" gnus-summary-refer-parent-article
1848 "\M-^" gnus-summary-refer-article
1849 "u" gnus-summary-tick-article-forward
1850 "!" gnus-summary-tick-article-forward
1851 "U" gnus-summary-tick-article-backward
1852 "d" gnus-summary-mark-as-read-forward
1853 "D" gnus-summary-mark-as-read-backward
1854 "E" gnus-summary-mark-as-expirable
1855 "\M-u" gnus-summary-clear-mark-forward
1856 "\M-U" gnus-summary-clear-mark-backward
1857 "k" gnus-summary-kill-same-subject-and-select
1858 "\C-k" gnus-summary-kill-same-subject
1859 "\M-\C-k" gnus-summary-kill-thread
1860 "\M-\C-l" gnus-summary-lower-thread
1861 "e" gnus-summary-edit-article
1862 "#" gnus-summary-mark-as-processable
1863 "\M-#" gnus-summary-unmark-as-processable
1864 "\M-\C-t" gnus-summary-toggle-threads
1865 "\M-\C-s" gnus-summary-show-thread
1866 "\M-\C-h" gnus-summary-hide-thread
1867 "\M-\C-f" gnus-summary-next-thread
1868 "\M-\C-b" gnus-summary-prev-thread
1869 [(meta down)] gnus-summary-next-thread
1870 [(meta up)] gnus-summary-prev-thread
1871 "\M-\C-u" gnus-summary-up-thread
1872 "\M-\C-d" gnus-summary-down-thread
1873 "&" gnus-summary-execute-command
1874 "c" gnus-summary-catchup-and-exit
1875 "\C-w" gnus-summary-mark-region-as-read
1876 "\C-t" gnus-summary-toggle-truncation
1877 "?" gnus-summary-mark-as-dormant
1878 "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1879 "\C-c\C-s\C-n" gnus-summary-sort-by-number
6ecfe5c2 1880 "\C-c\C-s\C-m\C-n" gnus-summary-sort-by-most-recent-number
23f87bed
MB
1881 "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1882 "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1883 "\C-c\C-s\C-a" gnus-summary-sort-by-author
01c52d31 1884 "\C-c\C-s\C-t" gnus-summary-sort-by-recipient
23f87bed
MB
1885 "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1886 "\C-c\C-s\C-d" gnus-summary-sort-by-date
6ecfe5c2 1887 "\C-c\C-s\C-m\C-d" gnus-summary-sort-by-most-recent-date
23f87bed
MB
1888 "\C-c\C-s\C-i" gnus-summary-sort-by-score
1889 "\C-c\C-s\C-o" gnus-summary-sort-by-original
1890 "\C-c\C-s\C-r" gnus-summary-sort-by-random
1891 "=" gnus-summary-expand-window
1892 "\C-x\C-s" gnus-summary-reselect-current-group
1893 "\M-g" gnus-summary-rescan-group
23f87bed
MB
1894 "\C-c\C-r" gnus-summary-caesar-message
1895 "f" gnus-summary-followup
1896 "F" gnus-summary-followup-with-original
1897 "C" gnus-summary-cancel-article
1898 "r" gnus-summary-reply
1899 "R" gnus-summary-reply-with-original
1900 "\C-c\C-f" gnus-summary-mail-forward
1901 "o" gnus-summary-save-article
1902 "\C-o" gnus-summary-save-article-mail
1903 "|" gnus-summary-pipe-output
1904 "\M-k" gnus-summary-edit-local-kill
1905 "\M-K" gnus-summary-edit-global-kill
1906 ;; "V" gnus-version
1907 "\C-c\C-d" gnus-summary-describe-group
1908 "q" gnus-summary-exit
1909 "Q" gnus-summary-exit-no-update
1910 "\C-c\C-i" gnus-info-find-node
1911 gnus-mouse-2 gnus-mouse-pick-article
132cf96d 1912 [follow-link] mouse-face
23f87bed
MB
1913 "m" gnus-summary-mail-other-window
1914 "a" gnus-summary-post-news
23f87bed
MB
1915 "x" gnus-summary-limit-to-unread
1916 "s" gnus-summary-isearch-article
d50717f0 1917 [tab] gnus-summary-widget-forward
23f87bed
MB
1918 "t" gnus-summary-toggle-header
1919 "g" gnus-summary-show-article
1920 "l" gnus-summary-goto-last-article
1921 "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1922 "\C-d" gnus-summary-enter-digest-group
1923 "\M-\C-d" gnus-summary-read-document
1924 "\M-\C-e" gnus-summary-edit-parameters
1925 "\M-\C-a" gnus-summary-customize-parameters
1926 "\C-c\C-b" gnus-bug
1927 "*" gnus-cache-enter-article
1928 "\M-*" gnus-cache-remove-article
1929 "\M-&" gnus-summary-universal-argument
1930 "\C-l" gnus-recenter
1931 "I" gnus-summary-increase-score
1932 "L" gnus-summary-lower-score
1933 "\M-i" gnus-symbolic-argument
1934 "h" gnus-summary-select-article-buffer
1935
1936 "b" gnus-article-view-part
1937 "\M-t" gnus-summary-toggle-display-buttonized
1938
1939 "V" gnus-summary-score-map
1940 "X" gnus-uu-extract-map
1941 "S" gnus-summary-send-map)
1942
1943;; Sort of orthogonal keymap
1944(gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1945 "t" gnus-summary-tick-article-forward
1946 "!" gnus-summary-tick-article-forward
1947 "d" gnus-summary-mark-as-read-forward
1948 "r" gnus-summary-mark-as-read-forward
1949 "c" gnus-summary-clear-mark-forward
1950 " " gnus-summary-clear-mark-forward
1951 "e" gnus-summary-mark-as-expirable
1952 "x" gnus-summary-mark-as-expirable
1953 "?" gnus-summary-mark-as-dormant
1954 "b" gnus-summary-set-bookmark
1955 "B" gnus-summary-remove-bookmark
1956 "#" gnus-summary-mark-as-processable
1957 "\M-#" gnus-summary-unmark-as-processable
1958 "S" gnus-summary-limit-include-expunged
1959 "C" gnus-summary-catchup
1960 "H" gnus-summary-catchup-to-here
1961 "h" gnus-summary-catchup-from-here
1962 "\C-c" gnus-summary-catchup-all
1963 "k" gnus-summary-kill-same-subject-and-select
1964 "K" gnus-summary-kill-same-subject
1965 "P" gnus-uu-mark-map)
1966
1967(gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1968 "c" gnus-summary-clear-above
1969 "u" gnus-summary-tick-above
1970 "m" gnus-summary-mark-above
1971 "k" gnus-summary-kill-below)
1972
1973(gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1974 "/" gnus-summary-limit-to-subject
1975 "n" gnus-summary-limit-to-articles
01c52d31
MB
1976 "b" gnus-summary-limit-to-bodies
1977 "h" gnus-summary-limit-to-headers
23f87bed
MB
1978 "w" gnus-summary-pop-limit
1979 "s" gnus-summary-limit-to-subject
1980 "a" gnus-summary-limit-to-author
1981 "u" gnus-summary-limit-to-unread
1982 "m" gnus-summary-limit-to-marks
1983 "M" gnus-summary-limit-exclude-marks
1984 "v" gnus-summary-limit-to-score
1985 "*" gnus-summary-limit-include-cached
1986 "D" gnus-summary-limit-include-dormant
1987 "T" gnus-summary-limit-include-thread
1988 "d" gnus-summary-limit-exclude-dormant
1989 "t" gnus-summary-limit-to-age
1990 "." gnus-summary-limit-to-unseen
1991 "x" gnus-summary-limit-to-extra
1992 "p" gnus-summary-limit-to-display-predicate
1993 "E" gnus-summary-limit-include-expunged
1994 "c" gnus-summary-limit-exclude-childless-dormant
1995 "C" gnus-summary-limit-mark-excluded-as-read
1996 "o" gnus-summary-insert-old-articles
01c52d31
MB
1997 "N" gnus-summary-insert-new-articles
1998 "S" gnus-summary-limit-to-singletons
1999 "r" gnus-summary-limit-to-replied
2000 "R" gnus-summary-limit-to-recipient
2001 "A" gnus-summary-limit-to-address)
23f87bed
MB
2002
2003(gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
2004 "n" gnus-summary-next-unread-article
2005 "p" gnus-summary-prev-unread-article
2006 "N" gnus-summary-next-article
2007 "P" gnus-summary-prev-article
2008 "\C-n" gnus-summary-next-same-subject
2009 "\C-p" gnus-summary-prev-same-subject
2010 "\M-n" gnus-summary-next-unread-subject
2011 "\M-p" gnus-summary-prev-unread-subject
2012 "f" gnus-summary-first-unread-article
2013 "b" gnus-summary-best-unread-article
2014 "j" gnus-summary-goto-article
2015 "g" gnus-summary-goto-subject
2016 "l" gnus-summary-goto-last-article
2017 "o" gnus-summary-pop-article)
2018
2019(gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
2020 "k" gnus-summary-kill-thread
01c52d31 2021 "E" gnus-summary-expire-thread
23f87bed
MB
2022 "l" gnus-summary-lower-thread
2023 "i" gnus-summary-raise-thread
2024 "T" gnus-summary-toggle-threads
2025 "t" gnus-summary-rethread-current
2026 "^" gnus-summary-reparent-thread
01c52d31 2027 "\M-^" gnus-summary-reparent-children
23f87bed
MB
2028 "s" gnus-summary-show-thread
2029 "S" gnus-summary-show-all-threads
2030 "h" gnus-summary-hide-thread
2031 "H" gnus-summary-hide-all-threads
2032 "n" gnus-summary-next-thread
2033 "p" gnus-summary-prev-thread
2034 "u" gnus-summary-up-thread
2035 "o" gnus-summary-top-thread
2036 "d" gnus-summary-down-thread
2037 "#" gnus-uu-mark-thread
2038 "\M-#" gnus-uu-unmark-thread)
2039
2040(gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
2041 "g" gnus-summary-prepare
2042 "c" gnus-summary-insert-cached-articles
01c52d31
MB
2043 "d" gnus-summary-insert-dormant-articles
2044 "t" gnus-summary-insert-ticked-articles)
23f87bed
MB
2045
2046(gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
2047 "c" gnus-summary-catchup-and-exit
2048 "C" gnus-summary-catchup-all-and-exit
2049 "E" gnus-summary-exit-no-update
2050 "Q" gnus-summary-exit
2051 "Z" gnus-summary-exit
2052 "n" gnus-summary-catchup-and-goto-next-group
01c52d31 2053 "p" gnus-summary-catchup-and-goto-prev-group
23f87bed
MB
2054 "R" gnus-summary-reselect-current-group
2055 "G" gnus-summary-rescan-group
2056 "N" gnus-summary-next-group
2057 "s" gnus-summary-save-newsrc
2058 "P" gnus-summary-prev-group)
2059
2060(gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
2061 " " gnus-summary-next-page
2062 "n" gnus-summary-next-page
2063 "\177" gnus-summary-prev-page
2064 [delete] gnus-summary-prev-page
2065 "p" gnus-summary-prev-page
2066 "\r" gnus-summary-scroll-up
2067 "\M-\r" gnus-summary-scroll-down
2068 "<" gnus-summary-beginning-of-article
2069 ">" gnus-summary-end-of-article
2070 "b" gnus-summary-beginning-of-article
2071 "e" gnus-summary-end-of-article
2072 "^" gnus-summary-refer-parent-article
2073 "r" gnus-summary-refer-parent-article
8ccbef23 2074 "C" gnus-summary-show-complete-article
23f87bed
MB
2075 "D" gnus-summary-enter-digest-group
2076 "R" gnus-summary-refer-references
2077 "T" gnus-summary-refer-thread
4ddab346 2078 "W" gnus-warp-to-article
23f87bed
MB
2079 "g" gnus-summary-show-article
2080 "s" gnus-summary-isearch-article
d50717f0 2081 [tab] gnus-summary-widget-forward
23f87bed 2082 "P" gnus-summary-print-article
01c52d31 2083 "S" gnus-sticky-article
23f87bed
MB
2084 "M" gnus-mailing-list-insinuate
2085 "t" gnus-article-babel)
2086
2087(gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
2088 "b" gnus-article-add-buttons
2089 "B" gnus-article-add-buttons-to-head
2090 "o" gnus-article-treat-overstrike
2091 "e" gnus-article-emphasize
2092 "w" gnus-article-fill-cited-article
2093 "Q" gnus-article-fill-long-lines
01c52d31 2094 "L" gnus-article-toggle-truncate-lines
23f87bed
MB
2095 "C" gnus-article-capitalize-sentences
2096 "c" gnus-article-remove-cr
2097 "q" gnus-article-de-quoted-unreadable
2098 "6" gnus-article-de-base64-unreadable
2099 "Z" gnus-article-decode-HZ
01c52d31 2100 "A" gnus-article-treat-ansi-sequences
23f87bed
MB
2101 "h" gnus-article-wash-html
2102 "u" gnus-article-unsplit-urls
2103 "s" gnus-summary-force-verify-and-decrypt
2104 "f" gnus-article-display-x-face
2105 "l" gnus-summary-stop-page-breaking
2106 "r" gnus-summary-caesar-message
2107 "m" gnus-summary-morse-message
2108 "t" gnus-summary-toggle-header
2109 "g" gnus-treat-smiley
2110 "v" gnus-summary-verbose-headers
2111 "a" gnus-article-strip-headers-in-body ;; mnemonic: wash archive
2112 "p" gnus-article-verify-x-pgp-sig
01c52d31 2113 "d" gnus-article-treat-dumbquotes
be3c11b3 2114 "U" gnus-article-treat-non-ascii
01c52d31 2115 "i" gnus-summary-idna-message)
23f87bed
MB
2116
2117(gnus-define-keys (gnus-summary-wash-deuglify-map "Y" gnus-summary-wash-map)
2118 ;; mnemonic: deuglif*Y*
2119 "u" gnus-article-outlook-unwrap-lines
2120 "a" gnus-article-outlook-repair-attribution
2121 "c" gnus-article-outlook-rearrange-citation
2122 "f" gnus-article-outlook-deuglify-article) ;; mnemonic: full deuglify
2123
2124(gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
2125 "a" gnus-article-hide
2126 "h" gnus-article-hide-headers
2127 "b" gnus-article-hide-boring-headers
2128 "s" gnus-article-hide-signature
2129 "c" gnus-article-hide-citation
2130 "C" gnus-article-hide-citation-in-followups
2131 "l" gnus-article-hide-list-identifiers
2132 "B" gnus-article-strip-banner
2133 "P" gnus-article-hide-pem
2134 "\C-c" gnus-article-hide-citation-maybe)
2135
2136(gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
2137 "a" gnus-article-highlight
2138 "h" gnus-article-highlight-headers
2139 "c" gnus-article-highlight-citation
2140 "s" gnus-article-highlight-signature)
2141
2142(gnus-define-keys (gnus-summary-wash-header-map "G" gnus-summary-wash-map)
2143 "f" gnus-article-treat-fold-headers
2144 "u" gnus-article-treat-unfold-headers
2145 "n" gnus-article-treat-fold-newsgroups)
2146
2147(gnus-define-keys (gnus-summary-wash-display-map "D" gnus-summary-wash-map)
2148 "x" gnus-article-display-x-face
2149 "d" gnus-article-display-face
2150 "s" gnus-treat-smiley
2151 "D" gnus-article-remove-images
8b6f6573 2152 "W" gnus-article-show-images
23f87bed
MB
2153 "f" gnus-treat-from-picon
2154 "m" gnus-treat-mail-picon
61b1af82
G
2155 "n" gnus-treat-newsgroups-picon
2156 "g" gnus-treat-from-gravatar
2157 "h" gnus-treat-mail-gravatar)
23f87bed
MB
2158
2159(gnus-define-keys (gnus-summary-wash-mime-map "M" gnus-summary-wash-map)
2160 "w" gnus-article-decode-mime-words
2161 "c" gnus-article-decode-charset
2162 "v" gnus-mime-view-all-parts
2163 "b" gnus-article-view-part)
2164
2165(gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
2166 "z" gnus-article-date-ut
2167 "u" gnus-article-date-ut
2168 "l" gnus-article-date-local
2169 "p" gnus-article-date-english
2170 "e" gnus-article-date-lapsed
2171 "o" gnus-article-date-original
2172 "i" gnus-article-date-iso8601
2173 "s" gnus-article-date-user)
2174
2175(gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
2176 "t" gnus-article-remove-trailing-blank-lines
2177 "l" gnus-article-strip-leading-blank-lines
2178 "m" gnus-article-strip-multiple-blank-lines
2179 "a" gnus-article-strip-blank-lines
2180 "A" gnus-article-strip-all-blank-lines
2181 "s" gnus-article-strip-leading-space
2182 "e" gnus-article-strip-trailing-space
2183 "w" gnus-article-remove-leading-whitespace)
2184
2185(gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
2186 "v" gnus-version
23f87bed
MB
2187 "d" gnus-summary-describe-group
2188 "h" gnus-summary-describe-briefly
837ba704 2189 "i" gnus-info-find-node)
23f87bed
MB
2190
2191(gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
2192 "e" gnus-summary-expire-articles
2193 "\M-\C-e" gnus-summary-expire-articles-now
2194 "\177" gnus-summary-delete-article
2195 [delete] gnus-summary-delete-article
2196 [backspace] gnus-summary-delete-article
2197 "m" gnus-summary-move-article
2198 "r" gnus-summary-respool-article
2199 "w" gnus-summary-edit-article
2200 "c" gnus-summary-copy-article
2201 "B" gnus-summary-crosspost-article
2202 "q" gnus-summary-respool-query
2203 "t" gnus-summary-respool-trace
2204 "i" gnus-summary-import-article
2205 "I" gnus-summary-create-article
2206 "p" gnus-summary-article-posted-p)
2207
2208(gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
2209 "o" gnus-summary-save-article
2210 "m" gnus-summary-save-article-mail
2211 "F" gnus-summary-write-article-file
2212 "r" gnus-summary-save-article-rmail
2213 "f" gnus-summary-save-article-file
2214 "b" gnus-summary-save-article-body-file
26c9afc3 2215 "B" gnus-summary-write-article-body-file
23f87bed
MB
2216 "h" gnus-summary-save-article-folder
2217 "v" gnus-summary-save-article-vm
2218 "p" gnus-summary-pipe-output
c4d82de8 2219 "P" gnus-summary-muttprint)
23f87bed
MB
2220
2221(gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
2222 "b" gnus-summary-display-buttonized
2223 "m" gnus-summary-repair-multipart
2224 "v" gnus-article-view-part
2225 "o" gnus-article-save-part
01c52d31
MB
2226 "O" gnus-article-save-part-and-strip
2227 "r" gnus-article-replace-part
2228 "d" gnus-article-delete-part
2229 "t" gnus-article-view-part-as-type
2230 "j" gnus-article-jump-to-part
23f87bed
MB
2231 "c" gnus-article-copy-part
2232 "C" gnus-article-view-part-as-charset
2233 "e" gnus-article-view-part-externally
01c52d31 2234 "H" gnus-article-browse-html-article
23f87bed
MB
2235 "E" gnus-article-encrypt-body
2236 "i" gnus-article-inline-part
2237 "|" gnus-article-pipe-part)
2238
2239(gnus-define-keys (gnus-uu-mark-map "P" gnus-summary-mark-map)
2240 "p" gnus-summary-mark-as-processable
2241 "u" gnus-summary-unmark-as-processable
2242 "U" gnus-summary-unmark-all-processable
2243 "v" gnus-uu-mark-over
2244 "s" gnus-uu-mark-series
2245 "r" gnus-uu-mark-region
2246 "g" gnus-uu-unmark-region
2247 "R" gnus-uu-mark-by-regexp
2248 "G" gnus-uu-unmark-by-regexp
2249 "t" gnus-uu-mark-thread
2250 "T" gnus-uu-unmark-thread
2251 "a" gnus-uu-mark-all
2252 "b" gnus-uu-mark-buffer
2253 "S" gnus-uu-mark-sparse
2254 "k" gnus-summary-kill-process-mark
2255 "y" gnus-summary-yank-process-mark
2256 "w" gnus-summary-save-process-mark
2257 "i" gnus-uu-invert-processable)
2258
2259(gnus-define-keys (gnus-uu-extract-map "X" gnus-summary-mode-map)
2260 ;;"x" gnus-uu-extract-any
2261 "m" gnus-summary-save-parts
2262 "u" gnus-uu-decode-uu
2263 "U" gnus-uu-decode-uu-and-save
2264 "s" gnus-uu-decode-unshar
2265 "S" gnus-uu-decode-unshar-and-save
2266 "o" gnus-uu-decode-save
2267 "O" gnus-uu-decode-save
2268 "b" gnus-uu-decode-binhex
2269 "B" gnus-uu-decode-binhex
b890d447 2270 "Y" gnus-uu-decode-yenc
23f87bed
MB
2271 "p" gnus-uu-decode-postscript
2272 "P" gnus-uu-decode-postscript-and-save)
2273
2274(gnus-define-keys
2275 (gnus-uu-extract-view-map "v" gnus-uu-extract-map)
2276 "u" gnus-uu-decode-uu-view
2277 "U" gnus-uu-decode-uu-and-save-view
2278 "s" gnus-uu-decode-unshar-view
2279 "S" gnus-uu-decode-unshar-and-save-view
2280 "o" gnus-uu-decode-save-view
2281 "O" gnus-uu-decode-save-view
2282 "b" gnus-uu-decode-binhex-view
2283 "B" gnus-uu-decode-binhex-view
2284 "p" gnus-uu-decode-postscript-view
2285 "P" gnus-uu-decode-postscript-and-save-view)
2286
2287(defvar gnus-article-post-menu nil)
2288
2289(defconst gnus-summary-menu-maxlen 20)
2290
2291(defun gnus-summary-menu-split (menu)
2292 ;; If we have lots of elements, divide them into groups of 20
2293 ;; and make a pane (or submenu) for each one.
2294 (if (> (length menu) (/ (* gnus-summary-menu-maxlen 3) 2))
2295 (let ((menu menu) sublists next
2296 (i 1))
2297 (while menu
2298 ;; Pull off the next gnus-summary-menu-maxlen elements
2299 ;; and make them the next element of sublist.
2300 (setq next (nthcdr gnus-summary-menu-maxlen menu))
2301 (if next
2302 (setcdr (nthcdr (1- gnus-summary-menu-maxlen) menu)
2303 nil))
2304 (setq sublists (cons (cons (format "%s ... %s" (aref (car menu) 0)
2305 (aref (car (last menu)) 0)) menu)
2306 sublists))
2307 (setq i (1+ i))
2308 (setq menu next))
2309 (nreverse sublists))
2310 ;; Few elements--put them all in one pane.
2311 menu))
eec82323
LMI
2312
2313(defun gnus-summary-make-menu-bar ()
2314 (gnus-turn-off-edit-menu 'summary)
2315
2316 (unless (boundp 'gnus-summary-misc-menu)
2317
2318 (easy-menu-define
23f87bed
MB
2319 gnus-summary-kill-menu gnus-summary-mode-map ""
2320 (cons
2321 "Score"
2322 (nconc
2323 (list
2324 ["Customize" gnus-score-customize t])
2325 (gnus-make-score-map 'increase)
2326 (gnus-make-score-map 'lower)
2327 '(("Mark"
2328 ["Kill below" gnus-summary-kill-below t]
2329 ["Mark above" gnus-summary-mark-above t]
2330 ["Tick above" gnus-summary-tick-above t]
2331 ["Clear above" gnus-summary-clear-above t])
2332 ["Current score" gnus-summary-current-score t]
2333 ["Set score" gnus-summary-set-score t]
2334 ["Switch current score file..." gnus-score-change-score-file t]
2335 ["Set mark below..." gnus-score-set-mark-below t]
2336 ["Set expunge below..." gnus-score-set-expunge-below t]
2337 ["Edit current score file" gnus-score-edit-current-scores t]
59429511 2338 ["Edit score file..." gnus-score-edit-file t]
23f87bed
MB
2339 ["Trace score" gnus-score-find-trace t]
2340 ["Find words" gnus-score-find-favourite-words t]
2341 ["Rescore buffer" gnus-summary-rescore t]
2342 ["Increase score..." gnus-summary-increase-score t]
2343 ["Lower score..." gnus-summary-lower-score t]))))
2344
2345 ;; Define both the Article menu in the summary buffer and the
2346 ;; equivalent Commands menu in the article buffer here for
2347 ;; consistency.
6748645f 2348 (let ((innards
23f87bed
MB
2349 `(("Hide"
2350 ["All" gnus-article-hide t]
2351 ["Headers" gnus-article-hide-headers t]
2352 ["Signature" gnus-article-hide-signature t]
2353 ["Citation" gnus-article-hide-citation t]
16409b0b 2354 ["List identifiers" gnus-article-hide-list-identifiers t]
16409b0b 2355 ["Banner" gnus-article-strip-banner t]
23f87bed
MB
2356 ["Boring headers" gnus-article-hide-boring-headers t])
2357 ("Highlight"
2358 ["All" gnus-article-highlight t]
2359 ["Headers" gnus-article-highlight-headers t]
2360 ["Signature" gnus-article-highlight-signature t]
2361 ["Citation" gnus-article-highlight-citation t])
16409b0b
GM
2362 ("MIME"
2363 ["Words" gnus-article-decode-mime-words t]
2364 ["Charset" gnus-article-decode-charset t]
2365 ["QP" gnus-article-de-quoted-unreadable t]
2366 ["Base64" gnus-article-de-base64-unreadable t]
23f87bed
MB
2367 ["View MIME buttons" gnus-summary-display-buttonized t]
2368 ["View all" gnus-mime-view-all-parts t]
2369 ["Verify and Decrypt" gnus-summary-force-verify-and-decrypt t]
2370 ["Encrypt body" gnus-article-encrypt-body
2371 :active (not (gnus-group-read-only-p))
2372 ,@(if (featurep 'xemacs) nil
2373 '(:help "Encrypt the message body on disk"))]
2374 ["Extract all parts..." gnus-summary-save-parts t]
2375 ("Multipart"
2376 ["Repair multipart" gnus-summary-repair-multipart t]
2377 ["Pipe part..." gnus-article-pipe-part t]
2378 ["Inline part" gnus-article-inline-part t]
01c52d31 2379 ["View part as type..." gnus-article-view-part-as-type t]
23f87bed
MB
2380 ["Encrypt body" gnus-article-encrypt-body
2381 :active (not (gnus-group-read-only-p))
2382 ,@(if (featurep 'xemacs) nil
2383 '(:help "Encrypt the message body on disk"))]
2384 ["View part externally" gnus-article-view-part-externally t]
01c52d31 2385 ["View HTML parts in browser" gnus-article-browse-html-article t]
23f87bed
MB
2386 ["View part with charset..." gnus-article-view-part-as-charset t]
2387 ["Copy part" gnus-article-copy-part t]
2388 ["Save part..." gnus-article-save-part t]
2389 ["View part" gnus-article-view-part t]))
2390 ("Date"
2391 ["Local" gnus-article-date-local t]
2392 ["ISO8601" gnus-article-date-iso8601 t]
2393 ["UT" gnus-article-date-ut t]
2394 ["Original" gnus-article-date-original t]
2395 ["Lapsed" gnus-article-date-lapsed t]
2396 ["User-defined" gnus-article-date-user t])
2397 ("Display"
2398 ["Remove images" gnus-article-remove-images t]
2399 ["Toggle smiley" gnus-treat-smiley t]
2400 ["Show X-Face" gnus-article-display-x-face t]
2401 ["Show picons in From" gnus-treat-from-picon t]
2402 ["Show picons in mail headers" gnus-treat-mail-picon t]
2403 ["Show picons in news headers" gnus-treat-newsgroups-picon t]
61b1af82
G
2404 ["Show Gravatars in From" gnus-treat-from-gravatar t]
2405 ["Show Gravatars in mail headers" gnus-treat-mail-gravatar t]
23f87bed
MB
2406 ("View as different encoding"
2407 ,@(gnus-summary-menu-split
2408 (mapcar
2409 (lambda (cs)
2410 ;; Since easymenu under Emacs doesn't allow
2411 ;; lambda forms for menu commands, we should
2412 ;; provide intern'ed function symbols.
2413 (let ((command (intern (format "\
2414gnus-summary-show-article-from-menu-as-charset-%s" cs))))
2415 (fset command
2416 `(lambda ()
2417 (interactive)
2418 (let ((gnus-summary-show-article-charset-alist
2419 '((1 . ,cs))))
2420 (gnus-summary-show-article 1))))
2421 `[,(symbol-name cs) ,command t]))
2422 (sort (if (fboundp 'coding-system-list)
2423 (coding-system-list)
2424 (mapcar 'car mm-mime-mule-charset-alist))
2425 'string<)))))
2426 ("Washing"
2427 ("Remove Blanks"
2428 ["Leading" gnus-article-strip-leading-blank-lines t]
2429 ["Multiple" gnus-article-strip-multiple-blank-lines t]
2430 ["Trailing" gnus-article-remove-trailing-blank-lines t]
2431 ["All of the above" gnus-article-strip-blank-lines t]
2432 ["All" gnus-article-strip-all-blank-lines t]
2433 ["Leading space" gnus-article-strip-leading-space t]
2434 ["Trailing space" gnus-article-strip-trailing-space t]
2435 ["Leading space in headers"
2436 gnus-article-remove-leading-whitespace t])
2437 ["Overstrike" gnus-article-treat-overstrike t]
2438 ["Dumb quotes" gnus-article-treat-dumbquotes t]
be3c11b3 2439 ["Non-ASCII" gnus-article-treat-non-ascii t]
23f87bed
MB
2440 ["Emphasis" gnus-article-emphasize t]
2441 ["Word wrap" gnus-article-fill-cited-article t]
16409b0b 2442 ["Fill long lines" gnus-article-fill-long-lines t]
01c52d31 2443 ["Toggle truncate long lines" gnus-article-toggle-truncate-lines t]
16409b0b 2444 ["Capitalize sentences" gnus-article-capitalize-sentences t]
23f87bed
MB
2445 ["Remove CR" gnus-article-remove-cr t]
2446 ["Quoted-Printable" gnus-article-de-quoted-unreadable t]
2447 ["Base64" gnus-article-de-base64-unreadable t]
2448 ["Rot 13" gnus-summary-caesar-message
2449 ,@(if (featurep 'xemacs) '(t)
2450 '(:help "\"Caesar rotate\" article by 13"))]
01c52d31 2451 ["De-IDNA" gnus-summary-idna-message t]
23f87bed
MB
2452 ["Morse decode" gnus-summary-morse-message t]
2453 ["Unix pipe..." gnus-summary-pipe-message t]
2454 ["Add buttons" gnus-article-add-buttons t]
2455 ["Add buttons to head" gnus-article-add-buttons-to-head t]
2456 ["Stop page breaking" gnus-summary-stop-page-breaking t]
2457 ["Verbose header" gnus-summary-verbose-headers t]
2458 ["Toggle header" gnus-summary-toggle-header t]
2459 ["Unfold headers" gnus-article-treat-unfold-headers t]
2460 ["Fold newsgroups" gnus-article-treat-fold-newsgroups t]
16409b0b 2461 ["Html" gnus-article-wash-html t]
23f87bed
MB
2462 ["Unsplit URLs" gnus-article-unsplit-urls t]
2463 ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
2464 ["Decode HZ" gnus-article-decode-HZ t]
01c52d31 2465 ["ANSI sequences" gnus-article-treat-ansi-sequences t]
23f87bed
MB
2466 ("(Outlook) Deuglify"
2467 ["Unwrap lines" gnus-article-outlook-unwrap-lines t]
2468 ["Repair attribution" gnus-article-outlook-repair-attribution t]
2469 ["Rearrange citation" gnus-article-outlook-rearrange-citation t]
2470 ["Full (Outlook) deuglify"
2471 gnus-article-outlook-deuglify-article t])
2472 )
2473 ("Output"
2474 ["Save in default format..." gnus-summary-save-article
2475 ,@(if (featurep 'xemacs) '(t)
2476 '(:help "Save article using default method"))]
2477 ["Save in file..." gnus-summary-save-article-file
2478 ,@(if (featurep 'xemacs) '(t)
2479 '(:help "Save article in file"))]
2480 ["Save in Unix mail format..." gnus-summary-save-article-mail t]
2481 ["Save in MH folder..." gnus-summary-save-article-folder t]
2482 ["Save in VM folder..." gnus-summary-save-article-vm t]
2483 ["Save in RMAIL mbox..." gnus-summary-save-article-rmail t]
2484 ["Save body in file..." gnus-summary-save-article-body-file t]
2485 ["Pipe through a filter..." gnus-summary-pipe-output t]
23f87bed 2486 ["Print with Muttprint..." gnus-summary-muttprint t]
531e5812
MB
2487 ["Print" gnus-summary-print-article
2488 ,@(if (featurep 'xemacs) '(t)
2489 '(:help "Generate and print a PostScript image"))])
2490 ("Copy, move,... (Backend)"
707f2b38 2491 ,@(if (featurep 'xemacs) nil
531e5812 2492 '(:help "Copying, moving, expiring articles..."))
23f87bed
MB
2493 ["Respool article..." gnus-summary-respool-article t]
2494 ["Move article..." gnus-summary-move-article
2495 (gnus-check-backend-function
2496 'request-move-article gnus-newsgroup-name)]
2497 ["Copy article..." gnus-summary-copy-article t]
2498 ["Crosspost article..." gnus-summary-crosspost-article
2499 (gnus-check-backend-function
2500 'request-replace-article gnus-newsgroup-name)]
2501 ["Import file..." gnus-summary-import-article
2502 (gnus-check-backend-function
2503 'request-accept-article gnus-newsgroup-name)]
2504 ["Create article..." gnus-summary-create-article
2505 (gnus-check-backend-function
2506 'request-accept-article gnus-newsgroup-name)]
2507 ["Check if posted" gnus-summary-article-posted-p t]
2508 ["Edit article" gnus-summary-edit-article
2509 (not (gnus-group-read-only-p))]
2510 ["Delete article" gnus-summary-delete-article
2511 (gnus-check-backend-function
2512 'request-expire-articles gnus-newsgroup-name)]
2513 ["Query respool" gnus-summary-respool-query t]
6748645f 2514 ["Trace respool" gnus-summary-respool-trace t]
23f87bed
MB
2515 ["Delete expirable articles" gnus-summary-expire-articles-now
2516 (gnus-check-backend-function
2517 'request-expire-articles gnus-newsgroup-name)])
2518 ("Extract"
2519 ["Uudecode" gnus-uu-decode-uu
2520 ,@(if (featurep 'xemacs) '(t)
2521 '(:help "Decode uuencoded article(s)"))]
2522 ["Uudecode and save" gnus-uu-decode-uu-and-save t]
2523 ["Unshar" gnus-uu-decode-unshar t]
2524 ["Unshar and save" gnus-uu-decode-unshar-and-save t]
2525 ["Save" gnus-uu-decode-save t]
2526 ["Binhex" gnus-uu-decode-binhex t]
2527 ["Postscript" gnus-uu-decode-postscript t]
2528 ["All MIME parts" gnus-summary-save-parts t])
2529 ("Cache"
2530 ["Enter article" gnus-cache-enter-article t]
2531 ["Remove article" gnus-cache-remove-article t])
16409b0b 2532 ["Translate" gnus-article-babel t]
23f87bed 2533 ["Select article buffer" gnus-summary-select-article-buffer t]
01c52d31 2534 ["Make article buffer sticky" gnus-sticky-article t]
23f87bed
MB
2535 ["Enter digest buffer" gnus-summary-enter-digest-group t]
2536 ["Isearch article..." gnus-summary-isearch-article t]
2537 ["Beginning of the article" gnus-summary-beginning-of-article t]
2538 ["End of the article" gnus-summary-end-of-article t]
2539 ["Fetch parent of article" gnus-summary-refer-parent-article t]
2540 ["Fetch referenced articles" gnus-summary-refer-references t]
2541 ["Fetch current thread" gnus-summary-refer-thread t]
2542 ["Fetch article with id..." gnus-summary-refer-article t]
2543 ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
2544 ["Redisplay" gnus-summary-show-article t]
2545 ["Raw article" gnus-summary-show-raw-article :keys "C-u g"])))
6748645f 2546 (easy-menu-define
23f87bed
MB
2547 gnus-summary-article-menu gnus-summary-mode-map ""
2548 (cons "Article" innards))
6748645f 2549
1653df0f
SZ
2550 (if (not (keymapp gnus-summary-article-menu))
2551 (easy-menu-define
2552 gnus-article-commands-menu gnus-article-mode-map ""
2553 (cons "Commands" innards))
2554 ;; in Emacs, don't share menu.
a1506d29 2555 (setq gnus-article-commands-menu
1653df0f
SZ
2556 (copy-keymap gnus-summary-article-menu))
2557 (define-key gnus-article-mode-map [menu-bar commands]
2558 (cons "Commands" gnus-article-commands-menu))))
eec82323
LMI
2559
2560 (easy-menu-define
23f87bed
MB
2561 gnus-summary-thread-menu gnus-summary-mode-map ""
2562 '("Threads"
2563 ["Find all messages in thread" gnus-summary-refer-thread t]
2564 ["Toggle threading" gnus-summary-toggle-threads t]
2565 ["Hide threads" gnus-summary-hide-all-threads t]
2566 ["Show threads" gnus-summary-show-all-threads t]
2567 ["Hide thread" gnus-summary-hide-thread t]
2568 ["Show thread" gnus-summary-show-thread t]
2569 ["Go to next thread" gnus-summary-next-thread t]
2570 ["Go to previous thread" gnus-summary-prev-thread t]
2571 ["Go down thread" gnus-summary-down-thread t]
2572 ["Go up thread" gnus-summary-up-thread t]
2573 ["Top of thread" gnus-summary-top-thread t]
2574 ["Mark thread as read" gnus-summary-kill-thread t]
01c52d31 2575 ["Mark thread as expired" gnus-summary-expire-thread t]
23f87bed
MB
2576 ["Lower thread score" gnus-summary-lower-thread t]
2577 ["Raise thread score" gnus-summary-raise-thread t]
2578 ["Rethread current" gnus-summary-rethread-current t]))
eec82323
LMI
2579
2580 (easy-menu-define
23f87bed
MB
2581 gnus-summary-post-menu gnus-summary-mode-map ""
2582 `("Post"
2583 ["Send a message (mail or news)" gnus-summary-post-news
2584 ,@(if (featurep 'xemacs) '(t)
531e5812 2585 '(:help "Compose a new message (mail or news)"))]
23f87bed
MB
2586 ["Followup" gnus-summary-followup
2587 ,@(if (featurep 'xemacs) '(t)
2588 '(:help "Post followup to this article"))]
2589 ["Followup and yank" gnus-summary-followup-with-original
2590 ,@(if (featurep 'xemacs) '(t)
2591 '(:help "Post followup to this article, quoting its contents"))]
2592 ["Supersede article" gnus-summary-supersede-article t]
2593 ["Cancel article" gnus-summary-cancel-article
2594 ,@(if (featurep 'xemacs) '(t)
2595 '(:help "Cancel an article you posted"))]
2596 ["Reply" gnus-summary-reply t]
2597 ["Reply and yank" gnus-summary-reply-with-original t]
2598 ["Wide reply" gnus-summary-wide-reply t]
2599 ["Wide reply and yank" gnus-summary-wide-reply-with-original
2600 ,@(if (featurep 'xemacs) '(t)
2601 '(:help "Mail a reply, quoting this article"))]
2602 ["Very wide reply" gnus-summary-very-wide-reply t]
2603 ["Very wide reply and yank" gnus-summary-very-wide-reply-with-original
2604 ,@(if (featurep 'xemacs) '(t)
2605 '(:help "Mail a very wide reply, quoting this article"))]
2606 ["Mail forward" gnus-summary-mail-forward t]
2607 ["Post forward" gnus-summary-post-forward t]
2608 ["Digest and mail" gnus-uu-digest-mail-forward t]
2609 ["Digest and post" gnus-uu-digest-post-forward t]
2610 ["Resend message" gnus-summary-resend-message t]
2611 ["Resend message edit" gnus-summary-resend-message-edit t]
2612 ["Send bounced mail" gnus-summary-resend-bounced-mail t]
2613 ["Send a mail" gnus-summary-mail-other-window t]
2614 ["Create a local message" gnus-summary-news-other-window t]
2615 ["Uuencode and post" gnus-uu-post-news
2616 ,@(if (featurep 'xemacs) '(t)
2617 '(:help "Post a uuencoded article"))]
2618 ["Followup via news" gnus-summary-followup-to-mail t]
2619 ["Followup via news and yank"
2620 gnus-summary-followup-to-mail-with-original t]
9b3ebcb6
MB
2621 ["Strip signature on reply"
2622 (lambda ()
2623 (interactive)
2624 (if (not (memq message-cite-function
2625 '(message-cite-original-without-signature
2626 message-cite-original)))
2627 ;; Stupid workaround for XEmacs not honoring :visible.
2628 (message "Can't toggle this value of `message-cite-function'")
2629 (setq message-cite-function
2630 (if (eq message-cite-function
2631 'message-cite-original-without-signature)
2632 'message-cite-original
2633 'message-cite-original-without-signature))))
2634 ;; XEmacs barfs on :visible.
2635 ,@(if (featurep 'xemacs) nil
2636 '(:visible (memq message-cite-function
2637 '(message-cite-original-without-signature
2638 message-cite-original))))
2639 :style toggle
2640 :selected (eq message-cite-function
2641 'message-cite-original-without-signature)
2642 ,@(if (featurep 'xemacs) nil
2643 '(:help "Strip signature from cited article when replying."))]
23f87bed
MB
2644 ;;("Draft"
2645 ;;["Send" gnus-summary-send-draft t]
2646 ;;["Send bounced" gnus-resend-bounced-mail t])
2647 ))
2648
2649 (cond
2650 ((not (keymapp gnus-summary-post-menu))
2651 (setq gnus-article-post-menu gnus-summary-post-menu))
2652 ((not gnus-article-post-menu)
2653 ;; Don't share post menu.
2654 (setq gnus-article-post-menu
2655 (copy-keymap gnus-summary-post-menu))))
2656 (define-key gnus-article-mode-map [menu-bar post]
2657 (cons "Post" gnus-article-post-menu))
eec82323
LMI
2658
2659 (easy-menu-define
23f87bed
MB
2660 gnus-summary-misc-menu gnus-summary-mode-map ""
2661 `("Gnus"
2662 ("Mark Read"
2663 ["Mark as read" gnus-summary-mark-as-read-forward t]
2664 ["Mark same subject and select"
2665 gnus-summary-kill-same-subject-and-select t]
2666 ["Mark same subject" gnus-summary-kill-same-subject t]
2667 ["Catchup" gnus-summary-catchup
2668 ,@(if (featurep 'xemacs) '(t)
2669 '(:help "Mark unread articles in this group as read"))]
2670 ["Catchup all" gnus-summary-catchup-all t]
2671 ["Catchup to here" gnus-summary-catchup-to-here t]
2672 ["Catchup from here" gnus-summary-catchup-from-here t]
2673 ["Catchup region" gnus-summary-mark-region-as-read
2674 (gnus-mark-active-p)]
2675 ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
2676 ("Mark Various"
2677 ["Tick" gnus-summary-tick-article-forward t]
2678 ["Mark as dormant" gnus-summary-mark-as-dormant t]
2679 ["Remove marks" gnus-summary-clear-mark-forward t]
2680 ["Set expirable mark" gnus-summary-mark-as-expirable t]
2681 ["Set bookmark" gnus-summary-set-bookmark t]
2682 ["Remove bookmark" gnus-summary-remove-bookmark t])
2683 ("Limit to"
2684 ["Marks..." gnus-summary-limit-to-marks t]
2685 ["Subject..." gnus-summary-limit-to-subject t]
2686 ["Author..." gnus-summary-limit-to-author t]
01c52d31
MB
2687 ["Recipient..." gnus-summary-limit-to-recipient t]
2688 ["Address..." gnus-summary-limit-to-address t]
23f87bed
MB
2689 ["Age..." gnus-summary-limit-to-age t]
2690 ["Extra..." gnus-summary-limit-to-extra t]
2691 ["Score..." gnus-summary-limit-to-score t]
2692 ["Display Predicate" gnus-summary-limit-to-display-predicate t]
2693 ["Unread" gnus-summary-limit-to-unread t]
2694 ["Unseen" gnus-summary-limit-to-unseen t]
01c52d31
MB
2695 ["Singletons" gnus-summary-limit-to-singletons t]
2696 ["Replied" gnus-summary-limit-to-replied t]
23f87bed 2697 ["Non-dormant" gnus-summary-limit-exclude-dormant t]
996aa8c1 2698 ["Next or process marked articles" gnus-summary-limit-to-articles t]
23f87bed
MB
2699 ["Pop limit" gnus-summary-pop-limit t]
2700 ["Show dormant" gnus-summary-limit-include-dormant t]
2701 ["Hide childless dormant"
2702 gnus-summary-limit-exclude-childless-dormant t]
2703 ;;["Hide thread" gnus-summary-limit-exclude-thread t]
2704 ["Hide marked" gnus-summary-limit-exclude-marks t]
2705 ["Show expunged" gnus-summary-limit-include-expunged t])
2706 ("Process Mark"
2707 ["Set mark" gnus-summary-mark-as-processable t]
2708 ["Remove mark" gnus-summary-unmark-as-processable t]
2709 ["Remove all marks" gnus-summary-unmark-all-processable t]
01c52d31 2710 ["Invert marks" gnus-uu-invert-processable t]
23f87bed
MB
2711 ["Mark above" gnus-uu-mark-over t]
2712 ["Mark series" gnus-uu-mark-series t]
2713 ["Mark region" gnus-uu-mark-region (gnus-mark-active-p)]
2714 ["Unmark region" gnus-uu-unmark-region (gnus-mark-active-p)]
2715 ["Mark by regexp..." gnus-uu-mark-by-regexp t]
2716 ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
2717 ["Mark all" gnus-uu-mark-all t]
2718 ["Mark buffer" gnus-uu-mark-buffer t]
2719 ["Mark sparse" gnus-uu-mark-sparse t]
2720 ["Mark thread" gnus-uu-mark-thread t]
2721 ["Unmark thread" gnus-uu-unmark-thread t]
2722 ("Process Mark Sets"
2723 ["Kill" gnus-summary-kill-process-mark t]
2724 ["Yank" gnus-summary-yank-process-mark
2725 gnus-newsgroup-process-stack]
2726 ["Save" gnus-summary-save-process-mark t]
2727 ["Run command on marked..." gnus-summary-universal-argument t]))
ec7995fa 2728 ("Registry Marks")
23f87bed
MB
2729 ("Scroll article"
2730 ["Page forward" gnus-summary-next-page
2731 ,@(if (featurep 'xemacs) '(t)
2732 '(:help "Show next page of article"))]
2733 ["Page backward" gnus-summary-prev-page
2734 ,@(if (featurep 'xemacs) '(t)
2735 '(:help "Show previous page of article"))]
2736 ["Line forward" gnus-summary-scroll-up t])
2737 ("Move"
2738 ["Next unread article" gnus-summary-next-unread-article t]
2739 ["Previous unread article" gnus-summary-prev-unread-article t]
2740 ["Next article" gnus-summary-next-article t]
2741 ["Previous article" gnus-summary-prev-article t]
2742 ["Next unread subject" gnus-summary-next-unread-subject t]
2743 ["Previous unread subject" gnus-summary-prev-unread-subject t]
2744 ["Next article same subject" gnus-summary-next-same-subject t]
2745 ["Previous article same subject" gnus-summary-prev-same-subject t]
2746 ["First unread article" gnus-summary-first-unread-article t]
2747 ["Best unread article" gnus-summary-best-unread-article t]
2748 ["Go to subject number..." gnus-summary-goto-subject t]
2749 ["Go to article number..." gnus-summary-goto-article t]
2750 ["Go to the last article" gnus-summary-goto-last-article t]
2751 ["Pop article off history" gnus-summary-pop-article t])
2752 ("Sort"
2753 ["Sort by number" gnus-summary-sort-by-number t]
6ecfe5c2 2754 ["Sort by most recent number" gnus-summary-sort-by-most-recent-number t]
23f87bed 2755 ["Sort by author" gnus-summary-sort-by-author t]
01c52d31 2756 ["Sort by recipient" gnus-summary-sort-by-recipient t]
23f87bed
MB
2757 ["Sort by subject" gnus-summary-sort-by-subject t]
2758 ["Sort by date" gnus-summary-sort-by-date t]
6ecfe5c2 2759 ["Sort by most recent date" gnus-summary-sort-by-most-recent-date t]
23f87bed
MB
2760 ["Sort by score" gnus-summary-sort-by-score t]
2761 ["Sort by lines" gnus-summary-sort-by-lines t]
2762 ["Sort by characters" gnus-summary-sort-by-chars t]
2763 ["Randomize" gnus-summary-sort-by-random t]
2764 ["Original sort" gnus-summary-sort-by-original t])
2765 ("Help"
23f87bed 2766 ["Describe group" gnus-summary-describe-group t]
23f87bed
MB
2767 ["Read manual" gnus-info-find-node t])
2768 ("Modes"
2769 ["Pick and read" gnus-pick-mode t]
2770 ["Binary" gnus-binary-mode t])
2771 ("Regeneration"
2772 ["Regenerate" gnus-summary-prepare t]
2773 ["Insert cached articles" gnus-summary-insert-cached-articles t]
2774 ["Insert dormant articles" gnus-summary-insert-dormant-articles t]
01c52d31 2775 ["Insert ticked articles" gnus-summary-insert-ticked-articles t]
23f87bed
MB
2776 ["Toggle threading" gnus-summary-toggle-threads t])
2777 ["See old articles" gnus-summary-insert-old-articles t]
2778 ["See new articles" gnus-summary-insert-new-articles t]
2779 ["Filter articles..." gnus-summary-execute-command t]
2780 ["Run command on articles..." gnus-summary-universal-argument t]
2781 ["Search articles forward..." gnus-summary-search-article-forward t]
2782 ["Search articles backward..." gnus-summary-search-article-backward t]
2783 ["Toggle line truncation" gnus-summary-toggle-truncation t]
2784 ["Expand window" gnus-summary-expand-window t]
2785 ["Expire expirable articles" gnus-summary-expire-articles
2786 (gnus-check-backend-function
2787 'request-expire-articles gnus-newsgroup-name)]
2788 ["Edit local kill file" gnus-summary-edit-local-kill t]
2789 ["Edit main kill file" gnus-summary-edit-global-kill t]
2790 ["Edit group parameters" gnus-summary-edit-parameters t]
2791 ["Customize group parameters" gnus-summary-customize-parameters t]
2792 ["Send a bug report" gnus-bug t]
2793 ("Exit"
2794 ["Catchup and exit" gnus-summary-catchup-and-exit
2795 ,@(if (featurep 'xemacs) '(t)
2796 '(:help "Mark unread articles in this group as read, then exit"))]
2797 ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2798 ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
01c52d31 2799 ["Catchup and goto prev" gnus-summary-catchup-and-goto-prev-group t]
23f87bed
MB
2800 ["Exit group" gnus-summary-exit
2801 ,@(if (featurep 'xemacs) '(t)
2802 '(:help "Exit current group, return to group selection mode"))]
2803 ["Exit group without updating" gnus-summary-exit-no-update t]
2804 ["Exit and goto next group" gnus-summary-next-group t]
2805 ["Exit and goto prev group" gnus-summary-prev-group t]
2806 ["Reselect group" gnus-summary-reselect-current-group t]
2807 ["Rescan group" gnus-summary-rescan-group t]
2808 ["Update dribble" gnus-summary-save-newsrc t])))
eec82323 2809
6748645f 2810 (gnus-run-hooks 'gnus-summary-menu-hook)))
eec82323 2811
60bd5589
DL
2812(defvar gnus-summary-tool-bar-map nil)
2813
18c06a99
RS
2814;; Note: The :set function in the `gnus-summary-tool-bar*' variables will only
2815;; affect _new_ message buffers. We might add a function that walks thru all
2816;; summary-mode buffers and force the update.
2817(defun gnus-summary-tool-bar-update (&optional symbol value)
2818 "Update summary mode toolbar.
2819Setter function for custom variables."
2820 (setq-default gnus-summary-tool-bar-map nil)
2821 (when symbol
2822 ;; When used as ":set" function:
2823 (set-default symbol value))
2824 (when (gnus-buffer-live-p gnus-summary-buffer)
2825 (with-current-buffer gnus-summary-buffer
2826 (gnus-summary-make-tool-bar))))
2827
2828(defcustom gnus-summary-tool-bar (if (eq gmm-tool-bar-style 'gnome)
2829 'gnus-summary-tool-bar-gnome
2830 'gnus-summary-tool-bar-retro)
2831 "Specifies the Gnus summary tool bar.
2832
2833It can be either a list or a symbol refering to a list. See
2834`gmm-tool-bar-from-list' for the format of the list. The
2835default key map is `gnus-summary-mode-map'.
2836
2837Pre-defined symbols include `gnus-summary-tool-bar-gnome' and
2838`gnus-summary-tool-bar-retro'."
2839 :type '(choice (const :tag "GNOME style" gnus-summary-tool-bar-gnome)
2840 (const :tag "Retro look" gnus-summary-tool-bar-retro)
2841 (repeat :tag "User defined list" gmm-tool-bar-item)
2842 (symbol))
330f707b 2843 :version "23.1" ;; No Gnus
18c06a99
RS
2844 :initialize 'custom-initialize-default
2845 :set 'gnus-summary-tool-bar-update
2846 :group 'gnus-summary)
2847
2848(defcustom gnus-summary-tool-bar-gnome
2849 '((gnus-summary-post-news "mail/compose" nil)
2850 (gnus-summary-insert-new-articles "mail/inbox" nil
2851 :visible (or (not gnus-agent)
2852 gnus-plugged))
2853 (gnus-summary-reply-with-original "mail/reply")
2854 (gnus-summary-reply "mail/reply" nil :visible nil)
2855 (gnus-summary-followup-with-original "mail/reply-all")
2856 (gnus-summary-followup "mail/reply-all" nil :visible nil)
2857 (gnus-summary-mail-forward "mail/forward")
2858 (gnus-summary-save-article "mail/save")
2859 (gnus-summary-search-article-forward "search" nil :visible nil)
2860 (gnus-summary-print-article "print")
2861 (gnus-summary-tick-article-forward "flag-followup" nil :visible nil)
2862 ;; Some new commands that may need more suitable icons:
2863 (gnus-summary-save-newsrc "save" nil :visible nil)
2864 ;; (gnus-summary-show-article "stock_message-display" nil :visible nil)
2865 (gnus-summary-prev-article "left-arrow")
2866 (gnus-summary-next-article "right-arrow")
2867 (gnus-summary-next-page "next-page")
2868 ;; (gnus-summary-enter-digest-group "right_arrow" nil :visible nil)
2869 ;;
2870 ;; Maybe some sort-by-... could be added:
2871 ;; (gnus-summary-sort-by-author "sort-a-z" nil :visible nil)
2872 ;; (gnus-summary-sort-by-date "sort-1-9" nil :visible nil)
2873 (gnus-summary-mark-as-expirable
2874 "delete" nil
2875 :visible (gnus-check-backend-function 'request-expire-articles
2876 gnus-newsgroup-name))
2877 (gnus-summary-mark-as-spam
2878 "mail/spam" t
2879 :visible (and (fboundp 'spam-group-ham-contents-p)
2880 (spam-group-ham-contents-p gnus-newsgroup-name))
2881 :help "Mark as spam")
2882 (gnus-summary-mark-as-read-forward
2883 "mail/not-spam" nil
2884 :visible (and (fboundp 'spam-group-spam-contents-p)
2885 (spam-group-spam-contents-p gnus-newsgroup-name)))
2886 ;;
2887 (gnus-summary-exit "exit")
2888 (gmm-customize-mode "preferences" t :help "Edit mode preferences")
2889 (gnus-info-find-node "help"))
2890 "List of functions for the summary tool bar (GNOME style).
2891
2892See `gmm-tool-bar-from-list' for the format of the list."
2893 :type '(repeat gmm-tool-bar-item)
330f707b 2894 :version "23.1" ;; No Gnus
18c06a99
RS
2895 :initialize 'custom-initialize-default
2896 :set 'gnus-summary-tool-bar-update
2897 :group 'gnus-summary)
2898
2899(defcustom gnus-summary-tool-bar-retro
2900 '((gnus-summary-prev-unread-article "gnus/prev-ur")
2901 (gnus-summary-next-unread-article "gnus/next-ur")
2902 (gnus-summary-post-news "gnus/post")
2903 (gnus-summary-followup-with-original "gnus/fuwo")
2904 (gnus-summary-followup "gnus/followup")
2905 (gnus-summary-reply-with-original "gnus/reply-wo")
2906 (gnus-summary-reply "gnus/reply")
2907 (gnus-summary-caesar-message "gnus/rot13")
2908 (gnus-uu-decode-uu "gnus/uu-decode")
2909 (gnus-summary-save-article-file "gnus/save-aif")
2910 (gnus-summary-save-article "gnus/save-art")
2911 (gnus-uu-post-news "gnus/uu-post")
2912 (gnus-summary-catchup "gnus/catchup")
2913 (gnus-summary-catchup-and-exit "gnus/cu-exit")
2914 (gnus-summary-exit "gnus/exit-summ")
2915 ;; Some new command that may need more suitable icons:
2916 (gnus-summary-print-article "gnus/print" nil :visible nil)
2917 (gnus-summary-mark-as-expirable "gnus/close" nil :visible nil)
2918 (gnus-summary-save-newsrc "gnus/save" nil :visible nil)
2919 ;; (gnus-summary-enter-digest-group "gnus/right_arrow" nil :visible nil)
2920 (gnus-summary-search-article-forward "gnus/search" nil :visible nil)
2921 ;; (gnus-summary-insert-new-articles "gnus/paste" nil :visible nil)
2922 ;; (gnus-summary-toggle-threads "gnus/open" nil :visible nil)
2923 ;;
2924 (gnus-info-find-node "gnus/help" nil :visible nil))
2925 "List of functions for the summary tool bar (retro look).
2926
2927See `gmm-tool-bar-from-list' for the format of the list."
2928 :type '(repeat gmm-tool-bar-item)
330f707b 2929 :version "23.1" ;; No Gnus
18c06a99
RS
2930 :initialize 'custom-initialize-default
2931 :set 'gnus-summary-tool-bar-update
2932 :group 'gnus-summary)
2933
2934(defcustom gnus-summary-tool-bar-zap-list t
2935 "List of icon items from the global tool bar.
2936These items are not displayed in the Gnus summary mode tool bar.
2937
2938See `gmm-tool-bar-from-list' for the format of the list."
2939 :type 'gmm-tool-bar-zap-list
330f707b 2940 :version "23.1" ;; No Gnus
18c06a99
RS
2941 :initialize 'custom-initialize-default
2942 :set 'gnus-summary-tool-bar-update
2943 :group 'gnus-summary)
2944
2945(defvar image-load-path)
f654fa04 2946(defvar tool-bar-map)
18c06a99
RS
2947
2948(defun gnus-summary-make-tool-bar (&optional force)
2949 "Make a summary mode tool bar from `gnus-summary-tool-bar'.
2950When FORCE, rebuild the tool bar."
2951 (when (and (not (featurep 'xemacs))
2952 (boundp 'tool-bar-mode)
2953 tool-bar-mode
2954 (or (not gnus-summary-tool-bar-map) force))
2955 (let* ((load-path
2956 (gmm-image-load-path-for-library "gnus"
2957 "mail/save.xpm"
2958 nil t))
2959 (image-load-path (cons (car load-path)
2960 (when (boundp 'image-load-path)
2961 image-load-path)))
2962 (map (gmm-tool-bar-from-list gnus-summary-tool-bar
2963 gnus-summary-tool-bar-zap-list
2964 'gnus-summary-mode-map)))
2965 (when map
2966 ;; Need to set `gnus-summary-tool-bar-map' because `gnus-article-mode'
2967 ;; uses it's value.
2968 (setq gnus-summary-tool-bar-map map))))
2969 (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map))
60bd5589 2970
eec82323
LMI
2971(defun gnus-score-set-default (var value)
2972 "A version of set that updates the GNU Emacs menu-bar."
2973 (set var value)
2974 ;; It is the message that forces the active status to be updated.
2975 (message ""))
2976
2977(defun gnus-make-score-map (type)
2978 "Make a summary score map of type TYPE."
2979 (if t
2980 nil
2981 (let ((headers '(("author" "from" string)
2982 ("subject" "subject" string)
2983 ("article body" "body" string)
2984 ("article head" "head" string)
2985 ("xref" "xref" string)
16409b0b 2986 ("extra header" "extra" string)
eec82323
LMI
2987 ("lines" "lines" number)
2988 ("followups to author" "followup" string)))
2989 (types '((number ("less than" <)
2990 ("greater than" >)
2991 ("equal" =))
2992 (string ("substring" s)
2993 ("exact string" e)
2994 ("fuzzy string" f)
2995 ("regexp" r))))
2996 (perms '(("temporary" (current-time-string))
2997 ("permanent" nil)
2998 ("immediate" now)))
2999 header)
3000 (list
3001 (apply
3002 'nconc
3003 (list
3004 (if (eq type 'lower)
3005 "Lower score"
3006 "Increase score"))
3007 (let (outh)
3008 (while headers
3009 (setq header (car headers))
3010 (setq outh
3011 (cons
3012 (apply
3013 'nconc
3014 (list (car header))
3015 (let ((ts (cdr (assoc (nth 2 header) types)))
3016 outt)
3017 (while ts
3018 (setq outt
3019 (cons
3020 (apply
3021 'nconc
3022 (list (caar ts))
3023 (let ((ps perms)
3024 outp)
3025 (while ps
3026 (setq outp
3027 (cons
3028 (vector
3029 (caar ps)
3030 (list
3031 'gnus-summary-score-entry
3032 (nth 1 header)
3033 (if (or (string= (nth 1 header)
3034 "head")
3035 (string= (nth 1 header)
3036 "body"))
3037 ""
3038 (list 'gnus-summary-header
3039 (nth 1 header)))
3040 (list 'quote (nth 1 (car ts)))
16409b0b
GM
3041 (list 'gnus-score-delta-default
3042 nil)
eec82323
LMI
3043 (nth 1 (car ps))
3044 t)
3045 t)
3046 outp))
3047 (setq ps (cdr ps)))
3048 (list (nreverse outp))))
3049 outt))
3050 (setq ts (cdr ts)))
3051 (list (nreverse outt))))
3052 outh))
3053 (setq headers (cdr headers)))
3054 (list (nreverse outh))))))))
3055
704f1663
GM
3056
3057(declare-function turn-on-gnus-mailing-list-mode "gnus-ml" ())
398a825b 3058(defvar bookmark-make-record-function)
eec82323
LMI
3059\f
3060
3061(defun gnus-summary-mode (&optional group)
3062 "Major mode for reading articles.
3063
3064All normal editing commands are switched off.
3065\\<gnus-summary-mode-map>
3066Each line in this buffer represents one article. To read an
3067article, you can, for instance, type `\\[gnus-summary-next-page]'. To move forwards
3068and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
3069respectively.
3070
3071You can also post articles and send mail from this buffer. To
23f87bed 3072follow up an article, type `\\[gnus-summary-followup]'. To mail a reply to the author
eec82323
LMI
3073of an article, type `\\[gnus-summary-reply]'.
3074
3075There are approx. one gazillion commands you can execute in this
3076buffer; read the info pages for more information (`\\[gnus-info-find-node]').
3077
3078The following commands are available:
3079
3080\\{gnus-summary-mode-map}"
3081 (interactive)
eec82323 3082 (kill-all-local-variables)
01c52d31
MB
3083 (let ((gnus-summary-local-variables gnus-newsgroup-variables))
3084 (gnus-summary-make-local-variables))
3085 (gnus-summary-make-local-variables)
3086 (setq gnus-newsgroup-name group)
60bd5589
DL
3087 (when (gnus-visual-p 'summary-menu 'menu)
3088 (gnus-summary-make-menu-bar)
3089 (gnus-summary-make-tool-bar))
eec82323
LMI
3090 (gnus-make-thread-indent-array)
3091 (gnus-simplify-mode-line)
3092 (setq major-mode 'gnus-summary-mode)
3093 (setq mode-name "Summary")
eec82323 3094 (use-local-map gnus-summary-mode-map)
16409b0b 3095 (buffer-disable-undo)
01c52d31
MB
3096 (setq buffer-read-only t ;Disable modification
3097 show-trailing-whitespace nil)
eec82323 3098 (setq truncate-lines t)
9bfd9a76 3099 (add-to-invisibility-spec '(gnus-sum . t))
eec82323
LMI
3100 (gnus-summary-set-display-table)
3101 (gnus-set-default-directory)
eec82323
LMI
3102 (make-local-variable 'gnus-summary-line-format)
3103 (make-local-variable 'gnus-summary-line-format-spec)
6748645f
LMI
3104 (make-local-variable 'gnus-summary-dummy-line-format)
3105 (make-local-variable 'gnus-summary-dummy-line-format-spec)
eec82323 3106 (make-local-variable 'gnus-summary-mark-positions)
23f87bed 3107 (gnus-make-local-hook 'pre-command-hook)
6748645f 3108 (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
cfcd5c91 3109 (gnus-run-mode-hooks 'gnus-summary-mode-hook)
23f87bed 3110 (turn-on-gnus-mailing-list-mode)
87545352 3111 (mm-enable-multibyte)
45be326a
TV
3112 (set (make-local-variable 'bookmark-make-record-function)
3113 'gnus-summary-bookmark-make-record)
eec82323
LMI
3114 (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
3115 (gnus-update-summary-mark-positions))
3116
3117(defun gnus-summary-make-local-variables ()
3118 "Make all the local summary buffer variables."
16409b0b
GM
3119 (let (global)
3120 (dolist (local gnus-summary-local-variables)
eec82323
LMI
3121 (if (consp local)
3122 (progn
3123 (if (eq (cdr local) 'global)
3124 ;; Copy the global value of the variable.
3125 (setq global (symbol-value (car local)))
3126 ;; Use the value from the list.
3127 (setq global (eval (cdr local))))
16409b0b 3128 (set (make-local-variable (car local)) global))
eec82323 3129 ;; Simple nil-valued local variable.
16409b0b 3130 (set (make-local-variable local) nil)))))
eec82323 3131
eec82323
LMI
3132;; Summary data functions.
3133
3134(defmacro gnus-data-number (data)
3135 `(car ,data))
3136
3137(defmacro gnus-data-set-number (data number)
3138 `(setcar ,data ,number))
3139
3140(defmacro gnus-data-mark (data)
3141 `(nth 1 ,data))
3142
3143(defmacro gnus-data-set-mark (data mark)
3144 `(setcar (nthcdr 1 ,data) ,mark))
3145
3146(defmacro gnus-data-pos (data)
3147 `(nth 2 ,data))
3148
3149(defmacro gnus-data-set-pos (data pos)
3150 `(setcar (nthcdr 2 ,data) ,pos))
3151
3152(defmacro gnus-data-header (data)
3153 `(nth 3 ,data))
3154
3155(defmacro gnus-data-set-header (data header)
3156 `(setf (nth 3 ,data) ,header))
3157
3158(defmacro gnus-data-level (data)
3159 `(nth 4 ,data))
3160
3161(defmacro gnus-data-unread-p (data)
3162 `(= (nth 1 ,data) gnus-unread-mark))
3163
3164(defmacro gnus-data-read-p (data)
3165 `(/= (nth 1 ,data) gnus-unread-mark))
3166
3167(defmacro gnus-data-pseudo-p (data)
3168 `(consp (nth 3 ,data)))
3169
3170(defmacro gnus-data-find (number)
3171 `(assq ,number gnus-newsgroup-data))
3172
3173(defmacro gnus-data-find-list (number &optional data)
3174 `(let ((bdata ,(or data 'gnus-newsgroup-data)))
3175 (memq (assq ,number bdata)
3176 bdata)))
3177
3178(defmacro gnus-data-make (number mark pos header level)
3179 `(list ,number ,mark ,pos ,header ,level))
3180
3181(defun gnus-data-enter (after-article number mark pos header level offset)
3182 (let ((data (gnus-data-find-list after-article)))
3183 (unless data
3184 (error "No such article: %d" after-article))
3185 (setcdr data (cons (gnus-data-make number mark pos header level)
3186 (cdr data)))
3187 (setq gnus-newsgroup-data-reverse nil)
3188 (gnus-data-update-list (cddr data) offset)))
3189
3190(defun gnus-data-enter-list (after-article list &optional offset)
3191 (when list
3192 (let ((data (and after-article (gnus-data-find-list after-article)))
3193 (ilist list))
6748645f
LMI
3194 (if (not (or data
3195 after-article))
3196 (let ((odata gnus-newsgroup-data))
3197 (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
eec82323 3198 (when offset
6748645f 3199 (gnus-data-update-list odata offset)))
01c52d31 3200 ;; Find the last element in the list to be spliced into the main
6748645f 3201 ;; list.
01c52d31 3202 (setq list (last list))
6748645f
LMI
3203 (if (not data)
3204 (progn
3205 (setcdr list gnus-newsgroup-data)
3206 (setq gnus-newsgroup-data ilist)
3207 (when offset
3208 (gnus-data-update-list (cdr list) offset)))
3209 (setcdr list (cdr data))
3210 (setcdr data ilist)
3211 (when offset
3212 (gnus-data-update-list (cdr list) offset))))
eec82323
LMI
3213 (setq gnus-newsgroup-data-reverse nil))))
3214
3215(defun gnus-data-remove (article &optional offset)
3216 (let ((data gnus-newsgroup-data))
3217 (if (= (gnus-data-number (car data)) article)
3218 (progn
3219 (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
3220 gnus-newsgroup-data-reverse nil)
3221 (when offset
3222 (gnus-data-update-list gnus-newsgroup-data offset)))
3223 (while (cdr data)
3224 (when (= (gnus-data-number (cadr data)) article)
3225 (setcdr data (cddr data))
3226 (when offset
3227 (gnus-data-update-list (cdr data) offset))
3228 (setq data nil
3229 gnus-newsgroup-data-reverse nil))
3230 (setq data (cdr data))))))
3231
3232(defmacro gnus-data-list (backward)
3233 `(if ,backward
3234 (or gnus-newsgroup-data-reverse
3235 (setq gnus-newsgroup-data-reverse
3236 (reverse gnus-newsgroup-data)))
3237 gnus-newsgroup-data))
3238
3239(defun gnus-data-update-list (data offset)
3240 "Add OFFSET to the POS of all data entries in DATA."
6748645f 3241 (setq gnus-newsgroup-data-reverse nil)
eec82323
LMI
3242 (while data
3243 (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
3244 (setq data (cdr data))))
3245
eec82323
LMI
3246(defun gnus-summary-article-pseudo-p (article)
3247 "Say whether this article is a pseudo article or not."
3248 (not (vectorp (gnus-data-header (gnus-data-find article)))))
3249
3250(defmacro gnus-summary-article-sparse-p (article)
3251 "Say whether this article is a sparse article or not."
a8151ef7 3252 `(memq ,article gnus-newsgroup-sparse))
eec82323
LMI
3253
3254(defmacro gnus-summary-article-ancient-p (article)
3255 "Say whether this article is a sparse article or not."
3256 `(memq ,article gnus-newsgroup-ancient))
3257
3258(defun gnus-article-parent-p (number)
3259 "Say whether this article is a parent or not."
3260 (let ((data (gnus-data-find-list number)))
23f87bed 3261 (and (cdr data) ; There has to be an article after...
eec82323
LMI
3262 (< (gnus-data-level (car data)) ; And it has to have a higher level.
3263 (gnus-data-level (nth 1 data))))))
3264
3265(defun gnus-article-children (number)
3266 "Return a list of all children to NUMBER."
3267 (let* ((data (gnus-data-find-list number))
3268 (level (gnus-data-level (car data)))
3269 children)
3270 (setq data (cdr data))
3271 (while (and data
3272 (= (gnus-data-level (car data)) (1+ level)))
3273 (push (gnus-data-number (car data)) children)
3274 (setq data (cdr data)))
3275 children))
3276
3277(defmacro gnus-summary-skip-intangible ()
3278 "If the current article is intangible, then jump to a different article."
3279 '(let ((to (get-text-property (point) 'gnus-intangible)))
3280 (and to (gnus-summary-goto-subject to))))
3281
3282(defmacro gnus-summary-article-intangible-p ()
3283 "Say whether this article is intangible or not."
3284 '(get-text-property (point) 'gnus-intangible))
3285
3286(defun gnus-article-read-p (article)
3287 "Say whether ARTICLE is read or not."
3288 (not (or (memq article gnus-newsgroup-marked)
23f87bed 3289 (memq article gnus-newsgroup-spam-marked)
eec82323
LMI
3290 (memq article gnus-newsgroup-unreads)
3291 (memq article gnus-newsgroup-unselected)
3292 (memq article gnus-newsgroup-dormant))))
3293
3294;; Some summary mode macros.
3295
3296(defmacro gnus-summary-article-number ()
3297 "The article number of the article on the current line.
8f688cb0 3298If there isn't an article number here, then we return the current
eec82323
LMI
3299article number."
3300 '(progn
3301 (gnus-summary-skip-intangible)
3302 (or (get-text-property (point) 'gnus-number)
3303 (gnus-summary-last-subject))))
3304
3305(defmacro gnus-summary-article-header (&optional number)
6748645f 3306 "Return the header of article NUMBER."
eec82323
LMI
3307 `(gnus-data-header (gnus-data-find
3308 ,(or number '(gnus-summary-article-number)))))
3309
3310(defmacro gnus-summary-thread-level (&optional number)
6748645f 3311 "Return the level of thread that starts with article NUMBER."
eec82323
LMI
3312 `(if (and (eq gnus-summary-make-false-root 'dummy)
3313 (get-text-property (point) 'gnus-intangible))
3314 0
3315 (gnus-data-level (gnus-data-find
3316 ,(or number '(gnus-summary-article-number))))))
3317
3318(defmacro gnus-summary-article-mark (&optional number)
6748645f 3319 "Return the mark of article NUMBER."
eec82323
LMI
3320 `(gnus-data-mark (gnus-data-find
3321 ,(or number '(gnus-summary-article-number)))))
3322
3323(defmacro gnus-summary-article-pos (&optional number)
6748645f 3324 "Return the position of the line of article NUMBER."
eec82323
LMI
3325 `(gnus-data-pos (gnus-data-find
3326 ,(or number '(gnus-summary-article-number)))))
3327
3328(defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
3329(defmacro gnus-summary-article-subject (&optional number)
3330 "Return current subject string or nil if nothing."
3331 `(let ((headers
3332 ,(if number
3333 `(gnus-data-header (assq ,number gnus-newsgroup-data))
3334 '(gnus-data-header (assq (gnus-summary-article-number)
3335 gnus-newsgroup-data)))))
3336 (and headers
3337 (vectorp headers)
3338 (mail-header-subject headers))))
3339
3340(defmacro gnus-summary-article-score (&optional number)
3341 "Return current article score."
3342 `(or (cdr (assq ,(or number '(gnus-summary-article-number))
3343 gnus-newsgroup-scored))
3344 gnus-summary-default-score 0))
3345
3346(defun gnus-summary-article-children (&optional number)
6748645f 3347 "Return a list of article numbers that are children of article NUMBER."
eec82323
LMI
3348 (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
3349 (level (gnus-data-level (car data)))
3350 l children)
3351 (while (and (setq data (cdr data))
3352 (> (setq l (gnus-data-level (car data))) level))
3353 (and (= (1+ level) l)
3354 (push (gnus-data-number (car data))
3355 children)))
3356 (nreverse children)))
3357
3358(defun gnus-summary-article-parent (&optional number)
6748645f 3359 "Return the article number of the parent of article NUMBER."
eec82323
LMI
3360 (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
3361 (gnus-data-list t)))
3362 (level (gnus-data-level (car data))))
3363 (if (zerop level)
3364 () ; This is a root.
3365 ;; We search until we find an article with a level less than
3366 ;; this one. That function has to be the parent.
3367 (while (and (setq data (cdr data))
3368 (not (< (gnus-data-level (car data)) level))))
3369 (and data (gnus-data-number (car data))))))
3370
3371(defun gnus-unread-mark-p (mark)
3372 "Say whether MARK is the unread mark."
3373 (= mark gnus-unread-mark))
3374
3375(defun gnus-read-mark-p (mark)
3376 "Say whether MARK is one of the marks that mark as read.
3377This is all marks except unread, ticked, dormant, and expirable."
3378 (not (or (= mark gnus-unread-mark)
3379 (= mark gnus-ticked-mark)
23f87bed 3380 (= mark gnus-spam-mark)
eec82323
LMI
3381 (= mark gnus-dormant-mark)
3382 (= mark gnus-expirable-mark))))
3383
3384(defmacro gnus-article-mark (number)
6748645f
LMI
3385 "Return the MARK of article NUMBER.
3386This macro should only be used when computing the mark the \"first\"
3387time; i.e., when generating the summary lines. After that,
3388`gnus-summary-article-mark' should be used to examine the
3389marks of articles."
eec82323 3390 `(cond
6748645f 3391 ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
6748645f 3392 ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
eec82323
LMI
3393 ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
3394 ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
23f87bed 3395 ((memq ,number gnus-newsgroup-spam-marked) gnus-spam-mark)
eec82323
LMI
3396 ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
3397 ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
3398 (t (or (cdr (assq ,number gnus-newsgroup-reads))
3399 gnus-ancient-mark))))
3400
3401;; Saving hidden threads.
3402
eec82323
LMI
3403(defmacro gnus-save-hidden-threads (&rest forms)
3404 "Save hidden threads, eval FORMS, and restore the hidden threads."
3405 (let ((config (make-symbol "config")))
3406 `(let ((,config (gnus-hidden-threads-configuration)))
3407 (unwind-protect
3408 (save-excursion
3409 ,@forms)
3410 (gnus-restore-hidden-threads-configuration ,config)))))
23f87bed
MB
3411(put 'gnus-save-hidden-threads 'lisp-indent-function 0)
3412(put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
eec82323 3413
107ecebb
AS
3414(defun gnus-data-compute-positions ()
3415 "Compute the positions of all articles."
3416 (setq gnus-newsgroup-data-reverse nil)
3417 (let ((data gnus-newsgroup-data))
3418 (save-excursion
3419 (gnus-save-hidden-threads
3420 (gnus-summary-show-all-threads)
3421 (goto-char (point-min))
3422 (while data
3423 (while (get-text-property (point) 'gnus-intangible)
3424 (forward-line 1))
3425 (gnus-data-set-pos (car data) (+ (point) 3))
3426 (setq data (cdr data))
3427 (forward-line 1))))))
3428
16409b0b
GM
3429(defun gnus-hidden-threads-configuration ()
3430 "Return the current hidden threads configuration."
3431 (save-excursion
3432 (let (config)
3433 (goto-char (point-min))
62a83cc8
KY
3434 (while (not (eobp))
3435 (when (eq (get-char-property (point-at-eol) 'invisible) 'gnus-sum)
3436 (push (save-excursion (forward-line 0) (point)) config))
3437 (forward-line 1))
16409b0b
GM
3438 config)))
3439
3440(defun gnus-restore-hidden-threads-configuration (config)
3441 "Restore hidden threads configuration from CONFIG."
3442 (save-excursion
c7a91ce1 3443 (let (point (inhibit-read-only t))
16409b0b 3444 (while (setq point (pop config))
62a83cc8
KY
3445 (goto-char point)
3446 (gnus-summary-hide-thread)))))
16409b0b 3447
eec82323
LMI
3448;; Various summary mode internalish functions.
3449
3450(defun gnus-mouse-pick-article (e)
3451 (interactive "e")
3452 (mouse-set-point e)
3453 (gnus-summary-next-page nil t))
3454
3455(defun gnus-summary-set-display-table ()
16409b0b
GM
3456 "Change the display table.
3457Odd characters have a tendency to mess
3458up nicely formatted displays - we make all possible glyphs
3459display only a single character."
eec82323
LMI
3460
3461 ;; We start from the standard display table, if any.
3462 (let ((table (or (copy-sequence standard-display-table)
3463 (make-display-table)))
3464 (i 32))
3465 ;; Nix out all the control chars...
3466 (while (>= (setq i (1- i)) 0)
2b968687 3467 (gnus-put-display-table i [??] table))
23f87bed 3468 ;; ... but not newline and cr, of course. (cr is necessary for the
eec82323 3469 ;; selective display).
2b968687
MB
3470 (gnus-put-display-table ?\n nil table)
3471 (gnus-put-display-table ?\r nil table)
6748645f 3472 ;; We keep TAB as well.
2b968687 3473 (gnus-put-display-table ?\t nil table)
719120ef 3474 ;; We nix out any glyphs 127 through 255, or 127 through 159 in
fe62aacc 3475 ;; Emacs 23 (unicode), that are not set already.
719120ef
MB
3476 (let ((i (if (ignore-errors (= (make-char 'latin-iso8859-1 160) 160))
3477 160
3478 256)))
eec82323
LMI
3479 (while (>= (setq i (1- i)) 127)
3480 ;; Only modify if the entry is nil.
2b968687
MB
3481 (unless (gnus-get-display-table i table)
3482 (gnus-put-display-table i [??] table))))
eec82323
LMI
3483 (setq buffer-display-table table)))
3484
23f87bed
MB
3485(defun gnus-summary-set-article-display-arrow (pos)
3486 "Update the overlay arrow to point to line at position POS."
e3e955fe
MB
3487 (when gnus-summary-display-arrow
3488 (make-local-variable 'overlay-arrow-position)
3489 (make-local-variable 'overlay-arrow-string)
23f87bed
MB
3490 (save-excursion
3491 (goto-char pos)
3492 (beginning-of-line)
3493 (unless overlay-arrow-position
3494 (setq overlay-arrow-position (make-marker)))
3495 (setq overlay-arrow-string "=>"
3496 overlay-arrow-position (set-marker overlay-arrow-position
3497 (point)
3498 (current-buffer))))))
3499
eec82323
LMI
3500(defun gnus-summary-setup-buffer (group)
3501 "Initialize summary buffer."
23f87bed
MB
3502 (let ((buffer (gnus-summary-buffer-name group))
3503 (dead-name (concat "*Dead Summary "
3504 (gnus-group-decoded-name group) "*")))
3505 ;; If a dead summary buffer exists, we kill it.
3506 (when (gnus-buffer-live-p dead-name)
3507 (gnus-kill-buffer dead-name))
eec82323
LMI
3508 (if (get-buffer buffer)
3509 (progn
3510 (set-buffer buffer)
3511 (setq gnus-summary-buffer (current-buffer))
3512 (not gnus-newsgroup-prepared))
3513 ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
6748645f 3514 (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
eec82323 3515 (gnus-summary-mode group)
01c52d31
MB
3516 (when (gnus-group-quit-config group)
3517 (set (make-local-variable 'gnus-single-article-buffer) nil))
3518 (make-local-variable 'gnus-article-buffer)
3519 (make-local-variable 'gnus-article-current)
3520 (make-local-variable 'gnus-original-article-buffer)
eec82323 3521 (setq gnus-newsgroup-name group)
23f87bed
MB
3522 ;; Set any local variables in the group parameters.
3523 (gnus-summary-set-local-parameters gnus-newsgroup-name)
eec82323
LMI
3524 t)))
3525
3526(defun gnus-set-global-variables ()
16409b0b
GM
3527 "Set the global equivalents of the buffer-local variables.
3528They are set to the latest values they had. These reflect the summary
3529buffer that was in action when the last article was fetched."
eec82323
LMI
3530 (when (eq major-mode 'gnus-summary-mode)
3531 (setq gnus-summary-buffer (current-buffer))
3532 (let ((name gnus-newsgroup-name)
3533 (marked gnus-newsgroup-marked)
23f87bed 3534 (spam gnus-newsgroup-spam-marked)
eec82323
LMI
3535 (unread gnus-newsgroup-unreads)
3536 (headers gnus-current-headers)
3537 (data gnus-newsgroup-data)
3538 (summary gnus-summary-buffer)
3539 (article-buffer gnus-article-buffer)
3540 (original gnus-original-article-buffer)
3541 (gac gnus-article-current)
3542 (reffed gnus-reffed-article-number)
16409b0b 3543 (score-file gnus-current-score-file)
23f87bed
MB
3544 (default-charset gnus-newsgroup-charset)
3545 vlist)
3546 (let ((locals gnus-newsgroup-variables))
3547 (while locals
3548 (if (consp (car locals))
3549 (push (eval (caar locals)) vlist)
3550 (push (eval (car locals)) vlist))
3551 (setq locals (cdr locals)))
3552 (setq vlist (nreverse vlist)))
01c52d31 3553 (with-current-buffer gnus-group-buffer
6748645f
LMI
3554 (setq gnus-newsgroup-name name
3555 gnus-newsgroup-marked marked
23f87bed 3556 gnus-newsgroup-spam-marked spam
6748645f
LMI
3557 gnus-newsgroup-unreads unread
3558 gnus-current-headers headers
3559 gnus-newsgroup-data data
3560 gnus-article-current gac
3561 gnus-summary-buffer summary
3562 gnus-article-buffer article-buffer
3563 gnus-original-article-buffer original
3564 gnus-reffed-article-number reffed
16409b0b
GM
3565 gnus-current-score-file score-file
3566 gnus-newsgroup-charset default-charset)
23f87bed
MB
3567 (let ((locals gnus-newsgroup-variables))
3568 (while locals
3569 (if (consp (car locals))
3570 (set (caar locals) (pop vlist))
3571 (set (car locals) (pop vlist)))
3572 (setq locals (cdr locals))))
eec82323
LMI
3573 ;; The article buffer also has local variables.
3574 (when (gnus-buffer-live-p gnus-article-buffer)
3575 (set-buffer gnus-article-buffer)
3576 (setq gnus-summary-buffer summary))))))
3577
3578(defun gnus-summary-article-unread-p (article)
3579 "Say whether ARTICLE is unread or not."
3580 (memq article gnus-newsgroup-unreads))
3581
3582(defun gnus-summary-first-article-p (&optional article)
3583 "Return whether ARTICLE is the first article in the buffer."
3584 (if (not (setq article (or article (gnus-summary-article-number))))
3585 nil
3586 (eq article (caar gnus-newsgroup-data))))
3587
3588(defun gnus-summary-last-article-p (&optional article)
3589 "Return whether ARTICLE is the last article in the buffer."
3590 (if (not (setq article (or article (gnus-summary-article-number))))
16409b0b
GM
3591 ;; All non-existent numbers are the last article. :-)
3592 t
eec82323
LMI
3593 (not (cdr (gnus-data-find-list article)))))
3594
4921bbdd
CY
3595(defun gnus-make-thread-indent-array (&optional n)
3596 (when (or n
3597 (progn (setq n 200) nil)
3598 (null gnus-thread-indent-array)
3599 (/= gnus-thread-indent-level gnus-thread-indent-array-level))
3600 (setq gnus-thread-indent-array (make-vector (1+ n) "")
3601 gnus-thread-indent-array-level gnus-thread-indent-level)
3602 (while (>= n 0)
3603 (aset gnus-thread-indent-array n
6a30c01d 3604 (make-string (* n gnus-thread-indent-level) ? ))
4921bbdd 3605 (setq n (1- n)))))
eec82323
LMI
3606
3607(defun gnus-update-summary-mark-positions ()
3608 "Compute where the summary marks are to go."
3609 (save-excursion
6748645f 3610 (when (gnus-buffer-exists-p gnus-summary-buffer)
eec82323 3611 (set-buffer gnus-summary-buffer))
5153a47a
MB
3612 (let ((spec gnus-summary-line-format-spec)
3613 pos)
eec82323
LMI
3614 (save-excursion
3615 (gnus-set-work-buffer)
5153a47a
MB
3616 (let ((gnus-tmp-unread ?Z)
3617 (gnus-replied-mark ?Z)
3618 (gnus-score-below-mark ?Z)
3619 (gnus-score-over-mark ?Z)
3620 (gnus-undownloaded-mark ?Z)
3621 (gnus-summary-line-format-spec spec)
54506618 3622 (gnus-newsgroup-downloadable '(0))
5153a47a
MB
3623 (header [0 "" "" "05 Apr 2001 23:33:09 +0400" "" "" 0 0 "" nil])
3624 case-fold-search ignores)
3625 ;; Here, all marks are bound to Z.
3626 (gnus-summary-insert-line header
3627 0 nil t gnus-tmp-unread t nil "" nil 1)
3628 (goto-char (point-min))
3629 ;; Memorize the positions of the same characters as dummy marks.
3630 (while (re-search-forward "[A-D]" nil t)
3631 (push (point) ignores))
54506618 3632 (erase-buffer)
5153a47a
MB
3633 ;; We use A-D as dummy marks in order to know column positions
3634 ;; where marks should be inserted.
3635 (setq gnus-tmp-unread ?A
3636 gnus-replied-mark ?B
3637 gnus-score-below-mark ?C
3638 gnus-score-over-mark ?C
3639 gnus-undownloaded-mark ?D)
3640 (gnus-summary-insert-line header
3641 0 nil t gnus-tmp-unread t nil "" nil 1)
3642 ;; Ignore characters which aren't dummy marks.
3643 (dolist (p ignores)
3644 (delete-region (goto-char (1- p)) p)
3645 (insert ?Z))
eec82323 3646 (goto-char (point-min))
7c3bb5a5 3647 (setq pos (list (cons 'unread
5153a47a 3648 (and (search-forward "A" nil t)
7c3bb5a5 3649 (- (point) (point-min) 1)))))
eec82323 3650 (goto-char (point-min))
5153a47a 3651 (push (cons 'replied (and (search-forward "B" nil t)
667e0ba6 3652 (- (point) (point-min) 1)))
eec82323
LMI
3653 pos)
3654 (goto-char (point-min))
5153a47a 3655 (push (cons 'score (and (search-forward "C" nil t)
667e0ba6 3656 (- (point) (point-min) 1)))
6748645f
LMI
3657 pos)
3658 (goto-char (point-min))
5153a47a 3659 (push (cons 'download (and (search-forward "D" nil t)
7c3bb5a5 3660 (- (point) (point-min) 1)))
eec82323
LMI
3661 pos)))
3662 (setq gnus-summary-mark-positions pos))))
3663
3664(defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
3665 "Insert a dummy root in the summary buffer."
3666 (beginning-of-line)
3667 (gnus-add-text-properties
3668 (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
3669 (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
3670
23f87bed
MB
3671(defun gnus-summary-extract-address-component (from)
3672 (or (car (funcall gnus-extract-address-components from))
3673 from))
3674
3675(defun gnus-summary-from-or-to-or-newsgroups (header gnus-tmp-from)
3676 (let ((mail-parse-charset gnus-newsgroup-charset)
01c52d31 3677 (ignored-from-addresses (gnus-ignored-from-addresses))
23f87bed
MB
3678 ; Is it really necessary to do this next part for each summary line?
3679 ; Luckily, doesn't seem to slow things down much.
16409b0b 3680 (mail-parse-ignored-charsets
01c52d31
MB
3681 (with-current-buffer gnus-summary-buffer
3682 gnus-newsgroup-ignored-charsets)))
23f87bed 3683 (or
01c52d31
MB
3684 (and ignored-from-addresses
3685 (string-match ignored-from-addresses gnus-tmp-from)
23f87bed
MB
3686 (let ((extra-headers (mail-header-extra header))
3687 to
3688 newsgroups)
3689 (cond
3690 ((setq to (cdr (assq 'To extra-headers)))
01c52d31 3691 (concat gnus-summary-to-prefix
23f87bed
MB
3692 (inline
3693 (gnus-summary-extract-address-component
343d6628 3694 (funcall gnus-decode-encoded-address-function to)))))
01c52d31
MB
3695 ((setq newsgroups
3696 (or
3697 (cdr (assq 'Newsgroups extra-headers))
3698 (and
3699 (memq 'Newsgroups gnus-extra-headers)
3700 (eq (car (gnus-find-method-for-group
3701 gnus-newsgroup-name)) 'nntp)
3702 (gnus-group-real-name gnus-newsgroup-name))))
3703 (concat gnus-summary-newsgroup-prefix newsgroups)))))
23f87bed 3704 (inline (gnus-summary-extract-address-component gnus-tmp-from)))))
16409b0b 3705
eec82323
LMI
3706(defun gnus-summary-insert-line (gnus-tmp-header
3707 gnus-tmp-level gnus-tmp-current
23f87bed 3708 undownloaded gnus-tmp-unread gnus-tmp-replied
eec82323
LMI
3709 gnus-tmp-expirable gnus-tmp-subject-or-nil
3710 &optional gnus-tmp-dummy gnus-tmp-score
3711 gnus-tmp-process)
4921bbdd
CY
3712 (if (>= gnus-tmp-level (length gnus-thread-indent-array))
3713 (gnus-make-thread-indent-array (max (* 2 (length gnus-thread-indent-array))
3714 gnus-tmp-level)))
eec82323
LMI
3715 (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
3716 (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
3717 (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
3718 (gnus-tmp-score-char
3719 (if (or (null gnus-summary-default-score)
3720 (<= (abs (- gnus-tmp-score gnus-summary-default-score))
3721 gnus-summary-zcore-fuzz))
23f87bed 3722 ? ;Whitespace
eec82323
LMI
3723 (if (< gnus-tmp-score gnus-summary-default-score)
3724 gnus-score-below-mark gnus-score-over-mark)))
23f87bed 3725 (gnus-tmp-number (mail-header-number gnus-tmp-header))
eec82323
LMI
3726 (gnus-tmp-replied
3727 (cond (gnus-tmp-process gnus-process-mark)
3728 ((memq gnus-tmp-current gnus-newsgroup-cached)
3729 gnus-cached-mark)
3730 (gnus-tmp-replied gnus-replied-mark)
23f87bed
MB
3731 ((memq gnus-tmp-current gnus-newsgroup-forwarded)
3732 gnus-forwarded-mark)
eec82323
LMI
3733 ((memq gnus-tmp-current gnus-newsgroup-saved)
3734 gnus-saved-mark)
23f87bed
MB
3735 ((memq gnus-tmp-number gnus-newsgroup-recent)
3736 gnus-recent-mark)
3737 ((memq gnus-tmp-number gnus-newsgroup-unseen)
3738 gnus-unseen-mark)
3739 (t gnus-no-mark)))
3740 (gnus-tmp-downloaded
3741 (cond (undownloaded
3742 gnus-undownloaded-mark)
3743 (gnus-newsgroup-agentized
3744 gnus-downloaded-mark)
3745 (t
3746 gnus-no-mark)))
eec82323
LMI
3747 (gnus-tmp-from (mail-header-from gnus-tmp-header))
3748 (gnus-tmp-name
3749 (cond
3750 ((string-match "<[^>]+> *$" gnus-tmp-from)
3751 (let ((beg (match-beginning 0)))
23f87bed
MB
3752 (or (and (string-match "^\".+\"" gnus-tmp-from)
3753 (substring gnus-tmp-from 1 (1- (match-end 0))))
eec82323
LMI
3754 (substring gnus-tmp-from 0 beg))))
3755 ((string-match "(.+)" gnus-tmp-from)
3756 (substring gnus-tmp-from
3757 (1+ (match-beginning 0)) (1- (match-end 0))))
3758 (t gnus-tmp-from)))
3759 (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
eec82323
LMI
3760 (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
3761 (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
c7a91ce1 3762 (inhibit-read-only t))
eec82323
LMI
3763 (when (string= gnus-tmp-name "")
3764 (setq gnus-tmp-name gnus-tmp-from))
3765 (unless (numberp gnus-tmp-lines)
23f87bed
MB
3766 (setq gnus-tmp-lines -1))
3767 (if (= gnus-tmp-lines -1)
3768 (setq gnus-tmp-lines "?")
3769 (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
64763fe3
MB
3770 (condition-case ()
3771 (gnus-put-text-property
3772 (point)
3773 (progn (eval gnus-summary-line-format-spec) (point))
3774 'gnus-number gnus-tmp-number)
3775 (error (gnus-message 5 "Error updating the summary line")))
eec82323
LMI
3776 (when (gnus-visual-p 'summary-highlight 'highlight)
3777 (forward-line -1)
a9ec34f4 3778 (gnus-summary-highlight-line)
6748645f 3779 (gnus-run-hooks 'gnus-summary-update-hook)
eec82323
LMI
3780 (forward-line 1))))
3781
3782(defun gnus-summary-update-line (&optional dont-update)
16409b0b 3783 "Update summary line after change."
eec82323
LMI
3784 (when (and gnus-summary-default-score
3785 (not gnus-summary-inhibit-highlight))
3786 (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
3787 (article (gnus-summary-article-number))
3788 (score (gnus-summary-article-score article)))
3789 (unless dont-update
3790 (if (and gnus-summary-mark-below
3791 (< (gnus-summary-article-score)
3792 gnus-summary-mark-below))
3793 ;; This article has a low score, so we mark it as read.
3794 (when (memq article gnus-newsgroup-unreads)
3795 (gnus-summary-mark-article-as-read gnus-low-score-mark))
3796 (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
3797 ;; This article was previously marked as read on account
3798 ;; of a low score, but now it has risen, so we mark it as
3799 ;; unread.
3800 (gnus-summary-mark-article-as-unread gnus-unread-mark)))
3801 (gnus-summary-update-mark
3802 (if (or (null gnus-summary-default-score)
3803 (<= (abs (- score gnus-summary-default-score))
3804 gnus-summary-zcore-fuzz))
23f87bed 3805 ? ;Whitespace
eec82323
LMI
3806 (if (< score gnus-summary-default-score)
3807 gnus-score-below-mark gnus-score-over-mark))
3808 'score))
3809 ;; Do visual highlighting.
3810 (when (gnus-visual-p 'summary-highlight 'highlight)
a9ec34f4 3811 (gnus-summary-highlight-line)
6748645f 3812 (gnus-run-hooks 'gnus-summary-update-hook)))))
eec82323
LMI
3813
3814(defvar gnus-tmp-new-adopts nil)
3815
3816(defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
3817 "Return the number of articles in THREAD.
3818This may be 0 in some cases -- if none of the articles in
3819the thread are to be displayed."
3820 (let* ((number
23f87bed 3821 ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
eec82323
LMI
3822 (cond
3823 ((not (listp thread))
3824 1)
3825 ((and (consp thread) (cdr thread))
3826 (apply
3827 '+ 1 (mapcar
3828 'gnus-summary-number-of-articles-in-thread (cdr thread))))
3829 ((null thread)
3830 1)
3831 ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
3832 1)
3833 (t 0))))
3834 (when (and level (zerop level) gnus-tmp-new-adopts)
3835 (incf number
3836 (apply '+ (mapcar
3837 'gnus-summary-number-of-articles-in-thread
3838 gnus-tmp-new-adopts))))
3839 (if char
3840 (if (> number 1) gnus-not-empty-thread-mark
3841 gnus-empty-thread-mark)
3842 number)))
3843
23f87bed
MB
3844(defsubst gnus-summary-line-message-size (head)
3845 "Return pretty-printed version of message size.
3846This function is intended to be used in
3847`gnus-summary-line-format-alist'."
3848 (let ((c (or (mail-header-chars head) -1)))
3849 (cond ((< c 0) "n/a") ; chars not available
3850 ((< c (* 1000 10)) (format "%1.1fk" (/ c 1024.0)))
3851 ((< c (* 1000 100)) (format "%dk" (/ c 1024.0)))
3852 ((< c (* 1000 10000)) (format "%1.1fM" (/ c (* 1024.0 1024))))
3853 (t (format "%dM" (/ c (* 1024.0 1024)))))))
3854
3855
eec82323
LMI
3856(defun gnus-summary-set-local-parameters (group)
3857 "Go through the local params of GROUP and set all variable specs in that list."
dab0271f
G
3858 (let ((vars '(quit-config active))) ; Ignore things that aren't
3859 ; really variables.
01c52d31 3860 (dolist (elem (gnus-group-find-parameter group))
eec82323
LMI
3861 (and (consp elem) ; Has to be a cons.
3862 (consp (cdr elem)) ; The cdr has to be a list.
3863 (symbolp (car elem)) ; Has to be a symbol in there.
23f87bed 3864 (not (memq (car elem) vars))
e3e955fe 3865 (ignore-errors
23f87bed 3866 (push (car elem) vars)
e3e955fe
MB
3867 ;; Variables like `gnus-show-threads' that are globally
3868 ;; bound, if used as group parameters, need to get to be
3869 ;; buffer-local, whereas just parameters like `gcc-self',
3870 ;; `timestamp', etc. should not be bound as variables.
3871 (if (boundp (car elem))
3872 (set (make-local-variable (car elem)) (eval (nth 1 elem)))
3873 (eval (nth 1 elem))))))))
eec82323
LMI
3874
3875(defun gnus-summary-read-group (group &optional show-all no-article
6748645f
LMI
3876 kill-buffer no-display backward
3877 select-articles)
eec82323
LMI
3878 "Start reading news in newsgroup GROUP.
3879If SHOW-ALL is non-nil, already read articles are also listed.
3880If NO-ARTICLE is non-nil, no article is selected initially.
3881If NO-DISPLAY, don't generate a summary buffer."
3882 (let (result)
3883 (while (and group
3884 (null (setq result
3885 (let ((gnus-auto-select-next nil))
6748645f
LMI
3886 (or (gnus-summary-read-group-1
3887 group show-all no-article
3888 kill-buffer no-display
3889 select-articles)
3890 (setq show-all nil
16409b0b 3891 select-articles nil)))))
eec82323
LMI
3892 (eq gnus-auto-select-next 'quietly))
3893 (set-buffer gnus-group-buffer)
6748645f
LMI
3894 ;; The entry function called above goes to the next
3895 ;; group automatically, so we go two groups back
3896 ;; if we are searching for the previous group.
3897 (when backward
3898 (gnus-group-prev-unread-group 2))
eec82323
LMI
3899 (if (not (equal group (gnus-group-group-name)))
3900 (setq group (gnus-group-group-name))
3901 (setq group nil)))
3902 result))
3903
3904(defun gnus-summary-read-group-1 (group show-all no-article
6748645f
LMI
3905 kill-buffer no-display
3906 &optional select-articles)
eec82323 3907 ;; Killed foreign groups can't be entered.
23f87bed
MB
3908 ;; (when (and (not (gnus-group-native-p group))
3909 ;; (not (gnus-gethash group gnus-newsrc-hashtb)))
3910 ;; (error "Dead non-native groups can't be entered"))
3911 (gnus-message 5 "Retrieving newsgroup: %s..."
3912 (gnus-group-decoded-name group))
eec82323
LMI
3913 (let* ((new-group (gnus-summary-setup-buffer group))
3914 (quit-config (gnus-group-quit-config group))
6748645f
LMI
3915 (did-select (and new-group (gnus-select-newsgroup
3916 group show-all select-articles))))
eec82323
LMI
3917 (cond
3918 ;; This summary buffer exists already, so we just select it.
3919 ((not new-group)
3920 (gnus-set-global-variables)
3921 (when kill-buffer
3922 (gnus-kill-or-deaden-summary kill-buffer))
3923 (gnus-configure-windows 'summary 'force)
3924 (gnus-set-mode-line 'summary)
3925 (gnus-summary-position-point)
3926 (message "")
3927 t)
3928 ;; We couldn't select this group.
3929 ((null did-select)
3930 (when (and (eq major-mode 'gnus-summary-mode)
3931 (not (equal (current-buffer) kill-buffer)))
3932 (kill-buffer (current-buffer))
3933 (if (not quit-config)
3934 (progn
6748645f
LMI
3935 ;; Update the info -- marks might need to be removed,
3936 ;; for instance.
3937 (gnus-summary-update-info)
eec82323
LMI
3938 (set-buffer gnus-group-buffer)
3939 (gnus-group-jump-to-group group)
3940 (gnus-group-next-unread-group 1))
3941 (gnus-handle-ephemeral-exit quit-config)))
23f87bed
MB
3942 (let ((grpinfo (gnus-get-info group)))
3943 (if (null (gnus-info-read grpinfo))
3944 (gnus-message 3 "Group %s contains no messages"
3945 (gnus-group-decoded-name group))
3946 (gnus-message 3 "Can't select group")))
eec82323
LMI
3947 nil)
3948 ;; The user did a `C-g' while prompting for number of articles,
3949 ;; so we exit this group.
3950 ((eq did-select 'quit)
3951 (and (eq major-mode 'gnus-summary-mode)
3952 (not (equal (current-buffer) kill-buffer))
3953 (kill-buffer (current-buffer)))
3954 (when kill-buffer
3955 (gnus-kill-or-deaden-summary kill-buffer))
3956 (if (not quit-config)
3957 (progn
3958 (set-buffer gnus-group-buffer)
3959 (gnus-group-jump-to-group group)
eec82323
LMI
3960 (gnus-configure-windows 'group 'force))
3961 (gnus-handle-ephemeral-exit quit-config))
3962 ;; Finally signal the quit.
3963 (signal 'quit nil))
3964 ;; The group was successfully selected.
3965 (t
3966 (gnus-set-global-variables)
3967 ;; Save the active value in effect when the group was entered.
3968 (setq gnus-newsgroup-active
3969 (gnus-copy-sequence
3970 (gnus-active gnus-newsgroup-name)))
9f2d52e7 3971 (setq gnus-newsgroup-highest (cdr gnus-newsgroup-active))
eec82323 3972 ;; You can change the summary buffer in some way with this hook.
6748645f 3973 (gnus-run-hooks 'gnus-select-group-hook)
5153a47a
MB
3974 (when (memq 'summary (gnus-update-format-specifications
3975 nil 'summary 'summary-mode 'summary-dummy))
3976 ;; The format specification for the summary line was updated,
3977 ;; so we need to update the mark positions as well.
3978 (gnus-update-summary-mark-positions))
eec82323
LMI
3979 ;; Do score processing.
3980 (when gnus-use-scoring
3981 (gnus-possibly-score-headers))
3982 ;; Check whether to fill in the gaps in the threads.
3983 (when gnus-build-sparse-threads
3984 (gnus-build-sparse-threads))
3985 ;; Find the initial limit.
26c9afc3
MB
3986 (if show-all
3987 (let ((gnus-newsgroup-dormant nil))
eec82323 3988 (gnus-summary-initial-limit show-all))
26c9afc3 3989 (gnus-summary-initial-limit show-all))
eec82323
LMI
3990 ;; Generate the summary buffer.
3991 (unless no-display
3992 (gnus-summary-prepare))
3993 (when gnus-use-trees
3994 (gnus-tree-open group)
3995 (setq gnus-summary-highlight-line-function
3996 'gnus-tree-highlight-article))
3997 ;; If the summary buffer is empty, but there are some low-scored
3998 ;; articles or some excluded dormants, we include these in the
3999 ;; buffer.
4000 (when (and (zerop (buffer-size))
4001 (not no-display))
4002 (cond (gnus-newsgroup-dormant
4003 (gnus-summary-limit-include-dormant))
4004 ((and gnus-newsgroup-scored show-all)
4005 (gnus-summary-limit-include-expunged t))))
4006 ;; Function `gnus-apply-kill-file' must be called in this hook.
6748645f 4007 (gnus-run-hooks 'gnus-apply-kill-hook)
eec82323
LMI
4008 (if (and (zerop (buffer-size))
4009 (not no-display))
4010 (progn
4011 ;; This newsgroup is empty.
4012 (gnus-summary-catchup-and-exit nil t)
4013 (gnus-message 6 "No unread news")
4014 (when kill-buffer
4015 (gnus-kill-or-deaden-summary kill-buffer))
4016 ;; Return nil from this function.
4017 nil)
4018 ;; Hide conversation thread subtrees. We cannot do this in
4019 ;; gnus-summary-prepare-hook since kill processing may not
4020 ;; work with hidden articles.
23f87bed 4021 (gnus-summary-maybe-hide-threads)
6748645f
LMI
4022 (when kill-buffer
4023 (gnus-kill-or-deaden-summary kill-buffer))
23f87bed 4024 (gnus-summary-auto-select-subject)
eec82323
LMI
4025 ;; Show first unread article if requested.
4026 (if (and (not no-article)
4027 (not no-display)
4028 gnus-newsgroup-unreads
4029 gnus-auto-select-first)
16409b0b
GM
4030 (progn
4031 (gnus-configure-windows 'summary)
23f87bed
MB
4032 (let ((art (gnus-summary-article-number)))
4033 (unless (and (not gnus-plugged)
4034 (or (memq art gnus-newsgroup-undownloaded)
4035 (memq art gnus-newsgroup-downloadable)))
4036 (gnus-summary-goto-article art))))
4037 ;; Don't select any articles.
eec82323 4038 (gnus-summary-position-point)
6748645f
LMI
4039 (gnus-configure-windows 'summary 'force)
4040 (gnus-set-mode-line 'summary))
23f87bed
MB
4041 (when (and gnus-auto-center-group
4042 (get-buffer-window gnus-group-buffer t))
eec82323
LMI
4043 ;; Gotta use windows, because recenter does weird stuff if
4044 ;; the current buffer ain't the displayed window.
4045 (let ((owin (selected-window)))
4046 (select-window (get-buffer-window gnus-group-buffer t))
4047 (when (gnus-group-goto-group group)
4048 (recenter))
4049 (select-window owin)))
4050 ;; Mark this buffer as "prepared".
4051 (setq gnus-newsgroup-prepared t)
6748645f 4052 (gnus-run-hooks 'gnus-summary-prepared-hook)
23f87bed
MB
4053 (unless (gnus-ephemeral-group-p group)
4054 (gnus-group-update-group group))
eec82323
LMI
4055 t)))))
4056
23f87bed
MB
4057(defun gnus-summary-auto-select-subject ()
4058 "Select the subject line on initial group entry."
4059 (goto-char (point-min))
4060 (cond
4061 ((eq gnus-auto-select-subject 'best)
4062 (gnus-summary-best-unread-subject))
4063 ((eq gnus-auto-select-subject 'unread)
4064 (gnus-summary-first-unread-subject))
4065 ((eq gnus-auto-select-subject 'unseen)
4066 (gnus-summary-first-unseen-subject))
4067 ((eq gnus-auto-select-subject 'unseen-or-unread)
4068 (gnus-summary-first-unseen-or-unread-subject))
4069 ((eq gnus-auto-select-subject 'first)
4070 ;; Do nothing.
4071 )
4072 ((functionp gnus-auto-select-subject)
4073 (funcall gnus-auto-select-subject))))
4074
eec82323
LMI
4075(defun gnus-summary-prepare ()
4076 "Generate the summary buffer."
4077 (interactive)
c7a91ce1 4078 (let ((inhibit-read-only t))
eec82323
LMI
4079 (erase-buffer)
4080 (setq gnus-newsgroup-data nil
4081 gnus-newsgroup-data-reverse nil)
6748645f 4082 (gnus-run-hooks 'gnus-summary-generate-hook)
eec82323
LMI
4083 ;; Generate the buffer, either with threads or without.
4084 (when gnus-newsgroup-headers
4085 (gnus-summary-prepare-threads
4086 (if gnus-show-threads
4087 (gnus-sort-gathered-threads
4088 (funcall gnus-summary-thread-gathering-function
4089 (gnus-sort-threads
4090 (gnus-cut-threads (gnus-make-threads)))))
4091 ;; Unthreaded display.
4092 (gnus-sort-articles gnus-newsgroup-headers))))
4093 (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
4094 ;; Call hooks for modifying summary buffer.
4095 (goto-char (point-min))
6748645f 4096 (gnus-run-hooks 'gnus-summary-prepare-hook)))
eec82323
LMI
4097
4098(defsubst gnus-general-simplify-subject (subject)
23f87bed 4099 "Simplify subject by the same rules as `gnus-gather-threads-by-subject'."
eec82323
LMI
4100 (setq subject
4101 (cond
4102 ;; Truncate the subject.
6748645f
LMI
4103 (gnus-simplify-subject-functions
4104 (gnus-map-function gnus-simplify-subject-functions subject))
eec82323
LMI
4105 ((numberp gnus-summary-gather-subject-limit)
4106 (setq subject (gnus-simplify-subject-re subject))
4107 (if (> (length subject) gnus-summary-gather-subject-limit)
4108 (substring subject 0 gnus-summary-gather-subject-limit)
4109 subject))
4110 ;; Fuzzily simplify it.
4111 ((eq 'fuzzy gnus-summary-gather-subject-limit)
4112 (gnus-simplify-subject-fuzzy subject))
4113 ;; Just remove the leading "Re:".
4114 (t
4115 (gnus-simplify-subject-re subject))))
4116
4117 (if (and gnus-summary-gather-exclude-subject
4118 (string-match gnus-summary-gather-exclude-subject subject))
23f87bed 4119 nil ; This article shouldn't be gathered
eec82323
LMI
4120 subject))
4121
4122(defun gnus-summary-simplify-subject-query ()
4123 "Query where the respool algorithm would put this article."
4124 (interactive)
eec82323 4125 (gnus-summary-select-article)
274f1353 4126 (message "%s" (gnus-general-simplify-subject (gnus-summary-article-subject))))
eec82323
LMI
4127
4128(defun gnus-gather-threads-by-subject (threads)
4129 "Gather threads by looking at Subject headers."
4130 (if (not gnus-summary-make-false-root)
4131 threads
4132 (let ((hashtb (gnus-make-hashtable 1024))
4133 (prev threads)
4134 (result threads)
4135 subject hthread whole-subject)
4136 (while threads
4137 (setq subject (gnus-general-simplify-subject
4138 (setq whole-subject (mail-header-subject
4139 (caar threads)))))
4140 (when subject
4141 (if (setq hthread (gnus-gethash subject hashtb))
4142 (progn
4143 ;; We enter a dummy root into the thread, if we
4144 ;; haven't done that already.
4145 (unless (stringp (caar hthread))
4146 (setcar hthread (list whole-subject (car hthread))))
4147 ;; We add this new gathered thread to this gathered
4148 ;; thread.
4149 (setcdr (car hthread)
4150 (nconc (cdar hthread) (list (car threads))))
4151 ;; Remove it from the list of threads.
4152 (setcdr prev (cdr threads))
4153 (setq threads prev))
4154 ;; Enter this thread into the hash table.
23f87bed
MB
4155 (gnus-sethash subject
4156 (if gnus-summary-make-false-root-always
4157 (progn
4158 ;; If you want a dummy root above all
4159 ;; threads...
4160 (setcar threads (list whole-subject
4161 (car threads)))
4162 threads)
4163 threads)
4164 hashtb)))
eec82323
LMI
4165 (setq prev threads)
4166 (setq threads (cdr threads)))
4167 result)))
4168
4169(defun gnus-gather-threads-by-references (threads)
4170 "Gather threads by looking at References headers."
4171 (let ((idhashtb (gnus-make-hashtable 1024))
4172 (thhashtb (gnus-make-hashtable 1024))
4173 (prev threads)
4174 (result threads)
4175 ids references id gthread gid entered ref)
4176 (while threads
4177 (when (setq references (mail-header-references (caar threads)))
4178 (setq id (mail-header-id (caar threads))
23f87bed 4179 ids (inline (gnus-split-references references))
eec82323
LMI
4180 entered nil)
4181 (while (setq ref (pop ids))
4182 (setq ids (delete ref ids))
4183 (if (not (setq gid (gnus-gethash ref idhashtb)))
4184 (progn
4185 (gnus-sethash ref id idhashtb)
4186 (gnus-sethash id threads thhashtb))
4187 (setq gthread (gnus-gethash gid thhashtb))
4188 (unless entered
4189 ;; We enter a dummy root into the thread, if we
4190 ;; haven't done that already.
4191 (unless (stringp (caar gthread))
4192 (setcar gthread (list (mail-header-subject (caar gthread))
4193 (car gthread))))
4194 ;; We add this new gathered thread to this gathered
4195 ;; thread.
4196 (setcdr (car gthread)
4197 (nconc (cdar gthread) (list (car threads)))))
4198 ;; Add it into the thread hash table.
4199 (gnus-sethash id gthread thhashtb)
4200 (setq entered t)
4201 ;; Remove it from the list of threads.
4202 (setcdr prev (cdr threads))
4203 (setq threads prev))))
4204 (setq prev threads)
4205 (setq threads (cdr threads)))
4206 result))
4207
4208(defun gnus-sort-gathered-threads (threads)
16409b0b 4209 "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
eec82323
LMI
4210 (let ((result threads))
4211 (while threads
4212 (when (stringp (caar threads))
4213 (setcdr (car threads)
16409b0b 4214 (sort (cdar threads) gnus-sort-gathered-threads-function)))
eec82323
LMI
4215 (setq threads (cdr threads)))
4216 result))
4217
4218(defun gnus-thread-loop-p (root thread)
4219 "Say whether ROOT is in THREAD."
4220 (let ((stack (list thread))
4221 (infloop 0)
4222 th)
4223 (while (setq thread (pop stack))
4224 (setq th (cdr thread))
4225 (while (and th
4226 (not (eq (caar th) root)))
4227 (pop th))
4228 (if th
4229 ;; We have found a loop.
4230 (let (ref-dep)
4231 (setcdr thread (delq (car th) (cdr thread)))
4232 (if (boundp (setq ref-dep (intern "none"
4233 gnus-newsgroup-dependencies)))
4234 (setcdr (symbol-value ref-dep)
4235 (nconc (cdr (symbol-value ref-dep))
4236 (list (car th))))
4237 (set ref-dep (list nil (car th))))
4238 (setq infloop 1
4239 stack nil))
4240 ;; Push all the subthreads onto the stack.
4241 (push (cdr thread) stack)))
4242 infloop))
4243
4244(defun gnus-make-threads ()
01ccbb85 4245 "Go through the dependency hashtb and find the roots. Return all threads."
eec82323
LMI
4246 (let (threads)
4247 (while (catch 'infloop
4248 (mapatoms
4249 (lambda (refs)
4250 ;; Deal with self-referencing References loops.
4251 (when (and (car (symbol-value refs))
4252 (not (zerop
4253 (apply
4254 '+
4255 (mapcar
4256 (lambda (thread)
4257 (gnus-thread-loop-p
4258 (car (symbol-value refs)) thread))
4259 (cdr (symbol-value refs)))))))
4260 (setq threads nil)
4261 (throw 'infloop t))
4262 (unless (car (symbol-value refs))
23f87bed
MB
4263 ;; These threads do not refer back to any other
4264 ;; articles, so they're roots.
eec82323
LMI
4265 (setq threads (append (cdr (symbol-value refs)) threads))))
4266 gnus-newsgroup-dependencies)))
4267 threads))
4268
6748645f 4269;; Build the thread tree.
16409b0b 4270(defsubst gnus-dependencies-add-header (header dependencies force-new)
6748645f
LMI
4271 "Enter HEADER into the DEPENDENCIES table if it is not already there.
4272
4273If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
4274if it was already present.
4275
4276If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
4277will not be entered in the DEPENDENCIES table. Otherwise duplicate
23f87bed
MB
4278Message-IDs will be renamed to a unique Message-ID before being
4279entered.
6748645f
LMI
4280
4281Returns HEADER if it was entered in the DEPENDENCIES. Returns nil otherwise."
4282 (let* ((id (mail-header-id header))
4283 (id-dep (and id (intern id dependencies)))
23f87bed 4284 parent-id ref ref-dep ref-header replaced)
6748645f
LMI
4285 ;; Enter this `header' in the `dependencies' table.
4286 (cond
4287 ((not id-dep)
4288 (setq header nil))
4289 ;; The first two cases do the normal part: enter a new `header'
4290 ;; in the `dependencies' table.
4291 ((not (boundp id-dep))
4292 (set id-dep (list header)))
4293 ((null (car (symbol-value id-dep)))
4294 (setcar (symbol-value id-dep) header))
4295
4296 ;; From here the `header' was already present in the
4297 ;; `dependencies' table.
4298 (force-new
4299 ;; Overrides an existing entry;
4300 ;; just set the header part of the entry.
23f87bed
MB
4301 (setcar (symbol-value id-dep) header)
4302 (setq replaced t))
6748645f
LMI
4303
4304 ;; Renames the existing `header' to a unique Message-ID.
4305 ((not gnus-summary-ignore-duplicates)
4306 ;; An article with this Message-ID has already been seen.
4307 ;; We rename the Message-ID.
4308 (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
4309 (list header))
4310 (mail-header-set-id header id))
4311
4312 ;; The last case ignores an existing entry, except it adds any
4313 ;; additional Xrefs (in case the two articles came from different
4314 ;; servers.
4315 ;; Also sets `header' to `nil' meaning that the `dependencies'
4316 ;; table was *not* modified.
4317 (t
4318 (mail-header-set-xref
4319 (car (symbol-value id-dep))
4320 (concat (or (mail-header-xref (car (symbol-value id-dep)))
4321 "")
4322 (or (mail-header-xref header) "")))
4323 (setq header nil)))
4324
23f87bed
MB
4325 (when (and header (not replaced))
4326 ;; First check that we are not creating a References loop.
4327 (setq parent-id (gnus-parent-id (mail-header-references header)))
4328 (setq ref parent-id)
6748645f
LMI
4329 (while (and ref
4330 (setq ref-dep (intern-soft ref dependencies))
4331 (boundp ref-dep)
4332 (setq ref-header (car (symbol-value ref-dep))))
4333 (if (string= id ref)
4334 ;; Yuk! This is a reference loop. Make the article be a
4335 ;; root article.
4336 (progn
4337 (mail-header-set-references (car (symbol-value id-dep)) "none")
23f87bed
MB
4338 (setq ref nil)
4339 (setq parent-id nil))
6748645f 4340 (setq ref (gnus-parent-id (mail-header-references ref-header)))))
23f87bed 4341 (setq ref-dep (intern (or parent-id "none") dependencies))
6748645f
LMI
4342 (if (boundp ref-dep)
4343 (setcdr (symbol-value ref-dep)
4344 (nconc (cdr (symbol-value ref-dep))
4345 (list (symbol-value id-dep))))
4346 (set ref-dep (list nil (symbol-value id-dep)))))
4347 header))
4348
23f87bed
MB
4349(defun gnus-extract-message-id-from-in-reply-to (string)
4350 (if (string-match "<[^>]+>" string)
4351 (substring string (match-beginning 0) (match-end 0))
4352 nil))
4353
eec82323
LMI
4354(defun gnus-build-sparse-threads ()
4355 (let ((headers gnus-newsgroup-headers)
16409b0b 4356 (mail-parse-charset gnus-newsgroup-charset)
6748645f 4357 (gnus-summary-ignore-duplicates t)
eec82323 4358 header references generation relations
6748645f 4359 subject child end new-child date)
eec82323
LMI
4360 ;; First we create an alist of generations/relations, where
4361 ;; generations is how much we trust the relation, and the relation
4362 ;; is parent/child.
4363 (gnus-message 7 "Making sparse threads...")
4364 (save-excursion
4365 (nnheader-set-temp-buffer " *gnus sparse threads*")
4366 (while (setq header (pop headers))
4367 (when (and (setq references (mail-header-references header))
4368 (not (string= references "")))
4369 (insert references)
4370 (setq child (mail-header-id header)
6748645f
LMI
4371 subject (mail-header-subject header)
4372 date (mail-header-date header)
4373 generation 0)
eec82323
LMI
4374 (while (search-backward ">" nil t)
4375 (setq end (1+ (point)))
4376 (when (search-backward "<" nil t)
6748645f 4377 (setq new-child (buffer-substring (point) end))
eec82323 4378 (push (list (incf generation)
6748645f
LMI
4379 child (setq child new-child)
4380 subject date)
eec82323 4381 relations)))
6748645f
LMI
4382 (when child
4383 (push (list (1+ generation) child nil subject) relations))
eec82323
LMI
4384 (erase-buffer)))
4385 (kill-buffer (current-buffer)))
4386 ;; Sort over trustworthiness.
01c52d31
MB
4387 (dolist (relation (sort relations 'car-less-than-car))
4388 (when (gnus-dependencies-add-header
4389 (make-full-mail-header
4390 gnus-reffed-article-number
4391 (nth 3 relation) "" (or (nth 4 relation) "")
4392 (nth 1 relation)
4393 (or (nth 2 relation) "") 0 0 "")
4394 gnus-newsgroup-dependencies nil)
4395 (push gnus-reffed-article-number gnus-newsgroup-limit)
4396 (push gnus-reffed-article-number gnus-newsgroup-sparse)
4397 (push (cons gnus-reffed-article-number gnus-sparse-mark)
4398 gnus-newsgroup-reads)
4399 (decf gnus-reffed-article-number)))
eec82323
LMI
4400 (gnus-message 7 "Making sparse threads...done")))
4401
4402(defun gnus-build-old-threads ()
4403 ;; Look at all the articles that refer back to old articles, and
4404 ;; fetch the headers for the articles that aren't there. This will
4405 ;; build complete threads - if the roots haven't been expired by the
4406 ;; server, that is.
16409b0b
GM
4407 (let ((mail-parse-charset gnus-newsgroup-charset)
4408 id heads)
eec82323
LMI
4409 (mapatoms
4410 (lambda (refs)
4411 (when (not (car (symbol-value refs)))
4412 (setq heads (cdr (symbol-value refs)))
4413 (while heads
4414 (if (memq (mail-header-number (caar heads))
4415 gnus-newsgroup-dormant)
4416 (setq heads (cdr heads))
4417 (setq id (symbol-name refs))
4418 (while (and (setq id (gnus-build-get-header id))
6748645f 4419 (not (car (gnus-id-to-thread id)))))
eec82323
LMI
4420 (setq heads nil)))))
4421 gnus-newsgroup-dependencies)))
4422
23f87bed
MB
4423(defsubst gnus-remove-odd-characters (string)
4424 "Translate STRING into something that doesn't contain weird characters."
4425 (mm-subst-char-in-string
4426 ?\r ?\-
01c52d31 4427 (mm-subst-char-in-string ?\n ?\- string t) t))
23f87bed 4428
6748645f
LMI
4429;; This function has to be called with point after the article number
4430;; on the beginning of the line.
4431(defsubst gnus-nov-parse-line (number dependencies &optional force-new)
01c52d31 4432 (let ((eol (point-at-eol))
6748645f 4433 (buffer (current-buffer))
23f87bed 4434 header references in-reply-to)
6748645f
LMI
4435
4436 ;; overview: [num subject from date id refs chars lines misc]
4437 (unwind-protect
23f87bed 4438 (let (x)
6748645f
LMI
4439 (narrow-to-region (point) eol)
4440 (unless (eobp)
4441 (forward-char))
4442
4443 (setq header
4444 (make-full-mail-header
4445 number ; number
23f87bed
MB
4446 (condition-case () ; subject
4447 (gnus-remove-odd-characters
4448 (funcall gnus-decode-encoded-word-function
4449 (setq x (nnheader-nov-field))))
4450 (error x))
4451 (condition-case () ; from
4452 (gnus-remove-odd-characters
343d6628 4453 (funcall gnus-decode-encoded-address-function
23f87bed
MB
4454 (setq x (nnheader-nov-field))))
4455 (error x))
16409b0b 4456 (nnheader-nov-field) ; date
01c52d31 4457 (nnheader-nov-read-message-id number) ; id
23f87bed 4458 (setq references (nnheader-nov-field)) ; refs
16409b0b
GM
4459 (nnheader-nov-read-integer) ; chars
4460 (nnheader-nov-read-integer) ; lines
4461 (unless (eobp)
8b93df01
DL
4462 (if (looking-at "Xref: ")
4463 (goto-char (match-end 0)))
4464 (nnheader-nov-field)) ; Xref
16409b0b 4465 (nnheader-nov-parse-extra)))) ; extra
6748645f
LMI
4466
4467 (widen))
4468
23f87bed
MB
4469 (when (and (string= references "")
4470 (setq in-reply-to (mail-header-extra header))
4471 (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to))))
4472 (mail-header-set-references
4473 header (gnus-extract-message-id-from-in-reply-to in-reply-to)))
4474
6748645f
LMI
4475 (when gnus-alter-header-function
4476 (funcall gnus-alter-header-function header))
4477 (gnus-dependencies-add-header header dependencies force-new)))
4478
eec82323 4479(defun gnus-build-get-header (id)
16409b0b
GM
4480 "Look through the buffer of NOV lines and find the header to ID.
4481Enter this line into the dependencies hash table, and return
4482the id of the parent article (if any)."
eec82323
LMI
4483 (let ((deps gnus-newsgroup-dependencies)
4484 found header)
4485 (prog1
c7a91ce1 4486 (with-current-buffer nntp-server-buffer
eec82323
LMI
4487 (let ((case-fold-search nil))
4488 (goto-char (point-min))
4489 (while (and (not found)
4490 (search-forward id nil t))
4491 (beginning-of-line)
4492 (setq found (looking-at
4493 (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
4494 (regexp-quote id))))
4495 (or found (beginning-of-line 2)))
4496 (when found
4497 (beginning-of-line)
4498 (and
4499 (setq header (gnus-nov-parse-line
4500 (read (current-buffer)) deps))
4501 (gnus-parent-id (mail-header-references header))))))
4502 (when header
4503 (let ((number (mail-header-number header)))
4504 (push number gnus-newsgroup-limit)
4505 (push header gnus-newsgroup-headers)
4506 (if (memq number gnus-newsgroup-unselected)
4507 (progn
23f87bed
MB
4508 (setq gnus-newsgroup-unreads
4509 (gnus-add-to-sorted-list gnus-newsgroup-unreads
4510 number))
eec82323
LMI
4511 (setq gnus-newsgroup-unselected
4512 (delq number gnus-newsgroup-unselected)))
4513 (push number gnus-newsgroup-ancient)))))))
4514
6748645f
LMI
4515(defun gnus-build-all-threads ()
4516 "Read all the headers."
4517 (let ((gnus-summary-ignore-duplicates t)
16409b0b 4518 (mail-parse-charset gnus-newsgroup-charset)
6748645f
LMI
4519 (dependencies gnus-newsgroup-dependencies)
4520 header article)
c7a91ce1 4521 (with-current-buffer nntp-server-buffer
6748645f
LMI
4522 (let ((case-fold-search nil))
4523 (goto-char (point-min))
4524 (while (not (eobp))
4525 (ignore-errors
4526 (setq article (read (current-buffer))
181cb5fb 4527 header (gnus-nov-parse-line article dependencies t)))
6748645f 4528 (when header
01c52d31 4529 (with-current-buffer gnus-summary-buffer
6748645f
LMI
4530 (push header gnus-newsgroup-headers)
4531 (if (memq (setq article (mail-header-number header))
4532 gnus-newsgroup-unselected)
4533 (progn
23f87bed
MB
4534 (setq gnus-newsgroup-unreads
4535 (gnus-add-to-sorted-list
4536 gnus-newsgroup-unreads article))
6748645f
LMI
4537 (setq gnus-newsgroup-unselected
4538 (delq article gnus-newsgroup-unselected)))
4539 (push article gnus-newsgroup-ancient)))
4540 (forward-line 1)))))))
4541
eec82323 4542(defun gnus-summary-update-article-line (article header)
23f87bed 4543 "Update the line for ARTICLE using HEADER."
eec82323
LMI
4544 (let* ((id (mail-header-id header))
4545 (thread (gnus-id-to-thread id)))
4546 (unless thread
4547 (error "Article in no thread"))
4548 ;; Update the thread.
4549 (setcar thread header)
4550 (gnus-summary-goto-subject article)
4551 (let* ((datal (gnus-data-find-list article))
4552 (data (car datal))
c7a91ce1 4553 (inhibit-read-only t)
eec82323
LMI
4554 (level (gnus-summary-thread-level)))
4555 (gnus-delete-line)
23f87bed
MB
4556 (let ((inserted (- (point)
4557 (progn
4558 (gnus-summary-insert-line
4559 header level nil
4560 (memq article gnus-newsgroup-undownloaded)
4561 (gnus-article-mark article)
4562 (memq article gnus-newsgroup-replied)
4563 (memq article gnus-newsgroup-expirable)
4564 ;; Only insert the Subject string when it's different
4565 ;; from the previous Subject string.
4566 (if (and
4567 gnus-show-threads
4568 (gnus-subject-equal
4569 (condition-case ()
4570 (mail-header-subject
4571 (gnus-data-header
4572 (cadr
4573 (gnus-data-find-list
4574 article
4575 (gnus-data-list t)))))
4576 ;; Error on the side of excessive subjects.
4577 (error ""))
4578 (mail-header-subject header)))
4579 ""
4580 (mail-header-subject header))
4581 nil (cdr (assq article gnus-newsgroup-scored))
4582 (memq article gnus-newsgroup-processable))
4583 (point)))))
4584 (when (cdr datal)
4585 (gnus-data-update-list
4586 (cdr datal)
4587 (- (gnus-data-pos data) (gnus-data-pos (cadr datal)) inserted)))))))
eec82323
LMI
4588
4589(defun gnus-summary-update-article (article &optional iheader)
4590 "Update ARTICLE in the summary buffer."
4591 (set-buffer gnus-summary-buffer)
6748645f 4592 (let* ((header (gnus-summary-article-header article))
eec82323
LMI
4593 (id (mail-header-id header))
4594 (data (gnus-data-find article))
4595 (thread (gnus-id-to-thread id))
4596 (references (mail-header-references header))
4597 (parent
4598 (gnus-id-to-thread
4599 (or (gnus-parent-id
4600 (when (and references
4601 (not (equal "" references)))
4602 references))
4603 "none")))
c7a91ce1 4604 (inhibit-read-only t)
6748645f 4605 (old (car thread)))
eec82323 4606 (when thread
eec82323 4607 (unless iheader
6748645f
LMI
4608 (setcar thread nil)
4609 (when parent
4610 (delq thread parent)))
4611 (if (gnus-summary-insert-subject id header)
eec82323
LMI
4612 ;; Set the (possibly) new article number in the data structure.
4613 (gnus-data-set-number data (gnus-id-to-article id))
4614 (setcar thread old)
4615 nil))))
4616
6748645f
LMI
4617(defun gnus-rebuild-thread (id &optional line)
4618 "Rebuild the thread containing ID.
4619If LINE, insert the rebuilt thread starting on line LINE."
c7a91ce1 4620 (let ((inhibit-read-only t)
eec82323
LMI
4621 old-pos current thread data)
4622 (if (not gnus-show-threads)
4623 (setq thread (list (car (gnus-id-to-thread id))))
4624 ;; Get the thread this article is part of.
4625 (setq thread (gnus-remove-thread id)))
01c52d31 4626 (setq old-pos (point-at-bol))
eec82323 4627 (setq current (save-excursion
94384150 4628 (and (re-search-backward "[\r\n]" nil t)
eec82323
LMI
4629 (gnus-summary-article-number))))
4630 ;; If this is a gathered thread, we have to go some re-gathering.
4631 (when (stringp (car thread))
4632 (let ((subject (car thread))
4633 roots thr)
4634 (setq thread (cdr thread))
4635 (while thread
4636 (unless (memq (setq thr (gnus-id-to-thread
4637 (gnus-root-id
4638 (mail-header-id (caar thread)))))
4639 roots)
4640 (push thr roots))
4641 (setq thread (cdr thread)))
4642 ;; We now have all (unique) roots.
4643 (if (= (length roots) 1)
4644 ;; All the loose roots are now one solid root.
4645 (setq thread (car roots))
4646 (setq thread (cons subject (gnus-sort-threads roots))))))
4647 (let (threads)
4648 ;; We then insert this thread into the summary buffer.
6748645f
LMI
4649 (when line
4650 (goto-char (point-min))
4651 (forward-line (1- line)))
eec82323
LMI
4652 (let (gnus-newsgroup-data gnus-newsgroup-threads)
4653 (if gnus-show-threads
4654 (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
4655 (gnus-summary-prepare-unthreaded thread))
4656 (setq data (nreverse gnus-newsgroup-data))
4657 (setq threads gnus-newsgroup-threads))
4658 ;; We splice the new data into the data structure.
6748645f
LMI
4659 ;;!!! This is kinda bogus. We assume that in LINE is non-nil,
4660 ;;!!! then we want to insert at the beginning of the buffer.
4661 ;;!!! That happens to be true with Gnus now, but that may
4662 ;;!!! change in the future. Perhaps.
4663 (gnus-data-enter-list
4664 (if line nil current) data (- (point) old-pos))
4665 (setq gnus-newsgroup-threads
4666 (nconc threads gnus-newsgroup-threads))
4667 (gnus-data-compute-positions))))
eec82323
LMI
4668
4669(defun gnus-number-to-header (number)
4670 "Return the header for article NUMBER."
4671 (let ((headers gnus-newsgroup-headers))
4672 (while (and headers
4673 (not (= number (mail-header-number (car headers)))))
4674 (pop headers))
4675 (when headers
4676 (car headers))))
4677
6748645f 4678(defun gnus-parent-headers (in-headers &optional generation)
eec82323
LMI
4679 "Return the headers of the GENERATIONeth parent of HEADERS."
4680 (unless generation
4681 (setq generation 1))
a8151ef7 4682 (let ((parent t)
6748645f 4683 (headers in-headers)
a8151ef7 4684 references)
6748645f
LMI
4685 (while (and parent
4686 (not (zerop generation))
4687 (setq references (mail-header-references headers)))
4688 (setq headers (if (and references
4689 (setq parent (gnus-parent-id references)))
4690 (car (gnus-id-to-thread parent))
4691 nil))
4692 (decf generation))
4693 (and (not (eq headers in-headers))
4694 headers)))
eec82323
LMI
4695
4696(defun gnus-id-to-thread (id)
4697 "Return the (sub-)thread where ID appears."
4698 (gnus-gethash id gnus-newsgroup-dependencies))
4699
4700(defun gnus-id-to-article (id)
4701 "Return the article number of ID."
4702 (let ((thread (gnus-id-to-thread id)))
4703 (when (and thread
4704 (car thread))
4705 (mail-header-number (car thread)))))
4706
4707(defun gnus-id-to-header (id)
4708 "Return the article headers of ID."
4709 (car (gnus-id-to-thread id)))
4710
4711(defun gnus-article-displayed-root-p (article)
4712 "Say whether ARTICLE is a root(ish) article."
4713 (let ((level (gnus-summary-thread-level article))
4714 (refs (mail-header-references (gnus-summary-article-header article)))
4715 particle)
4716 (cond
4717 ((null level) nil)
4718 ((zerop level) t)
4719 ((null refs) t)
4720 ((null (gnus-parent-id refs)) t)
4721 ((and (= 1 level)
4722 (null (setq particle (gnus-id-to-article
4723 (gnus-parent-id refs))))
4724 (null (gnus-summary-thread-level particle)))))))
4725
4726(defun gnus-root-id (id)
4727 "Return the id of the root of the thread where ID appears."
4728 (let (last-id prev)
6748645f 4729 (while (and id (setq prev (car (gnus-id-to-thread id))))
eec82323
LMI
4730 (setq last-id id
4731 id (gnus-parent-id (mail-header-references prev))))
4732 last-id))
4733
6748645f
LMI
4734(defun gnus-articles-in-thread (thread)
4735 "Return the list of articles in THREAD."
4736 (cons (mail-header-number (car thread))
4737 (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
4738
eec82323
LMI
4739(defun gnus-remove-thread (id &optional dont-remove)
4740 "Remove the thread that has ID in it."
6748645f 4741 (let (headers thread last-id)
eec82323 4742 ;; First go up in this thread until we find the root.
6748645f
LMI
4743 (setq last-id (gnus-root-id id)
4744 headers (message-flatten-list (gnus-id-to-thread last-id)))
01ccbb85 4745 ;; We have now found the real root of this thread. It might have
eec82323
LMI
4746 ;; been gathered into some loose thread, so we have to search
4747 ;; through the threads to find the thread we wanted.
4748 (let ((threads gnus-newsgroup-threads)
4749 sub)
4750 (while threads
4751 (setq sub (car threads))
4752 (if (stringp (car sub))
4753 ;; This is a gathered thread, so we look at the roots
4754 ;; below it to find whether this article is in this
4755 ;; gathered root.
4756 (progn
4757 (setq sub (cdr sub))
4758 (while sub
4759 (when (member (caar sub) headers)
4760 (setq thread (car threads)
4761 threads nil
4762 sub nil))
4763 (setq sub (cdr sub))))
4764 ;; It's an ordinary thread, so we check it.
4765 (when (eq (car sub) (car headers))
4766 (setq thread sub
4767 threads nil)))
4768 (setq threads (cdr threads)))
4769 ;; If this article is in no thread, then it's a root.
4770 (if thread
4771 (unless dont-remove
4772 (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
6748645f 4773 (setq thread (gnus-id-to-thread last-id)))
eec82323
LMI
4774 (when thread
4775 (prog1
4776 thread ; We return this thread.
4777 (unless dont-remove
4778 (if (stringp (car thread))
4779 (progn
4780 ;; If we use dummy roots, then we have to remove the
4781 ;; dummy root as well.
4782 (when (eq gnus-summary-make-false-root 'dummy)
6748645f
LMI
4783 ;; We go to the dummy root by going to
4784 ;; the first sub-"thread", and then one line up.
4785 (gnus-summary-goto-article
4786 (mail-header-number (caadr thread)))
4787 (forward-line -1)
eec82323
LMI
4788 (gnus-delete-line)
4789 (gnus-data-compute-positions))
4790 (setq thread (cdr thread))
4791 (while thread
4792 (gnus-remove-thread-1 (car thread))
4793 (setq thread (cdr thread))))
4794 (gnus-remove-thread-1 thread))))))))
4795
4796(defun gnus-remove-thread-1 (thread)
4797 "Remove the thread THREAD recursively."
4798 (let ((number (mail-header-number (pop thread)))
4799 d)
4800 (setq thread (reverse thread))
4801 (while thread
4802 (gnus-remove-thread-1 (pop thread)))
4803 (when (setq d (gnus-data-find number))
4804 (goto-char (gnus-data-pos d))
16409b0b 4805 (gnus-summary-show-thread)
eec82323
LMI
4806 (gnus-data-remove
4807 number
01c52d31 4808 (- (point-at-bol)
eec82323 4809 (prog1
01c52d31 4810 (1+ (point-at-eol))
eec82323
LMI
4811 (gnus-delete-line)))))))
4812
4921bbdd 4813(defun gnus-sort-threads-recursive (threads func)
16409b0b
GM
4814 (sort (mapcar (lambda (thread)
4815 (cons (car thread)
4816 (and (cdr thread)
4921bbdd 4817 (gnus-sort-threads-recursive (cdr thread) func))))
16409b0b
GM
4818 threads) func))
4819
4921bbdd
CY
4820(defun gnus-sort-threads-loop (threads func)
4821 (let* ((superthread (cons nil threads))
4822 (stack (list (cons superthread threads)))
4823 remaining-threads thread)
4824 (while stack
4825 (setq remaining-threads (cdr (car stack)))
4826 (if remaining-threads
4827 (progn (setq thread (car remaining-threads))
4828 (setcdr (car stack) (cdr remaining-threads))
4829 (if (cdr thread)
4830 (push (cons thread (cdr thread)) stack)))
4831 (setq thread (caar stack))
4832 (setcdr thread (sort (cdr thread) func))
4833 (pop stack)))
4834 (cdr superthread)))
4835
eec82323
LMI
4836(defun gnus-sort-threads (threads)
4837 "Sort THREADS."
4838 (if (not gnus-thread-sort-functions)
4839 threads
6748645f 4840 (gnus-message 8 "Sorting threads...")
4921bbdd
CY
4841 (prog1
4842 (condition-case nil
4843 (let ((max-lisp-eval-depth (max max-lisp-eval-depth 5000)))
4844 (gnus-sort-threads-recursive
4845 threads (gnus-make-sort-function gnus-thread-sort-functions)))
4846 ;; Even after binding max-lisp-eval-depth, the recursive
4847 ;; sorter might fail for very long threads. In that case,
4848 ;; try using a (less well-tested) non-recursive sorter.
3d6e7a43
KY
4849 (error (gnus-message 9 "Sorting threads with loop...")
4850 (gnus-sort-threads-loop
4921bbdd
CY
4851 threads (gnus-make-sort-function
4852 gnus-thread-sort-functions))))
4853 (gnus-message 8 "Sorting threads...done"))))
eec82323
LMI
4854
4855(defun gnus-sort-articles (articles)
4856 "Sort ARTICLES."
4857 (when gnus-article-sort-functions
4858 (gnus-message 7 "Sorting articles...")
4859 (prog1
4860 (setq gnus-newsgroup-headers
4861 (sort articles (gnus-make-sort-function
4862 gnus-article-sort-functions)))
4863 (gnus-message 7 "Sorting articles...done"))))
4864
4865;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
4866(defmacro gnus-thread-header (thread)
16409b0b
GM
4867 "Return header of first article in THREAD.
4868Note that THREAD must never, ever be anything else than a variable -
4869using some other form will lead to serious barfage."
eec82323
LMI
4870 (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
4871 ;; (8% speedup to gnus-summary-prepare, just for fun :-)
16409b0b 4872 (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
eec82323
LMI
4873 (vector thread) 2))
4874
4875(defsubst gnus-article-sort-by-number (h1 h2)
4876 "Sort articles by article number."
4877 (< (mail-header-number h1)
4878 (mail-header-number h2)))
4879
4880(defun gnus-thread-sort-by-number (h1 h2)
4881 "Sort threads by root article number."
4882 (gnus-article-sort-by-number
4883 (gnus-thread-header h1) (gnus-thread-header h2)))
4884
23f87bed 4885(defsubst gnus-article-sort-by-random (h1 h2)
0b6799c3 4886 "Sort articles randomly."
23f87bed
MB
4887 (zerop (random 2)))
4888
4889(defun gnus-thread-sort-by-random (h1 h2)
0b6799c3 4890 "Sort threads randomly."
23f87bed
MB
4891 (gnus-article-sort-by-random
4892 (gnus-thread-header h1) (gnus-thread-header h2)))
4893
eec82323
LMI
4894(defsubst gnus-article-sort-by-lines (h1 h2)
4895 "Sort articles by article Lines header."
4896 (< (mail-header-lines h1)
4897 (mail-header-lines h2)))
4898
4899(defun gnus-thread-sort-by-lines (h1 h2)
4900 "Sort threads by root article Lines header."
4901 (gnus-article-sort-by-lines
4902 (gnus-thread-header h1) (gnus-thread-header h2)))
4903
16409b0b
GM
4904(defsubst gnus-article-sort-by-chars (h1 h2)
4905 "Sort articles by octet length."
4906 (< (mail-header-chars h1)
4907 (mail-header-chars h2)))
4908
4909(defun gnus-thread-sort-by-chars (h1 h2)
4910 "Sort threads by root article octet length."
4911 (gnus-article-sort-by-chars
4912 (gnus-thread-header h1) (gnus-thread-header h2)))
4913
eec82323
LMI
4914(defsubst gnus-article-sort-by-author (h1 h2)
4915 "Sort articles by root author."
b4fde39f 4916 (gnus-string<
eec82323
LMI
4917 (let ((extract (funcall
4918 gnus-extract-address-components
4919 (mail-header-from h1))))
4920 (or (car extract) (cadr extract) ""))
4921 (let ((extract (funcall
4922 gnus-extract-address-components
4923 (mail-header-from h2))))
4924 (or (car extract) (cadr extract) ""))))
4925
4926(defun gnus-thread-sort-by-author (h1 h2)
4927 "Sort threads by root author."
4928 (gnus-article-sort-by-author
4929 (gnus-thread-header h1) (gnus-thread-header h2)))
4930
01c52d31
MB
4931(defsubst gnus-article-sort-by-recipient (h1 h2)
4932 "Sort articles by recipient."
4933 (gnus-string<
4934 (let ((extract (funcall
4935 gnus-extract-address-components
4936 (or (cdr (assq 'To (mail-header-extra h1))) ""))))
4937 (or (car extract) (cadr extract)))
4938 (let ((extract (funcall
4939 gnus-extract-address-components
4940 (or (cdr (assq 'To (mail-header-extra h2))) ""))))
4941 (or (car extract) (cadr extract)))))
4942
4943(defun gnus-thread-sort-by-recipient (h1 h2)
4944 "Sort threads by root recipient."
4945 (gnus-article-sort-by-recipient
4946 (gnus-thread-header h1) (gnus-thread-header h2)))
4947
eec82323
LMI
4948(defsubst gnus-article-sort-by-subject (h1 h2)
4949 "Sort articles by root subject."
b4fde39f 4950 (gnus-string<
eec82323
LMI
4951 (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
4952 (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
4953
4954(defun gnus-thread-sort-by-subject (h1 h2)
4955 "Sort threads by root subject."
4956 (gnus-article-sort-by-subject
4957 (gnus-thread-header h1) (gnus-thread-header h2)))
4958
4959(defsubst gnus-article-sort-by-date (h1 h2)
4960 "Sort articles by root article date."
16409b0b 4961 (time-less-p
eec82323
LMI
4962 (gnus-date-get-time (mail-header-date h1))
4963 (gnus-date-get-time (mail-header-date h2))))
4964
4965(defun gnus-thread-sort-by-date (h1 h2)
4966 "Sort threads by root article date."
4967 (gnus-article-sort-by-date
4968 (gnus-thread-header h1) (gnus-thread-header h2)))
4969
4970(defsubst gnus-article-sort-by-score (h1 h2)
4971 "Sort articles by root article score.
4972Unscored articles will be counted as having a score of zero."
4973 (> (or (cdr (assq (mail-header-number h1)
4974 gnus-newsgroup-scored))
4975 gnus-summary-default-score 0)
4976 (or (cdr (assq (mail-header-number h2)
4977 gnus-newsgroup-scored))
4978 gnus-summary-default-score 0)))
4979
4980(defun gnus-thread-sort-by-score (h1 h2)
4981 "Sort threads by root article score."
4982 (gnus-article-sort-by-score
4983 (gnus-thread-header h1) (gnus-thread-header h2)))
4984
4985(defun gnus-thread-sort-by-total-score (h1 h2)
4986 "Sort threads by the sum of all scores in the thread.
4987Unscored articles will be counted as having a score of zero."
4988 (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
4989
4990(defun gnus-thread-total-score (thread)
16409b0b 4991 ;; This function find the total score of THREAD.
23f87bed
MB
4992 (cond
4993 ((null thread)
4994 0)
4995 ((consp thread)
4996 (if (stringp (car thread))
4997 (apply gnus-thread-score-function 0
4998 (mapcar 'gnus-thread-total-score-1 (cdr thread)))
4999 (gnus-thread-total-score-1 thread)))
5000 (t
5001 (gnus-thread-total-score-1 (list thread)))))
5002
130e977f
LMI
5003(defun gnus-article-sort-by-most-recent-number (h1 h2)
5004 "Sort articles by number."
5005 (gnus-article-sort-by-number h1 h2))
5006
23f87bed
MB
5007(defun gnus-thread-sort-by-most-recent-number (h1 h2)
5008 "Sort threads such that the thread with the most recently arrived article comes first."
5009 (> (gnus-thread-highest-number h1) (gnus-thread-highest-number h2)))
5010
5011(defun gnus-thread-highest-number (thread)
5012 "Return the highest article number in THREAD."
5013 (apply 'max (mapcar (lambda (header)
5014 (mail-header-number header))
5015 (message-flatten-list thread))))
5016
130e977f
LMI
5017(defun gnus-article-sort-by-most-recent-date (h1 h2)
5018 "Sort articles by number."
5019 (gnus-article-sort-by-date h1 h2))
5020
23f87bed
MB
5021(defun gnus-thread-sort-by-most-recent-date (h1 h2)
5022 "Sort threads such that the thread with the most recently dated article comes first."
5023 (> (gnus-thread-latest-date h1) (gnus-thread-latest-date h2)))
5024
3d6e7a43
KY
5025; Since this is called not only to sort the top-level threads, but
5026; also in recursive sorts to order the articles within a thread, each
5027; article will be processed many times. Thus it speeds things up
5028; quite a bit to use gnus-date-get-time, which caches the time value.
23f87bed
MB
5029(defun gnus-thread-latest-date (thread)
5030 "Return the highest article date in THREAD."
3d6e7a43
KY
5031 (apply 'max
5032 (mapcar (lambda (header) (gnus-float-time
5033 (gnus-date-get-time
5034 (mail-header-date header))))
5035 (message-flatten-list thread))))
eec82323
LMI
5036
5037(defun gnus-thread-total-score-1 (root)
5038 ;; This function find the total score of the thread below ROOT.
5039 (setq root (car root))
5040 (apply gnus-thread-score-function
5041 (or (append
5042 (mapcar 'gnus-thread-total-score
6748645f 5043 (cdr (gnus-id-to-thread (mail-header-id root))))
eec82323
LMI
5044 (when (> (mail-header-number root) 0)
5045 (list (or (cdr (assq (mail-header-number root)
5046 gnus-newsgroup-scored))
5047 gnus-summary-default-score 0))))
5048 (list gnus-summary-default-score)
5049 '(0))))
5050
5051;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
5052(defvar gnus-tmp-prev-subject nil)
5053(defvar gnus-tmp-false-parent nil)
5054(defvar gnus-tmp-root-expunged nil)
5055(defvar gnus-tmp-dummy-line nil)
5056
16409b0b
GM
5057(defun gnus-extra-header (type &optional header)
5058 "Return the extra header of TYPE."
5059 (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
5060 ""))
5061
23f87bed
MB
5062(defvar gnus-tmp-thread-tree-header-string "")
5063
5064(defcustom gnus-sum-thread-tree-root "> "
5065 "With %B spec, used for the root of a thread.
5066If nil, use subject instead."
bf247b6e 5067 :version "22.1"
ad136a7c 5068 :type '(radio (const :format "%v " nil) string)
23f87bed 5069 :group 'gnus-thread)
01c52d31 5070
23f87bed
MB
5071(defcustom gnus-sum-thread-tree-false-root "> "
5072 "With %B spec, used for a false root of a thread.
5073If nil, use subject instead."
bf247b6e 5074 :version "22.1"
ad136a7c 5075 :type '(radio (const :format "%v " nil) string)
23f87bed 5076 :group 'gnus-thread)
01c52d31 5077
23f87bed
MB
5078(defcustom gnus-sum-thread-tree-single-indent ""
5079 "With %B spec, used for a thread with just one message.
5080If nil, use subject instead."
bf247b6e 5081 :version "22.1"
ad136a7c 5082 :type '(radio (const :format "%v " nil) string)
23f87bed 5083 :group 'gnus-thread)
01c52d31 5084
23f87bed
MB
5085(defcustom gnus-sum-thread-tree-vertical "| "
5086 "With %B spec, used for drawing a vertical line."
bf247b6e 5087 :version "22.1"
23f87bed
MB
5088 :type 'string
5089 :group 'gnus-thread)
01c52d31 5090
23f87bed
MB
5091(defcustom gnus-sum-thread-tree-indent " "
5092 "With %B spec, used for indenting."
bf247b6e 5093 :version "22.1"
23f87bed
MB
5094 :type 'string
5095 :group 'gnus-thread)
01c52d31 5096
23f87bed
MB
5097(defcustom gnus-sum-thread-tree-leaf-with-other "+-> "
5098 "With %B spec, used for a leaf with brothers."
bf247b6e 5099 :version "22.1"
23f87bed
MB
5100 :type 'string
5101 :group 'gnus-thread)
01c52d31 5102
23f87bed
MB
5103(defcustom gnus-sum-thread-tree-single-leaf "\\-> "
5104 "With %B spec, used for a leaf without brothers."
bf247b6e 5105 :version "22.1"
23f87bed
MB
5106 :type 'string
5107 :group 'gnus-thread)
5108
1fc34624
GM
5109(defcustom gnus-summary-display-while-building nil
5110 "If non-nil, show and update the summary buffer as it's being built.
5111If the value is t, update the buffer after every line is inserted. If
5112the value is an integer (N), update the display every N lines."
5113 :version "22.1"
5114 :group 'gnus-thread
5115 :type '(choice (const :tag "off" nil)
5116 number
5117 (const :tag "frequently" t)))
5118
eec82323
LMI
5119(defun gnus-summary-prepare-threads (threads)
5120 "Prepare summary buffer from THREADS and indentation LEVEL.
5121THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
5122or a straight list of headers."
5123 (gnus-message 7 "Generating summary...")
5124
5125 (setq gnus-newsgroup-threads threads)
5126 (beginning-of-line)
5127
5128 (let ((gnus-tmp-level 0)
5129 (default-score (or gnus-summary-default-score 0))
5130 (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
23f87bed
MB
5131 (building-line-count gnus-summary-display-while-building)
5132 (building-count (integerp gnus-summary-display-while-building))
eec82323 5133 thread number subject stack state gnus-tmp-gathered beg-match
23f87bed
MB
5134 new-roots gnus-tmp-new-adopts thread-end simp-subject
5135 gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
eec82323
LMI
5136 gnus-tmp-replied gnus-tmp-subject-or-nil
5137 gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
5138 gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
23f87bed
MB
5139 gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
5140 tree-stack)
eec82323 5141
23f87bed
MB
5142 (setq gnus-tmp-prev-subject nil
5143 gnus-tmp-thread-tree-header-string "")
eec82323
LMI
5144
5145 (if (vectorp (car threads))
5146 ;; If this is a straight (sic) list of headers, then a
5147 ;; threaded summary display isn't required, so we just create
5148 ;; an unthreaded one.
5149 (gnus-summary-prepare-unthreaded threads)
5150
5151 ;; Do the threaded display.
5152
23f87bed
MB
5153 (if gnus-summary-display-while-building
5154 (switch-to-buffer (buffer-name)))
eec82323
LMI
5155 (while (or threads stack gnus-tmp-new-adopts new-roots)
5156
5157 (if (and (= gnus-tmp-level 0)
eec82323
LMI
5158 (or (not stack)
5159 (= (caar stack) 0))
5160 (not gnus-tmp-false-parent)
5161 (or gnus-tmp-new-adopts new-roots))
5162 (if gnus-tmp-new-adopts
5163 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
5164 thread (list (car gnus-tmp-new-adopts))
5165 gnus-tmp-header (caar thread)
5166 gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
5167 (when new-roots
5168 (setq thread (list (car new-roots))
5169 gnus-tmp-header (caar thread)
5170 new-roots (cdr new-roots))))
5171
5172 (if threads
5173 ;; If there are some threads, we do them before the
5174 ;; threads on the stack.
5175 (setq thread threads
5176 gnus-tmp-header (caar thread))
5177 ;; There were no current threads, so we pop something off
5178 ;; the stack.
5179 (setq state (car stack)
5180 gnus-tmp-level (car state)
23f87bed
MB
5181 tree-stack (cadr state)
5182 thread (caddr state)
eec82323
LMI
5183 stack (cdr stack)
5184 gnus-tmp-header (caar thread))))
5185
5186 (setq gnus-tmp-false-parent nil)
5187 (setq gnus-tmp-root-expunged nil)
5188 (setq thread-end nil)
5189
5190 (if (stringp gnus-tmp-header)
5191 ;; The header is a dummy root.
5192 (cond
5193 ((eq gnus-summary-make-false-root 'adopt)
5194 ;; We let the first article adopt the rest.
5195 (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
5196 (cddar thread)))
5197 (setq gnus-tmp-gathered
5198 (nconc (mapcar
5199 (lambda (h) (mail-header-number (car h)))
5200 (cddar thread))
5201 gnus-tmp-gathered))
5202 (setq thread (cons (list (caar thread)
5203 (cadar thread))
5204 (cdr thread)))
5205 (setq gnus-tmp-level -1
5206 gnus-tmp-false-parent t))
5207 ((eq gnus-summary-make-false-root 'empty)
5208 ;; We print adopted articles with empty subject fields.
5209 (setq gnus-tmp-gathered
5210 (nconc (mapcar
5211 (lambda (h) (mail-header-number (car h)))
5212 (cddar thread))
5213 gnus-tmp-gathered))
5214 (setq gnus-tmp-level -1))
5215 ((eq gnus-summary-make-false-root 'dummy)
5216 ;; We remember that we probably want to output a dummy
5217 ;; root.
5218 (setq gnus-tmp-dummy-line gnus-tmp-header)
5219 (setq gnus-tmp-prev-subject gnus-tmp-header))
5220 (t
5221 ;; We do not make a root for the gathered
5222 ;; sub-threads at all.
5223 (setq gnus-tmp-level -1)))
5224
5225 (setq number (mail-header-number gnus-tmp-header)
23f87bed
MB
5226 subject (mail-header-subject gnus-tmp-header)
5227 simp-subject (gnus-simplify-subject-fully subject))
eec82323
LMI
5228
5229 (cond
5230 ;; If the thread has changed subject, we might want to make
5231 ;; this subthread into a root.
5232 ((and (null gnus-thread-ignore-subject)
5233 (not (zerop gnus-tmp-level))
5234 gnus-tmp-prev-subject
23f87bed 5235 (not (string= gnus-tmp-prev-subject simp-subject)))
eec82323
LMI
5236 (setq new-roots (nconc new-roots (list (car thread)))
5237 thread-end t
5238 gnus-tmp-header nil))
5239 ;; If the article lies outside the current limit,
5240 ;; then we do not display it.
5241 ((not (memq number gnus-newsgroup-limit))
5242 (setq gnus-tmp-gathered
5243 (nconc (mapcar
5244 (lambda (h) (mail-header-number (car h)))
5245 (cdar thread))
5246 gnus-tmp-gathered))
5247 (setq gnus-tmp-new-adopts (if (cdar thread)
5248 (append gnus-tmp-new-adopts
5249 (cdar thread))
5250 gnus-tmp-new-adopts)
5251 thread-end t
5252 gnus-tmp-header nil)
5253 (when (zerop gnus-tmp-level)
5254 (setq gnus-tmp-root-expunged t)))
5255 ;; Perhaps this article is to be marked as read?
5256 ((and gnus-summary-mark-below
5257 (< (or (cdr (assq number gnus-newsgroup-scored))
5258 default-score)
5259 gnus-summary-mark-below)
5260 ;; Don't touch sparse articles.
5261 (not (gnus-summary-article-sparse-p number))
5262 (not (gnus-summary-article-ancient-p number)))
5263 (setq gnus-newsgroup-unreads
5264 (delq number gnus-newsgroup-unreads))
5265 (if gnus-newsgroup-auto-expire
23f87bed
MB
5266 (setq gnus-newsgroup-expirable
5267 (gnus-add-to-sorted-list
5268 gnus-newsgroup-expirable number))
eec82323
LMI
5269 (push (cons number gnus-low-score-mark)
5270 gnus-newsgroup-reads))))
5271
5272 (when gnus-tmp-header
5273 ;; We may have an old dummy line to output before this
5274 ;; article.
6748645f
LMI
5275 (when (and gnus-tmp-dummy-line
5276 (gnus-subject-equal
5277 gnus-tmp-dummy-line
5278 (mail-header-subject gnus-tmp-header)))
eec82323
LMI
5279 (gnus-summary-insert-dummy-line
5280 gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
5281 (setq gnus-tmp-dummy-line nil))
5282
5283 ;; Compute the mark.
5284 (setq gnus-tmp-unread (gnus-article-mark number))
5285
5286 (push (gnus-data-make number gnus-tmp-unread (1+ (point))
5287 gnus-tmp-header gnus-tmp-level)
5288 gnus-newsgroup-data)
5289
5290 ;; Actually insert the line.
5291 (setq
5292 gnus-tmp-subject-or-nil
5293 (cond
5294 ((and gnus-thread-ignore-subject
5295 gnus-tmp-prev-subject
23f87bed 5296 (not (string= gnus-tmp-prev-subject simp-subject)))
eec82323
LMI
5297 subject)
5298 ((zerop gnus-tmp-level)
5299 (if (and (eq gnus-summary-make-false-root 'empty)
5300 (memq number gnus-tmp-gathered)
5301 gnus-tmp-prev-subject
23f87bed 5302 (string= gnus-tmp-prev-subject simp-subject))
eec82323
LMI
5303 gnus-summary-same-subject
5304 subject))
5305 (t gnus-summary-same-subject)))
5306 (if (and (eq gnus-summary-make-false-root 'adopt)
5307 (= gnus-tmp-level 1)
5308 (memq number gnus-tmp-gathered))
5309 (setq gnus-tmp-opening-bracket ?\<
5310 gnus-tmp-closing-bracket ?\>)
5311 (setq gnus-tmp-opening-bracket ?\[
5312 gnus-tmp-closing-bracket ?\]))
4921bbdd
CY
5313 (if (>= gnus-tmp-level (length gnus-thread-indent-array))
5314 (gnus-make-thread-indent-array
5315 (max (* 2 (length gnus-thread-indent-array))
5316 gnus-tmp-level)))
eec82323
LMI
5317 (setq
5318 gnus-tmp-indentation
5319 (aref gnus-thread-indent-array gnus-tmp-level)
5320 gnus-tmp-lines (mail-header-lines gnus-tmp-header)
5321 gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
5322 gnus-summary-default-score 0)
5323 gnus-tmp-score-char
5324 (if (or (null gnus-summary-default-score)
5325 (<= (abs (- gnus-tmp-score gnus-summary-default-score))
5326 gnus-summary-zcore-fuzz))
23f87bed 5327 ? ;Whitespace
eec82323
LMI
5328 (if (< gnus-tmp-score gnus-summary-default-score)
5329 gnus-score-below-mark gnus-score-over-mark))
5330 gnus-tmp-replied
5331 (cond ((memq number gnus-newsgroup-processable)
5332 gnus-process-mark)
5333 ((memq number gnus-newsgroup-cached)
5334 gnus-cached-mark)
5335 ((memq number gnus-newsgroup-replied)
5336 gnus-replied-mark)
23f87bed
MB
5337 ((memq number gnus-newsgroup-forwarded)
5338 gnus-forwarded-mark)
eec82323
LMI
5339 ((memq number gnus-newsgroup-saved)
5340 gnus-saved-mark)
23f87bed
MB
5341 ((memq number gnus-newsgroup-recent)
5342 gnus-recent-mark)
5343 ((memq number gnus-newsgroup-unseen)
5344 gnus-unseen-mark)
5345 (t gnus-no-mark))
5346 gnus-tmp-downloaded
5347 (cond ((memq number gnus-newsgroup-undownloaded)
5348 gnus-undownloaded-mark)
5349 (gnus-newsgroup-agentized
5350 gnus-downloaded-mark)
5351 (t
5352 gnus-no-mark))
eec82323
LMI
5353 gnus-tmp-from (mail-header-from gnus-tmp-header)
5354 gnus-tmp-name
5355 (cond
5356 ((string-match "<[^>]+> *$" gnus-tmp-from)
5357 (setq beg-match (match-beginning 0))
23f87bed
MB
5358 (or (and (string-match "^\".+\"" gnus-tmp-from)
5359 (substring gnus-tmp-from 1 (1- (match-end 0))))
eec82323
LMI
5360 (substring gnus-tmp-from 0 beg-match)))
5361 ((string-match "(.+)" gnus-tmp-from)
5362 (substring gnus-tmp-from
5363 (1+ (match-beginning 0)) (1- (match-end 0))))
23f87bed
MB
5364 (t gnus-tmp-from))
5365
5366 ;; Do the %B string
5367 gnus-tmp-thread-tree-header-string
5368 (cond
5369 ((not gnus-show-threads) "")
5370 ((zerop gnus-tmp-level)
5371 (cond ((cdar thread)
5372 (or gnus-sum-thread-tree-root subject))
5373 (gnus-tmp-new-adopts
5374 (or gnus-sum-thread-tree-false-root subject))
5375 (t
5376 (or gnus-sum-thread-tree-single-indent subject))))
5377 (t
5378 (concat (apply 'concat
5379 (mapcar (lambda (item)
5380 (if (= item 1)
5381 gnus-sum-thread-tree-vertical
5382 gnus-sum-thread-tree-indent))
5383 (cdr (reverse tree-stack))))
5384 (if (nth 1 thread)
5385 gnus-sum-thread-tree-leaf-with-other
5386 gnus-sum-thread-tree-single-leaf)))))
eec82323
LMI
5387 (when (string= gnus-tmp-name "")
5388 (setq gnus-tmp-name gnus-tmp-from))
5389 (unless (numberp gnus-tmp-lines)
23f87bed
MB
5390 (setq gnus-tmp-lines -1))
5391 (if (= gnus-tmp-lines -1)
5392 (setq gnus-tmp-lines "?")
5393 (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
61b1af82
G
5394 (gnus-put-text-property
5395 (point)
5396 (progn (eval gnus-summary-line-format-spec) (point))
5397 'gnus-number number)
5398 (when gnus-visual-p
5399 (forward-line -1)
5400 (gnus-summary-highlight-line)
5401 (when gnus-summary-update-hook
5402 (gnus-run-hooks 'gnus-summary-update-hook))
5403 (forward-line 1))
5404
5405 (setq gnus-tmp-prev-subject simp-subject)))
eec82323
LMI
5406
5407 (when (nth 1 thread)
23f87bed
MB
5408 (push (list (max 0 gnus-tmp-level)
5409 (copy-sequence tree-stack)
5410 (nthcdr 1 thread))
5411 stack))
5412 (push (if (nth 1 thread) 1 0) tree-stack)
eec82323
LMI
5413 (incf gnus-tmp-level)
5414 (setq threads (if thread-end nil (cdar thread)))
23f87bed
MB
5415 (if gnus-summary-display-while-building
5416 (if building-count
5417 (progn
5418 ;; use a set frequency
5419 (setq building-line-count (1- building-line-count))
5420 (when (= building-line-count 0)
5421 (sit-for 0)
5422 (setq building-line-count
5423 gnus-summary-display-while-building)))
5424 ;; always
5425 (sit-for 0)))
eec82323
LMI
5426 (unless threads
5427 (setq gnus-tmp-level 0)))))
5428 (gnus-message 7 "Generating summary...done"))
5429
5430(defun gnus-summary-prepare-unthreaded (headers)
5431 "Generate an unthreaded summary buffer based on HEADERS."
5432 (let (header number mark)
5433
5434 (beginning-of-line)
5435
5436 (while headers
5437 ;; We may have to root out some bad articles...
5438 (when (memq (setq number (mail-header-number
5439 (setq header (pop headers))))
5440 gnus-newsgroup-limit)
5441 ;; Mark article as read when it has a low score.
5442 (when (and gnus-summary-mark-below
5443 (< (or (cdr (assq number gnus-newsgroup-scored))
5444 gnus-summary-default-score 0)
5445 gnus-summary-mark-below)
5446 (not (gnus-summary-article-ancient-p number)))
5447 (setq gnus-newsgroup-unreads
5448 (delq number gnus-newsgroup-unreads))
5449 (if gnus-newsgroup-auto-expire
5450 (push number gnus-newsgroup-expirable)
5451 (push (cons number gnus-low-score-mark)
5452 gnus-newsgroup-reads)))
5453
5454 (setq mark (gnus-article-mark number))
5455 (push (gnus-data-make number mark (1+ (point)) header 0)
5456 gnus-newsgroup-data)
5457 (gnus-summary-insert-line
5458 header 0 number
23f87bed 5459 (memq number gnus-newsgroup-undownloaded)
eec82323
LMI
5460 mark (memq number gnus-newsgroup-replied)
5461 (memq number gnus-newsgroup-expirable)
5462 (mail-header-subject header) nil
5463 (cdr (assq number gnus-newsgroup-scored))
5464 (memq number gnus-newsgroup-processable))))))
5465
16409b0b
GM
5466(defun gnus-summary-remove-list-identifiers ()
5467 "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
23f87bed
MB
5468 (let ((regexp (if (consp gnus-list-identifiers)
5469 (mapconcat 'identity gnus-list-identifiers " *\\|")
5470 gnus-list-identifiers))
5471 changed subject)
5472 (when regexp
01c52d31 5473 (setq regexp (concat "^\\(?:R[Ee]: +\\)*\\(" regexp " *\\)"))
23f87bed
MB
5474 (dolist (header gnus-newsgroup-headers)
5475 (setq subject (mail-header-subject header)
5476 changed nil)
01c52d31 5477 (while (string-match regexp subject)
23f87bed 5478 (setq subject
01c52d31 5479 (concat (substring subject 0 (match-beginning 1))
23f87bed
MB
5480 (substring subject (match-end 0)))
5481 changed t))
23f87bed 5482 (when changed
01c52d31
MB
5483 (when (string-match "^\\(\\(?:R[Ee]: +\\)+\\)R[Ee]: +" subject)
5484 (setq subject
5485 (concat (substring subject 0 (match-beginning 1))
5486 (substring subject (match-end 1)))))
23f87bed
MB
5487 (mail-header-set-subject header subject))))))
5488
4ddab346 5489(defun gnus-fetch-headers (articles &optional limit force-new dependencies)
23f87bed
MB
5490 "Fetch headers of ARTICLES."
5491 (let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
5492 (gnus-message 5 "Fetching headers for %s..." name)
5493 (prog1
5494 (if (eq 'nov
5495 (setq gnus-headers-retrieved-by
5496 (gnus-retrieve-headers
5497 articles gnus-newsgroup-name
4ddab346
G
5498 (or limit
5499 ;; We might want to fetch old headers, but
5500 ;; not if there is only 1 article.
5501 (and (or (and
5502 (not (eq gnus-fetch-old-headers 'some))
5503 (not (numberp gnus-fetch-old-headers)))
5504 (> (length articles) 1))
5505 gnus-fetch-old-headers)))))
23f87bed 5506 (gnus-get-newsgroup-headers-xover
4ddab346
G
5507 articles force-new dependencies gnus-newsgroup-name t)
5508 (gnus-get-newsgroup-headers dependencies force-new))
23f87bed 5509 (gnus-message 5 "Fetching headers for %s...done" name))))
16409b0b 5510
6748645f 5511(defun gnus-select-newsgroup (group &optional read-all select-articles)
eec82323 5512 "Select newsgroup GROUP.
6748645f
LMI
5513If READ-ALL is non-nil, all articles in the group are selected.
5514If SELECT-ARTICLES, only select those articles from GROUP."
01c52d31 5515 (let* ((entry (gnus-group-entry group))
eec82323
LMI
5516 ;;!!! Dirty hack; should be removed.
5517 (gnus-summary-ignore-duplicates
23f87bed 5518 (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
eec82323
LMI
5519 t
5520 gnus-summary-ignore-duplicates))
5521 (info (nth 2 entry))
01c52d31 5522 charset articles fetched-articles cached)
eec82323
LMI
5523
5524 (unless (gnus-check-server
475e0e0c
GM
5525 (set (make-local-variable 'gnus-current-select-method)
5526 (gnus-find-method-for-group group)))
eec82323 5527 (error "Couldn't open server"))
01c52d31 5528 (setq charset (gnus-group-name-charset gnus-current-select-method group))
eec82323
LMI
5529
5530 (or (and entry (not (eq (car entry) t))) ; Either it's active...
5531 (gnus-activate-group group) ; Or we can activate it...
5532 (progn ; Or we bug out.
5533 (when (equal major-mode 'gnus-summary-mode)
23f87bed 5534 (gnus-kill-buffer (current-buffer)))
01c52d31
MB
5535 (error
5536 "Couldn't activate group %s: %s"
5537 (mm-decode-coding-string group charset)
5538 (mm-decode-coding-string (gnus-status-message group) charset))))
eec82323
LMI
5539
5540 (unless (gnus-request-group group t)
20a673b2
KY
5541 (when (equal major-mode 'gnus-summary-mode)
5542 (gnus-kill-buffer (current-buffer)))
5543 (error "Couldn't request group %s: %s"
5544 (mm-decode-coding-string group charset)
5545 (mm-decode-coding-string (gnus-status-message group) charset)))
eec82323 5546
23f87bed 5547 (when gnus-agent
54506618 5548 (gnus-agent-possibly-alter-active group (gnus-active group) info)
132cf96d 5549
23f87bed
MB
5550 (setq gnus-summary-use-undownloaded-faces
5551 (gnus-agent-find-parameter
5552 group
5553 'agent-enable-undownloaded-faces)))
5554
5555 (setq gnus-newsgroup-name group
5556 gnus-newsgroup-unselected nil
5557 gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
5558
5559 (let ((display (gnus-group-find-parameter group 'display)))
5560 (setq gnus-newsgroup-display
5561 (cond
5562 ((not (zerop (or (car-safe read-all) 0)))
5563 ;; The user entered the group with C-u SPC/RET, let's show
5564 ;; all articles.
5565 'gnus-not-ignore)
5566 ((eq display 'all)
5567 'gnus-not-ignore)
5568 ((arrayp display)
5569 (gnus-summary-display-make-predicate (mapcar 'identity display)))
5570 ((numberp display)
5571 ;; The following is probably the "correct" solution, but
5572 ;; it makes Gnus fetch all headers and then limit the
5573 ;; articles (which is slow), so instead we hack the
5574 ;; select-articles parameter instead. -- Simon Josefsson
5575 ;; <jas@kth.se>
5576 ;;
5577 ;; (gnus-byte-compile
5578 ;; `(lambda () (> number ,(- (cdr (gnus-active group))
5579 ;; display)))))
5580 (setq select-articles
5581 (gnus-uncompress-range
5582 (cons (let ((tmp (- (cdr (gnus-active group)) display)))
5583 (if (> tmp 0)
5584 tmp
5585 1))
5586 (cdr (gnus-active group)))))
5587 nil)
5588 (t
5589 nil))))
eec82323 5590
23f87bed 5591 (gnus-summary-setup-default-charset)
eec82323
LMI
5592
5593 ;; Kludge to avoid having cached articles nixed out in virtual groups.
5594 (when (gnus-virtual-group-p group)
5595 (setq cached gnus-newsgroup-cached))
5596
5597 (setq gnus-newsgroup-unreads
23f87bed
MB
5598 (gnus-sorted-ndifference
5599 (gnus-sorted-ndifference gnus-newsgroup-unreads
5600 gnus-newsgroup-marked)
eec82323
LMI
5601 gnus-newsgroup-dormant))
5602
5603 (setq gnus-newsgroup-processable nil)
5604
bb7f5cbc 5605 (gnus-update-read-articles group gnus-newsgroup-unreads t)
eec82323 5606
23f87bed
MB
5607 ;; Adjust and set lists of article marks.
5608 (when info
5609 (gnus-adjust-marked-articles info))
6748645f
LMI
5610 (if (setq articles select-articles)
5611 (setq gnus-newsgroup-unselected
23f87bed 5612 (gnus-sorted-difference gnus-newsgroup-unreads articles))
6748645f 5613 (setq articles (gnus-articles-to-read group read-all)))
eec82323
LMI
5614
5615 (cond
5616 ((null articles)
5617 ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
5618 'quit)
5619 ((eq articles 0) nil)
5620 (t
5621 ;; Init the dependencies hash table.
5622 (setq gnus-newsgroup-dependencies
5623 (gnus-make-hashtable (length articles)))
16409b0b 5624 (gnus-set-global-variables)
eec82323 5625 ;; Retrieve the headers and read them in.
23f87bed
MB
5626
5627 (setq gnus-newsgroup-headers (gnus-fetch-headers articles))
eec82323
LMI
5628
5629 ;; Kludge to avoid having cached articles nixed out in virtual groups.
5630 (when cached
5631 (setq gnus-newsgroup-cached cached))
5632
5633 ;; Suppress duplicates?
5634 (when gnus-suppress-duplicates
5635 (gnus-dup-suppress-articles))
5636
5637 ;; Set the initial limit.
5638 (setq gnus-newsgroup-limit (copy-sequence articles))
5639 ;; Remove canceled articles from the list of unread articles.
23f87bed
MB
5640 (setq fetched-articles
5641 (mapcar (lambda (headers) (mail-header-number headers))
5642 gnus-newsgroup-headers))
5643 (setq gnus-newsgroup-articles fetched-articles)
eec82323 5644 (setq gnus-newsgroup-unreads
23f87bed
MB
5645 (gnus-sorted-nintersection
5646 gnus-newsgroup-unreads fetched-articles))
5647 (gnus-compute-unseen-list)
5648
eec82323
LMI
5649 ;; Removed marked articles that do not exist.
5650 (gnus-update-missing-marks
23f87bed 5651 (gnus-sorted-difference articles fetched-articles))
eec82323 5652 ;; We might want to build some more threads first.
6748645f
LMI
5653 (when (and gnus-fetch-old-headers
5654 (eq gnus-headers-retrieved-by 'nov))
5655 (if (eq gnus-fetch-old-headers 'invisible)
5656 (gnus-build-all-threads)
5657 (gnus-build-old-threads)))
5658 ;; Let the Gnus agent mark articles as read.
5659 (when gnus-agent
5660 (gnus-agent-get-undownloaded-list))
16409b0b
GM
5661 ;; Remove list identifiers from subject
5662 (when gnus-list-identifiers
5663 (gnus-summary-remove-list-identifiers))
eec82323
LMI
5664 ;; Check whether auto-expire is to be done in this group.
5665 (setq gnus-newsgroup-auto-expire
5666 (gnus-group-auto-expirable-p group))
5667 ;; Set up the article buffer now, if necessary.
01c52d31
MB
5668 (unless (and gnus-single-article-buffer
5669 (equal gnus-article-buffer "*Article*"))
eec82323
LMI
5670 (gnus-article-setup-buffer))
5671 ;; First and last article in this newsgroup.
5672 (when gnus-newsgroup-headers
5673 (setq gnus-newsgroup-begin
5674 (mail-header-number (car gnus-newsgroup-headers))
5675 gnus-newsgroup-end
5676 (mail-header-number
5677 (gnus-last-element gnus-newsgroup-headers))))
5678 ;; GROUP is successfully selected.
5679 (or gnus-newsgroup-headers t)))))
5680
23f87bed
MB
5681(defun gnus-compute-unseen-list ()
5682 ;; The `seen' marks are treated specially.
5683 (if (not gnus-newsgroup-seen)
5684 (setq gnus-newsgroup-unseen gnus-newsgroup-articles)
5685 (setq gnus-newsgroup-unseen
5686 (gnus-inverse-list-range-intersection
5687 gnus-newsgroup-articles gnus-newsgroup-seen))))
5688
d09ae6ca
GM
5689(declare-function gnus-get-predicate "gnus-agent" (predicate))
5690
23f87bed
MB
5691(defun gnus-summary-display-make-predicate (display)
5692 (require 'gnus-agent)
5693 (when (= (length display) 1)
5694 (setq display (car display)))
5695 (unless gnus-summary-display-cache
5696 (dolist (elem (append '((unread . unread)
5697 (read . read)
5698 (unseen . unseen))
5699 gnus-article-mark-lists))
5700 (push (cons (cdr elem)
3a3cbf0a 5701 (gnus-byte-compile ;Why bother?
23f87bed
MB
5702 `(lambda () (gnus-article-marked-p ',(cdr elem)))))
5703 gnus-summary-display-cache)))
5704 (let ((gnus-category-predicate-alist gnus-summary-display-cache)
5705 (gnus-category-predicate-cache gnus-summary-display-cache))
5706 (gnus-get-predicate display)))
5707
3a3cbf0a
SM
5708;; Uses the dynamically bound `gnus-number' variable.
5709(defvar gnus-number)
23f87bed 5710(defun gnus-article-marked-p (type &optional article)
3a3cbf0a 5711 (let ((article (or article gnus-number)))
23f87bed
MB
5712 (cond
5713 ((eq type 'tick)
5714 (memq article gnus-newsgroup-marked))
5715 ((eq type 'spam)
5716 (memq article gnus-newsgroup-spam-marked))
5717 ((eq type 'unsend)
5718 (memq article gnus-newsgroup-unsendable))
5719 ((eq type 'undownload)
5720 (memq article gnus-newsgroup-undownloaded))
5721 ((eq type 'download)
5722 (memq article gnus-newsgroup-downloadable))
5723 ((eq type 'unread)
5724 (memq article gnus-newsgroup-unreads))
5725 ((eq type 'read)
5726 (memq article gnus-newsgroup-reads))
5727 ((eq type 'dormant)
5728 (memq article gnus-newsgroup-dormant) )
5729 ((eq type 'expire)
5730 (memq article gnus-newsgroup-expirable))
5731 ((eq type 'reply)
5732 (memq article gnus-newsgroup-replied))
5733 ((eq type 'killed)
5734 (memq article gnus-newsgroup-killed))
5735 ((eq type 'bookmark)
5736 (assq article gnus-newsgroup-bookmarks))
5737 ((eq type 'score)
5738 (assq article gnus-newsgroup-scored))
5739 ((eq type 'save)
5740 (memq article gnus-newsgroup-saved))
5741 ((eq type 'cache)
5742 (memq article gnus-newsgroup-cached))
5743 ((eq type 'forward)
5744 (memq article gnus-newsgroup-forwarded))
5745 ((eq type 'seen)
5746 (not (memq article gnus-newsgroup-unseen)))
5747 ((eq type 'recent)
5748 (memq article gnus-newsgroup-recent))
5749 (t t))))
5750
eec82323 5751(defun gnus-articles-to-read (group &optional read-all)
16409b0b 5752 "Find out what articles the user wants to read."
26c9afc3 5753 (let* ((articles
eec82323
LMI
5754 ;; Select all articles if `read-all' is non-nil, or if there
5755 ;; are no unread articles.
5756 (if (or read-all
5757 (and (zerop (length gnus-newsgroup-marked))
5758 (zerop (length gnus-newsgroup-unreads)))
23f87bed
MB
5759 ;; Fetch all if the predicate is non-nil.
5760 gnus-newsgroup-display)
5761 ;; We want to select the headers for all the articles in
5762 ;; the group, so we select either all the active
5763 ;; articles in the group, or (if that's nil), the
5764 ;; articles in the cache.
16409b0b 5765 (or
4b70e299 5766 (if gnus-newsgroup-maximum-articles
11abff8e
MB
5767 (let ((active (gnus-active group)))
5768 (gnus-uncompress-range
5769 (cons (max (car active)
4b70e299
MB
5770 (- (cdr active)
5771 gnus-newsgroup-maximum-articles
5772 -1))
11abff8e
MB
5773 (cdr active))))
5774 (gnus-uncompress-range (gnus-active group)))
16409b0b 5775 (gnus-cache-articles-in-group group))
23f87bed
MB
5776 ;; Select only the "normal" subset of articles.
5777 (gnus-sorted-nunion
5778 (gnus-sorted-union gnus-newsgroup-dormant gnus-newsgroup-marked)
5779 gnus-newsgroup-unreads)))
eec82323
LMI
5780 (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
5781 (scored (length scored-list))
5782 (number (length articles))
5783 (marked (+ (length gnus-newsgroup-marked)
5784 (length gnus-newsgroup-dormant)))
5785 (select
5786 (cond
5787 ((numberp read-all)
5788 read-all)
23f87bed
MB
5789 ((numberp gnus-newsgroup-display)
5790 gnus-newsgroup-display)
eec82323
LMI
5791 (t
5792 (condition-case ()
5793 (cond
5794 ((and (or (<= scored marked) (= scored number))
5795 (numberp gnus-large-newsgroup)
5796 (> number gnus-large-newsgroup))
23f87bed
MB
5797 (let* ((cursor-in-echo-area nil)
5798 (initial (gnus-parameter-large-newsgroup-initial
5799 gnus-newsgroup-name))
5800 (input
5801 (read-string
5802 (format
5803 "How many articles from %s (%s %d): "
01c52d31 5804 (gnus-group-decoded-name gnus-newsgroup-name)
23f87bed
MB
5805 (if initial "max" "default")
5806 number)
5807 (if initial
5808 (cons (number-to-string initial)
5809 0)))))
eec82323
LMI
5810 (if (string-match "^[ \t]*$" input) number input)))
5811 ((and (> scored marked) (< scored number)
5812 (> (- scored number) 20))
5813 (let ((input
5814 (read-string
5815 (format "%s %s (%d scored, %d total): "
5816 "How many articles from"
23f87bed
MB
5817 (gnus-group-decoded-name group)
5818 scored number))))
eec82323
LMI
5819 (if (string-match "^[ \t]*$" input)
5820 number input)))
5821 (t number))
d4dfaa19
DL
5822 (quit
5823 (message "Quit getting the articles to read")
5824 nil))))))
eec82323
LMI
5825 (setq select (if (stringp select) (string-to-number select) select))
5826 (if (or (null select) (zerop select))
5827 select
5828 (if (and (not (zerop scored)) (<= (abs select) scored))
5829 (progn
5830 (setq articles (sort scored-list '<))
5831 (setq number (length articles)))
5832 (setq articles (copy-sequence articles)))
5833
5834 (when (< (abs select) number)
5835 (if (< select 0)
5836 ;; Select the N oldest articles.
5837 (setcdr (nthcdr (1- (abs select)) articles) nil)
5838 ;; Select the N most recent articles.
5839 (setq articles (nthcdr (- number select) articles))))
5840 (setq gnus-newsgroup-unselected
23f87bed 5841 (gnus-sorted-difference gnus-newsgroup-unreads articles))
16409b0b 5842 (when gnus-alter-articles-to-read-function
23f87bed 5843 (setq articles
a1506d29 5844 (sort
16409b0b 5845 (funcall gnus-alter-articles-to-read-function
23f87bed 5846 gnus-newsgroup-name articles)
16409b0b 5847 '<)))
eec82323
LMI
5848 articles)))
5849
5850(defun gnus-killed-articles (killed articles)
5851 (let (out)
5852 (while articles
5853 (when (inline (gnus-member-of-range (car articles) killed))
5854 (push (car articles) out))
5855 (setq articles (cdr articles)))
5856 out))
5857
5858(defun gnus-uncompress-marks (marks)
5859 "Uncompress the mark ranges in MARKS."
5860 (let ((uncompressed '(score bookmark))
5861 out)
5862 (while marks
5863 (if (memq (caar marks) uncompressed)
5864 (push (car marks) out)
5865 (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
5866 (setq marks (cdr marks)))
5867 out))
5868
23f87bed
MB
5869(defun gnus-article-mark-to-type (mark)
5870 "Return the type of MARK."
5871 (or (cadr (assq mark gnus-article-special-mark-lists))
5872 'list))
5873
5874(defun gnus-article-unpropagatable-p (mark)
5875 "Return whether MARK should be propagated to back end."
5876 (memq mark gnus-article-unpropagated-mark-lists))
5877
eec82323 5878(defun gnus-adjust-marked-articles (info)
16409b0b 5879 "Set all article lists and remove all marks that are no longer valid."
eec82323
LMI
5880 (let* ((marked-lists (gnus-info-marks info))
5881 (active (gnus-active (gnus-info-group info)))
5882 (min (car active))
5883 (max (cdr active))
5884 (types gnus-article-mark-lists)
54506618
MB
5885 marks var articles article mark mark-type
5886 bgn end)
0617bb00
LMI
5887 ;; Hack to avoid adjusting marks for imap.
5888 (when (eq (car (gnus-find-method-for-group (gnus-info-group info)))
5889 'nnimap)
5890 (setq min 1))
eec82323 5891
23f87bed
MB
5892 (dolist (marks marked-lists)
5893 (setq mark (car marks)
5894 mark-type (gnus-article-mark-to-type mark)
5895 var (intern (format "gnus-newsgroup-%s" (car (rassq mark types)))))
eec82323 5896
23f87bed
MB
5897 ;; We set the variable according to the type of the marks list,
5898 ;; and then adjust the marks to a subset of the active articles.
eec82323 5899 (cond
54506618 5900 ;; Adjust "simple" lists - compressed yet unsorted
23f87bed 5901 ((eq mark-type 'list)
54506618
MB
5902 ;; Simultaneously uncompress and clip to active range
5903 ;; See gnus-uncompress-range for a description of possible marks
5904 (let (l lh)
5905 (if (not (cadr marks))
5906 (set var nil)
5907 (setq articles (if (numberp (cddr marks))
5908 (list (cdr marks))
5909 (cdr marks))
5910 lh (cons nil nil)
5911 l lh)
5912
5913 (while (setq article (pop articles))
5914 (cond ((consp article)
5915 (setq bgn (max (car article) min)
5916 end (min (cdr article) max))
5917 (while (<= bgn end)
5918 (setq l (setcdr l (cons bgn nil))
5919 bgn (1+ bgn))))
5920 ((and (<= min article)
5921 (>= max article))
5922 (setq l (setcdr l (cons article nil))))))
5923 (set var (cdr lh)))))
eec82323 5924 ;; Adjust assocs.
23f87bed
MB
5925 ((eq mark-type 'tuple)
5926 (set var (setq articles (cdr marks)))
a8151ef7
LMI
5927 (when (not (listp (cdr (symbol-value var))))
5928 (set var (list (symbol-value var))))
5929 (when (not (listp (cdr articles)))
5930 (setq articles (list articles)))
eec82323
LMI
5931 (while articles
5932 (when (or (not (consp (setq article (pop articles))))
5933 (< (car article) min)
5934 (> (car article) max))
23f87bed
MB
5935 (set var (delq article (symbol-value var))))))
5936 ;; Adjust ranges (sloppily).
5937 ((eq mark-type 'range)
5938 (cond
5939 ((eq mark 'seen)
5940 ;; Fix the record for `seen' if it looks like (seen NUM1 . NUM2).
5941 ;; It should be (seen (NUM1 . NUM2)).
5942 (when (numberp (cddr marks))
5943 (setcdr marks (list (cdr marks))))
5944 (setq articles (cdr marks))
5945 (while (and articles
5946 (or (and (consp (car articles))
5947 (> min (cdar articles)))
5948 (and (numberp (car articles))
5949 (> min (car articles)))))
5950 (pop articles))
5951 (set var articles))))))))
eec82323
LMI
5952
5953(defun gnus-update-missing-marks (missing)
6748645f 5954 "Go through the list of MISSING articles and remove them from the mark lists."
eec82323 5955 (when missing
23f87bed 5956 (let (var m)
eec82323 5957 ;; Go through all types.
23f87bed
MB
5958 (dolist (elem gnus-article-mark-lists)
5959 (when (eq (gnus-article-mark-to-type (cdr elem)) 'list)
5960 (setq var (intern (format "gnus-newsgroup-%s" (car elem))))
5961 (when (symbol-value var)
5962 ;; This list has articles. So we delete all missing
5963 ;; articles from it.
5964 (setq m missing)
5965 (while m
5966 (set var (delq (pop m) (symbol-value var))))))))))
eec82323
LMI
5967
5968(defun gnus-update-marks ()
5969 "Enter the various lists of marked articles into the newsgroup info list."
5970 (let ((types gnus-article-mark-lists)
5971 (info (gnus-get-info gnus-newsgroup-name))
16409b0b 5972 type list newmarked symbol delta-marks)
eec82323 5973 (when info
16409b0b 5974 ;; Add all marks lists to the list of marks lists.
eec82323 5975 (while (setq type (pop types))
16409b0b
GM
5976 (setq list (symbol-value
5977 (setq symbol
23f87bed 5978 (intern (format "gnus-newsgroup-%s" (car type))))))
eec82323 5979
16409b0b 5980 (when list
eec82323
LMI
5981 ;; Get rid of the entries of the articles that have the
5982 ;; default score.
5983 (when (and (eq (cdr type) 'score)
5984 gnus-save-score
5985 list)
5986 (let* ((arts list)
5987 (prev (cons nil list))
5988 (all prev))
5989 (while arts
5990 (if (or (not (consp (car arts)))
5991 (= (cdar arts) gnus-summary-default-score))
5992 (setcdr prev (cdr arts))
5993 (setq prev arts))
5994 (setq arts (cdr arts)))
16409b0b
GM
5995 (setq list (cdr all)))))
5996
23f87bed
MB
5997 (when (eq (cdr type) 'seen)
5998 (setq list (gnus-range-add list gnus-newsgroup-unseen)))
5999
6000 (when (eq (gnus-article-mark-to-type (cdr type)) 'list)
16409b0b 6001 (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
a1506d29 6002
23f87bed
MB
6003 (when (and (gnus-check-backend-function
6004 'request-set-mark gnus-newsgroup-name)
6005 (not (gnus-article-unpropagatable-p (cdr type))))
6006 (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
6007 (del (gnus-remove-from-range (gnus-copy-sequence old) list))
6008 (add (gnus-remove-from-range
6009 (gnus-copy-sequence list) old)))
6010 (when add
6011 (push (list add 'add (list (cdr type))) delta-marks))
6012 (when del
b069e5a6
G
6013 ;; Don't delete marks from outside the active range. This
6014 ;; shouldn't happen, but is a sanity check.
6015 (setq del (gnus-sorted-range-intersection
6016 (gnus-active gnus-newsgroup-name) del))
23f87bed 6017 (push (list del 'del (list (cdr type))) delta-marks))))
a1506d29 6018
16409b0b
GM
6019 (when list
6020 (push (cons (cdr type) list) newmarked)))
6021
6022 (when delta-marks
6023 (unless (gnus-check-group gnus-newsgroup-name)
6024 (error "Can't open server for %s" gnus-newsgroup-name))
6025 (gnus-request-set-mark gnus-newsgroup-name delta-marks))
a1506d29 6026
eec82323
LMI
6027 ;; Enter these new marks into the info of the group.
6028 (if (nthcdr 3 info)
6029 (setcar (nthcdr 3 info) newmarked)
6030 ;; Add the marks lists to the end of the info.
6031 (when newmarked
6032 (setcdr (nthcdr 2 info) (list newmarked))))
6033
6034 ;; Cut off the end of the info if there's nothing else there.
6035 (let ((i 5))
6036 (while (and (> i 2)
6037 (not (nth i info)))
6038 (when (nthcdr (decf i) info)
6039 (setcdr (nthcdr i info) nil)))))))
6040
6041(defun gnus-set-mode-line (where)
16409b0b 6042 "Set the mode line of the article or summary buffers.
eec82323
LMI
6043If WHERE is `summary', the summary mode line format will be used."
6044 ;; Is this mode line one we keep updated?
16409b0b
GM
6045 (when (and (memq where gnus-updated-mode-lines)
6046 (symbol-value
6047 (intern (format "gnus-%s-mode-line-format-spec" where))))
eec82323 6048 (let (mode-string)
c7a91ce1
SM
6049 ;; We evaluate this in the summary buffer since these
6050 ;; variables are buffer-local to that buffer.
6051 (with-current-buffer gnus-summary-buffer
6052 ;; We bind all these variables that are used in the `eval' form
eec82323
LMI
6053 ;; below.
6054 (let* ((mformat (symbol-value
6055 (intern
6056 (format "gnus-%s-mode-line-format-spec" where))))
b90a6149
MB
6057 (gnus-tmp-group-name (gnus-mode-string-quote
6058 (gnus-group-decoded-name
6059 gnus-newsgroup-name)))
eec82323
LMI
6060 (gnus-tmp-article-number (or gnus-current-article 0))
6061 (gnus-tmp-unread gnus-newsgroup-unreads)
6062 (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
6063 (gnus-tmp-unselected (length gnus-newsgroup-unselected))
6064 (gnus-tmp-unread-and-unselected
6065 (cond ((and (zerop gnus-tmp-unread-and-unticked)
6066 (zerop gnus-tmp-unselected))
6067 "")
6068 ((zerop gnus-tmp-unselected)
6069 (format "{%d more}" gnus-tmp-unread-and-unticked))
6070 (t (format "{%d(+%d) more}"
6071 gnus-tmp-unread-and-unticked
6072 gnus-tmp-unselected))))
6073 (gnus-tmp-subject
6074 (if (and gnus-current-headers
6075 (vectorp gnus-current-headers))
6076 (gnus-mode-string-quote
6077 (mail-header-subject gnus-current-headers))
6078 ""))
6079 bufname-length max-len
23f87bed 6080 gnus-tmp-header) ;; passed as argument to any user-format-funcs
eec82323
LMI
6081 (setq mode-string (eval mformat))
6082 (setq bufname-length (if (string-match "%b" mode-string)
6083 (- (length
6084 (buffer-name
6085 (if (eq where 'summary)
6086 nil
6087 (get-buffer gnus-article-buffer))))
6088 2)
6089 0))
6090 (setq max-len (max 4 (if gnus-mode-non-string-length
6091 (- (window-width)
6092 gnus-mode-non-string-length
6093 bufname-length)
6094 (length mode-string))))
6095 ;; We might have to chop a bit of the string off...
6096 (when (> (length mode-string) max-len)
6097 (setq mode-string
16409b0b 6098 (concat (truncate-string-to-width mode-string (- max-len 3))
29d31b55 6099 "...")))))
eec82323
LMI
6100 ;; Update the mode line.
6101 (setq mode-line-buffer-identification
6102 (gnus-mode-line-buffer-identification (list mode-string)))
6103 (set-buffer-modified-p t))))
6104
6105(defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
6106 "Go through the HEADERS list and add all Xrefs to a hash table.
6107The resulting hash table is returned, or nil if no Xrefs were found."
6108 (let* ((virtual (gnus-virtual-group-p from-newsgroup))
6109 (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
6110 (xref-hashtb (gnus-make-hashtable))
6111 start group entry number xrefs header)
6112 (while headers
6113 (setq header (pop headers))
6114 (when (and (setq xrefs (mail-header-xref header))
6115 (not (memq (setq number (mail-header-number header))
6116 unreads)))
6117 (setq start 0)
6118 (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
6119 (setq start (match-end 0))
6120 (setq group (if prefix
6121 (concat prefix (substring xrefs (match-beginning 1)
6122 (match-end 1)))
6123 (substring xrefs (match-beginning 1) (match-end 1))))
6124 (setq number
e9bd5782 6125 (string-to-number (substring xrefs (match-beginning 2)
eec82323
LMI
6126 (match-end 2))))
6127 (if (setq entry (gnus-gethash group xref-hashtb))
6128 (setcdr entry (cons number (cdr entry)))
6129 (gnus-sethash group (cons number nil) xref-hashtb)))))
6130 (and start xref-hashtb)))
6131
6132(defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
6133 "Look through all the headers and mark the Xrefs as read."
6134 (let ((virtual (gnus-virtual-group-p from-newsgroup))
01c52d31 6135 name info xref-hashtb idlist method nth4)
398a825b 6136 (with-current-buffer gnus-group-buffer
eec82323
LMI
6137 (when (setq xref-hashtb
6138 (gnus-create-xref-hashtb from-newsgroup headers unreads))
6139 (mapatoms
6140 (lambda (group)
6141 (unless (string= from-newsgroup (setq name (symbol-name group)))
6142 (setq idlist (symbol-value group))
6143 ;; Dead groups are not updated.
6144 (and (prog1
01c52d31 6145 (setq info (gnus-get-info name))
eec82323
LMI
6146 (when (stringp (setq nth4 (gnus-info-method info)))
6147 (setq nth4 (gnus-server-to-method nth4))))
6148 ;; Only do the xrefs if the group has the same
6149 ;; select method as the group we have just read.
6150 (or (gnus-methods-equal-p
6151 nth4 (gnus-find-method-for-group from-newsgroup))
6152 virtual
6153 (equal nth4 (setq method (gnus-find-method-for-group
6154 from-newsgroup)))
6155 (and (equal (car nth4) (car method))
6156 (equal (nth 1 nth4) (nth 1 method))))
6157 gnus-use-cross-reference
6158 (or (not (eq gnus-use-cross-reference t))
6159 virtual
6160 ;; Only do cross-references on subscribed
6161 ;; groups, if that is what is wanted.
6162 (<= (gnus-info-level info) gnus-level-subscribed))
6163 (gnus-group-make-articles-read name idlist))))
6164 xref-hashtb)))))
6165
6748645f 6166(defun gnus-compute-read-articles (group articles)
01c52d31 6167 (let* ((entry (gnus-group-entry group))
6748645f
LMI
6168 (info (nth 2 entry))
6169 (active (gnus-active group))
6170 ninfo)
6171 (when entry
16409b0b 6172 ;; First peel off all invalid article numbers.
6748645f
LMI
6173 (when active
6174 (let ((ids articles)
6175 id first)
6176 (while (setq id (pop ids))
6177 (when (and first (> id (cdr active)))
6178 ;; We'll end up in this situation in one particular
6179 ;; obscure situation. If you re-scan a group and get
6180 ;; a new article that is cross-posted to a different
6181 ;; group that has not been re-scanned, you might get
6182 ;; crossposted article that has a higher number than
6183 ;; Gnus believes possible. So we re-activate this
6184 ;; group as well. This might mean doing the
6185 ;; crossposting thingy will *increase* the number
6186 ;; of articles in some groups. Tsk, tsk.
6187 (setq active (or (gnus-activate-group group) active)))
6188 (when (or (> id (cdr active))
6189 (< id (car active)))
6190 (setq articles (delq id articles))))))
6191 ;; If the read list is nil, we init it.
6192 (if (and active
6193 (null (gnus-info-read info))
6194 (> (car active) 1))
6195 (setq ninfo (cons 1 (1- (car active))))
6196 (setq ninfo (gnus-info-read info)))
6197 ;; Then we add the read articles to the range.
6198 (gnus-add-to-range
6199 ninfo (setq articles (sort articles '<))))))
6200
eec82323
LMI
6201(defun gnus-group-make-articles-read (group articles)
6202 "Update the info of GROUP to say that ARTICLES are read."
6203 (let* ((num 0)
01c52d31 6204 (entry (gnus-group-entry group))
eec82323
LMI
6205 (info (nth 2 entry))
6206 (active (gnus-active group))
6207 range)
de635afe
G
6208 (if (not entry)
6209 ;; Group that Gnus doesn't know exists, but still allow the
6210 ;; backend to set marks.
6211 (gnus-request-set-mark
6212 group (list (list (gnus-compress-sequence (sort articles #'<))
6213 'add '(read))))
6214 ;; Normal, subscribed groups.
6748645f 6215 (setq range (gnus-compute-read-articles group articles))
01c52d31 6216 (with-current-buffer gnus-group-buffer
6748645f
LMI
6217 (gnus-undo-register
6218 `(progn
6219 (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
6220 (gnus-info-set-read ',info ',(gnus-info-read info))
6221 (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
23f87bed 6222 (gnus-request-set-mark ,group (list (list ',range 'del '(read))))
6748645f
LMI
6223 (gnus-group-update-group ,group t))))
6224 ;; Add the read articles to the range.
6225 (gnus-info-set-read info range)
23f87bed 6226 (gnus-request-set-mark group (list (list range 'add '(read))))
6748645f
LMI
6227 ;; Then we have to re-compute how many unread
6228 ;; articles there are in this group.
6229 (when active
6230 (cond
6231 ((not range)
6232 (setq num (- (1+ (cdr active)) (car active))))
6233 ((not (listp (cdr range)))
6234 (setq num (- (cdr active) (- (1+ (cdr range))
6235 (car range)))))
6236 (t
6237 (while range
6238 (if (numberp (car range))
6239 (setq num (1+ num))
6240 (setq num (+ num (- (1+ (cdar range)) (caar range)))))
6241 (setq range (cdr range)))
6242 (setq num (- (cdr active) num))))
6243 ;; Update the number of unread articles.
6244 (setcar entry num)
6245 ;; Update the group buffer.
23f87bed
MB
6246 (unless (gnus-ephemeral-group-p group)
6247 (gnus-group-update-group group t))))))
eec82323 6248
eec82323
LMI
6249(defun gnus-get-newsgroup-headers (&optional dependencies force-new)
6250 (let ((cur nntp-server-buffer)
6251 (dependencies
6252 (or dependencies
01c52d31
MB
6253 (with-current-buffer gnus-summary-buffer
6254 gnus-newsgroup-dependencies)))
6255 headers id end ref number
16409b0b
GM
6256 (mail-parse-charset gnus-newsgroup-charset)
6257 (mail-parse-ignored-charsets
c7a91ce1
SM
6258 (save-current-buffer (condition-case nil
6259 (set-buffer gnus-summary-buffer)
6260 (error))
6261 gnus-newsgroup-ignored-charsets)))
6262 (with-current-buffer nntp-server-buffer
eec82323
LMI
6263 ;; Translate all TAB characters into SPACE characters.
6264 (subst-char-in-region (point-min) (point-max) ?\t ? t)
16409b0b 6265 (subst-char-in-region (point-min) (point-max) ?\r ? t)
23f87bed 6266 (ietf-drums-unfold-fws)
6748645f 6267 (gnus-run-hooks 'gnus-parse-headers-hook)
eec82323 6268 (let ((case-fold-search t)
6748645f 6269 in-reply-to header p lines chars)
eec82323 6270 (goto-char (point-min))
01ccbb85 6271 ;; Search to the beginning of the next header. Error messages
eec82323
LMI
6272 ;; do not begin with 2 or 3.
6273 (while (re-search-forward "^[23][0-9]+ " nil t)
6274 (setq id nil
6275 ref nil)
6276 ;; This implementation of this function, with nine
6277 ;; search-forwards instead of the one re-search-forward and
6278 ;; a case (which basically was the old function) is actually
01ccbb85 6279 ;; about twice as fast, even though it looks messier. You
eec82323
LMI
6280 ;; can't have everything, I guess. Speed and elegance
6281 ;; doesn't always go hand in hand.
6282 (setq
6283 header
6284 (vector
6285 ;; Number.
6286 (prog1
01c52d31 6287 (setq number (read cur))
eec82323
LMI
6288 (end-of-line)
6289 (setq p (point))
6290 (narrow-to-region (point)
6291 (or (and (search-forward "\n.\n" nil t)
6292 (- (point) 2))
6293 (point))))
6294 ;; Subject.
6295 (progn
6296 (goto-char p)
23f87bed 6297 (if (search-forward "\nsubject:" nil t)
16409b0b
GM
6298 (funcall gnus-decode-encoded-word-function
6299 (nnheader-header-value))
2bd3dcae 6300 "(none)"))
eec82323
LMI
6301 ;; From.
6302 (progn
6303 (goto-char p)
23f87bed 6304 (if (search-forward "\nfrom:" nil t)
343d6628 6305 (funcall gnus-decode-encoded-address-function
16409b0b 6306 (nnheader-header-value))
2bd3dcae 6307 "(nobody)"))
eec82323
LMI
6308 ;; Date.
6309 (progn
6310 (goto-char p)
23f87bed 6311 (if (search-forward "\ndate:" nil t)
eec82323
LMI
6312 (nnheader-header-value) ""))
6313 ;; Message-ID.
6314 (progn
6315 (goto-char p)
6748645f
LMI
6316 (setq id (if (re-search-forward
6317 "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
6318 ;; We do it this way to make sure the Message-ID
6319 ;; is (somewhat) syntactically valid.
6320 (buffer-substring (match-beginning 1)
6321 (match-end 1))
eec82323
LMI
6322 ;; If there was no message-id, we just fake one
6323 ;; to make subsequent routines simpler.
01c52d31 6324 (nnheader-generate-fake-message-id number))))
eec82323
LMI
6325 ;; References.
6326 (progn
6327 (goto-char p)
23f87bed 6328 (if (search-forward "\nreferences:" nil t)
eec82323
LMI
6329 (progn
6330 (setq end (point))
6331 (prog1
6332 (nnheader-header-value)
6333 (setq ref
6334 (buffer-substring
6335 (progn
6336 (end-of-line)
6337 (search-backward ">" end t)
6338 (1+ (point)))
6339 (progn
6340 (search-backward "<" end t)
6341 (point))))))
6342 ;; Get the references from the in-reply-to header if there
6343 ;; were no references and the in-reply-to header looks
6344 ;; promising.
23f87bed 6345 (if (and (search-forward "\nin-reply-to:" nil t)
eec82323
LMI
6346 (setq in-reply-to (nnheader-header-value))
6347 (string-match "<[^>]+>" in-reply-to))
6748645f
LMI
6348 (let (ref2)
6349 (setq ref (substring in-reply-to (match-beginning 0)
6350 (match-end 0)))
6351 (while (string-match "<[^>]+>" in-reply-to (match-end 0))
6352 (setq ref2 (substring in-reply-to (match-beginning 0)
6353 (match-end 0)))
6354 (when (> (length ref2) (length ref))
6355 (setq ref ref2)))
6356 ref)
eec82323
LMI
6357 (setq ref nil))))
6358 ;; Chars.
6748645f
LMI
6359 (progn
6360 (goto-char p)
6361 (if (search-forward "\nchars: " nil t)
6362 (if (numberp (setq chars (ignore-errors (read cur))))
23f87bed
MB
6363 chars -1)
6364 -1))
eec82323
LMI
6365 ;; Lines.
6366 (progn
6367 (goto-char p)
6368 (if (search-forward "\nlines: " nil t)
a8151ef7 6369 (if (numberp (setq lines (ignore-errors (read cur))))
23f87bed
MB
6370 lines -1)
6371 -1))
eec82323
LMI
6372 ;; Xref.
6373 (progn
6374 (goto-char p)
23f87bed 6375 (and (search-forward "\nxref:" nil t)
16409b0b
GM
6376 (nnheader-header-value)))
6377 ;; Extra.
6378 (when gnus-extra-headers
6379 (let ((extra gnus-extra-headers)
6380 out)
6381 (while extra
6382 (goto-char p)
6383 (when (search-forward
23f87bed 6384 (concat "\n" (symbol-name (car extra)) ":") nil t)
16409b0b
GM
6385 (push (cons (car extra) (nnheader-header-value))
6386 out))
6387 (pop extra))
6388 out))))
eec82323
LMI
6389 (when (equal id ref)
6390 (setq ref nil))
6748645f
LMI
6391
6392 (when gnus-alter-header-function
6393 (funcall gnus-alter-header-function header)
6394 (setq id (mail-header-id header)
6395 ref (gnus-parent-id (mail-header-references header))))
6396
6397 (when (setq header
6398 (gnus-dependencies-add-header
6399 header dependencies force-new))
eec82323
LMI
6400 (push header headers))
6401 (goto-char (point-max))
6402 (widen))
6403 (nreverse headers)))))
6404
eec82323
LMI
6405;; Goes through the xover lines and returns a list of vectors
6406(defun gnus-get-newsgroup-headers-xover (sequence &optional
6407 force-new dependencies
6408 group also-fetch-heads)
16409b0b
GM
6409 "Parse the news overview data in the server buffer.
6410Return a list of headers that match SEQUENCE (see
6411`nntp-retrieve-headers')."
eec82323
LMI
6412 ;; Get the Xref when the users reads the articles since most/some
6413 ;; NNTP servers do not include Xrefs when using XOVER.
6414 (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
16409b0b
GM
6415 (let ((mail-parse-charset gnus-newsgroup-charset)
6416 (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
6417 (cur nntp-server-buffer)
eec82323 6418 (dependencies (or dependencies gnus-newsgroup-dependencies))
23f87bed
MB
6419 (allp (cond
6420 ((eq gnus-read-all-available-headers t)
6421 t)
14e6dc54
MB
6422 ((and (stringp gnus-read-all-available-headers)
6423 group)
23f87bed
MB
6424 (string-match gnus-read-all-available-headers group))
6425 (t
6426 nil)))
eec82323 6427 number headers header)
c7a91ce1 6428 (with-current-buffer nntp-server-buffer
16409b0b 6429 (subst-char-in-region (point-min) (point-max) ?\r ? t)
eec82323 6430 ;; Allow the user to mangle the headers before parsing them.
6748645f 6431 (gnus-run-hooks 'gnus-parse-headers-hook)
eec82323 6432 (goto-char (point-min))
23f87bed
MB
6433 (gnus-parse-without-error
6434 (while (and (or sequence allp)
6435 (not (eobp)))
6436 (setq number (read cur))
6437 (when (not allp)
6438 (while (and sequence
6439 (< (car sequence) number))
6440 (setq sequence (cdr sequence))))
6441 (when (and (or allp
6442 (and sequence
6443 (eq number (car sequence))))
6444 (progn
6445 (setq sequence (cdr sequence))
6446 (setq header (inline
6447 (gnus-nov-parse-line
6448 number dependencies force-new)))))
6449 (push header headers))
6450 (forward-line 1)))
eec82323
LMI
6451 ;; A common bug in inn is that if you have posted an article and
6452 ;; then retrieves the active file, it will answer correctly --
6453 ;; the new article is included. However, a NOV entry for the
6454 ;; article may not have been generated yet, so this may fail.
6455 ;; We work around this problem by retrieving the last few
6456 ;; headers using HEAD.
6457 (if (or (not also-fetch-heads)
6458 (not sequence))
6459 ;; We (probably) got all the headers.
6460 (nreverse headers)
6461 (let ((gnus-nov-is-evil t))
6462 (nconc
6463 (nreverse headers)
23f87bed 6464 (when (eq (gnus-retrieve-headers sequence group) 'headers)
eec82323
LMI
6465 (gnus-get-newsgroup-headers))))))))
6466
6467(defun gnus-article-get-xrefs ()
6468 "Fill in the Xref value in `gnus-current-headers', if necessary.
6469This is meant to be called in `gnus-article-internal-prepare-hook'."
01c52d31
MB
6470 (let ((headers (with-current-buffer gnus-summary-buffer
6471 gnus-current-headers)))
eec82323
LMI
6472 (or (not gnus-use-cross-reference)
6473 (not headers)
6474 (and (mail-header-xref headers)
6475 (not (string= (mail-header-xref headers) "")))
6476 (let ((case-fold-search t)
6477 xref)
6478 (save-restriction
6479 (nnheader-narrow-to-headers)
6480 (goto-char (point-min))
16409b0b
GM
6481 (when (or (and (not (eobp))
6482 (eq (downcase (char-after)) ?x)
eec82323
LMI
6483 (looking-at "Xref:"))
6484 (search-forward "\nXref:" nil t))
6485 (goto-char (1+ (match-end 0)))
01c52d31 6486 (setq xref (buffer-substring (point) (point-at-eol)))
eec82323
LMI
6487 (mail-header-set-xref headers xref)))))))
6488
6489(defun gnus-summary-insert-subject (id &optional old-header use-old-header)
6748645f
LMI
6490 "Find article ID and insert the summary line for that article.
6491OLD-HEADER can either be a header or a line number to insert
6492the subject line on."
6493 (let* ((line (and (numberp old-header) old-header))
6494 (old-header (and (vectorp old-header) old-header))
6495 (header (cond ((and old-header use-old-header)
16409b0b
GM
6496 old-header)
6497 ((and (numberp id)
6498 (gnus-number-to-header id))
6499 (gnus-number-to-header id))
6500 (t
6501 (gnus-read-header id))))
6502 (number (and (numberp id) id))
6503 d)
eec82323
LMI
6504 (when header
6505 ;; Rebuild the thread that this article is part of and go to the
6506 ;; article we have fetched.
6507 (when (and (not gnus-show-threads)
6508 old-header)
6748645f
LMI
6509 (when (and number
6510 (setq d (gnus-data-find (mail-header-number old-header))))
eec82323
LMI
6511 (goto-char (gnus-data-pos d))
6512 (gnus-data-remove
6513 number
01c52d31 6514 (- (point-at-bol)
eec82323 6515 (prog1
01c52d31 6516 (1+ (point-at-eol))
eec82323 6517 (gnus-delete-line))))))
23f87bed
MB
6518 ;; Remove list identifiers from subject.
6519 (when gnus-list-identifiers
6520 (let ((gnus-newsgroup-headers (list header)))
c3bc41c2 6521 (gnus-summary-remove-list-identifiers)))
eec82323
LMI
6522 (when old-header
6523 (mail-header-set-number header (mail-header-number old-header)))
6524 (setq gnus-newsgroup-sparse
6525 (delq (setq number (mail-header-number header))
6526 gnus-newsgroup-sparse))
6527 (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
6748645f
LMI
6528 (push number gnus-newsgroup-limit)
6529 (gnus-rebuild-thread (mail-header-id header) line)
eec82323
LMI
6530 (gnus-summary-goto-subject number nil t))
6531 (when (and (numberp number)
6532 (> number 0))
6533 ;; We have to update the boundaries even if we can't fetch the
6534 ;; article if ID is a number -- so that the next `P' or `N'
6535 ;; command will fetch the previous (or next) article even
6536 ;; if the one we tried to fetch this time has been canceled.
6537 (when (> number gnus-newsgroup-end)
6538 (setq gnus-newsgroup-end number))
6539 (when (< number gnus-newsgroup-begin)
6540 (setq gnus-newsgroup-begin number))
6541 (setq gnus-newsgroup-unselected
6542 (delq number gnus-newsgroup-unselected)))
6543 ;; Report back a success?
6544 (and header (mail-header-number header))))
6545
6546;;; Process/prefix in the summary buffer
6547
6548(defun gnus-summary-work-articles (n)
6748645f
LMI
6549 "Return a list of articles to be worked upon.
6550The prefix argument, the list of process marked articles, and the
6551current article will be taken into consideration."
c7a91ce1 6552 (with-current-buffer gnus-summary-buffer
6748645f
LMI
6553 (cond
6554 (n
6555 ;; A numerical prefix has been given.
6556 (setq n (prefix-numeric-value n))
6557 (let ((backward (< n 0))
6558 (n (abs (prefix-numeric-value n)))
6559 articles article)
6560 (save-excursion
6561 (while
6562 (and (> n 0)
6563 (push (setq article (gnus-summary-article-number))
6564 articles)
6565 (if backward
6566 (gnus-summary-find-prev nil article)
6567 (gnus-summary-find-next nil article)))
6568 (decf n)))
6569 (nreverse articles)))
6570 ((and (gnus-region-active-p) (mark))
6571 (message "region active")
6572 ;; Work on the region between point and mark.
6573 (let ((max (max (point) (mark)))
6574 articles article)
6575 (save-excursion
7dafe00b 6576 (goto-char (min (point) (mark)))
6748645f
LMI
6577 (while
6578 (and
6579 (push (setq article (gnus-summary-article-number)) articles)
6580 (gnus-summary-find-next nil article)
6581 (< (point) max)))
6582 (nreverse articles))))
6583 (gnus-newsgroup-processable
6584 ;; There are process-marked articles present.
6585 ;; Save current state.
6586 (gnus-summary-save-process-mark)
6587 ;; Return the list.
6588 (reverse gnus-newsgroup-processable))
6589 (t
6590 ;; Just return the current article.
6591 (list (gnus-summary-article-number))))))
6592
6593(defmacro gnus-summary-iterate (arg &rest forms)
6594 "Iterate over the process/prefixed articles and do FORMS.
6595ARG is the interactive prefix given to the command. FORMS will be
6596executed with point over the summary line of the articles."
6597 (let ((articles (make-symbol "gnus-summary-iterate-articles")))
6598 `(let ((,articles (gnus-summary-work-articles ,arg)))
6599 (while ,articles
6600 (gnus-summary-goto-subject (car ,articles))
16409b0b
GM
6601 ,@forms
6602 (pop ,articles)))))
6748645f
LMI
6603
6604(put 'gnus-summary-iterate 'lisp-indent-function 1)
6605(put 'gnus-summary-iterate 'edebug-form-spec '(form body))
eec82323
LMI
6606
6607(defun gnus-summary-save-process-mark ()
6608 "Push the current set of process marked articles on the stack."
6609 (interactive)
6610 (push (copy-sequence gnus-newsgroup-processable)
6611 gnus-newsgroup-process-stack))
6612
6613(defun gnus-summary-kill-process-mark ()
6614 "Push the current set of process marked articles on the stack and unmark."
6615 (interactive)
6616 (gnus-summary-save-process-mark)
6617 (gnus-summary-unmark-all-processable))
6618
6619(defun gnus-summary-yank-process-mark ()
6620 "Pop the last process mark state off the stack and restore it."
6621 (interactive)
6622 (unless gnus-newsgroup-process-stack
6623 (error "Empty mark stack"))
6624 (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
6625
6626(defun gnus-summary-process-mark-set (set)
6627 "Make SET into the current process marked articles."
6628 (gnus-summary-unmark-all-processable)
01c52d31 6629 (mapc 'gnus-summary-set-process-mark set))
eec82323
LMI
6630
6631;;; Searching and stuff
6632
6633(defun gnus-summary-search-group (&optional backward use-level)
6634 "Search for next unread newsgroup.
6635If optional argument BACKWARD is non-nil, search backward instead."
c7a91ce1 6636 (with-current-buffer gnus-group-buffer
eec82323
LMI
6637 (when (gnus-group-search-forward
6638 backward nil (if use-level (gnus-group-group-level) nil))
6639 (gnus-group-group-name))))
6640
6641(defun gnus-summary-best-group (&optional exclude-group)
6642 "Find the name of the best unread group.
6643If EXCLUDE-GROUP, do not go to this group."
01c52d31 6644 (with-current-buffer gnus-group-buffer
eec82323
LMI
6645 (save-excursion
6646 (gnus-group-best-unread-group exclude-group))))
6647
23f87bed
MB
6648(defun gnus-summary-find-next (&optional unread article backward)
6649 (if backward
6650 (gnus-summary-find-prev unread article)
eec82323
LMI
6651 (let* ((dummy (gnus-summary-article-intangible-p))
6652 (article (or article (gnus-summary-article-number)))
23f87bed 6653 (data (gnus-data-find-list article))
eec82323
LMI
6654 result)
6655 (when (and (not dummy)
6656 (or (not gnus-summary-check-current)
6657 (not unread)
23f87bed
MB
6658 (not (gnus-data-unread-p (car data)))))
6659 (setq data (cdr data)))
eec82323
LMI
6660 (when (setq result
6661 (if unread
6662 (progn
23f87bed
MB
6663 (while data
6664 (unless (memq (gnus-data-number (car data))
6665 (cond
6666 ((eq gnus-auto-goto-ignores
6667 'always-undownloaded)
6668 gnus-newsgroup-undownloaded)
6669 (gnus-plugged
6670 nil)
6671 ((eq gnus-auto-goto-ignores
6672 'unfetched)
6673 gnus-newsgroup-unfetched)
6674 ((eq gnus-auto-goto-ignores
6675 'undownloaded)
6676 gnus-newsgroup-undownloaded)))
6677 (when (gnus-data-unread-p (car data))
6678 (setq result (car data)
6679 data nil)))
6680 (setq data (cdr data)))
eec82323 6681 result)
23f87bed 6682 (car data)))
eec82323
LMI
6683 (goto-char (gnus-data-pos result))
6684 (gnus-data-number result)))))
6685
6686(defun gnus-summary-find-prev (&optional unread article)
6687 (let* ((eobp (eobp))
6688 (article (or article (gnus-summary-article-number)))
23f87bed 6689 (data (gnus-data-find-list article (gnus-data-list 'rev)))
eec82323
LMI
6690 result)
6691 (when (and (not eobp)
6692 (or (not gnus-summary-check-current)
6693 (not unread)
23f87bed
MB
6694 (not (gnus-data-unread-p (car data)))))
6695 (setq data (cdr data)))
eec82323
LMI
6696 (when (setq result
6697 (if unread
6698 (progn
23f87bed
MB
6699 (while data
6700 (unless (memq (gnus-data-number (car data))
6701 (cond
6702 ((eq gnus-auto-goto-ignores
6703 'always-undownloaded)
6704 gnus-newsgroup-undownloaded)
6705 (gnus-plugged
6706 nil)
6707 ((eq gnus-auto-goto-ignores
6708 'unfetched)
6709 gnus-newsgroup-unfetched)
6710 ((eq gnus-auto-goto-ignores
6711 'undownloaded)
6712 gnus-newsgroup-undownloaded)))
6713 (when (gnus-data-unread-p (car data))
6714 (setq result (car data)
6715 data nil)))
6716 (setq data (cdr data)))
eec82323 6717 result)
23f87bed 6718 (car data)))
eec82323
LMI
6719 (goto-char (gnus-data-pos result))
6720 (gnus-data-number result))))
6721
6722(defun gnus-summary-find-subject (subject &optional unread backward article)
6723 (let* ((simp-subject (gnus-simplify-subject-fully subject))
6724 (article (or article (gnus-summary-article-number)))
6725 (articles (gnus-data-list backward))
6726 (arts (gnus-data-find-list article articles))
6727 result)
6728 (when (or (not gnus-summary-check-current)
6729 (not unread)
6730 (not (gnus-data-unread-p (car arts))))
6731 (setq arts (cdr arts)))
6732 (while arts
6733 (and (or (not unread)
6734 (gnus-data-unread-p (car arts)))
6735 (vectorp (gnus-data-header (car arts)))
6736 (gnus-subject-equal
6737 simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
6738 (setq result (car arts)
6739 arts nil))
6740 (setq arts (cdr arts)))
6741 (and result
6742 (goto-char (gnus-data-pos result))
6743 (gnus-data-number result))))
6744
6745(defun gnus-summary-search-forward (&optional unread subject backward)
6746 "Search forward for an article.
6747If UNREAD, look for unread articles. If SUBJECT, look for
6748articles with that subject. If BACKWARD, search backward instead."
6749 (cond (subject (gnus-summary-find-subject subject unread backward))
6750 (backward (gnus-summary-find-prev unread))
6751 (t (gnus-summary-find-next unread))))
6752
6753(defun gnus-recenter (&optional n)
6754 "Center point in window and redisplay frame.
6755Also do horizontal recentering."
6756 (interactive "P")
6757 (when (and gnus-auto-center-summary
6758 (not (eq gnus-auto-center-summary 'vertical)))
6759 (gnus-horizontal-recenter))
5aa75bd8
JL
6760 (if (fboundp 'recenter-top-bottom)
6761 (recenter-top-bottom n)
6762 (recenter n)))
6763
6764(put 'gnus-recenter 'isearch-scroll t)
eec82323 6765
7b47345b
AS
6766(defun gnus-forward-line-ignore-invisible (n)
6767 "Move N lines forward (backward if N is negative).
6768Like forward-line, but skip over (and don't count) invisible lines."
6769 (let (done)
6770 (while (and (> n 0) (not done))
6771 ;; If the following character is currently invisible,
6772 ;; skip all characters with that same `invisible' property value.
770d9a1f
KY
6773 (while (gnus-invisible-p (point))
6774 (goto-char (gnus-next-char-property-change (point))))
7b47345b
AS
6775 (forward-line 1)
6776 (if (eobp)
6777 (setq done t)
6778 (setq n (1- n))))
6779 (while (and (< n 0) (not done))
6780 (forward-line -1)
6781 (if (bobp) (setq done t)
6782 (setq n (1+ n))
770d9a1f
KY
6783 (while (and (not (bobp)) (gnus-invisible-p (1- (point))))
6784 (goto-char (gnus-previous-char-property-change (point))))))))
6785
eec82323
LMI
6786(defun gnus-summary-recenter ()
6787 "Center point in the summary window.
6788If `gnus-auto-center-summary' is nil, or the article buffer isn't
6789displayed, no centering will be performed."
6790 ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
6791 ;; Recenter only when requested. Suggested by popovich@park.cs.columbia.edu.
16409b0b 6792 (interactive)
23f87bed
MB
6793 ;; The user has to want it.
6794 (when gnus-auto-center-summary
6795 (let* ((top (cond ((< (window-height) 4) 0)
6796 ((< (window-height) 7) 1)
6797 (t (if (numberp gnus-auto-center-summary)
6798 gnus-auto-center-summary
01c52d31 6799 (/ (1- (window-height)) 2)))))
23f87bed 6800 (height (1- (window-height)))
7b47345b
AS
6801 (bottom (save-excursion
6802 (goto-char (point-max))
6803 (gnus-forward-line-ignore-invisible (- height))
6804 (point)))
23f87bed 6805 (window (get-buffer-window (current-buffer))))
eec82323
LMI
6806 (when (get-buffer-window gnus-article-buffer)
6807 ;; Only do recentering when the article buffer is displayed,
6808 ;; Set the window start to either `bottom', which is the biggest
6809 ;; possible valid number, or the second line from the top,
6810 ;; whichever is the least.
7b47345b
AS
6811 (let ((top-pos (save-excursion
6812 (gnus-forward-line-ignore-invisible (- top))
6813 (point))))
db7ebd73
MB
6814 (if (> bottom top-pos)
6815 ;; Keep the second line from the top visible
01c52d31 6816 (set-window-start window top-pos)
db7ebd73
MB
6817 ;; Try to keep the bottom line visible; if it's partially
6818 ;; obscured, either scroll one more line to make it fully
6819 ;; visible, or revert to using TOP-POS.
6820 (save-excursion
6821 (goto-char (point-max))
7b47345b 6822 (gnus-forward-line-ignore-invisible -1)
db7ebd73
MB
6823 (let ((last-line-start (point)))
6824 (goto-char bottom)
6825 (set-window-start window (point) t)
6826 (when (not (pos-visible-in-window-p last-line-start window))
7b47345b 6827 (gnus-forward-line-ignore-invisible 1)
db7ebd73 6828 (set-window-start window (min (point) top-pos) t)))))))
eec82323
LMI
6829 ;; Do horizontal recentering while we're at it.
6830 (when (and (get-buffer-window (current-buffer) t)
6831 (not (eq gnus-auto-center-summary 'vertical)))
6832 (let ((selected (selected-window)))
6833 (select-window (get-buffer-window (current-buffer) t))
6834 (gnus-summary-position-point)
6835 (gnus-horizontal-recenter)
6836 (select-window selected))))))
6837
6838(defun gnus-summary-jump-to-group (newsgroup)
6839 "Move point to NEWSGROUP in group mode buffer."
6840 ;; Keep update point of group mode buffer if visible.
6841 (if (eq (current-buffer) (get-buffer gnus-group-buffer))
6842 (save-window-excursion
6843 ;; Take care of tree window mode.
6844 (when (get-buffer-window gnus-group-buffer)
6845 (pop-to-buffer gnus-group-buffer))
6846 (gnus-group-jump-to-group newsgroup))
6847 (save-excursion
6848 ;; Take care of tree window mode.
c7a91ce1 6849 (if (get-buffer-window gnus-group-buffer 0)
eec82323
LMI
6850 (pop-to-buffer gnus-group-buffer)
6851 (set-buffer gnus-group-buffer))
6852 (gnus-group-jump-to-group newsgroup))))
6853
6854;; This function returns a list of article numbers based on the
6855;; difference between the ranges of read articles in this group and
6856;; the range of active articles.
6857(defun gnus-list-of-unread-articles (group)
6858 (let* ((read (gnus-info-read (gnus-get-info group)))
6859 (active (or (gnus-active group) (gnus-activate-group group)))
01c52d31
MB
6860 (last (or (cdr active)
6861 (error "Group %s couldn't be activated " group)))
4b70e299
MB
6862 (bottom (if gnus-newsgroup-maximum-articles
6863 (max (car active)
6864 (- last gnus-newsgroup-maximum-articles -1))
11abff8e 6865 (car active)))
eec82323
LMI
6866 first nlast unread)
6867 ;; If none are read, then all are unread.
6868 (if (not read)
11abff8e 6869 (setq first bottom)
eec82323
LMI
6870 ;; If the range of read articles is a single range, then the
6871 ;; first unread article is the article after the last read
6872 ;; article. Sounds logical, doesn't it?
16409b0b 6873 (if (and (not (listp (cdr read)))
11abff8e 6874 (or (< (car read) bottom)
16409b0b
GM
6875 (progn (setq read (list read))
6876 nil)))
11abff8e 6877 (setq first (max bottom (1+ (cdr read))))
eec82323
LMI
6878 ;; `read' is a list of ranges.
6879 (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6880 (caar read)))
6881 1)
11abff8e 6882 (setq first bottom))
eec82323
LMI
6883 (while read
6884 (when first
6885 (while (< first nlast)
54506618
MB
6886 (setq unread (cons first unread)
6887 first (1+ first))))
eec82323
LMI
6888 (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6889 (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6890 (setq read (cdr read)))))
6891 ;; And add the last unread articles.
6892 (while (<= first last)
54506618
MB
6893 (setq unread (cons first unread)
6894 first (1+ first)))
eec82323 6895 ;; Return the list of unread articles.
6748645f 6896 (delq 0 (nreverse unread))))
eec82323
LMI
6897
6898(defun gnus-list-of-read-articles (group)
6899 "Return a list of unread, unticked and non-dormant articles."
6900 (let* ((info (gnus-get-info group))
6901 (marked (gnus-info-marks info))
6902 (active (gnus-active group)))
6903 (and info active
23f87bed
MB
6904 (gnus-list-range-difference
6905 (gnus-list-range-difference
6906 (gnus-sorted-complement
11abff8e 6907 (gnus-uncompress-range
4b70e299 6908 (if gnus-newsgroup-maximum-articles
11abff8e 6909 (cons (max (car active)
4b70e299
MB
6910 (- (cdr active)
6911 gnus-newsgroup-maximum-articles
6912 -1))
11abff8e
MB
6913 (cdr active))
6914 active))
23f87bed
MB
6915 (gnus-list-of-unread-articles group))
6916 (cdr (assq 'dormant marked)))
6917 (cdr (assq 'tick marked))))))
eec82323 6918
54506618
MB
6919;; This function returns a sequence of article numbers based on the
6920;; difference between the ranges of read articles in this group and
6921;; the range of active articles.
6922(defun gnus-sequence-of-unread-articles (group)
6923 (let* ((read (gnus-info-read (gnus-get-info group)))
6924 (active (or (gnus-active group) (gnus-activate-group group)))
6925 (last (cdr active))
4b70e299
MB
6926 (bottom (if gnus-newsgroup-maximum-articles
6927 (max (car active)
6928 (- last gnus-newsgroup-maximum-articles -1))
11abff8e 6929 (car active)))
54506618
MB
6930 first nlast unread)
6931 ;; If none are read, then all are unread.
6932 (if (not read)
11abff8e 6933 (setq first bottom)
54506618
MB
6934 ;; If the range of read articles is a single range, then the
6935 ;; first unread article is the article after the last read
6936 ;; article. Sounds logical, doesn't it?
6937 (if (and (not (listp (cdr read)))
11abff8e 6938 (or (< (car read) bottom)
54506618
MB
6939 (progn (setq read (list read))
6940 nil)))
11abff8e 6941 (setq first (max bottom (1+ (cdr read))))
54506618
MB
6942 ;; `read' is a list of ranges.
6943 (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6944 (caar read)))
6945 1)
11abff8e 6946 (setq first bottom))
54506618
MB
6947 (while read
6948 (when first
6949 (push (cons first nlast) unread))
6950 (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6951 (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6952 (setq read (cdr read)))))
6953 ;; And add the last unread articles.
ba0226dd
MB
6954 (cond ((not (and first last))
6955 nil)
6956 ((< first last)
6957 (push (cons first last) unread))
6958 ((= first last)
6959 (push first unread)))
54506618
MB
6960 ;; Return the sequence of unread articles.
6961 (delq 0 (nreverse unread))))
6962
eec82323
LMI
6963;; Various summary commands
6964
6748645f 6965(defun gnus-summary-select-article-buffer ()
de635afe
G
6966 "Reconfigure windows to show the article buffer.
6967If `gnus-widen-article-buffer' is set, show only the article
6968buffer."
6748645f
LMI
6969 (interactive)
6970 (if (not (gnus-buffer-live-p gnus-article-buffer))
6971 (error "There is no article buffer for this summary buffer")
a41c2e6d
G
6972 (unless (get-buffer-window gnus-article-buffer)
6973 (gnus-summary-show-article))
71e691a5
G
6974 (gnus-configure-windows
6975 (if gnus-widen-article-window
6976 'only-article
6977 'article)
6978 t)
a41c2e6d 6979 (select-window (get-buffer-window gnus-article-buffer))))
6748645f 6980
eec82323
LMI
6981(defun gnus-summary-universal-argument (arg)
6982 "Perform any operation on all articles that are process/prefixed."
6983 (interactive "P")
eec82323
LMI
6984 (let ((articles (gnus-summary-work-articles arg))
6985 func article)
6986 (if (eq
6987 (setq
6988 func
6989 (key-binding
6990 (read-key-sequence
6991 (substitute-command-keys
16409b0b 6992 "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
eec82323
LMI
6993 'undefined)
6994 (gnus-error 1 "Undefined key")
6995 (save-excursion
6996 (while articles
6997 (gnus-summary-goto-subject (setq article (pop articles)))
6998 (let (gnus-newsgroup-processable)
6999 (command-execute func))
7000 (gnus-summary-remove-process-mark article)))))
7001 (gnus-summary-position-point))
7002
7003(defun gnus-summary-toggle-truncation (&optional arg)
7004 "Toggle truncation of summary lines.
23f87bed 7005With ARG, turn line truncation on if ARG is positive."
eec82323
LMI
7006 (interactive "P")
7007 (setq truncate-lines
7008 (if (null arg) (not truncate-lines)
7009 (> (prefix-numeric-value arg) 0)))
7010 (redraw-display))
7011
23f87bed
MB
7012(defun gnus-summary-find-for-reselect ()
7013 "Return the number of an article to stay on across a reselect.
7014The current article is considered, then following articles, then previous
7015articles. An article is sought which is not cancelled and isn't a temporary
7016insertion from another group. If there's no such then return a dummy 0."
7017 (let (found)
7018 (dolist (rev '(nil t))
7019 (unless found ; don't demand the reverse list if we don't need it
7020 (let ((data (gnus-data-find-list
7021 (gnus-summary-article-number) (gnus-data-list rev))))
7022 (while (and data (not found))
7023 (if (and (< 0 (gnus-data-number (car data)))
7024 (not (eq gnus-canceled-mark (gnus-data-mark (car data)))))
7025 (setq found (gnus-data-number (car data))))
7026 (setq data (cdr data))))))
7027 (or found 0)))
7028
eec82323
LMI
7029(defun gnus-summary-reselect-current-group (&optional all rescan)
7030 "Exit and then reselect the current newsgroup.
7031The prefix argument ALL means to select all articles."
7032 (interactive "P")
eec82323
LMI
7033 (when (gnus-ephemeral-group-p gnus-newsgroup-name)
7034 (error "Ephemeral groups can't be reselected"))
23f87bed 7035 (let ((current-subject (gnus-summary-find-for-reselect))
eec82323
LMI
7036 (group gnus-newsgroup-name))
7037 (setq gnus-newsgroup-begin nil)
23f87bed 7038 (gnus-summary-exit nil 'leave-hidden)
eec82323
LMI
7039 ;; We have to adjust the point of group mode buffer because
7040 ;; point was moved to the next unread newsgroup by exiting.
7041 (gnus-summary-jump-to-group group)
7042 (when rescan
7043 (save-excursion
7044 (gnus-group-get-new-news-this-group 1)))
7045 (gnus-group-read-group all t)
7046 (gnus-summary-goto-subject current-subject nil t)))
7047
7048(defun gnus-summary-rescan-group (&optional all)
7049 "Exit the newsgroup, ask for new articles, and select the newsgroup."
7050 (interactive "P")
eb9df2c9
LMI
7051 (let ((config gnus-current-window-configuration))
7052 (gnus-summary-reselect-current-group all t)
7053 (gnus-configure-windows config)
7054 (when (eq config 'article)
7055 (gnus-summary-select-article))))
eec82323
LMI
7056
7057(defun gnus-summary-update-info (&optional non-destructive)
7058 (save-excursion
7059 (let ((group gnus-newsgroup-name))
6748645f
LMI
7060 (when group
7061 (when gnus-newsgroup-kill-headers
7062 (setq gnus-newsgroup-killed
7063 (gnus-compress-sequence
23f87bed
MB
7064 (gnus-sorted-union
7065 (gnus-list-range-intersection
7066 gnus-newsgroup-unselected gnus-newsgroup-killed)
7067 gnus-newsgroup-unreads)
6748645f
LMI
7068 t)))
7069 (unless (listp (cdr gnus-newsgroup-killed))
7070 (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
7071 (let ((headers gnus-newsgroup-headers))
7072 ;; Set the new ranges of read articles.
01c52d31 7073 (with-current-buffer gnus-group-buffer
6748645f
LMI
7074 (gnus-undo-force-boundary))
7075 (gnus-update-read-articles
23f87bed
MB
7076 group (gnus-sorted-union
7077 gnus-newsgroup-unreads gnus-newsgroup-unselected))
6748645f
LMI
7078 ;; Set the current article marks.
7079 (let ((gnus-newsgroup-scored
7080 (if (and (not gnus-save-score)
7081 (not non-destructive))
7082 nil
7083 gnus-newsgroup-scored)))
7084 (save-excursion
7085 (gnus-update-marks)))
7086 ;; Do the cross-ref thing.
7087 (when gnus-use-cross-reference
7088 (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
7089 ;; Do not switch windows but change the buffer to work.
a8151ef7 7090 (set-buffer gnus-group-buffer)
6748645f
LMI
7091 (unless (gnus-ephemeral-group-p group)
7092 (gnus-group-update-group group)))))))
eec82323
LMI
7093
7094(defun gnus-summary-save-newsrc (&optional force)
7095 "Save the current number of read/marked articles in the dribble buffer.
7096The dribble buffer will then be saved.
7097If FORCE (the prefix), also save the .newsrc file(s)."
7098 (interactive "P")
7099 (gnus-summary-update-info t)
7100 (if force
7101 (gnus-save-newsrc-file)
7102 (gnus-dribble-save)))
7103
704f1663
GM
7104(declare-function gnus-cache-write-active "gnus-cache" (&optional force))
7105
23f87bed 7106(defun gnus-summary-exit (&optional temporary leave-hidden)
eec82323 7107 "Exit reading current newsgroup, and then return to group selection mode.
16409b0b 7108`gnus-exit-group-hook' is called with no arguments if that value is non-nil."
eec82323
LMI
7109 (interactive)
7110 (gnus-set-global-variables)
16409b0b 7111 (when (gnus-buffer-live-p gnus-article-buffer)
c7a91ce1 7112 (with-current-buffer gnus-article-buffer
16409b0b
GM
7113 (mm-destroy-parts gnus-article-mime-handles)
7114 ;; Set it to nil for safety reason.
7115 (setq gnus-article-mime-handle-alist nil)
7116 (setq gnus-article-mime-handles nil)))
eec82323 7117 (gnus-kill-save-kill-buffer)
6748645f 7118 (gnus-async-halt-prefetch)
eec82323
LMI
7119 (let* ((group gnus-newsgroup-name)
7120 (quit-config (gnus-group-quit-config gnus-newsgroup-name))
23f87bed 7121 (gnus-group-is-exiting-p t)
eec82323 7122 (mode major-mode)
23f87bed 7123 (group-point nil)
eec82323 7124 (buf (current-buffer)))
16409b0b
GM
7125 (unless quit-config
7126 ;; Do adaptive scoring, and possibly save score files.
7127 (when gnus-newsgroup-adaptive
7128 (gnus-score-adaptive))
7129 (when gnus-use-scoring
7130 (gnus-score-save)))
6748645f 7131 (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
eec82323
LMI
7132 (when gnus-use-cache
7133 (gnus-cache-possibly-remove-articles)
7134 (gnus-cache-save-buffers))
7135 (gnus-async-prefetch-remove-group group)
7136 (when gnus-suppress-duplicates
7137 (gnus-dup-enter-articles))
7138 (when gnus-use-trees
7139 (gnus-tree-close group))
16409b0b
GM
7140 (when gnus-use-cache
7141 (gnus-cache-write-active))
6748645f
LMI
7142 ;; Remove entries for this group.
7143 (nnmail-purge-split-history (gnus-group-real-name group))
eec82323
LMI
7144 ;; Make all changes in this group permanent.
7145 (unless quit-config
6748645f 7146 (gnus-run-hooks 'gnus-exit-group-hook)
16409b0b 7147 (gnus-summary-update-info))
eec82323
LMI
7148 (gnus-close-group group)
7149 ;; Make sure where we were, and go to next newsgroup.
7150 (set-buffer gnus-group-buffer)
7151 (unless quit-config
7152 (gnus-group-jump-to-group group))
6748645f
LMI
7153 (gnus-run-hooks 'gnus-summary-exit-hook)
7154 (unless (or quit-config
01c52d31 7155 (not gnus-summary-next-group-on-exit)
6748645f
LMI
7156 ;; If this group has disappeared from the summary
7157 ;; buffer, don't skip forwards.
7158 (not (string= group (gnus-group-group-name))))
eec82323 7159 (gnus-group-next-unread-group 1))
a8151ef7 7160 (setq group-point (point))
eec82323
LMI
7161 (if temporary
7162 nil ;Nothing to do.
eec82323
LMI
7163 (set-buffer buf)
7164 (if (not gnus-kill-summary-on-exit)
23f87bed
MB
7165 (progn
7166 (gnus-deaden-summary)
7167 (setq mode nil))
eec82323
LMI
7168 (when (get-buffer gnus-article-buffer)
7169 (bury-buffer gnus-article-buffer))
eec82323
LMI
7170 ;; Return to group mode buffer.
7171 (when (eq mode 'gnus-summary-mode)
7172 (gnus-kill-buffer buf)))
9f2d52e7
G
7173
7174 ;; If we have several article buffers, we kill them at exit.
7175 (unless gnus-single-article-buffer
7176 (when (gnus-buffer-live-p gnus-article-buffer)
7177 (with-current-buffer gnus-article-buffer
7178 ;; Don't kill sticky article buffers
7179 (unless (eq major-mode 'gnus-sticky-article-mode)
7180 (gnus-kill-buffer gnus-article-buffer)
7181 (setq gnus-article-current nil))))
7182 (gnus-kill-buffer gnus-original-article-buffer))
7183
eec82323 7184 (setq gnus-current-select-method gnus-select-method)
d61c212b
SM
7185 (set-buffer gnus-group-buffer)
7186 (if quit-config
7187 (gnus-handle-ephemeral-exit quit-config)
4e90f2b9
SM
7188 (goto-char group-point)
7189 ;; If gnus-group-buffer is already displayed, make sure we also move
7190 ;; the cursor in the window that displays it.
7191 (let ((win (get-buffer-window (current-buffer) 0)))
7192 (if win (set-window-point win (point))))
d61c212b 7193 (unless leave-hidden
4e90f2b9 7194 (gnus-configure-windows 'group 'force)))
6748645f 7195 ;; Clear the current group name.
eec82323
LMI
7196 (unless quit-config
7197 (setq gnus-newsgroup-name nil)))))
7198
7199(defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
7200(defun gnus-summary-exit-no-update (&optional no-questions)
7201 "Quit reading current newsgroup without updating read article info."
7202 (interactive)
eec82323 7203 (let* ((group gnus-newsgroup-name)
23f87bed
MB
7204 (gnus-group-is-exiting-p t)
7205 (gnus-group-is-exiting-without-update-p t)
eec82323
LMI
7206 (quit-config (gnus-group-quit-config group)))
7207 (when (or no-questions
7208 gnus-expert-user
7209 (gnus-y-or-n-p "Discard changes to this group and exit? "))
6748645f 7210 (gnus-async-halt-prefetch)
23f87bed 7211 (run-hooks 'gnus-summary-prepare-exit-hook)
16409b0b 7212 (when (gnus-buffer-live-p gnus-article-buffer)
c7a91ce1 7213 (with-current-buffer gnus-article-buffer
16409b0b
GM
7214 (mm-destroy-parts gnus-article-mime-handles)
7215 ;; Set it to nil for safety reason.
7216 (setq gnus-article-mime-handle-alist nil)
7217 (setq gnus-article-mime-handles nil)))
eec82323
LMI
7218 ;; If we have several article buffers, we kill them at exit.
7219 (unless gnus-single-article-buffer
7220 (gnus-kill-buffer gnus-article-buffer)
7221 (gnus-kill-buffer gnus-original-article-buffer)
7222 (setq gnus-article-current nil))
7223 (if (not gnus-kill-summary-on-exit)
7224 (gnus-deaden-summary)
7225 (gnus-close-group group)
23f87bed 7226 (gnus-kill-buffer gnus-summary-buffer))
eec82323
LMI
7227 (unless gnus-single-article-buffer
7228 (setq gnus-article-current nil))
7229 (when gnus-use-trees
7230 (gnus-tree-close group))
7231 (gnus-async-prefetch-remove-group group)
7232 (when (get-buffer gnus-article-buffer)
7233 (bury-buffer gnus-article-buffer))
7234 ;; Return to the group buffer.
7235 (gnus-configure-windows 'group 'force)
7236 ;; Clear the current group name.
7237 (setq gnus-newsgroup-name nil)
23f87bed
MB
7238 (unless (gnus-ephemeral-group-p group)
7239 (gnus-group-update-group group))
eec82323
LMI
7240 (when (equal (gnus-group-group-name) group)
7241 (gnus-group-next-unread-group 1))
7242 (when quit-config
23f87bed 7243 (gnus-handle-ephemeral-exit quit-config)))))
eec82323
LMI
7244
7245(defun gnus-handle-ephemeral-exit (quit-config)
6748645f
LMI
7246 "Handle movement when leaving an ephemeral group.
7247The state which existed when entering the ephemeral is reset."
eec82323
LMI
7248 (if (not (buffer-name (car quit-config)))
7249 (gnus-configure-windows 'group 'force)
7250 (set-buffer (car quit-config))
7251 (cond ((eq major-mode 'gnus-summary-mode)
23f87bed
MB
7252 (gnus-set-global-variables))
7253 ((eq major-mode 'gnus-article-mode)
c7a91ce1 7254 (save-current-buffer
23f87bed
MB
7255 ;; The `gnus-summary-buffer' variable may point
7256 ;; to the old summary buffer when using a single
7257 ;; article buffer.
7258 (unless (gnus-buffer-live-p gnus-summary-buffer)
7259 (set-buffer gnus-group-buffer))
7260 (set-buffer gnus-summary-buffer)
7261 (gnus-set-global-variables))))
eec82323 7262 (if (or (eq (cdr quit-config) 'article)
23f87bed 7263 (eq (cdr quit-config) 'pick))
01c52d31
MB
7264 (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
7265 (gnus-configure-windows 'pick 'force)
7266 (gnus-configure-windows (cdr quit-config) 'force))
eec82323
LMI
7267 (gnus-configure-windows (cdr quit-config) 'force))
7268 (when (eq major-mode 'gnus-summary-mode)
01c52d31
MB
7269 (if (memq gnus-auto-select-on-ephemeral-exit '(next-noselect
7270 next-unread-noselect))
7271 (when (zerop (cond ((eq gnus-auto-select-on-ephemeral-exit
7272 'next-noselect)
7273 (gnus-summary-next-subject 1 nil t))
7274 ((eq gnus-auto-select-on-ephemeral-exit
7275 'next-unread-noselect)
7276 (gnus-summary-next-subject 1 t t))))
7277 ;; Hide the article buffer which displays the article different
7278 ;; from the one that the cursor points to in the summary buffer.
7279 (gnus-configure-windows 'summary 'force))
7280 (cond ((eq gnus-auto-select-on-ephemeral-exit 'next)
7281 (gnus-summary-next-subject 1))
7282 ((eq gnus-auto-select-on-ephemeral-exit 'next-unread)
7283 (gnus-summary-next-subject 1 t))))
eec82323
LMI
7284 (gnus-summary-recenter)
7285 (gnus-summary-position-point))))
7286
7287;;; Dead summaries.
7288
bbf52f1e
SM
7289(defvar gnus-dead-summary-mode-map
7290 (let ((map (make-keymap)))
7291 (suppress-keymap map)
7292 (substitute-key-definition 'undefined 'gnus-summary-wake-up-the-dead map)
7293 (dolist (key '("\C-d" "\r" "\177" [delete]))
7294 (define-key map key 'gnus-summary-wake-up-the-dead))
7295 (dolist (key '("q" "Q"))
7296 (define-key map key 'bury-buffer))
7297 map))
7298
7299(define-minor-mode gnus-dead-summary-mode
eec82323 7300 "Minor mode for Gnus summary buffers."
bbf52f1e
SM
7301 :lighter " Dead" :keymap gnus-dead-summary-mode-map
7302 (unless (derived-mode-p 'gnus-summary-mode)
7303 (setq gnus-dead-summary-mode nil)))
eec82323
LMI
7304
7305(defun gnus-deaden-summary ()
7306 "Make the current summary buffer into a dead summary buffer."
7307 ;; Kill any previous dead summary buffer.
7308 (when (and gnus-dead-summary
7309 (buffer-name gnus-dead-summary))
01c52d31 7310 (with-current-buffer gnus-dead-summary
eec82323
LMI
7311 (when gnus-dead-summary-mode
7312 (kill-buffer (current-buffer)))))
7313 ;; Make this the current dead summary.
7314 (setq gnus-dead-summary (current-buffer))
7315 (gnus-dead-summary-mode 1)
7316 (let ((name (buffer-name)))
7317 (when (string-match "Summary" name)
7318 (rename-buffer
7319 (concat (substring name 0 (match-beginning 0)) "Dead "
7320 (substring name (match-beginning 0)))
16409b0b
GM
7321 t)
7322 (bury-buffer))))
eec82323
LMI
7323
7324(defun gnus-kill-or-deaden-summary (buffer)
7325 "Kill or deaden the summary BUFFER."
6748645f
LMI
7326 (save-excursion
7327 (when (and (buffer-name buffer)
7328 (not gnus-single-article-buffer))
01c52d31 7329 (with-current-buffer buffer
6748645f
LMI
7330 (gnus-kill-buffer gnus-article-buffer)
7331 (gnus-kill-buffer gnus-original-article-buffer)))
23f87bed
MB
7332 (cond
7333 ;; Kill the buffer.
7334 (gnus-kill-summary-on-exit
7335 (when (and gnus-use-trees
7336 (gnus-buffer-exists-p buffer))
c7a91ce1 7337 (with-current-buffer buffer
23f87bed
MB
7338 (gnus-tree-close gnus-newsgroup-name)))
7339 (gnus-kill-buffer buffer))
7340 ;; Deaden the buffer.
7341 ((gnus-buffer-exists-p buffer)
c7a91ce1 7342 (with-current-buffer buffer
23f87bed 7343 (gnus-deaden-summary))))))
eec82323
LMI
7344
7345(defun gnus-summary-wake-up-the-dead (&rest args)
7346 "Wake up the dead summary buffer."
7347 (interactive)
7348 (gnus-dead-summary-mode -1)
7349 (let ((name (buffer-name)))
7350 (when (string-match "Dead " name)
7351 (rename-buffer
7352 (concat (substring name 0 (match-beginning 0))
7353 (substring name (match-end 0)))
7354 t)))
7355 (gnus-message 3 "This dead summary is now alive again"))
7356
eec82323
LMI
7357;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
7358(defun gnus-summary-describe-group (&optional force)
7359 "Describe the current newsgroup."
7360 (interactive "P")
7361 (gnus-group-describe-group force gnus-newsgroup-name))
7362
7363(defun gnus-summary-describe-briefly ()
7364 "Describe summary mode commands briefly."
7365 (interactive)
bdaa75c7 7366 (gnus-message 6 "%s" (substitute-command-keys "\\<gnus-summary-mode-map>\\[gnus-summary-next-page]:Select \\[gnus-summary-next-unread-article]:Forward \\[gnus-summary-prev-unread-article]:Backward \\[gnus-summary-exit]:Exit \\[gnus-info-find-node]:Run Info \\[gnus-summary-describe-briefly]:This help")))
eec82323
LMI
7367
7368;; Walking around group mode buffer from summary mode.
7369
7370(defun gnus-summary-next-group (&optional no-article target-group backward)
7371 "Exit current newsgroup and then select next unread newsgroup.
7372If prefix argument NO-ARTICLE is non-nil, no article is selected
23f87bed 7373initially. If TARGET-GROUP, go to this group. If BACKWARD, go to
eec82323
LMI
7374previous group instead."
7375 (interactive "P")
eec82323
LMI
7376 ;; Stop pre-fetching.
7377 (gnus-async-halt-prefetch)
7378 (let ((current-group gnus-newsgroup-name)
7379 (current-buffer (current-buffer))
7380 entered)
7381 ;; First we semi-exit this group to update Xrefs and all variables.
7382 ;; We can't do a real exit, because the window conf must remain
7383 ;; the same in case the user is prompted for info, and we don't
7384 ;; want the window conf to change before that...
7385 (gnus-summary-exit t)
7386 (while (not entered)
7387 ;; Then we find what group we are supposed to enter.
7388 (set-buffer gnus-group-buffer)
7389 (gnus-group-jump-to-group current-group)
7390 (setq target-group
7391 (or target-group
7392 (if (eq gnus-keep-same-level 'best)
7393 (gnus-summary-best-group gnus-newsgroup-name)
7394 (gnus-summary-search-group backward gnus-keep-same-level))))
7395 (if (not target-group)
7396 ;; There are no further groups, so we return to the group
7397 ;; buffer.
7398 (progn
7399 (gnus-message 5 "Returning to the group buffer")
7400 (setq entered t)
7401 (when (gnus-buffer-live-p current-buffer)
7402 (set-buffer current-buffer)
7403 (gnus-summary-exit))
6748645f 7404 (gnus-run-hooks 'gnus-group-no-more-groups-hook))
eec82323
LMI
7405 ;; We try to enter the target group.
7406 (gnus-group-jump-to-group target-group)
7407 (let ((unreads (gnus-group-group-unread)))
7408 (if (and (or (eq t unreads)
7409 (and unreads (not (zerop unreads))))
23f87bed
MB
7410 (gnus-summary-read-group
7411 target-group nil no-article
7412 (and (buffer-name current-buffer) current-buffer)
7413 nil backward))
eec82323
LMI
7414 (setq entered t)
7415 (setq current-group target-group
7416 target-group nil)))))))
7417
7418(defun gnus-summary-prev-group (&optional no-article)
7419 "Exit current newsgroup and then select previous unread newsgroup.
7420If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
7421 (interactive "P")
7422 (gnus-summary-next-group no-article nil t))
7423
7424;; Walking around summary lines.
7425
23f87bed
MB
7426(defun gnus-summary-first-subject (&optional unread undownloaded unseen)
7427 "Go to the first subject satisfying any non-nil constraint.
7428If UNREAD is non-nil, the article should be unread.
7429If UNDOWNLOADED is non-nil, the article should be undownloaded.
20a673b2 7430If UNSEEN is non-nil, the article should be unseen as well as unread.
23f87bed 7431Returns the article selected or nil if there are no matching articles."
eec82323 7432 (interactive "P")
23f87bed
MB
7433 (cond
7434 ;; Empty summary.
7435 ((null gnus-newsgroup-data)
7436 (gnus-message 3 "No articles in the group")
7437 nil)
7438 ;; Pick the first article.
7439 ((not (or unread undownloaded unseen))
7440 (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
7441 (gnus-data-number (car gnus-newsgroup-data)))
7442 ;; Find the first unread article.
7443 (t
7444 (let ((data gnus-newsgroup-data))
7445 (while (and data
7446 (let ((num (gnus-data-number (car data))))
7447 (or (memq num gnus-newsgroup-unfetched)
7448 (not (or (and unread
7449 (memq num gnus-newsgroup-unreads))
7450 (and undownloaded
7451 (memq num gnus-newsgroup-undownloaded))
7452 (and unseen
20a673b2
KY
7453 (memq num gnus-newsgroup-unseen)
7454 (memq num gnus-newsgroup-unreads)))))))
23f87bed
MB
7455 (setq data (cdr data)))
7456 (prog1
7457 (if data
7458 (progn
7459 (goto-char (gnus-data-pos (car data)))
7460 (gnus-data-number (car data)))
7461 (gnus-message 3 "No more%s articles"
7462 (let* ((r (when unread " unread"))
7463 (d (when undownloaded " undownloaded"))
7464 (s (when unseen " unseen"))
7465 (l (delq nil (list r d s))))
7466 (cond ((= 3 (length l))
7467 (concat r "," d ", or" s))
7468 ((= 2 (length l))
7469 (concat (car l) ", or" (cadr l)))
7470 ((= 1 (length l))
7471 (car l))
7472 (t
7473 ""))))
7474 nil
7475 )
7476 (gnus-summary-position-point))))))
eec82323
LMI
7477
7478(defun gnus-summary-next-subject (n &optional unread dont-display)
7479 "Go to next N'th summary line.
7480If N is negative, go to the previous N'th subject line.
7481If UNREAD is non-nil, only unread articles are selected.
7482The difference between N and the actual number of steps taken is
7483returned."
7484 (interactive "p")
7485 (let ((backward (< n 0))
7486 (n (abs n)))
7487 (while (and (> n 0)
7488 (if backward
7489 (gnus-summary-find-prev unread)
7490 (gnus-summary-find-next unread)))
16409b0b
GM
7491 (unless (zerop (setq n (1- n)))
7492 (gnus-summary-show-thread)))
eec82323
LMI
7493 (when (/= 0 n)
7494 (gnus-message 7 "No more%s articles"
7495 (if unread " unread" "")))
7496 (unless dont-display
7497 (gnus-summary-recenter)
7498 (gnus-summary-position-point))
7499 n))
7500
7501(defun gnus-summary-next-unread-subject (n)
7502 "Go to next N'th unread summary line."
7503 (interactive "p")
7504 (gnus-summary-next-subject n t))
7505
7506(defun gnus-summary-prev-subject (n &optional unread)
7507 "Go to previous N'th summary line.
7508If optional argument UNREAD is non-nil, only unread article is selected."
7509 (interactive "p")
7510 (gnus-summary-next-subject (- n) unread))
7511
7512(defun gnus-summary-prev-unread-subject (n)
7513 "Go to previous N'th unread summary line."
7514 (interactive "p")
7515 (gnus-summary-next-subject (- n) t))
7516
23f87bed
MB
7517(defun gnus-summary-goto-subjects (articles)
7518 "Insert the subject header for ARTICLES in the current buffer."
7519 (save-excursion
7520 (dolist (article articles)
7521 (gnus-summary-goto-subject article t)))
7522 (gnus-summary-limit (append articles gnus-newsgroup-limit))
7523 (gnus-summary-position-point))
132cf96d 7524
eec82323 7525(defun gnus-summary-goto-subject (article &optional force silent)
d55fe5bb 7526 "Go to the subject line of ARTICLE.
eec82323
LMI
7527If FORCE, also allow jumping to articles not currently shown."
7528 (interactive "nArticle number: ")
23f87bed
MB
7529 (unless (numberp article)
7530 (error "Article %s is not a number" article))
eec82323
LMI
7531 (let ((b (point))
7532 (data (gnus-data-find article)))
7533 ;; We read in the article if we have to.
7534 (and (not data)
7535 force
6748645f
LMI
7536 (gnus-summary-insert-subject
7537 article
7538 (if (or (numberp force) (vectorp force)) force)
7539 t)
eec82323
LMI
7540 (setq data (gnus-data-find article)))
7541 (goto-char b)
7542 (if (not data)
7543 (progn
7544 (unless silent
7545 (gnus-message 3 "Can't find article %d" article))
7546 nil)
23f87bed
MB
7547 (let ((pt (gnus-data-pos data)))
7548 (goto-char pt)
7549 (gnus-summary-set-article-display-arrow pt))
6748645f 7550 (gnus-summary-position-point)
eec82323
LMI
7551 article)))
7552
7553;; Walking around summary lines with displaying articles.
7554
7555(defun gnus-summary-expand-window (&optional arg)
7556 "Make the summary buffer take up the entire Emacs frame.
7557Given a prefix, will force an `article' buffer configuration."
7558 (interactive "P")
eec82323
LMI
7559 (if arg
7560 (gnus-configure-windows 'article 'force)
7561 (gnus-configure-windows 'summary 'force)))
7562
7563(defun gnus-summary-display-article (article &optional all-header)
7564 "Display ARTICLE in article buffer."
01c52d31
MB
7565 (unless (and (gnus-buffer-live-p gnus-article-buffer)
7566 (with-current-buffer gnus-article-buffer
7567 (eq major-mode 'gnus-article-mode)))
7568 (gnus-article-setup-buffer))
eec82323 7569 (gnus-set-global-variables)
01c52d31
MB
7570 (with-current-buffer gnus-article-buffer
7571 (setq gnus-article-charset gnus-newsgroup-charset)
7572 (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)
7573 (mm-enable-multibyte))
eec82323
LMI
7574 (if (null article)
7575 nil
7576 (prog1
7577 (if gnus-summary-display-article-function
7578 (funcall gnus-summary-display-article-function article all-header)
7579 (gnus-article-prepare article all-header))
6748645f 7580 (gnus-run-hooks 'gnus-select-article-hook)
eec82323
LMI
7581 (when (and gnus-current-article
7582 (not (zerop gnus-current-article)))
7583 (gnus-summary-goto-subject gnus-current-article))
7584 (gnus-summary-recenter)
7585 (when (and gnus-use-trees gnus-show-threads)
7586 (gnus-possibly-generate-tree article)
7587 (gnus-highlight-selected-tree article))
7588 ;; Successfully display article.
7589 (gnus-article-set-window-start
7590 (cdr (assq article gnus-newsgroup-bookmarks))))))
7591
7592(defun gnus-summary-select-article (&optional all-headers force pseudo article)
7593 "Select the current article.
7594If ALL-HEADERS is non-nil, show all header fields. If FORCE is
7595non-nil, the article will be re-fetched even if it already present in
7596the article buffer. If PSEUDO is non-nil, pseudo-articles will also
7597be displayed."
7598 ;; Make sure we are in the summary buffer to work around bbdb bug.
7599 (unless (eq major-mode 'gnus-summary-mode)
7600 (set-buffer gnus-summary-buffer))
7601 (let ((article (or article (gnus-summary-article-number)))
f0529b5b 7602 (all-headers (not (not all-headers))) ;Must be t or nil.
16409b0b 7603 gnus-summary-display-article-function)
eec82323
LMI
7604 (and (not pseudo)
7605 (gnus-summary-article-pseudo-p article)
a8151ef7 7606 (error "This is a pseudo-article"))
c7a91ce1 7607 (with-current-buffer gnus-summary-buffer
16409b0b
GM
7608 (if (or (and gnus-single-article-buffer
7609 (or (null gnus-current-article)
7610 (null gnus-article-current)
7611 (null (get-buffer gnus-article-buffer))
7612 (not (eq article (cdr gnus-article-current)))
7613 (not (equal (car gnus-article-current)
de635afe 7614 gnus-newsgroup-name))
28090d40 7615 (not (get-buffer gnus-original-article-buffer))))
16409b0b
GM
7616 (and (not gnus-single-article-buffer)
7617 (or (null gnus-current-article)
389b76fa 7618 (not (get-buffer gnus-original-article-buffer))
16409b0b
GM
7619 (not (eq gnus-current-article article))))
7620 force)
7621 ;; The requested article is different from the current article.
7622 (progn
16409b0b
GM
7623 (gnus-summary-display-article article all-headers)
7624 (when (gnus-buffer-live-p gnus-article-buffer)
23f87bed 7625 (with-current-buffer gnus-article-buffer
16409b0b 7626 (if (not gnus-article-decoded-p) ;; a local variable
87545352 7627 (mm-disable-multibyte))))
16409b0b
GM
7628 (gnus-article-set-window-start
7629 (cdr (assq article gnus-newsgroup-bookmarks)))
7630 article)
16409b0b 7631 'old))))
eec82323 7632
23f87bed
MB
7633(defun gnus-summary-force-verify-and-decrypt ()
7634 "Display buttons for signed/encrypted parts and verify/decrypt them."
7635 (interactive)
7636 (let ((mm-verify-option 'known)
7637 (mm-decrypt-option 'known)
7638 (gnus-article-emulate-mime t)
7639 (gnus-buttonized-mime-types (append (list "multipart/signed"
7640 "multipart/encrypted")
7641 gnus-buttonized-mime-types)))
7642 (gnus-summary-select-article nil 'force)))
7643
eec82323
LMI
7644(defun gnus-summary-set-current-mark (&optional current-mark)
7645 "Obsolete function."
7646 nil)
7647
7648(defun gnus-summary-next-article (&optional unread subject backward push)
7649 "Select the next article.
7650If UNREAD, only unread articles are selected.
7651If SUBJECT, only articles with SUBJECT are selected.
7652If BACKWARD, the previous article is selected instead of the next."
7653 (interactive "P")
11e95b02
MB
7654 ;; Make sure we are in the summary buffer.
7655 (unless (eq major-mode 'gnus-summary-mode)
7656 (set-buffer gnus-summary-buffer))
eec82323
LMI
7657 (cond
7658 ;; Is there such an article?
7659 ((and (gnus-summary-search-forward unread subject backward)
7660 (or (gnus-summary-display-article (gnus-summary-article-number))
7661 (eq (gnus-summary-article-mark) gnus-canceled-mark)))
7662 (gnus-summary-position-point))
7663 ;; If not, we try the first unread, if that is wanted.
7664 ((and subject
7665 gnus-auto-select-same
7666 (gnus-summary-first-unread-article))
7667 (gnus-summary-position-point)
7668 (gnus-message 6 "Wrapped"))
7669 ;; Try to get next/previous article not displayed in this group.
7670 ((and gnus-auto-extend-newsgroup
7671 (not unread) (not subject))
7672 (gnus-summary-goto-article
7673 (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
6748645f 7674 nil (count-lines (point-min) (point))))
eec82323
LMI
7675 ;; Go to next/previous group.
7676 (t
7677 (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
7678 (gnus-summary-jump-to-group gnus-newsgroup-name))
49e787c9
GM
7679 (let ((cmd (if (featurep 'xemacs)
7680 last-command-char
7681 last-command-event))
eec82323 7682 (point
01c52d31 7683 (with-current-buffer gnus-group-buffer
eec82323
LMI
7684 (point)))
7685 (group
7686 (if (eq gnus-keep-same-level 'best)
7687 (gnus-summary-best-group gnus-newsgroup-name)
7688 (gnus-summary-search-group backward gnus-keep-same-level))))
eec82323
LMI
7689 ;; Select next unread newsgroup automagically.
7690 (cond
7691 ((or (not gnus-auto-select-next)
7692 (not cmd))
7693 (gnus-message 7 "No more%s articles" (if unread " unread" "")))
7694 ((or (eq gnus-auto-select-next 'quietly)
7695 (and (eq gnus-auto-select-next 'slightly-quietly)
7696 push)
7697 (and (eq gnus-auto-select-next 'almost-quietly)
7698 (gnus-summary-last-article-p)))
7699 ;; Select quietly.
7700 (if (gnus-ephemeral-group-p gnus-newsgroup-name)
7701 (gnus-summary-exit)
7702 (gnus-message 7 "No more%s articles (%s)..."
7703 (if unread " unread" "")
7704 (if group (concat "selecting " group)
7705 "exiting"))
7706 (gnus-summary-next-group nil group backward)))
7707 (t
7708 (when (gnus-key-press-event-p last-input-event)
7709 (gnus-summary-walk-group-buffer
7710 gnus-newsgroup-name cmd unread backward point))))))))
7711
7712(defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
7713 (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
7714 (?\C-p (gnus-group-prev-unread-group 1))))
7715 (cursor-in-echo-area t)
23f87bed 7716 keve key group ended prompt)
c7a91ce1 7717 (with-current-buffer gnus-group-buffer
eec82323
LMI
7718 (goto-char start)
7719 (setq group
7720 (if (eq gnus-keep-same-level 'best)
7721 (gnus-summary-best-group gnus-newsgroup-name)
7722 (gnus-summary-search-group backward gnus-keep-same-level))))
7723 (while (not ended)
23f87bed
MB
7724 (setq prompt
7725 (format
7726 "No more%s articles%s " (if unread " unread" "")
7727 (if (and group
7728 (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
7729 (format " (Type %s for %s [%s])"
91472578
MB
7730 (single-key-description cmd)
7731 (gnus-group-decoded-name group)
01c52d31 7732 (gnus-group-unread group))
23f87bed
MB
7733 (format " (Type %s to exit %s)"
7734 (single-key-description cmd)
91472578 7735 (gnus-group-decoded-name gnus-newsgroup-name)))))
eec82323 7736 ;; Confirm auto selection.
23f87bed
MB
7737 (setq key (car (setq keve (gnus-read-event-char prompt)))
7738 ended t)
eec82323
LMI
7739 (cond
7740 ((assq key keystrokes)
7741 (let ((obuf (current-buffer)))
7742 (switch-to-buffer gnus-group-buffer)
7743 (when group
7744 (gnus-group-jump-to-group group))
7745 (eval (cadr (assq key keystrokes)))
7746 (setq group (gnus-group-group-name))
7747 (switch-to-buffer obuf))
7748 (setq ended nil))
7749 ((equal key cmd)
7750 (if (or (not group)
7751 (gnus-ephemeral-group-p gnus-newsgroup-name))
7752 (gnus-summary-exit)
7753 (gnus-summary-next-group nil group backward)))
7754 (t
7755 (push (cdr keve) unread-command-events))))))
7756
7757(defun gnus-summary-next-unread-article ()
7758 "Select unread article after current one."
7759 (interactive)
7760 (gnus-summary-next-article
7761 (or (not (eq gnus-summary-goto-unread 'never))
7762 (gnus-summary-last-article-p (gnus-summary-article-number)))
7763 (and gnus-auto-select-same
7764 (gnus-summary-article-subject))))
7765
7766(defun gnus-summary-prev-article (&optional unread subject)
bbbe940b 7767 "Select the article before the current one.
eec82323
LMI
7768If UNREAD is non-nil, only unread articles are selected."
7769 (interactive "P")
7770 (gnus-summary-next-article unread subject t))
7771
7772(defun gnus-summary-prev-unread-article ()
7773 "Select unread article before current one."
7774 (interactive)
7775 (gnus-summary-prev-article
7776 (or (not (eq gnus-summary-goto-unread 'never))
7777 (gnus-summary-first-article-p (gnus-summary-article-number)))
7778 (and gnus-auto-select-same
7779 (gnus-summary-article-subject))))
7780
23f87bed 7781(defun gnus-summary-next-page (&optional lines circular stop)
eec82323
LMI
7782 "Show next page of the selected article.
7783If at the end of the current article, select the next article.
7784LINES says how many lines should be scrolled up.
7785
7786If CIRCULAR is non-nil, go to the start of the article instead of
7787selecting the next article when reaching the end of the current
23f87bed
MB
7788article.
7789
7790If STOP is non-nil, just stop when reaching the end of the message.
7791
7792Also see the variable `gnus-article-skip-boring'."
eec82323
LMI
7793 (interactive "P")
7794 (setq gnus-summary-buffer (current-buffer))
7795 (gnus-set-global-variables)
7796 (let ((article (gnus-summary-article-number))
7797 (article-window (get-buffer-window gnus-article-buffer t))
7798 endp)
6748645f
LMI
7799 ;; If the buffer is empty, we have no article.
7800 (unless article
7801 (error "No article to select"))
eec82323
LMI
7802 (gnus-configure-windows 'article)
7803 (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
7804 (if (and (eq gnus-summary-goto-unread 'never)
7805 (not (gnus-summary-last-article-p article)))
7806 (gnus-summary-next-article)
7807 (gnus-summary-next-unread-article))
7808 (if (or (null gnus-current-article)
7809 (null gnus-article-current)
7810 (/= article (cdr gnus-article-current))
7811 (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7812 ;; Selected subject is different from current article's.
7813 (gnus-summary-display-article article)
7814 (when article-window
7815 (gnus-eval-in-buffer-window gnus-article-buffer
23f87bed
MB
7816 (setq endp (or (gnus-article-next-page lines)
7817 (gnus-article-only-boring-p))))
eec82323 7818 (when endp
b1992461 7819 (cond ((or stop gnus-summary-stop-at-end-of-message)
23f87bed
MB
7820 (gnus-message 3 "End of message"))
7821 (circular
eec82323
LMI
7822 (gnus-summary-beginning-of-article))
7823 (lines
7824 (gnus-message 3 "End of message"))
7825 ((null lines)
7826 (if (and (eq gnus-summary-goto-unread 'never)
7827 (not (gnus-summary-last-article-p article)))
7828 (gnus-summary-next-article)
7829 (gnus-summary-next-unread-article))))))))
7830 (gnus-summary-recenter)
7831 (gnus-summary-position-point)))
7832
7833(defun gnus-summary-prev-page (&optional lines move)
7834 "Show previous page of selected article.
7835Argument LINES specifies lines to be scrolled down.
7836If MOVE, move to the previous unread article if point is at
7837the beginning of the buffer."
7838 (interactive "P")
eec82323
LMI
7839 (let ((article (gnus-summary-article-number))
7840 (article-window (get-buffer-window gnus-article-buffer t))
7841 endp)
7842 (gnus-configure-windows 'article)
7843 (if (or (null gnus-current-article)
7844 (null gnus-article-current)
7845 (/= article (cdr gnus-article-current))
7846 (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7847 ;; Selected subject is different from current article's.
7848 (gnus-summary-display-article article)
7849 (gnus-summary-recenter)
7850 (when article-window
7851 (gnus-eval-in-buffer-window gnus-article-buffer
7852 (setq endp (gnus-article-prev-page lines)))
7853 (when (and move endp)
7854 (cond (lines
7855 (gnus-message 3 "Beginning of message"))
7856 ((null lines)
7857 (if (and (eq gnus-summary-goto-unread 'never)
7858 (not (gnus-summary-first-article-p article)))
7859 (gnus-summary-prev-article)
7860 (gnus-summary-prev-unread-article))))))))
7861 (gnus-summary-position-point))
7862
7863(defun gnus-summary-prev-page-or-article (&optional lines)
7864 "Show previous page of selected article.
7865Argument LINES specifies lines to be scrolled down.
7866If at the beginning of the article, go to the next article."
7867 (interactive "P")
7868 (gnus-summary-prev-page lines t))
7869
7870(defun gnus-summary-scroll-up (lines)
7871 "Scroll up (or down) one line current article.
a3f57c41
G
7872Argument LINES specifies lines to be scrolled up (or down if negative).
7873If no article is selected, then the current article will be selected first."
eec82323 7874 (interactive "p")
eec82323
LMI
7875 (gnus-configure-windows 'article)
7876 (gnus-summary-show-thread)
7877 (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
7878 (gnus-eval-in-buffer-window gnus-article-buffer
7879 (cond ((> lines 0)
7880 (when (gnus-article-next-page lines)
7881 (gnus-message 3 "End of message")))
7882 ((< lines 0)
7883 (gnus-article-prev-page (- lines))))))
7884 (gnus-summary-recenter)
7885 (gnus-summary-position-point))
7886
6748645f
LMI
7887(defun gnus-summary-scroll-down (lines)
7888 "Scroll down (or up) one line current article.
a3f57c41
G
7889Argument LINES specifies lines to be scrolled down (or up if negative).
7890If no article is selected, then the current article will be selected first."
6748645f
LMI
7891 (interactive "p")
7892 (gnus-summary-scroll-up (- lines)))
7893
eec82323
LMI
7894(defun gnus-summary-next-same-subject ()
7895 "Select next article which has the same subject as current one."
7896 (interactive)
eec82323
LMI
7897 (gnus-summary-next-article nil (gnus-summary-article-subject)))
7898
7899(defun gnus-summary-prev-same-subject ()
7900 "Select previous article which has the same subject as current one."
7901 (interactive)
eec82323
LMI
7902 (gnus-summary-prev-article nil (gnus-summary-article-subject)))
7903
7904(defun gnus-summary-next-unread-same-subject ()
7905 "Select next unread article which has the same subject as current one."
7906 (interactive)
eec82323
LMI
7907 (gnus-summary-next-article t (gnus-summary-article-subject)))
7908
7909(defun gnus-summary-prev-unread-same-subject ()
7910 "Select previous unread article which has the same subject as current one."
7911 (interactive)
eec82323
LMI
7912 (gnus-summary-prev-article t (gnus-summary-article-subject)))
7913
7914(defun gnus-summary-first-unread-article ()
7915 "Select the first unread article.
7916Return nil if there are no unread articles."
7917 (interactive)
eec82323
LMI
7918 (prog1
7919 (when (gnus-summary-first-subject t)
7920 (gnus-summary-show-thread)
7921 (gnus-summary-first-subject t)
7922 (gnus-summary-display-article (gnus-summary-article-number)))
7923 (gnus-summary-position-point)))
7924
16409b0b
GM
7925(defun gnus-summary-first-unread-subject ()
7926 "Place the point on the subject line of the first unread article.
7927Return nil if there are no unread articles."
7928 (interactive)
7929 (prog1
7930 (when (gnus-summary-first-subject t)
7931 (gnus-summary-show-thread)
7932 (gnus-summary-first-subject t))
7933 (gnus-summary-position-point)))
7934
23f87bed
MB
7935(defun gnus-summary-first-unseen-subject ()
7936 "Place the point on the subject line of the first unseen article.
7937Return nil if there are no unseen articles."
7938 (interactive)
7939 (prog1
7940 (when (gnus-summary-first-subject nil nil t)
7941 (gnus-summary-show-thread)
7942 (gnus-summary-first-subject nil nil t))
7943 (gnus-summary-position-point)))
7944
7945(defun gnus-summary-first-unseen-or-unread-subject ()
20a673b2
KY
7946 "Place the point on the subject line of the first unseen and unread article.
7947If all article have been seen, on the subject line of the first unread
23f87bed
MB
7948article."
7949 (interactive)
7950 (prog1
7951 (unless (when (gnus-summary-first-subject nil nil t)
7952 (gnus-summary-show-thread)
7953 (gnus-summary-first-subject nil nil t))
7954 (when (gnus-summary-first-subject t)
7955 (gnus-summary-show-thread)
7956 (gnus-summary-first-subject t)))
7957 (gnus-summary-position-point)))
7958
eec82323
LMI
7959(defun gnus-summary-first-article ()
7960 "Select the first article.
7961Return nil if there are no articles."
7962 (interactive)
eec82323
LMI
7963 (prog1
7964 (when (gnus-summary-first-subject)
16409b0b
GM
7965 (gnus-summary-show-thread)
7966 (gnus-summary-first-subject)
7967 (gnus-summary-display-article (gnus-summary-article-number)))
eec82323
LMI
7968 (gnus-summary-position-point)))
7969
23f87bed
MB
7970(defun gnus-summary-best-unread-article (&optional arg)
7971 "Select the unread article with the highest score.
7972If given a prefix argument, select the next unread article that has a
7973score higher than the default score."
7974 (interactive "P")
7975 (let ((article (if arg
7976 (gnus-summary-better-unread-subject)
7977 (gnus-summary-best-unread-subject))))
7978 (if article
7979 (gnus-summary-goto-article article)
7980 (error "No unread articles"))))
7981
7982(defun gnus-summary-best-unread-subject ()
7983 "Select the unread subject with the highest score."
eec82323 7984 (interactive)
eec82323
LMI
7985 (let ((best -1000000)
7986 (data gnus-newsgroup-data)
7987 article score)
7988 (while data
7989 (and (gnus-data-unread-p (car data))
7990 (> (setq score
7991 (gnus-summary-article-score (gnus-data-number (car data))))
7992 best)
7993 (setq best score
7994 article (gnus-data-number (car data))))
7995 (setq data (cdr data)))
23f87bed
MB
7996 (when article
7997 (gnus-summary-goto-subject article))
7998 (gnus-summary-position-point)
7999 article))
8000
8001(defun gnus-summary-better-unread-subject ()
8002 "Select the first unread subject that has a score over the default score."
8003 (interactive)
8004 (let ((data gnus-newsgroup-data)
8005 article score)
8006 (while (and (setq article (gnus-data-number (car data)))
8007 (or (gnus-data-read-p (car data))
8008 (not (> (gnus-summary-article-score article)
8009 gnus-summary-default-score))))
8010 (setq data (cdr data)))
8011 (when article
8012 (gnus-summary-goto-subject article))
8013 (gnus-summary-position-point)
8014 article))
eec82323
LMI
8015
8016(defun gnus-summary-last-subject ()
8017 "Go to the last displayed subject line in the group."
8018 (let ((article (gnus-data-number (car (gnus-data-list t)))))
8019 (when article
8020 (gnus-summary-goto-subject article))))
8021
8022(defun gnus-summary-goto-article (article &optional all-headers force)
6748645f
LMI
8023 "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
8024If ALL-HEADERS is non-nil, no header lines are hidden.
8025If FORCE, go to the article even if it isn't displayed. If FORCE
8026is a number, it is the line the article is to be displayed on."
eec82323
LMI
8027 (interactive
8028 (list
229b59da
G
8029 (gnus-completing-read
8030 "Article number or Message-ID"
8031 (mapcar 'int-to-string gnus-newsgroup-limit))
eec82323
LMI
8032 current-prefix-arg
8033 t))
8034 (prog1
6748645f 8035 (if (and (stringp article)
23f87bed 8036 (string-match "@\\|%40" article))
6748645f
LMI
8037 (gnus-summary-refer-article article)
8038 (when (stringp article)
8039 (setq article (string-to-number article)))
8040 (if (gnus-summary-goto-subject article force)
8041 (gnus-summary-display-article article all-headers)
8042 (gnus-message 4 "Couldn't go to article %s" article) nil))
eec82323
LMI
8043 (gnus-summary-position-point)))
8044
8045(defun gnus-summary-goto-last-article ()
8046 "Go to the previously read article."
8047 (interactive)
8048 (prog1
8049 (when gnus-last-article
6748645f 8050 (gnus-summary-goto-article gnus-last-article nil t))
eec82323
LMI
8051 (gnus-summary-position-point)))
8052
8053(defun gnus-summary-pop-article (number)
8054 "Pop one article off the history and go to the previous.
8055NUMBER articles will be popped off."
8056 (interactive "p")
8057 (let (to)
8058 (setq gnus-newsgroup-history
8059 (cdr (setq to (nthcdr number gnus-newsgroup-history))))
8060 (if to
6748645f 8061 (gnus-summary-goto-article (car to) nil t)
eec82323
LMI
8062 (error "Article history empty")))
8063 (gnus-summary-position-point))
8064
8065;; Summary commands and functions for limiting the summary buffer.
8066
8067(defun gnus-summary-limit-to-articles (n)
8068 "Limit the summary buffer to the next N articles.
8069If not given a prefix, use the process marked articles instead."
8070 (interactive "P")
eec82323
LMI
8071 (prog1
8072 (let ((articles (gnus-summary-work-articles n)))
8073 (setq gnus-newsgroup-processable nil)
8074 (gnus-summary-limit articles))
8075 (gnus-summary-position-point)))
8076
8077(defun gnus-summary-pop-limit (&optional total)
8078 "Restore the previous limit.
8079If given a prefix, remove all limits."
8080 (interactive "P")
eec82323
LMI
8081 (when total
8082 (setq gnus-newsgroup-limits
8083 (list (mapcar (lambda (h) (mail-header-number h))
8084 gnus-newsgroup-headers))))
8085 (unless gnus-newsgroup-limits
8086 (error "No limit to pop"))
8087 (prog1
8088 (gnus-summary-limit nil 'pop)
8089 (gnus-summary-position-point)))
8090
47b63dfa
SZ
8091(defun gnus-summary-limit-to-subject (subject &optional header not-matching)
8092 "Limit the summary buffer to articles that have subjects that match a regexp.
8093If NOT-MATCHING, excluding articles that have subjects that match a regexp."
a1506d29 8094 (interactive
47b63dfa
SZ
8095 (list (read-string (if current-prefix-arg
8096 "Exclude subject (regexp): "
a1506d29 8097 "Limit to subject (regexp): "))
47b63dfa 8098 nil current-prefix-arg))
eec82323
LMI
8099 (unless header
8100 (setq header "subject"))
8101 (when (not (equal "" subject))
8102 (prog1
8103 (let ((articles (gnus-summary-find-matching
a1506d29 8104 (or header "subject") subject 'all nil nil
47b63dfa 8105 not-matching)))
eec82323
LMI
8106 (unless articles
8107 (error "Found no matches for \"%s\"" subject))
8108 (gnus-summary-limit articles))
8109 (gnus-summary-position-point))))
8110
ef6e0ec7 8111(defun gnus-summary-limit-to-author (from &optional not-matching)
47b63dfa
SZ
8112 "Limit the summary buffer to articles that have authors that match a regexp.
8113If NOT-MATCHING, excluding articles that have authors that match a regexp."
a1506d29 8114 (interactive
47b63dfa
SZ
8115 (list (read-string (if current-prefix-arg
8116 "Exclude author (regexp): "
a1506d29 8117 "Limit to author (regexp): "))
ef6e0ec7
SZ
8118 current-prefix-arg))
8119 (gnus-summary-limit-to-subject from "from" not-matching))
eec82323 8120
01c52d31
MB
8121(defun gnus-summary-limit-to-recipient (recipient &optional not-matching)
8122 "Limit the summary buffer to articles with the given RECIPIENT.
8123
8124If NOT-MATCHING, exclude RECIPIENT.
8125
8126To and Cc headers are checked. You need to include them in
8127`nnmail-extra-headers'."
8128 ;; Unlike `rmail-summary-by-recipients', doesn't include From.
8129 (interactive
8130 (list (read-string (format "%s recipient (regexp): "
8131 (if current-prefix-arg "Exclude" "Limit to")))
8132 current-prefix-arg))
8133 (when (not (equal "" recipient))
8134 (prog1 (let* ((to
8135 (if (memq 'To nnmail-extra-headers)
8136 (gnus-summary-find-matching
8137 (cons 'extra 'To) recipient 'all nil nil
8138 not-matching)
8139 (gnus-message
8140 1 "`To' isn't present in `nnmail-extra-headers'")
8141 (sit-for 1)
8142 nil))
8143 (cc
8144 (if (memq 'Cc nnmail-extra-headers)
8145 (gnus-summary-find-matching
8146 (cons 'extra 'Cc) recipient 'all nil nil
8147 not-matching)
8148 (gnus-message
8149 1 "`Cc' isn't present in `nnmail-extra-headers'")
8150 (sit-for 1)
8151 nil))
8152 (articles
8153 (if not-matching
8154 ;; We need the numbers that are in both lists:
8155 (mapcar (lambda (a)
8156 (and (memq a to) a))
8157 cc)
8158 (nconc to cc))))
8159 (unless articles
8160 (error "Found no matches for \"%s\"" recipient))
8161 (gnus-summary-limit articles))
8162 (gnus-summary-position-point))))
8163
8164(defun gnus-summary-limit-to-address (address &optional not-matching)
8165 "Limit the summary buffer to articles with the given ADDRESS.
8166
8167If NOT-MATCHING, exclude ADDRESS.
8168
8169To, Cc and From headers are checked. You need to include `To' and `Cc'
8170in `nnmail-extra-headers'."
8171 (interactive
8172 (list (read-string (format "%s address (regexp): "
8173 (if current-prefix-arg "Exclude" "Limit to")))
8174 current-prefix-arg))
8175 (when (not (equal "" address))
8176 (prog1 (let* ((to
8177 (if (memq 'To nnmail-extra-headers)
8178 (gnus-summary-find-matching
8179 (cons 'extra 'To) address 'all nil nil
8180 not-matching)
8181 (gnus-message
8182 1 "`To' isn't present in `nnmail-extra-headers'")
8183 (sit-for 1)
8184 t))
8185 (cc
8186 (if (memq 'Cc nnmail-extra-headers)
8187 (gnus-summary-find-matching
8188 (cons 'extra 'Cc) address 'all nil nil
8189 not-matching)
8190 (gnus-message
8191 1 "`Cc' isn't present in `nnmail-extra-headers'")
8192 (sit-for 1)
8193 t))
8194 (from
8195 (gnus-summary-find-matching "from" address
8196 'all nil nil not-matching))
8197 (articles
8198 (if not-matching
8199 ;; We need the numbers that are in all lists:
8200 (if (eq cc t)
8201 (if (eq to t)
8202 from
8203 (mapcar (lambda (a) (car (memq a from))) to))
8204 (if (eq to t)
8205 (mapcar (lambda (a) (car (memq a from))) cc)
8206 (mapcar (lambda (a) (car (memq a from)))
8207 (mapcar (lambda (a) (car (memq a to)))
8208 cc))))
8209 (nconc (if (eq to t) nil to)
8210 (if (eq cc t) nil cc)
8211 from))))
8212 (unless articles
8213 (error "Found no matches for \"%s\"" address))
8214 (gnus-summary-limit articles))
8215 (gnus-summary-position-point))))
8216
8217(defun gnus-summary-limit-strange-charsets-predicate (header)
765d4319
KY
8218 (when (fboundp 'char-charset)
8219 (let ((string (concat (mail-header-subject header)
8220 (mail-header-from header)))
8221 charset found)
8222 (dotimes (i (1- (length string)))
8223 (setq charset (format "%s" (char-charset (aref string (1+ i)))))
8224 (when (string-match "unicode\\|big\\|japanese" charset)
8225 (setq found t)))
8226 found)))
01c52d31
MB
8227
8228(defun gnus-summary-limit-to-predicate (predicate)
8229 "Limit to articles where PREDICATE returns non-nil.
8230PREDICATE will be called with the header structures of the
8231articles."
8232 (let ((articles nil)
8233 (case-fold-search t))
8234 (dolist (header gnus-newsgroup-headers)
8235 (when (funcall predicate header)
8236 (push (mail-header-number header) articles)))
8237 (gnus-summary-limit (nreverse articles))))
8238
eec82323
LMI
8239(defun gnus-summary-limit-to-age (age &optional younger-p)
8240 "Limit the summary buffer to articles that are older than (or equal) AGE days.
8241If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
8242articles that are younger than AGE days."
16409b0b
GM
8243 (interactive
8244 (let ((younger current-prefix-arg)
8245 (days-got nil)
8246 days)
8247 (while (not days-got)
8248 (setq days (if younger
23f87bed
MB
8249 (read-string "Limit to articles younger than (in days, older when negative): ")
8250 (read-string
8251 "Limit to articles older than (in days, younger when negative): ")))
16409b0b
GM
8252 (when (> (length days) 0)
8253 (setq days (read days)))
8254 (if (numberp days)
23f87bed
MB
8255 (progn
8256 (setq days-got t)
01c52d31
MB
8257 (when (< days 0)
8258 (setq younger (not younger))
8259 (setq days (* days -1))))
16409b0b
GM
8260 (message "Please enter a number.")
8261 (sleep-for 1)))
8262 (list days younger)))
eec82323
LMI
8263 (prog1
8264 (let ((data gnus-newsgroup-data)
16409b0b 8265 (cutoff (days-to-time age))
eec82323
LMI
8266 articles d date is-younger)
8267 (while (setq d (pop data))
8268 (when (and (vectorp (gnus-data-header d))
8269 (setq date (mail-header-date (gnus-data-header d))))
16409b0b 8270 (setq is-younger (time-less-p
3d6e7a43 8271 (time-since (gnus-date-get-time date))
eec82323 8272 cutoff))
6748645f
LMI
8273 (when (if younger-p
8274 is-younger
8275 (not is-younger))
eec82323
LMI
8276 (push (gnus-data-number d) articles))))
8277 (gnus-summary-limit (nreverse articles)))
8278 (gnus-summary-position-point)))
8279
47b63dfa 8280(defun gnus-summary-limit-to-extra (header regexp &optional not-matching)
16409b0b
GM
8281 "Limit the summary buffer to articles that match an 'extra' header."
8282 (interactive
8283 (let ((header
8284 (intern
229b59da 8285 (gnus-completing-read
47b63dfa 8286 (if current-prefix-arg
81df110a
RF
8287 "Exclude extra header"
8288 "Limit extra header")
229b59da
G
8289 (mapcar 'symbol-name gnus-extra-headers)
8290 t nil nil
8291 (symbol-name (car gnus-extra-headers))))))
16409b0b 8292 (list header
a1506d29 8293 (read-string (format "%s header %s (regexp): "
47b63dfa
SZ
8294 (if current-prefix-arg "Exclude" "Limit to")
8295 header))
8296 current-prefix-arg)))
16409b0b
GM
8297 (when (not (equal "" regexp))
8298 (prog1
8299 (let ((articles (gnus-summary-find-matching
a1506d29 8300 (cons 'extra header) regexp 'all nil nil
47b63dfa 8301 not-matching)))
16409b0b
GM
8302 (unless articles
8303 (error "Found no matches for \"%s\"" regexp))
8304 (gnus-summary-limit articles))
8305 (gnus-summary-position-point))))
8306
23f87bed
MB
8307(defun gnus-summary-limit-to-display-predicate ()
8308 "Limit the summary buffer to the predicated in the `display' group parameter."
8309 (interactive)
8310 (unless gnus-newsgroup-display
8311 (error "There is no `display' group parameter"))
8312 (let (articles)
3a3cbf0a 8313 (dolist (gnus-number gnus-newsgroup-articles)
23f87bed 8314 (when (funcall gnus-newsgroup-display)
3a3cbf0a 8315 (push gnus-number articles)))
23f87bed
MB
8316 (gnus-summary-limit articles))
8317 (gnus-summary-position-point))
8318
eec82323
LMI
8319(defun gnus-summary-limit-to-unread (&optional all)
8320 "Limit the summary buffer to articles that are not marked as read.
8321If ALL is non-nil, limit strictly to unread articles."
8322 (interactive "P")
8323 (if all
8324 (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
8325 (gnus-summary-limit-to-marks
8326 ;; Concat all the marks that say that an article is read and have
8327 ;; those removed.
8328 (list gnus-del-mark gnus-read-mark gnus-ancient-mark
23f87bed 8329 gnus-killed-mark gnus-spam-mark gnus-kill-file-mark
eec82323
LMI
8330 gnus-low-score-mark gnus-expirable-mark
8331 gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
c4d82de8 8332 gnus-duplicate-mark)
eec82323
LMI
8333 'reverse)))
8334
01c52d31
MB
8335(defun gnus-summary-limit-to-headers (match &optional reverse)
8336 "Limit the summary buffer to articles that have headers that match MATCH.
8337If REVERSE (the prefix), limit to articles that don't match."
8338 (interactive "sMatch headers (regexp): \nP")
8339 (gnus-summary-limit-to-bodies match reverse t))
8340
8341(defun gnus-summary-limit-to-bodies (match &optional reverse headersp)
8342 "Limit the summary buffer to articles that have bodies that match MATCH.
8343If REVERSE (the prefix), limit to articles that don't match."
8344 (interactive "sMatch body (regexp): \nP")
8345 (let ((articles nil)
8346 (gnus-select-article-hook nil) ;Disable hook.
8347 (gnus-article-prepare-hook nil)
8348 (gnus-use-article-prefetch nil)
8349 (gnus-keep-backlog nil)
8350 (gnus-break-pages nil)
8351 (gnus-summary-display-arrow nil)
8352 (gnus-updated-mode-lines nil)
8353 (gnus-auto-center-summary nil)
8354 (gnus-display-mime-function nil))
8355 (dolist (data gnus-newsgroup-data)
8356 (let (gnus-mark-article-hook)
8357 (gnus-summary-select-article t t nil (gnus-data-number data)))
398a825b 8358 (with-current-buffer gnus-article-buffer
01c52d31
MB
8359 (article-goto-body)
8360 (let* ((case-fold-search t)
8361 (found (if headersp
8362 (re-search-backward match nil t)
8363 (re-search-forward match nil t))))
8364 (when (or (and found
8365 (not reverse))
8366 (and (not found)
8367 reverse))
8368 (push (gnus-data-number data) articles)))))
8369 (if (not articles)
8370 (message "No messages matched")
8371 (gnus-summary-limit articles)))
8372 (gnus-summary-position-point))
8373
8374(defun gnus-summary-limit-to-singletons (&optional threadsp)
8375 "Limit the summary buffer to articles that aren't part on any thread.
8376If THREADSP (the prefix), limit to articles that are in threads."
8377 (interactive "P")
8378 (let ((articles nil)
8379 thread-articles
8380 threads)
8381 (dolist (thread gnus-newsgroup-threads)
8382 (if (stringp (car thread))
8383 (dolist (thread (cdr thread))
8384 (push thread threads))
8385 (push thread threads)))
8386 (dolist (thread threads)
8387 (setq thread-articles (gnus-articles-in-thread thread))
8388 (when (or (and threadsp
8389 (> (length thread-articles) 1))
8390 (and (not threadsp)
8391 (= (length thread-articles) 1)))
8392 (setq articles (nconc thread-articles articles))))
8393 (if (not articles)
8394 (message "No messages matched")
8395 (gnus-summary-limit articles))
8396 (gnus-summary-position-point)))
8397
8398(defun gnus-summary-limit-to-replied (&optional unreplied)
8399 "Limit the summary buffer to replied articles.
8400If UNREPLIED (the prefix), limit to unreplied articles."
8401 (interactive "P")
8402 (if unreplied
8403 (gnus-summary-limit
8404 (gnus-set-difference gnus-newsgroup-articles
8405 gnus-newsgroup-replied))
8406 (gnus-summary-limit gnus-newsgroup-replied))
8407 (gnus-summary-position-point))
8408
eec82323
LMI
8409(defun gnus-summary-limit-exclude-marks (marks &optional reverse)
8410 "Exclude articles that are marked with MARKS (e.g. \"DK\").
8411If REVERSE, limit the summary buffer to articles that are marked
8412with MARKS. MARKS can either be a string of marks or a list of marks.
8413Returns how many articles were removed."
8414 (interactive "sMarks: ")
8415 (gnus-summary-limit-to-marks marks t))
8416
8417(defun gnus-summary-limit-to-marks (marks &optional reverse)
8418 "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
8419If REVERSE (the prefix), limit the summary buffer to articles that are
8420not marked with MARKS. MARKS can either be a string of marks or a
8421list of marks.
8422Returns how many articles were removed."
6748645f 8423 (interactive "sMarks: \nP")
eec82323
LMI
8424 (prog1
8425 (let ((data gnus-newsgroup-data)
8426 (marks (if (listp marks) marks
8427 (append marks nil))) ; Transform to list.
8428 articles)
8429 (while data
8430 (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
8431 (memq (gnus-data-mark (car data)) marks))
8432 (push (gnus-data-number (car data)) articles))
8433 (setq data (cdr data)))
8434 (gnus-summary-limit articles))
8435 (gnus-summary-position-point)))
8436
23f87bed 8437(defun gnus-summary-limit-to-score (score)
eec82323 8438 "Limit to articles with score at or above SCORE."
23f87bed 8439 (interactive "NLimit to articles with score of at least: ")
eec82323
LMI
8440 (let ((data gnus-newsgroup-data)
8441 articles)
8442 (while data
8443 (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
8444 score)
8445 (push (gnus-data-number (car data)) articles))
8446 (setq data (cdr data)))
8447 (prog1
8448 (gnus-summary-limit articles)
8449 (gnus-summary-position-point))))
8450
23f87bed
MB
8451(defun gnus-summary-limit-to-unseen ()
8452 "Limit to unseen articles."
8453 (interactive)
8454 (prog1
8455 (gnus-summary-limit gnus-newsgroup-unseen)
8456 (gnus-summary-position-point)))
8457
6748645f 8458(defun gnus-summary-limit-include-thread (id)
23f87bed
MB
8459 "Display all the hidden articles that is in the thread with ID in it.
8460When called interactively, ID is the Message-ID of the current
8461article."
6748645f
LMI
8462 (interactive (list (mail-header-id (gnus-summary-article-header))))
8463 (let ((articles (gnus-articles-in-thread
181cb5fb
G
8464 (gnus-id-to-thread (gnus-root-id id))))
8465 ;;we REALLY want the whole thread---this prevents cut-threads
8466 ;;from removing the thread we want to include.
8467 (gnus-fetch-old-headers nil)
8468 (gnus-build-sparse-threads nil))
6748645f
LMI
8469 (prog1
8470 (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
23f87bed
MB
8471 (gnus-summary-limit-include-matching-articles
8472 "subject"
8473 (regexp-quote (gnus-simplify-subject-re
8474 (mail-header-subject (gnus-id-to-header id)))))
6748645f
LMI
8475 (gnus-summary-position-point))))
8476
23f87bed
MB
8477(defun gnus-summary-limit-include-matching-articles (header regexp)
8478 "Display all the hidden articles that have HEADERs that match REGEXP."
8479 (interactive (list (read-string "Match on header: ")
8480 (read-string "Regexp: ")))
8481 (let ((articles (gnus-find-matching-articles header regexp)))
8482 (prog1
8483 (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
8484 (gnus-summary-position-point))))
8485
8486(defun gnus-summary-insert-dormant-articles ()
8487 "Insert all the dormant articles for this group into the current buffer."
8488 (interactive)
8489 (let ((gnus-verbose (max 6 gnus-verbose)))
8490 (if (not gnus-newsgroup-dormant)
db629244 8491 (gnus-message 3 "No dormant articles for this group")
23f87bed
MB
8492 (gnus-summary-goto-subjects gnus-newsgroup-dormant))))
8493
01c52d31
MB
8494(defun gnus-summary-insert-ticked-articles ()
8495 "Insert ticked articles for this group into the current buffer."
8496 (interactive)
8497 (let ((gnus-verbose (max 6 gnus-verbose)))
8498 (if (not gnus-newsgroup-marked)
8499 (gnus-message 3 "No ticked articles for this group")
8500 (gnus-summary-goto-subjects gnus-newsgroup-marked))))
8501
eec82323 8502(defun gnus-summary-limit-include-dormant ()
6748645f
LMI
8503 "Display all the hidden articles that are marked as dormant.
8504Note that this command only works on a subset of the articles currently
8505fetched for this group."
eec82323 8506 (interactive)
eec82323
LMI
8507 (unless gnus-newsgroup-dormant
8508 (error "There are no dormant articles in this group"))
8509 (prog1
8510 (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
8511 (gnus-summary-position-point)))
8512
144b7b5c
G
8513(defun gnus-summary-include-articles (articles)
8514 "Fetch the headers for ARTICLES and then display the summary lines."
8515 (let ((gnus-inhibit-demon t)
8516 (gnus-agent nil)
8517 (gnus-read-all-available-headers t))
8518 (setq gnus-newsgroup-headers
8519 (gnus-merge
8520 'list gnus-newsgroup-headers
8521 (gnus-fetch-headers articles nil t)
8522 'gnus-article-sort-by-number))
8523 (gnus-summary-limit (append articles gnus-newsgroup-limit))))
8524
eec82323
LMI
8525(defun gnus-summary-limit-exclude-dormant ()
8526 "Hide all dormant articles."
8527 (interactive)
eec82323
LMI
8528 (prog1
8529 (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
8530 (gnus-summary-position-point)))
8531
8532(defun gnus-summary-limit-exclude-childless-dormant ()
8533 "Hide all dormant articles that have no children."
8534 (interactive)
eec82323
LMI
8535 (let ((data (gnus-data-list t))
8536 articles d children)
8537 ;; Find all articles that are either not dormant or have
8538 ;; children.
8539 (while (setq d (pop data))
8540 (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
8541 (and (setq children
8542 (gnus-article-children (gnus-data-number d)))
8543 (let (found)
8544 (while children
8545 (when (memq (car children) articles)
8546 (setq children nil
8547 found t))
8548 (pop children))
8549 found)))
8550 (push (gnus-data-number d) articles)))
8551 ;; Do the limiting.
8552 (prog1
8553 (gnus-summary-limit articles)
8554 (gnus-summary-position-point))))
8555
8556(defun gnus-summary-limit-mark-excluded-as-read (&optional all)
8557 "Mark all unread excluded articles as read.
8558If ALL, mark even excluded ticked and dormants as read."
8559 (interactive "P")
23f87bed
MB
8560 (setq gnus-newsgroup-limit (sort gnus-newsgroup-limit '<))
8561 (let ((articles (gnus-sorted-ndifference
eec82323
LMI
8562 (sort
8563 (mapcar (lambda (h) (mail-header-number h))
8564 gnus-newsgroup-headers)
8565 '<)
23f87bed 8566 gnus-newsgroup-limit))
eec82323 8567 article)
6748645f 8568 (setq gnus-newsgroup-unreads
23f87bed
MB
8569 (gnus-sorted-intersection gnus-newsgroup-unreads
8570 gnus-newsgroup-limit))
eec82323
LMI
8571 (if all
8572 (setq gnus-newsgroup-dormant nil
8573 gnus-newsgroup-marked nil
8574 gnus-newsgroup-reads
8575 (nconc
8576 (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
8577 gnus-newsgroup-reads))
8578 (while (setq article (pop articles))
8579 (unless (or (memq article gnus-newsgroup-dormant)
8580 (memq article gnus-newsgroup-marked))
8581 (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
8582
8583(defun gnus-summary-limit (articles &optional pop)
8584 (if pop
8585 ;; We pop the previous limit off the stack and use that.
8586 (setq articles (car gnus-newsgroup-limits)
8587 gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
8588 ;; We use the new limit, so we push the old limit on the stack.
8589 (push gnus-newsgroup-limit gnus-newsgroup-limits))
8590 ;; Set the limit.
8591 (setq gnus-newsgroup-limit articles)
8592 (let ((total (length gnus-newsgroup-data))
8593 (data (gnus-data-find-list (gnus-summary-article-number)))
8594 (gnus-summary-mark-below nil) ; Inhibit this.
8595 found)
8596 ;; This will do all the work of generating the new summary buffer
8597 ;; according to the new limit.
8598 (gnus-summary-prepare)
8599 ;; Hide any threads, possibly.
23f87bed 8600 (gnus-summary-maybe-hide-threads)
eec82323
LMI
8601 ;; Try to return to the article you were at, or one in the
8602 ;; neighborhood.
8603 (when data
8604 ;; We try to find some article after the current one.
8605 (while data
8606 (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
8607 (setq data nil
8608 found t))
8609 (setq data (cdr data))))
8610 (unless found
8611 ;; If there is no data, that means that we were after the last
8612 ;; article. The same goes when we can't find any articles
8613 ;; after the current one.
8614 (goto-char (point-max))
8615 (gnus-summary-find-prev))
6748645f 8616 (gnus-set-mode-line 'summary)
eec82323
LMI
8617 ;; We return how many articles were removed from the summary
8618 ;; buffer as a result of the new limit.
8619 (- total (length gnus-newsgroup-data))))
8620
8621(defsubst gnus-invisible-cut-children (threads)
8622 (let ((num 0))
8623 (while threads
8624 (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
8625 (incf num))
8626 (pop threads))
8627 (< num 2)))
8628
8629(defsubst gnus-cut-thread (thread)
8630 "Go forwards in the thread until we find an article that we want to display."
8631 (when (or (eq gnus-fetch-old-headers 'some)
6748645f 8632 (eq gnus-fetch-old-headers 'invisible)
16409b0b 8633 (numberp gnus-fetch-old-headers)
eec82323
LMI
8634 (eq gnus-build-sparse-threads 'some)
8635 (eq gnus-build-sparse-threads 'more))
8636 ;; Deal with old-fetched headers and sparse threads.
8637 (while (and
8638 thread
8639 (or
8640 (gnus-summary-article-sparse-p (mail-header-number (car thread)))
8641 (gnus-summary-article-ancient-p
8642 (mail-header-number (car thread))))
6748645f
LMI
8643 (if (or (<= (length (cdr thread)) 1)
8644 (eq gnus-fetch-old-headers 'invisible))
8645 (setq gnus-newsgroup-limit
8646 (delq (mail-header-number (car thread))
8647 gnus-newsgroup-limit)
8648 thread (cadr thread))
8649 (when (gnus-invisible-cut-children (cdr thread))
8650 (let ((th (cdr thread)))
8651 (while th
8652 (if (memq (mail-header-number (caar th))
a8151ef7 8653 gnus-newsgroup-limit)
6748645f
LMI
8654 (setq thread (car th)
8655 th nil)
8656 (setq th (cdr th))))))))))
eec82323
LMI
8657 thread)
8658
8659(defun gnus-cut-threads (threads)
23f87bed 8660 "Cut off all uninteresting articles from the beginning of THREADS."
eec82323 8661 (when (or (eq gnus-fetch-old-headers 'some)
6748645f 8662 (eq gnus-fetch-old-headers 'invisible)
16409b0b 8663 (numberp gnus-fetch-old-headers)
eec82323
LMI
8664 (eq gnus-build-sparse-threads 'some)
8665 (eq gnus-build-sparse-threads 'more))
8666 (let ((th threads))
8667 (while th
8668 (setcar th (gnus-cut-thread (car th)))
8669 (setq th (cdr th)))))
8670 ;; Remove nixed out threads.
8671 (delq nil threads))
8672
8673(defun gnus-summary-initial-limit (&optional show-if-empty)
8674 "Figure out what the initial limit is supposed to be on group entry.
8675This entails weeding out unwanted dormants, low-scored articles,
8676fetch-old-headers verbiage, and so on."
8677 ;; Most groups have nothing to remove.
f394fa25
MB
8678 (unless (or gnus-inhibit-limiting
8679 (and (null gnus-newsgroup-dormant)
8680 (eq gnus-newsgroup-display 'gnus-not-ignore)
8681 (not (eq gnus-fetch-old-headers 'some))
8682 (not (numberp gnus-fetch-old-headers))
8683 (not (eq gnus-fetch-old-headers 'invisible))
8684 (null gnus-summary-expunge-below)
8685 (not (eq gnus-build-sparse-threads 'some))
8686 (not (eq gnus-build-sparse-threads 'more))
8ccbef23 8687 (null gnus-thread-expunge-below)))
eec82323
LMI
8688 (push gnus-newsgroup-limit gnus-newsgroup-limits)
8689 (setq gnus-newsgroup-limit nil)
8690 (mapatoms
8691 (lambda (node)
8692 (unless (car (symbol-value node))
8693 ;; These threads have no parents -- they are roots.
8694 (let ((nodes (cdr (symbol-value node)))
8695 thread)
8696 (while nodes
8697 (if (and gnus-thread-expunge-below
8698 (< (gnus-thread-total-score (car nodes))
8699 gnus-thread-expunge-below))
8700 (gnus-expunge-thread (pop nodes))
8701 (setq thread (pop nodes))
8702 (gnus-summary-limit-children thread))))))
8703 gnus-newsgroup-dependencies)
8704 ;; If this limitation resulted in an empty group, we might
8705 ;; pop the previous limit and use it instead.
8706 (when (and (not gnus-newsgroup-limit)
8707 show-if-empty)
8708 (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
8709 gnus-newsgroup-limit))
8710
8711(defun gnus-summary-limit-children (thread)
8712 "Return 1 if this subthread is visible and 0 if it is not."
8713 ;; First we get the number of visible children to this thread. This
8714 ;; is done by recursing down the thread using this function, so this
8715 ;; will really go down to a leaf article first, before slowly
8716 ;; working its way up towards the root.
8717 (when thread
04b61ae9 8718 (let* ((max-lisp-eval-depth (max 5000 max-lisp-eval-depth))
23f87bed 8719 (children
eec82323
LMI
8720 (if (cdr thread)
8721 (apply '+ (mapcar 'gnus-summary-limit-children
8722 (cdr thread)))
8723 0))
3d319c8f
LMI
8724 (number (mail-header-number (car thread)))
8725 score)
eec82323
LMI
8726 (if (and
8727 (not (memq number gnus-newsgroup-marked))
8728 (or
8729 ;; If this article is dormant and has absolutely no visible
8730 ;; children, then this article isn't visible.
8731 (and (memq number gnus-newsgroup-dormant)
8732 (zerop children))
8733 ;; If this is "fetch-old-headered" and there is no
8734 ;; visible children, then we don't want this article.
16409b0b
GM
8735 (and (or (eq gnus-fetch-old-headers 'some)
8736 (numberp gnus-fetch-old-headers))
eec82323
LMI
8737 (gnus-summary-article-ancient-p number)
8738 (zerop children))
6748645f
LMI
8739 ;; If this is "fetch-old-headered" and `invisible', then
8740 ;; we don't want this article.
8741 (and (eq gnus-fetch-old-headers 'invisible)
8742 (gnus-summary-article-ancient-p number))
eec82323
LMI
8743 ;; If this is a sparsely inserted article with no children,
8744 ;; we don't want it.
8745 (and (eq gnus-build-sparse-threads 'some)
8746 (gnus-summary-article-sparse-p number)
8747 (zerop children))
8748 ;; If we use expunging, and this article is really
8749 ;; low-scored, then we don't want this article.
8750 (when (and gnus-summary-expunge-below
8751 (< (setq score
8752 (or (cdr (assq number gnus-newsgroup-scored))
8753 gnus-summary-default-score))
8754 gnus-summary-expunge-below))
8755 ;; We increase the expunge-tally here, but that has
8756 ;; nothing to do with the limits, really.
8757 (incf gnus-newsgroup-expunged-tally)
8758 ;; We also mark as read here, if that's wanted.
8759 (when (and gnus-summary-mark-below
8760 (< score gnus-summary-mark-below))
8761 (setq gnus-newsgroup-unreads
8762 (delq number gnus-newsgroup-unreads))
8763 (if gnus-newsgroup-auto-expire
8764 (push number gnus-newsgroup-expirable)
8765 (push (cons number gnus-low-score-mark)
8766 gnus-newsgroup-reads)))
8767 t)
23f87bed
MB
8768 ;; Do the `display' group parameter.
8769 (and gnus-newsgroup-display
3d319c8f
LMI
8770 (let ((gnus-number number))
8771 (not (funcall gnus-newsgroup-display))))))
eec82323
LMI
8772 ;; Nope, invisible article.
8773 0
8774 ;; Ok, this article is to be visible, so we add it to the limit
8775 ;; and return 1.
8776 (push number gnus-newsgroup-limit)
8777 1))))
8778
8779(defun gnus-expunge-thread (thread)
8780 "Mark all articles in THREAD as read."
8781 (let* ((number (mail-header-number (car thread))))
8782 (incf gnus-newsgroup-expunged-tally)
8783 ;; We also mark as read here, if that's wanted.
8784 (setq gnus-newsgroup-unreads
8785 (delq number gnus-newsgroup-unreads))
8786 (if gnus-newsgroup-auto-expire
8787 (push number gnus-newsgroup-expirable)
8788 (push (cons number gnus-low-score-mark)
8789 gnus-newsgroup-reads)))
8790 ;; Go recursively through all subthreads.
8791 (mapcar 'gnus-expunge-thread (cdr thread)))
8792
8793;; Summary article oriented commands
8794
8795(defun gnus-summary-refer-parent-article (n)
8796 "Refer parent article N times.
8797If N is negative, go to ancestor -N instead.
8798The difference between N and the number of articles fetched is returned."
8799 (interactive "p")
eec82323
LMI
8800 (let ((skip 1)
8801 error header ref)
8802 (when (not (natnump n))
8803 (setq skip (abs n)
8804 n 1))
8805 (while (and (> n 0)
8806 (not error))
8807 (setq header (gnus-summary-article-header))
8808 (if (and (eq (mail-header-number header)
8809 (cdr gnus-article-current))
8810 (equal gnus-newsgroup-name
8811 (car gnus-article-current)))
8812 ;; If we try to find the parent of the currently
8813 ;; displayed article, then we take a look at the actual
8814 ;; References header, since this is slightly more
8815 ;; reliable than the References field we got from the
8816 ;; server.
c7a91ce1 8817 (with-current-buffer gnus-original-article-buffer
eec82323
LMI
8818 (nnheader-narrow-to-headers)
8819 (unless (setq ref (message-fetch-field "references"))
23f87bed
MB
8820 (when (setq ref (message-fetch-field "in-reply-to"))
8821 (setq ref (gnus-extract-message-id-from-in-reply-to ref))))
eec82323
LMI
8822 (widen))
8823 (setq ref
8824 ;; It's not the current article, so we take a bet on
8825 ;; the value we got from the server.
8826 (mail-header-references header)))
8827 (if (and ref
8828 (not (equal ref "")))
8829 (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
8830 (gnus-message 1 "Couldn't find parent"))
8831 (gnus-message 1 "No references in article %d"
8832 (gnus-summary-article-number))
8833 (setq error t))
8834 (decf n))
8835 (gnus-summary-position-point)
8836 n))
8837
8838(defun gnus-summary-refer-references ()
8839 "Fetch all articles mentioned in the References header.
6748645f 8840Return the number of articles fetched."
eec82323 8841 (interactive)
eec82323
LMI
8842 (let ((ref (mail-header-references (gnus-summary-article-header)))
8843 (current (gnus-summary-article-number))
8844 (n 0))
8845 (if (or (not ref)
8846 (equal ref ""))
8847 (error "No References in the current article")
8848 ;; For each Message-ID in the References header...
8849 (while (string-match "<[^>]*>" ref)
8850 (incf n)
8851 ;; ... fetch that article.
8852 (gnus-summary-refer-article
8853 (prog1 (match-string 0 ref)
8854 (setq ref (substring ref (match-end 0))))))
8855 (gnus-summary-goto-subject current)
8856 (gnus-summary-position-point)
8857 n)))
8858
6748645f
LMI
8859(defun gnus-summary-refer-thread (&optional limit)
8860 "Fetch all articles in the current thread.
030158f3
G
8861If no backend-specific 'request-thread function is available
8862fetch LIMIT (the numerical prefix) old headers. If LIMIT is nil
8863fetch what's specified by the `gnus-refer-thread-limit'
8864variable."
6748645f 8865 (interactive "P")
4ddab346 8866 (gnus-warp-to-article)
70041e9a
G
8867 (let* ((header (gnus-summary-article-header))
8868 (id (mail-header-id header))
8869 (gnus-inhibit-demon t)
8870 (gnus-summary-ignore-duplicates t)
8871 (gnus-read-all-available-headers t)
8872 (limit (if limit (prefix-numeric-value limit)
8873 gnus-refer-thread-limit)))
4ddab346
G
8874 (setq gnus-newsgroup-headers
8875 (gnus-merge
8876 'list gnus-newsgroup-headers
8877 (if (gnus-check-backend-function
8878 'request-thread gnus-newsgroup-name)
70041e9a 8879 (gnus-request-thread header)
4ddab346 8880 (let* ((last (if (numberp limit)
70041e9a 8881 (min (+ (mail-header-number header)
4ddab346
G
8882 limit)
8883 gnus-newsgroup-highest)
8884 gnus-newsgroup-highest))
8885 (subject (gnus-simplify-subject
70041e9a
G
8886 (mail-header-subject header)))
8887 (refs (split-string (or (mail-header-references header)
4ddab346
G
8888 "")))
8889 (gnus-parse-headers-hook
8890 (lambda () (goto-char (point-min))
8891 (keep-lines
8892 (regexp-opt (append refs (list id subject)))))))
8893 (gnus-fetch-headers (list last) (if (numberp limit)
8894 (* 2 limit) limit) t)))
8895 'gnus-article-sort-by-number))
6748645f
LMI
8896 (gnus-summary-limit-include-thread id)))
8897
16409b0b
GM
8898(defun gnus-summary-refer-article (message-id)
8899 "Fetch an article specified by MESSAGE-ID."
8900 (interactive "sMessage-ID: ")
eec82323
LMI
8901 (when (and (stringp message-id)
8902 (not (zerop (length message-id))))
23f87bed 8903 (setq message-id (gnus-replace-in-string message-id " " ""))
eec82323
LMI
8904 ;; Construct the correct Message-ID if necessary.
8905 ;; Suggested by tale@pawl.rpi.edu.
8906 (unless (string-match "^<" message-id)
8907 (setq message-id (concat "<" message-id)))
8908 (unless (string-match ">$" message-id)
8909 (setq message-id (concat message-id ">")))
23f87bed
MB
8910 ;; People often post MIDs from URLs, so unhex it:
8911 (unless (string-match "@" message-id)
8912 (setq message-id (gnus-url-unhex-string message-id)))
eec82323
LMI
8913 (let* ((header (gnus-id-to-header message-id))
8914 (sparse (and header
8915 (gnus-summary-article-sparse-p
a8151ef7
LMI
8916 (mail-header-number header))
8917 (memq (mail-header-number header)
16409b0b
GM
8918 gnus-newsgroup-limit)))
8919 number)
6748645f
LMI
8920 (cond
8921 ;; If the article is present in the buffer we just go to it.
8922 ((and header
8923 (or (not (gnus-summary-article-sparse-p
8924 (mail-header-number header)))
8925 sparse))
8926 (prog1
8927 (gnus-summary-goto-article
8928 (mail-header-number header) nil t)
8929 (when sparse
8930 (gnus-summary-update-article (mail-header-number header)))))
8931 (t
16409b0b
GM
8932 ;; We fetch the article.
8933 (catch 'found
8934 (dolist (gnus-override-method (gnus-refer-article-methods))
23f87bed
MB
8935 (when (and (gnus-check-server gnus-override-method)
8936 ;; Fetch the header,
8937 (setq number (gnus-summary-insert-subject message-id)))
8938 ;; and display the article.
eec82323 8939 (gnus-summary-select-article nil nil nil number)
16409b0b
GM
8940 (throw 'found t)))
8941 (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
8942
8943(defun gnus-refer-article-methods ()
8f688cb0 8944 "Return a list of referable methods."
16409b0b
GM
8945 (cond
8946 ;; No method, so we default to current and native.
8947 ((null gnus-refer-article-method)
8948 (list gnus-current-select-method gnus-select-method))
8949 ;; Current.
8950 ((eq 'current gnus-refer-article-method)
8951 (list gnus-current-select-method))
8952 ;; List of select methods.
d4dfaa19
DL
8953 ((not (and (symbolp (car gnus-refer-article-method))
8954 (assq (car gnus-refer-article-method) nnoo-definition-alist)))
16409b0b
GM
8955 (let (out)
8956 (dolist (method gnus-refer-article-method)
8957 (push (if (eq 'current method)
8958 gnus-current-select-method
8959 method)
8960 out))
8961 (nreverse out)))
8962 ;; One single select method.
8963 (t
8964 (list gnus-refer-article-method))))
6748645f
LMI
8965
8966(defun gnus-summary-edit-parameters ()
8967 "Edit the group parameters of the current group."
8968 (interactive)
8969 (gnus-group-edit-group gnus-newsgroup-name 'params))
eec82323 8970
16409b0b
GM
8971(defun gnus-summary-customize-parameters ()
8972 "Customize the group parameters of the current group."
8973 (interactive)
8974 (gnus-group-customize gnus-newsgroup-name))
8975
eec82323
LMI
8976(defun gnus-summary-enter-digest-group (&optional force)
8977 "Enter an nndoc group based on the current article.
07176b2a
LMI
8978If FORCE, force a digest interpretation. If not, try to guess
8979what the document format is.
8980
8981To control what happens when you exit the group, see the
8982`gnus-auto-select-on-ephemeral-exit' variable."
eec82323 8983 (interactive "P")
eec82323 8984 (let ((conf gnus-current-window-configuration))
23f87bed
MB
8985 (save-window-excursion
8986 (save-excursion
8987 (let (gnus-article-prepare-hook
8988 gnus-display-mime-function
8989 gnus-break-pages)
8990 (gnus-summary-select-article))))
eec82323
LMI
8991 (setq gnus-current-window-configuration conf)
8992 (let* ((name (format "%s-%d"
8993 (gnus-group-prefixed-name
8994 gnus-newsgroup-name (list 'nndoc ""))
01c52d31 8995 (with-current-buffer gnus-summary-buffer
eec82323
LMI
8996 gnus-current-article)))
8997 (ogroup gnus-newsgroup-name)
8998 (params (append (gnus-info-params (gnus-get-info ogroup))
8999 (list (cons 'to-group ogroup))
23f87bed 9000 (list (cons 'parent-group ogroup))
eec82323
LMI
9001 (list (cons 'save-article-group ogroup))))
9002 (case-fold-search t)
9003 (buf (current-buffer))
16409b0b 9004 dig to-address)
c7a91ce1 9005 (with-current-buffer gnus-original-article-buffer
16409b0b
GM
9006 ;; Have the digest group inherit the main mail address of
9007 ;; the parent article.
23f87bed
MB
9008 (when (setq to-address (or (gnus-fetch-field "reply-to")
9009 (gnus-fetch-field "from")))
343d6628
MB
9010 (setq params
9011 (append
9012 (list (cons 'to-address
9013 (funcall gnus-decode-encoded-address-function
9014 to-address))))))
eec82323
LMI
9015 (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
9016 (insert-buffer-substring gnus-original-article-buffer)
9017 ;; Remove lines that may lead nndoc to misinterpret the
9018 ;; document type.
9019 (narrow-to-region
9020 (goto-char (point-min))
9021 (or (search-forward "\n\n" nil t) (point)))
9022 (goto-char (point-min))
16409b0b 9023 (delete-matching-lines "^Path:\\|^From ")
eec82323
LMI
9024 (widen))
9025 (unwind-protect
23f87bed 9026 (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
16409b0b
GM
9027 (gnus-newsgroup-ephemeral-ignored-charsets
9028 gnus-newsgroup-ignored-charsets))
9029 (gnus-group-read-ephemeral-group
9030 name `(nndoc ,name (nndoc-address ,(get-buffer dig))
9031 (nndoc-article-type
23f87bed
MB
9032 ,(if force 'mbox 'guess)))
9033 t nil nil nil
9034 `((adapt-file . ,(gnus-score-file-name gnus-newsgroup-name
9035 "ADAPT")))))
16409b0b 9036 ;; Make all postings to this group go to the parent group.
23f87bed
MB
9037 (nconc (gnus-info-params (gnus-get-info name))
9038 params)
9039 ;; Couldn't select this doc group.
9040 (switch-to-buffer buf)
9041 (gnus-set-global-variables)
9042 (gnus-configure-windows 'summary)
9043 (gnus-message 3 "Article couldn't be entered?"))
eec82323
LMI
9044 (kill-buffer dig)))))
9045
9046(defun gnus-summary-read-document (n)
9047 "Open a new group based on the current article(s).
9048This will allow you to read digests and other similar
9049documents as newsgroups.
9050Obeys the standard process/prefix convention."
9051 (interactive "P")
01c52d31 9052 (let* ((ogroup gnus-newsgroup-name)
eec82323
LMI
9053 (params (append (gnus-info-params (gnus-get-info ogroup))
9054 (list (cons 'to-group ogroup))))
01c52d31
MB
9055 group egroup groups vgroup)
9056 (dolist (article (gnus-summary-work-articles n))
eec82323
LMI
9057 (setq group (format "%s-%d" gnus-newsgroup-name article))
9058 (gnus-summary-remove-process-mark article)
9059 (when (gnus-summary-display-article article)
398a825b 9060 (save-excursion ;;What for?
16409b0b 9061 (with-temp-buffer
eec82323
LMI
9062 (insert-buffer-substring gnus-original-article-buffer)
9063 ;; Remove some headers that may lead nndoc to make
9064 ;; the wrong guess.
9065 (message-narrow-to-head)
9066 (goto-char (point-min))
01c52d31 9067 (delete-matching-lines "^Path:\\|^From ")
eec82323
LMI
9068 (widen)
9069 (if (setq egroup
9070 (gnus-group-read-ephemeral-group
9071 group `(nndoc ,group (nndoc-address ,(current-buffer))
9072 (nndoc-article-type guess))
9073 t nil t))
9074 (progn
c7a91ce1 9075 ;; Make all postings to this group go to the parent group.
eec82323
LMI
9076 (nconc (gnus-info-params (gnus-get-info egroup))
9077 params)
9078 (push egroup groups))
9079 ;; Couldn't select this doc group.
9080 (gnus-error 3 "Article couldn't be entered"))))))
9081 ;; Now we have selected all the documents.
9082 (cond
9083 ((not groups)
9084 (error "None of the articles could be interpreted as documents"))
9085 ((gnus-group-read-ephemeral-group
9086 (setq vgroup (format
9087 "nnvirtual:%s-%s" gnus-newsgroup-name
9088 (format-time-string "%Y%m%dT%H%M%S" (current-time))))
9089 `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
9090 t
9091 (cons (current-buffer) 'summary)))
9092 (t
9093 (error "Couldn't select virtual nndoc group")))))
9094
d50717f0
JD
9095(defun gnus-summary-widget-forward (arg)
9096 "Move point to the next field or button in the article.
9097With optional ARG, move across that many fields."
9098 (interactive "p")
9099 (gnus-summary-select-article)
9100 (gnus-configure-windows 'article)
9101 (select-window (gnus-get-buffer-window gnus-article-buffer))
9102 (widget-forward arg))
9103
eec82323
LMI
9104(defun gnus-summary-isearch-article (&optional regexp-p)
9105 "Do incremental search forward on the current article.
9106If REGEXP-P (the prefix) is non-nil, do regexp isearch."
9107 (interactive "P")
eec82323
LMI
9108 (gnus-summary-select-article)
9109 (gnus-configure-windows 'article)
9110 (gnus-eval-in-buffer-window gnus-article-buffer
6748645f
LMI
9111 (save-restriction
9112 (widen)
9113 (isearch-forward regexp-p))))
eec82323 9114
01c52d31
MB
9115(defun gnus-summary-repeat-search-article-forward ()
9116 "Repeat the previous search forwards."
9117 (interactive)
9118 (unless gnus-last-search-regexp
9119 (error "No previous search"))
9120 (gnus-summary-search-article-forward gnus-last-search-regexp))
9121
9122(defun gnus-summary-repeat-search-article-backward ()
9123 "Repeat the previous search backwards."
9124 (interactive)
9125 (unless gnus-last-search-regexp
9126 (error "No previous search"))
9127 (gnus-summary-search-article-forward gnus-last-search-regexp t))
9128
eec82323
LMI
9129(defun gnus-summary-search-article-forward (regexp &optional backward)
9130 "Search for an article containing REGEXP forward.
9131If BACKWARD, search backward instead."
9132 (interactive
9133 (list (read-string
9134 (format "Search article %s (regexp%s): "
9135 (if current-prefix-arg "backward" "forward")
9136 (if gnus-last-search-regexp
9137 (concat ", default " gnus-last-search-regexp)
9138 "")))
9139 current-prefix-arg))
eec82323
LMI
9140 (if (string-equal regexp "")
9141 (setq regexp (or gnus-last-search-regexp ""))
23f87bed
MB
9142 (setq gnus-last-search-regexp regexp)
9143 (setq gnus-article-before-search gnus-current-article))
9144 ;; Intentionally set gnus-last-article.
9145 (setq gnus-last-article gnus-article-before-search)
9146 (let ((gnus-last-article gnus-last-article))
9147 (if (gnus-summary-search-article regexp backward)
9148 (gnus-summary-show-thread)
abc40aab 9149 (signal 'search-failed (list regexp)))))
eec82323
LMI
9150
9151(defun gnus-summary-search-article-backward (regexp)
9152 "Search for an article containing REGEXP backward."
9153 (interactive
9154 (list (read-string
9155 (format "Search article backward (regexp%s): "
9156 (if gnus-last-search-regexp
9157 (concat ", default " gnus-last-search-regexp)
9158 "")))))
9159 (gnus-summary-search-article-forward regexp 'backward))
9160
9161(defun gnus-summary-search-article (regexp &optional backward)
9162 "Search for an article containing REGEXP.
9163Optional argument BACKWARD means do search for backward.
9164`gnus-select-article-hook' is not called during the search."
a8151ef7
LMI
9165 ;; We have to require this here to make sure that the following
9166 ;; dynamic binding isn't shadowed by autoloading.
9167 (require 'gnus-async)
16409b0b 9168 (require 'gnus-art)
eec82323 9169 (let ((gnus-select-article-hook nil) ;Disable hook.
16409b0b 9170 (gnus-article-prepare-hook nil)
eec82323
LMI
9171 (gnus-mark-article-hook nil) ;Inhibit marking as read.
9172 (gnus-use-article-prefetch nil)
9173 (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
a8151ef7 9174 (gnus-use-trees nil) ;Inhibit updating tree buffer.
23f87bed
MB
9175 (gnus-visual nil)
9176 (gnus-keep-backlog nil)
9177 (gnus-break-pages nil)
9178 (gnus-summary-display-arrow nil)
9179 (gnus-updated-mode-lines nil)
9180 (gnus-auto-center-summary nil)
eec82323 9181 (sum (current-buffer))
16409b0b 9182 (gnus-display-mime-function nil)
eec82323
LMI
9183 (found nil)
9184 point)
9185 (gnus-save-hidden-threads
9186 (gnus-summary-select-article)
9187 (set-buffer gnus-article-buffer)
16409b0b 9188 (goto-char (window-point (get-buffer-window (current-buffer))))
eec82323
LMI
9189 (when backward
9190 (forward-line -1))
9191 (while (not found)
9192 (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
9193 (if (if backward
9194 (re-search-backward regexp nil t)
9195 (re-search-forward regexp nil t))
9196 ;; We found the regexp.
9197 (progn
9198 (setq found 'found)
9199 (beginning-of-line)
9200 (set-window-start
9201 (get-buffer-window (current-buffer))
9202 (point))
9203 (forward-line 1)
16409b0b
GM
9204 (set-window-point
9205 (get-buffer-window (current-buffer))
9206 (point))
eec82323
LMI
9207 (set-buffer sum)
9208 (setq point (point)))
9209 ;; We didn't find it, so we go to the next article.
9210 (set-buffer sum)
9211 (setq found 'not)
9212 (while (eq found 'not)
9213 (if (not (if backward (gnus-summary-find-prev)
9214 (gnus-summary-find-next)))
9215 ;; No more articles.
9216 (setq found t)
9217 ;; Select the next article and adjust point.
9218 (unless (gnus-summary-article-sparse-p
9219 (gnus-summary-article-number))
9220 (setq found nil)
9221 (gnus-summary-select-article)
9222 (set-buffer gnus-article-buffer)
9223 (widen)
9224 (goto-char (if backward (point-max) (point-min))))))))
9225 (gnus-message 7 ""))
9226 ;; Return whether we found the regexp.
9227 (when (eq found 'found)
9228 (goto-char point)
9229 (gnus-summary-show-thread)
9230 (gnus-summary-goto-subject gnus-current-article)
9231 (gnus-summary-position-point)
9232 t)))
9233
23f87bed
MB
9234(defun gnus-find-matching-articles (header regexp)
9235 "Return a list of all articles that match REGEXP on HEADER.
9236This search includes all articles in the current group that Gnus has
9237fetched headers for, whether they are displayed or not."
9238 (let ((articles nil)
c7a91ce1 9239 ;; Can't eta-reduce because it's a macro.
23f87bed
MB
9240 (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
9241 (case-fold-search t))
9242 (dolist (header gnus-newsgroup-headers)
9243 (when (string-match regexp (funcall func header))
9244 (push (mail-header-number header) articles)))
9245 (nreverse articles)))
9246
eec82323 9247(defun gnus-summary-find-matching (header regexp &optional backward unread
47b63dfa 9248 not-case-fold not-matching)
eec82323
LMI
9249 "Return a list of all articles that match REGEXP on HEADER.
9250The search stars on the current article and goes forwards unless
9251BACKWARD is non-nil. If BACKWARD is `all', do all articles.
9252If UNREAD is non-nil, only unread articles will
9253be taken into consideration. If NOT-CASE-FOLD, case won't be folded
a1506d29 9254in the comparisons. If NOT-MATCHING, return a list of all articles that
47b63dfa
SZ
9255not match REGEXP on HEADER."
9256 (let ((case-fold-search (not not-case-fold))
16409b0b
GM
9257 articles d func)
9258 (if (consp header)
9259 (if (eq (car header) 'extra)
9260 (setq func
9261 `(lambda (h)
9262 (or (cdr (assq ',(cdr header) (mail-header-extra h)))
9263 "")))
9264 (error "%s is an invalid header" header))
9265 (unless (fboundp (intern (concat "mail-header-" header)))
9266 (error "%s is not a valid header" header))
9267 (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
47b63dfa
SZ
9268 (dolist (d (if (eq backward 'all)
9269 gnus-newsgroup-data
9270 (gnus-data-find-list
9271 (gnus-summary-article-number)
9272 (gnus-data-list backward))))
9273 (when (and (or (not unread) ; We want all articles...
9274 (gnus-data-unread-p d)) ; Or just unreads.
9275 (vectorp (gnus-data-header d)) ; It's not a pseudo.
9276 (if not-matching
a1506d29 9277 (not (string-match
47b63dfa
SZ
9278 regexp
9279 (funcall func (gnus-data-header d))))
9280 (string-match regexp
9281 (funcall func (gnus-data-header d)))))
9282 (push (gnus-data-number d) articles))) ; Success!
eec82323
LMI
9283 (nreverse articles)))
9284
9285(defun gnus-summary-execute-command (header regexp command &optional backward)
9286 "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
9287If HEADER is an empty string (or nil), the match is done on the entire
9288article. If BACKWARD (the prefix) is non-nil, search backward instead."
9289 (interactive
9290 (list (let ((completion-ignore-case t))
229b59da
G
9291 (gnus-completing-read
9292 "Header name"
9293 (mapcar 'symbol-name
23f87bed 9294 (append
229b59da
G
9295 '(Number Subject From Lines Date
9296 Message-ID Xref References Body)
23f87bed 9297 gnus-extra-headers))
229b59da 9298 'require-match))
eec82323
LMI
9299 (read-string "Regexp: ")
9300 (read-key-sequence "Command: ")
9301 current-prefix-arg))
9302 (when (equal header "Body")
9303 (setq header ""))
eec82323
LMI
9304 ;; Hidden thread subtrees must be searched as well.
9305 (gnus-summary-show-all-threads)
9306 ;; We don't want to change current point nor window configuration.
9307 (save-excursion
9308 (save-window-excursion
23f87bed
MB
9309 (let (gnus-visual
9310 gnus-treat-strip-trailing-blank-lines
9311 gnus-treat-strip-leading-blank-lines
9312 gnus-treat-strip-multiple-blank-lines
9313 gnus-treat-hide-boring-headers
9314 gnus-treat-fold-newsgroups
9315 gnus-article-prepare-hook)
9316 (gnus-message 6 "Executing %s..." (key-description command))
9317 ;; We'd like to execute COMMAND interactively so as to give arguments.
9318 (gnus-execute header regexp
9319 `(call-interactively ',(key-binding command))
9320 backward)
9321 (gnus-message 6 "Executing %s...done" (key-description command))))))
eec82323
LMI
9322
9323(defun gnus-summary-beginning-of-article ()
9324 "Scroll the article back to the beginning."
9325 (interactive)
eec82323
LMI
9326 (gnus-summary-select-article)
9327 (gnus-configure-windows 'article)
9328 (gnus-eval-in-buffer-window gnus-article-buffer
9329 (widen)
9330 (goto-char (point-min))
23f87bed 9331 (when gnus-break-pages
eec82323
LMI
9332 (gnus-narrow-to-page))))
9333
9334(defun gnus-summary-end-of-article ()
9335 "Scroll to the end of the article."
9336 (interactive)
eec82323
LMI
9337 (gnus-summary-select-article)
9338 (gnus-configure-windows 'article)
9339 (gnus-eval-in-buffer-window gnus-article-buffer
9340 (widen)
9341 (goto-char (point-max))
9342 (recenter -3)
23f87bed 9343 (when gnus-break-pages
eec82323
LMI
9344 (gnus-narrow-to-page))))
9345
23f87bed
MB
9346(defun gnus-summary-print-truncate-and-quote (string &optional len)
9347 "Truncate to LEN and quote all \"(\"'s in STRING."
9348 (gnus-replace-in-string (if (and len (> (length string) len))
9349 (substring string 0 len)
9350 string)
9351 "[()]" "\\\\\\&"))
9352
6748645f 9353(defun gnus-summary-print-article (&optional filename n)
23f87bed
MB
9354 "Generate and print a PostScript image of the process-marked (mail) articles.
9355
9356If used interactively, print the current article if none are
9357process-marked. With prefix arg, prompt the user for the name of the
9358file to save in.
6748645f 9359
23f87bed
MB
9360When used from Lisp, accept two optional args FILENAME and N. N means
9361to print the next N articles. If N is negative, print the N previous
9362articles. If N is nil and articles have been marked with the process
9363mark, print these instead.
eec82323 9364
16409b0b 9365If the optional first argument FILENAME is nil, send the image to the
6748645f
LMI
9366printer. If FILENAME is a string, save the PostScript image in a file with
9367that name. If FILENAME is a number, prompt the user for the name of the file
eec82323 9368to save in."
676a7cc9 9369 (interactive (list (ps-print-preprint current-prefix-arg)))
6748645f
LMI
9370 (dolist (article (gnus-summary-work-articles n))
9371 (gnus-summary-select-article nil nil 'pseudo article)
9372 (gnus-eval-in-buffer-window gnus-article-buffer
23f87bed 9373 (gnus-print-buffer))
676a7cc9
SZ
9374 (gnus-summary-remove-process-mark article))
9375 (ps-despool filename))
eec82323 9376
23f87bed 9377(defun gnus-print-buffer ()
285cf7c8
LMI
9378 (let ((ps-left-header
9379 (list
9380 (concat "("
9381 (gnus-summary-print-truncate-and-quote
9382 (mail-header-subject gnus-current-headers)
9383 66) ")")
9384 (concat "("
9385 (gnus-summary-print-truncate-and-quote
9386 (mail-header-from gnus-current-headers)
9387 45) ")")))
9388 (ps-right-header
9389 (list
9390 "/pagenumberstring load"
9391 (concat "("
9392 (mail-header-date gnus-current-headers) ")"))))
9393 (gnus-run-hooks 'gnus-ps-print-hook)
9394 (save-excursion
9395 (if ps-print-color-p
9396 (ps-spool-buffer-with-faces)
9397 (ps-spool-buffer)))))
23f87bed 9398
8ccbef23
G
9399(defun gnus-summary-show-complete-article ()
9400 "Show a complete version of the current article.
9401This is only useful if you're looking at a partial version of the
9402article currently."
9403 (interactive)
9404 (let ((gnus-keep-backlog nil)
9405 (gnus-use-cache nil)
9406 (gnus-agent nil)
9f2d52e7
G
9407 (variable (intern
9408 (format "%s-fetch-partial-articles"
9409 (car (gnus-find-method-for-group
9410 gnus-newsgroup-name)))
9411 obarray))
9412 old-val)
9413 (unwind-protect
9414 (progn
9415 (setq old-val (symbol-value variable))
9416 (set variable nil)
9417 (gnus-flush-original-article-buffer)
9418 (gnus-summary-show-article))
9419 (set variable old-val))))
8ccbef23 9420
eec82323 9421(defun gnus-summary-show-article (&optional arg)
23f87bed 9422 "Force redisplaying of the current article.
16409b0b
GM
9423If ARG (the prefix) is a number, show the article with the charset
9424defined in `gnus-summary-show-article-charset-alist', or the charset
23f87bed 9425input.
389b76fa
G
9426If ARG (the prefix) is non-nil and not a number, show the article,
9427but without running any of the article treatment functions
9428article. Normally, the keystroke is `C-u g'. When using `C-u
9429C-u g', show the raw article."
eec82323 9430 (interactive "P")
16409b0b
GM
9431 (cond
9432 ((numberp arg)
23f87bed 9433 (gnus-summary-show-article t)
16409b0b
GM
9434 (let ((gnus-newsgroup-charset
9435 (or (cdr (assq arg gnus-summary-show-article-charset-alist))
23f87bed
MB
9436 (mm-read-coding-system
9437 "View as charset: " ;; actually it is coding system.
01c52d31 9438 (with-current-buffer gnus-article-buffer
23f87bed 9439 (mm-detect-coding-region (point) (point-max))))))
16409b0b 9440 (gnus-newsgroup-ignored-charsets 'gnus-all))
23f87bed
MB
9441 (gnus-summary-select-article nil 'force)
9442 (let ((deps gnus-newsgroup-dependencies)
9443 head header lines)
c7a91ce1 9444 (with-current-buffer gnus-original-article-buffer
23f87bed
MB
9445 (save-restriction
9446 (message-narrow-to-head)
9447 (setq head (buffer-string))
9448 (goto-char (point-min))
9449 (unless (re-search-forward "^lines:[ \t]\\([0-9]+\\)" nil t)
9450 (goto-char (point-max))
9451 (widen)
9452 (setq lines (1- (count-lines (point) (point-max))))))
9453 (with-temp-buffer
9454 (insert (format "211 %d Article retrieved.\n"
9455 (cdr gnus-article-current)))
9456 (insert head)
9457 (if lines (insert (format "Lines: %d\n" lines)))
9458 (insert ".\n")
9459 (let ((nntp-server-buffer (current-buffer)))
9460 (setq header (car (gnus-get-newsgroup-headers deps t))))))
9461 (gnus-data-set-header
9462 (gnus-data-find (cdr gnus-article-current))
9463 header)
9464 (gnus-summary-update-article-line
9465 (cdr gnus-article-current) header)
9466 (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
9467 (gnus-summary-update-secondary-mark (cdr gnus-article-current))))))
16409b0b
GM
9468 ((not arg)
9469 ;; Select the article the normal way.
9470 (gnus-summary-select-article nil 'force))
181cb5fb
G
9471 ((or (equal arg '(16))
9472 (eq arg t))
389b76fa 9473 ;; C-u C-u g
04db63bc
G
9474 (let ((gnus-inhibit-article-treatments t))
9475 (gnus-summary-select-article nil 'force)))
9476 (t
16409b0b
GM
9477 ;; We have to require this here to make sure that the following
9478 ;; dynamic binding isn't shadowed by autoloading.
9479 (require 'gnus-async)
9480 (require 'gnus-art)
eec82323
LMI
9481 ;; Bind the article treatment functions to nil.
9482 (let ((gnus-have-all-headers t)
eec82323 9483 gnus-article-prepare-hook
16409b0b
GM
9484 gnus-article-decode-hook
9485 gnus-display-mime-function
9486 gnus-break-pages)
9487 ;; Destroy any MIME parts.
9488 (when (gnus-buffer-live-p gnus-article-buffer)
c7a91ce1 9489 (with-current-buffer gnus-article-buffer
16409b0b
GM
9490 (mm-destroy-parts gnus-article-mime-handles)
9491 ;; Set it to nil for safety reason.
9492 (setq gnus-article-mime-handle-alist nil)
9493 (setq gnus-article-mime-handles nil)))
9494 (gnus-summary-select-article nil 'force))))
eec82323
LMI
9495 (gnus-summary-goto-subject gnus-current-article)
9496 (gnus-summary-position-point))
9497
23f87bed
MB
9498(defun gnus-summary-show-raw-article ()
9499 "Show the raw article without any article massaging functions being run."
9500 (interactive)
9501 (gnus-summary-show-article t))
9502
eec82323
LMI
9503(defun gnus-summary-verbose-headers (&optional arg)
9504 "Toggle permanent full header display.
9505If ARG is a positive number, turn header display on.
9506If ARG is a negative number, turn header display off."
9507 (interactive "P")
eec82323
LMI
9508 (setq gnus-show-all-headers
9509 (cond ((or (not (numberp arg))
9510 (zerop arg))
9511 (not gnus-show-all-headers))
9512 ((natnump arg)
9513 t)))
9514 (gnus-summary-show-article))
9515
9516(defun gnus-summary-toggle-header (&optional arg)
9517 "Show the headers if they are hidden, or hide them if they are shown.
9518If ARG is a positive number, show the entire header.
9519If ARG is a negative number, hide the unwanted header lines."
9520 (interactive "P")
23f87bed
MB
9521 (let ((window (and (gnus-buffer-live-p gnus-article-buffer)
9522 (get-buffer-window gnus-article-buffer t))))
9523 (with-current-buffer gnus-article-buffer
9524 (widen)
9525 (article-narrow-to-head)
c7a91ce1 9526 (let* ((inhibit-read-only t)
16409b0b 9527 (inhibit-point-motion-hooks t)
23f87bed
MB
9528 (hidden (if (numberp arg)
9529 (>= arg 0)
f0096211
MB
9530 (or (not (looking-at "[^ \t\n]+:"))
9531 (gnus-article-hidden-text-p 'headers))))
23f87bed
MB
9532 s e)
9533 (delete-region (point-min) (point-max))
667e0ba6
SM
9534 (with-current-buffer gnus-original-article-buffer
9535 (goto-char (setq s (point-min)))
23f87bed
MB
9536 (setq e (if (search-forward "\n\n" nil t)
9537 (1- (point))
9538 (point-max))))
667e0ba6 9539 (insert-buffer-substring gnus-original-article-buffer s e)
23f87bed
MB
9540 (run-hooks 'gnus-article-decode-hook)
9541 (if hidden
9542 (let ((gnus-treat-hide-headers nil)
9543 (gnus-treat-hide-boring-headers nil))
9544 (gnus-delete-wash-type 'headers)
9545 (gnus-treat-article 'head))
9546 (gnus-treat-article 'head))
9547 (widen)
9548 (if window
9549 (set-window-start window (goto-char (point-min))))
9550 (if gnus-break-pages
9551 (gnus-narrow-to-page)
9552 (when (gnus-visual-p 'page-marker)
c7a91ce1 9553 (let ((inhibit-read-only t))
23f87bed
MB
9554 (gnus-remove-text-with-property 'gnus-prev)
9555 (gnus-remove-text-with-property 'gnus-next))))
16409b0b 9556 (gnus-set-mode-line 'article)))))
eec82323
LMI
9557
9558(defun gnus-summary-show-all-headers ()
9559 "Make all header lines visible."
9560 (interactive)
23f87bed 9561 (gnus-summary-toggle-header 1))
eec82323 9562
eec82323
LMI
9563(defun gnus-summary-caesar-message (&optional arg)
9564 "Caesar rotate the current article by 13.
01c52d31
MB
9565With a non-numerical prefix, also rotate headers. A numerical
9566prefix specifies how many places to rotate each letter forward."
eec82323 9567 (interactive "P")
eec82323
LMI
9568 (gnus-summary-select-article)
9569 (let ((mail-header-separator ""))
9570 (gnus-eval-in-buffer-window gnus-article-buffer
9571 (save-restriction
9572 (widen)
9573 (let ((start (window-start))
c7a91ce1 9574 (inhibit-read-only t))
01c52d31
MB
9575 (if (equal arg '(4))
9576 (message-caesar-buffer-body nil t)
9577 (message-caesar-buffer-body arg))
ff4d3926
MB
9578 (set-window-start (get-buffer-window (current-buffer)) start)))))
9579 ;; Create buttons and stuff...
9580 (gnus-treat-article nil))
eec82323 9581
704f1663
GM
9582(declare-function idna-to-unicode "ext:idna" (str))
9583
01c52d31
MB
9584(defun gnus-summary-idna-message (&optional arg)
9585 "Decode IDNA encoded domain names in the current articles.
9586IDNA encoded domain names looks like `xn--bar'. If a string
9587remain unencoded after running this function, it is likely an
9588invalid IDNA string (`xn--bar' is invalid).
9589
0b10e437 9590You must have GNU Libidn (URL `http://www.gnu.org/software/libidn/')
01c52d31
MB
9591installed for this command to work."
9592 (interactive "P")
9593 (if (not (and (condition-case nil (require 'idna)
9594 (file-error))
9595 (mm-coding-system-p 'utf-8)
9596 (executable-find (symbol-value 'idna-program))))
9597 (gnus-message
9598 5 "GNU Libidn not installed properly (`idn' or `idna.el' missing)")
9599 (gnus-summary-select-article)
9600 (let ((mail-header-separator ""))
9601 (gnus-eval-in-buffer-window gnus-article-buffer
9602 (save-restriction
9603 (widen)
9604 (let ((start (window-start))
9605 buffer-read-only)
9606 (while (re-search-forward "\\(xn--[-0-9a-z]+\\)" nil t)
9607 (replace-match (idna-to-unicode (match-string 1))))
9608 (set-window-start (get-buffer-window (current-buffer)) start)))))))
23f87bed
MB
9609
9610(defun gnus-summary-morse-message (&optional arg)
9611 "Morse decode the current article."
9612 (interactive "P")
9613 (gnus-summary-select-article)
9614 (let ((mail-header-separator ""))
9615 (gnus-eval-in-buffer-window gnus-article-buffer
9616 (save-excursion
9617 (save-restriction
9618 (widen)
9619 (let ((pos (window-start))
c7a91ce1 9620 (inhibit-read-only t))
23f87bed
MB
9621 (goto-char (point-min))
9622 (when (message-goto-body)
9623 (gnus-narrow-to-body))
9624 (goto-char (point-min))
01c52d31 9625