Change release version from 21.4 to 22.1 throughout.
[emacs.git] / lisp / gnus / gnus-sum.el
blob1af9e0ca1a73c746e82c9f69bce713e931fb03cd
1 ;;; gnus-sum.el --- summary mode commands for Gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;; Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Commentary:
27 ;;; Code:
29 (eval-when-compile
30 (require 'cl)
31 (defvar tool-bar-map))
33 (require 'gnus)
34 (require 'gnus-group)
35 (require 'gnus-spec)
36 (require 'gnus-range)
37 (require 'gnus-int)
38 (require 'gnus-undo)
39 (require 'gnus-util)
40 (require 'mm-decode)
41 (require 'nnoo)
43 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t)
44 (autoload 'gnus-cache-write-active "gnus-cache")
45 (autoload 'gnus-mailing-list-insinuate "gnus-ml" nil t)
46 (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" nil t)
47 (autoload 'gnus-pick-line-number "gnus-salt" nil t)
48 (autoload 'mm-uu-dissect "mm-uu")
49 (autoload 'gnus-article-outlook-deuglify-article "deuglify"
50 "Deuglify broken Outlook (Express) articles and redisplay."
52 (autoload 'gnus-article-outlook-unwrap-lines "deuglify" nil t)
53 (autoload 'gnus-article-outlook-repair-attribution "deuglify" nil t)
54 (autoload 'gnus-article-outlook-rearrange-citation "deuglify" nil t)
56 (defcustom gnus-kill-summary-on-exit t
57 "*If non-nil, kill the summary buffer when you exit from it.
58 If nil, the summary will become a \"*Dead Summary*\" buffer, and
59 it will be killed sometime later."
60 :group 'gnus-summary-exit
61 :type 'boolean)
63 (defcustom gnus-fetch-old-headers nil
64 "*Non-nil means that Gnus will try to build threads by grabbing old headers.
65 If an unread article in the group refers to an older, already read (or
66 just marked as read) article, the old article will not normally be
67 displayed in the Summary buffer. If this variable is t, Gnus
68 will attempt to grab the headers to the old articles, and thereby
69 build complete threads. If it has the value `some', only enough
70 headers to connect otherwise loose threads will be displayed. This
71 variable can also be a number. In that case, no more than that number
72 of old headers will be fetched. If it has the value `invisible', all
73 old headers will be fetched, but none will be displayed.
75 The server has to support NOV for any of this to work."
76 :group 'gnus-thread
77 :type '(choice (const :tag "off" nil)
78 (const :tag "on" t)
79 (const some)
80 (const invisible)
81 number
82 (sexp :menu-tag "other" t)))
84 (defcustom gnus-refer-thread-limit 200
85 "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread].
86 If t, fetch all the available old headers."
87 :group 'gnus-thread
88 :type '(choice number
89 (sexp :menu-tag "other" t)))
91 (defcustom gnus-summary-make-false-root 'adopt
92 "*nil means that Gnus won't gather loose threads.
93 If the root of a thread has expired or been read in a previous
94 session, the information necessary to build a complete thread has been
95 lost. Instead of having many small sub-threads from this original thread
96 scattered all over the summary buffer, Gnus can gather them.
98 If non-nil, Gnus will try to gather all loose sub-threads from an
99 original thread into one large thread.
101 If this variable is non-nil, it should be one of `none', `adopt',
102 `dummy' or `empty'.
104 If this variable is `none', Gnus will not make a false root, but just
105 present the sub-threads after another.
106 If this variable is `dummy', Gnus will create a dummy root that will
107 have all the sub-threads as children.
108 If this variable is `adopt', Gnus will make one of the \"children\"
109 the parent and mark all the step-children as such.
110 If this variable is `empty', the \"children\" are printed with empty
111 subject fields. (Or rather, they will be printed with a string
112 given by the `gnus-summary-same-subject' variable.)"
113 :group 'gnus-thread
114 :type '(choice (const :tag "off" nil)
115 (const none)
116 (const dummy)
117 (const adopt)
118 (const empty)))
120 (defcustom gnus-summary-make-false-root-always nil
121 "Always make a false dummy root."
122 :version "22.1"
123 :group 'gnus-thread
124 :type 'boolean)
126 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$"
127 "*A regexp to match subjects to be excluded from loose thread gathering.
128 As loose thread gathering is done on subjects only, that means that
129 there can be many false gatherings performed. By rooting out certain
130 common subjects, gathering might become saner."
131 :group 'gnus-thread
132 :type 'regexp)
134 (defcustom gnus-summary-gather-subject-limit nil
135 "*Maximum length of subject comparisons when gathering loose threads.
136 Use nil to compare full subjects. Setting this variable to a low
137 number will help gather threads that have been corrupted by
138 newsreaders chopping off subject lines, but it might also mean that
139 unrelated articles that have subject that happen to begin with the
140 same few characters will be incorrectly gathered.
142 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when
143 comparing subjects."
144 :group 'gnus-thread
145 :type '(choice (const :tag "off" nil)
146 (const fuzzy)
147 (sexp :menu-tag "on" t)))
149 (defcustom gnus-simplify-subject-functions nil
150 "List of functions taking a string argument that simplify subjects.
151 The functions are applied recursively.
153 Useful functions to put in this list include:
154 `gnus-simplify-subject-re', `gnus-simplify-subject-fuzzy',
155 `gnus-simplify-whitespace', and `gnus-simplify-all-whitespace'."
156 :group 'gnus-thread
157 :type '(repeat function))
159 (defcustom gnus-simplify-ignored-prefixes nil
160 "*Remove matches for this regexp from subject lines when simplifying fuzzily."
161 :group 'gnus-thread
162 :type '(choice (const :tag "off" nil)
163 regexp))
165 (defcustom gnus-build-sparse-threads nil
166 "*If non-nil, fill in the gaps in threads.
167 If `some', only fill in the gaps that are needed to tie loose threads
168 together. If `more', fill in all leaf nodes that Gnus can find. If
169 non-nil and non-`some', fill in all gaps that Gnus manages to guess."
170 :group 'gnus-thread
171 :type '(choice (const :tag "off" nil)
172 (const some)
173 (const more)
174 (sexp :menu-tag "all" t)))
176 (defcustom gnus-summary-thread-gathering-function
177 'gnus-gather-threads-by-subject
178 "*Function used for gathering loose threads.
179 There are two pre-defined functions: `gnus-gather-threads-by-subject',
180 which only takes Subjects into consideration; and
181 `gnus-gather-threads-by-references', which compared the References
182 headers of the articles to find matches."
183 :group 'gnus-thread
184 :type '(radio (function-item gnus-gather-threads-by-subject)
185 (function-item gnus-gather-threads-by-references)
186 (function :tag "other")))
188 (defcustom gnus-summary-same-subject ""
189 "*String indicating that the current article has the same subject as the previous.
190 This variable will only be used if the value of
191 `gnus-summary-make-false-root' is `empty'."
192 :group 'gnus-summary-format
193 :type 'string)
195 (defcustom gnus-summary-goto-unread t
196 "*If t, many commands will go to the next unread article.
197 This applies to marking commands as well as other commands that
198 \"naturally\" select the next article, like, for instance, `SPC' at
199 the end of an article.
201 If nil, the marking commands do NOT go to the next unread article
202 \(they go to the next article instead). If `never', commands that
203 usually go to the next unread article, will go to the next article,
204 whether it is read or not."
205 :group 'gnus-summary-marks
206 :link '(custom-manual "(gnus)Setting Marks")
207 :type '(choice (const :tag "off" nil)
208 (const never)
209 (sexp :menu-tag "on" t)))
211 (defcustom gnus-summary-default-score 0
212 "*Default article score level.
213 All scores generated by the score files will be added to this score.
214 If this variable is nil, scoring will be disabled."
215 :group 'gnus-score-default
216 :type '(choice (const :tag "disable")
217 integer))
219 (defcustom gnus-summary-default-high-score 0
220 "*Default threshold for a high scored article.
221 An article will be highlighted as high scored if its score is greater
222 than this score."
223 :version "22.1"
224 :group 'gnus-score-default
225 :type 'integer)
227 (defcustom gnus-summary-default-low-score 0
228 "*Default threshold for a low scored article.
229 An article will be highlighted as low scored if its score is smaller
230 than this score."
231 :version "22.1"
232 :group 'gnus-score-default
233 :type 'integer)
235 (defcustom gnus-summary-zcore-fuzz 0
236 "*Fuzziness factor for the zcore in the summary buffer.
237 Articles with scores closer than this to `gnus-summary-default-score'
238 will not be marked."
239 :group 'gnus-summary-format
240 :type 'integer)
242 (defcustom gnus-simplify-subject-fuzzy-regexp nil
243 "*Strings to be removed when doing fuzzy matches.
244 This can either be a regular expression or list of regular expressions
245 that will be removed from subject strings if fuzzy subject
246 simplification is selected."
247 :group 'gnus-thread
248 :type '(repeat regexp))
250 (defcustom gnus-show-threads t
251 "*If non-nil, display threads in summary mode."
252 :group 'gnus-thread
253 :type 'boolean)
255 (defcustom gnus-thread-hide-subtree nil
256 "*If non-nil, hide all threads initially.
257 This can be a predicate specifier which says which threads to hide.
258 If threads are hidden, you have to run the command
259 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook'
260 to expose hidden threads."
261 :group 'gnus-thread
262 :type '(radio (sexp :format "Non-nil\n"
263 :match (lambda (widget value)
264 (not (or (consp value) (functionp value))))
265 :value t)
266 (const nil)
267 (sexp :tag "Predicate specifier")))
269 (defcustom gnus-thread-hide-killed t
270 "*If non-nil, hide killed threads automatically."
271 :group 'gnus-thread
272 :type 'boolean)
274 (defcustom gnus-thread-ignore-subject t
275 "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header.
276 If nil, articles that have different subjects from their parents will
277 start separate threads."
278 :group 'gnus-thread
279 :type 'boolean)
281 (defcustom gnus-thread-operation-ignore-subject t
282 "*If non-nil, subjects will be ignored when doing thread commands.
283 This affects commands like `gnus-summary-kill-thread' and
284 `gnus-summary-lower-thread'.
286 If this variable is nil, articles in the same thread with different
287 subjects will not be included in the operation in question. If this
288 variable is `fuzzy', only articles that have subjects that are fuzzily
289 equal will be included."
290 :group 'gnus-thread
291 :type '(choice (const :tag "off" nil)
292 (const fuzzy)
293 (sexp :tag "on" t)))
295 (defcustom gnus-thread-indent-level 4
296 "*Number that says how much each sub-thread should be indented."
297 :group 'gnus-thread
298 :type 'integer)
300 (defcustom gnus-auto-extend-newsgroup t
301 "*If non-nil, extend newsgroup forward and backward when requested."
302 :group 'gnus-summary-choose
303 :type 'boolean)
305 (defcustom gnus-auto-select-first t
306 "*If non-nil, select the article under point.
307 Which article this is is controlled by the `gnus-auto-select-subject'
308 variable.
310 If you want to prevent automatic selection of articles in some
311 newsgroups, set the variable to nil in `gnus-select-group-hook'."
312 :group 'gnus-group-select
313 :type '(choice (const :tag "none" nil)
314 (sexp :menu-tag "first" t)))
316 (defcustom gnus-auto-select-subject 'unread
317 "*Says what subject to place under point when entering a group.
319 This variable can either be the symbols `first' (place point on the
320 first subject), `unread' (place point on the subject line of the first
321 unread article), `best' (place point on the subject line of the
322 higest-scored article), `unseen' (place point on the subject line of
323 the first unseen article), 'unseen-or-unread' (place point on the subject
324 line of the first unseen article or, if all article have been seen, on the
325 subject line of the first unread article), or a function to be called to
326 place point on some subject line."
327 :version "22.1"
328 :group 'gnus-group-select
329 :type '(choice (const best)
330 (const unread)
331 (const first)
332 (const unseen)
333 (const unseen-or-unread)))
335 (defcustom gnus-auto-select-next t
336 "*If non-nil, offer to go to the next group from the end of the previous.
337 If the value is t and the next newsgroup is empty, Gnus will exit
338 summary mode and go back to group mode. If the value is neither nil
339 nor t, Gnus will select the following unread newsgroup. In
340 particular, if the value is the symbol `quietly', the next unread
341 newsgroup will be selected without any confirmation, and if it is
342 `almost-quietly', the next group will be selected without any
343 confirmation if you are located on the last article in the group.
344 Finally, if this variable is `slightly-quietly', the `\\<gnus-summary-mode-map>\\[gnus-summary-catchup-and-goto-next-group]' command
345 will go to the next group without confirmation."
346 :group 'gnus-summary-maneuvering
347 :type '(choice (const :tag "off" nil)
348 (const quietly)
349 (const almost-quietly)
350 (const slightly-quietly)
351 (sexp :menu-tag "on" t)))
353 (defcustom gnus-auto-select-same nil
354 "*If non-nil, select the next article with the same subject.
355 If there are no more articles with the same subject, go to
356 the first unread article."
357 :group 'gnus-summary-maneuvering
358 :type 'boolean)
360 (defcustom gnus-auto-goto-ignores 'unfetched
361 "*Says how to handle unfetched articles when maneuvering.
363 This variable can either be the symbols nil (maneuver to any
364 article), `undownloaded' (maneuvering while unplugged ignores articles
365 that have not been fetched), `always-undownloaded' (maneuvering always
366 ignores articles that have not been fetched), `unfetched' (maneuvering
367 ignores articles whose headers have not been fetched).
369 NOTE: The list of unfetched articles will always be nil when plugged
370 and, when unplugged, a subset of the undownloaded article list."
371 :version "22.1"
372 :group 'gnus-summary-maneuvering
373 :type '(choice (const :tag "None" nil)
374 (const :tag "Undownloaded when unplugged" undownloaded)
375 (const :tag "Undownloaded" always-undownloaded)
376 (const :tag "Unfetched" unfetched)))
378 (defcustom gnus-summary-check-current nil
379 "*If non-nil, consider the current article when moving.
380 The \"unread\" movement commands will stay on the same line if the
381 current article is unread."
382 :group 'gnus-summary-maneuvering
383 :type 'boolean)
385 (defcustom gnus-auto-center-summary t
386 "*If non-nil, always center the current summary buffer.
387 In particular, if `vertical' do only vertical recentering. If non-nil
388 and non-`vertical', do both horizontal and vertical recentering."
389 :group 'gnus-summary-maneuvering
390 :type '(choice (const :tag "none" nil)
391 (const vertical)
392 (integer :tag "height")
393 (sexp :menu-tag "both" t)))
395 (defvar gnus-auto-center-group t
396 "*If non-nil, always center the group buffer.")
398 (defcustom gnus-show-all-headers nil
399 "*If non-nil, don't hide any headers."
400 :group 'gnus-article-hiding
401 :group 'gnus-article-headers
402 :type 'boolean)
404 (defcustom gnus-summary-ignore-duplicates nil
405 "*If non-nil, ignore articles with identical Message-ID headers."
406 :group 'gnus-summary
407 :type 'boolean)
409 (defcustom gnus-single-article-buffer t
410 "*If non-nil, display all articles in the same buffer.
411 If nil, each group will get its own article buffer."
412 :group 'gnus-article-various
413 :type 'boolean)
415 (defcustom gnus-break-pages t
416 "*If non-nil, do page breaking on articles.
417 The page delimiter is specified by the `gnus-page-delimiter'
418 variable."
419 :group 'gnus-article-various
420 :type 'boolean)
422 (defcustom gnus-move-split-methods nil
423 "*Variable used to suggest where articles are to be moved to.
424 It uses the same syntax as the `gnus-split-methods' variable.
425 However, whereas `gnus-split-methods' specifies file names as targets,
426 this variable specifies group names."
427 :group 'gnus-summary-mail
428 :type '(repeat (choice (list :value (fun) function)
429 (cons :value ("" "") regexp (repeat string))
430 (sexp :value nil))))
432 ;; FIXME: Although the custom type is `character' for the following variables,
433 ;; using multibyte characters (Latin-1, UTF-8) doesn't work. -- rs
435 (defcustom gnus-unread-mark ? ;Whitespace
436 "*Mark used for unread articles."
437 :group 'gnus-summary-marks
438 :type 'character)
440 (defcustom gnus-ticked-mark ?!
441 "*Mark used for ticked articles."
442 :group 'gnus-summary-marks
443 :type 'character)
445 (defcustom gnus-dormant-mark ??
446 "*Mark used for dormant articles."
447 :group 'gnus-summary-marks
448 :type 'character)
450 (defcustom gnus-del-mark ?r
451 "*Mark used for del'd articles."
452 :group 'gnus-summary-marks
453 :type 'character)
455 (defcustom gnus-read-mark ?R
456 "*Mark used for read articles."
457 :group 'gnus-summary-marks
458 :type 'character)
460 (defcustom gnus-expirable-mark ?E
461 "*Mark used for expirable articles."
462 :group 'gnus-summary-marks
463 :type 'character)
465 (defcustom gnus-killed-mark ?K
466 "*Mark used for killed articles."
467 :group 'gnus-summary-marks
468 :type 'character)
470 (defcustom gnus-spam-mark ?$
471 "*Mark used for spam articles."
472 :version "22.1"
473 :group 'gnus-summary-marks
474 :type 'character)
476 (defcustom gnus-souped-mark ?F
477 "*Mark used for souped articles."
478 :group 'gnus-summary-marks
479 :type 'character)
481 (defcustom gnus-kill-file-mark ?X
482 "*Mark used for articles killed by kill files."
483 :group 'gnus-summary-marks
484 :type 'character)
486 (defcustom gnus-low-score-mark ?Y
487 "*Mark used for articles with a low score."
488 :group 'gnus-summary-marks
489 :type 'character)
491 (defcustom gnus-catchup-mark ?C
492 "*Mark used for articles that are caught up."
493 :group 'gnus-summary-marks
494 :type 'character)
496 (defcustom gnus-replied-mark ?A
497 "*Mark used for articles that have been replied to."
498 :group 'gnus-summary-marks
499 :type 'character)
501 (defcustom gnus-forwarded-mark ?F
502 "*Mark used for articles that have been forwarded."
503 :version "22.1"
504 :group 'gnus-summary-marks
505 :type 'character)
507 (defcustom gnus-recent-mark ?N
508 "*Mark used for articles that are recent."
509 :version "22.1"
510 :group 'gnus-summary-marks
511 :type 'character)
513 (defcustom gnus-cached-mark ?*
514 "*Mark used for articles that are in the cache."
515 :group 'gnus-summary-marks
516 :type 'character)
518 (defcustom gnus-saved-mark ?S
519 "*Mark used for articles that have been saved."
520 :group 'gnus-summary-marks
521 :type 'character)
523 (defcustom gnus-unseen-mark ?.
524 "*Mark used for articles that haven't been seen."
525 :version "22.1"
526 :group 'gnus-summary-marks
527 :type 'character)
529 (defcustom gnus-no-mark ? ;Whitespace
530 "*Mark used for articles that have no other secondary mark."
531 :version "22.1"
532 :group 'gnus-summary-marks
533 :type 'character)
535 (defcustom gnus-ancient-mark ?O
536 "*Mark used for ancient articles."
537 :group 'gnus-summary-marks
538 :type 'character)
540 (defcustom gnus-sparse-mark ?Q
541 "*Mark used for sparsely reffed articles."
542 :group 'gnus-summary-marks
543 :type 'character)
545 (defcustom gnus-canceled-mark ?G
546 "*Mark used for canceled articles."
547 :group 'gnus-summary-marks
548 :type 'character)
550 (defcustom gnus-duplicate-mark ?M
551 "*Mark used for duplicate articles."
552 :group 'gnus-summary-marks
553 :type 'character)
555 (defcustom gnus-undownloaded-mark ?-
556 "*Mark used for articles that weren't downloaded."
557 :version "22.1"
558 :group 'gnus-summary-marks
559 :type 'character)
561 (defcustom gnus-downloaded-mark ?+
562 "*Mark used for articles that were downloaded."
563 :group 'gnus-summary-marks
564 :type 'character)
566 (defcustom gnus-downloadable-mark ?%
567 "*Mark used for articles that are to be downloaded."
568 :group 'gnus-summary-marks
569 :type 'character)
571 (defcustom gnus-unsendable-mark ?=
572 "*Mark used for articles that won't be sent."
573 :group 'gnus-summary-marks
574 :type 'character)
576 (defcustom gnus-score-over-mark ?+
577 "*Score mark used for articles with high scores."
578 :group 'gnus-summary-marks
579 :type 'character)
581 (defcustom gnus-score-below-mark ?-
582 "*Score mark used for articles with low scores."
583 :group 'gnus-summary-marks
584 :type 'character)
586 (defcustom gnus-empty-thread-mark ? ;Whitespace
587 "*There is no thread under the article."
588 :group 'gnus-summary-marks
589 :type 'character)
591 (defcustom gnus-not-empty-thread-mark ?=
592 "*There is a thread under the article."
593 :group 'gnus-summary-marks
594 :type 'character)
596 (defcustom gnus-view-pseudo-asynchronously nil
597 "*If non-nil, Gnus will view pseudo-articles asynchronously."
598 :group 'gnus-extract-view
599 :type 'boolean)
601 (defcustom gnus-auto-expirable-marks
602 (list gnus-killed-mark gnus-del-mark gnus-catchup-mark
603 gnus-low-score-mark gnus-ancient-mark gnus-read-mark
604 gnus-souped-mark gnus-duplicate-mark)
605 "*The list of marks converted into expiration if a group is auto-expirable."
606 :version "21.1"
607 :group 'gnus-summary
608 :type '(repeat character))
610 (defcustom gnus-inhibit-user-auto-expire t
611 "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on."
612 :version "21.1"
613 :group 'gnus-summary
614 :type 'boolean)
616 (defcustom gnus-view-pseudos nil
617 "*If `automatic', pseudo-articles will be viewed automatically.
618 If `not-confirm', pseudos will be viewed automatically, and the user
619 will not be asked to confirm the command."
620 :group 'gnus-extract-view
621 :type '(choice (const :tag "off" nil)
622 (const automatic)
623 (const not-confirm)))
625 (defcustom gnus-view-pseudos-separately t
626 "*If non-nil, one pseudo-article will be created for each file to be viewed.
627 If nil, all files that use the same viewing command will be given as a
628 list of parameters to that command."
629 :group 'gnus-extract-view
630 :type 'boolean)
632 (defcustom gnus-insert-pseudo-articles t
633 "*If non-nil, insert pseudo-articles when decoding articles."
634 :group 'gnus-extract-view
635 :type 'boolean)
637 (defcustom gnus-summary-dummy-line-format
638 " %(: :%) %S\n"
639 "*The format specification for the dummy roots in the summary buffer.
640 It works along the same lines as a normal formatting string,
641 with some simple extensions.
643 %S The subject
645 General format specifiers can also be used.
646 See `(gnus)Formatting Variables'."
647 :link '(custom-manual "(gnus)Formatting Variables")
648 :group 'gnus-threading
649 :type 'string)
651 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z"
652 "*The format specification for the summary mode line.
653 It works along the same lines as a normal formatting string,
654 with some simple extensions:
656 %G Group name
657 %p Unprefixed group name
658 %A Current article number
659 %z Current article score
660 %V Gnus version
661 %U Number of unread articles in the group
662 %e Number of unselected articles in the group
663 %Z A string with unread/unselected article counts
664 %g Shortish group name
665 %S Subject of the current article
666 %u User-defined spec
667 %s Current score file name
668 %d Number of dormant articles
669 %r Number of articles that have been marked as read in this session
670 %E Number of articles expunged by the score files"
671 :group 'gnus-summary-format
672 :type 'string)
674 (defcustom gnus-list-identifiers nil
675 "Regexp that matches list identifiers to be removed from subject.
676 This can also be a list of regexps."
677 :version "21.1"
678 :group 'gnus-summary-format
679 :group 'gnus-article-hiding
680 :type '(choice (const :tag "none" nil)
681 (regexp :value ".*")
682 (repeat :value (".*") regexp)))
684 (defcustom gnus-summary-mark-below 0
685 "*Mark all articles with a score below this variable as read.
686 This variable is local to each summary buffer and usually set by the
687 score file."
688 :group 'gnus-score-default
689 :type 'integer)
691 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number)
692 "*List of functions used for sorting articles in the summary buffer.
694 Each function takes two articles and returns non-nil if the first
695 article should be sorted before the other. If you use more than one
696 function, the primary sort function should be the last. You should
697 probably always include `gnus-article-sort-by-number' in the list of
698 sorting functions -- preferably first. Also note that sorting by date
699 is often much slower than sorting by number, and the sorting order is
700 very similar. (Sorting by date means sorting by the time the message
701 was sent, sorting by number means sorting by arrival time.)
703 Ready-made functions include `gnus-article-sort-by-number',
704 `gnus-article-sort-by-author', `gnus-article-sort-by-subject',
705 `gnus-article-sort-by-date', `gnus-article-sort-by-random'
706 and `gnus-article-sort-by-score'.
708 When threading is turned on, the variable `gnus-thread-sort-functions'
709 controls how articles are sorted."
710 :group 'gnus-summary-sort
711 :type '(repeat (choice (function-item gnus-article-sort-by-number)
712 (function-item gnus-article-sort-by-author)
713 (function-item gnus-article-sort-by-subject)
714 (function-item gnus-article-sort-by-date)
715 (function-item gnus-article-sort-by-score)
716 (function-item gnus-article-sort-by-random)
717 (function :tag "other"))))
719 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number)
720 "*List of functions used for sorting threads in the summary buffer.
721 By default, threads are sorted by article number.
723 Each function takes two threads and returns non-nil if the first
724 thread should be sorted before the other. If you use more than one
725 function, the primary sort function should be the last. You should
726 probably always include `gnus-thread-sort-by-number' in the list of
727 sorting functions -- preferably first. Also note that sorting by date
728 is often much slower than sorting by number, and the sorting order is
729 very similar. (Sorting by date means sorting by the time the message
730 was sent, sorting by number means sorting by arrival time.)
732 Ready-made functions include `gnus-thread-sort-by-number',
733 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject',
734 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score',
735 `gnus-thread-sort-by-most-recent-number',
736 `gnus-thread-sort-by-most-recent-date',
737 `gnus-thread-sort-by-random', and
738 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function').
740 When threading is turned off, the variable
741 `gnus-article-sort-functions' controls how articles are sorted."
742 :group 'gnus-summary-sort
743 :type '(repeat (choice (function-item gnus-thread-sort-by-number)
744 (function-item gnus-thread-sort-by-author)
745 (function-item gnus-thread-sort-by-subject)
746 (function-item gnus-thread-sort-by-date)
747 (function-item gnus-thread-sort-by-score)
748 (function-item gnus-thread-sort-by-total-score)
749 (function-item gnus-thread-sort-by-random)
750 (function :tag "other"))))
752 (defcustom gnus-thread-score-function '+
753 "*Function used for calculating the total score of a thread.
755 The function is called with the scores of the article and each
756 subthread and should then return the score of the thread.
758 Some functions you can use are `+', `max', or `min'."
759 :group 'gnus-summary-sort
760 :type 'function)
762 (defcustom gnus-summary-expunge-below nil
763 "All articles that have a score less than this variable will be expunged.
764 This variable is local to the summary buffers."
765 :group 'gnus-score-default
766 :type '(choice (const :tag "off" nil)
767 integer))
769 (defcustom gnus-thread-expunge-below nil
770 "All threads that have a total score less than this variable will be expunged.
771 See `gnus-thread-score-function' for en explanation of what a
772 \"thread score\" is.
774 This variable is local to the summary buffers."
775 :group 'gnus-threading
776 :group 'gnus-score-default
777 :type '(choice (const :tag "off" nil)
778 integer))
780 (defcustom gnus-summary-mode-hook nil
781 "*A hook for Gnus summary mode.
782 This hook is run before any variables are set in the summary buffer."
783 :options '(turn-on-gnus-mailing-list-mode gnus-pick-mode)
784 :group 'gnus-summary-various
785 :type 'hook)
787 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
788 (when (featurep 'xemacs)
789 (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
790 (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
791 (add-hook 'gnus-summary-mode-hook
792 'gnus-xmas-switch-horizontal-scrollbar-off))
794 (defcustom gnus-summary-menu-hook nil
795 "*Hook run after the creation of the summary mode menu."
796 :group 'gnus-summary-visual
797 :type 'hook)
799 (defcustom gnus-summary-exit-hook nil
800 "*A hook called on exit from the summary buffer.
801 It will be called with point in the group buffer."
802 :group 'gnus-summary-exit
803 :type 'hook)
805 (defcustom gnus-summary-prepare-hook nil
806 "*A hook called after the summary buffer has been generated.
807 If you want to modify the summary buffer, you can use this hook."
808 :group 'gnus-summary-various
809 :type 'hook)
811 (defcustom gnus-summary-prepared-hook nil
812 "*A hook called as the last thing after the summary buffer has been generated."
813 :group 'gnus-summary-various
814 :type 'hook)
816 (defcustom gnus-summary-generate-hook nil
817 "*A hook run just before generating the summary buffer.
818 This hook is commonly used to customize threading variables and the
819 like."
820 :group 'gnus-summary-various
821 :type 'hook)
823 (defcustom gnus-select-group-hook nil
824 "*A hook called when a newsgroup is selected.
826 If you'd like to simplify subjects like the
827 `gnus-summary-next-same-subject' command does, you can use the
828 following hook:
830 (add-hook gnus-select-group-hook
831 (lambda ()
832 (mapcar (lambda (header)
833 (mail-header-set-subject
834 header
835 (gnus-simplify-subject
836 (mail-header-subject header) 're-only)))
837 gnus-newsgroup-headers)))"
838 :group 'gnus-group-select
839 :type 'hook)
841 (defcustom gnus-select-article-hook nil
842 "*A hook called when an article is selected."
843 :group 'gnus-summary-choose
844 :options '(gnus-agent-fetch-selected-article)
845 :type 'hook)
847 (defcustom gnus-visual-mark-article-hook
848 (list 'gnus-highlight-selected-summary)
849 "*Hook run after selecting an article in the summary buffer.
850 It is meant to be used for highlighting the article in some way. It
851 is not run if `gnus-visual' is nil."
852 :group 'gnus-summary-visual
853 :type 'hook)
855 (defcustom gnus-parse-headers-hook nil
856 "*A hook called before parsing the headers."
857 :group 'gnus-various
858 :type 'hook)
860 (defcustom gnus-exit-group-hook nil
861 "*A hook called when exiting summary mode.
862 This hook is not called from the non-updating exit commands like `Q'."
863 :group 'gnus-various
864 :type 'hook)
866 (defcustom gnus-summary-update-hook
867 (list 'gnus-summary-highlight-line)
868 "*A hook called when a summary line is changed.
869 The hook will not be called if `gnus-visual' is nil.
871 The default function `gnus-summary-highlight-line' will
872 highlight the line according to the `gnus-summary-highlight'
873 variable."
874 :group 'gnus-summary-visual
875 :type 'hook)
877 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read)
878 "*A hook called when an article is selected for the first time.
879 The hook is intended to mark an article as read (or unread)
880 automatically when it is selected."
881 :group 'gnus-summary-choose
882 :type 'hook)
884 (defcustom gnus-group-no-more-groups-hook nil
885 "*A hook run when returning to group mode having no more (unread) groups."
886 :group 'gnus-group-select
887 :type 'hook)
889 (defcustom gnus-ps-print-hook nil
890 "*A hook run before ps-printing something from Gnus."
891 :group 'gnus-summary
892 :type 'hook)
894 (defcustom gnus-summary-article-move-hook nil
895 "*A hook called after an article is moved, copied, respooled, or crossposted."
896 :version "22.1"
897 :group 'gnus-summary
898 :type 'hook)
900 (defcustom gnus-summary-article-delete-hook nil
901 "*A hook called after an article is deleted."
902 :version "22.1"
903 :group 'gnus-summary
904 :type 'hook)
906 (defcustom gnus-summary-article-expire-hook nil
907 "*A hook called after an article is expired."
908 :version "22.1"
909 :group 'gnus-summary
910 :type 'hook)
912 (defcustom gnus-summary-display-arrow
913 (and (fboundp 'display-graphic-p)
914 (display-graphic-p))
915 "*If non-nil, display an arrow highlighting the current article."
916 :version "22.1"
917 :group 'gnus-summary
918 :type 'boolean)
920 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face
921 "Face used for highlighting the current article in the summary buffer."
922 :group 'gnus-summary-visual
923 :type 'face)
925 (defvar gnus-tmp-downloaded nil)
927 (defcustom gnus-summary-highlight
928 '(((eq mark gnus-canceled-mark)
929 . gnus-summary-cancelled-face)
930 ((and uncached (> score default-high))
931 . gnus-summary-high-undownloaded-face)
932 ((and uncached (< score default-low))
933 . gnus-summary-low-undownloaded-face)
934 (uncached
935 . gnus-summary-normal-undownloaded-face)
936 ((and (> score default-high)
937 (or (eq mark gnus-dormant-mark)
938 (eq mark gnus-ticked-mark)))
939 . gnus-summary-high-ticked-face)
940 ((and (< score default-low)
941 (or (eq mark gnus-dormant-mark)
942 (eq mark gnus-ticked-mark)))
943 . gnus-summary-low-ticked-face)
944 ((or (eq mark gnus-dormant-mark)
945 (eq mark gnus-ticked-mark))
946 . gnus-summary-normal-ticked-face)
947 ((and (> score default-high) (eq mark gnus-ancient-mark))
948 . gnus-summary-high-ancient-face)
949 ((and (< score default-low) (eq mark gnus-ancient-mark))
950 . gnus-summary-low-ancient-face)
951 ((eq mark gnus-ancient-mark)
952 . gnus-summary-normal-ancient-face)
953 ((and (> score default-high) (eq mark gnus-unread-mark))
954 . gnus-summary-high-unread-face)
955 ((and (< score default-low) (eq mark gnus-unread-mark))
956 . gnus-summary-low-unread-face)
957 ((eq mark gnus-unread-mark)
958 . gnus-summary-normal-unread-face)
959 ((> score default-high)
960 . gnus-summary-high-read-face)
961 ((< score default-low)
962 . gnus-summary-low-read-face)
964 . gnus-summary-normal-read-face))
965 "*Controls the highlighting of summary buffer lines.
967 A list of (FORM . FACE) pairs. When deciding how a a particular
968 summary line should be displayed, each form is evaluated. The content
969 of the face field after the first true form is used. You can change
970 how those summary lines are displayed, by editing the face field.
972 You can use the following variables in the FORM field.
974 score: The article's score
975 default: The default article score.
976 default-high: The default score for high scored articles.
977 default-low: The default score for low scored articles.
978 below: The score below which articles are automatically marked as read.
979 mark: The article's mark.
980 uncached: Non-nil if the article is uncached."
981 :group 'gnus-summary-visual
982 :type '(repeat (cons (sexp :tag "Form" nil)
983 face)))
985 (defcustom gnus-alter-header-function nil
986 "Function called to allow alteration of article header structures.
987 The function is called with one parameter, the article header vector,
988 which it may alter in any way."
989 :type '(choice (const :tag "None" nil)
990 function)
991 :group 'gnus-summary)
993 (defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string
994 "Variable that says which function should be used to decode a string with encoded words.")
996 (defcustom gnus-extra-headers '(To Newsgroups)
997 "*Extra headers to parse."
998 :version "21.1"
999 :group 'gnus-summary
1000 :type '(repeat symbol))
1002 (defcustom gnus-ignored-from-addresses
1003 (and user-mail-address (regexp-quote user-mail-address))
1004 "*Regexp of From headers that may be suppressed in favor of To headers."
1005 :version "21.1"
1006 :group 'gnus-summary
1007 :type 'regexp)
1009 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown)
1010 "List of charsets that should be ignored.
1011 When these charsets are used in the \"charset\" parameter, the
1012 default charset will be used instead."
1013 :version "21.1"
1014 :type '(repeat symbol)
1015 :group 'gnus-charset)
1017 (gnus-define-group-parameter
1018 ignored-charsets
1019 :type list
1020 :function-document
1021 "Return the ignored charsets of GROUP."
1022 :variable gnus-group-ignored-charsets-alist
1023 :variable-default
1024 '(("alt\\.chinese\\.text" iso-8859-1))
1025 :variable-document
1026 "Alist of regexps (to match group names) and charsets that should be ignored.
1027 When these charsets are used in the \"charset\" parameter, the
1028 default charset will be used instead."
1029 :variable-group gnus-charset
1030 :variable-type '(repeat (cons (regexp :tag "Group")
1031 (repeat symbol)))
1032 :parameter-type '(choice :tag "Ignored charsets"
1033 :value nil
1034 (repeat (symbol)))
1035 :parameter-document "\
1036 List of charsets that should be ignored.
1038 When these charsets are used in the \"charset\" parameter, the
1039 default charset will be used instead.")
1041 (defcustom gnus-group-highlight-words-alist nil
1042 "Alist of group regexps and highlight regexps.
1043 This variable uses the same syntax as `gnus-emphasis-alist'."
1044 :version "21.1"
1045 :type '(repeat (cons (regexp :tag "Group")
1046 (repeat (list (regexp :tag "Highlight regexp")
1047 (number :tag "Group for entire word" 0)
1048 (number :tag "Group for displayed part" 0)
1049 (symbol :tag "Face"
1050 gnus-emphasis-highlight-words)))))
1051 :group 'gnus-summary-visual)
1053 (defcustom gnus-summary-show-article-charset-alist
1055 "Alist of number and charset.
1056 The article will be shown with the charset corresponding to the
1057 numbered argument.
1058 For example: ((1 . cn-gb-2312) (2 . big5))."
1059 :version "21.1"
1060 :type '(repeat (cons (number :tag "Argument" 1)
1061 (symbol :tag "Charset")))
1062 :group 'gnus-charset)
1064 (defcustom gnus-preserve-marks t
1065 "Whether marks are preserved when moving, copying and respooling messages."
1066 :version "21.1"
1067 :type 'boolean
1068 :group 'gnus-summary-marks)
1070 (defcustom gnus-alter-articles-to-read-function nil
1071 "Function to be called to alter the list of articles to be selected."
1072 :type '(choice (const nil) function)
1073 :group 'gnus-summary)
1075 (defcustom gnus-orphan-score nil
1076 "*All orphans get this score added. Set in the score file."
1077 :group 'gnus-score-default
1078 :type '(choice (const nil)
1079 integer))
1081 (defcustom gnus-summary-save-parts-default-mime "image/.*"
1082 "*A regexp to match MIME parts when saving multiple parts of a
1083 message with `gnus-summary-save-parts' (\\<gnus-summary-mode-map>\\[gnus-summary-save-parts]).
1084 This regexp will be used by default when prompting the user for which
1085 type of files to save."
1086 :group 'gnus-summary
1087 :type 'regexp)
1089 (defcustom gnus-read-all-available-headers nil
1090 "Whether Gnus should parse all headers made available to it.
1091 This is mostly relevant for slow back ends where the user may
1092 wish to widen the summary buffer to include all headers
1093 that were fetched. Say, for nnultimate groups."
1094 :version "22.1"
1095 :group 'gnus-summary
1096 :type '(choice boolean regexp))
1098 (defcustom gnus-summary-muttprint-program "muttprint"
1099 "Command (and optional arguments) used to run Muttprint."
1100 :version "22.1"
1101 :group 'gnus-summary
1102 :type 'string)
1104 (defcustom gnus-article-loose-mime nil
1105 "If non-nil, don't require MIME-Version header.
1106 Some brain-damaged MUA/MTA, e.g. Lotus Domino 5.0.6 clients, does not
1107 supply the MIME-Version header or deliberately strip it from the mail.
1108 Set it to non-nil, Gnus will treat some articles as MIME even if
1109 the MIME-Version header is missed."
1110 :version "22.1"
1111 :type 'boolean
1112 :group 'gnus-article-mime)
1114 (defcustom gnus-article-emulate-mime t
1115 "If non-nil, use MIME emulation for uuencode and the like.
1116 This means that Gnus will search message bodies for text that look
1117 like uuencoded bits, yEncoded bits, and so on, and present that using
1118 the normal Gnus MIME machinery."
1119 :version "22.1"
1120 :type 'boolean
1121 :group 'gnus-article-mime)
1123 ;;; Internal variables
1125 (defvar gnus-summary-display-cache nil)
1126 (defvar gnus-article-mime-handles nil)
1127 (defvar gnus-article-decoded-p nil)
1128 (defvar gnus-article-charset nil)
1129 (defvar gnus-article-ignored-charsets nil)
1130 (defvar gnus-scores-exclude-files nil)
1131 (defvar gnus-page-broken nil)
1133 (defvar gnus-original-article nil)
1134 (defvar gnus-article-internal-prepare-hook nil)
1135 (defvar gnus-newsgroup-process-stack nil)
1137 (defvar gnus-thread-indent-array nil)
1138 (defvar gnus-thread-indent-array-level gnus-thread-indent-level)
1139 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number
1140 "Function called to sort the articles within a thread after it has been gathered together.")
1142 (defvar gnus-summary-save-parts-type-history nil)
1143 (defvar gnus-summary-save-parts-last-directory mm-default-directory)
1145 ;; Avoid highlighting in kill files.
1146 (defvar gnus-summary-inhibit-highlight nil)
1147 (defvar gnus-newsgroup-selected-overlay nil)
1148 (defvar gnus-inhibit-limiting nil)
1149 (defvar gnus-newsgroup-adaptive-score-file nil)
1150 (defvar gnus-current-score-file nil)
1151 (defvar gnus-current-move-group nil)
1152 (defvar gnus-current-copy-group nil)
1153 (defvar gnus-current-crosspost-group nil)
1154 (defvar gnus-newsgroup-display nil)
1156 (defvar gnus-newsgroup-dependencies nil)
1157 (defvar gnus-newsgroup-adaptive nil)
1158 (defvar gnus-summary-display-article-function nil)
1159 (defvar gnus-summary-highlight-line-function nil
1160 "Function called after highlighting a summary line.")
1162 (defvar gnus-summary-line-format-alist
1163 `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
1164 (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
1165 (?s gnus-tmp-subject-or-nil ?s)
1166 (?n gnus-tmp-name ?s)
1167 (?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
1169 (?a (or (car (funcall gnus-extract-address-components gnus-tmp-from))
1170 gnus-tmp-from) ?s)
1171 (?F gnus-tmp-from ?s)
1172 (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
1173 (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
1174 (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
1175 (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
1176 (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
1177 (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
1178 (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
1179 (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
1180 (?L gnus-tmp-lines ?s)
1181 (?O gnus-tmp-downloaded ?c)
1182 (?I gnus-tmp-indentation ?s)
1183 (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
1184 (?R gnus-tmp-replied ?c)
1185 (?\[ gnus-tmp-opening-bracket ?c)
1186 (?\] gnus-tmp-closing-bracket ?c)
1187 (?\> (make-string gnus-tmp-level ? ) ?s)
1188 (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1189 (?i gnus-tmp-score ?d)
1190 (?z gnus-tmp-score-char ?c)
1191 (?l (bbb-grouplens-score gnus-tmp-header) ?s)
1192 (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d)
1193 (?U gnus-tmp-unread ?c)
1194 (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1196 (?t (gnus-summary-number-of-articles-in-thread
1197 (and (boundp 'thread) (car thread)) gnus-tmp-level)
1199 (?e (gnus-summary-number-of-articles-in-thread
1200 (and (boundp 'thread) (car thread)) gnus-tmp-level t)
1202 (?u gnus-tmp-user-defined ?s)
1203 (?P (gnus-pick-line-number) ?d)
1204 (?B gnus-tmp-thread-tree-header-string ?s)
1205 (user-date (gnus-user-date
1206 ,(macroexpand '(mail-header-date gnus-tmp-header))) ?s))
1207 "An alist of format specifications that can appear in summary lines.
1208 These are paired with what variables they correspond with, along with
1209 the type of the variable (string, integer, character, etc).")
1211 (defvar gnus-summary-dummy-line-format-alist
1212 `((?S gnus-tmp-subject ?s)
1213 (?N gnus-tmp-number ?d)
1214 (?u gnus-tmp-user-defined ?s)))
1216 (defvar gnus-summary-mode-line-format-alist
1217 `((?G gnus-tmp-group-name ?s)
1218 (?g (gnus-short-group-name gnus-tmp-group-name) ?s)
1219 (?p (gnus-group-real-name gnus-tmp-group-name) ?s)
1220 (?A gnus-tmp-article-number ?d)
1221 (?Z gnus-tmp-unread-and-unselected ?s)
1222 (?V gnus-version ?s)
1223 (?U gnus-tmp-unread-and-unticked ?d)
1224 (?S gnus-tmp-subject ?s)
1225 (?e gnus-tmp-unselected ?d)
1226 (?u gnus-tmp-user-defined ?s)
1227 (?d (length gnus-newsgroup-dormant) ?d)
1228 (?t (length gnus-newsgroup-marked) ?d)
1229 (?h (length gnus-newsgroup-spam-marked) ?d)
1230 (?r (length gnus-newsgroup-reads) ?d)
1231 (?z (gnus-summary-article-score gnus-tmp-article-number) ?d)
1232 (?E gnus-newsgroup-expunged-tally ?d)
1233 (?s (gnus-current-score-file-nondirectory) ?s)))
1235 (defvar gnus-last-search-regexp nil
1236 "Default regexp for article search command.")
1238 (defvar gnus-last-shell-command nil
1239 "Default shell command on article.")
1241 (defvar gnus-newsgroup-agentized nil
1242 "Locally bound in each summary buffer to indicate whether the server has been agentized.")
1243 (defvar gnus-newsgroup-begin nil)
1244 (defvar gnus-newsgroup-end nil)
1245 (defvar gnus-newsgroup-last-rmail nil)
1246 (defvar gnus-newsgroup-last-mail nil)
1247 (defvar gnus-newsgroup-last-folder nil)
1248 (defvar gnus-newsgroup-last-file nil)
1249 (defvar gnus-newsgroup-auto-expire nil)
1250 (defvar gnus-newsgroup-active nil)
1252 (defvar gnus-newsgroup-data nil)
1253 (defvar gnus-newsgroup-data-reverse nil)
1254 (defvar gnus-newsgroup-limit nil)
1255 (defvar gnus-newsgroup-limits nil)
1256 (defvar gnus-summary-use-undownloaded-faces nil)
1258 (defvar gnus-newsgroup-unreads nil
1259 "Sorted list of unread articles in the current newsgroup.")
1261 (defvar gnus-newsgroup-unselected nil
1262 "Sorted list of unselected unread articles in the current newsgroup.")
1264 (defvar gnus-newsgroup-reads nil
1265 "Alist of read articles and article marks in the current newsgroup.")
1267 (defvar gnus-newsgroup-expunged-tally nil)
1269 (defvar gnus-newsgroup-marked nil
1270 "Sorted list of ticked articles in the current newsgroup (a subset of unread art).")
1272 (defvar gnus-newsgroup-spam-marked nil
1273 "List of ranges of articles that have been marked as spam.")
1275 (defvar gnus-newsgroup-killed nil
1276 "List of ranges of articles that have been through the scoring process.")
1278 (defvar gnus-newsgroup-cached nil
1279 "Sorted list of articles that come from the article cache.")
1281 (defvar gnus-newsgroup-saved nil
1282 "List of articles that have been saved.")
1284 (defvar gnus-newsgroup-kill-headers nil)
1286 (defvar gnus-newsgroup-replied nil
1287 "List of articles that have been replied to in the current newsgroup.")
1289 (defvar gnus-newsgroup-forwarded nil
1290 "List of articles that have been forwarded in the current newsgroup.")
1292 (defvar gnus-newsgroup-recent nil
1293 "List of articles that have are recent in the current newsgroup.")
1295 (defvar gnus-newsgroup-expirable nil
1296 "Sorted list of articles in the current newsgroup that can be expired.")
1298 (defvar gnus-newsgroup-processable nil
1299 "List of articles in the current newsgroup that can be processed.")
1301 (defvar gnus-newsgroup-downloadable nil
1302 "Sorted list of articles in the current newsgroup that can be processed.")
1304 (defvar gnus-newsgroup-unfetched nil
1305 "Sorted list of articles in the current newsgroup whose headers have
1306 not been fetched into the agent.
1308 This list will always be a subset of gnus-newsgroup-undownloaded.")
1310 (defvar gnus-newsgroup-undownloaded nil
1311 "List of articles in the current newsgroup that haven't been downloaded.")
1313 (defvar gnus-newsgroup-unsendable nil
1314 "List of articles in the current newsgroup that won't be sent.")
1316 (defvar gnus-newsgroup-bookmarks nil
1317 "List of articles in the current newsgroup that have bookmarks.")
1319 (defvar gnus-newsgroup-dormant nil
1320 "Sorted list of dormant articles in the current newsgroup.")
1322 (defvar gnus-newsgroup-unseen nil
1323 "List of unseen articles in the current newsgroup.")
1325 (defvar gnus-newsgroup-seen nil
1326 "Range of seen articles in the current newsgroup.")
1328 (defvar gnus-newsgroup-articles nil
1329 "List of articles in the current newsgroup.")
1331 (defvar gnus-newsgroup-scored nil
1332 "List of scored articles in the current newsgroup.")
1334 (defvar gnus-newsgroup-headers nil
1335 "List of article headers in the current newsgroup.")
1337 (defvar gnus-newsgroup-threads nil)
1339 (defvar gnus-newsgroup-prepared nil
1340 "Whether the current group has been prepared properly.")
1342 (defvar gnus-newsgroup-ancient nil
1343 "List of `gnus-fetch-old-headers' articles in the current newsgroup.")
1345 (defvar gnus-newsgroup-sparse nil)
1347 (defvar gnus-current-article nil)
1348 (defvar gnus-article-current nil)
1349 (defvar gnus-current-headers nil)
1350 (defvar gnus-have-all-headers nil)
1351 (defvar gnus-last-article nil)
1352 (defvar gnus-newsgroup-history nil)
1353 (defvar gnus-newsgroup-charset nil)
1354 (defvar gnus-newsgroup-ephemeral-charset nil)
1355 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil)
1357 (defvar gnus-article-before-search nil)
1359 (defvar gnus-summary-local-variables
1360 '(gnus-newsgroup-name
1361 gnus-newsgroup-begin gnus-newsgroup-end
1362 gnus-newsgroup-last-rmail gnus-newsgroup-last-mail
1363 gnus-newsgroup-last-folder gnus-newsgroup-last-file
1364 gnus-newsgroup-auto-expire gnus-newsgroup-unreads
1365 gnus-newsgroup-unselected gnus-newsgroup-marked
1366 gnus-newsgroup-spam-marked
1367 gnus-newsgroup-reads gnus-newsgroup-saved
1368 gnus-newsgroup-replied gnus-newsgroup-forwarded
1369 gnus-newsgroup-recent
1370 gnus-newsgroup-expirable
1371 gnus-newsgroup-processable gnus-newsgroup-killed
1372 gnus-newsgroup-downloadable gnus-newsgroup-undownloaded
1373 gnus-newsgroup-unfetched
1374 gnus-newsgroup-unsendable gnus-newsgroup-unseen
1375 gnus-newsgroup-seen gnus-newsgroup-articles
1376 gnus-newsgroup-bookmarks gnus-newsgroup-dormant
1377 gnus-newsgroup-headers gnus-newsgroup-threads
1378 gnus-newsgroup-prepared gnus-summary-highlight-line-function
1379 gnus-current-article gnus-current-headers gnus-have-all-headers
1380 gnus-last-article gnus-article-internal-prepare-hook
1381 gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay
1382 gnus-newsgroup-scored gnus-newsgroup-kill-headers
1383 gnus-thread-expunge-below
1384 gnus-score-alist gnus-current-score-file
1385 (gnus-summary-expunge-below . global)
1386 (gnus-summary-mark-below . global)
1387 (gnus-orphan-score . global)
1388 gnus-newsgroup-active gnus-scores-exclude-files
1389 gnus-newsgroup-history gnus-newsgroup-ancient
1390 gnus-newsgroup-sparse gnus-newsgroup-process-stack
1391 (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring)
1392 gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1)
1393 (gnus-newsgroup-expunged-tally . 0)
1394 gnus-cache-removable-articles gnus-newsgroup-cached
1395 gnus-newsgroup-data gnus-newsgroup-data-reverse
1396 gnus-newsgroup-limit gnus-newsgroup-limits
1397 gnus-newsgroup-charset gnus-newsgroup-display
1398 gnus-summary-use-undownloaded-faces)
1399 "Variables that are buffer-local to the summary buffers.")
1401 (defvar gnus-newsgroup-variables nil
1402 "A list of variables that have separate values in different newsgroups.
1403 A list of newsgroup (summary buffer) local variables, or cons of
1404 variables and their default expressions to be evalled (when the default
1405 values are not nil), that should be made global while the summary buffer
1406 is active.
1408 Note: The default expressions will be evaluated (using function `eval')
1409 before assignment to the local variable rather than just assigned to it.
1410 If the default expression is the symbol `global', that symbol will not
1411 be evaluated but the global value of the local variable will be used
1412 instead.
1414 These variables can be used to set variables in the group parameters
1415 while still allowing them to affect operations done in other buffers.
1416 For example:
1418 \(setq gnus-newsgroup-variables
1419 '(message-use-followup-to
1420 (gnus-visible-headers .
1421 \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1424 ;; Byte-compiler warning.
1425 (eval-when-compile
1426 ;; Bind features so that require will believe that gnus-sum has
1427 ;; already been loaded (avoids infinite recursion)
1428 (let ((features (cons 'gnus-sum features)))
1429 ;; Several of the declarations in gnus-sum are needed to load the
1430 ;; following files. Right now, these definitions have been
1431 ;; compiled but not defined (evaluated). We could either do a
1432 ;; eval-and-compile about all of the declarations or evaluate the
1433 ;; source file.
1434 (if (boundp 'gnus-newsgroup-variables)
1436 (load "gnus-sum.el" t t t))
1437 (require 'gnus)
1438 (require 'gnus-agent)
1439 (require 'gnus-art)))
1441 ;; MIME stuff.
1443 (defvar gnus-decode-encoded-word-methods
1444 '(mail-decode-encoded-word-string)
1445 "List of methods used to decode encoded words.
1447 This variable is a list of FUNCTION or (REGEXP . FUNCTION). If item
1448 is FUNCTION, FUNCTION will be apply to all newsgroups. If item is a
1449 \(REGEXP . FUNCTION), FUNCTION will be only apply to thes newsgroups
1450 whose names match REGEXP.
1452 For example:
1453 \((\"chinese\" . gnus-decode-encoded-word-string-by-guess)
1454 mail-decode-encoded-word-string
1455 (\"chinese\" . rfc1843-decode-string))")
1457 (defvar gnus-decode-encoded-word-methods-cache nil)
1459 (defun gnus-multi-decode-encoded-word-string (string)
1460 "Apply the functions from `gnus-encoded-word-methods' that match."
1461 (unless (and gnus-decode-encoded-word-methods-cache
1462 (eq gnus-newsgroup-name
1463 (car gnus-decode-encoded-word-methods-cache)))
1464 (setq gnus-decode-encoded-word-methods-cache (list gnus-newsgroup-name))
1465 (mapcar (lambda (x)
1466 (if (symbolp x)
1467 (nconc gnus-decode-encoded-word-methods-cache (list x))
1468 (if (and gnus-newsgroup-name
1469 (string-match (car x) gnus-newsgroup-name))
1470 (nconc gnus-decode-encoded-word-methods-cache
1471 (list (cdr x))))))
1472 gnus-decode-encoded-word-methods))
1473 (let ((xlist gnus-decode-encoded-word-methods-cache))
1474 (pop xlist)
1475 (while xlist
1476 (setq string (funcall (pop xlist) string))))
1477 string)
1479 ;; Subject simplification.
1481 (defun gnus-simplify-whitespace (str)
1482 "Remove excessive whitespace from STR."
1483 ;; Multiple spaces.
1484 (while (string-match "[ \t][ \t]+" str)
1485 (setq str (concat (substring str 0 (match-beginning 0))
1487 (substring str (match-end 0)))))
1488 ;; Leading spaces.
1489 (when (string-match "^[ \t]+" str)
1490 (setq str (substring str (match-end 0))))
1491 ;; Trailing spaces.
1492 (when (string-match "[ \t]+$" str)
1493 (setq str (substring str 0 (match-beginning 0))))
1494 str)
1496 (defun gnus-simplify-all-whitespace (str)
1497 "Remove all whitespace from STR."
1498 (while (string-match "[ \t\n]+" str)
1499 (setq str (replace-match "" nil nil str)))
1500 str)
1502 (defsubst gnus-simplify-subject-re (subject)
1503 "Remove \"Re:\" from subject lines."
1504 (if (string-match message-subject-re-regexp subject)
1505 (substring subject (match-end 0))
1506 subject))
1508 (defun gnus-simplify-subject (subject &optional re-only)
1509 "Remove `Re:' and words in parentheses.
1510 If RE-ONLY is non-nil, strip leading `Re:'s only."
1511 (let ((case-fold-search t)) ;Ignore case.
1512 ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'.
1513 (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject)
1514 (setq subject (substring subject (match-end 0))))
1515 ;; Remove uninteresting prefixes.
1516 (when (and (not re-only)
1517 gnus-simplify-ignored-prefixes
1518 (string-match gnus-simplify-ignored-prefixes subject))
1519 (setq subject (substring subject (match-end 0))))
1520 ;; Remove words in parentheses from end.
1521 (unless re-only
1522 (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject)
1523 (setq subject (substring subject 0 (match-beginning 0)))))
1524 ;; Return subject string.
1525 subject))
1527 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify
1528 ;; all whitespace.
1529 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext)
1530 (goto-char (point-min))
1531 (while (re-search-forward regexp nil t)
1532 (replace-match (or newtext ""))))
1534 (defun gnus-simplify-buffer-fuzzy ()
1535 "Simplify string in the buffer fuzzily.
1536 The string in the accessible portion of the current buffer is simplified.
1537 It is assumed to be a single-line subject.
1538 Whitespace is generally cleaned up, and miscellaneous leading/trailing
1539 matter is removed. Additional things can be deleted by setting
1540 `gnus-simplify-subject-fuzzy-regexp'."
1541 (let ((case-fold-search t)
1542 (modified-tick))
1543 (gnus-simplify-buffer-fuzzy-step "\t" " ")
1545 (while (not (eq modified-tick (buffer-modified-tick)))
1546 (setq modified-tick (buffer-modified-tick))
1547 (cond
1548 ((listp gnus-simplify-subject-fuzzy-regexp)
1549 (mapcar 'gnus-simplify-buffer-fuzzy-step
1550 gnus-simplify-subject-fuzzy-regexp))
1551 (gnus-simplify-subject-fuzzy-regexp
1552 (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp)))
1553 (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *")
1554 (gnus-simplify-buffer-fuzzy-step
1555 "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *")
1556 (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1"))
1558 (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$")
1559 (gnus-simplify-buffer-fuzzy-step " +" " ")
1560 (gnus-simplify-buffer-fuzzy-step " $")
1561 (gnus-simplify-buffer-fuzzy-step "^ +")))
1563 (defun gnus-simplify-subject-fuzzy (subject)
1564 "Simplify a subject string fuzzily.
1565 See `gnus-simplify-buffer-fuzzy' for details."
1566 (save-excursion
1567 (gnus-set-work-buffer)
1568 (let ((case-fold-search t))
1569 ;; Remove uninteresting prefixes.
1570 (when (and gnus-simplify-ignored-prefixes
1571 (string-match gnus-simplify-ignored-prefixes subject))
1572 (setq subject (substring subject (match-end 0))))
1573 (insert subject)
1574 (inline (gnus-simplify-buffer-fuzzy))
1575 (buffer-string))))
1577 (defsubst gnus-simplify-subject-fully (subject)
1578 "Simplify a subject string according to `gnus-summary-gather-subject-limit'."
1579 (cond
1580 (gnus-simplify-subject-functions
1581 (gnus-map-function gnus-simplify-subject-functions subject))
1582 ((null gnus-summary-gather-subject-limit)
1583 (gnus-simplify-subject-re subject))
1584 ((eq gnus-summary-gather-subject-limit 'fuzzy)
1585 (gnus-simplify-subject-fuzzy subject))
1586 ((numberp gnus-summary-gather-subject-limit)
1587 (gnus-limit-string (gnus-simplify-subject-re subject)
1588 gnus-summary-gather-subject-limit))
1590 subject)))
1592 (defsubst gnus-subject-equal (s1 s2 &optional simple-first)
1593 "Check whether two subjects are equal.
1594 If optional argument SIMPLE-FIRST is t, first argument is already
1595 simplified."
1596 (cond
1597 ((null simple-first)
1598 (equal (gnus-simplify-subject-fully s1)
1599 (gnus-simplify-subject-fully s2)))
1601 (equal s1
1602 (gnus-simplify-subject-fully s2)))))
1604 (defun gnus-summary-bubble-group ()
1605 "Increase the score of the current group.
1606 This is a handy function to add to `gnus-summary-exit-hook' to
1607 increase the score of each group you read."
1608 (gnus-group-add-score gnus-newsgroup-name))
1612 ;;; Gnus summary mode
1615 (put 'gnus-summary-mode 'mode-class 'special)
1617 (defvar gnus-article-commands-menu)
1619 ;; Non-orthogonal keys
1621 (gnus-define-keys gnus-summary-mode-map
1622 " " gnus-summary-next-page
1623 "\177" gnus-summary-prev-page
1624 [delete] gnus-summary-prev-page
1625 [backspace] gnus-summary-prev-page
1626 "\r" gnus-summary-scroll-up
1627 "\M-\r" gnus-summary-scroll-down
1628 "n" gnus-summary-next-unread-article
1629 "p" gnus-summary-prev-unread-article
1630 "N" gnus-summary-next-article
1631 "P" gnus-summary-prev-article
1632 "\M-\C-n" gnus-summary-next-same-subject
1633 "\M-\C-p" gnus-summary-prev-same-subject
1634 "\M-n" gnus-summary-next-unread-subject
1635 "\M-p" gnus-summary-prev-unread-subject
1636 "." gnus-summary-first-unread-article
1637 "," gnus-summary-best-unread-article
1638 "\M-s" gnus-summary-search-article-forward
1639 "\M-r" gnus-summary-search-article-backward
1640 "<" gnus-summary-beginning-of-article
1641 ">" gnus-summary-end-of-article
1642 "j" gnus-summary-goto-article
1643 "^" gnus-summary-refer-parent-article
1644 "\M-^" gnus-summary-refer-article
1645 "u" gnus-summary-tick-article-forward
1646 "!" gnus-summary-tick-article-forward
1647 "U" gnus-summary-tick-article-backward
1648 "d" gnus-summary-mark-as-read-forward
1649 "D" gnus-summary-mark-as-read-backward
1650 "E" gnus-summary-mark-as-expirable
1651 "\M-u" gnus-summary-clear-mark-forward
1652 "\M-U" gnus-summary-clear-mark-backward
1653 "k" gnus-summary-kill-same-subject-and-select
1654 "\C-k" gnus-summary-kill-same-subject
1655 "\M-\C-k" gnus-summary-kill-thread
1656 "\M-\C-l" gnus-summary-lower-thread
1657 "e" gnus-summary-edit-article
1658 "#" gnus-summary-mark-as-processable
1659 "\M-#" gnus-summary-unmark-as-processable
1660 "\M-\C-t" gnus-summary-toggle-threads
1661 "\M-\C-s" gnus-summary-show-thread
1662 "\M-\C-h" gnus-summary-hide-thread
1663 "\M-\C-f" gnus-summary-next-thread
1664 "\M-\C-b" gnus-summary-prev-thread
1665 [(meta down)] gnus-summary-next-thread
1666 [(meta up)] gnus-summary-prev-thread
1667 "\M-\C-u" gnus-summary-up-thread
1668 "\M-\C-d" gnus-summary-down-thread
1669 "&" gnus-summary-execute-command
1670 "c" gnus-summary-catchup-and-exit
1671 "\C-w" gnus-summary-mark-region-as-read
1672 "\C-t" gnus-summary-toggle-truncation
1673 "?" gnus-summary-mark-as-dormant
1674 "\C-c\M-\C-s" gnus-summary-limit-include-expunged
1675 "\C-c\C-s\C-n" gnus-summary-sort-by-number
1676 "\C-c\C-s\C-l" gnus-summary-sort-by-lines
1677 "\C-c\C-s\C-c" gnus-summary-sort-by-chars
1678 "\C-c\C-s\C-a" gnus-summary-sort-by-author
1679 "\C-c\C-s\C-s" gnus-summary-sort-by-subject
1680 "\C-c\C-s\C-d" gnus-summary-sort-by-date
1681 "\C-c\C-s\C-i" gnus-summary-sort-by-score
1682 "\C-c\C-s\C-o" gnus-summary-sort-by-original
1683 "\C-c\C-s\C-r" gnus-summary-sort-by-random
1684 "=" gnus-summary-expand-window
1685 "\C-x\C-s" gnus-summary-reselect-current-group
1686 "\M-g" gnus-summary-rescan-group
1687 "w" gnus-summary-stop-page-breaking
1688 "\C-c\C-r" gnus-summary-caesar-message
1689 "f" gnus-summary-followup
1690 "F" gnus-summary-followup-with-original
1691 "C" gnus-summary-cancel-article
1692 "r" gnus-summary-reply
1693 "R" gnus-summary-reply-with-original
1694 "\C-c\C-f" gnus-summary-mail-forward
1695 "o" gnus-summary-save-article
1696 "\C-o" gnus-summary-save-article-mail
1697 "|" gnus-summary-pipe-output
1698 "\M-k" gnus-summary-edit-local-kill
1699 "\M-K" gnus-summary-edit-global-kill
1700 ;; "V" gnus-version
1701 "\C-c\C-d" gnus-summary-describe-group
1702 "q" gnus-summary-exit
1703 "Q" gnus-summary-exit-no-update
1704 "\C-c\C-i" gnus-info-find-node
1705 gnus-mouse-2 gnus-mouse-pick-article
1706 [follow-link] mouse-face
1707 "m" gnus-summary-mail-other-window
1708 "a" gnus-summary-post-news
1709 "i" gnus-summary-news-other-window
1710 "x" gnus-summary-limit-to-unread
1711 "s" gnus-summary-isearch-article
1712 "t" gnus-summary-toggle-header
1713 "g" gnus-summary-show-article
1714 "l" gnus-summary-goto-last-article
1715 "\C-c\C-v\C-v" gnus-uu-decode-uu-view
1716 "\C-d" gnus-summary-enter-digest-group
1717 "\M-\C-d" gnus-summary-read-document
1718 "\M-\C-e" gnus-summary-edit-parameters
1719 "\M-\C-a" gnus-summary-customize-parameters
1720 "\C-c\C-b" gnus-bug
1721 "*" gnus-cache-enter-article
1722 "\M-*" gnus-cache-remove-article
1723 "\M-&" gnus-summary-universal-argument
1724 "\C-l" gnus-recenter
1725 "I" gnus-summary-increase-score
1726 "L" gnus-summary-lower-score
1727 "\M-i" gnus-symbolic-argument
1728 "h" gnus-summary-select-article-buffer
1730 "b" gnus-article-view-part
1731 "\M-t" gnus-summary-toggle-display-buttonized
1733 "V" gnus-summary-score-map
1734 "X" gnus-uu-extract-map
1735 "S" gnus-summary-send-map)
1737 ;; Sort of orthogonal keymap
1738 (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map)
1739 "t" gnus-summary-tick-article-forward
1740 "!" gnus-summary-tick-article-forward
1741 "d" gnus-summary-mark-as-read-forward
1742 "r" gnus-summary-mark-as-read-forward
1743 "c" gnus-summary-clear-mark-forward
1744 " " gnus-summary-clear-mark-forward
1745 "e" gnus-summary-mark-as-expirable
1746 "x" gnus-summary-mark-as-expirable
1747 "?" gnus-summary-mark-as-dormant
1748 "b" gnus-summary-set-bookmark
1749 "B" gnus-summary-remove-bookmark
1750 "#" gnus-summary-mark-as-processable
1751 "\M-#" gnus-summary-unmark-as-processable
1752 "S" gnus-summary-limit-include-expunged
1753 "C" gnus-summary-catchup
1754 "H" gnus-summary-catchup-to-here
1755 "h" gnus-summary-catchup-from-here
1756 "\C-c" gnus-summary-catchup-all
1757 "k" gnus-summary-kill-same-subject-and-select
1758 "K" gnus-summary-kill-same-subject
1759 "P" gnus-uu-mark-map)
1761 (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map)
1762 "c" gnus-summary-clear-above
1763 "u" gnus-summary-tick-above
1764 "m" gnus-summary-mark-above
1765 "k" gnus-summary-kill-below)
1767 (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map)
1768 "/" gnus-summary-limit-to-subject
1769 "n" gnus-summary-limit-to-articles
1770 "w" gnus-summary-pop-limit
1771 "s" gnus-summary-limit-to-subject
1772 "a" gnus-summary-limit-to-author
1773 "u" gnus-summary-limit-to-unread
1774 "m" gnus-summary-limit-to-marks
1775 "M" gnus-summary-limit-exclude-marks
1776 "v" gnus-summary-limit-to-score
1777 "*" gnus-summary-limit-include-cached
1778 "D" gnus-summary-limit-include-dormant
1779 "T" gnus-summary-limit-include-thread
1780 "d" gnus-summary-limit-exclude-dormant
1781 "t" gnus-summary-limit-to-age
1782 "." gnus-summary-limit-to-unseen
1783 "x" gnus-summary-limit-to-extra
1784 "p" gnus-summary-limit-to-display-predicate
1785 "E" gnus-summary-limit-include-expunged
1786 "c" gnus-summary-limit-exclude-childless-dormant
1787 "C" gnus-summary-limit-mark-excluded-as-read
1788 "o" gnus-summary-insert-old-articles
1789 "N" gnus-summary-insert-new-articles)
1791 (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map)
1792 "n" gnus-summary-next-unread-article
1793 "p" gnus-summary-prev-unread-article
1794 "N" gnus-summary-next-article
1795 "P" gnus-summary-prev-article
1796 "\C-n" gnus-summary-next-same-subject
1797 "\C-p" gnus-summary-prev-same-subject
1798 "\M-n" gnus-summary-next-unread-subject
1799 "\M-p" gnus-summary-prev-unread-subject
1800 "f" gnus-summary-first-unread-article
1801 "b" gnus-summary-best-unread-article
1802 "j" gnus-summary-goto-article
1803 "g" gnus-summary-goto-subject
1804 "l" gnus-summary-goto-last-article
1805 "o" gnus-summary-pop-article)
1807 (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map)
1808 "k" gnus-summary-kill-thread
1809 "l" gnus-summary-lower-thread
1810 "i" gnus-summary-raise-thread
1811 "T" gnus-summary-toggle-threads
1812 "t" gnus-summary-rethread-current
1813 "^" gnus-summary-reparent-thread
1814 "s" gnus-summary-show-thread
1815 "S" gnus-summary-show-all-threads
1816 "h" gnus-summary-hide-thread
1817 "H" gnus-summary-hide-all-threads
1818 "n" gnus-summary-next-thread
1819 "p" gnus-summary-prev-thread
1820 "u" gnus-summary-up-thread
1821 "o" gnus-summary-top-thread
1822 "d" gnus-summary-down-thread
1823 "#" gnus-uu-mark-thread
1824 "\M-#" gnus-uu-unmark-thread)
1826 (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map)
1827 "g" gnus-summary-prepare
1828 "c" gnus-summary-insert-cached-articles
1829 "d" gnus-summary-insert-dormant-articles)
1831 (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map)
1832 "c" gnus-summary-catchup-and-exit
1833 "C" gnus-summary-catchup-all-and-exit
1834 "E" gnus-summary-exit-no-update
1835 "Q" gnus-summary-exit
1836 "Z" gnus-summary-exit
1837 "n" gnus-summary-catchup-and-goto-next-group
1838 "R" gnus-summary-reselect-current-group
1839 "G" gnus-summary-rescan-group
1840 "N" gnus-summary-next-group
1841 "s" gnus-summary-save-newsrc
1842 "P" gnus-summary-prev-group)
1844 (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map)
1845 " " gnus-summary-next-page
1846 "n" gnus-summary-next-page
1847 "\177" gnus-summary-prev-page
1848 [delete] gnus-summary-prev-page
1849 "p" gnus-summary-prev-page
1850 "\r" gnus-summary-scroll-up
1851 "\M-\r" gnus-summary-scroll-down
1852 "<" gnus-summary-beginning-of-article
1853 ">" gnus-summary-end-of-article
1854 "b" gnus-summary-beginning-of-article
1855 "e" gnus-summary-end-of-article
1856 "^" gnus-summary-refer-parent-article
1857 "r" gnus-summary-refer-parent-article
1858 "D" gnus-summary-enter-digest-group
1859 "R" gnus-summary-refer-references
1860 "T" gnus-summary-refer-thread
1861 "g" gnus-summary-show-article
1862 "s" gnus-summary-isearch-article
1863 "P" gnus-summary-print-article
1864 "M" gnus-mailing-list-insinuate
1865 "t" gnus-article-babel)
1867 (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map)
1868 "b" gnus-article-add-buttons
1869 "B" gnus-article-add-buttons-to-head
1870 "o" gnus-article-treat-overstrike
1871 "e" gnus-article-emphasize
1872 "w" gnus-article-fill-cited-article
1873 "Q" gnus-article-fill-long-lines
1874 "C" gnus-article-capitalize-sentences
1875 "c" gnus-article-remove-cr
1876 "q" gnus-article-de-quoted-unreadable
1877 "6" gnus-article-de-base64-unreadable
1878 "Z" gnus-article-decode-HZ
1879 "h" gnus-article-wash-html
1880 "u" gnus-article-unsplit-urls
1881 "s" gnus-summary-force-verify-and-decrypt
1882 "f" gnus-article-display-x-face
1883 "l" gnus-summary-stop-page-breaking
1884 "r" gnus-summary-caesar-message
1885 "m" gnus-summary-morse-message
1886 "t" gnus-summary-toggle-header
1887 "g" gnus-treat-smiley
1888 "v" gnus-summary-verbose-headers
1889 "a" gnus-article-strip-headers-in-body ;; mnemonic: wash archive
1890 "p" gnus-article-verify-x-pgp-sig
1891 "d" gnus-article-treat-dumbquotes)
1893 (gnus-define-keys (gnus-summary-wash-deuglify-map "Y" gnus-summary-wash-map)
1894 ;; mnemonic: deuglif*Y*
1895 "u" gnus-article-outlook-unwrap-lines
1896 "a" gnus-article-outlook-repair-attribution
1897 "c" gnus-article-outlook-rearrange-citation
1898 "f" gnus-article-outlook-deuglify-article) ;; mnemonic: full deuglify
1900 (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map)
1901 "a" gnus-article-hide
1902 "h" gnus-article-hide-headers
1903 "b" gnus-article-hide-boring-headers
1904 "s" gnus-article-hide-signature
1905 "c" gnus-article-hide-citation
1906 "C" gnus-article-hide-citation-in-followups
1907 "l" gnus-article-hide-list-identifiers
1908 "B" gnus-article-strip-banner
1909 "P" gnus-article-hide-pem
1910 "\C-c" gnus-article-hide-citation-maybe)
1912 (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map)
1913 "a" gnus-article-highlight
1914 "h" gnus-article-highlight-headers
1915 "c" gnus-article-highlight-citation
1916 "s" gnus-article-highlight-signature)
1918 (gnus-define-keys (gnus-summary-wash-header-map "G" gnus-summary-wash-map)
1919 "f" gnus-article-treat-fold-headers
1920 "u" gnus-article-treat-unfold-headers
1921 "n" gnus-article-treat-fold-newsgroups)
1923 (gnus-define-keys (gnus-summary-wash-display-map "D" gnus-summary-wash-map)
1924 "x" gnus-article-display-x-face
1925 "d" gnus-article-display-face
1926 "s" gnus-treat-smiley
1927 "D" gnus-article-remove-images
1928 "f" gnus-treat-from-picon
1929 "m" gnus-treat-mail-picon
1930 "n" gnus-treat-newsgroups-picon)
1932 (gnus-define-keys (gnus-summary-wash-mime-map "M" gnus-summary-wash-map)
1933 "w" gnus-article-decode-mime-words
1934 "c" gnus-article-decode-charset
1935 "v" gnus-mime-view-all-parts
1936 "b" gnus-article-view-part)
1938 (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map)
1939 "z" gnus-article-date-ut
1940 "u" gnus-article-date-ut
1941 "l" gnus-article-date-local
1942 "p" gnus-article-date-english
1943 "e" gnus-article-date-lapsed
1944 "o" gnus-article-date-original
1945 "i" gnus-article-date-iso8601
1946 "s" gnus-article-date-user)
1948 (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map)
1949 "t" gnus-article-remove-trailing-blank-lines
1950 "l" gnus-article-strip-leading-blank-lines
1951 "m" gnus-article-strip-multiple-blank-lines
1952 "a" gnus-article-strip-blank-lines
1953 "A" gnus-article-strip-all-blank-lines
1954 "s" gnus-article-strip-leading-space
1955 "e" gnus-article-strip-trailing-space
1956 "w" gnus-article-remove-leading-whitespace)
1958 (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map)
1959 "v" gnus-version
1960 "f" gnus-summary-fetch-faq
1961 "d" gnus-summary-describe-group
1962 "h" gnus-summary-describe-briefly
1963 "i" gnus-info-find-node
1964 "c" gnus-group-fetch-charter
1965 "C" gnus-group-fetch-control)
1967 (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map)
1968 "e" gnus-summary-expire-articles
1969 "\M-\C-e" gnus-summary-expire-articles-now
1970 "\177" gnus-summary-delete-article
1971 [delete] gnus-summary-delete-article
1972 [backspace] gnus-summary-delete-article
1973 "m" gnus-summary-move-article
1974 "r" gnus-summary-respool-article
1975 "w" gnus-summary-edit-article
1976 "c" gnus-summary-copy-article
1977 "B" gnus-summary-crosspost-article
1978 "q" gnus-summary-respool-query
1979 "t" gnus-summary-respool-trace
1980 "i" gnus-summary-import-article
1981 "I" gnus-summary-create-article
1982 "p" gnus-summary-article-posted-p)
1984 (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map)
1985 "o" gnus-summary-save-article
1986 "m" gnus-summary-save-article-mail
1987 "F" gnus-summary-write-article-file
1988 "r" gnus-summary-save-article-rmail
1989 "f" gnus-summary-save-article-file
1990 "b" gnus-summary-save-article-body-file
1991 "h" gnus-summary-save-article-folder
1992 "v" gnus-summary-save-article-vm
1993 "p" gnus-summary-pipe-output
1994 "P" gnus-summary-muttprint
1995 "s" gnus-soup-add-article)
1997 (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map)
1998 "b" gnus-summary-display-buttonized
1999 "m" gnus-summary-repair-multipart
2000 "v" gnus-article-view-part
2001 "o" gnus-article-save-part
2002 "c" gnus-article-copy-part
2003 "C" gnus-article-view-part-as-charset
2004 "e" gnus-article-view-part-externally
2005 "E" gnus-article-encrypt-body
2006 "i" gnus-article-inline-part
2007 "|" gnus-article-pipe-part)
2009 (gnus-define-keys (gnus-uu-mark-map "P" gnus-summary-mark-map)
2010 "p" gnus-summary-mark-as-processable
2011 "u" gnus-summary-unmark-as-processable
2012 "U" gnus-summary-unmark-all-processable
2013 "v" gnus-uu-mark-over
2014 "s" gnus-uu-mark-series
2015 "r" gnus-uu-mark-region
2016 "g" gnus-uu-unmark-region
2017 "R" gnus-uu-mark-by-regexp
2018 "G" gnus-uu-unmark-by-regexp
2019 "t" gnus-uu-mark-thread
2020 "T" gnus-uu-unmark-thread
2021 "a" gnus-uu-mark-all
2022 "b" gnus-uu-mark-buffer
2023 "S" gnus-uu-mark-sparse
2024 "k" gnus-summary-kill-process-mark
2025 "y" gnus-summary-yank-process-mark
2026 "w" gnus-summary-save-process-mark
2027 "i" gnus-uu-invert-processable)
2029 (gnus-define-keys (gnus-uu-extract-map "X" gnus-summary-mode-map)
2030 ;;"x" gnus-uu-extract-any
2031 "m" gnus-summary-save-parts
2032 "u" gnus-uu-decode-uu
2033 "U" gnus-uu-decode-uu-and-save
2034 "s" gnus-uu-decode-unshar
2035 "S" gnus-uu-decode-unshar-and-save
2036 "o" gnus-uu-decode-save
2037 "O" gnus-uu-decode-save
2038 "b" gnus-uu-decode-binhex
2039 "B" gnus-uu-decode-binhex
2040 "p" gnus-uu-decode-postscript
2041 "P" gnus-uu-decode-postscript-and-save)
2043 (gnus-define-keys
2044 (gnus-uu-extract-view-map "v" gnus-uu-extract-map)
2045 "u" gnus-uu-decode-uu-view
2046 "U" gnus-uu-decode-uu-and-save-view
2047 "s" gnus-uu-decode-unshar-view
2048 "S" gnus-uu-decode-unshar-and-save-view
2049 "o" gnus-uu-decode-save-view
2050 "O" gnus-uu-decode-save-view
2051 "b" gnus-uu-decode-binhex-view
2052 "B" gnus-uu-decode-binhex-view
2053 "p" gnus-uu-decode-postscript-view
2054 "P" gnus-uu-decode-postscript-and-save-view)
2056 (defvar gnus-article-post-menu nil)
2058 (defconst gnus-summary-menu-maxlen 20)
2060 (defun gnus-summary-menu-split (menu)
2061 ;; If we have lots of elements, divide them into groups of 20
2062 ;; and make a pane (or submenu) for each one.
2063 (if (> (length menu) (/ (* gnus-summary-menu-maxlen 3) 2))
2064 (let ((menu menu) sublists next
2065 (i 1))
2066 (while menu
2067 ;; Pull off the next gnus-summary-menu-maxlen elements
2068 ;; and make them the next element of sublist.
2069 (setq next (nthcdr gnus-summary-menu-maxlen menu))
2070 (if next
2071 (setcdr (nthcdr (1- gnus-summary-menu-maxlen) menu)
2072 nil))
2073 (setq sublists (cons (cons (format "%s ... %s" (aref (car menu) 0)
2074 (aref (car (last menu)) 0)) menu)
2075 sublists))
2076 (setq i (1+ i))
2077 (setq menu next))
2078 (nreverse sublists))
2079 ;; Few elements--put them all in one pane.
2080 menu))
2082 (defun gnus-summary-make-menu-bar ()
2083 (gnus-turn-off-edit-menu 'summary)
2085 (unless (boundp 'gnus-summary-misc-menu)
2087 (easy-menu-define
2088 gnus-summary-kill-menu gnus-summary-mode-map ""
2089 (cons
2090 "Score"
2091 (nconc
2092 (list
2093 ["Customize" gnus-score-customize t])
2094 (gnus-make-score-map 'increase)
2095 (gnus-make-score-map 'lower)
2096 '(("Mark"
2097 ["Kill below" gnus-summary-kill-below t]
2098 ["Mark above" gnus-summary-mark-above t]
2099 ["Tick above" gnus-summary-tick-above t]
2100 ["Clear above" gnus-summary-clear-above t])
2101 ["Current score" gnus-summary-current-score t]
2102 ["Set score" gnus-summary-set-score t]
2103 ["Switch current score file..." gnus-score-change-score-file t]
2104 ["Set mark below..." gnus-score-set-mark-below t]
2105 ["Set expunge below..." gnus-score-set-expunge-below t]
2106 ["Edit current score file" gnus-score-edit-current-scores t]
2107 ["Edit score file" gnus-score-edit-file t]
2108 ["Trace score" gnus-score-find-trace t]
2109 ["Find words" gnus-score-find-favourite-words t]
2110 ["Rescore buffer" gnus-summary-rescore t]
2111 ["Increase score..." gnus-summary-increase-score t]
2112 ["Lower score..." gnus-summary-lower-score t]))))
2114 ;; Define both the Article menu in the summary buffer and the
2115 ;; equivalent Commands menu in the article buffer here for
2116 ;; consistency.
2117 (let ((innards
2118 `(("Hide"
2119 ["All" gnus-article-hide t]
2120 ["Headers" gnus-article-hide-headers t]
2121 ["Signature" gnus-article-hide-signature t]
2122 ["Citation" gnus-article-hide-citation t]
2123 ["List identifiers" gnus-article-hide-list-identifiers t]
2124 ["Banner" gnus-article-strip-banner t]
2125 ["Boring headers" gnus-article-hide-boring-headers t])
2126 ("Highlight"
2127 ["All" gnus-article-highlight t]
2128 ["Headers" gnus-article-highlight-headers t]
2129 ["Signature" gnus-article-highlight-signature t]
2130 ["Citation" gnus-article-highlight-citation t])
2131 ("MIME"
2132 ["Words" gnus-article-decode-mime-words t]
2133 ["Charset" gnus-article-decode-charset t]
2134 ["QP" gnus-article-de-quoted-unreadable t]
2135 ["Base64" gnus-article-de-base64-unreadable t]
2136 ["View MIME buttons" gnus-summary-display-buttonized t]
2137 ["View all" gnus-mime-view-all-parts t]
2138 ["Verify and Decrypt" gnus-summary-force-verify-and-decrypt t]
2139 ["Encrypt body" gnus-article-encrypt-body
2140 :active (not (gnus-group-read-only-p))
2141 ,@(if (featurep 'xemacs) nil
2142 '(:help "Encrypt the message body on disk"))]
2143 ["Extract all parts..." gnus-summary-save-parts t]
2144 ("Multipart"
2145 ["Repair multipart" gnus-summary-repair-multipart t]
2146 ["Pipe part..." gnus-article-pipe-part t]
2147 ["Inline part" gnus-article-inline-part t]
2148 ["Encrypt body" gnus-article-encrypt-body
2149 :active (not (gnus-group-read-only-p))
2150 ,@(if (featurep 'xemacs) nil
2151 '(:help "Encrypt the message body on disk"))]
2152 ["View part externally" gnus-article-view-part-externally t]
2153 ["View part with charset..." gnus-article-view-part-as-charset t]
2154 ["Copy part" gnus-article-copy-part t]
2155 ["Save part..." gnus-article-save-part t]
2156 ["View part" gnus-article-view-part t]))
2157 ("Date"
2158 ["Local" gnus-article-date-local t]
2159 ["ISO8601" gnus-article-date-iso8601 t]
2160 ["UT" gnus-article-date-ut t]
2161 ["Original" gnus-article-date-original t]
2162 ["Lapsed" gnus-article-date-lapsed t]
2163 ["User-defined" gnus-article-date-user t])
2164 ("Display"
2165 ["Remove images" gnus-article-remove-images t]
2166 ["Toggle smiley" gnus-treat-smiley t]
2167 ["Show X-Face" gnus-article-display-x-face t]
2168 ["Show picons in From" gnus-treat-from-picon t]
2169 ["Show picons in mail headers" gnus-treat-mail-picon t]
2170 ["Show picons in news headers" gnus-treat-newsgroups-picon t]
2171 ("View as different encoding"
2172 ,@(gnus-summary-menu-split
2173 (mapcar
2174 (lambda (cs)
2175 ;; Since easymenu under Emacs doesn't allow
2176 ;; lambda forms for menu commands, we should
2177 ;; provide intern'ed function symbols.
2178 (let ((command (intern (format "\
2179 gnus-summary-show-article-from-menu-as-charset-%s" cs))))
2180 (fset command
2181 `(lambda ()
2182 (interactive)
2183 (let ((gnus-summary-show-article-charset-alist
2184 '((1 . ,cs))))
2185 (gnus-summary-show-article 1))))
2186 `[,(symbol-name cs) ,command t]))
2187 (sort (if (fboundp 'coding-system-list)
2188 (coding-system-list)
2189 (mapcar 'car mm-mime-mule-charset-alist))
2190 'string<)))))
2191 ("Washing"
2192 ("Remove Blanks"
2193 ["Leading" gnus-article-strip-leading-blank-lines t]
2194 ["Multiple" gnus-article-strip-multiple-blank-lines t]
2195 ["Trailing" gnus-article-remove-trailing-blank-lines t]
2196 ["All of the above" gnus-article-strip-blank-lines t]
2197 ["All" gnus-article-strip-all-blank-lines t]
2198 ["Leading space" gnus-article-strip-leading-space t]
2199 ["Trailing space" gnus-article-strip-trailing-space t]
2200 ["Leading space in headers"
2201 gnus-article-remove-leading-whitespace t])
2202 ["Overstrike" gnus-article-treat-overstrike t]
2203 ["Dumb quotes" gnus-article-treat-dumbquotes t]
2204 ["Emphasis" gnus-article-emphasize t]
2205 ["Word wrap" gnus-article-fill-cited-article t]
2206 ["Fill long lines" gnus-article-fill-long-lines t]
2207 ["Capitalize sentences" gnus-article-capitalize-sentences t]
2208 ["Remove CR" gnus-article-remove-cr t]
2209 ["Quoted-Printable" gnus-article-de-quoted-unreadable t]
2210 ["Base64" gnus-article-de-base64-unreadable t]
2211 ["Rot 13" gnus-summary-caesar-message
2212 ,@(if (featurep 'xemacs) '(t)
2213 '(:help "\"Caesar rotate\" article by 13"))]
2214 ["Morse decode" gnus-summary-morse-message t]
2215 ["Unix pipe..." gnus-summary-pipe-message t]
2216 ["Add buttons" gnus-article-add-buttons t]
2217 ["Add buttons to head" gnus-article-add-buttons-to-head t]
2218 ["Stop page breaking" gnus-summary-stop-page-breaking t]
2219 ["Verbose header" gnus-summary-verbose-headers t]
2220 ["Toggle header" gnus-summary-toggle-header t]
2221 ["Unfold headers" gnus-article-treat-unfold-headers t]
2222 ["Fold newsgroups" gnus-article-treat-fold-newsgroups t]
2223 ["Html" gnus-article-wash-html t]
2224 ["Unsplit URLs" gnus-article-unsplit-urls t]
2225 ["Verify X-PGP-Sig" gnus-article-verify-x-pgp-sig t]
2226 ["Decode HZ" gnus-article-decode-HZ t]
2227 ("(Outlook) Deuglify"
2228 ["Unwrap lines" gnus-article-outlook-unwrap-lines t]
2229 ["Repair attribution" gnus-article-outlook-repair-attribution t]
2230 ["Rearrange citation" gnus-article-outlook-rearrange-citation t]
2231 ["Full (Outlook) deuglify"
2232 gnus-article-outlook-deuglify-article t])
2234 ("Output"
2235 ["Save in default format..." gnus-summary-save-article
2236 ,@(if (featurep 'xemacs) '(t)
2237 '(:help "Save article using default method"))]
2238 ["Save in file..." gnus-summary-save-article-file
2239 ,@(if (featurep 'xemacs) '(t)
2240 '(:help "Save article in file"))]
2241 ["Save in Unix mail format..." gnus-summary-save-article-mail t]
2242 ["Save in MH folder..." gnus-summary-save-article-folder t]
2243 ["Save in VM folder..." gnus-summary-save-article-vm t]
2244 ["Save in RMAIL mbox..." gnus-summary-save-article-rmail t]
2245 ["Save body in file..." gnus-summary-save-article-body-file t]
2246 ["Pipe through a filter..." gnus-summary-pipe-output t]
2247 ["Add to SOUP packet" gnus-soup-add-article t]
2248 ["Print with Muttprint..." gnus-summary-muttprint t]
2249 ["Print" gnus-summary-print-article
2250 ,@(if (featurep 'xemacs) '(t)
2251 '(:help "Generate and print a PostScript image"))])
2252 ("Copy, move,... (Backend)"
2253 ,@(if (featurep 'xemacs) '(t)
2254 '(:help "Copying, moving, expiring articles..."))
2255 ["Respool article..." gnus-summary-respool-article t]
2256 ["Move article..." gnus-summary-move-article
2257 (gnus-check-backend-function
2258 'request-move-article gnus-newsgroup-name)]
2259 ["Copy article..." gnus-summary-copy-article t]
2260 ["Crosspost article..." gnus-summary-crosspost-article
2261 (gnus-check-backend-function
2262 'request-replace-article gnus-newsgroup-name)]
2263 ["Import file..." gnus-summary-import-article
2264 (gnus-check-backend-function
2265 'request-accept-article gnus-newsgroup-name)]
2266 ["Create article..." gnus-summary-create-article
2267 (gnus-check-backend-function
2268 'request-accept-article gnus-newsgroup-name)]
2269 ["Check if posted" gnus-summary-article-posted-p t]
2270 ["Edit article" gnus-summary-edit-article
2271 (not (gnus-group-read-only-p))]
2272 ["Delete article" gnus-summary-delete-article
2273 (gnus-check-backend-function
2274 'request-expire-articles gnus-newsgroup-name)]
2275 ["Query respool" gnus-summary-respool-query t]
2276 ["Trace respool" gnus-summary-respool-trace t]
2277 ["Delete expirable articles" gnus-summary-expire-articles-now
2278 (gnus-check-backend-function
2279 'request-expire-articles gnus-newsgroup-name)])
2280 ("Extract"
2281 ["Uudecode" gnus-uu-decode-uu
2282 ,@(if (featurep 'xemacs) '(t)
2283 '(:help "Decode uuencoded article(s)"))]
2284 ["Uudecode and save" gnus-uu-decode-uu-and-save t]
2285 ["Unshar" gnus-uu-decode-unshar t]
2286 ["Unshar and save" gnus-uu-decode-unshar-and-save t]
2287 ["Save" gnus-uu-decode-save t]
2288 ["Binhex" gnus-uu-decode-binhex t]
2289 ["Postscript" gnus-uu-decode-postscript t]
2290 ["All MIME parts" gnus-summary-save-parts t])
2291 ("Cache"
2292 ["Enter article" gnus-cache-enter-article t]
2293 ["Remove article" gnus-cache-remove-article t])
2294 ["Translate" gnus-article-babel t]
2295 ["Select article buffer" gnus-summary-select-article-buffer t]
2296 ["Enter digest buffer" gnus-summary-enter-digest-group t]
2297 ["Isearch article..." gnus-summary-isearch-article t]
2298 ["Beginning of the article" gnus-summary-beginning-of-article t]
2299 ["End of the article" gnus-summary-end-of-article t]
2300 ["Fetch parent of article" gnus-summary-refer-parent-article t]
2301 ["Fetch referenced articles" gnus-summary-refer-references t]
2302 ["Fetch current thread" gnus-summary-refer-thread t]
2303 ["Fetch article with id..." gnus-summary-refer-article t]
2304 ["Setup Mailing List Params" gnus-mailing-list-insinuate t]
2305 ["Redisplay" gnus-summary-show-article t]
2306 ["Raw article" gnus-summary-show-raw-article :keys "C-u g"])))
2307 (easy-menu-define
2308 gnus-summary-article-menu gnus-summary-mode-map ""
2309 (cons "Article" innards))
2311 (if (not (keymapp gnus-summary-article-menu))
2312 (easy-menu-define
2313 gnus-article-commands-menu gnus-article-mode-map ""
2314 (cons "Commands" innards))
2315 ;; in Emacs, don't share menu.
2316 (setq gnus-article-commands-menu
2317 (copy-keymap gnus-summary-article-menu))
2318 (define-key gnus-article-mode-map [menu-bar commands]
2319 (cons "Commands" gnus-article-commands-menu))))
2321 (easy-menu-define
2322 gnus-summary-thread-menu gnus-summary-mode-map ""
2323 '("Threads"
2324 ["Find all messages in thread" gnus-summary-refer-thread t]
2325 ["Toggle threading" gnus-summary-toggle-threads t]
2326 ["Hide threads" gnus-summary-hide-all-threads t]
2327 ["Show threads" gnus-summary-show-all-threads t]
2328 ["Hide thread" gnus-summary-hide-thread t]
2329 ["Show thread" gnus-summary-show-thread t]
2330 ["Go to next thread" gnus-summary-next-thread t]
2331 ["Go to previous thread" gnus-summary-prev-thread t]
2332 ["Go down thread" gnus-summary-down-thread t]
2333 ["Go up thread" gnus-summary-up-thread t]
2334 ["Top of thread" gnus-summary-top-thread t]
2335 ["Mark thread as read" gnus-summary-kill-thread t]
2336 ["Lower thread score" gnus-summary-lower-thread t]
2337 ["Raise thread score" gnus-summary-raise-thread t]
2338 ["Rethread current" gnus-summary-rethread-current t]))
2340 (easy-menu-define
2341 gnus-summary-post-menu gnus-summary-mode-map ""
2342 `("Post"
2343 ["Send a message (mail or news)" gnus-summary-post-news
2344 ,@(if (featurep 'xemacs) '(t)
2345 '(:help "Compose a new message (mail or news)"))]
2346 ["Followup" gnus-summary-followup
2347 ,@(if (featurep 'xemacs) '(t)
2348 '(:help "Post followup to this article"))]
2349 ["Followup and yank" gnus-summary-followup-with-original
2350 ,@(if (featurep 'xemacs) '(t)
2351 '(:help "Post followup to this article, quoting its contents"))]
2352 ["Supersede article" gnus-summary-supersede-article t]
2353 ["Cancel article" gnus-summary-cancel-article
2354 ,@(if (featurep 'xemacs) '(t)
2355 '(:help "Cancel an article you posted"))]
2356 ["Reply" gnus-summary-reply t]
2357 ["Reply and yank" gnus-summary-reply-with-original t]
2358 ["Wide reply" gnus-summary-wide-reply t]
2359 ["Wide reply and yank" gnus-summary-wide-reply-with-original
2360 ,@(if (featurep 'xemacs) '(t)
2361 '(:help "Mail a reply, quoting this article"))]
2362 ["Very wide reply" gnus-summary-very-wide-reply t]
2363 ["Very wide reply and yank" gnus-summary-very-wide-reply-with-original
2364 ,@(if (featurep 'xemacs) '(t)
2365 '(:help "Mail a very wide reply, quoting this article"))]
2366 ["Mail forward" gnus-summary-mail-forward t]
2367 ["Post forward" gnus-summary-post-forward t]
2368 ["Digest and mail" gnus-uu-digest-mail-forward t]
2369 ["Digest and post" gnus-uu-digest-post-forward t]
2370 ["Resend message" gnus-summary-resend-message t]
2371 ["Resend message edit" gnus-summary-resend-message-edit t]
2372 ["Send bounced mail" gnus-summary-resend-bounced-mail t]
2373 ["Send a mail" gnus-summary-mail-other-window t]
2374 ["Create a local message" gnus-summary-news-other-window t]
2375 ["Uuencode and post" gnus-uu-post-news
2376 ,@(if (featurep 'xemacs) '(t)
2377 '(:help "Post a uuencoded article"))]
2378 ["Followup via news" gnus-summary-followup-to-mail t]
2379 ["Followup via news and yank"
2380 gnus-summary-followup-to-mail-with-original t]
2381 ;;("Draft"
2382 ;;["Send" gnus-summary-send-draft t]
2383 ;;["Send bounced" gnus-resend-bounced-mail t])
2386 (cond
2387 ((not (keymapp gnus-summary-post-menu))
2388 (setq gnus-article-post-menu gnus-summary-post-menu))
2389 ((not gnus-article-post-menu)
2390 ;; Don't share post menu.
2391 (setq gnus-article-post-menu
2392 (copy-keymap gnus-summary-post-menu))))
2393 (define-key gnus-article-mode-map [menu-bar post]
2394 (cons "Post" gnus-article-post-menu))
2396 (easy-menu-define
2397 gnus-summary-misc-menu gnus-summary-mode-map ""
2398 `("Gnus"
2399 ("Mark Read"
2400 ["Mark as read" gnus-summary-mark-as-read-forward t]
2401 ["Mark same subject and select"
2402 gnus-summary-kill-same-subject-and-select t]
2403 ["Mark same subject" gnus-summary-kill-same-subject t]
2404 ["Catchup" gnus-summary-catchup
2405 ,@(if (featurep 'xemacs) '(t)
2406 '(:help "Mark unread articles in this group as read"))]
2407 ["Catchup all" gnus-summary-catchup-all t]
2408 ["Catchup to here" gnus-summary-catchup-to-here t]
2409 ["Catchup from here" gnus-summary-catchup-from-here t]
2410 ["Catchup region" gnus-summary-mark-region-as-read
2411 (gnus-mark-active-p)]
2412 ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t])
2413 ("Mark Various"
2414 ["Tick" gnus-summary-tick-article-forward t]
2415 ["Mark as dormant" gnus-summary-mark-as-dormant t]
2416 ["Remove marks" gnus-summary-clear-mark-forward t]
2417 ["Set expirable mark" gnus-summary-mark-as-expirable t]
2418 ["Set bookmark" gnus-summary-set-bookmark t]
2419 ["Remove bookmark" gnus-summary-remove-bookmark t])
2420 ("Limit to"
2421 ["Marks..." gnus-summary-limit-to-marks t]
2422 ["Subject..." gnus-summary-limit-to-subject t]
2423 ["Author..." gnus-summary-limit-to-author t]
2424 ["Age..." gnus-summary-limit-to-age t]
2425 ["Extra..." gnus-summary-limit-to-extra t]
2426 ["Score..." gnus-summary-limit-to-score t]
2427 ["Display Predicate" gnus-summary-limit-to-display-predicate t]
2428 ["Unread" gnus-summary-limit-to-unread t]
2429 ["Unseen" gnus-summary-limit-to-unseen t]
2430 ["Non-dormant" gnus-summary-limit-exclude-dormant t]
2431 ["Next articles" gnus-summary-limit-to-articles t]
2432 ["Pop limit" gnus-summary-pop-limit t]
2433 ["Show dormant" gnus-summary-limit-include-dormant t]
2434 ["Hide childless dormant"
2435 gnus-summary-limit-exclude-childless-dormant t]
2436 ;;["Hide thread" gnus-summary-limit-exclude-thread t]
2437 ["Hide marked" gnus-summary-limit-exclude-marks t]
2438 ["Show expunged" gnus-summary-limit-include-expunged t])
2439 ("Process Mark"
2440 ["Set mark" gnus-summary-mark-as-processable t]
2441 ["Remove mark" gnus-summary-unmark-as-processable t]
2442 ["Remove all marks" gnus-summary-unmark-all-processable t]
2443 ["Mark above" gnus-uu-mark-over t]
2444 ["Mark series" gnus-uu-mark-series t]
2445 ["Mark region" gnus-uu-mark-region (gnus-mark-active-p)]
2446 ["Unmark region" gnus-uu-unmark-region (gnus-mark-active-p)]
2447 ["Mark by regexp..." gnus-uu-mark-by-regexp t]
2448 ["Unmark by regexp..." gnus-uu-unmark-by-regexp t]
2449 ["Mark all" gnus-uu-mark-all t]
2450 ["Mark buffer" gnus-uu-mark-buffer t]
2451 ["Mark sparse" gnus-uu-mark-sparse t]
2452 ["Mark thread" gnus-uu-mark-thread t]
2453 ["Unmark thread" gnus-uu-unmark-thread t]
2454 ("Process Mark Sets"
2455 ["Kill" gnus-summary-kill-process-mark t]
2456 ["Yank" gnus-summary-yank-process-mark
2457 gnus-newsgroup-process-stack]
2458 ["Save" gnus-summary-save-process-mark t]
2459 ["Run command on marked..." gnus-summary-universal-argument t]))
2460 ("Scroll article"
2461 ["Page forward" gnus-summary-next-page
2462 ,@(if (featurep 'xemacs) '(t)
2463 '(:help "Show next page of article"))]
2464 ["Page backward" gnus-summary-prev-page
2465 ,@(if (featurep 'xemacs) '(t)
2466 '(:help "Show previous page of article"))]
2467 ["Line forward" gnus-summary-scroll-up t])
2468 ("Move"
2469 ["Next unread article" gnus-summary-next-unread-article t]
2470 ["Previous unread article" gnus-summary-prev-unread-article t]
2471 ["Next article" gnus-summary-next-article t]
2472 ["Previous article" gnus-summary-prev-article t]
2473 ["Next unread subject" gnus-summary-next-unread-subject t]
2474 ["Previous unread subject" gnus-summary-prev-unread-subject t]
2475 ["Next article same subject" gnus-summary-next-same-subject t]
2476 ["Previous article same subject" gnus-summary-prev-same-subject t]
2477 ["First unread article" gnus-summary-first-unread-article t]
2478 ["Best unread article" gnus-summary-best-unread-article t]
2479 ["Go to subject number..." gnus-summary-goto-subject t]
2480 ["Go to article number..." gnus-summary-goto-article t]
2481 ["Go to the last article" gnus-summary-goto-last-article t]
2482 ["Pop article off history" gnus-summary-pop-article t])
2483 ("Sort"
2484 ["Sort by number" gnus-summary-sort-by-number t]
2485 ["Sort by author" gnus-summary-sort-by-author t]
2486 ["Sort by subject" gnus-summary-sort-by-subject t]
2487 ["Sort by date" gnus-summary-sort-by-date t]
2488 ["Sort by score" gnus-summary-sort-by-score t]
2489 ["Sort by lines" gnus-summary-sort-by-lines t]
2490 ["Sort by characters" gnus-summary-sort-by-chars t]
2491 ["Randomize" gnus-summary-sort-by-random t]
2492 ["Original sort" gnus-summary-sort-by-original t])
2493 ("Help"
2494 ["Fetch group FAQ" gnus-summary-fetch-faq t]
2495 ["Describe group" gnus-summary-describe-group t]
2496 ["Fetch charter" gnus-group-fetch-charter
2497 ,@(if (featurep 'xemacs) nil
2498 '(:help "Display the charter of the current group"))]
2499 ["Fetch control message" gnus-group-fetch-control
2500 ,@(if (featurep 'xemacs) nil
2501 '(:help "Display the archived control message for the current group"))]
2502 ["Read manual" gnus-info-find-node t])
2503 ("Modes"
2504 ["Pick and read" gnus-pick-mode t]
2505 ["Binary" gnus-binary-mode t])
2506 ("Regeneration"
2507 ["Regenerate" gnus-summary-prepare t]
2508 ["Insert cached articles" gnus-summary-insert-cached-articles t]
2509 ["Insert dormant articles" gnus-summary-insert-dormant-articles t]
2510 ["Toggle threading" gnus-summary-toggle-threads t])
2511 ["See old articles" gnus-summary-insert-old-articles t]
2512 ["See new articles" gnus-summary-insert-new-articles t]
2513 ["Filter articles..." gnus-summary-execute-command t]
2514 ["Run command on articles..." gnus-summary-universal-argument t]
2515 ["Search articles forward..." gnus-summary-search-article-forward t]
2516 ["Search articles backward..." gnus-summary-search-article-backward t]
2517 ["Toggle line truncation" gnus-summary-toggle-truncation t]
2518 ["Expand window" gnus-summary-expand-window t]
2519 ["Expire expirable articles" gnus-summary-expire-articles
2520 (gnus-check-backend-function
2521 'request-expire-articles gnus-newsgroup-name)]
2522 ["Edit local kill file" gnus-summary-edit-local-kill t]
2523 ["Edit main kill file" gnus-summary-edit-global-kill t]
2524 ["Edit group parameters" gnus-summary-edit-parameters t]
2525 ["Customize group parameters" gnus-summary-customize-parameters t]
2526 ["Send a bug report" gnus-bug t]
2527 ("Exit"
2528 ["Catchup and exit" gnus-summary-catchup-and-exit
2529 ,@(if (featurep 'xemacs) '(t)
2530 '(:help "Mark unread articles in this group as read, then exit"))]
2531 ["Catchup all and exit" gnus-summary-catchup-all-and-exit t]
2532 ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t]
2533 ["Exit group" gnus-summary-exit
2534 ,@(if (featurep 'xemacs) '(t)
2535 '(:help "Exit current group, return to group selection mode"))]
2536 ["Exit group without updating" gnus-summary-exit-no-update t]
2537 ["Exit and goto next group" gnus-summary-next-group t]
2538 ["Exit and goto prev group" gnus-summary-prev-group t]
2539 ["Reselect group" gnus-summary-reselect-current-group t]
2540 ["Rescan group" gnus-summary-rescan-group t]
2541 ["Update dribble" gnus-summary-save-newsrc t])))
2543 (gnus-run-hooks 'gnus-summary-menu-hook)))
2545 (defvar gnus-summary-tool-bar-map nil)
2547 ;; Emacs 21 tool bar. Should be no-op otherwise.
2548 (defun gnus-summary-make-tool-bar ()
2549 (if (and (fboundp 'tool-bar-add-item-from-menu)
2550 (default-value 'tool-bar-mode)
2551 (not gnus-summary-tool-bar-map))
2552 (setq gnus-summary-tool-bar-map
2553 (let ((tool-bar-map (make-sparse-keymap))
2554 (load-path (mm-image-load-path)))
2555 (tool-bar-add-item-from-menu
2556 'gnus-summary-prev-unread "prev-ur" gnus-summary-mode-map)
2557 (tool-bar-add-item-from-menu
2558 'gnus-summary-next-unread "next-ur" gnus-summary-mode-map)
2559 (tool-bar-add-item-from-menu
2560 'gnus-summary-post-news "post" gnus-summary-mode-map)
2561 (tool-bar-add-item-from-menu
2562 'gnus-summary-followup-with-original "fuwo" gnus-summary-mode-map)
2563 (tool-bar-add-item-from-menu
2564 'gnus-summary-followup "followup" gnus-summary-mode-map)
2565 (tool-bar-add-item-from-menu
2566 'gnus-summary-reply-with-original "reply-wo" gnus-summary-mode-map)
2567 (tool-bar-add-item-from-menu
2568 'gnus-summary-reply "reply" gnus-summary-mode-map)
2569 (tool-bar-add-item-from-menu
2570 'gnus-summary-caesar-message "rot13" gnus-summary-mode-map)
2571 (tool-bar-add-item-from-menu
2572 'gnus-uu-decode-uu "uu-decode" gnus-summary-mode-map)
2573 (tool-bar-add-item-from-menu
2574 'gnus-summary-save-article-file "save-aif" gnus-summary-mode-map)
2575 (tool-bar-add-item-from-menu
2576 'gnus-summary-save-article "save-art" gnus-summary-mode-map)
2577 (tool-bar-add-item-from-menu
2578 'gnus-uu-post-news "uu-post" gnus-summary-mode-map)
2579 (tool-bar-add-item-from-menu
2580 'gnus-summary-catchup "catchup" gnus-summary-mode-map)
2581 (tool-bar-add-item-from-menu
2582 'gnus-summary-catchup-and-exit "cu-exit" gnus-summary-mode-map)
2583 (tool-bar-add-item-from-menu
2584 'gnus-summary-exit "exit-summ" gnus-summary-mode-map)
2585 tool-bar-map)))
2586 (if gnus-summary-tool-bar-map
2587 (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map)))
2589 (defun gnus-score-set-default (var value)
2590 "A version of set that updates the GNU Emacs menu-bar."
2591 (set var value)
2592 ;; It is the message that forces the active status to be updated.
2593 (message ""))
2595 (defun gnus-make-score-map (type)
2596 "Make a summary score map of type TYPE."
2597 (if t
2599 (let ((headers '(("author" "from" string)
2600 ("subject" "subject" string)
2601 ("article body" "body" string)
2602 ("article head" "head" string)
2603 ("xref" "xref" string)
2604 ("extra header" "extra" string)
2605 ("lines" "lines" number)
2606 ("followups to author" "followup" string)))
2607 (types '((number ("less than" <)
2608 ("greater than" >)
2609 ("equal" =))
2610 (string ("substring" s)
2611 ("exact string" e)
2612 ("fuzzy string" f)
2613 ("regexp" r))))
2614 (perms '(("temporary" (current-time-string))
2615 ("permanent" nil)
2616 ("immediate" now)))
2617 header)
2618 (list
2619 (apply
2620 'nconc
2621 (list
2622 (if (eq type 'lower)
2623 "Lower score"
2624 "Increase score"))
2625 (let (outh)
2626 (while headers
2627 (setq header (car headers))
2628 (setq outh
2629 (cons
2630 (apply
2631 'nconc
2632 (list (car header))
2633 (let ((ts (cdr (assoc (nth 2 header) types)))
2634 outt)
2635 (while ts
2636 (setq outt
2637 (cons
2638 (apply
2639 'nconc
2640 (list (caar ts))
2641 (let ((ps perms)
2642 outp)
2643 (while ps
2644 (setq outp
2645 (cons
2646 (vector
2647 (caar ps)
2648 (list
2649 'gnus-summary-score-entry
2650 (nth 1 header)
2651 (if (or (string= (nth 1 header)
2652 "head")
2653 (string= (nth 1 header)
2654 "body"))
2656 (list 'gnus-summary-header
2657 (nth 1 header)))
2658 (list 'quote (nth 1 (car ts)))
2659 (list 'gnus-score-delta-default
2660 nil)
2661 (nth 1 (car ps))
2664 outp))
2665 (setq ps (cdr ps)))
2666 (list (nreverse outp))))
2667 outt))
2668 (setq ts (cdr ts)))
2669 (list (nreverse outt))))
2670 outh))
2671 (setq headers (cdr headers)))
2672 (list (nreverse outh))))))))
2676 (defun gnus-summary-mode (&optional group)
2677 "Major mode for reading articles.
2679 All normal editing commands are switched off.
2680 \\<gnus-summary-mode-map>
2681 Each line in this buffer represents one article. To read an
2682 article, you can, for instance, type `\\[gnus-summary-next-page]'. To move forwards
2683 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]',
2684 respectively.
2686 You can also post articles and send mail from this buffer. To
2687 follow up an article, type `\\[gnus-summary-followup]'. To mail a reply to the author
2688 of an article, type `\\[gnus-summary-reply]'.
2690 There are approx. one gazillion commands you can execute in this
2691 buffer; read the info pages for more information (`\\[gnus-info-find-node]').
2693 The following commands are available:
2695 \\{gnus-summary-mode-map}"
2696 (interactive)
2697 (kill-all-local-variables)
2698 (when (gnus-visual-p 'summary-menu 'menu)
2699 (gnus-summary-make-menu-bar)
2700 (gnus-summary-make-tool-bar))
2701 (gnus-summary-make-local-variables)
2702 (let ((gnus-summary-local-variables gnus-newsgroup-variables))
2703 (gnus-summary-make-local-variables))
2704 (gnus-make-thread-indent-array)
2705 (gnus-simplify-mode-line)
2706 (setq major-mode 'gnus-summary-mode)
2707 (setq mode-name "Summary")
2708 (make-local-variable 'minor-mode-alist)
2709 (use-local-map gnus-summary-mode-map)
2710 (buffer-disable-undo)
2711 (setq buffer-read-only t) ;Disable modification
2712 (setq truncate-lines t)
2713 (setq selective-display t)
2714 (setq selective-display-ellipses t) ;Display `...'
2715 (gnus-summary-set-display-table)
2716 (gnus-set-default-directory)
2717 (setq gnus-newsgroup-name group)
2718 (make-local-variable 'gnus-summary-line-format)
2719 (make-local-variable 'gnus-summary-line-format-spec)
2720 (make-local-variable 'gnus-summary-dummy-line-format)
2721 (make-local-variable 'gnus-summary-dummy-line-format-spec)
2722 (make-local-variable 'gnus-summary-mark-positions)
2723 (gnus-make-local-hook 'pre-command-hook)
2724 (add-hook 'pre-command-hook 'gnus-set-global-variables nil t)
2725 (gnus-run-hooks 'gnus-summary-mode-hook)
2726 (turn-on-gnus-mailing-list-mode)
2727 (mm-enable-multibyte)
2728 (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy)
2729 (gnus-update-summary-mark-positions))
2731 (defun gnus-summary-make-local-variables ()
2732 "Make all the local summary buffer variables."
2733 (let (global)
2734 (dolist (local gnus-summary-local-variables)
2735 (if (consp local)
2736 (progn
2737 (if (eq (cdr local) 'global)
2738 ;; Copy the global value of the variable.
2739 (setq global (symbol-value (car local)))
2740 ;; Use the value from the list.
2741 (setq global (eval (cdr local))))
2742 (set (make-local-variable (car local)) global))
2743 ;; Simple nil-valued local variable.
2744 (set (make-local-variable local) nil)))))
2746 (defun gnus-summary-clear-local-variables ()
2747 (let ((locals gnus-summary-local-variables))
2748 (while locals
2749 (if (consp (car locals))
2750 (and (vectorp (caar locals))
2751 (set (caar locals) nil))
2752 (and (vectorp (car locals))
2753 (set (car locals) nil)))
2754 (setq locals (cdr locals)))))
2756 ;; Summary data functions.
2758 (defmacro gnus-data-number (data)
2759 `(car ,data))
2761 (defmacro gnus-data-set-number (data number)
2762 `(setcar ,data ,number))
2764 (defmacro gnus-data-mark (data)
2765 `(nth 1 ,data))
2767 (defmacro gnus-data-set-mark (data mark)
2768 `(setcar (nthcdr 1 ,data) ,mark))
2770 (defmacro gnus-data-pos (data)
2771 `(nth 2 ,data))
2773 (defmacro gnus-data-set-pos (data pos)
2774 `(setcar (nthcdr 2 ,data) ,pos))
2776 (defmacro gnus-data-header (data)
2777 `(nth 3 ,data))
2779 (defmacro gnus-data-set-header (data header)
2780 `(setf (nth 3 ,data) ,header))
2782 (defmacro gnus-data-level (data)
2783 `(nth 4 ,data))
2785 (defmacro gnus-data-unread-p (data)
2786 `(= (nth 1 ,data) gnus-unread-mark))
2788 (defmacro gnus-data-read-p (data)
2789 `(/= (nth 1 ,data) gnus-unread-mark))
2791 (defmacro gnus-data-pseudo-p (data)
2792 `(consp (nth 3 ,data)))
2794 (defmacro gnus-data-find (number)
2795 `(assq ,number gnus-newsgroup-data))
2797 (defmacro gnus-data-find-list (number &optional data)
2798 `(let ((bdata ,(or data 'gnus-newsgroup-data)))
2799 (memq (assq ,number bdata)
2800 bdata)))
2802 (defmacro gnus-data-make (number mark pos header level)
2803 `(list ,number ,mark ,pos ,header ,level))
2805 (defun gnus-data-enter (after-article number mark pos header level offset)
2806 (let ((data (gnus-data-find-list after-article)))
2807 (unless data
2808 (error "No such article: %d" after-article))
2809 (setcdr data (cons (gnus-data-make number mark pos header level)
2810 (cdr data)))
2811 (setq gnus-newsgroup-data-reverse nil)
2812 (gnus-data-update-list (cddr data) offset)))
2814 (defun gnus-data-enter-list (after-article list &optional offset)
2815 (when list
2816 (let ((data (and after-article (gnus-data-find-list after-article)))
2817 (ilist list))
2818 (if (not (or data
2819 after-article))
2820 (let ((odata gnus-newsgroup-data))
2821 (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data))
2822 (when offset
2823 (gnus-data-update-list odata offset)))
2824 ;; Find the last element in the list to be spliced into the main
2825 ;; list.
2826 (while (cdr list)
2827 (setq list (cdr list)))
2828 (if (not data)
2829 (progn
2830 (setcdr list gnus-newsgroup-data)
2831 (setq gnus-newsgroup-data ilist)
2832 (when offset
2833 (gnus-data-update-list (cdr list) offset)))
2834 (setcdr list (cdr data))
2835 (setcdr data ilist)
2836 (when offset
2837 (gnus-data-update-list (cdr list) offset))))
2838 (setq gnus-newsgroup-data-reverse nil))))
2840 (defun gnus-data-remove (article &optional offset)
2841 (let ((data gnus-newsgroup-data))
2842 (if (= (gnus-data-number (car data)) article)
2843 (progn
2844 (setq gnus-newsgroup-data (cdr gnus-newsgroup-data)
2845 gnus-newsgroup-data-reverse nil)
2846 (when offset
2847 (gnus-data-update-list gnus-newsgroup-data offset)))
2848 (while (cdr data)
2849 (when (= (gnus-data-number (cadr data)) article)
2850 (setcdr data (cddr data))
2851 (when offset
2852 (gnus-data-update-list (cdr data) offset))
2853 (setq data nil
2854 gnus-newsgroup-data-reverse nil))
2855 (setq data (cdr data))))))
2857 (defmacro gnus-data-list (backward)
2858 `(if ,backward
2859 (or gnus-newsgroup-data-reverse
2860 (setq gnus-newsgroup-data-reverse
2861 (reverse gnus-newsgroup-data)))
2862 gnus-newsgroup-data))
2864 (defun gnus-data-update-list (data offset)
2865 "Add OFFSET to the POS of all data entries in DATA."
2866 (setq gnus-newsgroup-data-reverse nil)
2867 (while data
2868 (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data))))
2869 (setq data (cdr data))))
2871 (defun gnus-summary-article-pseudo-p (article)
2872 "Say whether this article is a pseudo article or not."
2873 (not (vectorp (gnus-data-header (gnus-data-find article)))))
2875 (defmacro gnus-summary-article-sparse-p (article)
2876 "Say whether this article is a sparse article or not."
2877 `(memq ,article gnus-newsgroup-sparse))
2879 (defmacro gnus-summary-article-ancient-p (article)
2880 "Say whether this article is a sparse article or not."
2881 `(memq ,article gnus-newsgroup-ancient))
2883 (defun gnus-article-parent-p (number)
2884 "Say whether this article is a parent or not."
2885 (let ((data (gnus-data-find-list number)))
2886 (and (cdr data) ; There has to be an article after...
2887 (< (gnus-data-level (car data)) ; And it has to have a higher level.
2888 (gnus-data-level (nth 1 data))))))
2890 (defun gnus-article-children (number)
2891 "Return a list of all children to NUMBER."
2892 (let* ((data (gnus-data-find-list number))
2893 (level (gnus-data-level (car data)))
2894 children)
2895 (setq data (cdr data))
2896 (while (and data
2897 (= (gnus-data-level (car data)) (1+ level)))
2898 (push (gnus-data-number (car data)) children)
2899 (setq data (cdr data)))
2900 children))
2902 (defmacro gnus-summary-skip-intangible ()
2903 "If the current article is intangible, then jump to a different article."
2904 '(let ((to (get-text-property (point) 'gnus-intangible)))
2905 (and to (gnus-summary-goto-subject to))))
2907 (defmacro gnus-summary-article-intangible-p ()
2908 "Say whether this article is intangible or not."
2909 '(get-text-property (point) 'gnus-intangible))
2911 (defun gnus-article-read-p (article)
2912 "Say whether ARTICLE is read or not."
2913 (not (or (memq article gnus-newsgroup-marked)
2914 (memq article gnus-newsgroup-spam-marked)
2915 (memq article gnus-newsgroup-unreads)
2916 (memq article gnus-newsgroup-unselected)
2917 (memq article gnus-newsgroup-dormant))))
2919 ;; Some summary mode macros.
2921 (defmacro gnus-summary-article-number ()
2922 "The article number of the article on the current line.
2923 If there isn't an article number here, then we return the current
2924 article number."
2925 '(progn
2926 (gnus-summary-skip-intangible)
2927 (or (get-text-property (point) 'gnus-number)
2928 (gnus-summary-last-subject))))
2930 (defmacro gnus-summary-article-header (&optional number)
2931 "Return the header of article NUMBER."
2932 `(gnus-data-header (gnus-data-find
2933 ,(or number '(gnus-summary-article-number)))))
2935 (defmacro gnus-summary-thread-level (&optional number)
2936 "Return the level of thread that starts with article NUMBER."
2937 `(if (and (eq gnus-summary-make-false-root 'dummy)
2938 (get-text-property (point) 'gnus-intangible))
2940 (gnus-data-level (gnus-data-find
2941 ,(or number '(gnus-summary-article-number))))))
2943 (defmacro gnus-summary-article-mark (&optional number)
2944 "Return the mark of article NUMBER."
2945 `(gnus-data-mark (gnus-data-find
2946 ,(or number '(gnus-summary-article-number)))))
2948 (defmacro gnus-summary-article-pos (&optional number)
2949 "Return the position of the line of article NUMBER."
2950 `(gnus-data-pos (gnus-data-find
2951 ,(or number '(gnus-summary-article-number)))))
2953 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject)
2954 (defmacro gnus-summary-article-subject (&optional number)
2955 "Return current subject string or nil if nothing."
2956 `(let ((headers
2957 ,(if number
2958 `(gnus-data-header (assq ,number gnus-newsgroup-data))
2959 '(gnus-data-header (assq (gnus-summary-article-number)
2960 gnus-newsgroup-data)))))
2961 (and headers
2962 (vectorp headers)
2963 (mail-header-subject headers))))
2965 (defmacro gnus-summary-article-score (&optional number)
2966 "Return current article score."
2967 `(or (cdr (assq ,(or number '(gnus-summary-article-number))
2968 gnus-newsgroup-scored))
2969 gnus-summary-default-score 0))
2971 (defun gnus-summary-article-children (&optional number)
2972 "Return a list of article numbers that are children of article NUMBER."
2973 (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))))
2974 (level (gnus-data-level (car data)))
2975 l children)
2976 (while (and (setq data (cdr data))
2977 (> (setq l (gnus-data-level (car data))) level))
2978 (and (= (1+ level) l)
2979 (push (gnus-data-number (car data))
2980 children)))
2981 (nreverse children)))
2983 (defun gnus-summary-article-parent (&optional number)
2984 "Return the article number of the parent of article NUMBER."
2985 (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number))
2986 (gnus-data-list t)))
2987 (level (gnus-data-level (car data))))
2988 (if (zerop level)
2989 () ; This is a root.
2990 ;; We search until we find an article with a level less than
2991 ;; this one. That function has to be the parent.
2992 (while (and (setq data (cdr data))
2993 (not (< (gnus-data-level (car data)) level))))
2994 (and data (gnus-data-number (car data))))))
2996 (defun gnus-unread-mark-p (mark)
2997 "Say whether MARK is the unread mark."
2998 (= mark gnus-unread-mark))
3000 (defun gnus-read-mark-p (mark)
3001 "Say whether MARK is one of the marks that mark as read.
3002 This is all marks except unread, ticked, dormant, and expirable."
3003 (not (or (= mark gnus-unread-mark)
3004 (= mark gnus-ticked-mark)
3005 (= mark gnus-spam-mark)
3006 (= mark gnus-dormant-mark)
3007 (= mark gnus-expirable-mark))))
3009 (defmacro gnus-article-mark (number)
3010 "Return the MARK of article NUMBER.
3011 This macro should only be used when computing the mark the \"first\"
3012 time; i.e., when generating the summary lines. After that,
3013 `gnus-summary-article-mark' should be used to examine the
3014 marks of articles."
3015 `(cond
3016 ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark)
3017 ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark)
3018 ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark)
3019 ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark)
3020 ((memq ,number gnus-newsgroup-spam-marked) gnus-spam-mark)
3021 ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark)
3022 ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark)
3023 (t (or (cdr (assq ,number gnus-newsgroup-reads))
3024 gnus-ancient-mark))))
3026 ;; Saving hidden threads.
3028 (defmacro gnus-save-hidden-threads (&rest forms)
3029 "Save hidden threads, eval FORMS, and restore the hidden threads."
3030 (let ((config (make-symbol "config")))
3031 `(let ((,config (gnus-hidden-threads-configuration)))
3032 (unwind-protect
3033 (save-excursion
3034 ,@forms)
3035 (gnus-restore-hidden-threads-configuration ,config)))))
3036 (put 'gnus-save-hidden-threads 'lisp-indent-function 0)
3037 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body))
3039 (defun gnus-data-compute-positions ()
3040 "Compute the positions of all articles."
3041 (setq gnus-newsgroup-data-reverse nil)
3042 (let ((data gnus-newsgroup-data))
3043 (save-excursion
3044 (gnus-save-hidden-threads
3045 (gnus-summary-show-all-threads)
3046 (goto-char (point-min))
3047 (while data
3048 (while (get-text-property (point) 'gnus-intangible)
3049 (forward-line 1))
3050 (gnus-data-set-pos (car data) (+ (point) 3))
3051 (setq data (cdr data))
3052 (forward-line 1))))))
3054 (defun gnus-hidden-threads-configuration ()
3055 "Return the current hidden threads configuration."
3056 (save-excursion
3057 (let (config)
3058 (goto-char (point-min))
3059 (while (search-forward "\r" nil t)
3060 (push (1- (point)) config))
3061 config)))
3063 (defun gnus-restore-hidden-threads-configuration (config)
3064 "Restore hidden threads configuration from CONFIG."
3065 (save-excursion
3066 (let (point buffer-read-only)
3067 (while (setq point (pop config))
3068 (when (and (< point (point-max))
3069 (goto-char point)
3070 (eq (char-after) ?\n))
3071 (subst-char-in-region point (1+ point) ?\n ?\r))))))
3073 ;; Various summary mode internalish functions.
3075 (defun gnus-mouse-pick-article (e)
3076 (interactive "e")
3077 (mouse-set-point e)
3078 (gnus-summary-next-page nil t))
3080 (defun gnus-summary-set-display-table ()
3081 "Change the display table.
3082 Odd characters have a tendency to mess
3083 up nicely formatted displays - we make all possible glyphs
3084 display only a single character."
3086 ;; We start from the standard display table, if any.
3087 (let ((table (or (copy-sequence standard-display-table)
3088 (make-display-table)))
3089 (i 32))
3090 ;; Nix out all the control chars...
3091 (while (>= (setq i (1- i)) 0)
3092 (aset table i [??]))
3093 ;; ... but not newline and cr, of course. (cr is necessary for the
3094 ;; selective display).
3095 (aset table ?\n nil)
3096 (aset table ?\r nil)
3097 ;; We keep TAB as well.
3098 (aset table ?\t nil)
3099 ;; We nix out any glyphs over 126 that are not set already.
3100 (let ((i 256))
3101 (while (>= (setq i (1- i)) 127)
3102 ;; Only modify if the entry is nil.
3103 (unless (aref table i)
3104 (aset table i [??]))))
3105 (setq buffer-display-table table)))
3107 (defun gnus-summary-set-article-display-arrow (pos)
3108 "Update the overlay arrow to point to line at position POS."
3109 (when (and gnus-summary-display-arrow
3110 (boundp 'overlay-arrow-position)
3111 (boundp 'overlay-arrow-string))
3112 (save-excursion
3113 (goto-char pos)
3114 (beginning-of-line)
3115 (unless overlay-arrow-position
3116 (setq overlay-arrow-position (make-marker)))
3117 (setq overlay-arrow-string "=>"
3118 overlay-arrow-position (set-marker overlay-arrow-position
3119 (point)
3120 (current-buffer))))))
3122 (defun gnus-summary-setup-buffer (group)
3123 "Initialize summary buffer."
3124 (let ((buffer (gnus-summary-buffer-name group))
3125 (dead-name (concat "*Dead Summary "
3126 (gnus-group-decoded-name group) "*")))
3127 ;; If a dead summary buffer exists, we kill it.
3128 (when (gnus-buffer-live-p dead-name)
3129 (gnus-kill-buffer dead-name))
3130 (if (get-buffer buffer)
3131 (progn
3132 (set-buffer buffer)
3133 (setq gnus-summary-buffer (current-buffer))
3134 (not gnus-newsgroup-prepared))
3135 ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
3136 (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer)))
3137 (gnus-summary-mode group)
3138 (when gnus-carpal
3139 (gnus-carpal-setup-buffer 'summary))
3140 (unless gnus-single-article-buffer
3141 (make-local-variable 'gnus-article-buffer)
3142 (make-local-variable 'gnus-article-current)
3143 (make-local-variable 'gnus-original-article-buffer))
3144 (setq gnus-newsgroup-name group)
3145 ;; Set any local variables in the group parameters.
3146 (gnus-summary-set-local-parameters gnus-newsgroup-name)
3147 t)))
3149 (defun gnus-set-global-variables ()
3150 "Set the global equivalents of the buffer-local variables.
3151 They are set to the latest values they had. These reflect the summary
3152 buffer that was in action when the last article was fetched."
3153 (when (eq major-mode 'gnus-summary-mode)
3154 (setq gnus-summary-buffer (current-buffer))
3155 (let ((name gnus-newsgroup-name)
3156 (marked gnus-newsgroup-marked)
3157 (spam gnus-newsgroup-spam-marked)
3158 (unread gnus-newsgroup-unreads)
3159 (headers gnus-current-headers)
3160 (data gnus-newsgroup-data)
3161 (summary gnus-summary-buffer)
3162 (article-buffer gnus-article-buffer)
3163 (original gnus-original-article-buffer)
3164 (gac gnus-article-current)
3165 (reffed gnus-reffed-article-number)
3166 (score-file gnus-current-score-file)
3167 (default-charset gnus-newsgroup-charset)
3168 vlist)
3169 (let ((locals gnus-newsgroup-variables))
3170 (while locals
3171 (if (consp (car locals))
3172 (push (eval (caar locals)) vlist)
3173 (push (eval (car locals)) vlist))
3174 (setq locals (cdr locals)))
3175 (setq vlist (nreverse vlist)))
3176 (save-excursion
3177 (set-buffer gnus-group-buffer)
3178 (setq gnus-newsgroup-name name
3179 gnus-newsgroup-marked marked
3180 gnus-newsgroup-spam-marked spam
3181 gnus-newsgroup-unreads unread
3182 gnus-current-headers headers
3183 gnus-newsgroup-data data
3184 gnus-article-current gac
3185 gnus-summary-buffer summary
3186 gnus-article-buffer article-buffer
3187 gnus-original-article-buffer original
3188 gnus-reffed-article-number reffed
3189 gnus-current-score-file score-file
3190 gnus-newsgroup-charset default-charset)
3191 (let ((locals gnus-newsgroup-variables))
3192 (while locals
3193 (if (consp (car locals))
3194 (set (caar locals) (pop vlist))
3195 (set (car locals) (pop vlist)))
3196 (setq locals (cdr locals))))
3197 ;; The article buffer also has local variables.
3198 (when (gnus-buffer-live-p gnus-article-buffer)
3199 (set-buffer gnus-article-buffer)
3200 (setq gnus-summary-buffer summary))))))
3202 (defun gnus-summary-article-unread-p (article)
3203 "Say whether ARTICLE is unread or not."
3204 (memq article gnus-newsgroup-unreads))
3206 (defun gnus-summary-first-article-p (&optional article)
3207 "Return whether ARTICLE is the first article in the buffer."
3208 (if (not (setq article (or article (gnus-summary-article-number))))
3210 (eq article (caar gnus-newsgroup-data))))
3212 (defun gnus-summary-last-article-p (&optional article)
3213 "Return whether ARTICLE is the last article in the buffer."
3214 (if (not (setq article (or article (gnus-summary-article-number))))
3215 ;; All non-existent numbers are the last article. :-)
3217 (not (cdr (gnus-data-find-list article)))))
3219 (defun gnus-make-thread-indent-array ()
3220 (let ((n 200))
3221 (unless (and gnus-thread-indent-array
3222 (= gnus-thread-indent-level gnus-thread-indent-array-level))
3223 (setq gnus-thread-indent-array (make-vector 201 "")
3224 gnus-thread-indent-array-level gnus-thread-indent-level)
3225 (while (>= n 0)
3226 (aset gnus-thread-indent-array n
3227 (make-string (* n gnus-thread-indent-level) ? ))
3228 (setq n (1- n))))))
3230 (defun gnus-update-summary-mark-positions ()
3231 "Compute where the summary marks are to go."
3232 (save-excursion
3233 (when (gnus-buffer-exists-p gnus-summary-buffer)
3234 (set-buffer gnus-summary-buffer))
3235 (let ((spec gnus-summary-line-format-spec)
3236 pos)
3237 (save-excursion
3238 (gnus-set-work-buffer)
3239 (let ((gnus-tmp-unread ?Z)
3240 (gnus-replied-mark ?Z)
3241 (gnus-score-below-mark ?Z)
3242 (gnus-score-over-mark ?Z)
3243 (gnus-undownloaded-mark ?Z)
3244 (gnus-summary-line-format-spec spec)
3245 (gnus-newsgroup-downloadable '(0))
3246 (header [0 "" "" "05 Apr 2001 23:33:09 +0400" "" "" 0 0 "" nil])
3247 case-fold-search ignores)
3248 ;; Here, all marks are bound to Z.
3249 (gnus-summary-insert-line header
3250 0 nil t gnus-tmp-unread t nil "" nil 1)
3251 (goto-char (point-min))
3252 ;; Memorize the positions of the same characters as dummy marks.
3253 (while (re-search-forward "[A-D]" nil t)
3254 (push (point) ignores))
3255 (erase-buffer)
3256 ;; We use A-D as dummy marks in order to know column positions
3257 ;; where marks should be inserted.
3258 (setq gnus-tmp-unread ?A
3259 gnus-replied-mark ?B
3260 gnus-score-below-mark ?C
3261 gnus-score-over-mark ?C
3262 gnus-undownloaded-mark ?D)
3263 (gnus-summary-insert-line header
3264 0 nil t gnus-tmp-unread t nil "" nil 1)
3265 ;; Ignore characters which aren't dummy marks.
3266 (dolist (p ignores)
3267 (delete-region (goto-char (1- p)) p)
3268 (insert ?Z))
3269 (goto-char (point-min))
3270 (setq pos (list (cons 'unread
3271 (and (search-forward "A" nil t)
3272 (- (point) (point-min) 1)))))
3273 (goto-char (point-min))
3274 (push (cons 'replied (and (search-forward "B" nil t)
3275 (- (point) (point-min) 1)))
3276 pos)
3277 (goto-char (point-min))
3278 (push (cons 'score (and (search-forward "C" nil t)
3279 (- (point) (point-min) 1)))
3280 pos)
3281 (goto-char (point-min))
3282 (push (cons 'download (and (search-forward "D" nil t)
3283 (- (point) (point-min) 1)))
3284 pos)))
3285 (setq gnus-summary-mark-positions pos))))
3287 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number)
3288 "Insert a dummy root in the summary buffer."
3289 (beginning-of-line)
3290 (gnus-add-text-properties
3291 (point) (progn (eval gnus-summary-dummy-line-format-spec) (point))
3292 (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number)))
3294 (defun gnus-summary-extract-address-component (from)
3295 (or (car (funcall gnus-extract-address-components from))
3296 from))
3298 (defun gnus-summary-from-or-to-or-newsgroups (header gnus-tmp-from)
3299 (let ((mail-parse-charset gnus-newsgroup-charset)
3300 ; Is it really necessary to do this next part for each summary line?
3301 ; Luckily, doesn't seem to slow things down much.
3302 (mail-parse-ignored-charsets
3303 (save-excursion (set-buffer gnus-summary-buffer)
3304 gnus-newsgroup-ignored-charsets)))
3306 (and gnus-ignored-from-addresses
3307 (string-match gnus-ignored-from-addresses gnus-tmp-from)
3308 (let ((extra-headers (mail-header-extra header))
3310 newsgroups)
3311 (cond
3312 ((setq to (cdr (assq 'To extra-headers)))
3313 (concat "-> "
3314 (inline
3315 (gnus-summary-extract-address-component
3316 (funcall gnus-decode-encoded-word-function to)))))
3317 ((setq newsgroups (cdr (assq 'Newsgroups extra-headers)))
3318 (concat "=> " newsgroups)))))
3319 (inline (gnus-summary-extract-address-component gnus-tmp-from)))))
3321 (defun gnus-summary-insert-line (gnus-tmp-header
3322 gnus-tmp-level gnus-tmp-current
3323 undownloaded gnus-tmp-unread gnus-tmp-replied
3324 gnus-tmp-expirable gnus-tmp-subject-or-nil
3325 &optional gnus-tmp-dummy gnus-tmp-score
3326 gnus-tmp-process)
3327 (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level))
3328 (gnus-tmp-lines (mail-header-lines gnus-tmp-header))
3329 (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0))
3330 (gnus-tmp-score-char
3331 (if (or (null gnus-summary-default-score)
3332 (<= (abs (- gnus-tmp-score gnus-summary-default-score))
3333 gnus-summary-zcore-fuzz))
3334 ? ;Whitespace
3335 (if (< gnus-tmp-score gnus-summary-default-score)
3336 gnus-score-below-mark gnus-score-over-mark)))
3337 (gnus-tmp-number (mail-header-number gnus-tmp-header))
3338 (gnus-tmp-replied
3339 (cond (gnus-tmp-process gnus-process-mark)
3340 ((memq gnus-tmp-current gnus-newsgroup-cached)
3341 gnus-cached-mark)
3342 (gnus-tmp-replied gnus-replied-mark)
3343 ((memq gnus-tmp-current gnus-newsgroup-forwarded)
3344 gnus-forwarded-mark)
3345 ((memq gnus-tmp-current gnus-newsgroup-saved)
3346 gnus-saved-mark)
3347 ((memq gnus-tmp-number gnus-newsgroup-recent)
3348 gnus-recent-mark)
3349 ((memq gnus-tmp-number gnus-newsgroup-unseen)
3350 gnus-unseen-mark)
3351 (t gnus-no-mark)))
3352 (gnus-tmp-downloaded
3353 (cond (undownloaded
3354 gnus-undownloaded-mark)
3355 (gnus-newsgroup-agentized
3356 gnus-downloaded-mark)
3358 gnus-no-mark)))
3359 (gnus-tmp-from (mail-header-from gnus-tmp-header))
3360 (gnus-tmp-name
3361 (cond
3362 ((string-match "<[^>]+> *$" gnus-tmp-from)
3363 (let ((beg (match-beginning 0)))
3364 (or (and (string-match "^\".+\"" gnus-tmp-from)
3365 (substring gnus-tmp-from 1 (1- (match-end 0))))
3366 (substring gnus-tmp-from 0 beg))))
3367 ((string-match "(.+)" gnus-tmp-from)
3368 (substring gnus-tmp-from
3369 (1+ (match-beginning 0)) (1- (match-end 0))))
3370 (t gnus-tmp-from)))
3371 (gnus-tmp-subject (mail-header-subject gnus-tmp-header))
3372 (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[))
3373 (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\]))
3374 (buffer-read-only nil))
3375 (when (string= gnus-tmp-name "")
3376 (setq gnus-tmp-name gnus-tmp-from))
3377 (unless (numberp gnus-tmp-lines)
3378 (setq gnus-tmp-lines -1))
3379 (if (= gnus-tmp-lines -1)
3380 (setq gnus-tmp-lines "?")
3381 (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
3382 (gnus-put-text-property
3383 (point)
3384 (progn (eval gnus-summary-line-format-spec) (point))
3385 'gnus-number gnus-tmp-number)
3386 (when (gnus-visual-p 'summary-highlight 'highlight)
3387 (forward-line -1)
3388 (gnus-run-hooks 'gnus-summary-update-hook)
3389 (forward-line 1))))
3391 (defun gnus-summary-update-line (&optional dont-update)
3392 "Update summary line after change."
3393 (when (and gnus-summary-default-score
3394 (not gnus-summary-inhibit-highlight))
3395 (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion.
3396 (article (gnus-summary-article-number))
3397 (score (gnus-summary-article-score article)))
3398 (unless dont-update
3399 (if (and gnus-summary-mark-below
3400 (< (gnus-summary-article-score)
3401 gnus-summary-mark-below))
3402 ;; This article has a low score, so we mark it as read.
3403 (when (memq article gnus-newsgroup-unreads)
3404 (gnus-summary-mark-article-as-read gnus-low-score-mark))
3405 (when (eq (gnus-summary-article-mark) gnus-low-score-mark)
3406 ;; This article was previously marked as read on account
3407 ;; of a low score, but now it has risen, so we mark it as
3408 ;; unread.
3409 (gnus-summary-mark-article-as-unread gnus-unread-mark)))
3410 (gnus-summary-update-mark
3411 (if (or (null gnus-summary-default-score)
3412 (<= (abs (- score gnus-summary-default-score))
3413 gnus-summary-zcore-fuzz))
3414 ? ;Whitespace
3415 (if (< score gnus-summary-default-score)
3416 gnus-score-below-mark gnus-score-over-mark))
3417 'score))
3418 ;; Do visual highlighting.
3419 (when (gnus-visual-p 'summary-highlight 'highlight)
3420 (gnus-run-hooks 'gnus-summary-update-hook)))))
3422 (defvar gnus-tmp-new-adopts nil)
3424 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char)
3425 "Return the number of articles in THREAD.
3426 This may be 0 in some cases -- if none of the articles in
3427 the thread are to be displayed."
3428 (let* ((number
3429 ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>.
3430 (cond
3431 ((not (listp thread))
3433 ((and (consp thread) (cdr thread))
3434 (apply
3435 '+ 1 (mapcar
3436 'gnus-summary-number-of-articles-in-thread (cdr thread))))
3437 ((null thread)
3439 ((memq (mail-header-number (car thread)) gnus-newsgroup-limit)
3441 (t 0))))
3442 (when (and level (zerop level) gnus-tmp-new-adopts)
3443 (incf number
3444 (apply '+ (mapcar
3445 'gnus-summary-number-of-articles-in-thread
3446 gnus-tmp-new-adopts))))
3447 (if char
3448 (if (> number 1) gnus-not-empty-thread-mark
3449 gnus-empty-thread-mark)
3450 number)))
3452 (defsubst gnus-summary-line-message-size (head)
3453 "Return pretty-printed version of message size.
3454 This function is intended to be used in
3455 `gnus-summary-line-format-alist'."
3456 (let ((c (or (mail-header-chars head) -1)))
3457 (cond ((< c 0) "n/a") ; chars not available
3458 ((< c (* 1000 10)) (format "%1.1fk" (/ c 1024.0)))
3459 ((< c (* 1000 100)) (format "%dk" (/ c 1024.0)))
3460 ((< c (* 1000 10000)) (format "%1.1fM" (/ c (* 1024.0 1024))))
3461 (t (format "%dM" (/ c (* 1024.0 1024)))))))
3464 (defun gnus-summary-set-local-parameters (group)
3465 "Go through the local params of GROUP and set all variable specs in that list."
3466 (let ((params (gnus-group-find-parameter group))
3467 (vars '(quit-config)) ; Ignore quit-config.
3468 elem)
3469 (while params
3470 (setq elem (car params)
3471 params (cdr params))
3472 (and (consp elem) ; Has to be a cons.
3473 (consp (cdr elem)) ; The cdr has to be a list.
3474 (symbolp (car elem)) ; Has to be a symbol in there.
3475 (not (memq (car elem) vars))
3476 (ignore-errors ; So we set it.
3477 (push (car elem) vars)
3478 (make-local-variable (car elem))
3479 (set (car elem) (eval (nth 1 elem))))))))
3481 (defun gnus-summary-read-group (group &optional show-all no-article
3482 kill-buffer no-display backward
3483 select-articles)
3484 "Start reading news in newsgroup GROUP.
3485 If SHOW-ALL is non-nil, already read articles are also listed.
3486 If NO-ARTICLE is non-nil, no article is selected initially.
3487 If NO-DISPLAY, don't generate a summary buffer."
3488 (let (result)
3489 (while (and group
3490 (null (setq result
3491 (let ((gnus-auto-select-next nil))
3492 (or (gnus-summary-read-group-1
3493 group show-all no-article
3494 kill-buffer no-display
3495 select-articles)
3496 (setq show-all nil
3497 select-articles nil)))))
3498 (eq gnus-auto-select-next 'quietly))
3499 (set-buffer gnus-group-buffer)
3500 ;; The entry function called above goes to the next
3501 ;; group automatically, so we go two groups back
3502 ;; if we are searching for the previous group.
3503 (when backward
3504 (gnus-group-prev-unread-group 2))
3505 (if (not (equal group (gnus-group-group-name)))
3506 (setq group (gnus-group-group-name))
3507 (setq group nil)))
3508 result))
3510 (defun gnus-summary-read-group-1 (group show-all no-article
3511 kill-buffer no-display
3512 &optional select-articles)
3513 ;; Killed foreign groups can't be entered.
3514 ;; (when (and (not (gnus-group-native-p group))
3515 ;; (not (gnus-gethash group gnus-newsrc-hashtb)))
3516 ;; (error "Dead non-native groups can't be entered"))
3517 (gnus-message 5 "Retrieving newsgroup: %s..."
3518 (gnus-group-decoded-name group))
3519 (let* ((new-group (gnus-summary-setup-buffer group))
3520 (quit-config (gnus-group-quit-config group))
3521 (did-select (and new-group (gnus-select-newsgroup
3522 group show-all select-articles))))
3523 (cond
3524 ;; This summary buffer exists already, so we just select it.
3525 ((not new-group)
3526 (gnus-set-global-variables)
3527 (when kill-buffer
3528 (gnus-kill-or-deaden-summary kill-buffer))
3529 (gnus-configure-windows 'summary 'force)
3530 (gnus-set-mode-line 'summary)
3531 (gnus-summary-position-point)
3532 (message "")
3534 ;; We couldn't select this group.
3535 ((null did-select)
3536 (when (and (eq major-mode 'gnus-summary-mode)
3537 (not (equal (current-buffer) kill-buffer)))
3538 (kill-buffer (current-buffer))
3539 (if (not quit-config)
3540 (progn
3541 ;; Update the info -- marks might need to be removed,
3542 ;; for instance.
3543 (gnus-summary-update-info)
3544 (set-buffer gnus-group-buffer)
3545 (gnus-group-jump-to-group group)
3546 (gnus-group-next-unread-group 1))
3547 (gnus-handle-ephemeral-exit quit-config)))
3548 (let ((grpinfo (gnus-get-info group)))
3549 (if (null (gnus-info-read grpinfo))
3550 (gnus-message 3 "Group %s contains no messages"
3551 (gnus-group-decoded-name group))
3552 (gnus-message 3 "Can't select group")))
3553 nil)
3554 ;; The user did a `C-g' while prompting for number of articles,
3555 ;; so we exit this group.
3556 ((eq did-select 'quit)
3557 (and (eq major-mode 'gnus-summary-mode)
3558 (not (equal (current-buffer) kill-buffer))
3559 (kill-buffer (current-buffer)))
3560 (when kill-buffer
3561 (gnus-kill-or-deaden-summary kill-buffer))
3562 (if (not quit-config)
3563 (progn
3564 (set-buffer gnus-group-buffer)
3565 (gnus-group-jump-to-group group)
3566 (gnus-group-next-unread-group 1)
3567 (gnus-configure-windows 'group 'force))
3568 (gnus-handle-ephemeral-exit quit-config))
3569 ;; Finally signal the quit.
3570 (signal 'quit nil))
3571 ;; The group was successfully selected.
3573 (gnus-set-global-variables)
3574 ;; Save the active value in effect when the group was entered.
3575 (setq gnus-newsgroup-active
3576 (gnus-copy-sequence
3577 (gnus-active gnus-newsgroup-name)))
3578 ;; You can change the summary buffer in some way with this hook.
3579 (gnus-run-hooks 'gnus-select-group-hook)
3580 (when (memq 'summary (gnus-update-format-specifications
3581 nil 'summary 'summary-mode 'summary-dummy))
3582 ;; The format specification for the summary line was updated,
3583 ;; so we need to update the mark positions as well.
3584 (gnus-update-summary-mark-positions))
3585 ;; Do score processing.
3586 (when gnus-use-scoring
3587 (gnus-possibly-score-headers))
3588 ;; Check whether to fill in the gaps in the threads.
3589 (when gnus-build-sparse-threads
3590 (gnus-build-sparse-threads))
3591 ;; Find the initial limit.
3592 (if gnus-show-threads
3593 (if show-all
3594 (let ((gnus-newsgroup-dormant nil))
3595 (gnus-summary-initial-limit show-all))
3596 (gnus-summary-initial-limit show-all))
3597 ;; When unthreaded, all articles are always shown.
3598 (setq gnus-newsgroup-limit
3599 (mapcar
3600 (lambda (header) (mail-header-number header))
3601 gnus-newsgroup-headers)))
3602 ;; Generate the summary buffer.
3603 (unless no-display
3604 (gnus-summary-prepare))
3605 (when gnus-use-trees
3606 (gnus-tree-open group)
3607 (setq gnus-summary-highlight-line-function
3608 'gnus-tree-highlight-article))
3609 ;; If the summary buffer is empty, but there are some low-scored
3610 ;; articles or some excluded dormants, we include these in the
3611 ;; buffer.
3612 (when (and (zerop (buffer-size))
3613 (not no-display))
3614 (cond (gnus-newsgroup-dormant
3615 (gnus-summary-limit-include-dormant))
3616 ((and gnus-newsgroup-scored show-all)
3617 (gnus-summary-limit-include-expunged t))))
3618 ;; Function `gnus-apply-kill-file' must be called in this hook.
3619 (gnus-run-hooks 'gnus-apply-kill-hook)
3620 (if (and (zerop (buffer-size))
3621 (not no-display))
3622 (progn
3623 ;; This newsgroup is empty.
3624 (gnus-summary-catchup-and-exit nil t)
3625 (gnus-message 6 "No unread news")
3626 (when kill-buffer
3627 (gnus-kill-or-deaden-summary kill-buffer))
3628 ;; Return nil from this function.
3629 nil)
3630 ;; Hide conversation thread subtrees. We cannot do this in
3631 ;; gnus-summary-prepare-hook since kill processing may not
3632 ;; work with hidden articles.
3633 (gnus-summary-maybe-hide-threads)
3634 (when kill-buffer
3635 (gnus-kill-or-deaden-summary kill-buffer))
3636 (gnus-summary-auto-select-subject)
3637 ;; Show first unread article if requested.
3638 (if (and (not no-article)
3639 (not no-display)
3640 gnus-newsgroup-unreads
3641 gnus-auto-select-first)
3642 (progn
3643 (gnus-configure-windows 'summary)
3644 (let ((art (gnus-summary-article-number)))
3645 (unless (and (not gnus-plugged)
3646 (or (memq art gnus-newsgroup-undownloaded)
3647 (memq art gnus-newsgroup-downloadable)))
3648 (gnus-summary-goto-article art))))
3649 ;; Don't select any articles.
3650 (gnus-summary-position-point)
3651 (gnus-configure-windows 'summary 'force)
3652 (gnus-set-mode-line 'summary))
3653 (when (and gnus-auto-center-group
3654 (get-buffer-window gnus-group-buffer t))
3655 ;; Gotta use windows, because recenter does weird stuff if
3656 ;; the current buffer ain't the displayed window.
3657 (let ((owin (selected-window)))
3658 (select-window (get-buffer-window gnus-group-buffer t))
3659 (when (gnus-group-goto-group group)
3660 (recenter))
3661 (select-window owin)))
3662 ;; Mark this buffer as "prepared".
3663 (setq gnus-newsgroup-prepared t)
3664 (gnus-run-hooks 'gnus-summary-prepared-hook)
3665 (unless (gnus-ephemeral-group-p group)
3666 (gnus-group-update-group group))
3667 t)))))
3669 (defun gnus-summary-auto-select-subject ()
3670 "Select the subject line on initial group entry."
3671 (goto-char (point-min))
3672 (cond
3673 ((eq gnus-auto-select-subject 'best)
3674 (gnus-summary-best-unread-subject))
3675 ((eq gnus-auto-select-subject 'unread)
3676 (gnus-summary-first-unread-subject))
3677 ((eq gnus-auto-select-subject 'unseen)
3678 (gnus-summary-first-unseen-subject))
3679 ((eq gnus-auto-select-subject 'unseen-or-unread)
3680 (gnus-summary-first-unseen-or-unread-subject))
3681 ((eq gnus-auto-select-subject 'first)
3682 ;; Do nothing.
3684 ((functionp gnus-auto-select-subject)
3685 (funcall gnus-auto-select-subject))))
3687 (defun gnus-summary-prepare ()
3688 "Generate the summary buffer."
3689 (interactive)
3690 (let ((buffer-read-only nil))
3691 (erase-buffer)
3692 (setq gnus-newsgroup-data nil
3693 gnus-newsgroup-data-reverse nil)
3694 (gnus-run-hooks 'gnus-summary-generate-hook)
3695 ;; Generate the buffer, either with threads or without.
3696 (when gnus-newsgroup-headers
3697 (gnus-summary-prepare-threads
3698 (if gnus-show-threads
3699 (gnus-sort-gathered-threads
3700 (funcall gnus-summary-thread-gathering-function
3701 (gnus-sort-threads
3702 (gnus-cut-threads (gnus-make-threads)))))
3703 ;; Unthreaded display.
3704 (gnus-sort-articles gnus-newsgroup-headers))))
3705 (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data))
3706 ;; Call hooks for modifying summary buffer.
3707 (goto-char (point-min))
3708 (gnus-run-hooks 'gnus-summary-prepare-hook)))
3710 (defsubst gnus-general-simplify-subject (subject)
3711 "Simplify subject by the same rules as `gnus-gather-threads-by-subject'."
3712 (setq subject
3713 (cond
3714 ;; Truncate the subject.
3715 (gnus-simplify-subject-functions
3716 (gnus-map-function gnus-simplify-subject-functions subject))
3717 ((numberp gnus-summary-gather-subject-limit)
3718 (setq subject (gnus-simplify-subject-re subject))
3719 (if (> (length subject) gnus-summary-gather-subject-limit)
3720 (substring subject 0 gnus-summary-gather-subject-limit)
3721 subject))
3722 ;; Fuzzily simplify it.
3723 ((eq 'fuzzy gnus-summary-gather-subject-limit)
3724 (gnus-simplify-subject-fuzzy subject))
3725 ;; Just remove the leading "Re:".
3727 (gnus-simplify-subject-re subject))))
3729 (if (and gnus-summary-gather-exclude-subject
3730 (string-match gnus-summary-gather-exclude-subject subject))
3731 nil ; This article shouldn't be gathered
3732 subject))
3734 (defun gnus-summary-simplify-subject-query ()
3735 "Query where the respool algorithm would put this article."
3736 (interactive)
3737 (gnus-summary-select-article)
3738 (message (gnus-general-simplify-subject (gnus-summary-article-subject))))
3740 (defun gnus-gather-threads-by-subject (threads)
3741 "Gather threads by looking at Subject headers."
3742 (if (not gnus-summary-make-false-root)
3743 threads
3744 (let ((hashtb (gnus-make-hashtable 1024))
3745 (prev threads)
3746 (result threads)
3747 subject hthread whole-subject)
3748 (while threads
3749 (setq subject (gnus-general-simplify-subject
3750 (setq whole-subject (mail-header-subject
3751 (caar threads)))))
3752 (when subject
3753 (if (setq hthread (gnus-gethash subject hashtb))
3754 (progn
3755 ;; We enter a dummy root into the thread, if we
3756 ;; haven't done that already.
3757 (unless (stringp (caar hthread))
3758 (setcar hthread (list whole-subject (car hthread))))
3759 ;; We add this new gathered thread to this gathered
3760 ;; thread.
3761 (setcdr (car hthread)
3762 (nconc (cdar hthread) (list (car threads))))
3763 ;; Remove it from the list of threads.
3764 (setcdr prev (cdr threads))
3765 (setq threads prev))
3766 ;; Enter this thread into the hash table.
3767 (gnus-sethash subject
3768 (if gnus-summary-make-false-root-always
3769 (progn
3770 ;; If you want a dummy root above all
3771 ;; threads...
3772 (setcar threads (list whole-subject
3773 (car threads)))
3774 threads)
3775 threads)
3776 hashtb)))
3777 (setq prev threads)
3778 (setq threads (cdr threads)))
3779 result)))
3781 (defun gnus-gather-threads-by-references (threads)
3782 "Gather threads by looking at References headers."
3783 (let ((idhashtb (gnus-make-hashtable 1024))
3784 (thhashtb (gnus-make-hashtable 1024))
3785 (prev threads)
3786 (result threads)
3787 ids references id gthread gid entered ref)
3788 (while threads
3789 (when (setq references (mail-header-references (caar threads)))
3790 (setq id (mail-header-id (caar threads))
3791 ids (inline (gnus-split-references references))
3792 entered nil)
3793 (while (setq ref (pop ids))
3794 (setq ids (delete ref ids))
3795 (if (not (setq gid (gnus-gethash ref idhashtb)))
3796 (progn
3797 (gnus-sethash ref id idhashtb)
3798 (gnus-sethash id threads thhashtb))
3799 (setq gthread (gnus-gethash gid thhashtb))
3800 (unless entered
3801 ;; We enter a dummy root into the thread, if we
3802 ;; haven't done that already.
3803 (unless (stringp (caar gthread))
3804 (setcar gthread (list (mail-header-subject (caar gthread))
3805 (car gthread))))
3806 ;; We add this new gathered thread to this gathered
3807 ;; thread.
3808 (setcdr (car gthread)
3809 (nconc (cdar gthread) (list (car threads)))))
3810 ;; Add it into the thread hash table.
3811 (gnus-sethash id gthread thhashtb)
3812 (setq entered t)
3813 ;; Remove it from the list of threads.
3814 (setcdr prev (cdr threads))
3815 (setq threads prev))))
3816 (setq prev threads)
3817 (setq threads (cdr threads)))
3818 result))
3820 (defun gnus-sort-gathered-threads (threads)
3821 "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'."
3822 (let ((result threads))
3823 (while threads
3824 (when (stringp (caar threads))
3825 (setcdr (car threads)
3826 (sort (cdar threads) gnus-sort-gathered-threads-function)))
3827 (setq threads (cdr threads)))
3828 result))
3830 (defun gnus-thread-loop-p (root thread)
3831 "Say whether ROOT is in THREAD."
3832 (let ((stack (list thread))
3833 (infloop 0)
3835 (while (setq thread (pop stack))
3836 (setq th (cdr thread))
3837 (while (and th
3838 (not (eq (caar th) root)))
3839 (pop th))
3840 (if th
3841 ;; We have found a loop.
3842 (let (ref-dep)
3843 (setcdr thread (delq (car th) (cdr thread)))
3844 (if (boundp (setq ref-dep (intern "none"
3845 gnus-newsgroup-dependencies)))
3846 (setcdr (symbol-value ref-dep)
3847 (nconc (cdr (symbol-value ref-dep))
3848 (list (car th))))
3849 (set ref-dep (list nil (car th))))
3850 (setq infloop 1
3851 stack nil))
3852 ;; Push all the subthreads onto the stack.
3853 (push (cdr thread) stack)))
3854 infloop))
3856 (defun gnus-make-threads ()
3857 "Go through the dependency hashtb and find the roots. Return all threads."
3858 (let (threads)
3859 (while (catch 'infloop
3860 (mapatoms
3861 (lambda (refs)
3862 ;; Deal with self-referencing References loops.
3863 (when (and (car (symbol-value refs))
3864 (not (zerop
3865 (apply
3867 (mapcar
3868 (lambda (thread)
3869 (gnus-thread-loop-p
3870 (car (symbol-value refs)) thread))
3871 (cdr (symbol-value refs)))))))
3872 (setq threads nil)
3873 (throw 'infloop t))
3874 (unless (car (symbol-value refs))
3875 ;; These threads do not refer back to any other
3876 ;; articles, so they're roots.
3877 (setq threads (append (cdr (symbol-value refs)) threads))))
3878 gnus-newsgroup-dependencies)))
3879 threads))
3881 ;; Build the thread tree.
3882 (defsubst gnus-dependencies-add-header (header dependencies force-new)
3883 "Enter HEADER into the DEPENDENCIES table if it is not already there.
3885 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even
3886 if it was already present.
3888 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs
3889 will not be entered in the DEPENDENCIES table. Otherwise duplicate
3890 Message-IDs will be renamed to a unique Message-ID before being
3891 entered.
3893 Returns HEADER if it was entered in the DEPENDENCIES. Returns nil otherwise."
3894 (let* ((id (mail-header-id header))
3895 (id-dep (and id (intern id dependencies)))
3896 parent-id ref ref-dep ref-header replaced)
3897 ;; Enter this `header' in the `dependencies' table.
3898 (cond
3899 ((not id-dep)
3900 (setq header nil))
3901 ;; The first two cases do the normal part: enter a new `header'
3902 ;; in the `dependencies' table.
3903 ((not (boundp id-dep))
3904 (set id-dep (list header)))
3905 ((null (car (symbol-value id-dep)))
3906 (setcar (symbol-value id-dep) header))
3908 ;; From here the `header' was already present in the
3909 ;; `dependencies' table.
3910 (force-new
3911 ;; Overrides an existing entry;
3912 ;; just set the header part of the entry.
3913 (setcar (symbol-value id-dep) header)
3914 (setq replaced t))
3916 ;; Renames the existing `header' to a unique Message-ID.
3917 ((not gnus-summary-ignore-duplicates)
3918 ;; An article with this Message-ID has already been seen.
3919 ;; We rename the Message-ID.
3920 (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies))
3921 (list header))
3922 (mail-header-set-id header id))
3924 ;; The last case ignores an existing entry, except it adds any
3925 ;; additional Xrefs (in case the two articles came from different
3926 ;; servers.
3927 ;; Also sets `header' to `nil' meaning that the `dependencies'
3928 ;; table was *not* modified.
3930 (mail-header-set-xref
3931 (car (symbol-value id-dep))
3932 (concat (or (mail-header-xref (car (symbol-value id-dep)))
3934 (or (mail-header-xref header) "")))
3935 (setq header nil)))
3937 (when (and header (not replaced))
3938 ;; First check that we are not creating a References loop.
3939 (setq parent-id (gnus-parent-id (mail-header-references header)))
3940 (setq ref parent-id)
3941 (while (and ref
3942 (setq ref-dep (intern-soft ref dependencies))
3943 (boundp ref-dep)
3944 (setq ref-header (car (symbol-value ref-dep))))
3945 (if (string= id ref)
3946 ;; Yuk! This is a reference loop. Make the article be a
3947 ;; root article.
3948 (progn
3949 (mail-header-set-references (car (symbol-value id-dep)) "none")
3950 (setq ref nil)
3951 (setq parent-id nil))
3952 (setq ref (gnus-parent-id (mail-header-references ref-header)))))
3953 (setq ref-dep (intern (or parent-id "none") dependencies))
3954 (if (boundp ref-dep)
3955 (setcdr (symbol-value ref-dep)
3956 (nconc (cdr (symbol-value ref-dep))
3957 (list (symbol-value id-dep))))
3958 (set ref-dep (list nil (symbol-value id-dep)))))
3959 header))
3961 (defun gnus-extract-message-id-from-in-reply-to (string)
3962 (if (string-match "<[^>]+>" string)
3963 (substring string (match-beginning 0) (match-end 0))
3964 nil))
3966 (defun gnus-build-sparse-threads ()
3967 (let ((headers gnus-newsgroup-headers)
3968 (mail-parse-charset gnus-newsgroup-charset)
3969 (gnus-summary-ignore-duplicates t)
3970 header references generation relations
3971 subject child end new-child date)
3972 ;; First we create an alist of generations/relations, where
3973 ;; generations is how much we trust the relation, and the relation
3974 ;; is parent/child.
3975 (gnus-message 7 "Making sparse threads...")
3976 (save-excursion
3977 (nnheader-set-temp-buffer " *gnus sparse threads*")
3978 (while (setq header (pop headers))
3979 (when (and (setq references (mail-header-references header))
3980 (not (string= references "")))
3981 (insert references)
3982 (setq child (mail-header-id header)
3983 subject (mail-header-subject header)
3984 date (mail-header-date header)
3985 generation 0)
3986 (while (search-backward ">" nil t)
3987 (setq end (1+ (point)))
3988 (when (search-backward "<" nil t)
3989 (setq new-child (buffer-substring (point) end))
3990 (push (list (incf generation)
3991 child (setq child new-child)
3992 subject date)
3993 relations)))
3994 (when child
3995 (push (list (1+ generation) child nil subject) relations))
3996 (erase-buffer)))
3997 (kill-buffer (current-buffer)))
3998 ;; Sort over trustworthiness.
3999 (mapcar
4000 (lambda (relation)
4001 (when (gnus-dependencies-add-header
4002 (make-full-mail-header
4003 gnus-reffed-article-number
4004 (nth 3 relation) "" (or (nth 4 relation) "")
4005 (nth 1 relation)
4006 (or (nth 2 relation) "") 0 0 "")
4007 gnus-newsgroup-dependencies nil)
4008 (push gnus-reffed-article-number gnus-newsgroup-limit)
4009 (push gnus-reffed-article-number gnus-newsgroup-sparse)
4010 (push (cons gnus-reffed-article-number gnus-sparse-mark)
4011 gnus-newsgroup-reads)
4012 (decf gnus-reffed-article-number)))
4013 (sort relations 'car-less-than-car))
4014 (gnus-message 7 "Making sparse threads...done")))
4016 (defun gnus-build-old-threads ()
4017 ;; Look at all the articles that refer back to old articles, and
4018 ;; fetch the headers for the articles that aren't there. This will
4019 ;; build complete threads - if the roots haven't been expired by the
4020 ;; server, that is.
4021 (let ((mail-parse-charset gnus-newsgroup-charset)
4022 id heads)
4023 (mapatoms
4024 (lambda (refs)
4025 (when (not (car (symbol-value refs)))
4026 (setq heads (cdr (symbol-value refs)))
4027 (while heads
4028 (if (memq (mail-header-number (caar heads))
4029 gnus-newsgroup-dormant)
4030 (setq heads (cdr heads))
4031 (setq id (symbol-name refs))
4032 (while (and (setq id (gnus-build-get-header id))
4033 (not (car (gnus-id-to-thread id)))))
4034 (setq heads nil)))))
4035 gnus-newsgroup-dependencies)))
4037 (defsubst gnus-remove-odd-characters (string)
4038 "Translate STRING into something that doesn't contain weird characters."
4039 (mm-subst-char-in-string
4040 ?\r ?\-
4041 (mm-subst-char-in-string
4042 ?\n ?\- string)))
4044 ;; This function has to be called with point after the article number
4045 ;; on the beginning of the line.
4046 (defsubst gnus-nov-parse-line (number dependencies &optional force-new)
4047 (let ((eol (gnus-point-at-eol))
4048 (buffer (current-buffer))
4049 header references in-reply-to)
4051 ;; overview: [num subject from date id refs chars lines misc]
4052 (unwind-protect
4053 (let (x)
4054 (narrow-to-region (point) eol)
4055 (unless (eobp)
4056 (forward-char))
4058 (setq header
4059 (make-full-mail-header
4060 number ; number
4061 (condition-case () ; subject
4062 (gnus-remove-odd-characters
4063 (funcall gnus-decode-encoded-word-function
4064 (setq x (nnheader-nov-field))))
4065 (error x))
4066 (condition-case () ; from
4067 (gnus-remove-odd-characters
4068 (funcall gnus-decode-encoded-word-function
4069 (setq x (nnheader-nov-field))))
4070 (error x))
4071 (nnheader-nov-field) ; date
4072 (nnheader-nov-read-message-id) ; id
4073 (setq references (nnheader-nov-field)) ; refs
4074 (nnheader-nov-read-integer) ; chars
4075 (nnheader-nov-read-integer) ; lines
4076 (unless (eobp)
4077 (if (looking-at "Xref: ")
4078 (goto-char (match-end 0)))
4079 (nnheader-nov-field)) ; Xref
4080 (nnheader-nov-parse-extra)))) ; extra
4082 (widen))
4084 (when (and (string= references "")
4085 (setq in-reply-to (mail-header-extra header))
4086 (setq in-reply-to (cdr (assq 'In-Reply-To in-reply-to))))
4087 (mail-header-set-references
4088 header (gnus-extract-message-id-from-in-reply-to in-reply-to)))
4090 (when gnus-alter-header-function
4091 (funcall gnus-alter-header-function header))
4092 (gnus-dependencies-add-header header dependencies force-new)))
4094 (defun gnus-build-get-header (id)
4095 "Look through the buffer of NOV lines and find the header to ID.
4096 Enter this line into the dependencies hash table, and return
4097 the id of the parent article (if any)."
4098 (let ((deps gnus-newsgroup-dependencies)
4099 found header)
4100 (prog1
4101 (save-excursion
4102 (set-buffer nntp-server-buffer)
4103 (let ((case-fold-search nil))
4104 (goto-char (point-min))
4105 (while (and (not found)
4106 (search-forward id nil t))
4107 (beginning-of-line)
4108 (setq found (looking-at
4109 (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s"
4110 (regexp-quote id))))
4111 (or found (beginning-of-line 2)))
4112 (when found
4113 (beginning-of-line)
4114 (and
4115 (setq header (gnus-nov-parse-line
4116 (read (current-buffer)) deps))
4117 (gnus-parent-id (mail-header-references header))))))
4118 (when header
4119 (let ((number (mail-header-number header)))
4120 (push number gnus-newsgroup-limit)
4121 (push header gnus-newsgroup-headers)
4122 (if (memq number gnus-newsgroup-unselected)
4123 (progn
4124 (setq gnus-newsgroup-unreads
4125 (gnus-add-to-sorted-list gnus-newsgroup-unreads
4126 number))
4127 (setq gnus-newsgroup-unselected
4128 (delq number gnus-newsgroup-unselected)))
4129 (push number gnus-newsgroup-ancient)))))))
4131 (defun gnus-build-all-threads ()
4132 "Read all the headers."
4133 (let ((gnus-summary-ignore-duplicates t)
4134 (mail-parse-charset gnus-newsgroup-charset)
4135 (dependencies gnus-newsgroup-dependencies)
4136 header article)
4137 (save-excursion
4138 (set-buffer nntp-server-buffer)
4139 (let ((case-fold-search nil))
4140 (goto-char (point-min))
4141 (while (not (eobp))
4142 (ignore-errors
4143 (setq article (read (current-buffer))
4144 header (gnus-nov-parse-line article dependencies)))
4145 (when header
4146 (save-excursion
4147 (set-buffer gnus-summary-buffer)
4148 (push header gnus-newsgroup-headers)
4149 (if (memq (setq article (mail-header-number header))
4150 gnus-newsgroup-unselected)
4151 (progn
4152 (setq gnus-newsgroup-unreads
4153 (gnus-add-to-sorted-list
4154 gnus-newsgroup-unreads article))
4155 (setq gnus-newsgroup-unselected
4156 (delq article gnus-newsgroup-unselected)))
4157 (push article gnus-newsgroup-ancient)))
4158 (forward-line 1)))))))
4160 (defun gnus-summary-update-article-line (article header)
4161 "Update the line for ARTICLE using HEADER."
4162 (let* ((id (mail-header-id header))
4163 (thread (gnus-id-to-thread id)))
4164 (unless thread
4165 (error "Article in no thread"))
4166 ;; Update the thread.
4167 (setcar thread header)
4168 (gnus-summary-goto-subject article)
4169 (let* ((datal (gnus-data-find-list article))
4170 (data (car datal))
4171 (buffer-read-only nil)
4172 (level (gnus-summary-thread-level)))
4173 (gnus-delete-line)
4174 (let ((inserted (- (point)
4175 (progn
4176 (gnus-summary-insert-line
4177 header level nil
4178 (memq article gnus-newsgroup-undownloaded)
4179 (gnus-article-mark article)
4180 (memq article gnus-newsgroup-replied)
4181 (memq article gnus-newsgroup-expirable)
4182 ;; Only insert the Subject string when it's different
4183 ;; from the previous Subject string.
4184 (if (and
4185 gnus-show-threads
4186 (gnus-subject-equal
4187 (condition-case ()
4188 (mail-header-subject
4189 (gnus-data-header
4190 (cadr
4191 (gnus-data-find-list
4192 article
4193 (gnus-data-list t)))))
4194 ;; Error on the side of excessive subjects.
4195 (error ""))
4196 (mail-header-subject header)))
4198 (mail-header-subject header))
4199 nil (cdr (assq article gnus-newsgroup-scored))
4200 (memq article gnus-newsgroup-processable))
4201 (point)))))
4202 (when (cdr datal)
4203 (gnus-data-update-list
4204 (cdr datal)
4205 (- (gnus-data-pos data) (gnus-data-pos (cadr datal)) inserted)))))))
4207 (defun gnus-summary-update-article (article &optional iheader)
4208 "Update ARTICLE in the summary buffer."
4209 (set-buffer gnus-summary-buffer)
4210 (let* ((header (gnus-summary-article-header article))
4211 (id (mail-header-id header))
4212 (data (gnus-data-find article))
4213 (thread (gnus-id-to-thread id))
4214 (references (mail-header-references header))
4215 (parent
4216 (gnus-id-to-thread
4217 (or (gnus-parent-id
4218 (when (and references
4219 (not (equal "" references)))
4220 references))
4221 "none")))
4222 (buffer-read-only nil)
4223 (old (car thread)))
4224 (when thread
4225 (unless iheader
4226 (setcar thread nil)
4227 (when parent
4228 (delq thread parent)))
4229 (if (gnus-summary-insert-subject id header)
4230 ;; Set the (possibly) new article number in the data structure.
4231 (gnus-data-set-number data (gnus-id-to-article id))
4232 (setcar thread old)
4233 nil))))
4235 (defun gnus-rebuild-thread (id &optional line)
4236 "Rebuild the thread containing ID.
4237 If LINE, insert the rebuilt thread starting on line LINE."
4238 (let ((buffer-read-only nil)
4239 old-pos current thread data)
4240 (if (not gnus-show-threads)
4241 (setq thread (list (car (gnus-id-to-thread id))))
4242 ;; Get the thread this article is part of.
4243 (setq thread (gnus-remove-thread id)))
4244 (setq old-pos (gnus-point-at-bol))
4245 (setq current (save-excursion
4246 (and (re-search-backward "[\r\n]" nil t)
4247 (gnus-summary-article-number))))
4248 ;; If this is a gathered thread, we have to go some re-gathering.
4249 (when (stringp (car thread))
4250 (let ((subject (car thread))
4251 roots thr)
4252 (setq thread (cdr thread))
4253 (while thread
4254 (unless (memq (setq thr (gnus-id-to-thread
4255 (gnus-root-id
4256 (mail-header-id (caar thread)))))
4257 roots)
4258 (push thr roots))
4259 (setq thread (cdr thread)))
4260 ;; We now have all (unique) roots.
4261 (if (= (length roots) 1)
4262 ;; All the loose roots are now one solid root.
4263 (setq thread (car roots))
4264 (setq thread (cons subject (gnus-sort-threads roots))))))
4265 (let (threads)
4266 ;; We then insert this thread into the summary buffer.
4267 (when line
4268 (goto-char (point-min))
4269 (forward-line (1- line)))
4270 (let (gnus-newsgroup-data gnus-newsgroup-threads)
4271 (if gnus-show-threads
4272 (gnus-summary-prepare-threads (gnus-cut-threads (list thread)))
4273 (gnus-summary-prepare-unthreaded thread))
4274 (setq data (nreverse gnus-newsgroup-data))
4275 (setq threads gnus-newsgroup-threads))
4276 ;; We splice the new data into the data structure.
4277 ;;!!! This is kinda bogus. We assume that in LINE is non-nil,
4278 ;;!!! then we want to insert at the beginning of the buffer.
4279 ;;!!! That happens to be true with Gnus now, but that may
4280 ;;!!! change in the future. Perhaps.
4281 (gnus-data-enter-list
4282 (if line nil current) data (- (point) old-pos))
4283 (setq gnus-newsgroup-threads
4284 (nconc threads gnus-newsgroup-threads))
4285 (gnus-data-compute-positions))))
4287 (defun gnus-number-to-header (number)
4288 "Return the header for article NUMBER."
4289 (let ((headers gnus-newsgroup-headers))
4290 (while (and headers
4291 (not (= number (mail-header-number (car headers)))))
4292 (pop headers))
4293 (when headers
4294 (car headers))))
4296 (defun gnus-parent-headers (in-headers &optional generation)
4297 "Return the headers of the GENERATIONeth parent of HEADERS."
4298 (unless generation
4299 (setq generation 1))
4300 (let ((parent t)
4301 (headers in-headers)
4302 references)
4303 (while (and parent
4304 (not (zerop generation))
4305 (setq references (mail-header-references headers)))
4306 (setq headers (if (and references
4307 (setq parent (gnus-parent-id references)))
4308 (car (gnus-id-to-thread parent))
4309 nil))
4310 (decf generation))
4311 (and (not (eq headers in-headers))
4312 headers)))
4314 (defun gnus-id-to-thread (id)
4315 "Return the (sub-)thread where ID appears."
4316 (gnus-gethash id gnus-newsgroup-dependencies))
4318 (defun gnus-id-to-article (id)
4319 "Return the article number of ID."
4320 (let ((thread (gnus-id-to-thread id)))
4321 (when (and thread
4322 (car thread))
4323 (mail-header-number (car thread)))))
4325 (defun gnus-id-to-header (id)
4326 "Return the article headers of ID."
4327 (car (gnus-id-to-thread id)))
4329 (defun gnus-article-displayed-root-p (article)
4330 "Say whether ARTICLE is a root(ish) article."
4331 (let ((level (gnus-summary-thread-level article))
4332 (refs (mail-header-references (gnus-summary-article-header article)))
4333 particle)
4334 (cond
4335 ((null level) nil)
4336 ((zerop level) t)
4337 ((null refs) t)
4338 ((null (gnus-parent-id refs)) t)
4339 ((and (= 1 level)
4340 (null (setq particle (gnus-id-to-article
4341 (gnus-parent-id refs))))
4342 (null (gnus-summary-thread-level particle)))))))
4344 (defun gnus-root-id (id)
4345 "Return the id of the root of the thread where ID appears."
4346 (let (last-id prev)
4347 (while (and id (setq prev (car (gnus-id-to-thread id))))
4348 (setq last-id id
4349 id (gnus-parent-id (mail-header-references prev))))
4350 last-id))
4352 (defun gnus-articles-in-thread (thread)
4353 "Return the list of articles in THREAD."
4354 (cons (mail-header-number (car thread))
4355 (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread)))))
4357 (defun gnus-remove-thread (id &optional dont-remove)
4358 "Remove the thread that has ID in it."
4359 (let (headers thread last-id)
4360 ;; First go up in this thread until we find the root.
4361 (setq last-id (gnus-root-id id)
4362 headers (message-flatten-list (gnus-id-to-thread last-id)))
4363 ;; We have now found the real root of this thread. It might have
4364 ;; been gathered into some loose thread, so we have to search
4365 ;; through the threads to find the thread we wanted.
4366 (let ((threads gnus-newsgroup-threads)
4367 sub)
4368 (while threads
4369 (setq sub (car threads))
4370 (if (stringp (car sub))
4371 ;; This is a gathered thread, so we look at the roots
4372 ;; below it to find whether this article is in this
4373 ;; gathered root.
4374 (progn
4375 (setq sub (cdr sub))
4376 (while sub
4377 (when (member (caar sub) headers)
4378 (setq thread (car threads)
4379 threads nil
4380 sub nil))
4381 (setq sub (cdr sub))))
4382 ;; It's an ordinary thread, so we check it.
4383 (when (eq (car sub) (car headers))
4384 (setq thread sub
4385 threads nil)))
4386 (setq threads (cdr threads)))
4387 ;; If this article is in no thread, then it's a root.
4388 (if thread
4389 (unless dont-remove
4390 (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads)))
4391 (setq thread (gnus-id-to-thread last-id)))
4392 (when thread
4393 (prog1
4394 thread ; We return this thread.
4395 (unless dont-remove
4396 (if (stringp (car thread))
4397 (progn
4398 ;; If we use dummy roots, then we have to remove the
4399 ;; dummy root as well.
4400 (when (eq gnus-summary-make-false-root 'dummy)
4401 ;; We go to the dummy root by going to
4402 ;; the first sub-"thread", and then one line up.
4403 (gnus-summary-goto-article
4404 (mail-header-number (caadr thread)))
4405 (forward-line -1)
4406 (gnus-delete-line)
4407 (gnus-data-compute-positions))
4408 (setq thread (cdr thread))
4409 (while thread
4410 (gnus-remove-thread-1 (car thread))
4411 (setq thread (cdr thread))))
4412 (gnus-remove-thread-1 thread))))))))
4414 (defun gnus-remove-thread-1 (thread)
4415 "Remove the thread THREAD recursively."
4416 (let ((number (mail-header-number (pop thread)))
4418 (setq thread (reverse thread))
4419 (while thread
4420 (gnus-remove-thread-1 (pop thread)))
4421 (when (setq d (gnus-data-find number))
4422 (goto-char (gnus-data-pos d))
4423 (gnus-summary-show-thread)
4424 (gnus-data-remove
4425 number
4426 (- (gnus-point-at-bol)
4427 (prog1
4428 (1+ (gnus-point-at-eol))
4429 (gnus-delete-line)))))))
4431 (defun gnus-sort-threads-1 (threads func)
4432 (sort (mapcar (lambda (thread)
4433 (cons (car thread)
4434 (and (cdr thread)
4435 (gnus-sort-threads-1 (cdr thread) func))))
4436 threads) func))
4438 (defun gnus-sort-threads (threads)
4439 "Sort THREADS."
4440 (if (not gnus-thread-sort-functions)
4441 threads
4442 (gnus-message 8 "Sorting threads...")
4443 (let ((max-lisp-eval-depth 5000))
4444 (prog1 (gnus-sort-threads-1
4445 threads
4446 (gnus-make-sort-function gnus-thread-sort-functions))
4447 (gnus-message 8 "Sorting threads...done")))))
4449 (defun gnus-sort-articles (articles)
4450 "Sort ARTICLES."
4451 (when gnus-article-sort-functions
4452 (gnus-message 7 "Sorting articles...")
4453 (prog1
4454 (setq gnus-newsgroup-headers
4455 (sort articles (gnus-make-sort-function
4456 gnus-article-sort-functions)))
4457 (gnus-message 7 "Sorting articles...done"))))
4459 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
4460 (defmacro gnus-thread-header (thread)
4461 "Return header of first article in THREAD.
4462 Note that THREAD must never, ever be anything else than a variable -
4463 using some other form will lead to serious barfage."
4464 (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread)))
4465 ;; (8% speedup to gnus-summary-prepare, just for fun :-)
4466 (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207"
4467 (vector thread) 2))
4469 (defsubst gnus-article-sort-by-number (h1 h2)
4470 "Sort articles by article number."
4471 (< (mail-header-number h1)
4472 (mail-header-number h2)))
4474 (defun gnus-thread-sort-by-number (h1 h2)
4475 "Sort threads by root article number."
4476 (gnus-article-sort-by-number
4477 (gnus-thread-header h1) (gnus-thread-header h2)))
4479 (defsubst gnus-article-sort-by-random (h1 h2)
4480 "Sort articles by article number."
4481 (zerop (random 2)))
4483 (defun gnus-thread-sort-by-random (h1 h2)
4484 "Sort threads by root article number."
4485 (gnus-article-sort-by-random
4486 (gnus-thread-header h1) (gnus-thread-header h2)))
4488 (defsubst gnus-article-sort-by-lines (h1 h2)
4489 "Sort articles by article Lines header."
4490 (< (mail-header-lines h1)
4491 (mail-header-lines h2)))
4493 (defun gnus-thread-sort-by-lines (h1 h2)
4494 "Sort threads by root article Lines header."
4495 (gnus-article-sort-by-lines
4496 (gnus-thread-header h1) (gnus-thread-header h2)))
4498 (defsubst gnus-article-sort-by-chars (h1 h2)
4499 "Sort articles by octet length."
4500 (< (mail-header-chars h1)
4501 (mail-header-chars h2)))
4503 (defun gnus-thread-sort-by-chars (h1 h2)
4504 "Sort threads by root article octet length."
4505 (gnus-article-sort-by-chars
4506 (gnus-thread-header h1) (gnus-thread-header h2)))
4508 (defsubst gnus-article-sort-by-author (h1 h2)
4509 "Sort articles by root author."
4510 (string-lessp
4511 (let ((extract (funcall
4512 gnus-extract-address-components
4513 (mail-header-from h1))))
4514 (or (car extract) (cadr extract) ""))
4515 (let ((extract (funcall
4516 gnus-extract-address-components
4517 (mail-header-from h2))))
4518 (or (car extract) (cadr extract) ""))))
4520 (defun gnus-thread-sort-by-author (h1 h2)
4521 "Sort threads by root author."
4522 (gnus-article-sort-by-author
4523 (gnus-thread-header h1) (gnus-thread-header h2)))
4525 (defsubst gnus-article-sort-by-subject (h1 h2)
4526 "Sort articles by root subject."
4527 (string-lessp
4528 (downcase (gnus-simplify-subject-re (mail-header-subject h1)))
4529 (downcase (gnus-simplify-subject-re (mail-header-subject h2)))))
4531 (defun gnus-thread-sort-by-subject (h1 h2)
4532 "Sort threads by root subject."
4533 (gnus-article-sort-by-subject
4534 (gnus-thread-header h1) (gnus-thread-header h2)))
4536 (defsubst gnus-article-sort-by-date (h1 h2)
4537 "Sort articles by root article date."
4538 (time-less-p
4539 (gnus-date-get-time (mail-header-date h1))
4540 (gnus-date-get-time (mail-header-date h2))))
4542 (defun gnus-thread-sort-by-date (h1 h2)
4543 "Sort threads by root article date."
4544 (gnus-article-sort-by-date
4545 (gnus-thread-header h1) (gnus-thread-header h2)))
4547 (defsubst gnus-article-sort-by-score (h1 h2)
4548 "Sort articles by root article score.
4549 Unscored articles will be counted as having a score of zero."
4550 (> (or (cdr (assq (mail-header-number h1)
4551 gnus-newsgroup-scored))
4552 gnus-summary-default-score 0)
4553 (or (cdr (assq (mail-header-number h2)
4554 gnus-newsgroup-scored))
4555 gnus-summary-default-score 0)))
4557 (defun gnus-thread-sort-by-score (h1 h2)
4558 "Sort threads by root article score."
4559 (gnus-article-sort-by-score
4560 (gnus-thread-header h1) (gnus-thread-header h2)))
4562 (defun gnus-thread-sort-by-total-score (h1 h2)
4563 "Sort threads by the sum of all scores in the thread.
4564 Unscored articles will be counted as having a score of zero."
4565 (> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))
4567 (defun gnus-thread-total-score (thread)
4568 ;; This function find the total score of THREAD.
4569 (cond
4570 ((null thread)
4572 ((consp thread)
4573 (if (stringp (car thread))
4574 (apply gnus-thread-score-function 0
4575 (mapcar 'gnus-thread-total-score-1 (cdr thread)))
4576 (gnus-thread-total-score-1 thread)))
4578 (gnus-thread-total-score-1 (list thread)))))
4580 (defun gnus-thread-sort-by-most-recent-number (h1 h2)
4581 "Sort threads such that the thread with the most recently arrived article comes first."
4582 (> (gnus-thread-highest-number h1) (gnus-thread-highest-number h2)))
4584 (defun gnus-thread-highest-number (thread)
4585 "Return the highest article number in THREAD."
4586 (apply 'max (mapcar (lambda (header)
4587 (mail-header-number header))
4588 (message-flatten-list thread))))
4590 (defun gnus-thread-sort-by-most-recent-date (h1 h2)
4591 "Sort threads such that the thread with the most recently dated article comes first."
4592 (> (gnus-thread-latest-date h1) (gnus-thread-latest-date h2)))
4594 (defun gnus-thread-latest-date (thread)
4595 "Return the highest article date in THREAD."
4596 (let ((previous-time 0))
4597 (apply 'max
4598 (mapcar
4599 (lambda (header)
4600 (setq previous-time
4601 (condition-case ()
4602 (time-to-seconds (mail-header-parse-date
4603 (mail-header-date header)))
4604 (error previous-time))))
4605 (sort
4606 (message-flatten-list thread)
4607 (lambda (h1 h2)
4608 (< (mail-header-number h1)
4609 (mail-header-number h2))))))))
4611 (defun gnus-thread-total-score-1 (root)
4612 ;; This function find the total score of the thread below ROOT.
4613 (setq root (car root))
4614 (apply gnus-thread-score-function
4615 (or (append
4616 (mapcar 'gnus-thread-total-score
4617 (cdr (gnus-id-to-thread (mail-header-id root))))
4618 (when (> (mail-header-number root) 0)
4619 (list (or (cdr (assq (mail-header-number root)
4620 gnus-newsgroup-scored))
4621 gnus-summary-default-score 0))))
4622 (list gnus-summary-default-score)
4623 '(0))))
4625 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
4626 (defvar gnus-tmp-prev-subject nil)
4627 (defvar gnus-tmp-false-parent nil)
4628 (defvar gnus-tmp-root-expunged nil)
4629 (defvar gnus-tmp-dummy-line nil)
4631 (eval-when-compile (defvar gnus-tmp-header))
4632 (defun gnus-extra-header (type &optional header)
4633 "Return the extra header of TYPE."
4634 (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header))))
4635 ""))
4637 (defvar gnus-tmp-thread-tree-header-string "")
4639 (defcustom gnus-sum-thread-tree-root "> "
4640 "With %B spec, used for the root of a thread.
4641 If nil, use subject instead."
4642 :version "22.1"
4643 :type '(radio (const :format "%v " nil) string)
4644 :group 'gnus-thread)
4645 (defcustom gnus-sum-thread-tree-false-root "> "
4646 "With %B spec, used for a false root of a thread.
4647 If nil, use subject instead."
4648 :version "22.1"
4649 :type '(radio (const :format "%v " nil) string)
4650 :group 'gnus-thread)
4651 (defcustom gnus-sum-thread-tree-single-indent ""
4652 "With %B spec, used for a thread with just one message.
4653 If nil, use subject instead."
4654 :version "22.1"
4655 :type '(radio (const :format "%v " nil) string)
4656 :group 'gnus-thread)
4657 (defcustom gnus-sum-thread-tree-vertical "| "
4658 "With %B spec, used for drawing a vertical line."
4659 :version "22.1"
4660 :type 'string
4661 :group 'gnus-thread)
4662 (defcustom gnus-sum-thread-tree-indent " "
4663 "With %B spec, used for indenting."
4664 :version "22.1"
4665 :type 'string
4666 :group 'gnus-thread)
4667 (defcustom gnus-sum-thread-tree-leaf-with-other "+-> "
4668 "With %B spec, used for a leaf with brothers."
4669 :version "22.1"
4670 :type 'string
4671 :group 'gnus-thread)
4672 (defcustom gnus-sum-thread-tree-single-leaf "\\-> "
4673 "With %B spec, used for a leaf without brothers."
4674 :version "22.1"
4675 :type 'string
4676 :group 'gnus-thread)
4678 (defun gnus-summary-prepare-threads (threads)
4679 "Prepare summary buffer from THREADS and indentation LEVEL.
4680 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])'
4681 or a straight list of headers."
4682 (gnus-message 7 "Generating summary...")
4684 (setq gnus-newsgroup-threads threads)
4685 (beginning-of-line)
4687 (let ((gnus-tmp-level 0)
4688 (default-score (or gnus-summary-default-score 0))
4689 (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight))
4690 (building-line-count gnus-summary-display-while-building)
4691 (building-count (integerp gnus-summary-display-while-building))
4692 thread number subject stack state gnus-tmp-gathered beg-match
4693 new-roots gnus-tmp-new-adopts thread-end simp-subject
4694 gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
4695 gnus-tmp-replied gnus-tmp-subject-or-nil
4696 gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
4697 gnus-tmp-score-char gnus-tmp-from gnus-tmp-name
4698 gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
4699 tree-stack)
4701 (setq gnus-tmp-prev-subject nil
4702 gnus-tmp-thread-tree-header-string "")
4704 (if (vectorp (car threads))
4705 ;; If this is a straight (sic) list of headers, then a
4706 ;; threaded summary display isn't required, so we just create
4707 ;; an unthreaded one.
4708 (gnus-summary-prepare-unthreaded threads)
4710 ;; Do the threaded display.
4712 (if gnus-summary-display-while-building
4713 (switch-to-buffer (buffer-name)))
4714 (while (or threads stack gnus-tmp-new-adopts new-roots)
4716 (if (and (= gnus-tmp-level 0)
4717 (or (not stack)
4718 (= (caar stack) 0))
4719 (not gnus-tmp-false-parent)
4720 (or gnus-tmp-new-adopts new-roots))
4721 (if gnus-tmp-new-adopts
4722 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1)
4723 thread (list (car gnus-tmp-new-adopts))
4724 gnus-tmp-header (caar thread)
4725 gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts))
4726 (when new-roots
4727 (setq thread (list (car new-roots))
4728 gnus-tmp-header (caar thread)
4729 new-roots (cdr new-roots))))
4731 (if threads
4732 ;; If there are some threads, we do them before the
4733 ;; threads on the stack.
4734 (setq thread threads
4735 gnus-tmp-header (caar thread))
4736 ;; There were no current threads, so we pop something off
4737 ;; the stack.
4738 (setq state (car stack)
4739 gnus-tmp-level (car state)
4740 tree-stack (cadr state)
4741 thread (caddr state)
4742 stack (cdr stack)
4743 gnus-tmp-header (caar thread))))
4745 (setq gnus-tmp-false-parent nil)
4746 (setq gnus-tmp-root-expunged nil)
4747 (setq thread-end nil)
4749 (if (stringp gnus-tmp-header)
4750 ;; The header is a dummy root.
4751 (cond
4752 ((eq gnus-summary-make-false-root 'adopt)
4753 ;; We let the first article adopt the rest.
4754 (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts
4755 (cddar thread)))
4756 (setq gnus-tmp-gathered
4757 (nconc (mapcar
4758 (lambda (h) (mail-header-number (car h)))
4759 (cddar thread))
4760 gnus-tmp-gathered))
4761 (setq thread (cons (list (caar thread)
4762 (cadar thread))
4763 (cdr thread)))
4764 (setq gnus-tmp-level -1
4765 gnus-tmp-false-parent t))
4766 ((eq gnus-summary-make-false-root 'empty)
4767 ;; We print adopted articles with empty subject fields.
4768 (setq gnus-tmp-gathered
4769 (nconc (mapcar
4770 (lambda (h) (mail-header-number (car h)))
4771 (cddar thread))
4772 gnus-tmp-gathered))
4773 (setq gnus-tmp-level -1))
4774 ((eq gnus-summary-make-false-root 'dummy)
4775 ;; We remember that we probably want to output a dummy
4776 ;; root.
4777 (setq gnus-tmp-dummy-line gnus-tmp-header)
4778 (setq gnus-tmp-prev-subject gnus-tmp-header))
4780 ;; We do not make a root for the gathered
4781 ;; sub-threads at all.
4782 (setq gnus-tmp-level -1)))
4784 (setq number (mail-header-number gnus-tmp-header)
4785 subject (mail-header-subject gnus-tmp-header)
4786 simp-subject (gnus-simplify-subject-fully subject))
4788 (cond
4789 ;; If the thread has changed subject, we might want to make
4790 ;; this subthread into a root.
4791 ((and (null gnus-thread-ignore-subject)
4792 (not (zerop gnus-tmp-level))
4793 gnus-tmp-prev-subject
4794 (not (string= gnus-tmp-prev-subject simp-subject)))
4795 (setq new-roots (nconc new-roots (list (car thread)))
4796 thread-end t
4797 gnus-tmp-header nil))
4798 ;; If the article lies outside the current limit,
4799 ;; then we do not display it.
4800 ((not (memq number gnus-newsgroup-limit))
4801 (setq gnus-tmp-gathered
4802 (nconc (mapcar
4803 (lambda (h) (mail-header-number (car h)))
4804 (cdar thread))
4805 gnus-tmp-gathered))
4806 (setq gnus-tmp-new-adopts (if (cdar thread)
4807 (append gnus-tmp-new-adopts
4808 (cdar thread))
4809 gnus-tmp-new-adopts)
4810 thread-end t
4811 gnus-tmp-header nil)
4812 (when (zerop gnus-tmp-level)
4813 (setq gnus-tmp-root-expunged t)))
4814 ;; Perhaps this article is to be marked as read?
4815 ((and gnus-summary-mark-below
4816 (< (or (cdr (assq number gnus-newsgroup-scored))
4817 default-score)
4818 gnus-summary-mark-below)
4819 ;; Don't touch sparse articles.
4820 (not (gnus-summary-article-sparse-p number))
4821 (not (gnus-summary-article-ancient-p number)))
4822 (setq gnus-newsgroup-unreads
4823 (delq number gnus-newsgroup-unreads))
4824 (if gnus-newsgroup-auto-expire
4825 (setq gnus-newsgroup-expirable
4826 (gnus-add-to-sorted-list
4827 gnus-newsgroup-expirable number))
4828 (push (cons number gnus-low-score-mark)
4829 gnus-newsgroup-reads))))
4831 (when gnus-tmp-header
4832 ;; We may have an old dummy line to output before this
4833 ;; article.
4834 (when (and gnus-tmp-dummy-line
4835 (gnus-subject-equal
4836 gnus-tmp-dummy-line
4837 (mail-header-subject gnus-tmp-header)))
4838 (gnus-summary-insert-dummy-line
4839 gnus-tmp-dummy-line (mail-header-number gnus-tmp-header))
4840 (setq gnus-tmp-dummy-line nil))
4842 ;; Compute the mark.
4843 (setq gnus-tmp-unread (gnus-article-mark number))
4845 (push (gnus-data-make number gnus-tmp-unread (1+ (point))
4846 gnus-tmp-header gnus-tmp-level)
4847 gnus-newsgroup-data)
4849 ;; Actually insert the line.
4850 (setq
4851 gnus-tmp-subject-or-nil
4852 (cond
4853 ((and gnus-thread-ignore-subject
4854 gnus-tmp-prev-subject
4855 (not (string= gnus-tmp-prev-subject simp-subject)))
4856 subject)
4857 ((zerop gnus-tmp-level)
4858 (if (and (eq gnus-summary-make-false-root 'empty)
4859 (memq number gnus-tmp-gathered)
4860 gnus-tmp-prev-subject
4861 (string= gnus-tmp-prev-subject simp-subject))
4862 gnus-summary-same-subject
4863 subject))
4864 (t gnus-summary-same-subject)))
4865 (if (and (eq gnus-summary-make-false-root 'adopt)
4866 (= gnus-tmp-level 1)
4867 (memq number gnus-tmp-gathered))
4868 (setq gnus-tmp-opening-bracket ?\<
4869 gnus-tmp-closing-bracket ?\>)
4870 (setq gnus-tmp-opening-bracket ?\[
4871 gnus-tmp-closing-bracket ?\]))
4872 (setq
4873 gnus-tmp-indentation
4874 (aref gnus-thread-indent-array gnus-tmp-level)
4875 gnus-tmp-lines (mail-header-lines gnus-tmp-header)
4876 gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored))
4877 gnus-summary-default-score 0)
4878 gnus-tmp-score-char
4879 (if (or (null gnus-summary-default-score)
4880 (<= (abs (- gnus-tmp-score gnus-summary-default-score))
4881 gnus-summary-zcore-fuzz))
4882 ? ;Whitespace
4883 (if (< gnus-tmp-score gnus-summary-default-score)
4884 gnus-score-below-mark gnus-score-over-mark))
4885 gnus-tmp-replied
4886 (cond ((memq number gnus-newsgroup-processable)
4887 gnus-process-mark)
4888 ((memq number gnus-newsgroup-cached)
4889 gnus-cached-mark)
4890 ((memq number gnus-newsgroup-replied)
4891 gnus-replied-mark)
4892 ((memq number gnus-newsgroup-forwarded)
4893 gnus-forwarded-mark)
4894 ((memq number gnus-newsgroup-saved)
4895 gnus-saved-mark)
4896 ((memq number gnus-newsgroup-recent)
4897 gnus-recent-mark)
4898 ((memq number gnus-newsgroup-unseen)
4899 gnus-unseen-mark)
4900 (t gnus-no-mark))
4901 gnus-tmp-downloaded
4902 (cond ((memq number gnus-newsgroup-undownloaded)
4903 gnus-undownloaded-mark)
4904 (gnus-newsgroup-agentized
4905 gnus-downloaded-mark)
4907 gnus-no-mark))
4908 gnus-tmp-from (mail-header-from gnus-tmp-header)
4909 gnus-tmp-name
4910 (cond
4911 ((string-match "<[^>]+> *$" gnus-tmp-from)
4912 (setq beg-match (match-beginning 0))
4913 (or (and (string-match "^\".+\"" gnus-tmp-from)
4914 (substring gnus-tmp-from 1 (1- (match-end 0))))
4915 (substring gnus-tmp-from 0 beg-match)))
4916 ((string-match "(.+)" gnus-tmp-from)
4917 (substring gnus-tmp-from
4918 (1+ (match-beginning 0)) (1- (match-end 0))))
4919 (t gnus-tmp-from))
4921 ;; Do the %B string
4922 gnus-tmp-thread-tree-header-string
4923 (cond
4924 ((not gnus-show-threads) "")
4925 ((zerop gnus-tmp-level)
4926 (cond ((cdar thread)
4927 (or gnus-sum-thread-tree-root subject))
4928 (gnus-tmp-new-adopts
4929 (or gnus-sum-thread-tree-false-root subject))
4931 (or gnus-sum-thread-tree-single-indent subject))))
4933 (concat (apply 'concat
4934 (mapcar (lambda (item)
4935 (if (= item 1)
4936 gnus-sum-thread-tree-vertical
4937 gnus-sum-thread-tree-indent))
4938 (cdr (reverse tree-stack))))
4939 (if (nth 1 thread)
4940 gnus-sum-thread-tree-leaf-with-other
4941 gnus-sum-thread-tree-single-leaf)))))
4942 (when (string= gnus-tmp-name "")
4943 (setq gnus-tmp-name gnus-tmp-from))
4944 (unless (numberp gnus-tmp-lines)
4945 (setq gnus-tmp-lines -1))
4946 (if (= gnus-tmp-lines -1)
4947 (setq gnus-tmp-lines "?")
4948 (setq gnus-tmp-lines (number-to-string gnus-tmp-lines)))
4949 (gnus-put-text-property
4950 (point)
4951 (progn (eval gnus-summary-line-format-spec) (point))
4952 'gnus-number number)
4953 (when gnus-visual-p
4954 (forward-line -1)
4955 (gnus-run-hooks 'gnus-summary-update-hook)
4956 (forward-line 1))
4958 (setq gnus-tmp-prev-subject simp-subject)))
4960 (when (nth 1 thread)
4961 (push (list (max 0 gnus-tmp-level)
4962 (copy-sequence tree-stack)
4963 (nthcdr 1 thread))
4964 stack))
4965 (push (if (nth 1 thread) 1 0) tree-stack)
4966 (incf gnus-tmp-level)
4967 (setq threads (if thread-end nil (cdar thread)))
4968 (if gnus-summary-display-while-building
4969 (if building-count
4970 (progn
4971 ;; use a set frequency
4972 (setq building-line-count (1- building-line-count))
4973 (when (= building-line-count 0)
4974 (sit-for 0)
4975 (setq building-line-count
4976 gnus-summary-display-while-building)))
4977 ;; always
4978 (sit-for 0)))
4979 (unless threads
4980 (setq gnus-tmp-level 0)))))
4981 (gnus-message 7 "Generating summary...done"))
4983 (defun gnus-summary-prepare-unthreaded (headers)
4984 "Generate an unthreaded summary buffer based on HEADERS."
4985 (let (header number mark)
4987 (beginning-of-line)
4989 (while headers
4990 ;; We may have to root out some bad articles...
4991 (when (memq (setq number (mail-header-number
4992 (setq header (pop headers))))
4993 gnus-newsgroup-limit)
4994 ;; Mark article as read when it has a low score.
4995 (when (and gnus-summary-mark-below
4996 (< (or (cdr (assq number gnus-newsgroup-scored))
4997 gnus-summary-default-score 0)
4998 gnus-summary-mark-below)
4999 (not (gnus-summary-article-ancient-p number)))
5000 (setq gnus-newsgroup-unreads
5001 (delq number gnus-newsgroup-unreads))
5002 (if gnus-newsgroup-auto-expire
5003 (push number gnus-newsgroup-expirable)
5004 (push (cons number gnus-low-score-mark)
5005 gnus-newsgroup-reads)))
5007 (setq mark (gnus-article-mark number))
5008 (push (gnus-data-make number mark (1+ (point)) header 0)
5009 gnus-newsgroup-data)
5010 (gnus-summary-insert-line
5011 header 0 number
5012 (memq number gnus-newsgroup-undownloaded)
5013 mark (memq number gnus-newsgroup-replied)
5014 (memq number gnus-newsgroup-expirable)
5015 (mail-header-subject header) nil
5016 (cdr (assq number gnus-newsgroup-scored))
5017 (memq number gnus-newsgroup-processable))))))
5019 (defun gnus-summary-remove-list-identifiers ()
5020 "Remove list identifiers in `gnus-list-identifiers' from articles in the current group."
5021 (let ((regexp (if (consp gnus-list-identifiers)
5022 (mapconcat 'identity gnus-list-identifiers " *\\|")
5023 gnus-list-identifiers))
5024 changed subject)
5025 (when regexp
5026 (dolist (header gnus-newsgroup-headers)
5027 (setq subject (mail-header-subject header)
5028 changed nil)
5029 (while (string-match
5030 (concat "^\\(R[Ee]: +\\)*\\(" regexp " *\\)")
5031 subject)
5032 (setq subject
5033 (concat (substring subject 0 (match-beginning 2))
5034 (substring subject (match-end 0)))
5035 changed t))
5036 (when (and changed
5037 (string-match
5038 "^\\(\\(R[Ee]: +\\)+\\)R[Ee]: +" subject))
5039 (setq subject
5040 (concat (substring subject 0 (match-beginning 1))
5041 (substring subject (match-end 1)))))
5042 (when changed
5043 (mail-header-set-subject header subject))))))
5045 (defun gnus-fetch-headers (articles)
5046 "Fetch headers of ARTICLES."
5047 (let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
5048 (gnus-message 5 "Fetching headers for %s..." name)
5049 (prog1
5050 (if (eq 'nov
5051 (setq gnus-headers-retrieved-by
5052 (gnus-retrieve-headers
5053 articles gnus-newsgroup-name
5054 ;; We might want to fetch old headers, but
5055 ;; not if there is only 1 article.
5056 (and (or (and
5057 (not (eq gnus-fetch-old-headers 'some))
5058 (not (numberp gnus-fetch-old-headers)))
5059 (> (length articles) 1))
5060 gnus-fetch-old-headers))))
5061 (gnus-get-newsgroup-headers-xover
5062 articles nil nil gnus-newsgroup-name t)
5063 (gnus-get-newsgroup-headers))
5064 (gnus-message 5 "Fetching headers for %s...done" name))))
5066 (defun gnus-select-newsgroup (group &optional read-all select-articles)
5067 "Select newsgroup GROUP.
5068 If READ-ALL is non-nil, all articles in the group are selected.
5069 If SELECT-ARTICLES, only select those articles from GROUP."
5070 (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
5071 ;;!!! Dirty hack; should be removed.
5072 (gnus-summary-ignore-duplicates
5073 (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual)
5075 gnus-summary-ignore-duplicates))
5076 (info (nth 2 entry))
5077 articles fetched-articles cached)
5079 (unless (gnus-check-server
5080 (set (make-local-variable 'gnus-current-select-method)
5081 (gnus-find-method-for-group group)))
5082 (error "Couldn't open server"))
5084 (or (and entry (not (eq (car entry) t))) ; Either it's active...
5085 (gnus-activate-group group) ; Or we can activate it...
5086 (progn ; Or we bug out.
5087 (when (equal major-mode 'gnus-summary-mode)
5088 (gnus-kill-buffer (current-buffer)))
5089 (error "Couldn't activate group %s: %s"
5090 group (gnus-status-message group))))
5092 (unless (gnus-request-group group t)
5093 (when (equal major-mode 'gnus-summary-mode)
5094 (gnus-kill-buffer (current-buffer)))
5095 (error "Couldn't request group %s: %s"
5096 group (gnus-status-message group)))
5098 (when gnus-agent
5099 (gnus-agent-possibly-alter-active group (gnus-active group) info)
5101 (setq gnus-summary-use-undownloaded-faces
5102 (gnus-agent-find-parameter
5103 group
5104 'agent-enable-undownloaded-faces)))
5106 (setq gnus-newsgroup-name group
5107 gnus-newsgroup-unselected nil
5108 gnus-newsgroup-unreads (gnus-list-of-unread-articles group))
5110 (let ((display (gnus-group-find-parameter group 'display)))
5111 (setq gnus-newsgroup-display
5112 (cond
5113 ((not (zerop (or (car-safe read-all) 0)))
5114 ;; The user entered the group with C-u SPC/RET, let's show
5115 ;; all articles.
5116 'gnus-not-ignore)
5117 ((eq display 'all)
5118 'gnus-not-ignore)
5119 ((arrayp display)
5120 (gnus-summary-display-make-predicate (mapcar 'identity display)))
5121 ((numberp display)
5122 ;; The following is probably the "correct" solution, but
5123 ;; it makes Gnus fetch all headers and then limit the
5124 ;; articles (which is slow), so instead we hack the
5125 ;; select-articles parameter instead. -- Simon Josefsson
5126 ;; <jas@kth.se>
5128 ;; (gnus-byte-compile
5129 ;; `(lambda () (> number ,(- (cdr (gnus-active group))
5130 ;; display)))))
5131 (setq select-articles
5132 (gnus-uncompress-range
5133 (cons (let ((tmp (- (cdr (gnus-active group)) display)))
5134 (if (> tmp 0)
5137 (cdr (gnus-active group)))))
5138 nil)
5140 nil))))
5142 (gnus-summary-setup-default-charset)
5144 ;; Kludge to avoid having cached articles nixed out in virtual groups.
5145 (when (gnus-virtual-group-p group)
5146 (setq cached gnus-newsgroup-cached))
5148 (setq gnus-newsgroup-unreads
5149 (gnus-sorted-ndifference
5150 (gnus-sorted-ndifference gnus-newsgroup-unreads
5151 gnus-newsgroup-marked)
5152 gnus-newsgroup-dormant))
5154 (setq gnus-newsgroup-processable nil)
5156 (gnus-update-read-articles group gnus-newsgroup-unreads)
5158 ;; Adjust and set lists of article marks.
5159 (when info
5160 (gnus-adjust-marked-articles info))
5161 (if (setq articles select-articles)
5162 (setq gnus-newsgroup-unselected
5163 (gnus-sorted-difference gnus-newsgroup-unreads articles))
5164 (setq articles (gnus-articles-to-read group read-all)))
5166 (cond
5167 ((null articles)
5168 ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display")
5169 'quit)
5170 ((eq articles 0) nil)
5172 ;; Init the dependencies hash table.
5173 (setq gnus-newsgroup-dependencies
5174 (gnus-make-hashtable (length articles)))
5175 (gnus-set-global-variables)
5176 ;; Retrieve the headers and read them in.
5178 (setq gnus-newsgroup-headers (gnus-fetch-headers articles))
5180 ;; Kludge to avoid having cached articles nixed out in virtual groups.
5181 (when cached
5182 (setq gnus-newsgroup-cached cached))
5184 ;; Suppress duplicates?
5185 (when gnus-suppress-duplicates
5186 (gnus-dup-suppress-articles))
5188 ;; Set the initial limit.
5189 (setq gnus-newsgroup-limit (copy-sequence articles))
5190 ;; Remove canceled articles from the list of unread articles.
5191 (setq fetched-articles
5192 (mapcar (lambda (headers) (mail-header-number headers))
5193 gnus-newsgroup-headers))
5194 (setq gnus-newsgroup-articles fetched-articles)
5195 (setq gnus-newsgroup-unreads
5196 (gnus-sorted-nintersection
5197 gnus-newsgroup-unreads fetched-articles))
5198 (gnus-compute-unseen-list)
5200 ;; Removed marked articles that do not exist.
5201 (gnus-update-missing-marks
5202 (gnus-sorted-difference articles fetched-articles))
5203 ;; We might want to build some more threads first.
5204 (when (and gnus-fetch-old-headers
5205 (eq gnus-headers-retrieved-by 'nov))
5206 (if (eq gnus-fetch-old-headers 'invisible)
5207 (gnus-build-all-threads)
5208 (gnus-build-old-threads)))
5209 ;; Let the Gnus agent mark articles as read.
5210 (when gnus-agent
5211 (gnus-agent-get-undownloaded-list))
5212 ;; Remove list identifiers from subject
5213 (when gnus-list-identifiers
5214 (gnus-summary-remove-list-identifiers))
5215 ;; Check whether auto-expire is to be done in this group.
5216 (setq gnus-newsgroup-auto-expire
5217 (gnus-group-auto-expirable-p group))
5218 ;; Set up the article buffer now, if necessary.
5219 (unless gnus-single-article-buffer
5220 (gnus-article-setup-buffer))
5221 ;; First and last article in this newsgroup.
5222 (when gnus-newsgroup-headers
5223 (setq gnus-newsgroup-begin
5224 (mail-header-number (car gnus-newsgroup-headers))
5225 gnus-newsgroup-end
5226 (mail-header-number
5227 (gnus-last-element gnus-newsgroup-headers))))
5228 ;; GROUP is successfully selected.
5229 (or gnus-newsgroup-headers t)))))
5231 (defun gnus-compute-unseen-list ()
5232 ;; The `seen' marks are treated specially.
5233 (if (not gnus-newsgroup-seen)
5234 (setq gnus-newsgroup-unseen gnus-newsgroup-articles)
5235 (setq gnus-newsgroup-unseen
5236 (gnus-inverse-list-range-intersection
5237 gnus-newsgroup-articles gnus-newsgroup-seen))))
5239 (defun gnus-summary-display-make-predicate (display)
5240 (require 'gnus-agent)
5241 (when (= (length display) 1)
5242 (setq display (car display)))
5243 (unless gnus-summary-display-cache
5244 (dolist (elem (append '((unread . unread)
5245 (read . read)
5246 (unseen . unseen))
5247 gnus-article-mark-lists))
5248 (push (cons (cdr elem)
5249 (gnus-byte-compile
5250 `(lambda () (gnus-article-marked-p ',(cdr elem)))))
5251 gnus-summary-display-cache)))
5252 (let ((gnus-category-predicate-alist gnus-summary-display-cache)
5253 (gnus-category-predicate-cache gnus-summary-display-cache))
5254 (gnus-get-predicate display)))
5256 ;; Uses the dynamically bound `number' variable.
5257 (eval-when-compile
5258 (defvar number))
5259 (defun gnus-article-marked-p (type &optional article)
5260 (let ((article (or article number)))
5261 (cond
5262 ((eq type 'tick)
5263 (memq article gnus-newsgroup-marked))
5264 ((eq type 'spam)
5265 (memq article gnus-newsgroup-spam-marked))
5266 ((eq type 'unsend)
5267 (memq article gnus-newsgroup-unsendable))
5268 ((eq type 'undownload)
5269 (memq article gnus-newsgroup-undownloaded))
5270 ((eq type 'download)
5271 (memq article gnus-newsgroup-downloadable))
5272 ((eq type 'unread)
5273 (memq article gnus-newsgroup-unreads))
5274 ((eq type 'read)
5275 (memq article gnus-newsgroup-reads))
5276 ((eq type 'dormant)
5277 (memq article gnus-newsgroup-dormant) )
5278 ((eq type 'expire)
5279 (memq article gnus-newsgroup-expirable))
5280 ((eq type 'reply)
5281 (memq article gnus-newsgroup-replied))
5282 ((eq type 'killed)
5283 (memq article gnus-newsgroup-killed))
5284 ((eq type 'bookmark)
5285 (assq article gnus-newsgroup-bookmarks))
5286 ((eq type 'score)
5287 (assq article gnus-newsgroup-scored))
5288 ((eq type 'save)
5289 (memq article gnus-newsgroup-saved))
5290 ((eq type 'cache)
5291 (memq article gnus-newsgroup-cached))
5292 ((eq type 'forward)
5293 (memq article gnus-newsgroup-forwarded))
5294 ((eq type 'seen)
5295 (not (memq article gnus-newsgroup-unseen)))
5296 ((eq type 'recent)
5297 (memq article gnus-newsgroup-recent))
5298 (t t))))
5300 (defun gnus-articles-to-read (group &optional read-all)
5301 "Find out what articles the user wants to read."
5302 (let* ((display (gnus-group-find-parameter group 'display))
5303 (articles
5304 ;; Select all articles if `read-all' is non-nil, or if there
5305 ;; are no unread articles.
5306 (if (or read-all
5307 (and (zerop (length gnus-newsgroup-marked))
5308 (zerop (length gnus-newsgroup-unreads)))
5309 ;; Fetch all if the predicate is non-nil.
5310 gnus-newsgroup-display)
5311 ;; We want to select the headers for all the articles in
5312 ;; the group, so we select either all the active
5313 ;; articles in the group, or (if that's nil), the
5314 ;; articles in the cache.
5316 (gnus-uncompress-range (gnus-active group))
5317 (gnus-cache-articles-in-group group))
5318 ;; Select only the "normal" subset of articles.
5319 (gnus-sorted-nunion
5320 (gnus-sorted-union gnus-newsgroup-dormant gnus-newsgroup-marked)
5321 gnus-newsgroup-unreads)))
5322 (scored-list (gnus-killed-articles gnus-newsgroup-killed articles))
5323 (scored (length scored-list))
5324 (number (length articles))
5325 (marked (+ (length gnus-newsgroup-marked)
5326 (length gnus-newsgroup-dormant)))
5327 (select
5328 (cond
5329 ((numberp read-all)
5330 read-all)
5331 ((numberp gnus-newsgroup-display)
5332 gnus-newsgroup-display)
5334 (condition-case ()
5335 (cond
5336 ((and (or (<= scored marked) (= scored number))
5337 (numberp gnus-large-newsgroup)
5338 (> number gnus-large-newsgroup))
5339 (let* ((cursor-in-echo-area nil)
5340 (initial (gnus-parameter-large-newsgroup-initial
5341 gnus-newsgroup-name))
5342 (input
5343 (read-string
5344 (format
5345 "How many articles from %s (%s %d): "
5346 (gnus-limit-string
5347 (gnus-group-decoded-name gnus-newsgroup-name)
5349 (if initial "max" "default")
5350 number)
5351 (if initial
5352 (cons (number-to-string initial)
5353 0)))))
5354 (if (string-match "^[ \t]*$" input) number input)))
5355 ((and (> scored marked) (< scored number)
5356 (> (- scored number) 20))
5357 (let ((input
5358 (read-string
5359 (format "%s %s (%d scored, %d total): "
5360 "How many articles from"
5361 (gnus-group-decoded-name group)
5362 scored number))))
5363 (if (string-match "^[ \t]*$" input)
5364 number input)))
5365 (t number))
5366 (quit
5367 (message "Quit getting the articles to read")
5368 nil))))))
5369 (setq select (if (stringp select) (string-to-number select) select))
5370 (if (or (null select) (zerop select))
5371 select
5372 (if (and (not (zerop scored)) (<= (abs select) scored))
5373 (progn
5374 (setq articles (sort scored-list '<))
5375 (setq number (length articles)))
5376 (setq articles (copy-sequence articles)))
5378 (when (< (abs select) number)
5379 (if (< select 0)
5380 ;; Select the N oldest articles.
5381 (setcdr (nthcdr (1- (abs select)) articles) nil)
5382 ;; Select the N most recent articles.
5383 (setq articles (nthcdr (- number select) articles))))
5384 (setq gnus-newsgroup-unselected
5385 (gnus-sorted-difference gnus-newsgroup-unreads articles))
5386 (when gnus-alter-articles-to-read-function
5387 (setq articles
5388 (sort
5389 (funcall gnus-alter-articles-to-read-function
5390 gnus-newsgroup-name articles)
5391 '<)))
5392 articles)))
5394 (defun gnus-killed-articles (killed articles)
5395 (let (out)
5396 (while articles
5397 (when (inline (gnus-member-of-range (car articles) killed))
5398 (push (car articles) out))
5399 (setq articles (cdr articles)))
5400 out))
5402 (defun gnus-uncompress-marks (marks)
5403 "Uncompress the mark ranges in MARKS."
5404 (let ((uncompressed '(score bookmark))
5405 out)
5406 (while marks
5407 (if (memq (caar marks) uncompressed)
5408 (push (car marks) out)
5409 (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out))
5410 (setq marks (cdr marks)))
5411 out))
5413 (defun gnus-article-mark-to-type (mark)
5414 "Return the type of MARK."
5415 (or (cadr (assq mark gnus-article-special-mark-lists))
5416 'list))
5418 (defun gnus-article-unpropagatable-p (mark)
5419 "Return whether MARK should be propagated to back end."
5420 (memq mark gnus-article-unpropagated-mark-lists))
5422 (defun gnus-adjust-marked-articles (info)
5423 "Set all article lists and remove all marks that are no longer valid."
5424 (let* ((marked-lists (gnus-info-marks info))
5425 (active (gnus-active (gnus-info-group info)))
5426 (min (car active))
5427 (max (cdr active))
5428 (types gnus-article-mark-lists)
5429 marks var articles article mark mark-type
5430 bgn end)
5432 (dolist (marks marked-lists)
5433 (setq mark (car marks)
5434 mark-type (gnus-article-mark-to-type mark)
5435 var (intern (format "gnus-newsgroup-%s" (car (rassq mark types)))))
5437 ;; We set the variable according to the type of the marks list,
5438 ;; and then adjust the marks to a subset of the active articles.
5439 (cond
5440 ;; Adjust "simple" lists - compressed yet unsorted
5441 ((eq mark-type 'list)
5442 ;; Simultaneously uncompress and clip to active range
5443 ;; See gnus-uncompress-range for a description of possible marks
5444 (let (l lh)
5445 (if (not (cadr marks))
5446 (set var nil)
5447 (setq articles (if (numberp (cddr marks))
5448 (list (cdr marks))
5449 (cdr marks))
5450 lh (cons nil nil)
5451 l lh)
5453 (while (setq article (pop articles))
5454 (cond ((consp article)
5455 (setq bgn (max (car article) min)
5456 end (min (cdr article) max))
5457 (while (<= bgn end)
5458 (setq l (setcdr l (cons bgn nil))
5459 bgn (1+ bgn))))
5460 ((and (<= min article)
5461 (>= max article))
5462 (setq l (setcdr l (cons article nil))))))
5463 (set var (cdr lh)))))
5464 ;; Adjust assocs.
5465 ((eq mark-type 'tuple)
5466 (set var (setq articles (cdr marks)))
5467 (when (not (listp (cdr (symbol-value var))))
5468 (set var (list (symbol-value var))))
5469 (when (not (listp (cdr articles)))
5470 (setq articles (list articles)))
5471 (while articles
5472 (when (or (not (consp (setq article (pop articles))))
5473 (< (car article) min)
5474 (> (car article) max))
5475 (set var (delq article (symbol-value var))))))
5476 ;; Adjust ranges (sloppily).
5477 ((eq mark-type 'range)
5478 (cond
5479 ((eq mark 'seen)
5480 ;; Fix the record for `seen' if it looks like (seen NUM1 . NUM2).
5481 ;; It should be (seen (NUM1 . NUM2)).
5482 (when (numberp (cddr marks))
5483 (setcdr marks (list (cdr marks))))
5484 (setq articles (cdr marks))
5485 (while (and articles
5486 (or (and (consp (car articles))
5487 (> min (cdar articles)))
5488 (and (numberp (car articles))
5489 (> min (car articles)))))
5490 (pop articles))
5491 (set var articles))))))))
5493 (defun gnus-update-missing-marks (missing)
5494 "Go through the list of MISSING articles and remove them from the mark lists."
5495 (when missing
5496 (let (var m)
5497 ;; Go through all types.
5498 (dolist (elem gnus-article-mark-lists)
5499 (when (eq (gnus-article-mark-to-type (cdr elem)) 'list)
5500 (setq var (intern (format "gnus-newsgroup-%s" (car elem))))
5501 (when (symbol-value var)
5502 ;; This list has articles. So we delete all missing
5503 ;; articles from it.
5504 (setq m missing)
5505 (while m
5506 (set var (delq (pop m) (symbol-value var))))))))))
5508 (defun gnus-update-marks ()
5509 "Enter the various lists of marked articles into the newsgroup info list."
5510 (let ((types gnus-article-mark-lists)
5511 (info (gnus-get-info gnus-newsgroup-name))
5512 type list newmarked symbol delta-marks)
5513 (when info
5514 ;; Add all marks lists to the list of marks lists.
5515 (while (setq type (pop types))
5516 (setq list (symbol-value
5517 (setq symbol
5518 (intern (format "gnus-newsgroup-%s" (car type))))))
5520 (when list
5521 ;; Get rid of the entries of the articles that have the
5522 ;; default score.
5523 (when (and (eq (cdr type) 'score)
5524 gnus-save-score
5525 list)
5526 (let* ((arts list)
5527 (prev (cons nil list))
5528 (all prev))
5529 (while arts
5530 (if (or (not (consp (car arts)))
5531 (= (cdar arts) gnus-summary-default-score))
5532 (setcdr prev (cdr arts))
5533 (setq prev arts))
5534 (setq arts (cdr arts)))
5535 (setq list (cdr all)))))
5537 (when (eq (cdr type) 'seen)
5538 (setq list (gnus-range-add list gnus-newsgroup-unseen)))
5540 (when (eq (gnus-article-mark-to-type (cdr type)) 'list)
5541 (setq list (gnus-compress-sequence (set symbol (sort list '<)) t)))
5543 (when (and (gnus-check-backend-function
5544 'request-set-mark gnus-newsgroup-name)
5545 (not (gnus-article-unpropagatable-p (cdr type))))
5546 (let* ((old (cdr (assq (cdr type) (gnus-info-marks info))))
5547 (del (gnus-remove-from-range (gnus-copy-sequence old) list))
5548 (add (gnus-remove-from-range
5549 (gnus-copy-sequence list) old)))
5550 (when add
5551 (push (list add 'add (list (cdr type))) delta-marks))
5552 (when del
5553 (push (list del 'del (list (cdr type))) delta-marks))))
5555 (when list
5556 (push (cons (cdr type) list) newmarked)))
5558 (when delta-marks
5559 (unless (gnus-check-group gnus-newsgroup-name)
5560 (error "Can't open server for %s" gnus-newsgroup-name))
5561 (gnus-request-set-mark gnus-newsgroup-name delta-marks))
5563 ;; Enter these new marks into the info of the group.
5564 (if (nthcdr 3 info)
5565 (setcar (nthcdr 3 info) newmarked)
5566 ;; Add the marks lists to the end of the info.
5567 (when newmarked
5568 (setcdr (nthcdr 2 info) (list newmarked))))
5570 ;; Cut off the end of the info if there's nothing else there.
5571 (let ((i 5))
5572 (while (and (> i 2)
5573 (not (nth i info)))
5574 (when (nthcdr (decf i) info)
5575 (setcdr (nthcdr i info) nil)))))))
5577 (defun gnus-set-mode-line (where)
5578 "Set the mode line of the article or summary buffers.
5579 If WHERE is `summary', the summary mode line format will be used."
5580 ;; Is this mode line one we keep updated?
5581 (when (and (memq where gnus-updated-mode-lines)
5582 (symbol-value
5583 (intern (format "gnus-%s-mode-line-format-spec" where))))
5584 (let (mode-string)
5585 (save-excursion
5586 ;; We evaluate this in the summary buffer since these
5587 ;; variables are buffer-local to that buffer.
5588 (set-buffer gnus-summary-buffer)
5589 ;; We bind all these variables that are used in the `eval' form
5590 ;; below.
5591 (let* ((mformat (symbol-value
5592 (intern
5593 (format "gnus-%s-mode-line-format-spec" where))))
5594 (gnus-tmp-group-name (gnus-group-decoded-name
5595 gnus-newsgroup-name))
5596 (gnus-tmp-article-number (or gnus-current-article 0))
5597 (gnus-tmp-unread gnus-newsgroup-unreads)
5598 (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads))
5599 (gnus-tmp-unselected (length gnus-newsgroup-unselected))
5600 (gnus-tmp-unread-and-unselected
5601 (cond ((and (zerop gnus-tmp-unread-and-unticked)
5602 (zerop gnus-tmp-unselected))
5604 ((zerop gnus-tmp-unselected)
5605 (format "{%d more}" gnus-tmp-unread-and-unticked))
5606 (t (format "{%d(+%d) more}"
5607 gnus-tmp-unread-and-unticked
5608 gnus-tmp-unselected))))
5609 (gnus-tmp-subject
5610 (if (and gnus-current-headers
5611 (vectorp gnus-current-headers))
5612 (gnus-mode-string-quote
5613 (mail-header-subject gnus-current-headers))
5614 ""))
5615 bufname-length max-len
5616 gnus-tmp-header) ;; passed as argument to any user-format-funcs
5617 (setq mode-string (eval mformat))
5618 (setq bufname-length (if (string-match "%b" mode-string)
5619 (- (length
5620 (buffer-name
5621 (if (eq where 'summary)
5623 (get-buffer gnus-article-buffer))))
5626 (setq max-len (max 4 (if gnus-mode-non-string-length
5627 (- (window-width)
5628 gnus-mode-non-string-length
5629 bufname-length)
5630 (length mode-string))))
5631 ;; We might have to chop a bit of the string off...
5632 (when (> (length mode-string) max-len)
5633 (setq mode-string
5634 (concat (truncate-string-to-width mode-string (- max-len 3))
5635 "...")))
5636 ;; Pad the mode string a bit.
5637 (setq mode-string (format (format "%%-%ds" max-len) mode-string))))
5638 ;; Update the mode line.
5639 (setq mode-line-buffer-identification
5640 (gnus-mode-line-buffer-identification (list mode-string)))
5641 (set-buffer-modified-p t))))
5643 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads)
5644 "Go through the HEADERS list and add all Xrefs to a hash table.
5645 The resulting hash table is returned, or nil if no Xrefs were found."
5646 (let* ((virtual (gnus-virtual-group-p from-newsgroup))
5647 (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup)))
5648 (xref-hashtb (gnus-make-hashtable))
5649 start group entry number xrefs header)
5650 (while headers
5651 (setq header (pop headers))
5652 (when (and (setq xrefs (mail-header-xref header))
5653 (not (memq (setq number (mail-header-number header))
5654 unreads)))
5655 (setq start 0)
5656 (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start)
5657 (setq start (match-end 0))
5658 (setq group (if prefix
5659 (concat prefix (substring xrefs (match-beginning 1)
5660 (match-end 1)))
5661 (substring xrefs (match-beginning 1) (match-end 1))))
5662 (setq number
5663 (string-to-int (substring xrefs (match-beginning 2)
5664 (match-end 2))))
5665 (if (setq entry (gnus-gethash group xref-hashtb))
5666 (setcdr entry (cons number (cdr entry)))
5667 (gnus-sethash group (cons number nil) xref-hashtb)))))
5668 (and start xref-hashtb)))
5670 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads)
5671 "Look through all the headers and mark the Xrefs as read."
5672 (let ((virtual (gnus-virtual-group-p from-newsgroup))
5673 name entry info xref-hashtb idlist method nth4)
5674 (save-excursion
5675 (set-buffer gnus-group-buffer)
5676 (when (setq xref-hashtb
5677 (gnus-create-xref-hashtb from-newsgroup headers unreads))
5678 (mapatoms
5679 (lambda (group)
5680 (unless (string= from-newsgroup (setq name (symbol-name group)))
5681 (setq idlist (symbol-value group))
5682 ;; Dead groups are not updated.
5683 (and (prog1
5684 (setq entry (gnus-gethash name gnus-newsrc-hashtb)
5685 info (nth 2 entry))
5686 (when (stringp (setq nth4 (gnus-info-method info)))
5687 (setq nth4 (gnus-server-to-method nth4))))
5688 ;; Only do the xrefs if the group has the same
5689 ;; select method as the group we have just read.
5690 (or (gnus-methods-equal-p
5691 nth4 (gnus-find-method-for-group from-newsgroup))
5692 virtual
5693 (equal nth4 (setq method (gnus-find-method-for-group
5694 from-newsgroup)))
5695 (and (equal (car nth4) (car method))
5696 (equal (nth 1 nth4) (nth 1 method))))
5697 gnus-use-cross-reference
5698 (or (not (eq gnus-use-cross-reference t))
5699 virtual
5700 ;; Only do cross-references on subscribed
5701 ;; groups, if that is what is wanted.
5702 (<= (gnus-info-level info) gnus-level-subscribed))
5703 (gnus-group-make-articles-read name idlist))))
5704 xref-hashtb)))))
5706 (defun gnus-compute-read-articles (group articles)
5707 (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
5708 (info (nth 2 entry))
5709 (active (gnus-active group))
5710 ninfo)
5711 (when entry
5712 ;; First peel off all invalid article numbers.
5713 (when active
5714 (let ((ids articles)
5715 id first)
5716 (while (setq id (pop ids))
5717 (when (and first (> id (cdr active)))
5718 ;; We'll end up in this situation in one particular
5719 ;; obscure situation. If you re-scan a group and get
5720 ;; a new article that is cross-posted to a different
5721 ;; group that has not been re-scanned, you might get
5722 ;; crossposted article that has a higher number than
5723 ;; Gnus believes possible. So we re-activate this
5724 ;; group as well. This might mean doing the
5725 ;; crossposting thingy will *increase* the number
5726 ;; of articles in some groups. Tsk, tsk.
5727 (setq active (or (gnus-activate-group group) active)))
5728 (when (or (> id (cdr active))
5729 (< id (car active)))
5730 (setq articles (delq id articles))))))
5731 ;; If the read list is nil, we init it.
5732 (if (and active
5733 (null (gnus-info-read info))
5734 (> (car active) 1))
5735 (setq ninfo (cons 1 (1- (car active))))
5736 (setq ninfo (gnus-info-read info)))
5737 ;; Then we add the read articles to the range.
5738 (gnus-add-to-range
5739 ninfo (setq articles (sort articles '<))))))
5741 (defun gnus-group-make-articles-read (group articles)
5742 "Update the info of GROUP to say that ARTICLES are read."
5743 (let* ((num 0)
5744 (entry (gnus-gethash group gnus-newsrc-hashtb))
5745 (info (nth 2 entry))
5746 (active (gnus-active group))
5747 range)
5748 (when entry
5749 (setq range (gnus-compute-read-articles group articles))
5750 (save-excursion
5751 (set-buffer gnus-group-buffer)
5752 (gnus-undo-register
5753 `(progn
5754 (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
5755 (gnus-info-set-read ',info ',(gnus-info-read info))
5756 (gnus-get-unread-articles-in-group ',info (gnus-active ,group))
5757 (gnus-request-set-mark ,group (list (list ',range 'del '(read))))
5758 (gnus-group-update-group ,group t))))
5759 ;; Add the read articles to the range.
5760 (gnus-info-set-read info range)
5761 (gnus-request-set-mark group (list (list range 'add '(read))))
5762 ;; Then we have to re-compute how many unread
5763 ;; articles there are in this group.
5764 (when active
5765 (cond
5766 ((not range)
5767 (setq num (- (1+ (cdr active)) (car active))))
5768 ((not (listp (cdr range)))
5769 (setq num (- (cdr active) (- (1+ (cdr range))
5770 (car range)))))
5772 (while range
5773 (if (numberp (car range))
5774 (setq num (1+ num))
5775 (setq num (+ num (- (1+ (cdar range)) (caar range)))))
5776 (setq range (cdr range)))
5777 (setq num (- (cdr active) num))))
5778 ;; Update the number of unread articles.
5779 (setcar entry num)
5780 ;; Update the group buffer.
5781 (unless (gnus-ephemeral-group-p group)
5782 (gnus-group-update-group group t))))))
5784 (defvar gnus-newsgroup-none-id 0)
5786 (defun gnus-get-newsgroup-headers (&optional dependencies force-new)
5787 (let ((cur nntp-server-buffer)
5788 (dependencies
5789 (or dependencies
5790 (save-excursion (set-buffer gnus-summary-buffer)
5791 gnus-newsgroup-dependencies)))
5792 headers id end ref
5793 (mail-parse-charset gnus-newsgroup-charset)
5794 (mail-parse-ignored-charsets
5795 (save-excursion (condition-case nil
5796 (set-buffer gnus-summary-buffer)
5797 (error))
5798 gnus-newsgroup-ignored-charsets)))
5799 (save-excursion
5800 (set-buffer nntp-server-buffer)
5801 ;; Translate all TAB characters into SPACE characters.
5802 (subst-char-in-region (point-min) (point-max) ?\t ? t)
5803 (subst-char-in-region (point-min) (point-max) ?\r ? t)
5804 (ietf-drums-unfold-fws)
5805 (gnus-run-hooks 'gnus-parse-headers-hook)
5806 (let ((case-fold-search t)
5807 in-reply-to header p lines chars)
5808 (goto-char (point-min))
5809 ;; Search to the beginning of the next header. Error messages
5810 ;; do not begin with 2 or 3.
5811 (while (re-search-forward "^[23][0-9]+ " nil t)
5812 (setq id nil
5813 ref nil)
5814 ;; This implementation of this function, with nine
5815 ;; search-forwards instead of the one re-search-forward and
5816 ;; a case (which basically was the old function) is actually
5817 ;; about twice as fast, even though it looks messier. You
5818 ;; can't have everything, I guess. Speed and elegance
5819 ;; doesn't always go hand in hand.
5820 (setq
5821 header
5822 (vector
5823 ;; Number.
5824 (prog1
5825 (read cur)
5826 (end-of-line)
5827 (setq p (point))
5828 (narrow-to-region (point)
5829 (or (and (search-forward "\n.\n" nil t)
5830 (- (point) 2))
5831 (point))))
5832 ;; Subject.
5833 (progn
5834 (goto-char p)
5835 (if (search-forward "\nsubject:" nil t)
5836 (funcall gnus-decode-encoded-word-function
5837 (nnheader-header-value))
5838 "(none)"))
5839 ;; From.
5840 (progn
5841 (goto-char p)
5842 (if (search-forward "\nfrom:" nil t)
5843 (funcall gnus-decode-encoded-word-function
5844 (nnheader-header-value))
5845 "(nobody)"))
5846 ;; Date.
5847 (progn
5848 (goto-char p)
5849 (if (search-forward "\ndate:" nil t)
5850 (nnheader-header-value) ""))
5851 ;; Message-ID.
5852 (progn
5853 (goto-char p)
5854 (setq id (if (re-search-forward
5855 "^message-id: *\\(<[^\n\t> ]+>\\)" nil t)
5856 ;; We do it this way to make sure the Message-ID
5857 ;; is (somewhat) syntactically valid.
5858 (buffer-substring (match-beginning 1)
5859 (match-end 1))
5860 ;; If there was no message-id, we just fake one
5861 ;; to make subsequent routines simpler.
5862 (nnheader-generate-fake-message-id))))
5863 ;; References.
5864 (progn
5865 (goto-char p)
5866 (if (search-forward "\nreferences:" nil t)
5867 (progn
5868 (setq end (point))
5869 (prog1
5870 (nnheader-header-value)
5871 (setq ref
5872 (buffer-substring
5873 (progn
5874 (end-of-line)
5875 (search-backward ">" end t)
5876 (1+ (point)))
5877 (progn
5878 (search-backward "<" end t)
5879 (point))))))
5880 ;; Get the references from the in-reply-to header if there
5881 ;; were no references and the in-reply-to header looks
5882 ;; promising.
5883 (if (and (search-forward "\nin-reply-to:" nil t)
5884 (setq in-reply-to (nnheader-header-value))
5885 (string-match "<[^>]+>" in-reply-to))
5886 (let (ref2)
5887 (setq ref (substring in-reply-to (match-beginning 0)
5888 (match-end 0)))
5889 (while (string-match "<[^>]+>" in-reply-to (match-end 0))
5890 (setq ref2 (substring in-reply-to (match-beginning 0)
5891 (match-end 0)))
5892 (when (> (length ref2) (length ref))
5893 (setq ref ref2)))
5894 ref)
5895 (setq ref nil))))
5896 ;; Chars.
5897 (progn
5898 (goto-char p)
5899 (if (search-forward "\nchars: " nil t)
5900 (if (numberp (setq chars (ignore-errors (read cur))))
5901 chars -1)
5902 -1))
5903 ;; Lines.
5904 (progn
5905 (goto-char p)
5906 (if (search-forward "\nlines: " nil t)
5907 (if (numberp (setq lines (ignore-errors (read cur))))
5908 lines -1)
5909 -1))
5910 ;; Xref.
5911 (progn
5912 (goto-char p)
5913 (and (search-forward "\nxref:" nil t)
5914 (nnheader-header-value)))
5915 ;; Extra.
5916 (when gnus-extra-headers
5917 (let ((extra gnus-extra-headers)
5918 out)
5919 (while extra
5920 (goto-char p)
5921 (when (search-forward
5922 (concat "\n" (symbol-name (car extra)) ":") nil t)
5923 (push (cons (car extra) (nnheader-header-value))
5924 out))
5925 (pop extra))
5926 out))))
5927 (when (equal id ref)
5928 (setq ref nil))
5930 (when gnus-alter-header-function
5931 (funcall gnus-alter-header-function header)
5932 (setq id (mail-header-id header)
5933 ref (gnus-parent-id (mail-header-references header))))
5935 (when (setq header
5936 (gnus-dependencies-add-header
5937 header dependencies force-new))
5938 (push header headers))
5939 (goto-char (point-max))
5940 (widen))
5941 (nreverse headers)))))
5943 ;; Goes through the xover lines and returns a list of vectors
5944 (defun gnus-get-newsgroup-headers-xover (sequence &optional
5945 force-new dependencies
5946 group also-fetch-heads)
5947 "Parse the news overview data in the server buffer.
5948 Return a list of headers that match SEQUENCE (see
5949 `nntp-retrieve-headers')."
5950 ;; Get the Xref when the users reads the articles since most/some
5951 ;; NNTP servers do not include Xrefs when using XOVER.
5952 (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs))
5953 (let ((mail-parse-charset gnus-newsgroup-charset)
5954 (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
5955 (cur nntp-server-buffer)
5956 (dependencies (or dependencies gnus-newsgroup-dependencies))
5957 (allp (cond
5958 ((eq gnus-read-all-available-headers t)
5960 ((stringp gnus-read-all-available-headers)
5961 (string-match gnus-read-all-available-headers group))
5963 nil)))
5964 number headers header)
5965 (save-excursion
5966 (set-buffer nntp-server-buffer)
5967 (subst-char-in-region (point-min) (point-max) ?\r ? t)
5968 ;; Allow the user to mangle the headers before parsing them.
5969 (gnus-run-hooks 'gnus-parse-headers-hook)
5970 (goto-char (point-min))
5971 (gnus-parse-without-error
5972 (while (and (or sequence allp)
5973 (not (eobp)))
5974 (setq number (read cur))
5975 (when (not allp)
5976 (while (and sequence
5977 (< (car sequence) number))
5978 (setq sequence (cdr sequence))))
5979 (when (and (or allp
5980 (and sequence
5981 (eq number (car sequence))))
5982 (progn
5983 (setq sequence (cdr sequence))
5984 (setq header (inline
5985 (gnus-nov-parse-line
5986 number dependencies force-new)))))
5987 (push header headers))
5988 (forward-line 1)))
5989 ;; A common bug in inn is that if you have posted an article and
5990 ;; then retrieves the active file, it will answer correctly --
5991 ;; the new article is included. However, a NOV entry for the
5992 ;; article may not have been generated yet, so this may fail.
5993 ;; We work around this problem by retrieving the last few
5994 ;; headers using HEAD.
5995 (if (or (not also-fetch-heads)
5996 (not sequence))
5997 ;; We (probably) got all the headers.
5998 (nreverse headers)
5999 (let ((gnus-nov-is-evil t))
6000 (nconc
6001 (nreverse headers)
6002 (when (eq (gnus-retrieve-headers sequence group) 'headers)
6003 (gnus-get-newsgroup-headers))))))))
6005 (defun gnus-article-get-xrefs ()
6006 "Fill in the Xref value in `gnus-current-headers', if necessary.
6007 This is meant to be called in `gnus-article-internal-prepare-hook'."
6008 (let ((headers (save-excursion (set-buffer gnus-summary-buffer)
6009 gnus-current-headers)))
6010 (or (not gnus-use-cross-reference)
6011 (not headers)
6012 (and (mail-header-xref headers)
6013 (not (string= (mail-header-xref headers) "")))
6014 (let ((case-fold-search t)
6015 xref)
6016 (save-restriction
6017 (nnheader-narrow-to-headers)
6018 (goto-char (point-min))
6019 (when (or (and (not (eobp))
6020 (eq (downcase (char-after)) ?x)
6021 (looking-at "Xref:"))
6022 (search-forward "\nXref:" nil t))
6023 (goto-char (1+ (match-end 0)))
6024 (setq xref (buffer-substring (point) (gnus-point-at-eol)))
6025 (mail-header-set-xref headers xref)))))))
6027 (defun gnus-summary-insert-subject (id &optional old-header use-old-header)
6028 "Find article ID and insert the summary line for that article.
6029 OLD-HEADER can either be a header or a line number to insert
6030 the subject line on."
6031 (let* ((line (and (numberp old-header) old-header))
6032 (old-header (and (vectorp old-header) old-header))
6033 (header (cond ((and old-header use-old-header)
6034 old-header)
6035 ((and (numberp id)
6036 (gnus-number-to-header id))
6037 (gnus-number-to-header id))
6039 (gnus-read-header id))))
6040 (number (and (numberp id) id))
6042 (when header
6043 ;; Rebuild the thread that this article is part of and go to the
6044 ;; article we have fetched.
6045 (when (and (not gnus-show-threads)
6046 old-header)
6047 (when (and number
6048 (setq d (gnus-data-find (mail-header-number old-header))))
6049 (goto-char (gnus-data-pos d))
6050 (gnus-data-remove
6051 number
6052 (- (gnus-point-at-bol)
6053 (prog1
6054 (1+ (gnus-point-at-eol))
6055 (gnus-delete-line))))))
6056 ;; Remove list identifiers from subject.
6057 (when gnus-list-identifiers
6058 (let ((gnus-newsgroup-headers (list header)))
6059 (gnus-summary-remove-list-identifiers)))
6060 (when old-header
6061 (mail-header-set-number header (mail-header-number old-header)))
6062 (setq gnus-newsgroup-sparse
6063 (delq (setq number (mail-header-number header))
6064 gnus-newsgroup-sparse))
6065 (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient))
6066 (push number gnus-newsgroup-limit)
6067 (gnus-rebuild-thread (mail-header-id header) line)
6068 (gnus-summary-goto-subject number nil t))
6069 (when (and (numberp number)
6070 (> number 0))
6071 ;; We have to update the boundaries even if we can't fetch the
6072 ;; article if ID is a number -- so that the next `P' or `N'
6073 ;; command will fetch the previous (or next) article even
6074 ;; if the one we tried to fetch this time has been canceled.
6075 (when (> number gnus-newsgroup-end)
6076 (setq gnus-newsgroup-end number))
6077 (when (< number gnus-newsgroup-begin)
6078 (setq gnus-newsgroup-begin number))
6079 (setq gnus-newsgroup-unselected
6080 (delq number gnus-newsgroup-unselected)))
6081 ;; Report back a success?
6082 (and header (mail-header-number header))))
6084 ;;; Process/prefix in the summary buffer
6086 (defun gnus-summary-work-articles (n)
6087 "Return a list of articles to be worked upon.
6088 The prefix argument, the list of process marked articles, and the
6089 current article will be taken into consideration."
6090 (save-excursion
6091 (set-buffer gnus-summary-buffer)
6092 (cond
6094 ;; A numerical prefix has been given.
6095 (setq n (prefix-numeric-value n))
6096 (let ((backward (< n 0))
6097 (n (abs (prefix-numeric-value n)))
6098 articles article)
6099 (save-excursion
6100 (while
6101 (and (> n 0)
6102 (push (setq article (gnus-summary-article-number))
6103 articles)
6104 (if backward
6105 (gnus-summary-find-prev nil article)
6106 (gnus-summary-find-next nil article)))
6107 (decf n)))
6108 (nreverse articles)))
6109 ((and (gnus-region-active-p) (mark))
6110 (message "region active")
6111 ;; Work on the region between point and mark.
6112 (let ((max (max (point) (mark)))
6113 articles article)
6114 (save-excursion
6115 (goto-char (min (min (point) (mark))))
6116 (while
6117 (and
6118 (push (setq article (gnus-summary-article-number)) articles)
6119 (gnus-summary-find-next nil article)
6120 (< (point) max)))
6121 (nreverse articles))))
6122 (gnus-newsgroup-processable
6123 ;; There are process-marked articles present.
6124 ;; Save current state.
6125 (gnus-summary-save-process-mark)
6126 ;; Return the list.
6127 (reverse gnus-newsgroup-processable))
6129 ;; Just return the current article.
6130 (list (gnus-summary-article-number))))))
6132 (defmacro gnus-summary-iterate (arg &rest forms)
6133 "Iterate over the process/prefixed articles and do FORMS.
6134 ARG is the interactive prefix given to the command. FORMS will be
6135 executed with point over the summary line of the articles."
6136 (let ((articles (make-symbol "gnus-summary-iterate-articles")))
6137 `(let ((,articles (gnus-summary-work-articles ,arg)))
6138 (while ,articles
6139 (gnus-summary-goto-subject (car ,articles))
6140 ,@forms
6141 (pop ,articles)))))
6143 (put 'gnus-summary-iterate 'lisp-indent-function 1)
6144 (put 'gnus-summary-iterate 'edebug-form-spec '(form body))
6146 (defun gnus-summary-save-process-mark ()
6147 "Push the current set of process marked articles on the stack."
6148 (interactive)
6149 (push (copy-sequence gnus-newsgroup-processable)
6150 gnus-newsgroup-process-stack))
6152 (defun gnus-summary-kill-process-mark ()
6153 "Push the current set of process marked articles on the stack and unmark."
6154 (interactive)
6155 (gnus-summary-save-process-mark)
6156 (gnus-summary-unmark-all-processable))
6158 (defun gnus-summary-yank-process-mark ()
6159 "Pop the last process mark state off the stack and restore it."
6160 (interactive)
6161 (unless gnus-newsgroup-process-stack
6162 (error "Empty mark stack"))
6163 (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))
6165 (defun gnus-summary-process-mark-set (set)
6166 "Make SET into the current process marked articles."
6167 (gnus-summary-unmark-all-processable)
6168 (while set
6169 (gnus-summary-set-process-mark (pop set))))
6171 ;;; Searching and stuff
6173 (defun gnus-summary-search-group (&optional backward use-level)
6174 "Search for next unread newsgroup.
6175 If optional argument BACKWARD is non-nil, search backward instead."
6176 (save-excursion
6177 (set-buffer gnus-group-buffer)
6178 (when (gnus-group-search-forward
6179 backward nil (if use-level (gnus-group-group-level) nil))
6180 (gnus-group-group-name))))
6182 (defun gnus-summary-best-group (&optional exclude-group)
6183 "Find the name of the best unread group.
6184 If EXCLUDE-GROUP, do not go to this group."
6185 (save-excursion
6186 (set-buffer gnus-group-buffer)
6187 (save-excursion
6188 (gnus-group-best-unread-group exclude-group))))
6190 (defun gnus-summary-find-next (&optional unread article backward)
6191 (if backward
6192 (gnus-summary-find-prev unread article)
6193 (let* ((dummy (gnus-summary-article-intangible-p))
6194 (article (or article (gnus-summary-article-number)))
6195 (data (gnus-data-find-list article))
6196 result)
6197 (when (and (not dummy)
6198 (or (not gnus-summary-check-current)
6199 (not unread)
6200 (not (gnus-data-unread-p (car data)))))
6201 (setq data (cdr data)))
6202 (when (setq result
6203 (if unread
6204 (progn
6205 (while data
6206 (unless (memq (gnus-data-number (car data))
6207 (cond
6208 ((eq gnus-auto-goto-ignores
6209 'always-undownloaded)
6210 gnus-newsgroup-undownloaded)
6211 (gnus-plugged
6212 nil)
6213 ((eq gnus-auto-goto-ignores
6214 'unfetched)
6215 gnus-newsgroup-unfetched)
6216 ((eq gnus-auto-goto-ignores
6217 'undownloaded)
6218 gnus-newsgroup-undownloaded)))
6219 (when (gnus-data-unread-p (car data))
6220 (setq result (car data)
6221 data nil)))
6222 (setq data (cdr data)))
6223 result)
6224 (car data)))
6225 (goto-char (gnus-data-pos result))
6226 (gnus-data-number result)))))
6228 (defun gnus-summary-find-prev (&optional unread article)
6229 (let* ((eobp (eobp))
6230 (article (or article (gnus-summary-article-number)))
6231 (data (gnus-data-find-list article (gnus-data-list 'rev)))
6232 result)
6233 (when (and (not eobp)
6234 (or (not gnus-summary-check-current)
6235 (not unread)
6236 (not (gnus-data-unread-p (car data)))))
6237 (setq data (cdr data)))
6238 (when (setq result
6239 (if unread
6240 (progn
6241 (while data
6242 (unless (memq (gnus-data-number (car data))
6243 (cond
6244 ((eq gnus-auto-goto-ignores
6245 'always-undownloaded)
6246 gnus-newsgroup-undownloaded)
6247 (gnus-plugged
6248 nil)
6249 ((eq gnus-auto-goto-ignores
6250 'unfetched)
6251 gnus-newsgroup-unfetched)
6252 ((eq gnus-auto-goto-ignores
6253 'undownloaded)
6254 gnus-newsgroup-undownloaded)))
6255 (when (gnus-data-unread-p (car data))
6256 (setq result (car data)
6257 data nil)))
6258 (setq data (cdr data)))
6259 result)
6260 (car data)))
6261 (goto-char (gnus-data-pos result))
6262 (gnus-data-number result))))
6264 (defun gnus-summary-find-subject (subject &optional unread backward article)
6265 (let* ((simp-subject (gnus-simplify-subject-fully subject))
6266 (article (or article (gnus-summary-article-number)))
6267 (articles (gnus-data-list backward))
6268 (arts (gnus-data-find-list article articles))
6269 result)
6270 (when (or (not gnus-summary-check-current)
6271 (not unread)
6272 (not (gnus-data-unread-p (car arts))))
6273 (setq arts (cdr arts)))
6274 (while arts
6275 (and (or (not unread)
6276 (gnus-data-unread-p (car arts)))
6277 (vectorp (gnus-data-header (car arts)))
6278 (gnus-subject-equal
6279 simp-subject (mail-header-subject (gnus-data-header (car arts))) t)
6280 (setq result (car arts)
6281 arts nil))
6282 (setq arts (cdr arts)))
6283 (and result
6284 (goto-char (gnus-data-pos result))
6285 (gnus-data-number result))))
6287 (defun gnus-summary-search-forward (&optional unread subject backward)
6288 "Search forward for an article.
6289 If UNREAD, look for unread articles. If SUBJECT, look for
6290 articles with that subject. If BACKWARD, search backward instead."
6291 (cond (subject (gnus-summary-find-subject subject unread backward))
6292 (backward (gnus-summary-find-prev unread))
6293 (t (gnus-summary-find-next unread))))
6295 (defun gnus-recenter (&optional n)
6296 "Center point in window and redisplay frame.
6297 Also do horizontal recentering."
6298 (interactive "P")
6299 (when (and gnus-auto-center-summary
6300 (not (eq gnus-auto-center-summary 'vertical)))
6301 (gnus-horizontal-recenter))
6302 (recenter n))
6304 (defun gnus-summary-recenter ()
6305 "Center point in the summary window.
6306 If `gnus-auto-center-summary' is nil, or the article buffer isn't
6307 displayed, no centering will be performed."
6308 ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
6309 ;; Recenter only when requested. Suggested by popovich@park.cs.columbia.edu.
6310 (interactive)
6311 ;; The user has to want it.
6312 (when gnus-auto-center-summary
6313 (let* ((top (cond ((< (window-height) 4) 0)
6314 ((< (window-height) 7) 1)
6315 (t (if (numberp gnus-auto-center-summary)
6316 gnus-auto-center-summary
6317 2))))
6318 (height (1- (window-height)))
6319 (bottom (save-excursion (goto-char (point-max))
6320 (forward-line (- height))
6321 (point)))
6322 (window (get-buffer-window (current-buffer))))
6323 (when (get-buffer-window gnus-article-buffer)
6324 ;; Only do recentering when the article buffer is displayed,
6325 ;; Set the window start to either `bottom', which is the biggest
6326 ;; possible valid number, or the second line from the top,
6327 ;; whichever is the least.
6328 (let ((top-pos (save-excursion (forward-line (- top)) (point))))
6329 (if (> bottom top-pos)
6330 ;; Keep the second line from the top visible
6331 (set-window-start window top-pos t)
6332 ;; Try to keep the bottom line visible; if it's partially
6333 ;; obscured, either scroll one more line to make it fully
6334 ;; visible, or revert to using TOP-POS.
6335 (save-excursion
6336 (goto-char (point-max))
6337 (forward-line -1)
6338 (let ((last-line-start (point)))
6339 (goto-char bottom)
6340 (set-window-start window (point) t)
6341 (when (not (pos-visible-in-window-p last-line-start window))
6342 (forward-line 1)
6343 (set-window-start window (min (point) top-pos) t)))))))
6344 ;; Do horizontal recentering while we're at it.
6345 (when (and (get-buffer-window (current-buffer) t)
6346 (not (eq gnus-auto-center-summary 'vertical)))
6347 (let ((selected (selected-window)))
6348 (select-window (get-buffer-window (current-buffer) t))
6349 (gnus-summary-position-point)
6350 (gnus-horizontal-recenter)
6351 (select-window selected))))))
6353 (defun gnus-summary-jump-to-group (newsgroup)
6354 "Move point to NEWSGROUP in group mode buffer."
6355 ;; Keep update point of group mode buffer if visible.
6356 (if (eq (current-buffer) (get-buffer gnus-group-buffer))
6357 (save-window-excursion
6358 ;; Take care of tree window mode.
6359 (when (get-buffer-window gnus-group-buffer)
6360 (pop-to-buffer gnus-group-buffer))
6361 (gnus-group-jump-to-group newsgroup))
6362 (save-excursion
6363 ;; Take care of tree window mode.
6364 (if (get-buffer-window gnus-group-buffer)
6365 (pop-to-buffer gnus-group-buffer)
6366 (set-buffer gnus-group-buffer))
6367 (gnus-group-jump-to-group newsgroup))))
6369 ;; This function returns a list of article numbers based on the
6370 ;; difference between the ranges of read articles in this group and
6371 ;; the range of active articles.
6372 (defun gnus-list-of-unread-articles (group)
6373 (let* ((read (gnus-info-read (gnus-get-info group)))
6374 (active (or (gnus-active group) (gnus-activate-group group)))
6375 (last (cdr active))
6376 first nlast unread)
6377 ;; If none are read, then all are unread.
6378 (if (not read)
6379 (setq first (car active))
6380 ;; If the range of read articles is a single range, then the
6381 ;; first unread article is the article after the last read
6382 ;; article. Sounds logical, doesn't it?
6383 (if (and (not (listp (cdr read)))
6384 (or (< (car read) (car active))
6385 (progn (setq read (list read))
6386 nil)))
6387 (setq first (max (car active) (1+ (cdr read))))
6388 ;; `read' is a list of ranges.
6389 (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6390 (caar read)))
6392 (setq first (car active)))
6393 (while read
6394 (when first
6395 (while (< first nlast)
6396 (setq unread (cons first unread)
6397 first (1+ first))))
6398 (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6399 (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6400 (setq read (cdr read)))))
6401 ;; And add the last unread articles.
6402 (while (<= first last)
6403 (setq unread (cons first unread)
6404 first (1+ first)))
6405 ;; Return the list of unread articles.
6406 (delq 0 (nreverse unread))))
6408 (defun gnus-list-of-read-articles (group)
6409 "Return a list of unread, unticked and non-dormant articles."
6410 (let* ((info (gnus-get-info group))
6411 (marked (gnus-info-marks info))
6412 (active (gnus-active group)))
6413 (and info active
6414 (gnus-list-range-difference
6415 (gnus-list-range-difference
6416 (gnus-sorted-complement
6417 (gnus-uncompress-range active)
6418 (gnus-list-of-unread-articles group))
6419 (cdr (assq 'dormant marked)))
6420 (cdr (assq 'tick marked))))))
6422 ;; This function returns a sequence of article numbers based on the
6423 ;; difference between the ranges of read articles in this group and
6424 ;; the range of active articles.
6425 (defun gnus-sequence-of-unread-articles (group)
6426 (let* ((read (gnus-info-read (gnus-get-info group)))
6427 (active (or (gnus-active group) (gnus-activate-group group)))
6428 (last (cdr active))
6429 first nlast unread)
6430 ;; If none are read, then all are unread.
6431 (if (not read)
6432 (setq first (car active))
6433 ;; If the range of read articles is a single range, then the
6434 ;; first unread article is the article after the last read
6435 ;; article. Sounds logical, doesn't it?
6436 (if (and (not (listp (cdr read)))
6437 (or (< (car read) (car active))
6438 (progn (setq read (list read))
6439 nil)))
6440 (setq first (max (car active) (1+ (cdr read))))
6441 ;; `read' is a list of ranges.
6442 (when (/= (setq nlast (or (and (numberp (car read)) (car read))
6443 (caar read)))
6445 (setq first (car active)))
6446 (while read
6447 (when first
6448 (push (cons first nlast) unread))
6449 (setq first (1+ (if (atom (car read)) (car read) (cdar read))))
6450 (setq nlast (if (atom (cadr read)) (cadr read) (caadr read)))
6451 (setq read (cdr read)))))
6452 ;; And add the last unread articles.
6453 (cond ((< first last)
6454 (push (cons first last) unread))
6455 ((= first last)
6456 (push first unread)))
6457 ;; Return the sequence of unread articles.
6458 (delq 0 (nreverse unread))))
6460 ;; Various summary commands
6462 (defun gnus-summary-select-article-buffer ()
6463 "Reconfigure windows to show article buffer."
6464 (interactive)
6465 (if (not (gnus-buffer-live-p gnus-article-buffer))
6466 (error "There is no article buffer for this summary buffer")
6467 (gnus-configure-windows 'article)
6468 (select-window (get-buffer-window gnus-article-buffer))))
6470 (defun gnus-summary-universal-argument (arg)
6471 "Perform any operation on all articles that are process/prefixed."
6472 (interactive "P")
6473 (let ((articles (gnus-summary-work-articles arg))
6474 func article)
6475 (if (eq
6476 (setq
6477 func
6478 (key-binding
6479 (read-key-sequence
6480 (substitute-command-keys
6481 "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]"))))
6482 'undefined)
6483 (gnus-error 1 "Undefined key")
6484 (save-excursion
6485 (while articles
6486 (gnus-summary-goto-subject (setq article (pop articles)))
6487 (let (gnus-newsgroup-processable)
6488 (command-execute func))
6489 (gnus-summary-remove-process-mark article)))))
6490 (gnus-summary-position-point))
6492 (defun gnus-summary-toggle-truncation (&optional arg)
6493 "Toggle truncation of summary lines.
6494 With ARG, turn line truncation on if ARG is positive."
6495 (interactive "P")
6496 (setq truncate-lines
6497 (if (null arg) (not truncate-lines)
6498 (> (prefix-numeric-value arg) 0)))
6499 (redraw-display))
6501 (defun gnus-summary-find-for-reselect ()
6502 "Return the number of an article to stay on across a reselect.
6503 The current article is considered, then following articles, then previous
6504 articles. An article is sought which is not cancelled and isn't a temporary
6505 insertion from another group. If there's no such then return a dummy 0."
6506 (let (found)
6507 (dolist (rev '(nil t))
6508 (unless found ; don't demand the reverse list if we don't need it
6509 (let ((data (gnus-data-find-list
6510 (gnus-summary-article-number) (gnus-data-list rev))))
6511 (while (and data (not found))
6512 (if (and (< 0 (gnus-data-number (car data)))
6513 (not (eq gnus-canceled-mark (gnus-data-mark (car data)))))
6514 (setq found (gnus-data-number (car data))))
6515 (setq data (cdr data))))))
6516 (or found 0)))
6518 (defun gnus-summary-reselect-current-group (&optional all rescan)
6519 "Exit and then reselect the current newsgroup.
6520 The prefix argument ALL means to select all articles."
6521 (interactive "P")
6522 (when (gnus-ephemeral-group-p gnus-newsgroup-name)
6523 (error "Ephemeral groups can't be reselected"))
6524 (let ((current-subject (gnus-summary-find-for-reselect))
6525 (group gnus-newsgroup-name))
6526 (setq gnus-newsgroup-begin nil)
6527 (gnus-summary-exit nil 'leave-hidden)
6528 ;; We have to adjust the point of group mode buffer because
6529 ;; point was moved to the next unread newsgroup by exiting.
6530 (gnus-summary-jump-to-group group)
6531 (when rescan
6532 (save-excursion
6533 (gnus-group-get-new-news-this-group 1)))
6534 (gnus-group-read-group all t)
6535 (gnus-summary-goto-subject current-subject nil t)))
6537 (defun gnus-summary-rescan-group (&optional all)
6538 "Exit the newsgroup, ask for new articles, and select the newsgroup."
6539 (interactive "P")
6540 (gnus-summary-reselect-current-group all t))
6542 (defun gnus-summary-update-info (&optional non-destructive)
6543 (save-excursion
6544 (let ((group gnus-newsgroup-name))
6545 (when group
6546 (when gnus-newsgroup-kill-headers
6547 (setq gnus-newsgroup-killed
6548 (gnus-compress-sequence
6549 (gnus-sorted-union
6550 (gnus-list-range-intersection
6551 gnus-newsgroup-unselected gnus-newsgroup-killed)
6552 gnus-newsgroup-unreads)
6553 t)))
6554 (unless (listp (cdr gnus-newsgroup-killed))
6555 (setq gnus-newsgroup-killed (list gnus-newsgroup-killed)))
6556 (let ((headers gnus-newsgroup-headers))
6557 ;; Set the new ranges of read articles.
6558 (save-excursion
6559 (set-buffer gnus-group-buffer)
6560 (gnus-undo-force-boundary))
6561 (gnus-update-read-articles
6562 group (gnus-sorted-union
6563 gnus-newsgroup-unreads gnus-newsgroup-unselected))
6564 ;; Set the current article marks.
6565 (let ((gnus-newsgroup-scored
6566 (if (and (not gnus-save-score)
6567 (not non-destructive))
6569 gnus-newsgroup-scored)))
6570 (save-excursion
6571 (gnus-update-marks)))
6572 ;; Do the cross-ref thing.
6573 (when gnus-use-cross-reference
6574 (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads))
6575 ;; Do not switch windows but change the buffer to work.
6576 (set-buffer gnus-group-buffer)
6577 (unless (gnus-ephemeral-group-p group)
6578 (gnus-group-update-group group)))))))
6580 (defun gnus-summary-save-newsrc (&optional force)
6581 "Save the current number of read/marked articles in the dribble buffer.
6582 The dribble buffer will then be saved.
6583 If FORCE (the prefix), also save the .newsrc file(s)."
6584 (interactive "P")
6585 (gnus-summary-update-info t)
6586 (if force
6587 (gnus-save-newsrc-file)
6588 (gnus-dribble-save)))
6590 (defun gnus-summary-exit (&optional temporary leave-hidden)
6591 "Exit reading current newsgroup, and then return to group selection mode.
6592 `gnus-exit-group-hook' is called with no arguments if that value is non-nil."
6593 (interactive)
6594 (gnus-set-global-variables)
6595 (when (gnus-buffer-live-p gnus-article-buffer)
6596 (save-excursion
6597 (set-buffer gnus-article-buffer)
6598 (mm-destroy-parts gnus-article-mime-handles)
6599 ;; Set it to nil for safety reason.
6600 (setq gnus-article-mime-handle-alist nil)
6601 (setq gnus-article-mime-handles nil)))
6602 (gnus-kill-save-kill-buffer)
6603 (gnus-async-halt-prefetch)
6604 (let* ((group gnus-newsgroup-name)
6605 (quit-config (gnus-group-quit-config gnus-newsgroup-name))
6606 (gnus-group-is-exiting-p t)
6607 (mode major-mode)
6608 (group-point nil)
6609 (buf (current-buffer)))
6610 (unless quit-config
6611 ;; Do adaptive scoring, and possibly save score files.
6612 (when gnus-newsgroup-adaptive
6613 (gnus-score-adaptive))
6614 (when gnus-use-scoring
6615 (gnus-score-save)))
6616 (gnus-run-hooks 'gnus-summary-prepare-exit-hook)
6617 ;; If we have several article buffers, we kill them at exit.
6618 (unless gnus-single-article-buffer
6619 (gnus-kill-buffer gnus-original-article-buffer)
6620 (setq gnus-article-current nil))
6621 (when gnus-use-cache
6622 (gnus-cache-possibly-remove-articles)
6623 (gnus-cache-save-buffers))
6624 (gnus-async-prefetch-remove-group group)
6625 (when gnus-suppress-duplicates
6626 (gnus-dup-enter-articles))
6627 (when gnus-use-trees
6628 (gnus-tree-close group))
6629 (when gnus-use-cache
6630 (gnus-cache-write-active))
6631 ;; Remove entries for this group.
6632 (nnmail-purge-split-history (gnus-group-real-name group))
6633 ;; Make all changes in this group permanent.
6634 (unless quit-config
6635 (gnus-run-hooks 'gnus-exit-group-hook)
6636 (gnus-summary-update-info))
6637 (gnus-close-group group)
6638 ;; Make sure where we were, and go to next newsgroup.
6639 (set-buffer gnus-group-buffer)
6640 (unless quit-config
6641 (gnus-group-jump-to-group group))
6642 (gnus-run-hooks 'gnus-summary-exit-hook)
6643 (unless (or quit-config
6644 ;; If this group has disappeared from the summary
6645 ;; buffer, don't skip forwards.
6646 (not (string= group (gnus-group-group-name))))
6647 (gnus-group-next-unread-group 1))
6648 (setq group-point (point))
6649 (if temporary
6650 nil ;Nothing to do.
6651 ;; If we have several article buffers, we kill them at exit.
6652 (unless gnus-single-article-buffer
6653 (gnus-kill-buffer gnus-article-buffer)
6654 (gnus-kill-buffer gnus-original-article-buffer)
6655 (setq gnus-article-current nil))
6656 (set-buffer buf)
6657 (if (not gnus-kill-summary-on-exit)
6658 (progn
6659 (gnus-deaden-summary)
6660 (setq mode nil))
6661 ;; We set all buffer-local variables to nil. It is unclear why
6662 ;; this is needed, but if we don't, buffer-local variables are
6663 ;; not garbage-collected, it seems. This would the lead to en
6664 ;; ever-growing Emacs.
6665 (gnus-summary-clear-local-variables)
6666 (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6667 (gnus-summary-clear-local-variables))
6668 (when (get-buffer gnus-article-buffer)
6669 (bury-buffer gnus-article-buffer))
6670 ;; We clear the global counterparts of the buffer-local
6671 ;; variables as well, just to be on the safe side.
6672 (set-buffer gnus-group-buffer)
6673 (gnus-summary-clear-local-variables)
6674 (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6675 (gnus-summary-clear-local-variables))
6676 ;; Return to group mode buffer.
6677 (when (eq mode 'gnus-summary-mode)
6678 (gnus-kill-buffer buf)))
6679 (setq gnus-current-select-method gnus-select-method)
6680 (set-buffer gnus-group-buffer)
6681 (if quit-config
6682 (gnus-handle-ephemeral-exit quit-config)
6683 (goto-char group-point)
6684 (unless leave-hidden
6685 (gnus-configure-windows 'group 'force)))
6686 ;; Clear the current group name.
6687 (unless quit-config
6688 (setq gnus-newsgroup-name nil)))))
6690 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update)
6691 (defun gnus-summary-exit-no-update (&optional no-questions)
6692 "Quit reading current newsgroup without updating read article info."
6693 (interactive)
6694 (let* ((group gnus-newsgroup-name)
6695 (gnus-group-is-exiting-p t)
6696 (gnus-group-is-exiting-without-update-p t)
6697 (quit-config (gnus-group-quit-config group)))
6698 (when (or no-questions
6699 gnus-expert-user
6700 (gnus-y-or-n-p "Discard changes to this group and exit? "))
6701 (gnus-async-halt-prefetch)
6702 (run-hooks 'gnus-summary-prepare-exit-hook)
6703 (when (gnus-buffer-live-p gnus-article-buffer)
6704 (save-excursion
6705 (set-buffer gnus-article-buffer)
6706 (mm-destroy-parts gnus-article-mime-handles)
6707 ;; Set it to nil for safety reason.
6708 (setq gnus-article-mime-handle-alist nil)
6709 (setq gnus-article-mime-handles nil)))
6710 ;; If we have several article buffers, we kill them at exit.
6711 (unless gnus-single-article-buffer
6712 (gnus-kill-buffer gnus-article-buffer)
6713 (gnus-kill-buffer gnus-original-article-buffer)
6714 (setq gnus-article-current nil))
6715 (if (not gnus-kill-summary-on-exit)
6716 (gnus-deaden-summary)
6717 (gnus-close-group group)
6718 (gnus-summary-clear-local-variables)
6719 (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6720 (gnus-summary-clear-local-variables))
6721 (set-buffer gnus-group-buffer)
6722 (gnus-summary-clear-local-variables)
6723 (let ((gnus-summary-local-variables gnus-newsgroup-variables))
6724 (gnus-summary-clear-local-variables))
6725 (gnus-kill-buffer gnus-summary-buffer))
6726 (unless gnus-single-article-buffer
6727 (setq gnus-article-current nil))
6728 (when gnus-use-trees
6729 (gnus-tree-close group))
6730 (gnus-async-prefetch-remove-group group)
6731 (when (get-buffer gnus-article-buffer)
6732 (bury-buffer gnus-article-buffer))
6733 ;; Return to the group buffer.
6734 (gnus-configure-windows 'group 'force)
6735 ;; Clear the current group name.
6736 (setq gnus-newsgroup-name nil)
6737 (unless (gnus-ephemeral-group-p group)
6738 (gnus-group-update-group group))
6739 (when (equal (gnus-group-group-name) group)
6740 (gnus-group-next-unread-group 1))
6741 (when quit-config
6742 (gnus-handle-ephemeral-exit quit-config)))))
6744 (defun gnus-handle-ephemeral-exit (quit-config)
6745 "Handle movement when leaving an ephemeral group.
6746 The state which existed when entering the ephemeral is reset."
6747 (if (not (buffer-name (car quit-config)))
6748 (gnus-configure-windows 'group 'force)
6749 (set-buffer (car quit-config))
6750 (cond ((eq major-mode 'gnus-summary-mode)
6751 (gnus-set-global-variables))
6752 ((eq major-mode 'gnus-article-mode)
6753 (save-excursion
6754 ;; The `gnus-summary-buffer' variable may point
6755 ;; to the old summary buffer when using a single
6756 ;; article buffer.
6757 (unless (gnus-buffer-live-p gnus-summary-buffer)
6758 (set-buffer gnus-group-buffer))
6759 (set-buffer gnus-summary-buffer)
6760 (gnus-set-global-variables))))
6761 (if (or (eq (cdr quit-config) 'article)
6762 (eq (cdr quit-config) 'pick))
6763 (progn
6764 ;; The current article may be from the ephemeral group
6765 ;; thus it is best that we reload this article
6767 ;; If we're exiting from a large digest, this can be
6768 ;; extremely slow. So, it's better not to reload it. -- jh.
6769 ;;(gnus-summary-show-article)
6770 (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode))
6771 (gnus-configure-windows 'pick 'force)
6772 (gnus-configure-windows (cdr quit-config) 'force)))
6773 (gnus-configure-windows (cdr quit-config) 'force))
6774 (when (eq major-mode 'gnus-summary-mode)
6775 (gnus-summary-next-subject 1 nil t)
6776 (gnus-summary-recenter)
6777 (gnus-summary-position-point))))
6779 ;;; Dead summaries.
6781 (defvar gnus-dead-summary-mode-map nil)
6783 (unless gnus-dead-summary-mode-map
6784 (setq gnus-dead-summary-mode-map (make-keymap))
6785 (suppress-keymap gnus-dead-summary-mode-map)
6786 (substitute-key-definition
6787 'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map)
6788 (dolist (key '("\C-d" "\r" "\177" [delete]))
6789 (define-key gnus-dead-summary-mode-map
6790 key 'gnus-summary-wake-up-the-dead))
6791 (dolist (key '("q" "Q"))
6792 (define-key gnus-dead-summary-mode-map key 'bury-buffer)))
6794 (defvar gnus-dead-summary-mode nil
6795 "Minor mode for Gnus summary buffers.")
6797 (defun gnus-dead-summary-mode (&optional arg)
6798 "Minor mode for Gnus summary buffers."
6799 (interactive "P")
6800 (when (eq major-mode 'gnus-summary-mode)
6801 (make-local-variable 'gnus-dead-summary-mode)
6802 (setq gnus-dead-summary-mode
6803 (if (null arg) (not gnus-dead-summary-mode)
6804 (> (prefix-numeric-value arg) 0)))
6805 (when gnus-dead-summary-mode
6806 (gnus-add-minor-mode
6807 'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map))))
6809 (defun gnus-deaden-summary ()
6810 "Make the current summary buffer into a dead summary buffer."
6811 ;; Kill any previous dead summary buffer.
6812 (when (and gnus-dead-summary
6813 (buffer-name gnus-dead-summary))
6814 (save-excursion
6815 (set-buffer gnus-dead-summary)
6816 (when gnus-dead-summary-mode
6817 (kill-buffer (current-buffer)))))
6818 ;; Make this the current dead summary.
6819 (setq gnus-dead-summary (current-buffer))
6820 (gnus-dead-summary-mode 1)
6821 (let ((name (buffer-name)))
6822 (when (string-match "Summary" name)
6823 (rename-buffer
6824 (concat (substring name 0 (match-beginning 0)) "Dead "
6825 (substring name (match-beginning 0)))
6827 (bury-buffer))))
6829 (defun gnus-kill-or-deaden-summary (buffer)
6830 "Kill or deaden the summary BUFFER."
6831 (save-excursion
6832 (when (and (buffer-name buffer)
6833 (not gnus-single-article-buffer))
6834 (save-excursion
6835 (set-buffer buffer)
6836 (gnus-kill-buffer gnus-article-buffer)
6837 (gnus-kill-buffer gnus-original-article-buffer)))
6838 (cond
6839 ;; Kill the buffer.
6840 (gnus-kill-summary-on-exit
6841 (when (and gnus-use-trees
6842 (gnus-buffer-exists-p buffer))
6843 (save-excursion
6844 (set-buffer buffer)
6845 (gnus-tree-close gnus-newsgroup-name)))
6846 (gnus-kill-buffer buffer))
6847 ;; Deaden the buffer.
6848 ((gnus-buffer-exists-p buffer)
6849 (save-excursion
6850 (set-buffer buffer)
6851 (gnus-deaden-summary))))))
6853 (defun gnus-summary-wake-up-the-dead (&rest args)
6854 "Wake up the dead summary buffer."
6855 (interactive)
6856 (gnus-dead-summary-mode -1)
6857 (let ((name (buffer-name)))
6858 (when (string-match "Dead " name)
6859 (rename-buffer
6860 (concat (substring name 0 (match-beginning 0))
6861 (substring name (match-end 0)))
6862 t)))
6863 (gnus-message 3 "This dead summary is now alive again"))
6865 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>.
6866 (defun gnus-summary-fetch-faq (&optional faq-dir)
6867 "Fetch the FAQ for the current group.
6868 If FAQ-DIR (the prefix), prompt for a directory to search for the faq
6869 in."
6870 (interactive
6871 (list
6872 (when current-prefix-arg
6873 (completing-read
6874 "FAQ dir: " (and (listp gnus-group-faq-directory)
6875 (mapcar (lambda (file) (list file))
6876 gnus-group-faq-directory))))))
6877 (let (gnus-faq-buffer)
6878 (when (setq gnus-faq-buffer
6879 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir))
6880 (gnus-configure-windows 'summary-faq))))
6882 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
6883 (defun gnus-summary-describe-group (&optional force)
6884 "Describe the current newsgroup."
6885 (interactive "P")
6886 (gnus-group-describe-group force gnus-newsgroup-name))
6888 (defun gnus-summary-describe-briefly ()
6889 "Describe summary mode commands briefly."
6890 (interactive)
6891 (gnus-message 6 (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")))
6893 ;; Walking around group mode buffer from summary mode.
6895 (defun gnus-summary-next-group (&optional no-article target-group backward)
6896 "Exit current newsgroup and then select next unread newsgroup.
6897 If prefix argument NO-ARTICLE is non-nil, no article is selected
6898 initially. If TARGET-GROUP, go to this group. If BACKWARD, go to
6899 previous group instead."
6900 (interactive "P")
6901 ;; Stop pre-fetching.
6902 (gnus-async-halt-prefetch)
6903 (let ((current-group gnus-newsgroup-name)
6904 (current-buffer (current-buffer))
6905 entered)
6906 ;; First we semi-exit this group to update Xrefs and all variables.
6907 ;; We can't do a real exit, because the window conf must remain
6908 ;; the same in case the user is prompted for info, and we don't
6909 ;; want the window conf to change before that...
6910 (gnus-summary-exit t)
6911 (while (not entered)
6912 ;; Then we find what group we are supposed to enter.
6913 (set-buffer gnus-group-buffer)
6914 (gnus-group-jump-to-group current-group)
6915 (setq target-group
6916 (or target-group
6917 (if (eq gnus-keep-same-level 'best)
6918 (gnus-summary-best-group gnus-newsgroup-name)
6919 (gnus-summary-search-group backward gnus-keep-same-level))))
6920 (if (not target-group)
6921 ;; There are no further groups, so we return to the group
6922 ;; buffer.
6923 (progn
6924 (gnus-message 5 "Returning to the group buffer")
6925 (setq entered t)
6926 (when (gnus-buffer-live-p current-buffer)
6927 (set-buffer current-buffer)
6928 (gnus-summary-exit))
6929 (gnus-run-hooks 'gnus-group-no-more-groups-hook))
6930 ;; We try to enter the target group.
6931 (gnus-group-jump-to-group target-group)
6932 (let ((unreads (gnus-group-group-unread)))
6933 (if (and (or (eq t unreads)
6934 (and unreads (not (zerop unreads))))
6935 (gnus-summary-read-group
6936 target-group nil no-article
6937 (and (buffer-name current-buffer) current-buffer)
6938 nil backward))
6939 (setq entered t)
6940 (setq current-group target-group
6941 target-group nil)))))))
6943 (defun gnus-summary-prev-group (&optional no-article)
6944 "Exit current newsgroup and then select previous unread newsgroup.
6945 If prefix argument NO-ARTICLE is non-nil, no article is selected initially."
6946 (interactive "P")
6947 (gnus-summary-next-group no-article nil t))
6949 ;; Walking around summary lines.
6951 (defun gnus-summary-first-subject (&optional unread undownloaded unseen)
6952 "Go to the first subject satisfying any non-nil constraint.
6953 If UNREAD is non-nil, the article should be unread.
6954 If UNDOWNLOADED is non-nil, the article should be undownloaded.
6955 If UNSEEN is non-nil, the article should be unseen.
6956 Returns the article selected or nil if there are no matching articles."
6957 (interactive "P")
6958 (cond
6959 ;; Empty summary.
6960 ((null gnus-newsgroup-data)
6961 (gnus-message 3 "No articles in the group")
6962 nil)
6963 ;; Pick the first article.
6964 ((not (or unread undownloaded unseen))
6965 (goto-char (gnus-data-pos (car gnus-newsgroup-data)))
6966 (gnus-data-number (car gnus-newsgroup-data)))
6967 ;; Find the first unread article.
6969 (let ((data gnus-newsgroup-data))
6970 (while (and data
6971 (let ((num (gnus-data-number (car data))))
6972 (or (memq num gnus-newsgroup-unfetched)
6973 (not (or (and unread
6974 (memq num gnus-newsgroup-unreads))
6975 (and undownloaded
6976 (memq num gnus-newsgroup-undownloaded))
6977 (and unseen
6978 (memq num gnus-newsgroup-unseen)))))))
6979 (setq data (cdr data)))
6980 (prog1
6981 (if data
6982 (progn
6983 (goto-char (gnus-data-pos (car data)))
6984 (gnus-data-number (car data)))
6985 (gnus-message 3 "No more%s articles"
6986 (let* ((r (when unread " unread"))
6987 (d (when undownloaded " undownloaded"))
6988 (s (when unseen " unseen"))
6989 (l (delq nil (list r d s))))
6990 (cond ((= 3 (length l))
6991 (concat r "," d ", or" s))
6992 ((= 2 (length l))
6993 (concat (car l) ", or" (cadr l)))
6994 ((= 1 (length l))
6995 (car l))
6997 ""))))
7000 (gnus-summary-position-point))))))
7002 (defun gnus-summary-next-subject (n &optional unread dont-display)
7003 "Go to next N'th summary line.
7004 If N is negative, go to the previous N'th subject line.
7005 If UNREAD is non-nil, only unread articles are selected.
7006 The difference between N and the actual number of steps taken is
7007 returned."
7008 (interactive "p")
7009 (let ((backward (< n 0))
7010 (n (abs n)))
7011 (while (and (> n 0)
7012 (if backward
7013 (gnus-summary-find-prev unread)
7014 (gnus-summary-find-next unread)))
7015 (unless (zerop (setq n (1- n)))
7016 (gnus-summary-show-thread)))
7017 (when (/= 0 n)
7018 (gnus-message 7 "No more%s articles"
7019 (if unread " unread" "")))
7020 (unless dont-display
7021 (gnus-summary-recenter)
7022 (gnus-summary-position-point))
7025 (defun gnus-summary-next-unread-subject (n)
7026 "Go to next N'th unread summary line."
7027 (interactive "p")
7028 (gnus-summary-next-subject n t))
7030 (defun gnus-summary-prev-subject (n &optional unread)
7031 "Go to previous N'th summary line.
7032 If optional argument UNREAD is non-nil, only unread article is selected."
7033 (interactive "p")
7034 (gnus-summary-next-subject (- n) unread))
7036 (defun gnus-summary-prev-unread-subject (n)
7037 "Go to previous N'th unread summary line."
7038 (interactive "p")
7039 (gnus-summary-next-subject (- n) t))
7041 (defun gnus-summary-goto-subjects (articles)
7042 "Insert the subject header for ARTICLES in the current buffer."
7043 (save-excursion
7044 (dolist (article articles)
7045 (gnus-summary-goto-subject article t)))
7046 (gnus-summary-limit (append articles gnus-newsgroup-limit))
7047 (gnus-summary-position-point))
7049 (defun gnus-summary-goto-subject (article &optional force silent)
7050 "Go the subject line of ARTICLE.
7051 If FORCE, also allow jumping to articles not currently shown."
7052 (interactive "nArticle number: ")
7053 (unless (numberp article)
7054 (error "Article %s is not a number" article))
7055 (let ((b (point))
7056 (data (gnus-data-find article)))
7057 ;; We read in the article if we have to.
7058 (and (not data)
7059 force
7060 (gnus-summary-insert-subject
7061 article
7062 (if (or (numberp force) (vectorp force)) force)
7064 (setq data (gnus-data-find article)))
7065 (goto-char b)
7066 (if (not data)
7067 (progn
7068 (unless silent
7069 (gnus-message 3 "Can't find article %d" article))
7070 nil)
7071 (let ((pt (gnus-data-pos data)))
7072 (goto-char pt)
7073 (gnus-summary-set-article-display-arrow pt))
7074 (gnus-summary-position-point)
7075 article)))
7077 ;; Walking around summary lines with displaying articles.
7079 (defun gnus-summary-expand-window (&optional arg)
7080 "Make the summary buffer take up the entire Emacs frame.
7081 Given a prefix, will force an `article' buffer configuration."
7082 (interactive "P")
7083 (if arg
7084 (gnus-configure-windows 'article 'force)
7085 (gnus-configure-windows 'summary 'force)))
7087 (defun gnus-summary-display-article (article &optional all-header)
7088 "Display ARTICLE in article buffer."
7089 (when (gnus-buffer-live-p gnus-article-buffer)
7090 (with-current-buffer gnus-article-buffer
7091 (mm-enable-multibyte)))
7092 (gnus-set-global-variables)
7093 (when (gnus-buffer-live-p gnus-article-buffer)
7094 (with-current-buffer gnus-article-buffer
7095 (setq gnus-article-charset gnus-newsgroup-charset)
7096 (setq gnus-article-ignored-charsets gnus-newsgroup-ignored-charsets)
7097 (mm-enable-multibyte)))
7098 (if (null article)
7100 (prog1
7101 (if gnus-summary-display-article-function
7102 (funcall gnus-summary-display-article-function article all-header)
7103 (gnus-article-prepare article all-header))
7104 (gnus-run-hooks 'gnus-select-article-hook)
7105 (when (and gnus-current-article
7106 (not (zerop gnus-current-article)))
7107 (gnus-summary-goto-subject gnus-current-article))
7108 (gnus-summary-recenter)
7109 (when (and gnus-use-trees gnus-show-threads)
7110 (gnus-possibly-generate-tree article)
7111 (gnus-highlight-selected-tree article))
7112 ;; Successfully display article.
7113 (gnus-article-set-window-start
7114 (cdr (assq article gnus-newsgroup-bookmarks))))))
7116 (defun gnus-summary-select-article (&optional all-headers force pseudo article)
7117 "Select the current article.
7118 If ALL-HEADERS is non-nil, show all header fields. If FORCE is
7119 non-nil, the article will be re-fetched even if it already present in
7120 the article buffer. If PSEUDO is non-nil, pseudo-articles will also
7121 be displayed."
7122 ;; Make sure we are in the summary buffer to work around bbdb bug.
7123 (unless (eq major-mode 'gnus-summary-mode)
7124 (set-buffer gnus-summary-buffer))
7125 (let ((article (or article (gnus-summary-article-number)))
7126 (all-headers (not (not all-headers))) ;Must be t or nil.
7127 gnus-summary-display-article-function)
7128 (and (not pseudo)
7129 (gnus-summary-article-pseudo-p article)
7130 (error "This is a pseudo-article"))
7131 (save-excursion
7132 (set-buffer gnus-summary-buffer)
7133 (if (or (and gnus-single-article-buffer
7134 (or (null gnus-current-article)
7135 (null gnus-article-current)
7136 (null (get-buffer gnus-article-buffer))
7137 (not (eq article (cdr gnus-article-current)))
7138 (not (equal (car gnus-article-current)
7139 gnus-newsgroup-name))))
7140 (and (not gnus-single-article-buffer)
7141 (or (null gnus-current-article)
7142 (not (eq gnus-current-article article))))
7143 force)
7144 ;; The requested article is different from the current article.
7145 (progn
7146 (gnus-summary-display-article article all-headers)
7147 (when (gnus-buffer-live-p gnus-article-buffer)
7148 (with-current-buffer gnus-article-buffer
7149 (if (not gnus-article-decoded-p) ;; a local variable
7150 (mm-disable-multibyte))))
7151 (gnus-article-set-window-start
7152 (cdr (assq article gnus-newsgroup-bookmarks)))
7153 article)
7154 'old))))
7156 (defun gnus-summary-force-verify-and-decrypt ()
7157 "Display buttons for signed/encrypted parts and verify/decrypt them."
7158 (interactive)
7159 (let ((mm-verify-option 'known)
7160 (mm-decrypt-option 'known)
7161 (gnus-article-emulate-mime t)
7162 (gnus-buttonized-mime-types (append (list "multipart/signed"
7163 "multipart/encrypted")
7164 gnus-buttonized-mime-types)))
7165 (gnus-summary-select-article nil 'force)))
7167 (defun gnus-summary-set-current-mark (&optional current-mark)
7168 "Obsolete function."
7169 nil)
7171 (defun gnus-summary-next-article (&optional unread subject backward push)
7172 "Select the next article.
7173 If UNREAD, only unread articles are selected.
7174 If SUBJECT, only articles with SUBJECT are selected.
7175 If BACKWARD, the previous article is selected instead of the next."
7176 (interactive "P")
7177 (cond
7178 ;; Is there such an article?
7179 ((and (gnus-summary-search-forward unread subject backward)
7180 (or (gnus-summary-display-article (gnus-summary-article-number))
7181 (eq (gnus-summary-article-mark) gnus-canceled-mark)))
7182 (gnus-summary-position-point))
7183 ;; If not, we try the first unread, if that is wanted.
7184 ((and subject
7185 gnus-auto-select-same
7186 (gnus-summary-first-unread-article))
7187 (gnus-summary-position-point)
7188 (gnus-message 6 "Wrapped"))
7189 ;; Try to get next/previous article not displayed in this group.
7190 ((and gnus-auto-extend-newsgroup
7191 (not unread) (not subject))
7192 (gnus-summary-goto-article
7193 (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end))
7194 nil (count-lines (point-min) (point))))
7195 ;; Go to next/previous group.
7197 (unless (gnus-ephemeral-group-p gnus-newsgroup-name)
7198 (gnus-summary-jump-to-group gnus-newsgroup-name))
7199 (let ((cmd last-command-char)
7200 (point
7201 (save-excursion
7202 (set-buffer gnus-group-buffer)
7203 (point)))
7204 (group
7205 (if (eq gnus-keep-same-level 'best)
7206 (gnus-summary-best-group gnus-newsgroup-name)
7207 (gnus-summary-search-group backward gnus-keep-same-level))))
7208 ;; For some reason, the group window gets selected. We change
7209 ;; it back.
7210 (select-window (get-buffer-window (current-buffer)))
7211 ;; Select next unread newsgroup automagically.
7212 (cond
7213 ((or (not gnus-auto-select-next)
7214 (not cmd))
7215 (gnus-message 7 "No more%s articles" (if unread " unread" "")))
7216 ((or (eq gnus-auto-select-next 'quietly)
7217 (and (eq gnus-auto-select-next 'slightly-quietly)
7218 push)
7219 (and (eq gnus-auto-select-next 'almost-quietly)
7220 (gnus-summary-last-article-p)))
7221 ;; Select quietly.
7222 (if (gnus-ephemeral-group-p gnus-newsgroup-name)
7223 (gnus-summary-exit)
7224 (gnus-message 7 "No more%s articles (%s)..."
7225 (if unread " unread" "")
7226 (if group (concat "selecting " group)
7227 "exiting"))
7228 (gnus-summary-next-group nil group backward)))
7230 (when (gnus-key-press-event-p last-input-event)
7231 (gnus-summary-walk-group-buffer
7232 gnus-newsgroup-name cmd unread backward point))))))))
7234 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start)
7235 (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1))
7236 (?\C-p (gnus-group-prev-unread-group 1))))
7237 (cursor-in-echo-area t)
7238 keve key group ended prompt)
7239 (save-excursion
7240 (set-buffer gnus-group-buffer)
7241 (goto-char start)
7242 (setq group
7243 (if (eq gnus-keep-same-level 'best)
7244 (gnus-summary-best-group gnus-newsgroup-name)
7245 (gnus-summary-search-group backward gnus-keep-same-level))))
7246 (while (not ended)
7247 (setq prompt
7248 (format
7249 "No more%s articles%s " (if unread " unread" "")
7250 (if (and group
7251 (not (gnus-ephemeral-group-p gnus-newsgroup-name)))
7252 (format " (Type %s for %s [%s])"
7253 (single-key-description cmd) group
7254 (car (gnus-gethash group gnus-newsrc-hashtb)))
7255 (format " (Type %s to exit %s)"
7256 (single-key-description cmd)
7257 gnus-newsgroup-name))))
7258 ;; Confirm auto selection.
7259 (setq key (car (setq keve (gnus-read-event-char prompt)))
7260 ended t)
7261 (cond
7262 ((assq key keystrokes)
7263 (let ((obuf (current-buffer)))
7264 (switch-to-buffer gnus-group-buffer)
7265 (when group
7266 (gnus-group-jump-to-group group))
7267 (eval (cadr (assq key keystrokes)))
7268 (setq group (gnus-group-group-name))
7269 (switch-to-buffer obuf))
7270 (setq ended nil))
7271 ((equal key cmd)
7272 (if (or (not group)
7273 (gnus-ephemeral-group-p gnus-newsgroup-name))
7274 (gnus-summary-exit)
7275 (gnus-summary-next-group nil group backward)))
7277 (push (cdr keve) unread-command-events))))))
7279 (defun gnus-summary-next-unread-article ()
7280 "Select unread article after current one."
7281 (interactive)
7282 (gnus-summary-next-article
7283 (or (not (eq gnus-summary-goto-unread 'never))
7284 (gnus-summary-last-article-p (gnus-summary-article-number)))
7285 (and gnus-auto-select-same
7286 (gnus-summary-article-subject))))
7288 (defun gnus-summary-prev-article (&optional unread subject)
7289 "Select the article after the current one.
7290 If UNREAD is non-nil, only unread articles are selected."
7291 (interactive "P")
7292 (gnus-summary-next-article unread subject t))
7294 (defun gnus-summary-prev-unread-article ()
7295 "Select unread article before current one."
7296 (interactive)
7297 (gnus-summary-prev-article
7298 (or (not (eq gnus-summary-goto-unread 'never))
7299 (gnus-summary-first-article-p (gnus-summary-article-number)))
7300 (and gnus-auto-select-same
7301 (gnus-summary-article-subject))))
7303 (defun gnus-summary-next-page (&optional lines circular stop)
7304 "Show next page of the selected article.
7305 If at the end of the current article, select the next article.
7306 LINES says how many lines should be scrolled up.
7308 If CIRCULAR is non-nil, go to the start of the article instead of
7309 selecting the next article when reaching the end of the current
7310 article.
7312 If STOP is non-nil, just stop when reaching the end of the message.
7314 Also see the variable `gnus-article-skip-boring'."
7315 (interactive "P")
7316 (setq gnus-summary-buffer (current-buffer))
7317 (gnus-set-global-variables)
7318 (let ((article (gnus-summary-article-number))
7319 (article-window (get-buffer-window gnus-article-buffer t))
7320 endp)
7321 ;; If the buffer is empty, we have no article.
7322 (unless article
7323 (error "No article to select"))
7324 (gnus-configure-windows 'article)
7325 (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark)
7326 (if (and (eq gnus-summary-goto-unread 'never)
7327 (not (gnus-summary-last-article-p article)))
7328 (gnus-summary-next-article)
7329 (gnus-summary-next-unread-article))
7330 (if (or (null gnus-current-article)
7331 (null gnus-article-current)
7332 (/= article (cdr gnus-article-current))
7333 (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7334 ;; Selected subject is different from current article's.
7335 (gnus-summary-display-article article)
7336 (when article-window
7337 (gnus-eval-in-buffer-window gnus-article-buffer
7338 (setq endp (or (gnus-article-next-page lines)
7339 (gnus-article-only-boring-p))))
7340 (when endp
7341 (cond (stop
7342 (gnus-message 3 "End of message"))
7343 (circular
7344 (gnus-summary-beginning-of-article))
7345 (lines
7346 (gnus-message 3 "End of message"))
7347 ((null lines)
7348 (if (and (eq gnus-summary-goto-unread 'never)
7349 (not (gnus-summary-last-article-p article)))
7350 (gnus-summary-next-article)
7351 (gnus-summary-next-unread-article))))))))
7352 (gnus-summary-recenter)
7353 (gnus-summary-position-point)))
7355 (defun gnus-summary-prev-page (&optional lines move)
7356 "Show previous page of selected article.
7357 Argument LINES specifies lines to be scrolled down.
7358 If MOVE, move to the previous unread article if point is at
7359 the beginning of the buffer."
7360 (interactive "P")
7361 (let ((article (gnus-summary-article-number))
7362 (article-window (get-buffer-window gnus-article-buffer t))
7363 endp)
7364 (gnus-configure-windows 'article)
7365 (if (or (null gnus-current-article)
7366 (null gnus-article-current)
7367 (/= article (cdr gnus-article-current))
7368 (not (equal (car gnus-article-current) gnus-newsgroup-name)))
7369 ;; Selected subject is different from current article's.
7370 (gnus-summary-display-article article)
7371 (gnus-summary-recenter)
7372 (when article-window
7373 (gnus-eval-in-buffer-window gnus-article-buffer
7374 (setq endp (gnus-article-prev-page lines)))
7375 (when (and move endp)
7376 (cond (lines
7377 (gnus-message 3 "Beginning of message"))
7378 ((null lines)
7379 (if (and (eq gnus-summary-goto-unread 'never)
7380 (not (gnus-summary-first-article-p article)))
7381 (gnus-summary-prev-article)
7382 (gnus-summary-prev-unread-article))))))))
7383 (gnus-summary-position-point))
7385 (defun gnus-summary-prev-page-or-article (&optional lines)
7386 "Show previous page of selected article.
7387 Argument LINES specifies lines to be scrolled down.
7388 If at the beginning of the article, go to the next article."
7389 (interactive "P")
7390 (gnus-summary-prev-page lines t))
7392 (defun gnus-summary-scroll-up (lines)
7393 "Scroll up (or down) one line current article.
7394 Argument LINES specifies lines to be scrolled up (or down if negative)."
7395 (interactive "p")
7396 (gnus-configure-windows 'article)
7397 (gnus-summary-show-thread)
7398 (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old)
7399 (gnus-eval-in-buffer-window gnus-article-buffer
7400 (cond ((> lines 0)
7401 (when (gnus-article-next-page lines)
7402 (gnus-message 3 "End of message")))
7403 ((< lines 0)
7404 (gnus-article-prev-page (- lines))))))
7405 (gnus-summary-recenter)
7406 (gnus-summary-position-point))
7408 (defun gnus-summary-scroll-down (lines)
7409 "Scroll down (or up) one line current article.
7410 Argument LINES specifies lines to be scrolled down (or up if negative)."
7411 (interactive "p")
7412 (gnus-summary-scroll-up (- lines)))
7414 (defun gnus-summary-next-same-subject ()
7415 "Select next article which has the same subject as current one."
7416 (interactive)
7417 (gnus-summary-next-article nil (gnus-summary-article-subject)))
7419 (defun gnus-summary-prev-same-subject ()
7420 "Select previous article which has the same subject as current one."
7421 (interactive)
7422 (gnus-summary-prev-article nil (gnus-summary-article-subject)))
7424 (defun gnus-summary-next-unread-same-subject ()
7425 "Select next unread article which has the same subject as current one."
7426 (interactive)
7427 (gnus-summary-next-article t (gnus-summary-article-subject)))
7429 (defun gnus-summary-prev-unread-same-subject ()
7430 "Select previous unread article which has the same subject as current one."
7431 (interactive)
7432 (gnus-summary-prev-article t (gnus-summary-article-subject)))
7434 (defun gnus-summary-first-unread-article ()
7435 "Select the first unread article.
7436 Return nil if there are no unread articles."
7437 (interactive)
7438 (prog1
7439 (when (gnus-summary-first-subject t)
7440 (gnus-summary-show-thread)
7441 (gnus-summary-first-subject t)
7442 (gnus-summary-display-article (gnus-summary-article-number)))
7443 (gnus-summary-position-point)))
7445 (defun gnus-summary-first-unread-subject ()
7446 "Place the point on the subject line of the first unread article.
7447 Return nil if there are no unread articles."
7448 (interactive)
7449 (prog1
7450 (when (gnus-summary-first-subject t)
7451 (gnus-summary-show-thread)
7452 (gnus-summary-first-subject t))
7453 (gnus-summary-position-point)))
7455 (defun gnus-summary-first-unseen-subject ()
7456 "Place the point on the subject line of the first unseen article.
7457 Return nil if there are no unseen articles."
7458 (interactive)
7459 (prog1
7460 (when (gnus-summary-first-subject nil nil t)
7461 (gnus-summary-show-thread)
7462 (gnus-summary-first-subject nil nil t))
7463 (gnus-summary-position-point)))
7465 (defun gnus-summary-first-unseen-or-unread-subject ()
7466 "Place the point on the subject line of the first unseen article or,
7467 if all article have been seen, on the subject line of the first unread
7468 article."
7469 (interactive)
7470 (prog1
7471 (unless (when (gnus-summary-first-subject nil nil t)
7472 (gnus-summary-show-thread)
7473 (gnus-summary-first-subject nil nil t))
7474 (when (gnus-summary-first-subject t)
7475 (gnus-summary-show-thread)
7476 (gnus-summary-first-subject t)))
7477 (gnus-summary-position-point)))
7479 (defun gnus-summary-first-article ()
7480 "Select the first article.
7481 Return nil if there are no articles."
7482 (interactive)
7483 (prog1
7484 (when (gnus-summary-first-subject)
7485 (gnus-summary-show-thread)
7486 (gnus-summary-first-subject)
7487 (gnus-summary-display-article (gnus-summary-article-number)))
7488 (gnus-summary-position-point)))
7490 (defun gnus-summary-best-unread-article (&optional arg)
7491 "Select the unread article with the highest score.
7492 If given a prefix argument, select the next unread article that has a
7493 score higher than the default score."
7494 (interactive "P")
7495 (let ((article (if arg
7496 (gnus-summary-better-unread-subject)
7497 (gnus-summary-best-unread-subject))))
7498 (if article
7499 (gnus-summary-goto-article article)
7500 (error "No unread articles"))))
7502 (defun gnus-summary-best-unread-subject ()
7503 "Select the unread subject with the highest score."
7504 (interactive)
7505 (let ((best -1000000)
7506 (data gnus-newsgroup-data)
7507 article score)
7508 (while data
7509 (and (gnus-data-unread-p (car data))
7510 (> (setq score
7511 (gnus-summary-article-score (gnus-data-number (car data))))
7512 best)
7513 (setq best score
7514 article (gnus-data-number (car data))))
7515 (setq data (cdr data)))
7516 (when article
7517 (gnus-summary-goto-subject article))
7518 (gnus-summary-position-point)
7519 article))
7521 (defun gnus-summary-better-unread-subject ()
7522 "Select the first unread subject that has a score over the default score."
7523 (interactive)
7524 (let ((data gnus-newsgroup-data)
7525 article score)
7526 (while (and (setq article (gnus-data-number (car data)))
7527 (or (gnus-data-read-p (car data))
7528 (not (> (gnus-summary-article-score article)
7529 gnus-summary-default-score))))
7530 (setq data (cdr data)))
7531 (when article
7532 (gnus-summary-goto-subject article))
7533 (gnus-summary-position-point)
7534 article))
7536 (defun gnus-summary-last-subject ()
7537 "Go to the last displayed subject line in the group."
7538 (let ((article (gnus-data-number (car (gnus-data-list t)))))
7539 (when article
7540 (gnus-summary-goto-subject article))))
7542 (defun gnus-summary-goto-article (article &optional all-headers force)
7543 "Fetch ARTICLE (article number or Message-ID) and display it if it exists.
7544 If ALL-HEADERS is non-nil, no header lines are hidden.
7545 If FORCE, go to the article even if it isn't displayed. If FORCE
7546 is a number, it is the line the article is to be displayed on."
7547 (interactive
7548 (list
7549 (completing-read
7550 "Article number or Message-ID: "
7551 (mapcar (lambda (number) (list (int-to-string number)))
7552 gnus-newsgroup-limit))
7553 current-prefix-arg
7555 (prog1
7556 (if (and (stringp article)
7557 (string-match "@\\|%40" article))
7558 (gnus-summary-refer-article article)
7559 (when (stringp article)
7560 (setq article (string-to-number article)))
7561 (if (gnus-summary-goto-subject article force)
7562 (gnus-summary-display-article article all-headers)
7563 (gnus-message 4 "Couldn't go to article %s" article) nil))
7564 (gnus-summary-position-point)))
7566 (defun gnus-summary-goto-last-article ()
7567 "Go to the previously read article."
7568 (interactive)
7569 (prog1
7570 (when gnus-last-article
7571 (gnus-summary-goto-article gnus-last-article nil t))
7572 (gnus-summary-position-point)))
7574 (defun gnus-summary-pop-article (number)
7575 "Pop one article off the history and go to the previous.
7576 NUMBER articles will be popped off."
7577 (interactive "p")
7578 (let (to)
7579 (setq gnus-newsgroup-history
7580 (cdr (setq to (nthcdr number gnus-newsgroup-history))))
7581 (if to
7582 (gnus-summary-goto-article (car to) nil t)
7583 (error "Article history empty")))
7584 (gnus-summary-position-point))
7586 ;; Summary commands and functions for limiting the summary buffer.
7588 (defun gnus-summary-limit-to-articles (n)
7589 "Limit the summary buffer to the next N articles.
7590 If not given a prefix, use the process marked articles instead."
7591 (interactive "P")
7592 (prog1
7593 (let ((articles (gnus-summary-work-articles n)))
7594 (setq gnus-newsgroup-processable nil)
7595 (gnus-summary-limit articles))
7596 (gnus-summary-position-point)))
7598 (defun gnus-summary-pop-limit (&optional total)
7599 "Restore the previous limit.
7600 If given a prefix, remove all limits."
7601 (interactive "P")
7602 (when total
7603 (setq gnus-newsgroup-limits
7604 (list (mapcar (lambda (h) (mail-header-number h))
7605 gnus-newsgroup-headers))))
7606 (unless gnus-newsgroup-limits
7607 (error "No limit to pop"))
7608 (prog1
7609 (gnus-summary-limit nil 'pop)
7610 (gnus-summary-position-point)))
7612 (defun gnus-summary-limit-to-subject (subject &optional header not-matching)
7613 "Limit the summary buffer to articles that have subjects that match a regexp.
7614 If NOT-MATCHING, excluding articles that have subjects that match a regexp."
7615 (interactive
7616 (list (read-string (if current-prefix-arg
7617 "Exclude subject (regexp): "
7618 "Limit to subject (regexp): "))
7619 nil current-prefix-arg))
7620 (unless header
7621 (setq header "subject"))
7622 (when (not (equal "" subject))
7623 (prog1
7624 (let ((articles (gnus-summary-find-matching
7625 (or header "subject") subject 'all nil nil
7626 not-matching)))
7627 (unless articles
7628 (error "Found no matches for \"%s\"" subject))
7629 (gnus-summary-limit articles))
7630 (gnus-summary-position-point))))
7632 (defun gnus-summary-limit-to-author (from &optional not-matching)
7633 "Limit the summary buffer to articles that have authors that match a regexp.
7634 If NOT-MATCHING, excluding articles that have authors that match a regexp."
7635 (interactive
7636 (list (read-string (if current-prefix-arg
7637 "Exclude author (regexp): "
7638 "Limit to author (regexp): "))
7639 current-prefix-arg))
7640 (gnus-summary-limit-to-subject from "from" not-matching))
7642 (defun gnus-summary-limit-to-age (age &optional younger-p)
7643 "Limit the summary buffer to articles that are older than (or equal) AGE days.
7644 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to
7645 articles that are younger than AGE days."
7646 (interactive
7647 (let ((younger current-prefix-arg)
7648 (days-got nil)
7649 days)
7650 (while (not days-got)
7651 (setq days (if younger
7652 (read-string "Limit to articles younger than (in days, older when negative): ")
7653 (read-string
7654 "Limit to articles older than (in days, younger when negative): ")))
7655 (when (> (length days) 0)
7656 (setq days (read days)))
7657 (if (numberp days)
7658 (progn
7659 (setq days-got t)
7660 (if (< days 0)
7661 (progn
7662 (setq younger (not younger))
7663 (setq days (* days -1)))))
7664 (message "Please enter a number.")
7665 (sleep-for 1)))
7666 (list days younger)))
7667 (prog1
7668 (let ((data gnus-newsgroup-data)
7669 (cutoff (days-to-time age))
7670 articles d date is-younger)
7671 (while (setq d (pop data))
7672 (when (and (vectorp (gnus-data-header d))
7673 (setq date (mail-header-date (gnus-data-header d))))
7674 (setq is-younger (time-less-p
7675 (time-since (condition-case ()
7676 (date-to-time date)
7677 (error '(0 0))))
7678 cutoff))
7679 (when (if younger-p
7680 is-younger
7681 (not is-younger))
7682 (push (gnus-data-number d) articles))))
7683 (gnus-summary-limit (nreverse articles)))
7684 (gnus-summary-position-point)))
7686 (defun gnus-summary-limit-to-extra (header regexp &optional not-matching)
7687 "Limit the summary buffer to articles that match an 'extra' header."
7688 (interactive
7689 (let ((header
7690 (intern
7691 (gnus-completing-read-with-default
7692 (symbol-name (car gnus-extra-headers))
7693 (if current-prefix-arg
7694 "Exclude extra header:"
7695 "Limit extra header:")
7696 (mapcar (lambda (x)
7697 (cons (symbol-name x) x))
7698 gnus-extra-headers)
7700 t))))
7701 (list header
7702 (read-string (format "%s header %s (regexp): "
7703 (if current-prefix-arg "Exclude" "Limit to")
7704 header))
7705 current-prefix-arg)))
7706 (when (not (equal "" regexp))
7707 (prog1
7708 (let ((articles (gnus-summary-find-matching
7709 (cons 'extra header) regexp 'all nil nil
7710 not-matching)))
7711 (unless articles
7712 (error "Found no matches for \"%s\"" regexp))
7713 (gnus-summary-limit articles))
7714 (gnus-summary-position-point))))
7716 (defun gnus-summary-limit-to-display-predicate ()
7717 "Limit the summary buffer to the predicated in the `display' group parameter."
7718 (interactive)
7719 (unless gnus-newsgroup-display
7720 (error "There is no `display' group parameter"))
7721 (let (articles)
7722 (dolist (number gnus-newsgroup-articles)
7723 (when (funcall gnus-newsgroup-display)
7724 (push number articles)))
7725 (gnus-summary-limit articles))
7726 (gnus-summary-position-point))
7728 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7729 (make-obsolete
7730 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread)
7732 (defun gnus-summary-limit-to-unread (&optional all)
7733 "Limit the summary buffer to articles that are not marked as read.
7734 If ALL is non-nil, limit strictly to unread articles."
7735 (interactive "P")
7736 (if all
7737 (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark))
7738 (gnus-summary-limit-to-marks
7739 ;; Concat all the marks that say that an article is read and have
7740 ;; those removed.
7741 (list gnus-del-mark gnus-read-mark gnus-ancient-mark
7742 gnus-killed-mark gnus-spam-mark gnus-kill-file-mark
7743 gnus-low-score-mark gnus-expirable-mark
7744 gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark
7745 gnus-duplicate-mark gnus-souped-mark)
7746 'reverse)))
7748 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks)
7749 (make-obsolete 'gnus-summary-delete-marked-with
7750 'gnus-summary-limit-exclude-marks)
7752 (defun gnus-summary-limit-exclude-marks (marks &optional reverse)
7753 "Exclude articles that are marked with MARKS (e.g. \"DK\").
7754 If REVERSE, limit the summary buffer to articles that are marked
7755 with MARKS. MARKS can either be a string of marks or a list of marks.
7756 Returns how many articles were removed."
7757 (interactive "sMarks: ")
7758 (gnus-summary-limit-to-marks marks t))
7760 (defun gnus-summary-limit-to-marks (marks &optional reverse)
7761 "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\").
7762 If REVERSE (the prefix), limit the summary buffer to articles that are
7763 not marked with MARKS. MARKS can either be a string of marks or a
7764 list of marks.
7765 Returns how many articles were removed."
7766 (interactive "sMarks: \nP")
7767 (prog1
7768 (let ((data gnus-newsgroup-data)
7769 (marks (if (listp marks) marks
7770 (append marks nil))) ; Transform to list.
7771 articles)
7772 (while data
7773 (when (if reverse (not (memq (gnus-data-mark (car data)) marks))
7774 (memq (gnus-data-mark (car data)) marks))
7775 (push (gnus-data-number (car data)) articles))
7776 (setq data (cdr data)))
7777 (gnus-summary-limit articles))
7778 (gnus-summary-position-point)))
7780 (defun gnus-summary-limit-to-score (score)
7781 "Limit to articles with score at or above SCORE."
7782 (interactive "NLimit to articles with score of at least: ")
7783 (let ((data gnus-newsgroup-data)
7784 articles)
7785 (while data
7786 (when (>= (gnus-summary-article-score (gnus-data-number (car data)))
7787 score)
7788 (push (gnus-data-number (car data)) articles))
7789 (setq data (cdr data)))
7790 (prog1
7791 (gnus-summary-limit articles)
7792 (gnus-summary-position-point))))
7794 (defun gnus-summary-limit-to-unseen ()
7795 "Limit to unseen articles."
7796 (interactive)
7797 (prog1
7798 (gnus-summary-limit gnus-newsgroup-unseen)
7799 (gnus-summary-position-point)))
7801 (defun gnus-summary-limit-include-thread (id)
7802 "Display all the hidden articles that is in the thread with ID in it.
7803 When called interactively, ID is the Message-ID of the current
7804 article."
7805 (interactive (list (mail-header-id (gnus-summary-article-header))))
7806 (let ((articles (gnus-articles-in-thread
7807 (gnus-id-to-thread (gnus-root-id id)))))
7808 (prog1
7809 (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7810 (gnus-summary-limit-include-matching-articles
7811 "subject"
7812 (regexp-quote (gnus-simplify-subject-re
7813 (mail-header-subject (gnus-id-to-header id)))))
7814 (gnus-summary-position-point))))
7816 (defun gnus-summary-limit-include-matching-articles (header regexp)
7817 "Display all the hidden articles that have HEADERs that match REGEXP."
7818 (interactive (list (read-string "Match on header: ")
7819 (read-string "Regexp: ")))
7820 (let ((articles (gnus-find-matching-articles header regexp)))
7821 (prog1
7822 (gnus-summary-limit (nconc articles gnus-newsgroup-limit))
7823 (gnus-summary-position-point))))
7825 (defun gnus-summary-insert-dormant-articles ()
7826 "Insert all the dormant articles for this group into the current buffer."
7827 (interactive)
7828 (let ((gnus-verbose (max 6 gnus-verbose)))
7829 (if (not gnus-newsgroup-dormant)
7830 (gnus-message 3 "No cached articles for this group")
7831 (gnus-summary-goto-subjects gnus-newsgroup-dormant))))
7833 (defun gnus-summary-limit-include-dormant ()
7834 "Display all the hidden articles that are marked as dormant.
7835 Note that this command only works on a subset of the articles currently
7836 fetched for this group."
7837 (interactive)
7838 (unless gnus-newsgroup-dormant
7839 (error "There are no dormant articles in this group"))
7840 (prog1
7841 (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
7842 (gnus-summary-position-point)))
7844 (defun gnus-summary-limit-exclude-dormant ()
7845 "Hide all dormant articles."
7846 (interactive)
7847 (prog1
7848 (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse)
7849 (gnus-summary-position-point)))
7851 (defun gnus-summary-limit-exclude-childless-dormant ()
7852 "Hide all dormant articles that have no children."
7853 (interactive)
7854 (let ((data (gnus-data-list t))
7855 articles d children)
7856 ;; Find all articles that are either not dormant or have
7857 ;; children.
7858 (while (setq d (pop data))
7859 (when (or (not (= (gnus-data-mark d) gnus-dormant-mark))
7860 (and (setq children
7861 (gnus-article-children (gnus-data-number d)))
7862 (let (found)
7863 (while children
7864 (when (memq (car children) articles)
7865 (setq children nil
7866 found t))
7867 (pop children))
7868 found)))
7869 (push (gnus-data-number d) articles)))
7870 ;; Do the limiting.
7871 (prog1
7872 (gnus-summary-limit articles)
7873 (gnus-summary-position-point))))
7875 (defun gnus-summary-limit-mark-excluded-as-read (&optional all)
7876 "Mark all unread excluded articles as read.
7877 If ALL, mark even excluded ticked and dormants as read."
7878 (interactive "P")
7879 (setq gnus-newsgroup-limit (sort gnus-newsgroup-limit '<))
7880 (let ((articles (gnus-sorted-ndifference
7881 (sort
7882 (mapcar (lambda (h) (mail-header-number h))
7883 gnus-newsgroup-headers)
7885 gnus-newsgroup-limit))
7886 article)
7887 (setq gnus-newsgroup-unreads
7888 (gnus-sorted-intersection gnus-newsgroup-unreads
7889 gnus-newsgroup-limit))
7890 (if all
7891 (setq gnus-newsgroup-dormant nil
7892 gnus-newsgroup-marked nil
7893 gnus-newsgroup-reads
7894 (nconc
7895 (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles)
7896 gnus-newsgroup-reads))
7897 (while (setq article (pop articles))
7898 (unless (or (memq article gnus-newsgroup-dormant)
7899 (memq article gnus-newsgroup-marked))
7900 (push (cons article gnus-catchup-mark) gnus-newsgroup-reads))))))
7902 (defun gnus-summary-limit (articles &optional pop)
7903 (if pop
7904 ;; We pop the previous limit off the stack and use that.
7905 (setq articles (car gnus-newsgroup-limits)
7906 gnus-newsgroup-limits (cdr gnus-newsgroup-limits))
7907 ;; We use the new limit, so we push the old limit on the stack.
7908 (push gnus-newsgroup-limit gnus-newsgroup-limits))
7909 ;; Set the limit.
7910 (setq gnus-newsgroup-limit articles)
7911 (let ((total (length gnus-newsgroup-data))
7912 (data (gnus-data-find-list (gnus-summary-article-number)))
7913 (gnus-summary-mark-below nil) ; Inhibit this.
7914 found)
7915 ;; This will do all the work of generating the new summary buffer
7916 ;; according to the new limit.
7917 (gnus-summary-prepare)
7918 ;; Hide any threads, possibly.
7919 (gnus-summary-maybe-hide-threads)
7920 ;; Try to return to the article you were at, or one in the
7921 ;; neighborhood.
7922 (when data
7923 ;; We try to find some article after the current one.
7924 (while data
7925 (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t)
7926 (setq data nil
7927 found t))
7928 (setq data (cdr data))))
7929 (unless found
7930 ;; If there is no data, that means that we were after the last
7931 ;; article. The same goes when we can't find any articles
7932 ;; after the current one.
7933 (goto-char (point-max))
7934 (gnus-summary-find-prev))
7935 (gnus-set-mode-line 'summary)
7936 ;; We return how many articles were removed from the summary
7937 ;; buffer as a result of the new limit.
7938 (- total (length gnus-newsgroup-data))))
7940 (defsubst gnus-invisible-cut-children (threads)
7941 (let ((num 0))
7942 (while threads
7943 (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit)
7944 (incf num))
7945 (pop threads))
7946 (< num 2)))
7948 (defsubst gnus-cut-thread (thread)
7949 "Go forwards in the thread until we find an article that we want to display."
7950 (when (or (eq gnus-fetch-old-headers 'some)
7951 (eq gnus-fetch-old-headers 'invisible)
7952 (numberp gnus-fetch-old-headers)
7953 (eq gnus-build-sparse-threads 'some)
7954 (eq gnus-build-sparse-threads 'more))
7955 ;; Deal with old-fetched headers and sparse threads.
7956 (while (and
7957 thread
7959 (gnus-summary-article-sparse-p (mail-header-number (car thread)))
7960 (gnus-summary-article-ancient-p
7961 (mail-header-number (car thread))))
7962 (if (or (<= (length (cdr thread)) 1)
7963 (eq gnus-fetch-old-headers 'invisible))
7964 (setq gnus-newsgroup-limit
7965 (delq (mail-header-number (car thread))
7966 gnus-newsgroup-limit)
7967 thread (cadr thread))
7968 (when (gnus-invisible-cut-children (cdr thread))
7969 (let ((th (cdr thread)))
7970 (while th
7971 (if (memq (mail-header-number (caar th))
7972 gnus-newsgroup-limit)
7973 (setq thread (car th)
7974 th nil)
7975 (setq th (cdr th))))))))))
7976 thread)
7978 (defun gnus-cut-threads (threads)
7979 "Cut off all uninteresting articles from the beginning of THREADS."
7980 (when (or (eq gnus-fetch-old-headers 'some)
7981 (eq gnus-fetch-old-headers 'invisible)
7982 (numberp gnus-fetch-old-headers)
7983 (eq gnus-build-sparse-threads 'some)
7984 (eq gnus-build-sparse-threads 'more))
7985 (let ((th threads))
7986 (while th
7987 (setcar th (gnus-cut-thread (car th)))
7988 (setq th (cdr th)))))
7989 ;; Remove nixed out threads.
7990 (delq nil threads))
7992 (defun gnus-summary-initial-limit (&optional show-if-empty)
7993 "Figure out what the initial limit is supposed to be on group entry.
7994 This entails weeding out unwanted dormants, low-scored articles,
7995 fetch-old-headers verbiage, and so on."
7996 ;; Most groups have nothing to remove.
7997 (if (or gnus-inhibit-limiting
7998 (and (null gnus-newsgroup-dormant)
7999 (eq gnus-newsgroup-display 'gnus-not-ignore)
8000 (not (eq gnus-fetch-old-headers 'some))
8001 (not (numberp gnus-fetch-old-headers))
8002 (not (eq gnus-fetch-old-headers 'invisible))
8003 (null gnus-summary-expunge-below)
8004 (not (eq gnus-build-sparse-threads 'some))
8005 (not (eq gnus-build-sparse-threads 'more))
8006 (null gnus-thread-expunge-below)
8007 (not gnus-use-nocem)))
8008 () ; Do nothing.
8009 (push gnus-newsgroup-limit gnus-newsgroup-limits)
8010 (setq gnus-newsgroup-limit nil)
8011 (mapatoms
8012 (lambda (node)
8013 (unless (car (symbol-value node))
8014 ;; These threads have no parents -- they are roots.
8015 (let ((nodes (cdr (symbol-value node)))
8016 thread)
8017 (while nodes
8018 (if (and gnus-thread-expunge-below
8019 (< (gnus-thread-total-score (car nodes))
8020 gnus-thread-expunge-below))
8021 (gnus-expunge-thread (pop nodes))
8022 (setq thread (pop nodes))
8023 (gnus-summary-limit-children thread))))))
8024 gnus-newsgroup-dependencies)
8025 ;; If this limitation resulted in an empty group, we might
8026 ;; pop the previous limit and use it instead.
8027 (when (and (not gnus-newsgroup-limit)
8028 show-if-empty)
8029 (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits)))
8030 gnus-newsgroup-limit))
8032 (defun gnus-summary-limit-children (thread)
8033 "Return 1 if this subthread is visible and 0 if it is not."
8034 ;; First we get the number of visible children to this thread. This
8035 ;; is done by recursing down the thread using this function, so this
8036 ;; will really go down to a leaf article first, before slowly
8037 ;; working its way up towards the root.
8038 (when thread
8039 (let* ((max-lisp-eval-depth 5000)
8040 (children
8041 (if (cdr thread)
8042 (apply '+ (mapcar 'gnus-summary-limit-children
8043 (cdr thread)))
8045 (number (mail-header-number (car thread)))
8046 score)
8047 (if (and
8048 (not (memq number gnus-newsgroup-marked))
8050 ;; If this article is dormant and has absolutely no visible
8051 ;; children, then this article isn't visible.
8052 (and (memq number gnus-newsgroup-dormant)
8053 (zerop children))
8054 ;; If this is "fetch-old-headered" and there is no
8055 ;; visible children, then we don't want this article.
8056 (and (or (eq gnus-fetch-old-headers 'some)
8057 (numberp gnus-fetch-old-headers))
8058 (gnus-summary-article-ancient-p number)
8059 (zerop children))
8060 ;; If this is "fetch-old-headered" and `invisible', then
8061 ;; we don't want this article.
8062 (and (eq gnus-fetch-old-headers 'invisible)
8063 (gnus-summary-article-ancient-p number))
8064 ;; If this is a sparsely inserted article with no children,
8065 ;; we don't want it.
8066 (and (eq gnus-build-sparse-threads 'some)
8067 (gnus-summary-article-sparse-p number)
8068 (zerop children))
8069 ;; If we use expunging, and this article is really
8070 ;; low-scored, then we don't want this article.
8071 (when (and gnus-summary-expunge-below
8072 (< (setq score
8073 (or (cdr (assq number gnus-newsgroup-scored))
8074 gnus-summary-default-score))
8075 gnus-summary-expunge-below))
8076 ;; We increase the expunge-tally here, but that has
8077 ;; nothing to do with the limits, really.
8078 (incf gnus-newsgroup-expunged-tally)
8079 ;; We also mark as read here, if that's wanted.
8080 (when (and gnus-summary-mark-below
8081 (< score gnus-summary-mark-below))
8082 (setq gnus-newsgroup-unreads
8083 (delq number gnus-newsgroup-unreads))
8084 (if gnus-newsgroup-auto-expire
8085 (push number gnus-newsgroup-expirable)
8086 (push (cons number gnus-low-score-mark)
8087 gnus-newsgroup-reads)))
8089 ;; Do the `display' group parameter.
8090 (and gnus-newsgroup-display
8091 (not (funcall gnus-newsgroup-display)))
8092 ;; Check NoCeM things.
8093 (if (and gnus-use-nocem
8094 (gnus-nocem-unwanted-article-p
8095 (mail-header-id (car thread))))
8096 (progn
8097 (setq gnus-newsgroup-unreads
8098 (delq number gnus-newsgroup-unreads))
8099 t))))
8100 ;; Nope, invisible article.
8102 ;; Ok, this article is to be visible, so we add it to the limit
8103 ;; and return 1.
8104 (push number gnus-newsgroup-limit)
8105 1))))
8107 (defun gnus-expunge-thread (thread)
8108 "Mark all articles in THREAD as read."
8109 (let* ((number (mail-header-number (car thread))))
8110 (incf gnus-newsgroup-expunged-tally)
8111 ;; We also mark as read here, if that's wanted.
8112 (setq gnus-newsgroup-unreads
8113 (delq number gnus-newsgroup-unreads))
8114 (if gnus-newsgroup-auto-expire
8115 (push number gnus-newsgroup-expirable)
8116 (push (cons number gnus-low-score-mark)
8117 gnus-newsgroup-reads)))
8118 ;; Go recursively through all subthreads.
8119 (mapcar 'gnus-expunge-thread (cdr thread)))
8121 ;; Summary article oriented commands
8123 (defun gnus-summary-refer-parent-article (n)
8124 "Refer parent article N times.
8125 If N is negative, go to ancestor -N instead.
8126 The difference between N and the number of articles fetched is returned."
8127 (interactive "p")
8128 (let ((skip 1)
8129 error header ref)
8130 (when (not (natnump n))
8131 (setq skip (abs n)
8132 n 1))
8133 (while (and (> n 0)
8134 (not error))
8135 (setq header (gnus-summary-article-header))
8136 (if (and (eq (mail-header-number header)
8137 (cdr gnus-article-current))
8138 (equal gnus-newsgroup-name
8139 (car gnus-article-current)))
8140 ;; If we try to find the parent of the currently
8141 ;; displayed article, then we take a look at the actual
8142 ;; References header, since this is slightly more
8143 ;; reliable than the References field we got from the
8144 ;; server.
8145 (save-excursion
8146 (set-buffer gnus-original-article-buffer)
8147 (nnheader-narrow-to-headers)
8148 (unless (setq ref (message-fetch-field "references"))
8149 (when (setq ref (message-fetch-field "in-reply-to"))
8150 (setq ref (gnus-extract-message-id-from-in-reply-to ref))))
8151 (widen))
8152 (setq ref
8153 ;; It's not the current article, so we take a bet on
8154 ;; the value we got from the server.
8155 (mail-header-references header)))
8156 (if (and ref
8157 (not (equal ref "")))
8158 (unless (gnus-summary-refer-article (gnus-parent-id ref skip))
8159 (gnus-message 1 "Couldn't find parent"))
8160 (gnus-message 1 "No references in article %d"
8161 (gnus-summary-article-number))
8162 (setq error t))
8163 (decf n))
8164 (gnus-summary-position-point)
8167 (defun gnus-summary-refer-references ()
8168 "Fetch all articles mentioned in the References header.
8169 Return the number of articles fetched."
8170 (interactive)
8171 (let ((ref (mail-header-references (gnus-summary-article-header)))
8172 (current (gnus-summary-article-number))
8173 (n 0))
8174 (if (or (not ref)
8175 (equal ref ""))
8176 (error "No References in the current article")
8177 ;; For each Message-ID in the References header...
8178 (while (string-match "<[^>]*>" ref)
8179 (incf n)
8180 ;; ... fetch that article.
8181 (gnus-summary-refer-article
8182 (prog1 (match-string 0 ref)
8183 (setq ref (substring ref (match-end 0))))))
8184 (gnus-summary-goto-subject current)
8185 (gnus-summary-position-point)
8186 n)))
8188 (defun gnus-summary-refer-thread (&optional limit)
8189 "Fetch all articles in the current thread.
8190 If LIMIT (the numerical prefix), fetch that many old headers instead
8191 of what's specified by the `gnus-refer-thread-limit' variable."
8192 (interactive "P")
8193 (let ((id (mail-header-id (gnus-summary-article-header)))
8194 (limit (if limit (prefix-numeric-value limit)
8195 gnus-refer-thread-limit)))
8196 (unless (eq gnus-fetch-old-headers 'invisible)
8197 (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name)
8198 ;; Retrieve the headers and read them in.
8199 (if (eq (if (numberp limit)
8200 (gnus-retrieve-headers
8201 (list (min
8202 (+ (mail-header-number
8203 (gnus-summary-article-header))
8204 limit)
8205 gnus-newsgroup-end))
8206 gnus-newsgroup-name (* limit 2))
8207 ;; gnus-refer-thread-limit is t, i.e. fetch _all_
8208 ;; headers.
8209 (gnus-retrieve-headers (list gnus-newsgroup-end)
8210 gnus-newsgroup-name limit))
8211 'nov)
8212 (gnus-build-all-threads)
8213 (error "Can't fetch thread from back ends that don't support NOV"))
8214 (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name))
8215 (gnus-summary-limit-include-thread id)))
8217 (defun gnus-summary-refer-article (message-id)
8218 "Fetch an article specified by MESSAGE-ID."
8219 (interactive "sMessage-ID: ")
8220 (when (and (stringp message-id)
8221 (not (zerop (length message-id))))
8222 (setq message-id (gnus-replace-in-string message-id " " ""))
8223 ;; Construct the correct Message-ID if necessary.
8224 ;; Suggested by tale@pawl.rpi.edu.
8225 (unless (string-match "^<" message-id)
8226 (setq message-id (concat "<" message-id)))
8227 (unless (string-match ">$" message-id)
8228 (setq message-id (concat message-id ">")))
8229 ;; People often post MIDs from URLs, so unhex it:
8230 (unless (string-match "@" message-id)
8231 (setq message-id (gnus-url-unhex-string message-id)))
8232 (let* ((header (gnus-id-to-header message-id))
8233 (sparse (and header
8234 (gnus-summary-article-sparse-p
8235 (mail-header-number header))
8236 (memq (mail-header-number header)
8237 gnus-newsgroup-limit)))
8238 number)
8239 (cond
8240 ;; If the article is present in the buffer we just go to it.
8241 ((and header
8242 (or (not (gnus-summary-article-sparse-p
8243 (mail-header-number header)))
8244 sparse))
8245 (prog1
8246 (gnus-summary-goto-article
8247 (mail-header-number header) nil t)
8248 (when sparse
8249 (gnus-summary-update-article (mail-header-number header)))))
8251 ;; We fetch the article.
8252 (catch 'found
8253 (dolist (gnus-override-method (gnus-refer-article-methods))
8254 (when (and (gnus-check-server gnus-override-method)
8255 ;; Fetch the header,
8256 (setq number (gnus-summary-insert-subject message-id)))
8257 ;; and display the article.
8258 (gnus-summary-select-article nil nil nil number)
8259 (throw 'found t)))
8260 (gnus-message 3 "Couldn't fetch article %s" message-id)))))))
8262 (defun gnus-refer-article-methods ()
8263 "Return a list of referable methods."
8264 (cond
8265 ;; No method, so we default to current and native.
8266 ((null gnus-refer-article-method)
8267 (list gnus-current-select-method gnus-select-method))
8268 ;; Current.
8269 ((eq 'current gnus-refer-article-method)
8270 (list gnus-current-select-method))
8271 ;; List of select methods.
8272 ((not (and (symbolp (car gnus-refer-article-method))
8273 (assq (car gnus-refer-article-method) nnoo-definition-alist)))
8274 (let (out)
8275 (dolist (method gnus-refer-article-method)
8276 (push (if (eq 'current method)
8277 gnus-current-select-method
8278 method)
8279 out))
8280 (nreverse out)))
8281 ;; One single select method.
8283 (list gnus-refer-article-method))))
8285 (defun gnus-summary-edit-parameters ()
8286 "Edit the group parameters of the current group."
8287 (interactive)
8288 (gnus-group-edit-group gnus-newsgroup-name 'params))
8290 (defun gnus-summary-customize-parameters ()
8291 "Customize the group parameters of the current group."
8292 (interactive)
8293 (gnus-group-customize gnus-newsgroup-name))
8295 (defun gnus-summary-enter-digest-group (&optional force)
8296 "Enter an nndoc group based on the current article.
8297 If FORCE, force a digest interpretation. If not, try
8298 to guess what the document format is."
8299 (interactive "P")
8300 (let ((conf gnus-current-window-configuration))
8301 (save-window-excursion
8302 (save-excursion
8303 (let (gnus-article-prepare-hook
8304 gnus-display-mime-function
8305 gnus-break-pages)
8306 (gnus-summary-select-article))))
8307 (setq gnus-current-window-configuration conf)
8308 (let* ((name (format "%s-%d"
8309 (gnus-group-prefixed-name
8310 gnus-newsgroup-name (list 'nndoc ""))
8311 (save-excursion
8312 (set-buffer gnus-summary-buffer)
8313 gnus-current-article)))
8314 (ogroup gnus-newsgroup-name)
8315 (params (append (gnus-info-params (gnus-get-info ogroup))
8316 (list (cons 'to-group ogroup))
8317 (list (cons 'parent-group ogroup))
8318 (list (cons 'save-article-group ogroup))))
8319 (case-fold-search t)
8320 (buf (current-buffer))
8321 dig to-address)
8322 (save-excursion
8323 (set-buffer gnus-original-article-buffer)
8324 ;; Have the digest group inherit the main mail address of
8325 ;; the parent article.
8326 (when (setq to-address (or (gnus-fetch-field "reply-to")
8327 (gnus-fetch-field "from")))
8328 (setq params (append
8329 (list (cons 'to-address
8330 (funcall gnus-decode-encoded-word-function
8331 to-address))))))
8332 (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*"))
8333 (insert-buffer-substring gnus-original-article-buffer)
8334 ;; Remove lines that may lead nndoc to misinterpret the
8335 ;; document type.
8336 (narrow-to-region
8337 (goto-char (point-min))
8338 (or (search-forward "\n\n" nil t) (point)))
8339 (goto-char (point-min))
8340 (delete-matching-lines "^Path:\\|^From ")
8341 (widen))
8342 (unwind-protect
8343 (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset)
8344 (gnus-newsgroup-ephemeral-ignored-charsets
8345 gnus-newsgroup-ignored-charsets))
8346 (gnus-group-read-ephemeral-group
8347 name `(nndoc ,name (nndoc-address ,(get-buffer dig))
8348 (nndoc-article-type
8349 ,(if force 'mbox 'guess)))
8350 t nil nil nil
8351 `((adapt-file . ,(gnus-score-file-name gnus-newsgroup-name
8352 "ADAPT")))))
8353 ;; Make all postings to this group go to the parent group.
8354 (nconc (gnus-info-params (gnus-get-info name))
8355 params)
8356 ;; Couldn't select this doc group.
8357 (switch-to-buffer buf)
8358 (gnus-set-global-variables)
8359 (gnus-configure-windows 'summary)
8360 (gnus-message 3 "Article couldn't be entered?"))
8361 (kill-buffer dig)))))
8363 (defun gnus-summary-read-document (n)
8364 "Open a new group based on the current article(s).
8365 This will allow you to read digests and other similar
8366 documents as newsgroups.
8367 Obeys the standard process/prefix convention."
8368 (interactive "P")
8369 (let* ((articles (gnus-summary-work-articles n))
8370 (ogroup gnus-newsgroup-name)
8371 (params (append (gnus-info-params (gnus-get-info ogroup))
8372 (list (cons 'to-group ogroup))))
8373 article group egroup groups vgroup)
8374 (while (setq article (pop articles))
8375 (setq group (format "%s-%d" gnus-newsgroup-name article))
8376 (gnus-summary-remove-process-mark article)
8377 (when (gnus-summary-display-article article)
8378 (save-excursion
8379 (with-temp-buffer
8380 (insert-buffer-substring gnus-original-article-buffer)
8381 ;; Remove some headers that may lead nndoc to make
8382 ;; the wrong guess.
8383 (message-narrow-to-head)
8384 (goto-char (point-min))
8385 (delete-matching-lines "^\\(Path\\):\\|^From ")
8386 (widen)
8387 (if (setq egroup
8388 (gnus-group-read-ephemeral-group
8389 group `(nndoc ,group (nndoc-address ,(current-buffer))
8390 (nndoc-article-type guess))
8391 t nil t))
8392 (progn
8393 ;; Make all postings to this group go to the parent group.
8394 (nconc (gnus-info-params (gnus-get-info egroup))
8395 params)
8396 (push egroup groups))
8397 ;; Couldn't select this doc group.
8398 (gnus-error 3 "Article couldn't be entered"))))))
8399 ;; Now we have selected all the documents.
8400 (cond
8401 ((not groups)
8402 (error "None of the articles could be interpreted as documents"))
8403 ((gnus-group-read-ephemeral-group
8404 (setq vgroup (format
8405 "nnvirtual:%s-%s" gnus-newsgroup-name
8406 (format-time-string "%Y%m%dT%H%M%S" (current-time))))
8407 `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups))
8409 (cons (current-buffer) 'summary)))
8411 (error "Couldn't select virtual nndoc group")))))
8413 (defun gnus-summary-isearch-article (&optional regexp-p)
8414 "Do incremental search forward on the current article.
8415 If REGEXP-P (the prefix) is non-nil, do regexp isearch."
8416 (interactive "P")
8417 (gnus-summary-select-article)
8418 (gnus-configure-windows 'article)
8419 (gnus-eval-in-buffer-window gnus-article-buffer
8420 (save-restriction
8421 (widen)
8422 (isearch-forward regexp-p))))
8424 (defun gnus-summary-search-article-forward (regexp &optional backward)
8425 "Search for an article containing REGEXP forward.
8426 If BACKWARD, search backward instead."
8427 (interactive
8428 (list (read-string
8429 (format "Search article %s (regexp%s): "
8430 (if current-prefix-arg "backward" "forward")
8431 (if gnus-last-search-regexp
8432 (concat ", default " gnus-last-search-regexp)
8433 "")))
8434 current-prefix-arg))
8435 (if (string-equal regexp "")
8436 (setq regexp (or gnus-last-search-regexp ""))
8437 (setq gnus-last-search-regexp regexp)
8438 (setq gnus-article-before-search gnus-current-article))
8439 ;; Intentionally set gnus-last-article.
8440 (setq gnus-last-article gnus-article-before-search)
8441 (let ((gnus-last-article gnus-last-article))
8442 (if (gnus-summary-search-article regexp backward)
8443 (gnus-summary-show-thread)
8444 (signal 'search-failed (list regexp)))))
8446 (defun gnus-summary-search-article-backward (regexp)
8447 "Search for an article containing REGEXP backward."
8448 (interactive
8449 (list (read-string
8450 (format "Search article backward (regexp%s): "
8451 (if gnus-last-search-regexp
8452 (concat ", default " gnus-last-search-regexp)
8453 "")))))
8454 (gnus-summary-search-article-forward regexp 'backward))
8456 (defun gnus-summary-search-article (regexp &optional backward)
8457 "Search for an article containing REGEXP.
8458 Optional argument BACKWARD means do search for backward.
8459 `gnus-select-article-hook' is not called during the search."
8460 ;; We have to require this here to make sure that the following
8461 ;; dynamic binding isn't shadowed by autoloading.
8462 (require 'gnus-async)
8463 (require 'gnus-art)
8464 (let ((gnus-select-article-hook nil) ;Disable hook.
8465 (gnus-article-prepare-hook nil)
8466 (gnus-mark-article-hook nil) ;Inhibit marking as read.
8467 (gnus-use-article-prefetch nil)
8468 (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay.
8469 (gnus-use-trees nil) ;Inhibit updating tree buffer.
8470 (gnus-visual nil)
8471 (gnus-keep-backlog nil)
8472 (gnus-break-pages nil)
8473 (gnus-summary-display-arrow nil)
8474 (gnus-updated-mode-lines nil)
8475 (gnus-auto-center-summary nil)
8476 (sum (current-buffer))
8477 (gnus-display-mime-function nil)
8478 (found nil)
8479 point)
8480 (gnus-save-hidden-threads
8481 (gnus-summary-select-article)
8482 (set-buffer gnus-article-buffer)
8483 (goto-char (window-point (get-buffer-window (current-buffer))))
8484 (when backward
8485 (forward-line -1))
8486 (while (not found)
8487 (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current))
8488 (if (if backward
8489 (re-search-backward regexp nil t)
8490 (re-search-forward regexp nil t))
8491 ;; We found the regexp.
8492 (progn
8493 (setq found 'found)
8494 (beginning-of-line)
8495 (set-window-start
8496 (get-buffer-window (current-buffer))
8497 (point))
8498 (forward-line 1)
8499 (set-window-point
8500 (get-buffer-window (current-buffer))
8501 (point))
8502 (set-buffer sum)
8503 (setq point (point)))
8504 ;; We didn't find it, so we go to the next article.
8505 (set-buffer sum)
8506 (setq found 'not)
8507 (while (eq found 'not)
8508 (if (not (if backward (gnus-summary-find-prev)
8509 (gnus-summary-find-next)))
8510 ;; No more articles.
8511 (setq found t)
8512 ;; Select the next article and adjust point.
8513 (unless (gnus-summary-article-sparse-p
8514 (gnus-summary-article-number))
8515 (setq found nil)
8516 (gnus-summary-select-article)
8517 (set-buffer gnus-article-buffer)
8518 (widen)
8519 (goto-char (if backward (point-max) (point-min))))))))
8520 (gnus-message 7 ""))
8521 ;; Return whether we found the regexp.
8522 (when (eq found 'found)
8523 (goto-char point)
8524 (gnus-summary-show-thread)
8525 (gnus-summary-goto-subject gnus-current-article)
8526 (gnus-summary-position-point)
8527 t)))
8529 (defun gnus-find-matching-articles (header regexp)
8530 "Return a list of all articles that match REGEXP on HEADER.
8531 This search includes all articles in the current group that Gnus has
8532 fetched headers for, whether they are displayed or not."
8533 (let ((articles nil)
8534 (func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))
8535 (case-fold-search t))
8536 (dolist (header gnus-newsgroup-headers)
8537 (when (string-match regexp (funcall func header))
8538 (push (mail-header-number header) articles)))
8539 (nreverse articles)))
8541 (defun gnus-summary-find-matching (header regexp &optional backward unread
8542 not-case-fold not-matching)
8543 "Return a list of all articles that match REGEXP on HEADER.
8544 The search stars on the current article and goes forwards unless
8545 BACKWARD is non-nil. If BACKWARD is `all', do all articles.
8546 If UNREAD is non-nil, only unread articles will
8547 be taken into consideration. If NOT-CASE-FOLD, case won't be folded
8548 in the comparisons. If NOT-MATCHING, return a list of all articles that
8549 not match REGEXP on HEADER."
8550 (let ((case-fold-search (not not-case-fold))
8551 articles d func)
8552 (if (consp header)
8553 (if (eq (car header) 'extra)
8554 (setq func
8555 `(lambda (h)
8556 (or (cdr (assq ',(cdr header) (mail-header-extra h)))
8557 "")))
8558 (error "%s is an invalid header" header))
8559 (unless (fboundp (intern (concat "mail-header-" header)))
8560 (error "%s is not a valid header" header))
8561 (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h))))
8562 (dolist (d (if (eq backward 'all)
8563 gnus-newsgroup-data
8564 (gnus-data-find-list
8565 (gnus-summary-article-number)
8566 (gnus-data-list backward))))
8567 (when (and (or (not unread) ; We want all articles...
8568 (gnus-data-unread-p d)) ; Or just unreads.
8569 (vectorp (gnus-data-header d)) ; It's not a pseudo.
8570 (if not-matching
8571 (not (string-match
8572 regexp
8573 (funcall func (gnus-data-header d))))
8574 (string-match regexp
8575 (funcall func (gnus-data-header d)))))
8576 (push (gnus-data-number d) articles))) ; Success!
8577 (nreverse articles)))
8579 (defun gnus-summary-execute-command (header regexp command &optional backward)
8580 "Search forward for an article whose HEADER matches REGEXP and execute COMMAND.
8581 If HEADER is an empty string (or nil), the match is done on the entire
8582 article. If BACKWARD (the prefix) is non-nil, search backward instead."
8583 (interactive
8584 (list (let ((completion-ignore-case t))
8585 (completing-read
8586 "Header name: "
8587 (mapcar (lambda (header) (list (format "%s" header)))
8588 (append
8589 '("Number" "Subject" "From" "Lines" "Date"
8590 "Message-ID" "Xref" "References" "Body")
8591 gnus-extra-headers))
8592 nil 'require-match))
8593 (read-string "Regexp: ")
8594 (read-key-sequence "Command: ")
8595 current-prefix-arg))
8596 (when (equal header "Body")
8597 (setq header ""))
8598 ;; Hidden thread subtrees must be searched as well.
8599 (gnus-summary-show-all-threads)
8600 ;; We don't want to change current point nor window configuration.
8601 (save-excursion
8602 (save-window-excursion
8603 (let (gnus-visual
8604 gnus-treat-strip-trailing-blank-lines
8605 gnus-treat-strip-leading-blank-lines
8606 gnus-treat-strip-multiple-blank-lines
8607 gnus-treat-hide-boring-headers
8608 gnus-treat-fold-newsgroups
8609 gnus-article-prepare-hook)
8610 (gnus-message 6 "Executing %s..." (key-description command))
8611 ;; We'd like to execute COMMAND interactively so as to give arguments.
8612 (gnus-execute header regexp
8613 `(call-interactively ',(key-binding command))
8614 backward)
8615 (gnus-message 6 "Executing %s...done" (key-description command))))))
8617 (defun gnus-summary-beginning-of-article ()
8618 "Scroll the article back to the beginning."
8619 (interactive)
8620 (gnus-summary-select-article)
8621 (gnus-configure-windows 'article)
8622 (gnus-eval-in-buffer-window gnus-article-buffer
8623 (widen)
8624 (goto-char (point-min))
8625 (when gnus-break-pages
8626 (gnus-narrow-to-page))))
8628 (defun gnus-summary-end-of-article ()
8629 "Scroll to the end of the article."
8630 (interactive)
8631 (gnus-summary-select-article)
8632 (gnus-configure-windows 'article)
8633 (gnus-eval-in-buffer-window gnus-article-buffer
8634 (widen)
8635 (goto-char (point-max))
8636 (recenter -3)
8637 (when gnus-break-pages
8638 (when (re-search-backward page-delimiter nil t)
8639 (narrow-to-region (match-end 0) (point-max)))
8640 (gnus-narrow-to-page))))
8642 (defun gnus-summary-print-truncate-and-quote (string &optional len)
8643 "Truncate to LEN and quote all \"(\"'s in STRING."
8644 (gnus-replace-in-string (if (and len (> (length string) len))
8645 (substring string 0 len)
8646 string)
8647 "[()]" "\\\\\\&"))
8649 (defun gnus-summary-print-article (&optional filename n)
8650 "Generate and print a PostScript image of the process-marked (mail) articles.
8652 If used interactively, print the current article if none are
8653 process-marked. With prefix arg, prompt the user for the name of the
8654 file to save in.
8656 When used from Lisp, accept two optional args FILENAME and N. N means
8657 to print the next N articles. If N is negative, print the N previous
8658 articles. If N is nil and articles have been marked with the process
8659 mark, print these instead.
8661 If the optional first argument FILENAME is nil, send the image to the
8662 printer. If FILENAME is a string, save the PostScript image in a file with
8663 that name. If FILENAME is a number, prompt the user for the name of the file
8664 to save in."
8665 (interactive (list (ps-print-preprint current-prefix-arg)))
8666 (dolist (article (gnus-summary-work-articles n))
8667 (gnus-summary-select-article nil nil 'pseudo article)
8668 (gnus-eval-in-buffer-window gnus-article-buffer
8669 (gnus-print-buffer))
8670 (gnus-summary-remove-process-mark article))
8671 (ps-despool filename))
8673 (defun gnus-print-buffer ()
8674 (let ((buffer (generate-new-buffer " *print*")))
8675 (unwind-protect
8676 (progn
8677 (copy-to-buffer buffer (point-min) (point-max))
8678 (set-buffer buffer)
8679 (gnus-remove-text-with-property 'gnus-decoration)
8680 (when (gnus-visual-p 'article-highlight 'highlight)
8681 ;; Copy-to-buffer doesn't copy overlay. So redo
8682 ;; highlight.
8683 (let ((gnus-article-buffer buffer))
8684 (gnus-article-highlight-citation t)
8685 (gnus-article-highlight-signature)
8686 (gnus-article-emphasize)
8687 (gnus-article-delete-invisible-text)))
8688 (let ((ps-left-header
8689 (list
8690 (concat "("
8691 (gnus-summary-print-truncate-and-quote
8692 (mail-header-subject gnus-current-headers)
8693 66) ")")
8694 (concat "("
8695 (gnus-summary-print-truncate-and-quote
8696 (mail-header-from gnus-current-headers)
8697 45) ")")))
8698 (ps-right-header
8699 (list
8700 "/pagenumberstring load"
8701 (concat "("
8702 (mail-header-date gnus-current-headers) ")"))))
8703 (gnus-run-hooks 'gnus-ps-print-hook)
8704 (save-excursion
8705 (if window-system
8706 (ps-spool-buffer-with-faces)
8707 (ps-spool-buffer)))))
8708 (kill-buffer buffer))))
8710 (defun gnus-summary-show-article (&optional arg)
8711 "Force redisplaying of the current article.
8712 If ARG (the prefix) is a number, show the article with the charset
8713 defined in `gnus-summary-show-article-charset-alist', or the charset
8714 input.
8715 If ARG (the prefix) is non-nil and not a number, show the raw article
8716 without any article massaging functions being run. Normally, the key
8717 strokes are `C-u g'."
8718 (interactive "P")
8719 (cond
8720 ((numberp arg)
8721 (gnus-summary-show-article t)
8722 (let ((gnus-newsgroup-charset
8723 (or (cdr (assq arg gnus-summary-show-article-charset-alist))
8724 (mm-read-coding-system
8725 "View as charset: " ;; actually it is coding system.
8726 (save-excursion
8727 (set-buffer gnus-article-buffer)
8728 (mm-detect-coding-region (point) (point-max))))))
8729 (gnus-newsgroup-ignored-charsets 'gnus-all))
8730 (gnus-summary-select-article nil 'force)
8731 (let ((deps gnus-newsgroup-dependencies)
8732 head header lines)
8733 (save-excursion
8734 (set-buffer gnus-original-article-buffer)
8735 (save-restriction
8736 (message-narrow-to-head)
8737 (setq head (buffer-string))
8738 (goto-char (point-min))
8739 (unless (re-search-forward "^lines:[ \t]\\([0-9]+\\)" nil t)
8740 (goto-char (point-max))
8741 (widen)
8742 (setq lines (1- (count-lines (point) (point-max))))))
8743 (with-temp-buffer
8744 (insert (format "211 %d Article retrieved.\n"
8745 (cdr gnus-article-current)))
8746 (insert head)
8747 (if lines (insert (format "Lines: %d\n" lines)))
8748 (insert ".\n")
8749 (let ((nntp-server-buffer (current-buffer)))
8750 (setq header (car (gnus-get-newsgroup-headers deps t))))))
8751 (gnus-data-set-header
8752 (gnus-data-find (cdr gnus-article-current))
8753 header)
8754 (gnus-summary-update-article-line
8755 (cdr gnus-article-current) header)
8756 (when (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
8757 (gnus-summary-update-secondary-mark (cdr gnus-article-current))))))
8758 ((not arg)
8759 ;; Select the article the normal way.
8760 (gnus-summary-select-article nil 'force))
8762 ;; We have to require this here to make sure that the following
8763 ;; dynamic binding isn't shadowed by autoloading.
8764 (require 'gnus-async)
8765 (require 'gnus-art)
8766 ;; Bind the article treatment functions to nil.
8767 (let ((gnus-have-all-headers t)
8768 gnus-article-prepare-hook
8769 gnus-article-decode-hook
8770 gnus-display-mime-function
8771 gnus-break-pages)
8772 ;; Destroy any MIME parts.
8773 (when (gnus-buffer-live-p gnus-article-buffer)
8774 (save-excursion
8775 (set-buffer gnus-article-buffer)
8776 (mm-destroy-parts gnus-article-mime-handles)
8777 ;; Set it to nil for safety reason.
8778 (setq gnus-article-mime-handle-alist nil)
8779 (setq gnus-article-mime-handles nil)))
8780 (gnus-summary-select-article nil 'force))))
8781 (gnus-summary-goto-subject gnus-current-article)
8782 (gnus-summary-position-point))
8784 (defun gnus-summary-show-raw-article ()
8785 "Show the raw article without any article massaging functions being run."
8786 (interactive)
8787 (gnus-summary-show-article t))
8789 (defun gnus-summary-verbose-headers (&optional arg)
8790 "Toggle permanent full header display.
8791 If ARG is a positive number, turn header display on.
8792 If ARG is a negative number, turn header display off."
8793 (interactive "P")
8794 (setq gnus-show-all-headers
8795 (cond ((or (not (numberp arg))
8796 (zerop arg))
8797 (not gnus-show-all-headers))
8798 ((natnump arg)
8799 t)))
8800 (gnus-summary-show-article))
8802 (defun gnus-summary-toggle-header (&optional arg)
8803 "Show the headers if they are hidden, or hide them if they are shown.
8804 If ARG is a positive number, show the entire header.
8805 If ARG is a negative number, hide the unwanted header lines."
8806 (interactive "P")
8807 (let ((window (and (gnus-buffer-live-p gnus-article-buffer)
8808 (get-buffer-window gnus-article-buffer t))))
8809 (with-current-buffer gnus-article-buffer
8810 (widen)
8811 (article-narrow-to-head)
8812 (let* ((buffer-read-only nil)
8813 (inhibit-point-motion-hooks t)
8814 (hidden (if (numberp arg)
8815 (>= arg 0)
8816 (or (not (looking-at "[^ \t\n]+:"))
8817 (gnus-article-hidden-text-p 'headers))))
8818 s e)
8819 (delete-region (point-min) (point-max))
8820 (with-current-buffer gnus-original-article-buffer
8821 (goto-char (setq s (point-min)))
8822 (setq e (if (search-forward "\n\n" nil t)
8823 (1- (point))
8824 (point-max))))
8825 (insert-buffer-substring gnus-original-article-buffer s e)
8826 (run-hooks 'gnus-article-decode-hook)
8827 (if hidden
8828 (let ((gnus-treat-hide-headers nil)
8829 (gnus-treat-hide-boring-headers nil))
8830 (gnus-delete-wash-type 'headers)
8831 (gnus-treat-article 'head))
8832 (gnus-treat-article 'head))
8833 (widen)
8834 (if window
8835 (set-window-start window (goto-char (point-min))))
8836 (if gnus-break-pages
8837 (gnus-narrow-to-page)
8838 (when (gnus-visual-p 'page-marker)
8839 (let ((buffer-read-only nil))
8840 (gnus-remove-text-with-property 'gnus-prev)
8841 (gnus-remove-text-with-property 'gnus-next))))
8842 (gnus-set-mode-line 'article)))))
8844 (defun gnus-summary-show-all-headers ()
8845 "Make all header lines visible."
8846 (interactive)
8847 (gnus-summary-toggle-header 1))
8849 (defun gnus-summary-caesar-message (&optional arg)
8850 "Caesar rotate the current article by 13.
8851 The numerical prefix specifies how many places to rotate each letter
8852 forward."
8853 (interactive "P")
8854 (gnus-summary-select-article)
8855 (let ((mail-header-separator ""))
8856 (gnus-eval-in-buffer-window gnus-article-buffer
8857 (save-restriction
8858 (widen)
8859 (let ((start (window-start))
8860 buffer-read-only)
8861 (message-caesar-buffer-body arg)
8862 (set-window-start (get-buffer-window (current-buffer)) start))))))
8864 (autoload 'unmorse-region "morse"
8865 "Convert morse coded text in region to ordinary ASCII text."
8868 (defun gnus-summary-morse-message (&optional arg)
8869 "Morse decode the current article."
8870 (interactive "P")
8871 (gnus-summary-select-article)
8872 (let ((mail-header-separator ""))
8873 (gnus-eval-in-buffer-window gnus-article-buffer
8874 (save-excursion
8875 (save-restriction
8876 (widen)
8877 (let ((pos (window-start))
8878 buffer-read-only)
8879 (goto-char (point-min))
8880 (when (message-goto-body)
8881 (gnus-narrow-to-body))
8882 (goto-char (point-min))
8883 (while (re-search-forward "·" (point-max) t)
8884 (replace-match "."))
8885 (unmorse-region (point-min) (point-max))
8886 (widen)
8887 (set-window-start (get-buffer-window (current-buffer)) pos)))))))
8889 (defun gnus-summary-stop-page-breaking ()
8890 "Stop page breaking in the current article."
8891 (interactive)
8892 (gnus-summary-select-article)
8893 (gnus-eval-in-buffer-window gnus-article-buffer
8894 (widen)
8895 (when (gnus-visual-p 'page-marker)
8896 (let ((buffer-read-only nil))
8897 (gnus-remove-text-with-property 'gnus-prev)
8898 (gnus-remove-text-with-property 'gnus-next))
8899 (setq gnus-page-broken nil))))
8901 (defun gnus-summary-move-article (&optional n to-newsgroup
8902 select-method action)
8903 "Move the current article to a different newsgroup.
8904 If N is a positive number, move the N next articles.
8905 If N is a negative number, move the N previous articles.
8906 If N is nil and any articles have been marked with the process mark,
8907 move those articles instead.
8908 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to.
8909 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
8910 re-spool using this method.
8912 When called interactively with TO-NEWSGROUP being nil, the value of
8913 the variable `gnus-move-split-methods' is used for finding a default
8914 for the target newsgroup.
8916 For this function to work, both the current newsgroup and the
8917 newsgroup that you want to move to have to support the `request-move'
8918 and `request-accept' functions.
8920 ACTION can be either `move' (the default), `crosspost' or `copy'."
8921 (interactive "P")
8922 (unless action
8923 (setq action 'move))
8924 ;; Check whether the source group supports the required functions.
8925 (cond ((and (eq action 'move)
8926 (not (gnus-check-backend-function
8927 'request-move-article gnus-newsgroup-name)))
8928 (error "The current group does not support article moving"))
8929 ((and (eq action 'crosspost)
8930 (not (gnus-check-backend-function
8931 'request-replace-article gnus-newsgroup-name)))
8932 (error "The current group does not support article editing")))
8933 (let ((articles (gnus-summary-work-articles n))
8934 (prefix (if (gnus-check-backend-function
8935 'request-move-article gnus-newsgroup-name)
8936 (gnus-group-real-prefix gnus-newsgroup-name)
8937 ""))
8938 (names '((move "Move" "Moving")
8939 (copy "Copy" "Copying")
8940 (crosspost "Crosspost" "Crossposting")))
8941 (copy-buf (save-excursion
8942 (nnheader-set-temp-buffer " *copy article*")))
8943 art-group to-method new-xref article to-groups)
8944 (unless (assq action names)
8945 (error "Unknown action %s" action))
8946 ;; Read the newsgroup name.
8947 (when (and (not to-newsgroup)
8948 (not select-method))
8949 (if (and gnus-move-split-methods
8950 (not
8951 (and (memq gnus-current-article articles)
8952 (gnus-buffer-live-p gnus-original-article-buffer))))
8953 ;; When `gnus-move-split-methods' is non-nil, we have to
8954 ;; select an article to give `gnus-read-move-group-name' an
8955 ;; opportunity to suggest an appropriate default. However,
8956 ;; we needn't render or mark the article.
8957 (let ((gnus-display-mime-function nil)
8958 (gnus-article-prepare-hook nil)
8959 (gnus-mark-article-hook nil))
8960 (gnus-summary-select-article nil nil nil (car articles))))
8961 (setq to-newsgroup
8962 (gnus-read-move-group-name
8963 (cadr (assq action names))
8964 (symbol-value (intern (format "gnus-current-%s-group" action)))
8965 articles prefix))
8966 (set (intern (format "gnus-current-%s-group" action)) to-newsgroup))
8967 (setq to-method (or select-method
8968 (gnus-server-to-method
8969 (gnus-group-method to-newsgroup))))
8970 ;; Check the method we are to move this article to...
8971 (unless (gnus-check-backend-function
8972 'request-accept-article (car to-method))
8973 (error "%s does not support article copying" (car to-method)))
8974 (unless (gnus-check-server to-method)
8975 (error "Can't open server %s" (car to-method)))
8976 (gnus-message 6 "%s to %s: %s..."
8977 (caddr (assq action names))
8978 (or (car select-method) to-newsgroup) articles)
8979 (while articles
8980 (setq article (pop articles))
8981 (setq
8982 art-group
8983 (cond
8984 ;; Move the article.
8985 ((eq action 'move)
8986 ;; Remove this article from future suppression.
8987 (gnus-dup-unsuppress-article article)
8988 (gnus-request-move-article
8989 article ; Article to move
8990 gnus-newsgroup-name ; From newsgroup
8991 (nth 1 (gnus-find-method-for-group
8992 gnus-newsgroup-name)) ; Server
8993 (list 'gnus-request-accept-article
8994 to-newsgroup (list 'quote select-method)
8995 (not articles) t) ; Accept form
8996 (not articles))) ; Only save nov last time
8997 ;; Copy the article.
8998 ((eq action 'copy)
8999 (save-excursion
9000 (set-buffer copy-buf)
9001 (when (gnus-request-article-this-buffer article gnus-newsgroup-name)
9002 (gnus-request-accept-article
9003 to-newsgroup select-method (not articles) t))))
9004 ;; Crosspost the article.
9005 ((eq action 'crosspost)
9006 (let ((xref (message-tokenize-header
9007 (mail-header-xref (gnus-summary-article-header article))
9008 " ")))
9009 (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name)
9010 ":" (number-to-string article)))
9011 (unless xref
9012 (setq xref (list (system-name))))
9013 (setq new-xref
9014 (concat
9015 (mapconcat 'identity
9016 (delete "Xref:" (delete new-xref xref))
9017 " ")
9018 " " new-xref))
9019 (save-excursion
9020 (set-buffer copy-buf)
9021 ;; First put the article in the destination group.
9022 (gnus-request-article-this-buffer article gnus-newsgroup-name)
9023 (when (consp (setq art-group
9024 (gnus-request-accept-article
9025 to-newsgroup select-method (not articles))))
9026 (setq new-xref (concat new-xref " " (car art-group)
9028 (number-to-string (cdr art-group))))
9029 ;; Now we have the new Xrefs header, so we insert
9030 ;; it and replace the new article.
9031 (nnheader-replace-header "Xref" new-xref)
9032 (gnus-request-replace-article
9033 (cdr art-group) to-newsgroup (current-buffer))
9034 art-group))))))
9035 (cond
9036 ((not art-group)
9037 (gnus-message 1 "Couldn't %s article %s: %s"
9038 (cadr (assq action names)) article
9039 (nnheader-get-report (car to-method))))
9040 ((eq art-group 'junk)
9041 (when (eq action 'move)
9042 (gnus-summary-mark-article article gnus-canceled-mark)
9043 (gnus-message 4 "Deleted article %s" article)
9044 ;; run the delete hook
9045 (run-hook-with-args 'gnus-summary-article-delete-hook
9046 action
9047 (gnus-data-header
9048 (assoc article (gnus-data-list nil)))
9049 gnus-newsgroup-name nil
9050 select-method)))
9052 (let* ((pto-group (gnus-group-prefixed-name
9053 (car art-group) to-method))
9054 (entry
9055 (gnus-gethash pto-group gnus-newsrc-hashtb))
9056 (info (nth 2 entry))
9057 (to-group (gnus-info-group info))
9058 to-marks)
9059 ;; Update the group that has been moved to.
9060 (when (and info
9061 (memq action '(move copy)))
9062 (unless (member to-group to-groups)
9063 (push to-group to-groups))
9065 (unless (memq article gnus-newsgroup-unreads)
9066 (push 'read to-marks)
9067 (gnus-info-set-read
9068 info (gnus-add-to-range (gnus-info-read info)
9069 (list (cdr art-group)))))
9071 ;; See whether the article is to be put in the cache.
9072 (let ((marks (if (gnus-group-auto-expirable-p to-group)
9073 gnus-article-mark-lists
9074 (delete '(expirable . expire)
9075 (copy-sequence gnus-article-mark-lists))))
9076 (to-article (cdr art-group)))
9078 ;; Enter the article into the cache in the new group,
9079 ;; if that is required.
9080 (when gnus-use-cache
9081 (gnus-cache-possibly-enter-article
9082 to-group to-article
9083 (memq article gnus-newsgroup-marked)
9084 (memq article gnus-newsgroup-dormant)
9085 (memq article gnus-newsgroup-unreads)))
9087 (when gnus-preserve-marks
9088 ;; Copy any marks over to the new group.
9089 (when (and (equal to-group gnus-newsgroup-name)
9090 (not (memq article gnus-newsgroup-unreads)))
9091 ;; Mark this article as read in this group.
9092 (push (cons to-article gnus-read-mark) gnus-newsgroup-reads)
9093 (setcdr (gnus-active to-group) to-article)
9094 (setcdr gnus-newsgroup-active to-article))
9096 (while marks
9097 (when (eq (gnus-article-mark-to-type (cdar marks)) 'list)
9098 (when (memq article (symbol-value
9099 (intern (format "gnus-newsgroup-%s"
9100 (caar marks)))))
9101 (push (cdar marks) to-marks)
9102 ;; If the other group is the same as this group,
9103 ;; then we have to add the mark to the list.
9104 (when (equal to-group gnus-newsgroup-name)
9105 (set (intern (format "gnus-newsgroup-%s" (caar marks)))
9106 (cons to-article
9107 (symbol-value
9108 (intern (format "gnus-newsgroup-%s"
9109 (caar marks)))))))
9110 ;; Copy the marks to other group.
9111 (gnus-add-marked-articles
9112 to-group (cdar marks) (list to-article) info)))
9113 (setq marks (cdr marks)))
9115 (gnus-request-set-mark
9116 to-group (list (list (list to-article) 'add to-marks))))
9118 (gnus-dribble-enter
9119 (concat "(gnus-group-set-info '"
9120 (gnus-prin1-to-string (gnus-get-info to-group))
9121 ")"))))
9123 ;; Update the Xref header in this article to point to
9124 ;; the new crossposted article we have just created.
9125 (when (eq action 'crosspost)
9126 (save-excursion
9127 (set-buffer copy-buf)
9128 (gnus-request-article-this-buffer article gnus-newsgroup-name)
9129 (nnheader-replace-header "Xref" new-xref)
9130 (gnus-request-replace-article
9131 article gnus-newsgroup-name (current-buffer))))
9133 ;; run the move/copy/crosspost/respool hook
9134 (run-hook-with-args 'gnus-summary-article-move-hook
9135 action
9136 (gnus-data-header
9137 (assoc article (gnus-data-list nil)))
9138 gnus-newsgroup-name
9139 to-newsgroup
9140 select-method))
9142 ;;;!!!Why is this necessary?
9143 (set-buffer gnus-summary-buffer)
9145 (gnus-summary-goto-subject article)
9146 (when (eq action 'move)
9147 (gnus-summary-mark-article article gnus-canceled-mark))))
9148 (gnus-summary-remove-process-mark article))
9149 ;; Re-activate all groups that have been moved to.
9150 (save-excursion
9151 (set-buffer gnus-group-buffer)
9152 (let ((gnus-group-marked to-groups))
9153 (gnus-group-get-new-news-this-group nil t)))
9155 (gnus-kill-buffer copy-buf)
9156 (gnus-summary-position-point)
9157 (gnus-set-mode-line 'summary)))
9159 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
9160 "Copy the current article to some other group.
9161 If TO-NEWSGROUP is string, do not prompt for a newsgroup to copy to.
9162 When called interactively, if TO-NEWSGROUP is nil, use the value of
9163 the variable `gnus-move-split-methods' for finding a default target
9164 newsgroup.
9165 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
9166 re-spool using this method."
9167 (interactive "P")
9168 (gnus-summary-move-article n to-newsgroup select-method 'copy))
9170 (defun gnus-summary-crosspost-article (&optional n)
9171 "Crosspost the current article to some other group."
9172 (interactive "P")
9173 (gnus-summary-move-article n nil nil 'crosspost))
9175 (defcustom gnus-summary-respool-default-method nil
9176 "Default method type for respooling an article.
9177 If nil, use to the current newsgroup method."
9178 :type 'symbol
9179 :group 'gnus-summary-mail)
9181 (defcustom gnus-summary-display-while-building nil
9182 "If non-nil, show and update the summary buffer as it's being built.
9183 If the value is t, update the buffer after every line is inserted. If
9184 the value is an integer (N), update the display every N lines."
9185 :version "22.1"
9186 :group 'gnus-thread
9187 :type '(choice (const :tag "off" nil)
9188 number
9189 (const :tag "frequently" t)))
9191 (defun gnus-summary-respool-article (&optional n method)
9192 "Respool the current article.
9193 The article will be squeezed through the mail spooling process again,
9194 which means that it will be put in some mail newsgroup or other
9195 depending on `nnmail-split-methods'.
9196 If N is a positive number, respool the N next articles.
9197 If N is a negative number, respool the N previous articles.
9198 If N is nil and any articles have been marked with the process mark,
9199 respool those articles instead.
9201 Respooling can be done both from mail groups and \"real\" newsgroups.
9202 In the former case, the articles in question will be moved from the
9203 current group into whatever groups they are destined to. In the
9204 latter case, they will be copied into the relevant groups."
9205 (interactive
9206 (list current-prefix-arg
9207 (let* ((methods (gnus-methods-using 'respool))
9208 (methname
9209 (symbol-name (or gnus-summary-respool-default-method
9210 (car (gnus-find-method-for-group
9211 gnus-newsgroup-name)))))
9212 (method
9213 (gnus-completing-read-with-default
9214 methname "What backend do you want to use when respooling?"
9215 methods nil t nil 'gnus-mail-method-history))
9217 (cond
9218 ((zerop (length (setq ms (gnus-servers-using-backend
9219 (intern method)))))
9220 (list (intern method) ""))
9221 ((= 1 (length ms))
9222 (car ms))
9224 (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms)))
9225 (cdr (assoc (completing-read "Server name: " ms-alist nil t)
9226 ms-alist))))))))
9227 (unless method
9228 (error "No method given for respooling"))
9229 (if (assoc (symbol-name
9230 (car (gnus-find-method-for-group gnus-newsgroup-name)))
9231 (gnus-methods-using 'respool))
9232 (gnus-summary-move-article n nil method)
9233 (gnus-summary-copy-article n nil method)))
9235 (defun gnus-summary-import-article (file &optional edit)
9236 "Import an arbitrary file into a mail newsgroup."
9237 (interactive "fImport file: \nP")
9238 (let ((group gnus-newsgroup-name)
9239 (now (current-time))
9240 atts lines group-art)
9241 (unless (gnus-check-backend-function 'request-accept-article group)
9242 (error "%s does not support article importing" group))
9243 (or (file-readable-p file)
9244 (not (file-regular-p file))
9245 (error "Can't read %s" file))
9246 (save-excursion
9247 (set-buffer (gnus-get-buffer-create " *import file*"))
9248 (erase-buffer)
9249 (nnheader-insert-file-contents file)
9250 (goto-char (point-min))
9251 (if (nnheader-article-p)
9252 (save-restriction
9253 (goto-char (point-min))
9254 (search-forward "\n\n" nil t)
9255 (narrow-to-region (point-min) (1- (point)))
9256 (goto-char (point-min))
9257 (unless (re-search-forward "^date:" nil t)
9258 (goto-char (point-max))
9259 (insert "Date: " (message-make-date (nth 5 atts)) "\n")))
9260 ;; This doesn't look like an article, so we fudge some headers.
9261 (setq atts (file-attributes file)
9262 lines (count-lines (point-min) (point-max)))
9263 (insert "From: " (read-string "From: ") "\n"
9264 "Subject: " (read-string "Subject: ") "\n"
9265 "Date: " (message-make-date (nth 5 atts)) "\n"
9266 "Message-ID: " (message-make-message-id) "\n"
9267 "Lines: " (int-to-string lines) "\n"
9268 "Chars: " (int-to-string (nth 7 atts)) "\n\n"))
9269 (setq group-art (gnus-request-accept-article group nil t))
9270 (kill-buffer (current-buffer)))
9271 (setq gnus-newsgroup-active (gnus-activate-group group))
9272 (forward-line 1)
9273 (gnus-summary-goto-article (cdr group-art) nil t)
9274 (when edit
9275 (gnus-summary-edit-article))))
9277 (defun gnus-summary-create-article ()
9278 "Create an article in a mail newsgroup."
9279 (interactive)
9280 (let ((group gnus-newsgroup-name)
9281 (now (current-time))
9282 group-art)
9283 (unless (gnus-check-backend-function 'request-accept-article group)
9284 (error "%s does not support article importing" group))
9285 (save-excursion
9286 (set-buffer (gnus-get-buffer-create " *import file*"))
9287 (erase-buffer)
9288 (goto-char (point-min))
9289 ;; This doesn't look like an article, so we fudge some headers.
9290 (insert "From: " (read-string "From: ") "\n"
9291 "Subject: " (read-string "Subject: ") "\n"
9292 "Date: " (message-make-date now) "\n"
9293 "Message-ID: " (message-make-message-id) "\n")
9294 (setq group-art (gnus-request-accept-article group nil t))
9295 (kill-buffer (current-buffer)))
9296 (setq gnus-newsgroup-active (gnus-activate-group group))
9297 (forward-line 1)
9298 (gnus-summary-goto-article (cdr group-art) nil t)
9299 (gnus-summary-edit-article)))
9301 (defun gnus-summary-article-posted-p ()
9302 "Say whether the current (mail) article is available from news as well.
9303 This will be the case if the article has both been mailed and posted."
9304 (interactive)
9305 (let ((id (mail-header-references (gnus-summary-article-header)))
9306 (gnus-override-method (car (gnus-refer-article-methods))))
9307 (if (gnus-request-head id "")
9308 (gnus-message 2 "The current message was found on %s"
9309 gnus-override-method)
9310 (gnus-message 2 "The current message couldn't be found on %s"
9311 gnus-override-method)
9312 nil)))
9314 (defun gnus-summary-expire-articles (&optional now)
9315 "Expire all articles that are marked as expirable in the current group."
9316 (interactive)
9317 (when (and (not gnus-group-is-exiting-without-update-p)
9318 (gnus-check-backend-function
9319 'request-expire-articles gnus-newsgroup-name))
9320 ;; This backend supports expiry.
9321 (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name))
9322 (expirable (if total
9323 (progn
9324 ;; We need to update the info for
9325 ;; this group for `gnus-list-of-read-articles'
9326 ;; to give us the right answer.
9327 (gnus-run-hooks 'gnus-exit-group-hook)
9328 (gnus-summary-update-info)
9329 (gnus-list-of-read-articles gnus-newsgroup-name))
9330 (setq gnus-newsgroup-expirable
9331 (sort gnus-newsgroup-expirable '<))))
9332 (expiry-wait (if now 'immediate
9333 (gnus-group-find-parameter
9334 gnus-newsgroup-name 'expiry-wait)))
9335 (nnmail-expiry-target
9336 (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target)
9337 nnmail-expiry-target))
9339 (when expirable
9340 ;; There are expirable articles in this group, so we run them
9341 ;; through the expiry process.
9342 (gnus-message 6 "Expiring articles...")
9343 (unless (gnus-check-group gnus-newsgroup-name)
9344 (error "Can't open server for %s" gnus-newsgroup-name))
9345 ;; The list of articles that weren't expired is returned.
9346 (save-excursion
9347 (if expiry-wait
9348 (let ((nnmail-expiry-wait-function nil)
9349 (nnmail-expiry-wait expiry-wait))
9350 (setq es (gnus-request-expire-articles
9351 expirable gnus-newsgroup-name)))
9352 (setq es (gnus-request-expire-articles
9353 expirable gnus-newsgroup-name)))
9354 (unless total
9355 (setq gnus-newsgroup-expirable es))
9356 ;; We go through the old list of expirable, and mark all
9357 ;; really expired articles as nonexistent.
9358 (unless (eq es expirable) ;If nothing was expired, we don't mark.
9359 (let ((gnus-use-cache nil))
9360 (dolist (article expirable)
9361 (when (and (not (memq article es))
9362 (gnus-data-find article))
9363 (gnus-summary-mark-article article gnus-canceled-mark)
9364 (run-hook-with-args 'gnus-summary-article-expire-hook
9365 'delete
9366 (gnus-data-header
9367 (assoc article (gnus-data-list nil)))
9368 gnus-newsgroup-name
9370 nil))))))
9371 (gnus-message 6 "Expiring articles...done")))))
9373 (defun gnus-summary-expire-articles-now ()
9374 "Expunge all expirable articles in the current group.
9375 This means that *all* articles that are marked as expirable will be
9376 deleted forever, right now."
9377 (interactive)
9378 (or gnus-expert-user
9379 (gnus-yes-or-no-p
9380 "Are you really, really, really sure you want to delete all these messages? ")
9381 (error "Phew!"))
9382 (gnus-summary-expire-articles t))
9384 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
9385 (defun gnus-summary-delete-article (&optional n)
9386 "Delete the N next (mail) articles.
9387 This command actually deletes articles. This is not a marking
9388 command. The article will disappear forever from your life, never to
9389 return.
9391 If N is negative, delete backwards.
9392 If N is nil and articles have been marked with the process mark,
9393 delete these instead.
9395 If `gnus-novice-user' is non-nil you will be asked for
9396 confirmation before the articles are deleted."
9397 (interactive "P")
9398 (unless (gnus-check-backend-function 'request-expire-articles
9399 gnus-newsgroup-name)
9400 (error "The current newsgroup does not support article deletion"))
9401 (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
9402 (error "Couldn't open server"))
9403 ;; Compute the list of articles to delete.
9404 (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<))
9405 (nnmail-expiry-target 'delete)
9406 not-deleted)
9407 (if (and gnus-novice-user
9408 (not (gnus-yes-or-no-p
9409 (format "Do you really want to delete %s forever? "
9410 (if (> (length articles) 1)
9411 (format "these %s articles" (length articles))
9412 "this article")))))
9414 ;; Delete the articles.
9415 (setq not-deleted (gnus-request-expire-articles
9416 articles gnus-newsgroup-name 'force))
9417 (while articles
9418 (gnus-summary-remove-process-mark (car articles))
9419 ;; The backend might not have been able to delete the article
9420 ;; after all.
9421 (unless (memq (car articles) not-deleted)
9422 (gnus-summary-mark-article (car articles) gnus-canceled-mark))
9423 (let* ((article (car articles))
9424 (id (mail-header-id (gnus-data-header
9425 (assoc article (gnus-data-list nil))))))
9426 (run-hook-with-args 'gnus-summary-article-delete-hook
9427 'delete id gnus-newsgroup-name nil
9428 nil))
9429 (setq articles (cdr articles)))
9430 (when not-deleted
9431 (gnus-message 4 "Couldn't delete articles %s" not-deleted)))
9432 (gnus-summary-position-point)
9433 (gnus-set-mode-line 'summary)
9434 not-deleted))
9436 (defun gnus-summary-edit-article (&optional arg)
9437 "Edit the current article.
9438 This will have permanent effect only in mail groups.
9439 If ARG is nil, edit the decoded articles.
9440 If ARG is 1, edit the raw articles.
9441 If ARG is 2, edit the raw articles even in read-only groups.
9442 If ARG is 3, edit the articles with the current handles.
9443 Otherwise, allow editing of articles even in read-only
9444 groups."
9445 (interactive "P")
9446 (let (force raw current-handles)
9447 (cond
9448 ((null arg))
9449 ((eq arg 1)
9450 (setq raw t))
9451 ((eq arg 2)
9452 (setq raw t
9453 force t))
9454 ((eq arg 3)
9455 (setq current-handles
9456 (and (gnus-buffer-live-p gnus-article-buffer)
9457 (with-current-buffer gnus-article-buffer
9458 (prog1
9459 gnus-article-mime-handles
9460 (setq gnus-article-mime-handles nil))))))
9462 (setq force t)))
9463 (when (and raw (not force)
9464 (member gnus-newsgroup-name '("nndraft:delayed"
9465 "nndraft:drafts"
9466 "nndraft:queue")))
9467 (error "Can't edit the raw article in group %s"
9468 gnus-newsgroup-name))
9469 (save-excursion
9470 (set-buffer gnus-summary-buffer)
9471 (let ((mail-parse-charset gnus-newsgroup-charset)
9472 (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets))
9473 (gnus-set-global-variables)
9474 (when (and (not force)
9475 (gnus-group-read-only-p))
9476 (error "The current newsgroup does not support article editing"))
9477 (gnus-summary-show-article t)
9478 (when (and (not raw) (gnus-buffer-live-p gnus-article-buffer))
9479 (with-current-buffer gnus-article-buffer
9480 (mm-enable-multibyte)))
9481 (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
9482 (setq raw t))
9483 (gnus-article-edit-article
9484 (if raw 'ignore
9485 `(lambda ()
9486 (let ((mbl mml-buffer-list))
9487 (setq mml-buffer-list nil)
9488 (mime-to-mml ,'current-handles)
9489 (let ((mbl1 mml-buffer-list))
9490 (setq mml-buffer-list mbl)
9491 (set (make-local-variable 'mml-buffer-list) mbl1))
9492 (gnus-make-local-hook 'kill-buffer-hook)
9493 (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))))
9494 `(lambda (no-highlight)
9495 (let ((mail-parse-charset ',gnus-newsgroup-charset)
9496 (message-options message-options)
9497 (message-options-set-recipient)
9498 (mail-parse-ignored-charsets
9499 ',gnus-newsgroup-ignored-charsets))
9500 ,(if (not raw) '(progn
9501 (mml-to-mime)
9502 (mml-destroy-buffers)
9503 (remove-hook 'kill-buffer-hook
9504 'mml-destroy-buffers t)
9505 (kill-local-variable 'mml-buffer-list)))
9506 (gnus-summary-edit-article-done
9507 ,(or (mail-header-references gnus-current-headers) "")
9508 ,(gnus-group-read-only-p)
9509 ,gnus-summary-buffer no-highlight))))))))
9511 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit)
9513 (defun gnus-summary-edit-article-done (&optional references read-only buffer
9514 no-highlight)
9515 "Make edits to the current article permanent."
9516 (interactive)
9517 (save-excursion
9518 ;; The buffer restriction contains the entire article if it exists.
9519 (when (article-goto-body)
9520 (let ((lines (count-lines (point) (point-max)))
9521 (length (- (point-max) (point)))
9522 (case-fold-search t)
9523 (body (copy-marker (point))))
9524 (goto-char (point-min))
9525 (when (re-search-forward "^content-length:[ \t]\\([0-9]+\\)" body t)
9526 (delete-region (match-beginning 1) (match-end 1))
9527 (insert (number-to-string length)))
9528 (goto-char (point-min))
9529 (when (re-search-forward
9530 "^x-content-length:[ \t]\\([0-9]+\\)" body t)
9531 (delete-region (match-beginning 1) (match-end 1))
9532 (insert (number-to-string length)))
9533 (goto-char (point-min))
9534 (when (re-search-forward "^lines:[ \t]\\([0-9]+\\)" body t)
9535 (delete-region (match-beginning 1) (match-end 1))
9536 (insert (number-to-string lines))))))
9537 ;; Replace the article.
9538 (let ((buf (current-buffer)))
9539 (with-temp-buffer
9540 (insert-buffer-substring buf)
9542 (if (and (not read-only)
9543 (not (gnus-request-replace-article
9544 (cdr gnus-article-current) (car gnus-article-current)
9545 (current-buffer) t)))
9546 (error "Couldn't replace article")
9547 ;; Update the summary buffer.
9548 (if (and references
9549 (equal (message-tokenize-header references " ")
9550 (message-tokenize-header
9551 (or (message-fetch-field "references") "") " ")))
9552 ;; We only have to update this line.
9553 (save-excursion
9554 (save-restriction
9555 (message-narrow-to-head)
9556 (let ((head (buffer-string))
9557 header)
9558 (with-temp-buffer
9559 (insert (format "211 %d Article retrieved.\n"
9560 (cdr gnus-article-current)))
9561 (insert head)
9562 (insert ".\n")
9563 (let ((nntp-server-buffer (current-buffer)))
9564 (setq header (car (gnus-get-newsgroup-headers
9565 nil t))))
9566 (save-excursion
9567 (set-buffer gnus-summary-buffer)
9568 (gnus-data-set-header
9569 (gnus-data-find (cdr gnus-article-current))
9570 header)
9571 (gnus-summary-update-article-line
9572 (cdr gnus-article-current) header)
9573 (if (gnus-summary-goto-subject
9574 (cdr gnus-article-current) nil t)
9575 (gnus-summary-update-secondary-mark
9576 (cdr gnus-article-current))))))))
9577 ;; Update threads.
9578 (set-buffer (or buffer gnus-summary-buffer))
9579 (gnus-summary-update-article (cdr gnus-article-current))
9580 (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
9581 (gnus-summary-update-secondary-mark
9582 (cdr gnus-article-current))))
9583 ;; Prettify the article buffer again.
9584 (unless no-highlight
9585 (save-excursion
9586 (set-buffer gnus-article-buffer)
9587 ;;;!!! Fix this -- article should be rehighlighted.
9588 ;;;(gnus-run-hooks 'gnus-article-display-hook)
9589 (set-buffer gnus-original-article-buffer)
9590 (gnus-request-article
9591 (cdr gnus-article-current)
9592 (car gnus-article-current) (current-buffer))))
9593 ;; Prettify the summary buffer line.
9594 (when (gnus-visual-p 'summary-highlight 'highlight)
9595 (gnus-run-hooks 'gnus-visual-mark-article-hook))))))
9597 (defun gnus-summary-edit-wash (key)
9598 "Perform editing command KEY in the article buffer."
9599 (interactive
9600 (list
9601 (progn
9602 (message "%s" (concat (this-command-keys) "- "))
9603 (read-char))))
9604 (message "")
9605 (gnus-summary-edit-article)
9606 (execute-kbd-macro (concat (this-command-keys) key))
9607 (gnus-article-edit-done))
9609 ;;; Respooling
9611 (defun gnus-summary-respool-query (&optional silent trace)
9612 "Query where the respool algorithm would put this article."
9613 (interactive)
9614 (let (gnus-mark-article-hook)
9615 (gnus-summary-select-article)
9616 (save-excursion
9617 (set-buffer gnus-original-article-buffer)
9618 (let ((groups (nnmail-article-group 'identity trace)))
9619 (unless silent
9620 (if groups
9621 (message "This message would go to %s"
9622 (mapconcat 'car groups ", "))
9623 (message "This message would go to no groups"))
9624 groups)))))
9626 (defun gnus-summary-respool-trace ()
9627 "Trace where the respool algorithm would put this article.
9628 Display a buffer showing all fancy splitting patterns which matched."
9629 (interactive)
9630 (gnus-summary-respool-query nil t))
9632 ;; Summary marking commands.
9634 (defun gnus-summary-kill-same-subject-and-select (&optional unmark)
9635 "Mark articles which has the same subject as read, and then select the next.
9636 If UNMARK is positive, remove any kind of mark.
9637 If UNMARK is negative, tick articles."
9638 (interactive "P")
9639 (when unmark
9640 (setq unmark (prefix-numeric-value unmark)))
9641 (let ((count
9642 (gnus-summary-mark-same-subject
9643 (gnus-summary-article-subject) unmark)))
9644 ;; Select next unread article. If auto-select-same mode, should
9645 ;; select the first unread article.
9646 (gnus-summary-next-article t (and gnus-auto-select-same
9647 (gnus-summary-article-subject)))
9648 (gnus-message 7 "%d article%s marked as %s"
9649 count (if (= count 1) " is" "s are")
9650 (if unmark "unread" "read"))))
9652 (defun gnus-summary-kill-same-subject (&optional unmark)
9653 "Mark articles which has the same subject as read.
9654 If UNMARK is positive, remove any kind of mark.
9655 If UNMARK is negative, tick articles."
9656 (interactive "P")
9657 (when unmark
9658 (setq unmark (prefix-numeric-value unmark)))
9659 (let ((count
9660 (gnus-summary-mark-same-subject
9661 (gnus-summary-article-subject) unmark)))
9662 ;; If marked as read, go to next unread subject.
9663 (when (null unmark)
9664 ;; Go to next unread subject.
9665 (gnus-summary-next-subject 1 t))
9666 (gnus-message 7 "%d articles are marked as %s"
9667 count (if unmark "unread" "read"))))
9669 (defun gnus-summary-mark-same-subject (subject &optional unmark)
9670 "Mark articles with same SUBJECT as read, and return marked number.
9671 If optional argument UNMARK is positive, remove any kinds of marks.
9672 If optional argument UNMARK is negative, mark articles as unread instead."
9673 (let ((count 1))
9674 (save-excursion
9675 (cond
9676 ((null unmark) ; Mark as read.
9677 (while (and
9678 (progn
9679 (gnus-summary-mark-article-as-read gnus-killed-mark)
9680 (gnus-summary-show-thread) t)
9681 (gnus-summary-find-subject subject))
9682 (setq count (1+ count))))
9683 ((> unmark 0) ; Tick.
9684 (while (and
9685 (progn
9686 (gnus-summary-mark-article-as-unread gnus-ticked-mark)
9687 (gnus-summary-show-thread) t)
9688 (gnus-summary-find-subject subject))
9689 (setq count (1+ count))))
9690 (t ; Mark as unread.
9691 (while (and
9692 (progn
9693 (gnus-summary-mark-article-as-unread gnus-unread-mark)
9694 (gnus-summary-show-thread) t)
9695 (gnus-summary-find-subject subject))
9696 (setq count (1+ count)))))
9697 (gnus-set-mode-line 'summary)
9698 ;; Return the number of marked articles.
9699 count)))
9701 (defun gnus-summary-mark-as-processable (n &optional unmark)
9702 "Set the process mark on the next N articles.
9703 If N is negative, mark backward instead. If UNMARK is non-nil, remove
9704 the process mark instead. The difference between N and the actual
9705 number of articles marked is returned."
9706 (interactive "P")
9707 (if (and (null n) (gnus-region-active-p))
9708 (gnus-uu-mark-region (region-beginning) (region-end) unmark)
9709 (setq n (prefix-numeric-value n))
9710 (let ((backward (< n 0))
9711 (n (abs n)))
9712 (while (and
9713 (> n 0)
9714 (if unmark
9715 (gnus-summary-remove-process-mark
9716 (gnus-summary-article-number))
9717 (gnus-summary-set-process-mark (gnus-summary-article-number)))
9718 (zerop (gnus-summary-next-subject (if backward -1 1) nil t)))
9719 (setq n (1- n)))
9720 (when (/= 0 n)
9721 (gnus-message 7 "No more articles"))
9722 (gnus-summary-recenter)
9723 (gnus-summary-position-point)
9724 n)))
9726 (defun gnus-summary-unmark-as-processable (n)
9727 "Remove the process mark from the next N articles.
9728 If N is negative, unmark backward instead. The difference between N and
9729 the actual number of articles unmarked is returned."
9730 (interactive "P")
9731 (gnus-summary-mark-as-processable n t))
9733 (defun gnus-summary-unmark-all-processable ()
9734 "Remove the process mark from all articles."
9735 (interactive)
9736 (save-excursion
9737 (while gnus-newsgroup-processable
9738 (gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
9739 (gnus-summary-position-point))
9741 (defun gnus-summary-add-mark (article type)
9742 "Mark ARTICLE with a mark of TYPE."
9743 (let ((vtype (car (assq type gnus-article-mark-lists)))
9744 var)
9745 (if (not vtype)
9746 (error "No such mark type: %s" type)
9747 (setq var (intern (format "gnus-newsgroup-%s" type)))
9748 (set var (cons article (symbol-value var)))
9749 (if (memq type '(processable cached replied forwarded recent saved))
9750 (gnus-summary-update-secondary-mark article)
9751 ;;; !!! This is bogus. We should find out what primary
9752 ;;; !!! mark we want to set.
9753 (gnus-summary-update-mark gnus-del-mark 'unread)))))
9755 (defun gnus-summary-mark-as-expirable (n)
9756 "Mark N articles forward as expirable.
9757 If N is negative, mark backward instead. The difference between N and
9758 the actual number of articles marked is returned."
9759 (interactive "p")
9760 (gnus-summary-mark-forward n gnus-expirable-mark))
9762 (defun gnus-summary-mark-as-spam (n)
9763 "Mark N articles forward as spam.
9764 If N is negative, mark backward instead. The difference between N and
9765 the actual number of articles marked is returned."
9766 (interactive "p")
9767 (gnus-summary-mark-forward n gnus-spam-mark))
9769 (defun gnus-summary-mark-article-as-replied (article)
9770 "Mark ARTICLE as replied to and update the summary line.
9771 ARTICLE can also be a list of articles."
9772 (interactive (list (gnus-summary-article-number)))
9773 (let ((articles (if (listp article) article (list article))))
9774 (dolist (article articles)
9775 (unless (numberp article)
9776 (error "%s is not a number" article))
9777 (push article gnus-newsgroup-replied)
9778 (let ((buffer-read-only nil))
9779 (when (gnus-summary-goto-subject article nil t)
9780 (gnus-summary-update-secondary-mark article))))))
9782 (defun gnus-summary-mark-article-as-forwarded (article)
9783 "Mark ARTICLE as forwarded and update the summary line.
9784 ARTICLE can also be a list of articles."
9785 (let ((articles (if (listp article) article (list article))))
9786 (dolist (article articles)
9787 (push article gnus-newsgroup-forwarded)
9788 (let ((buffer-read-only nil))
9789 (when (gnus-summary-goto-subject article nil t)
9790 (gnus-summary-update-secondary-mark article))))))
9792 (defun gnus-summary-set-bookmark (article)
9793 "Set a bookmark in current article."
9794 (interactive (list (gnus-summary-article-number)))
9795 (when (or (not (get-buffer gnus-article-buffer))
9796 (not gnus-current-article)
9797 (not gnus-article-current)
9798 (not (equal gnus-newsgroup-name (car gnus-article-current))))
9799 (error "No current article selected"))
9800 ;; Remove old bookmark, if one exists.
9801 (gnus-pull article gnus-newsgroup-bookmarks)
9802 ;; Set the new bookmark, which is on the form
9803 ;; (article-number . line-number-in-body).
9804 (push
9805 (cons article
9806 (save-excursion
9807 (set-buffer gnus-article-buffer)
9808 (count-lines
9809 (min (point)
9810 (save-excursion
9811 (article-goto-body)
9812 (point)))
9813 (point))))
9814 gnus-newsgroup-bookmarks)
9815 (gnus-message 6 "A bookmark has been added to the current article."))
9817 (defun gnus-summary-remove-bookmark (article)
9818 "Remove the bookmark from the current article."
9819 (interactive (list (gnus-summary-article-number)))
9820 ;; Remove old bookmark, if one exists.
9821 (if (not (assq article gnus-newsgroup-bookmarks))
9822 (gnus-message 6 "No bookmark in current article.")
9823 (gnus-pull article gnus-newsgroup-bookmarks)
9824 (gnus-message 6 "Removed bookmark.")))
9826 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
9827 (defun gnus-summary-mark-as-dormant (n)
9828 "Mark N articles forward as dormant.
9829 If N is negative, mark backward instead. The difference between N and
9830 the actual number of articles marked is returned."
9831 (interactive "p")
9832 (gnus-summary-mark-forward n gnus-dormant-mark))
9834 (defun gnus-summary-set-process-mark (article)
9835 "Set the process mark on ARTICLE and update the summary line."
9836 (setq gnus-newsgroup-processable
9837 (cons article
9838 (delq article gnus-newsgroup-processable)))
9839 (when (gnus-summary-goto-subject article)
9840 (gnus-summary-show-thread)
9841 (gnus-summary-goto-subject article)
9842 (gnus-summary-update-secondary-mark article)))
9844 (defun gnus-summary-remove-process-mark (article)
9845 "Remove the process mark from ARTICLE and update the summary line."
9846 (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
9847 (when (gnus-summary-goto-subject article)
9848 (gnus-summary-show-thread)
9849 (gnus-summary-goto-subject article)
9850 (gnus-summary-update-secondary-mark article)))
9852 (defun gnus-summary-set-saved-mark (article)
9853 "Set the process mark on ARTICLE and update the summary line."
9854 (push article gnus-newsgroup-saved)
9855 (when (gnus-summary-goto-subject article)
9856 (gnus-summary-update-secondary-mark article)))
9858 (defun gnus-summary-mark-forward (n &optional mark no-expire)
9859 "Mark N articles as read forwards.
9860 If N is negative, mark backwards instead. Mark with MARK, ?r by default.
9861 The difference between N and the actual number of articles marked is
9862 returned.
9863 If NO-EXPIRE, auto-expiry will be inhibited."
9864 (interactive "p")
9865 (gnus-summary-show-thread)
9866 (let ((backward (< n 0))
9867 (gnus-summary-goto-unread
9868 (and gnus-summary-goto-unread
9869 (not (eq gnus-summary-goto-unread 'never))
9870 (not (memq mark (list gnus-unread-mark gnus-spam-mark
9871 gnus-ticked-mark gnus-dormant-mark)))))
9872 (n (abs n))
9873 (mark (or mark gnus-del-mark)))
9874 (while (and (> n 0)
9875 (gnus-summary-mark-article nil mark no-expire)
9876 (zerop (gnus-summary-next-subject
9877 (if backward -1 1)
9878 (and gnus-summary-goto-unread
9879 (not (eq gnus-summary-goto-unread 'never)))
9880 t)))
9881 (setq n (1- n)))
9882 (when (/= 0 n)
9883 (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
9884 (gnus-summary-recenter)
9885 (gnus-summary-position-point)
9886 (gnus-set-mode-line 'summary)
9889 (defun gnus-summary-mark-article-as-read (mark)
9890 "Mark the current article quickly as read with MARK."
9891 (let ((article (gnus-summary-article-number)))
9892 (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
9893 (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9894 (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
9895 (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9896 (push (cons article mark) gnus-newsgroup-reads)
9897 ;; Possibly remove from cache, if that is used.
9898 (when gnus-use-cache
9899 (gnus-cache-enter-remove-article article))
9900 ;; Allow the backend to change the mark.
9901 (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9902 ;; Check for auto-expiry.
9903 (when (and gnus-newsgroup-auto-expire
9904 (memq mark gnus-auto-expirable-marks))
9905 (setq mark gnus-expirable-mark)
9906 ;; Let the backend know about the mark change.
9907 (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9908 (push article gnus-newsgroup-expirable))
9909 ;; Set the mark in the buffer.
9910 (gnus-summary-update-mark mark 'unread)
9913 (defun gnus-summary-mark-article-as-unread (mark)
9914 "Mark the current article quickly as unread with MARK."
9915 (let* ((article (gnus-summary-article-number))
9916 (old-mark (gnus-summary-article-mark article)))
9917 ;; Allow the backend to change the mark.
9918 (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9919 (if (eq mark old-mark)
9921 (if (<= article 0)
9922 (progn
9923 (gnus-error 1 "Can't mark negative article numbers")
9924 nil)
9925 (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
9926 (setq gnus-newsgroup-spam-marked
9927 (delq article gnus-newsgroup-spam-marked))
9928 (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
9929 (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))
9930 (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads))
9931 (cond ((= mark gnus-ticked-mark)
9932 (setq gnus-newsgroup-marked
9933 (gnus-add-to-sorted-list gnus-newsgroup-marked
9934 article)))
9935 ((= mark gnus-spam-mark)
9936 (setq gnus-newsgroup-spam-marked
9937 (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
9938 article)))
9939 ((= mark gnus-dormant-mark)
9940 (setq gnus-newsgroup-dormant
9941 (gnus-add-to-sorted-list gnus-newsgroup-dormant
9942 article)))
9944 (setq gnus-newsgroup-unreads
9945 (gnus-add-to-sorted-list gnus-newsgroup-unreads
9946 article))))
9947 (gnus-pull article gnus-newsgroup-reads)
9949 ;; See whether the article is to be put in the cache.
9950 (and gnus-use-cache
9951 (vectorp (gnus-summary-article-header article))
9952 (save-excursion
9953 (gnus-cache-possibly-enter-article
9954 gnus-newsgroup-name article
9955 (= mark gnus-ticked-mark)
9956 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
9958 ;; Fix the mark.
9959 (gnus-summary-update-mark mark 'unread)
9960 t))))
9962 (defun gnus-summary-mark-article (&optional article mark no-expire)
9963 "Mark ARTICLE with MARK. MARK can be any character.
9964 Four MARK strings are reserved: `? ' (unread), `?!' (ticked),
9965 `??' (dormant) and `?E' (expirable).
9966 If MARK is nil, then the default character `?r' is used.
9967 If ARTICLE is nil, then the article on the current line will be
9968 marked.
9969 If NO-EXPIRE, auto-expiry will be inhibited."
9970 ;; The mark might be a string.
9971 (when (stringp mark)
9972 (setq mark (aref mark 0)))
9973 ;; If no mark is given, then we check auto-expiring.
9974 (when (null mark)
9975 (setq mark gnus-del-mark))
9976 (when (and (not no-expire)
9977 gnus-newsgroup-auto-expire
9978 (memq mark gnus-auto-expirable-marks))
9979 (setq mark gnus-expirable-mark))
9980 (let ((article (or article (gnus-summary-article-number)))
9981 (old-mark (gnus-summary-article-mark article)))
9982 ;; Allow the backend to change the mark.
9983 (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark))
9984 (if (eq mark old-mark)
9986 (unless article
9987 (error "No article on current line"))
9988 (if (not (if (or (= mark gnus-unread-mark)
9989 (= mark gnus-ticked-mark)
9990 (= mark gnus-spam-mark)
9991 (= mark gnus-dormant-mark))
9992 (gnus-mark-article-as-unread article mark)
9993 (gnus-mark-article-as-read article mark)))
9995 ;; See whether the article is to be put in the cache.
9996 (and gnus-use-cache
9997 (not (= mark gnus-canceled-mark))
9998 (vectorp (gnus-summary-article-header article))
9999 (save-excursion
10000 (gnus-cache-possibly-enter-article
10001 gnus-newsgroup-name article
10002 (= mark gnus-ticked-mark)
10003 (= mark gnus-dormant-mark) (= mark gnus-unread-mark))))
10005 (when (gnus-summary-goto-subject article nil t)
10006 (let ((buffer-read-only nil))
10007 (gnus-summary-show-thread)
10008 ;; Fix the mark.
10009 (gnus-summary-update-mark mark 'unread)
10010 t))))))
10012 (defun gnus-summary-update-secondary-mark (article)
10013 "Update the secondary (read, process, cache) mark."
10014 (gnus-summary-update-mark
10015 (cond ((memq article gnus-newsgroup-processable)
10016 gnus-process-mark)
10017 ((memq article gnus-newsgroup-cached)
10018 gnus-cached-mark)
10019 ((memq article gnus-newsgroup-replied)
10020 gnus-replied-mark)
10021 ((memq article gnus-newsgroup-forwarded)
10022 gnus-forwarded-mark)
10023 ((memq article gnus-newsgroup-saved)
10024 gnus-saved-mark)
10025 ((memq article gnus-newsgroup-recent)
10026 gnus-recent-mark)
10027 ((memq article gnus-newsgroup-unseen)
10028 gnus-unseen-mark)
10029 (t gnus-no-mark))
10030 'replied)
10031 (when (gnus-visual-p 'summary-highlight 'highlight)
10032 (gnus-run-hooks 'gnus-summary-update-hook))
10035 (defun gnus-summary-update-download-mark (article)
10036 "Update the download mark."
10037 (gnus-summary-update-mark
10038 (cond ((memq article gnus-newsgroup-undownloaded)
10039 gnus-undownloaded-mark)
10040 (gnus-newsgroup-agentized
10041 gnus-downloaded-mark)
10043 gnus-no-mark))
10044 'download)
10045 (gnus-summary-update-line t)
10048 (defun gnus-summary-update-mark (mark type)
10049 (let ((forward (cdr (assq type gnus-summary-mark-positions)))
10050 (buffer-read-only nil))
10051 (re-search-backward "[\n\r]" (gnus-point-at-bol) 'move-to-limit)
10052 (when forward
10053 (when (looking-at "\r")
10054 (incf forward))
10055 (when (<= (+ forward (point)) (point-max))
10056 ;; Go to the right position on the line.
10057 (goto-char (+ forward (point)))
10058 ;; Replace the old mark with the new mark.
10059 (subst-char-in-region (point) (1+ (point)) (char-after) mark)
10060 ;; Optionally update the marks by some user rule.
10061 (when (eq type 'unread)
10062 (gnus-data-set-mark
10063 (gnus-data-find (gnus-summary-article-number)) mark)
10064 (gnus-summary-update-line (eq mark gnus-unread-mark)))))))
10066 (defun gnus-mark-article-as-read (article &optional mark)
10067 "Enter ARTICLE in the pertinent lists and remove it from others."
10068 ;; Make the article expirable.
10069 (let ((mark (or mark gnus-del-mark)))
10070 (setq gnus-newsgroup-expirable
10071 (if (= mark gnus-expirable-mark)
10072 (gnus-add-to-sorted-list gnus-newsgroup-expirable article)
10073 (delq article gnus-newsgroup-expirable)))
10074 ;; Remove from unread and marked lists.
10075 (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10076 (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
10077 (setq gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked))
10078 (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant))
10079 (push (cons article mark) gnus-newsgroup-reads)
10080 ;; Possibly remove from cache, if that is used.
10081 (when gnus-use-cache
10082 (gnus-cache-enter-remove-article article))
10085 (defun gnus-mark-article-as-unread (article &optional mark)
10086 "Enter ARTICLE in the pertinent lists and remove it from others."
10087 (let ((mark (or mark gnus-ticked-mark)))
10088 (if (<= article 0)
10089 (progn
10090 (gnus-error 1 "Can't mark negative article numbers")
10091 nil)
10092 (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
10093 gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked)
10094 gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)
10095 gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)
10096 gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads))
10098 ;; Unsuppress duplicates?
10099 (when gnus-suppress-duplicates
10100 (gnus-dup-unsuppress-article article))
10102 (cond ((= mark gnus-ticked-mark)
10103 (setq gnus-newsgroup-marked
10104 (gnus-add-to-sorted-list gnus-newsgroup-marked article)))
10105 ((= mark gnus-spam-mark)
10106 (setq gnus-newsgroup-spam-marked
10107 (gnus-add-to-sorted-list gnus-newsgroup-spam-marked
10108 article)))
10109 ((= mark gnus-dormant-mark)
10110 (setq gnus-newsgroup-dormant
10111 (gnus-add-to-sorted-list gnus-newsgroup-dormant article)))
10113 (setq gnus-newsgroup-unreads
10114 (gnus-add-to-sorted-list gnus-newsgroup-unreads article))))
10115 (gnus-pull article gnus-newsgroup-reads)
10116 t)))
10118 (defalias 'gnus-summary-mark-as-unread-forward
10119 'gnus-summary-tick-article-forward)
10120 (make-obsolete 'gnus-summary-mark-as-unread-forward
10121 'gnus-summary-tick-article-forward)
10122 (defun gnus-summary-tick-article-forward (n)
10123 "Tick N articles forwards.
10124 If N is negative, tick backwards instead.
10125 The difference between N and the number of articles ticked is returned."
10126 (interactive "p")
10127 (gnus-summary-mark-forward n gnus-ticked-mark))
10129 (defalias 'gnus-summary-mark-as-unread-backward
10130 'gnus-summary-tick-article-backward)
10131 (make-obsolete 'gnus-summary-mark-as-unread-backward
10132 'gnus-summary-tick-article-backward)
10133 (defun gnus-summary-tick-article-backward (n)
10134 "Tick N articles backwards.
10135 The difference between N and the number of articles ticked is returned."
10136 (interactive "p")
10137 (gnus-summary-mark-forward (- n) gnus-ticked-mark))
10139 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10140 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article)
10141 (defun gnus-summary-tick-article (&optional article clear-mark)
10142 "Mark current article as unread.
10143 Optional 1st argument ARTICLE specifies article number to be marked as unread.
10144 Optional 2nd argument CLEAR-MARK remove any kinds of mark."
10145 (interactive)
10146 (gnus-summary-mark-article article (if clear-mark gnus-unread-mark
10147 gnus-ticked-mark)))
10149 (defun gnus-summary-mark-as-read-forward (n)
10150 "Mark N articles as read forwards.
10151 If N is negative, mark backwards instead.
10152 The difference between N and the actual number of articles marked is
10153 returned."
10154 (interactive "p")
10155 (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire))
10157 (defun gnus-summary-mark-as-read-backward (n)
10158 "Mark the N articles as read backwards.
10159 The difference between N and the actual number of articles marked is
10160 returned."
10161 (interactive "p")
10162 (gnus-summary-mark-forward
10163 (- n) gnus-del-mark gnus-inhibit-user-auto-expire))
10165 (defun gnus-summary-mark-as-read (&optional article mark)
10166 "Mark current article as read.
10167 ARTICLE specifies the article to be marked as read.
10168 MARK specifies a string to be inserted at the beginning of the line."
10169 (gnus-summary-mark-article article mark))
10171 (defun gnus-summary-clear-mark-forward (n)
10172 "Clear marks from N articles forward.
10173 If N is negative, clear backward instead.
10174 The difference between N and the number of marks cleared is returned."
10175 (interactive "p")
10176 (gnus-summary-mark-forward n gnus-unread-mark))
10178 (defun gnus-summary-clear-mark-backward (n)
10179 "Clear marks from N articles backward.
10180 The difference between N and the number of marks cleared is returned."
10181 (interactive "p")
10182 (gnus-summary-mark-forward (- n) gnus-unread-mark))
10184 (defun gnus-summary-mark-unread-as-read ()
10185 "Intended to be used by `gnus-summary-mark-article-hook'."
10186 (when (memq gnus-current-article gnus-newsgroup-unreads)
10187 (gnus-summary-mark-article gnus-current-article gnus-read-mark)))
10189 (defun gnus-summary-mark-read-and-unread-as-read (&optional new-mark)
10190 "Intended to be used by `gnus-summary-mark-article-hook'."
10191 (let ((mark (gnus-summary-article-mark)))
10192 (when (or (gnus-unread-mark-p mark)
10193 (gnus-read-mark-p mark))
10194 (gnus-summary-mark-article gnus-current-article
10195 (or new-mark gnus-read-mark)))))
10197 (defun gnus-summary-mark-current-read-and-unread-as-read (&optional new-mark)
10198 "Intended to be used by `gnus-summary-mark-article-hook'."
10199 (let ((mark (gnus-summary-article-mark)))
10200 (when (or (gnus-unread-mark-p mark)
10201 (gnus-read-mark-p mark))
10202 (gnus-summary-mark-article (gnus-summary-article-number)
10203 (or new-mark gnus-read-mark)))))
10205 (defun gnus-summary-mark-unread-as-ticked ()
10206 "Intended to be used by `gnus-summary-mark-article-hook'."
10207 (when (memq gnus-current-article gnus-newsgroup-unreads)
10208 (gnus-summary-mark-article gnus-current-article gnus-ticked-mark)))
10210 (defun gnus-summary-mark-region-as-read (point mark all)
10211 "Mark all unread articles between point and mark as read.
10212 If given a prefix, mark all articles between point and mark as read,
10213 even ticked and dormant ones."
10214 (interactive "r\nP")
10215 (save-excursion
10216 (let (article)
10217 (goto-char point)
10218 (beginning-of-line)
10219 (while (and
10220 (< (point) mark)
10221 (progn
10222 (when (or all
10223 (memq (setq article (gnus-summary-article-number))
10224 gnus-newsgroup-unreads))
10225 (gnus-summary-mark-article article gnus-del-mark))
10227 (gnus-summary-find-next))))))
10229 (defun gnus-summary-mark-below (score mark)
10230 "Mark articles with score less than SCORE with MARK."
10231 (interactive "P\ncMark: ")
10232 (setq score (if score
10233 (prefix-numeric-value score)
10234 (or gnus-summary-default-score 0)))
10235 (save-excursion
10236 (set-buffer gnus-summary-buffer)
10237 (goto-char (point-min))
10238 (while
10239 (progn
10240 (and (< (gnus-summary-article-score) score)
10241 (gnus-summary-mark-article nil mark))
10242 (gnus-summary-find-next)))))
10244 (defun gnus-summary-kill-below (&optional score)
10245 "Mark articles with score below SCORE as read."
10246 (interactive "P")
10247 (gnus-summary-mark-below score gnus-killed-mark))
10249 (defun gnus-summary-clear-above (&optional score)
10250 "Clear all marks from articles with score above SCORE."
10251 (interactive "P")
10252 (gnus-summary-mark-above score gnus-unread-mark))
10254 (defun gnus-summary-tick-above (&optional score)
10255 "Tick all articles with score above SCORE."
10256 (interactive "P")
10257 (gnus-summary-mark-above score gnus-ticked-mark))
10259 (defun gnus-summary-mark-above (score mark)
10260 "Mark articles with score over SCORE with MARK."
10261 (interactive "P\ncMark: ")
10262 (setq score (if score
10263 (prefix-numeric-value score)
10264 (or gnus-summary-default-score 0)))
10265 (save-excursion
10266 (set-buffer gnus-summary-buffer)
10267 (goto-char (point-min))
10268 (while (and (progn
10269 (when (> (gnus-summary-article-score) score)
10270 (gnus-summary-mark-article nil mark))
10272 (gnus-summary-find-next)))))
10274 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
10275 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged)
10276 (defun gnus-summary-limit-include-expunged (&optional no-error)
10277 "Display all the hidden articles that were expunged for low scores."
10278 (interactive)
10279 (let ((buffer-read-only nil))
10280 (let ((scored gnus-newsgroup-scored)
10281 headers h)
10282 (while scored
10283 (unless (gnus-summary-article-header (caar scored))
10284 (and (setq h (gnus-number-to-header (caar scored)))
10285 (< (cdar scored) gnus-summary-expunge-below)
10286 (push h headers)))
10287 (setq scored (cdr scored)))
10288 (if (not headers)
10289 (when (not no-error)
10290 (error "No expunged articles hidden"))
10291 (goto-char (point-min))
10292 (push gnus-newsgroup-limit gnus-newsgroup-limits)
10293 (setq gnus-newsgroup-limit (copy-sequence gnus-newsgroup-limit))
10294 (mapcar (lambda (x) (push (mail-header-number x)
10295 gnus-newsgroup-limit))
10296 headers)
10297 (gnus-summary-prepare-unthreaded (nreverse headers))
10298 (goto-char (point-min))
10299 (gnus-summary-position-point)
10300 t))))
10302 (defun gnus-summary-catchup (&optional all quietly to-here not-mark reverse)
10303 "Mark all unread articles in this newsgroup as read.
10304 If prefix argument ALL is non-nil, ticked and dormant articles will
10305 also be marked as read.
10306 If QUIETLY is non-nil, no questions will be asked.
10308 If TO-HERE is non-nil, it should be a point in the buffer. All
10309 articles before (after, if REVERSE is set) this point will be marked
10310 as read.
10312 Note that this function will only catch up the unread article
10313 in the current summary buffer limitation.
10315 The number of articles marked as read is returned."
10316 (interactive "P")
10317 (prog1
10318 (save-excursion
10319 (when (or quietly
10320 (not gnus-interactive-catchup) ;Without confirmation?
10321 gnus-expert-user
10322 (gnus-y-or-n-p
10323 (if all
10324 "Mark absolutely all articles as read? "
10325 "Mark all unread articles as read? ")))
10326 (if (and not-mark
10327 (not gnus-newsgroup-adaptive)
10328 (not gnus-newsgroup-auto-expire)
10329 (not gnus-suppress-duplicates)
10330 (or (not gnus-use-cache)
10331 (eq gnus-use-cache 'passive)))
10332 (progn
10333 (when all
10334 (setq gnus-newsgroup-marked nil
10335 gnus-newsgroup-spam-marked nil
10336 gnus-newsgroup-dormant nil))
10337 (setq gnus-newsgroup-unreads
10338 (gnus-sorted-nunion
10339 (gnus-intersection gnus-newsgroup-unreads
10340 gnus-newsgroup-downloadable)
10341 gnus-newsgroup-unfetched)))
10342 ;; We actually mark all articles as canceled, which we
10343 ;; have to do when using auto-expiry or adaptive scoring.
10344 (gnus-summary-show-all-threads)
10345 (if (and to-here reverse)
10346 (progn
10347 (goto-char to-here)
10348 (gnus-summary-mark-current-read-and-unread-as-read
10349 gnus-catchup-mark)
10350 (while (gnus-summary-find-next (not all))
10351 (gnus-summary-mark-article-as-read gnus-catchup-mark)))
10352 (when (gnus-summary-first-subject (not all))
10353 (while (and
10354 (if to-here (< (point) to-here) t)
10355 (gnus-summary-mark-article-as-read gnus-catchup-mark)
10356 (gnus-summary-find-next (not all))))))
10357 (gnus-set-mode-line 'summary))
10359 (gnus-summary-position-point)))
10361 (defun gnus-summary-catchup-to-here (&optional all)
10362 "Mark all unticked articles before the current one as read.
10363 If ALL is non-nil, also mark ticked and dormant articles as read."
10364 (interactive "P")
10365 (save-excursion
10366 (gnus-save-hidden-threads
10367 (let ((beg (point)))
10368 ;; We check that there are unread articles.
10369 (when (or all (gnus-summary-find-prev))
10370 (gnus-summary-catchup all t beg)))))
10371 (gnus-summary-position-point))
10373 (defun gnus-summary-catchup-from-here (&optional all)
10374 "Mark all unticked articles after (and including) the current one as read.
10375 If ALL is non-nil, also mark ticked and dormant articles as read."
10376 (interactive "P")
10377 (save-excursion
10378 (gnus-save-hidden-threads
10379 (let ((beg (point)))
10380 ;; We check that there are unread articles.
10381 (when (or all (gnus-summary-find-next))
10382 (gnus-summary-catchup all t beg nil t)))))
10383 (gnus-summary-position-point))
10385 (defun gnus-summary-catchup-all (&optional quietly)
10386 "Mark all articles in this newsgroup as read.
10387 This command is dangerous. Normally, you want \\[gnus-summary-catchup]
10388 instead, which marks only unread articles as read."
10389 (interactive "P")
10390 (gnus-summary-catchup t quietly))
10392 (defun gnus-summary-catchup-and-exit (&optional all quietly)
10393 "Mark all unread articles in this group as read, then exit.
10394 If prefix argument ALL is non-nil, all articles are marked as read.
10395 If QUIETLY is non-nil, no questions will be asked."
10396 (interactive "P")
10397 (when (gnus-summary-catchup all quietly nil 'fast)
10398 ;; Select next newsgroup or exit.
10399 (if (and (not (gnus-group-quit-config gnus-newsgroup-name))
10400 (eq gnus-auto-select-next 'quietly))
10401 (gnus-summary-next-group nil)
10402 (gnus-summary-exit))))
10404 (defun gnus-summary-catchup-all-and-exit (&optional quietly)
10405 "Mark all articles in this newsgroup as read, and then exit.
10406 This command is dangerous. Normally, you want \\[gnus-summary-catchup-and-exit]
10407 instead, which marks only unread articles as read."
10408 (interactive "P")
10409 (gnus-summary-catchup-and-exit t quietly))
10411 (defun gnus-summary-catchup-and-goto-next-group (&optional all)
10412 "Mark all articles in this group as read and select the next group.
10413 If given a prefix, mark all articles, unread as well as ticked, as
10414 read."
10415 (interactive "P")
10416 (save-excursion
10417 (gnus-summary-catchup all))
10418 (gnus-summary-next-group))
10421 ;;; with article
10424 (defmacro gnus-with-article (article &rest forms)
10425 "Select ARTICLE and perform FORMS in the original article buffer.
10426 Then replace the article with the result."
10427 `(progn
10428 ;; We don't want the article to be marked as read.
10429 (let (gnus-mark-article-hook)
10430 (gnus-summary-select-article t t nil ,article))
10431 (set-buffer gnus-original-article-buffer)
10432 ,@forms
10433 (if (not (gnus-check-backend-function
10434 'request-replace-article (car gnus-article-current)))
10435 (gnus-message 5 "Read-only group; not replacing")
10436 (unless (gnus-request-replace-article
10437 ,article (car gnus-article-current)
10438 (current-buffer) t)
10439 (error "Couldn't replace article")))
10440 ;; The cache and backlog have to be flushed somewhat.
10441 (when gnus-keep-backlog
10442 (gnus-backlog-remove-article
10443 (car gnus-article-current) (cdr gnus-article-current)))
10444 (when gnus-use-cache
10445 (gnus-cache-update-article
10446 (car gnus-article-current) (cdr gnus-article-current)))))
10448 (put 'gnus-with-article 'lisp-indent-function 1)
10449 (put 'gnus-with-article 'edebug-form-spec '(form body))
10451 ;; Thread-based commands.
10453 (defun gnus-summary-articles-in-thread (&optional article)
10454 "Return a list of all articles in the current thread.
10455 If ARTICLE is non-nil, return all articles in the thread that starts
10456 with that article."
10457 (let* ((article (or article (gnus-summary-article-number)))
10458 (data (gnus-data-find-list article))
10459 (top-level (gnus-data-level (car data)))
10460 (top-subject
10461 (cond ((null gnus-thread-operation-ignore-subject)
10462 (gnus-simplify-subject-re
10463 (mail-header-subject (gnus-data-header (car data)))))
10464 ((eq gnus-thread-operation-ignore-subject 'fuzzy)
10465 (gnus-simplify-subject-fuzzy
10466 (mail-header-subject (gnus-data-header (car data)))))
10467 (t nil)))
10468 (end-point (save-excursion
10469 (if (gnus-summary-go-to-next-thread)
10470 (point) (point-max))))
10471 articles)
10472 (while (and data
10473 (< (gnus-data-pos (car data)) end-point))
10474 (when (or (not top-subject)
10475 (string= top-subject
10476 (if (eq gnus-thread-operation-ignore-subject 'fuzzy)
10477 (gnus-simplify-subject-fuzzy
10478 (mail-header-subject
10479 (gnus-data-header (car data))))
10480 (gnus-simplify-subject-re
10481 (mail-header-subject
10482 (gnus-data-header (car data)))))))
10483 (push (gnus-data-number (car data)) articles))
10484 (unless (and (setq data (cdr data))
10485 (> (gnus-data-level (car data)) top-level))
10486 (setq data nil)))
10487 ;; Return the list of articles.
10488 (nreverse articles)))
10490 (defun gnus-summary-rethread-current ()
10491 "Rethread the thread the current article is part of."
10492 (interactive)
10493 (let* ((gnus-show-threads t)
10494 (article (gnus-summary-article-number))
10495 (id (mail-header-id (gnus-summary-article-header)))
10496 (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id)))))
10497 (unless id
10498 (error "No article on the current line"))
10499 (gnus-rebuild-thread id)
10500 (gnus-summary-goto-subject article)))
10502 (defun gnus-summary-reparent-thread ()
10503 "Make the current article child of the marked (or previous) article.
10505 Note that the re-threading will only work if `gnus-thread-ignore-subject'
10506 is non-nil or the Subject: of both articles are the same."
10507 (interactive)
10508 (unless (not (gnus-group-read-only-p))
10509 (error "The current newsgroup does not support article editing"))
10510 (unless (<= (length gnus-newsgroup-processable) 1)
10511 (error "No more than one article may be marked"))
10512 (save-window-excursion
10513 (let ((gnus-article-buffer " *reparent*")
10514 (current-article (gnus-summary-article-number))
10515 ;; First grab the marked article, otherwise one line up.
10516 (parent-article (if (not (null gnus-newsgroup-processable))
10517 (car gnus-newsgroup-processable)
10518 (save-excursion
10519 (if (eq (forward-line -1) 0)
10520 (gnus-summary-article-number)
10521 (error "Beginning of summary buffer"))))))
10522 (unless (not (eq current-article parent-article))
10523 (error "An article may not be self-referential"))
10524 (let ((message-id (mail-header-id
10525 (gnus-summary-article-header parent-article))))
10526 (unless (and message-id (not (equal message-id "")))
10527 (error "No message-id in desired parent"))
10528 (gnus-with-article current-article
10529 (save-restriction
10530 (goto-char (point-min))
10531 (message-narrow-to-head)
10532 (if (re-search-forward "^References: " nil t)
10533 (progn
10534 (re-search-forward "^[^ \t]" nil t)
10535 (forward-line -1)
10536 (end-of-line)
10537 (insert " " message-id))
10538 (insert "References: " message-id "\n"))))
10539 (set-buffer gnus-summary-buffer)
10540 (gnus-summary-unmark-all-processable)
10541 (gnus-summary-update-article current-article)
10542 (if (gnus-summary-goto-subject (cdr gnus-article-current) nil t)
10543 (gnus-summary-update-secondary-mark (cdr gnus-article-current)))
10544 (gnus-summary-rethread-current)
10545 (gnus-message 3 "Article %d is now the child of article %d"
10546 current-article parent-article)))))
10548 (defun gnus-summary-toggle-threads (&optional arg)
10549 "Toggle showing conversation threads.
10550 If ARG is positive number, turn showing conversation threads on."
10551 (interactive "P")
10552 (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end)))
10553 (setq gnus-show-threads
10554 (if (null arg) (not gnus-show-threads)
10555 (> (prefix-numeric-value arg) 0)))
10556 (gnus-summary-prepare)
10557 (gnus-summary-goto-subject current)
10558 (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off"))
10559 (gnus-summary-position-point)))
10561 (defun gnus-summary-show-all-threads ()
10562 "Show all threads."
10563 (interactive)
10564 (save-excursion
10565 (let ((buffer-read-only nil))
10566 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)))
10567 (gnus-summary-position-point))
10569 (defun gnus-summary-show-thread ()
10570 "Show thread subtrees.
10571 Returns nil if no thread was there to be shown."
10572 (interactive)
10573 (let ((buffer-read-only nil)
10574 (orig (point))
10575 (end (gnus-point-at-eol))
10576 ;; Leave point at bol
10577 (beg (progn (beginning-of-line) (point))))
10578 (prog1
10579 ;; Any hidden lines here?
10580 (search-forward "\r" end t)
10581 (subst-char-in-region beg end ?\^M ?\n t)
10582 (goto-char orig)
10583 (gnus-summary-position-point))))
10585 (defun gnus-summary-maybe-hide-threads ()
10586 "If requested, hide the threads that should be hidden."
10587 (when (and gnus-show-threads
10588 gnus-thread-hide-subtree)
10589 (gnus-summary-hide-all-threads
10590 (if (or (consp gnus-thread-hide-subtree)
10591 (functionp gnus-thread-hide-subtree))
10592 (gnus-make-predicate gnus-thread-hide-subtree)
10593 nil))))
10595 ;;; Hiding predicates.
10597 (defun gnus-article-unread-p (header)
10598 (memq (mail-header-number header) gnus-newsgroup-unreads))
10600 (defun gnus-article-unseen-p (header)
10601 (memq (mail-header-number header) gnus-newsgroup-unseen))
10603 (defun gnus-map-articles (predicate articles)
10604 "Map PREDICATE over ARTICLES and return non-nil if any predicate is non-nil."
10605 (apply 'gnus-or (mapcar predicate
10606 (mapcar 'gnus-summary-article-header articles))))
10608 (defun gnus-summary-hide-all-threads (&optional predicate)
10609 "Hide all thread subtrees.
10610 If PREDICATE is supplied, threads that satisfy this predicate
10611 will not be hidden."
10612 (interactive)
10613 (save-excursion
10614 (goto-char (point-min))
10615 (let ((end nil))
10616 (while (not end)
10617 (when (or (not predicate)
10618 (gnus-map-articles
10619 predicate (gnus-summary-article-children)))
10620 (gnus-summary-hide-thread))
10621 (setq end (not (zerop (gnus-summary-next-thread 1 t)))))))
10622 (gnus-summary-position-point))
10624 (defun gnus-summary-hide-thread ()
10625 "Hide thread subtrees.
10626 If PREDICATE is supplied, threads that satisfy this predicate
10627 will not be hidden.
10628 Returns nil if no threads were there to be hidden."
10629 (interactive)
10630 (let ((buffer-read-only nil)
10631 (start (point))
10632 (article (gnus-summary-article-number)))
10633 (goto-char start)
10634 ;; Go forward until either the buffer ends or the subthread
10635 ;; ends.
10636 (when (and (not (eobp))
10637 (or (zerop (gnus-summary-next-thread 1 t))
10638 (goto-char (point-max))))
10639 (prog1
10640 (if (and (> (point) start)
10641 (search-backward "\n" start t))
10642 (progn
10643 (subst-char-in-region start (point) ?\n ?\^M)
10644 (gnus-summary-goto-subject article))
10645 (goto-char start)
10646 nil)))))
10648 (defun gnus-summary-go-to-next-thread (&optional previous)
10649 "Go to the same level (or less) next thread.
10650 If PREVIOUS is non-nil, go to previous thread instead.
10651 Return the article number moved to, or nil if moving was impossible."
10652 (let ((level (gnus-summary-thread-level))
10653 (way (if previous -1 1))
10654 (beg (point)))
10655 (forward-line way)
10656 (while (and (not (eobp))
10657 (< level (gnus-summary-thread-level)))
10658 (forward-line way))
10659 (if (eobp)
10660 (progn
10661 (goto-char beg)
10662 nil)
10663 (setq beg (point))
10664 (prog1
10665 (gnus-summary-article-number)
10666 (goto-char beg)))))
10668 (defun gnus-summary-next-thread (n &optional silent)
10669 "Go to the same level next N'th thread.
10670 If N is negative, search backward instead.
10671 Returns the difference between N and the number of skips actually
10672 done.
10674 If SILENT, don't output messages."
10675 (interactive "p")
10676 (let ((backward (< n 0))
10677 (n (abs n)))
10678 (while (and (> n 0)
10679 (gnus-summary-go-to-next-thread backward))
10680 (decf n))
10681 (unless silent
10682 (gnus-summary-position-point))
10683 (when (and (not silent) (/= 0 n))
10684 (gnus-message 7 "No more threads"))
10687 (defun gnus-summary-prev-thread (n)
10688 "Go to the same level previous N'th thread.
10689 Returns the difference between N and the number of skips actually
10690 done."
10691 (interactive "p")
10692 (gnus-summary-next-thread (- n)))
10694 (defun gnus-summary-go-down-thread ()
10695 "Go down one level in the current thread."
10696 (let ((children (gnus-summary-article-children)))
10697 (when children
10698 (gnus-summary-goto-subject (car children)))))
10700 (defun gnus-summary-go-up-thread ()
10701 "Go up one level in the current thread."
10702 (let ((parent (gnus-summary-article-parent)))
10703 (when parent
10704 (gnus-summary-goto-subject parent))))
10706 (defun gnus-summary-down-thread (n)
10707 "Go down thread N steps.
10708 If N is negative, go up instead.
10709 Returns the difference between N and how many steps down that were
10710 taken."
10711 (interactive "p")
10712 (let ((up (< n 0))
10713 (n (abs n)))
10714 (while (and (> n 0)
10715 (if up (gnus-summary-go-up-thread)
10716 (gnus-summary-go-down-thread)))
10717 (setq n (1- n)))
10718 (gnus-summary-position-point)
10719 (when (/= 0 n)
10720 (gnus-message 7 "Can't go further"))
10723 (defun gnus-summary-up-thread (n)
10724 "Go up thread N steps.
10725 If N is negative, go down instead.
10726 Returns the difference between N and how many steps down that were
10727 taken."
10728 (interactive "p")
10729 (gnus-summary-down-thread (- n)))
10731 (defun gnus-summary-top-thread ()
10732 "Go to the top of the thread."
10733 (interactive)
10734 (while (gnus-summary-go-up-thread))
10735 (gnus-summary-article-number))
10737 (defun gnus-summary-kill-thread (&optional unmark)
10738 "Mark articles under current thread as read.
10739 If the prefix argument is positive, remove any kinds of marks.
10740 If the prefix argument is negative, tick articles instead."
10741 (interactive "P")
10742 (when unmark
10743 (setq unmark (prefix-numeric-value unmark)))
10744 (let ((articles (gnus-summary-articles-in-thread)))
10745 (save-excursion
10746 ;; Expand the thread.
10747 (gnus-summary-show-thread)
10748 ;; Mark all the articles.
10749 (while articles
10750 (gnus-summary-goto-subject (car articles))
10751 (cond ((null unmark)
10752 (gnus-summary-mark-article-as-read gnus-killed-mark))
10753 ((> unmark 0)
10754 (gnus-summary-mark-article-as-unread gnus-unread-mark))
10756 (gnus-summary-mark-article-as-unread gnus-ticked-mark)))
10757 (setq articles (cdr articles))))
10758 ;; Hide killed subtrees.
10759 (and (null unmark)
10760 gnus-thread-hide-killed
10761 (gnus-summary-hide-thread))
10762 ;; If marked as read, go to next unread subject.
10763 (when (null unmark)
10764 ;; Go to next unread subject.
10765 (gnus-summary-next-subject 1 t)))
10766 (gnus-set-mode-line 'summary))
10768 ;; Summary sorting commands
10770 (defun gnus-summary-sort-by-number (&optional reverse)
10771 "Sort the summary buffer by article number.
10772 Argument REVERSE means reverse order."
10773 (interactive "P")
10774 (gnus-summary-sort 'number reverse))
10776 (defun gnus-summary-sort-by-random (&optional reverse)
10777 "Randomize the order in the summary buffer.
10778 Argument REVERSE means to randomize in reverse order."
10779 (interactive "P")
10780 (gnus-summary-sort 'random reverse))
10782 (defun gnus-summary-sort-by-author (&optional reverse)
10783 "Sort the summary buffer by author name alphabetically.
10784 If `case-fold-search' is non-nil, case of letters is ignored.
10785 Argument REVERSE means reverse order."
10786 (interactive "P")
10787 (gnus-summary-sort 'author reverse))
10789 (defun gnus-summary-sort-by-subject (&optional reverse)
10790 "Sort the summary buffer by subject alphabetically. `Re:'s are ignored.
10791 If `case-fold-search' is non-nil, case of letters is ignored.
10792 Argument REVERSE means reverse order."
10793 (interactive "P")
10794 (gnus-summary-sort 'subject reverse))
10796 (defun gnus-summary-sort-by-date (&optional reverse)
10797 "Sort the summary buffer by date.
10798 Argument REVERSE means reverse order."
10799 (interactive "P")
10800 (gnus-summary-sort 'date reverse))
10802 (defun gnus-summary-sort-by-score (&optional reverse)
10803 "Sort the summary buffer by score.
10804 Argument REVERSE means reverse order."
10805 (interactive "P")
10806 (gnus-summary-sort 'score reverse))
10808 (defun gnus-summary-sort-by-lines (&optional reverse)
10809 "Sort the summary buffer by the number of lines.
10810 Argument REVERSE means reverse order."
10811 (interactive "P")
10812 (gnus-summary-sort 'lines reverse))
10814 (defun gnus-summary-sort-by-chars (&optional reverse)
10815 "Sort the summary buffer by article length.
10816 Argument REVERSE means reverse order."
10817 (interactive "P")
10818 (gnus-summary-sort 'chars reverse))
10820 (defun gnus-summary-sort-by-original (&optional reverse)
10821 "Sort the summary buffer using the default sorting method.
10822 Argument REVERSE means reverse order."
10823 (interactive "P")
10824 (let* ((buffer-read-only)
10825 (gnus-summary-prepare-hook nil))
10826 ;; We do the sorting by regenerating the threads.
10827 (gnus-summary-prepare)
10828 ;; Hide subthreads if needed.
10829 (gnus-summary-maybe-hide-threads)))
10831 (defun gnus-summary-sort (predicate reverse)
10832 "Sort summary buffer by PREDICATE. REVERSE means reverse order."
10833 (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate)))
10834 (article (intern (format "gnus-article-sort-by-%s" predicate)))
10835 (gnus-thread-sort-functions
10836 (if (not reverse)
10837 thread
10838 `(lambda (t1 t2)
10839 (,thread t2 t1))))
10840 (gnus-sort-gathered-threads-function
10841 gnus-thread-sort-functions)
10842 (gnus-article-sort-functions
10843 (if (not reverse)
10844 article
10845 `(lambda (t1 t2)
10846 (,article t2 t1))))
10847 (buffer-read-only)
10848 (gnus-summary-prepare-hook nil))
10849 ;; We do the sorting by regenerating the threads.
10850 (gnus-summary-prepare)
10851 ;; Hide subthreads if needed.
10852 (gnus-summary-maybe-hide-threads)))
10854 ;; Summary saving commands.
10856 (defun gnus-summary-save-article (&optional n not-saved)
10857 "Save the current article using the default saver function.
10858 If N is a positive number, save the N next articles.
10859 If N is a negative number, save the N previous articles.
10860 If N is nil and any articles have been marked with the process mark,
10861 save those articles instead.
10862 The variable `gnus-default-article-saver' specifies the saver function."
10863 (interactive "P")
10864 (let* ((articles (gnus-summary-work-articles n))
10865 (save-buffer (save-excursion
10866 (nnheader-set-temp-buffer " *Gnus Save*")))
10867 (num (length articles))
10868 header file)
10869 (dolist (article articles)
10870 (setq header (gnus-summary-article-header article))
10871 (if (not (vectorp header))
10872 ;; This is a pseudo-article.
10873 (if (assq 'name header)
10874 (gnus-copy-file (cdr (assq 'name header)))
10875 (gnus-message 1 "Article %d is unsaveable" article))
10876 ;; This is a real article.
10877 (save-window-excursion
10878 (let ((gnus-display-mime-function nil)
10879 (gnus-article-prepare-hook nil))
10880 (gnus-summary-select-article t nil nil article)))
10881 (save-excursion
10882 (set-buffer save-buffer)
10883 (erase-buffer)
10884 (insert-buffer-substring gnus-original-article-buffer))
10885 (setq file (gnus-article-save save-buffer file num))
10886 (gnus-summary-remove-process-mark article)
10887 (unless not-saved
10888 (gnus-summary-set-saved-mark article))))
10889 (gnus-kill-buffer save-buffer)
10890 (gnus-summary-position-point)
10891 (gnus-set-mode-line 'summary)
10894 (defun gnus-summary-pipe-output (&optional arg headers)
10895 "Pipe the current article to a subprocess.
10896 If N is a positive number, pipe the N next articles.
10897 If N is a negative number, pipe the N previous articles.
10898 If N is nil and any articles have been marked with the process mark,
10899 pipe those articles instead.
10900 If HEADERS (the symbolic prefix), include the headers, too."
10901 (interactive (gnus-interactive "P\ny"))
10902 (require 'gnus-art)
10903 (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe)
10904 (gnus-save-all-headers (or headers gnus-save-all-headers)))
10905 (gnus-summary-save-article arg t))
10906 (let ((buffer (get-buffer "*Shell Command Output*")))
10907 (when (and buffer
10908 (not (zerop (buffer-size buffer))))
10909 (gnus-configure-windows 'pipe))))
10911 (defun gnus-summary-save-article-mail (&optional arg)
10912 "Append the current article to an mail file.
10913 If N is a positive number, save the N next articles.
10914 If N is a negative number, save the N previous articles.
10915 If N is nil and any articles have been marked with the process mark,
10916 save those articles instead."
10917 (interactive "P")
10918 (require 'gnus-art)
10919 (let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
10920 (gnus-summary-save-article arg)))
10922 (defun gnus-summary-save-article-rmail (&optional arg)
10923 "Append the current article to an rmail file.
10924 If N is a positive number, save the N next articles.
10925 If N is a negative number, save the N previous articles.
10926 If N is nil and any articles have been marked with the process mark,
10927 save those articles instead."
10928 (interactive "P")
10929 (require 'gnus-art)
10930 (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
10931 (gnus-summary-save-article arg)))
10933 (defun gnus-summary-save-article-file (&optional arg)
10934 "Append the current article to a file.
10935 If N is a positive number, save the N next articles.
10936 If N is a negative number, save the N previous articles.
10937 If N is nil and any articles have been marked with the process mark,
10938 save those articles instead."
10939 (interactive "P")
10940 (require 'gnus-art)
10941 (let ((gnus-default-article-saver 'gnus-summary-save-in-file))
10942 (gnus-summary-save-article arg)))
10944 (defun gnus-summary-write-article-file (&optional arg)
10945 "Write the current article to a file, deleting the previous file.
10946 If N is a positive number, save the N next articles.
10947 If N is a negative number, save the N previous articles.
10948 If N is nil and any articles have been marked with the process mark,
10949 save those articles instead."
10950 (interactive "P")
10951 (require 'gnus-art)
10952 (let ((gnus-default-article-saver 'gnus-summary-write-to-file))
10953 (gnus-summary-save-article arg)))
10955 (defun gnus-summary-save-article-body-file (&optional arg)
10956 "Append the current article body to a file.
10957 If N is a positive number, save the N next articles.
10958 If N is a negative number, save the N previous articles.
10959 If N is nil and any articles have been marked with the process mark,
10960 save those articles instead."
10961 (interactive "P")
10962 (require 'gnus-art)
10963 (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
10964 (gnus-summary-save-article arg)))
10966 (defun gnus-summary-muttprint (&optional arg)
10967 "Print the current article using Muttprint.
10968 If N is a positive number, save the N next articles.
10969 If N is a negative number, save the N previous articles.
10970 If N is nil and any articles have been marked with the process mark,
10971 save those articles instead."
10972 (interactive "P")
10973 (require 'gnus-art)
10974 (let ((gnus-default-article-saver 'gnus-summary-pipe-to-muttprint))
10975 (gnus-summary-save-article arg t)))
10977 (defun gnus-summary-pipe-message (program)
10978 "Pipe the current article through PROGRAM."
10979 (interactive "sProgram: ")
10980 (gnus-summary-select-article)
10981 (let ((mail-header-separator ""))
10982 (gnus-eval-in-buffer-window gnus-article-buffer
10983 (save-restriction
10984 (widen)
10985 (let ((start (window-start))
10986 buffer-read-only)
10987 (message-pipe-buffer-body program)
10988 (set-window-start (get-buffer-window (current-buffer)) start))))))
10990 (defun gnus-get-split-value (methods)
10991 "Return a value based on the split METHODS."
10992 (let (split-name method result match)
10993 (when methods
10994 (save-excursion
10995 (set-buffer gnus-original-article-buffer)
10996 (save-restriction
10997 (nnheader-narrow-to-headers)
10998 (while (and methods (not split-name))
10999 (goto-char (point-min))
11000 (setq method (pop methods))
11001 (setq match (car method))
11002 (when (cond
11003 ((stringp match)
11004 ;; Regular expression.
11005 (ignore-errors
11006 (re-search-forward match nil t)))
11007 ((functionp match)
11008 ;; Function.
11009 (save-restriction
11010 (widen)
11011 (setq result (funcall match gnus-newsgroup-name))))
11012 ((consp match)
11013 ;; Form.
11014 (save-restriction
11015 (widen)
11016 (setq result (eval match)))))
11017 (setq split-name (cdr method))
11018 (cond ((stringp result)
11019 (push (expand-file-name
11020 result gnus-article-save-directory)
11021 split-name))
11022 ((consp result)
11023 (setq split-name (append result split-name)))))))))
11024 (nreverse split-name)))
11026 (defun gnus-valid-move-group-p (group)
11027 (and (boundp group)
11028 (symbol-name group)
11029 (symbol-value group)
11030 (gnus-get-function (gnus-find-method-for-group
11031 (symbol-name group)) 'request-accept-article t)))
11033 (defun gnus-read-move-group-name (prompt default articles prefix)
11034 "Read a group name."
11035 (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
11036 (minibuffer-confirm-incomplete nil) ; XEmacs
11037 (prom
11038 (format "%s %s to:"
11039 prompt
11040 (if (> (length articles) 1)
11041 (format "these %d articles" (length articles))
11042 "this article")))
11043 (to-newsgroup
11044 (cond
11045 ((null split-name)
11046 (gnus-completing-read-with-default
11047 default prom
11048 gnus-active-hashtb
11049 'gnus-valid-move-group-p
11050 nil prefix
11051 'gnus-group-history))
11052 ((= 1 (length split-name))
11053 (gnus-completing-read-with-default
11054 (car split-name) prom
11055 gnus-active-hashtb
11056 'gnus-valid-move-group-p
11057 nil nil
11058 'gnus-group-history))
11060 (gnus-completing-read-with-default
11061 nil prom
11062 (mapcar (lambda (el) (list el))
11063 (nreverse split-name))
11064 nil nil nil
11065 'gnus-group-history))))
11066 (to-method (gnus-server-to-method (gnus-group-method to-newsgroup))))
11067 (when to-newsgroup
11068 (if (or (string= to-newsgroup "")
11069 (string= to-newsgroup prefix))
11070 (setq to-newsgroup default))
11071 (unless to-newsgroup
11072 (error "No group name entered"))
11073 (or (gnus-active to-newsgroup)
11074 (gnus-activate-group to-newsgroup nil nil to-method)
11075 (if (gnus-y-or-n-p (format "No such group: %s. Create it? "
11076 to-newsgroup))
11077 (or (and (gnus-request-create-group to-newsgroup to-method)
11078 (gnus-activate-group
11079 to-newsgroup nil nil to-method)
11080 (gnus-subscribe-group to-newsgroup))
11081 (error "Couldn't create group %s" to-newsgroup)))
11082 (error "No such group: %s" to-newsgroup)))
11083 to-newsgroup))
11085 (defun gnus-summary-save-parts (type dir n &optional reverse)
11086 "Save parts matching TYPE to DIR.
11087 If REVERSE, save parts that do not match TYPE."
11088 (interactive
11089 (list (read-string "Save parts of type: "
11090 (or (car gnus-summary-save-parts-type-history)
11091 gnus-summary-save-parts-default-mime)
11092 'gnus-summary-save-parts-type-history)
11093 (setq gnus-summary-save-parts-last-directory
11094 (read-file-name "Save to directory: "
11095 gnus-summary-save-parts-last-directory
11096 nil t))
11097 current-prefix-arg))
11098 (gnus-summary-iterate n
11099 (let ((gnus-display-mime-function nil)
11100 (gnus-inhibit-treatment t))
11101 (gnus-summary-select-article))
11102 (save-excursion
11103 (set-buffer gnus-article-buffer)
11104 (let ((handles (or gnus-article-mime-handles
11105 (mm-dissect-buffer nil gnus-article-loose-mime)
11106 (and gnus-article-emulate-mime
11107 (mm-uu-dissect)))))
11108 (when handles
11109 (gnus-summary-save-parts-1 type dir handles reverse)
11110 (unless gnus-article-mime-handles ;; Don't destroy this case.
11111 (mm-destroy-parts handles)))))))
11113 (defun gnus-summary-save-parts-1 (type dir handle reverse)
11114 (if (stringp (car handle))
11115 (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse))
11116 (cdr handle))
11117 (when (if reverse
11118 (not (string-match type (mm-handle-media-type handle)))
11119 (string-match type (mm-handle-media-type handle)))
11120 (let ((file (expand-file-name
11121 (gnus-map-function
11122 mm-file-name-rewrite-functions
11123 (file-name-nondirectory
11125 (mail-content-type-get
11126 (mm-handle-disposition handle) 'filename)
11127 (mail-content-type-get
11128 (mm-handle-type handle) 'name)
11129 (concat gnus-newsgroup-name
11130 "." (number-to-string
11131 (cdr gnus-article-current))))))
11132 dir)))
11133 (unless (file-exists-p file)
11134 (mm-save-part-to-file handle file))))))
11136 ;; Summary extract commands
11138 (defun gnus-summary-insert-pseudos (pslist &optional not-view)
11139 (let ((buffer-read-only nil)
11140 (article (gnus-summary-article-number))
11141 after-article b e)
11142 (unless (gnus-summary-goto-subject article)
11143 (error "No such article: %d" article))
11144 (gnus-summary-position-point)
11145 ;; If all commands are to be bunched up on one line, we collect
11146 ;; them here.
11147 (unless gnus-view-pseudos-separately
11148 (let ((ps (setq pslist (sort pslist 'gnus-pseudos<)))
11149 files action)
11150 (while ps
11151 (setq action (cdr (assq 'action (car ps))))
11152 (setq files (list (cdr (assq 'name (car ps)))))
11153 (while (and ps (cdr ps)
11154 (string= (or action "1")
11155 (or (cdr (assq 'action (cadr ps))) "2")))
11156 (push (cdr (assq 'name (cadr ps))) files)
11157 (setcdr ps (cddr ps)))
11158 (when files
11159 (when (not (string-match "%s" action))
11160 (push " " files))
11161 (push " " files)
11162 (when (assq 'execute (car ps))
11163 (setcdr (assq 'execute (car ps))
11164 (funcall (if (string-match "%s" action)
11165 'format 'concat)
11166 action
11167 (mapconcat
11168 (lambda (f)
11169 (if (equal f " ")
11171 (mm-quote-arg f)))
11172 files " ")))))
11173 (setq ps (cdr ps)))))
11174 (if (and gnus-view-pseudos (not not-view))
11175 (while pslist
11176 (when (assq 'execute (car pslist))
11177 (gnus-execute-command (cdr (assq 'execute (car pslist)))
11178 (eq gnus-view-pseudos 'not-confirm)))
11179 (setq pslist (cdr pslist)))
11180 (save-excursion
11181 (while pslist
11182 (setq after-article (or (cdr (assq 'article (car pslist)))
11183 (gnus-summary-article-number)))
11184 (gnus-summary-goto-subject after-article)
11185 (forward-line 1)
11186 (setq b (point))
11187 (insert " " (file-name-nondirectory
11188 (cdr (assq 'name (car pslist))))
11189 ": " (or (cdr (assq 'execute (car pslist))) "") "\n")
11190 (setq e (point))
11191 (forward-line -1) ; back to `b'
11192 (gnus-add-text-properties
11193 b (1- e) (list 'gnus-number gnus-reffed-article-number
11194 gnus-mouse-face-prop gnus-mouse-face))
11195 (gnus-data-enter
11196 after-article gnus-reffed-article-number
11197 gnus-unread-mark b (car pslist) 0 (- e b))
11198 (setq gnus-newsgroup-unreads
11199 (gnus-add-to-sorted-list gnus-newsgroup-unreads
11200 gnus-reffed-article-number))
11201 (setq gnus-reffed-article-number (1- gnus-reffed-article-number))
11202 (setq pslist (cdr pslist)))))))
11204 (defun gnus-pseudos< (p1 p2)
11205 (let ((c1 (cdr (assq 'action p1)))
11206 (c2 (cdr (assq 'action p2))))
11207 (and c1 c2 (string< c1 c2))))
11209 (defun gnus-request-pseudo-article (props)
11210 (cond ((assq 'execute props)
11211 (gnus-execute-command (cdr (assq 'execute props)))))
11212 (let ((gnus-current-article (gnus-summary-article-number)))
11213 (gnus-run-hooks 'gnus-mark-article-hook)))
11215 (defun gnus-execute-command (command &optional automatic)
11216 (save-excursion
11217 (gnus-article-setup-buffer)
11218 (set-buffer gnus-article-buffer)
11219 (setq buffer-read-only nil)
11220 (let ((command (if automatic command
11221 (read-string "Command: " (cons command 0)))))
11222 (erase-buffer)
11223 (insert "$ " command "\n\n")
11224 (if gnus-view-pseudo-asynchronously
11225 (start-process "gnus-execute" (current-buffer) shell-file-name
11226 shell-command-switch command)
11227 (call-process shell-file-name nil t nil
11228 shell-command-switch command)))))
11230 ;; Summary kill commands.
11232 (defun gnus-summary-edit-global-kill (article)
11233 "Edit the \"global\" kill file."
11234 (interactive (list (gnus-summary-article-number)))
11235 (gnus-group-edit-global-kill article))
11237 (defun gnus-summary-edit-local-kill ()
11238 "Edit a local kill file applied to the current newsgroup."
11239 (interactive)
11240 (setq gnus-current-headers (gnus-summary-article-header))
11241 (gnus-group-edit-local-kill
11242 (gnus-summary-article-number) gnus-newsgroup-name))
11244 ;;; Header reading.
11246 (defun gnus-read-header (id &optional header)
11247 "Read the headers of article ID and enter them into the Gnus system."
11248 (let ((group gnus-newsgroup-name)
11249 (gnus-override-method
11251 gnus-override-method
11252 (and (gnus-news-group-p gnus-newsgroup-name)
11253 (car (gnus-refer-article-methods)))))
11254 where)
11255 ;; First we check to see whether the header in question is already
11256 ;; fetched.
11257 (if (stringp id)
11258 ;; This is a Message-ID.
11259 (setq header (or header (gnus-id-to-header id)))
11260 ;; This is an article number.
11261 (setq header (or header (gnus-summary-article-header id))))
11262 (if (and header
11263 (not (gnus-summary-article-sparse-p (mail-header-number header))))
11264 ;; We have found the header.
11265 header
11266 ;; We have to really fetch the header to this article.
11267 (save-excursion
11268 (set-buffer nntp-server-buffer)
11269 (when (setq where (gnus-request-head id group))
11270 (nnheader-fold-continuation-lines)
11271 (goto-char (point-max))
11272 (insert ".\n")
11273 (goto-char (point-min))
11274 (insert "211 ")
11275 (princ (cond
11276 ((numberp id) id)
11277 ((cdr where) (cdr where))
11278 (header (mail-header-number header))
11279 (t gnus-reffed-article-number))
11280 (current-buffer))
11281 (insert " Article retrieved.\n"))
11282 (if (or (not where)
11283 (not (setq header (car (gnus-get-newsgroup-headers nil t)))))
11284 () ; Malformed head.
11285 (unless (gnus-summary-article-sparse-p (mail-header-number header))
11286 (when (and (stringp id)
11287 (not (string= (gnus-group-real-name group)
11288 (car where))))
11289 ;; If we fetched by Message-ID and the article came
11290 ;; from a different group, we fudge some bogus article
11291 ;; numbers for this article.
11292 (mail-header-set-number header gnus-reffed-article-number))
11293 (save-excursion
11294 (set-buffer gnus-summary-buffer)
11295 (decf gnus-reffed-article-number)
11296 (gnus-remove-header (mail-header-number header))
11297 (push header gnus-newsgroup-headers)
11298 (setq gnus-current-headers header)
11299 (push (mail-header-number header) gnus-newsgroup-limit)))
11300 header)))))
11302 (defun gnus-remove-header (number)
11303 "Remove header NUMBER from `gnus-newsgroup-headers'."
11304 (if (and gnus-newsgroup-headers
11305 (= number (mail-header-number (car gnus-newsgroup-headers))))
11306 (pop gnus-newsgroup-headers)
11307 (let ((headers gnus-newsgroup-headers))
11308 (while (and (cdr headers)
11309 (not (= number (mail-header-number (cadr headers)))))
11310 (pop headers))
11311 (when (cdr headers)
11312 (setcdr headers (cddr headers))))))
11315 ;;; summary highlights
11318 (defun gnus-highlight-selected-summary ()
11319 "Highlight selected article in summary buffer."
11320 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
11321 (when gnus-summary-selected-face
11322 (save-excursion
11323 (let* ((beg (gnus-point-at-bol))
11324 (end (gnus-point-at-eol))
11325 ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>.
11326 (from (if (get-text-property beg gnus-mouse-face-prop)
11328 (or (next-single-property-change
11329 beg gnus-mouse-face-prop nil end)
11330 beg)))
11332 (if (= from end)
11333 (- from 2)
11334 (or (next-single-property-change
11335 from gnus-mouse-face-prop nil end)
11336 end))))
11337 ;; If no mouse-face prop on line we will have to = from = end,
11338 ;; so we highlight the entire line instead.
11339 (when (= (+ to 2) from)
11340 (setq from beg)
11341 (setq to end))
11342 (if gnus-newsgroup-selected-overlay
11343 ;; Move old overlay.
11344 (gnus-move-overlay
11345 gnus-newsgroup-selected-overlay from to (current-buffer))
11346 ;; Create new overlay.
11347 (gnus-overlay-put
11348 (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to))
11349 'face gnus-summary-selected-face))))))
11351 (defvar gnus-summary-highlight-line-cached nil)
11352 (defvar gnus-summary-highlight-line-trigger nil)
11354 (defun gnus-summary-highlight-line-0 ()
11355 (if (and (eq gnus-summary-highlight-line-trigger
11356 gnus-summary-highlight)
11357 gnus-summary-highlight-line-cached)
11358 gnus-summary-highlight-line-cached
11359 (setq gnus-summary-highlight-line-trigger gnus-summary-highlight
11360 gnus-summary-highlight-line-cached
11361 (let* ((cond (list 'cond))
11362 (c cond)
11363 (list gnus-summary-highlight))
11364 (while list
11365 (setcdr c (cons (list (caar list) (list 'quote (cdar list)))
11366 nil))
11367 (setq c (cdr c)
11368 list (cdr list)))
11369 (gnus-byte-compile (list 'lambda nil cond))))))
11371 (defun gnus-summary-highlight-line ()
11372 "Highlight current line according to `gnus-summary-highlight'."
11373 (let* ((beg (gnus-point-at-bol))
11374 (article (or (gnus-summary-article-number) gnus-current-article))
11375 (score (or (cdr (assq article
11376 gnus-newsgroup-scored))
11377 gnus-summary-default-score 0))
11378 (mark (or (gnus-summary-article-mark) gnus-unread-mark))
11379 (inhibit-read-only t)
11380 (default gnus-summary-default-score)
11381 (default-high gnus-summary-default-high-score)
11382 (default-low gnus-summary-default-low-score)
11383 (uncached (and gnus-summary-use-undownloaded-faces
11384 (memq article gnus-newsgroup-undownloaded)
11385 (not (memq article gnus-newsgroup-cached)))))
11386 (let ((face (funcall (gnus-summary-highlight-line-0))))
11387 (unless (eq face (get-text-property beg 'face))
11388 (gnus-put-text-property-excluding-characters-with-faces
11389 beg (gnus-point-at-eol) 'face
11390 (setq face (if (boundp face) (symbol-value face) face)))
11391 (when gnus-summary-highlight-line-function
11392 (funcall gnus-summary-highlight-line-function article face))))))
11394 (defun gnus-update-read-articles (group unread &optional compute)
11395 "Update the list of read articles in GROUP.
11396 UNREAD is a sorted list."
11397 (let* ((active (or gnus-newsgroup-active (gnus-active group)))
11398 (entry (gnus-gethash group gnus-newsrc-hashtb))
11399 (info (nth 2 entry))
11400 (prev 1)
11401 read)
11402 (if (or (not info) (not active))
11403 ;; There is no info on this group if it was, in fact,
11404 ;; killed. Gnus stores no information on killed groups, so
11405 ;; there's nothing to be done.
11406 ;; One could store the information somewhere temporarily,
11407 ;; perhaps... Hmmm...
11409 ;; Remove any negative articles numbers.
11410 (while (and unread (< (car unread) 0))
11411 (setq unread (cdr unread)))
11412 ;; Remove any expired article numbers
11413 (while (and unread (< (car unread) (car active)))
11414 (setq unread (cdr unread)))
11415 ;; Compute the ranges of read articles by looking at the list of
11416 ;; unread articles.
11417 (while unread
11418 (when (/= (car unread) prev)
11419 (push (if (= prev (1- (car unread))) prev
11420 (cons prev (1- (car unread))))
11421 read))
11422 (setq prev (1+ (car unread)))
11423 (setq unread (cdr unread)))
11424 (when (<= prev (cdr active))
11425 (push (cons prev (cdr active)) read))
11426 (setq read (if (> (length read) 1) (nreverse read) read))
11427 (if compute
11428 read
11429 (save-excursion
11430 (let (setmarkundo)
11431 ;; Propagate the read marks to the backend.
11432 (when (gnus-check-backend-function 'request-set-mark group)
11433 (let ((del (gnus-remove-from-range (gnus-info-read info) read))
11434 (add (gnus-remove-from-range read (gnus-info-read info))))
11435 (when (or add del)
11436 (unless (gnus-check-group group)
11437 (error "Can't open server for %s" group))
11438 (gnus-request-set-mark
11439 group (delq nil (list (if add (list add 'add '(read)))
11440 (if del (list del 'del '(read))))))
11441 (setq setmarkundo
11442 `(gnus-request-set-mark
11443 ,group
11444 ',(delq nil (list
11445 (if del (list del 'add '(read)))
11446 (if add (list add 'del '(read))))))))))
11447 (set-buffer gnus-group-buffer)
11448 (gnus-undo-register
11449 `(progn
11450 (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
11451 (gnus-info-set-read ',info ',(gnus-info-read info))
11452 (gnus-get-unread-articles-in-group ',info
11453 (gnus-active ,group))
11454 (gnus-group-update-group ,group t)
11455 ,setmarkundo))))
11456 ;; Enter this list into the group info.
11457 (gnus-info-set-read info read)
11458 ;; Set the number of unread articles in gnus-newsrc-hashtb.
11459 (gnus-get-unread-articles-in-group info (gnus-active group))
11460 t))))
11462 (defun gnus-offer-save-summaries ()
11463 "Offer to save all active summary buffers."
11464 (let (buffers)
11465 ;; Go through all buffers and find all summaries.
11466 (dolist (buffer (buffer-list))
11467 (when (and (setq buffer (buffer-name buffer))
11468 (string-match "Summary" buffer)
11469 (save-excursion
11470 (set-buffer buffer)
11471 ;; We check that this is, indeed, a summary buffer.
11472 (and (eq major-mode 'gnus-summary-mode)
11473 ;; Also make sure this isn't bogus.
11474 gnus-newsgroup-prepared
11475 ;; Also make sure that this isn't a
11476 ;; dead summary buffer.
11477 (not gnus-dead-summary-mode))))
11478 (push buffer buffers)))
11479 ;; Go through all these summary buffers and offer to save them.
11480 (when buffers
11481 (save-excursion
11482 (map-y-or-n-p
11483 "Update summary buffer %s? "
11484 (lambda (buf)
11485 (switch-to-buffer buf)
11486 (gnus-summary-exit))
11487 buffers)))))
11489 (defun gnus-summary-setup-default-charset ()
11490 "Setup newsgroup default charset."
11491 (if (member gnus-newsgroup-name '("nndraft:delayed" "nndraft:drafts"))
11492 (setq gnus-newsgroup-charset nil)
11493 (let* ((ignored-charsets
11494 (or gnus-newsgroup-ephemeral-ignored-charsets
11495 (append
11496 (and gnus-newsgroup-name
11497 (gnus-parameter-ignored-charsets gnus-newsgroup-name))
11498 gnus-newsgroup-ignored-charsets))))
11499 (setq gnus-newsgroup-charset
11500 (or gnus-newsgroup-ephemeral-charset
11501 (and gnus-newsgroup-name
11502 (gnus-parameter-charset gnus-newsgroup-name))
11503 gnus-default-charset))
11504 (set (make-local-variable 'gnus-newsgroup-ignored-charsets)
11505 ignored-charsets))))
11508 ;;; Mime Commands
11511 (defun gnus-summary-display-buttonized (&optional show-all-parts)
11512 "Display the current article buffer fully MIME-buttonized.
11513 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are
11514 treated as multipart/mixed."
11515 (interactive "P")
11516 (require 'gnus-art)
11517 (let ((gnus-unbuttonized-mime-types nil)
11518 (gnus-mime-display-multipart-as-mixed show-all-parts))
11519 (gnus-summary-show-article)))
11521 (defun gnus-summary-repair-multipart (article)
11522 "Add a Content-Type header to a multipart article without one."
11523 (interactive (list (gnus-summary-article-number)))
11524 (gnus-with-article article
11525 (message-narrow-to-head)
11526 (message-remove-header "Mime-Version")
11527 (goto-char (point-max))
11528 (insert "Mime-Version: 1.0\n")
11529 (widen)
11530 (when (search-forward "\n--" nil t)
11531 (let ((separator (buffer-substring (point) (gnus-point-at-eol))))
11532 (message-narrow-to-head)
11533 (message-remove-header "Content-Type")
11534 (goto-char (point-max))
11535 (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
11536 separator))
11537 (widen))))
11538 (let (gnus-mark-article-hook)
11539 (gnus-summary-select-article t t nil article)))
11541 (defun gnus-summary-toggle-display-buttonized ()
11542 "Toggle the buttonizing of the article buffer."
11543 (interactive)
11544 (require 'gnus-art)
11545 (if (setq gnus-inhibit-mime-unbuttonizing
11546 (not gnus-inhibit-mime-unbuttonizing))
11547 (let ((gnus-unbuttonized-mime-types nil))
11548 (gnus-summary-show-article))
11549 (gnus-summary-show-article)))
11552 ;;; Generic summary marking commands
11555 (defvar gnus-summary-marking-alist
11556 '((read gnus-del-mark "d")
11557 (unread gnus-unread-mark "u")
11558 (ticked gnus-ticked-mark "!")
11559 (dormant gnus-dormant-mark "?")
11560 (expirable gnus-expirable-mark "e"))
11561 "An alist of names/marks/keystrokes.")
11563 (defvar gnus-summary-generic-mark-map (make-sparse-keymap))
11564 (defvar gnus-summary-mark-map)
11566 (defun gnus-summary-make-all-marking-commands ()
11567 (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map)
11568 (dolist (elem gnus-summary-marking-alist)
11569 (apply 'gnus-summary-make-marking-command elem)))
11571 (defun gnus-summary-make-marking-command (name mark keystroke)
11572 (let ((map (make-sparse-keymap)))
11573 (define-key gnus-summary-generic-mark-map keystroke map)
11574 (dolist (lway `((next "next" next nil "n")
11575 (next-unread "next unread" next t "N")
11576 (prev "previous" prev nil "p")
11577 (prev-unread "previous unread" prev t "P")
11578 (nomove "" nil nil ,keystroke)))
11579 (let ((func (gnus-summary-make-marking-command-1
11580 mark (car lway) lway name)))
11581 (setq func (eval func))
11582 (define-key map (nth 4 lway) func)))))
11584 (defun gnus-summary-make-marking-command-1 (mark way lway name)
11585 `(defun ,(intern
11586 (format "gnus-summary-put-mark-as-%s%s"
11587 name (if (eq way 'nomove)
11589 (concat "-" (symbol-name way)))))
11591 ,(format
11592 "Mark the current article as %s%s.
11593 If N, the prefix, then repeat N times.
11594 If N is negative, move in reverse order.
11595 The difference between N and the actual number of articles marked is
11596 returned."
11597 name (cadr lway))
11598 (interactive "p")
11599 (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway))))
11601 (defun gnus-summary-generic-mark (n mark move unread)
11602 "Mark N articles with MARK."
11603 (unless (eq major-mode 'gnus-summary-mode)
11604 (error "This command can only be used in the summary buffer"))
11605 (gnus-summary-show-thread)
11606 (let ((nummove
11607 (cond
11608 ((eq move 'next) 1)
11609 ((eq move 'prev) -1)
11610 (t 0))))
11611 (if (zerop nummove)
11612 (setq n 1)
11613 (when (< n 0)
11614 (setq n (abs n)
11615 nummove (* -1 nummove))))
11616 (while (and (> n 0)
11617 (gnus-summary-mark-article nil mark)
11618 (zerop (gnus-summary-next-subject nummove unread t)))
11619 (setq n (1- n)))
11620 (when (/= 0 n)
11621 (gnus-message 7 "No more %sarticles" (if mark "" "unread ")))
11622 (gnus-summary-recenter)
11623 (gnus-summary-position-point)
11624 (gnus-set-mode-line 'summary)
11627 (defun gnus-summary-insert-articles (articles)
11628 (when (setq articles
11629 (gnus-sorted-difference articles
11630 (mapcar (lambda (h)
11631 (mail-header-number h))
11632 gnus-newsgroup-headers)))
11633 (setq gnus-newsgroup-headers
11634 (gnus-merge 'list
11635 gnus-newsgroup-headers
11636 (gnus-fetch-headers articles)
11637 'gnus-article-sort-by-number))
11638 ;; Suppress duplicates?
11639 (when gnus-suppress-duplicates
11640 (gnus-dup-suppress-articles))
11642 ;; We might want to build some more threads first.
11643 (when (and gnus-fetch-old-headers
11644 (eq gnus-headers-retrieved-by 'nov))
11645 (if (eq gnus-fetch-old-headers 'invisible)
11646 (gnus-build-all-threads)
11647 (gnus-build-old-threads)))
11648 ;; Let the Gnus agent mark articles as read.
11649 (when gnus-agent
11650 (gnus-agent-get-undownloaded-list))
11651 ;; Remove list identifiers from subject
11652 (when gnus-list-identifiers
11653 (gnus-summary-remove-list-identifiers))
11654 ;; First and last article in this newsgroup.
11655 (when gnus-newsgroup-headers
11656 (setq gnus-newsgroup-begin
11657 (mail-header-number (car gnus-newsgroup-headers))
11658 gnus-newsgroup-end
11659 (mail-header-number
11660 (gnus-last-element gnus-newsgroup-headers))))
11661 (when gnus-use-scoring
11662 (gnus-possibly-score-headers))))
11664 (defun gnus-summary-insert-old-articles (&optional all)
11665 "Insert all old articles in this group.
11666 If ALL is non-nil, already read articles become readable.
11667 If ALL is a number, fetch this number of articles."
11668 (interactive "P")
11669 (prog1
11670 (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
11671 older len)
11672 (setq older
11673 ;; Some nntp servers lie about their active range. When
11674 ;; this happens, the active range can be in the millions.
11675 ;; Use a compressed range to avoid creating a huge list.
11676 (gnus-range-difference (list gnus-newsgroup-active) old))
11677 (setq len (gnus-range-length older))
11678 (cond
11679 ((null older) nil)
11680 ((numberp all)
11681 (if (< all len)
11682 (let ((older-range (nreverse older)))
11683 (setq older nil)
11685 (while (> all 0)
11686 (let* ((r (pop older-range))
11687 (min (if (numberp r) r (car r)))
11688 (max (if (numberp r) r (cdr r))))
11689 (while (and (<= min max)
11690 (> all 0))
11691 (push max older)
11692 (setq all (1- all)
11693 max (1- max))))))
11694 (setq older (gnus-uncompress-range older))))
11695 (all
11696 (setq older (gnus-uncompress-range older)))
11698 (when (and (numberp gnus-large-newsgroup)
11699 (> len gnus-large-newsgroup))
11700 (let* ((cursor-in-echo-area nil)
11701 (initial (gnus-parameter-large-newsgroup-initial
11702 gnus-newsgroup-name))
11703 (input
11704 (read-string
11705 (format
11706 "How many articles from %s (%s %d): "
11707 (gnus-limit-string
11708 (gnus-group-decoded-name gnus-newsgroup-name) 35)
11709 (if initial "max" "default")
11710 len)
11711 (if initial
11712 (cons (number-to-string initial)
11713 0)))))
11714 (unless (string-match "^[ \t]*$" input)
11715 (setq all (string-to-number input))
11716 (if (< all len)
11717 (let ((older-range (nreverse older)))
11718 (setq older nil)
11720 (while (> all 0)
11721 (let* ((r (pop older-range))
11722 (min (if (numberp r) r (car r)))
11723 (max (if (numberp r) r (cdr r))))
11724 (while (and (<= min max)
11725 (> all 0))
11726 (push max older)
11727 (setq all (1- all)
11728 max (1- max))))))))))
11729 (setq older (gnus-uncompress-range older))))
11730 (if (not older)
11731 (message "No old news.")
11732 (gnus-summary-insert-articles older)
11733 (gnus-summary-limit (gnus-sorted-nunion old older))))
11734 (gnus-summary-position-point)))
11736 (defun gnus-summary-insert-new-articles ()
11737 "Insert all new articles in this group."
11738 (interactive)
11739 (prog1
11740 (let ((old (sort (mapcar 'car gnus-newsgroup-data) '<))
11741 (old-active gnus-newsgroup-active)
11742 (nnmail-fetched-sources (list t))
11743 i new)
11744 (setq gnus-newsgroup-active
11745 (gnus-activate-group gnus-newsgroup-name 'scan))
11746 (setq i (cdr gnus-newsgroup-active))
11747 (while (> i (cdr old-active))
11748 (push i new)
11749 (decf i))
11750 (if (not new)
11751 (message "No gnus is bad news.")
11752 (gnus-summary-insert-articles new)
11753 (setq gnus-newsgroup-unreads
11754 (gnus-sorted-nunion gnus-newsgroup-unreads new))
11755 (gnus-summary-limit (gnus-sorted-nunion old new))))
11756 (gnus-summary-position-point)))
11758 (gnus-summary-make-all-marking-commands)
11760 (gnus-ems-redefine)
11762 (provide 'gnus-sum)
11764 (run-hooks 'gnus-sum-load-hook)
11766 ;; Local Variables:
11767 ;; coding: iso-8859-1
11768 ;; End:
11770 ;; arch-tag: 17c6748f-6d00-4d36-bf01-835c42f31235
11771 ;;; gnus-sum.el ends here