Mercurial > emacs
annotate lisp/gnus/gnus-sum.el @ 89508:f698e4b63097
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 16 Sep 2003 17:34:00 +0000 |
parents | 2f877ed80fa6 |
children | 561b856c5b1f |
rev | line source |
---|---|
17493 | 1 ;;; gnus-sum.el --- summary mode commands for Gnus |
89483 | 2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3 ;; Free Software Foundation, Inc. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 6 ;; Keywords: news |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;;; Code: | |
28 | |
19521
6f6cf9184e93
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
29 (eval-when-compile (require 'cl)) |
6f6cf9184e93
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
30 |
17493 | 31 (require 'gnus) |
32 (require 'gnus-group) | |
33 (require 'gnus-spec) | |
34 (require 'gnus-range) | |
35 (require 'gnus-int) | |
36 (require 'gnus-undo) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
37 (require 'gnus-util) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
38 (require 'mm-decode) |
33126 | 39 ;; Recursive :-(. |
40 ;; (require 'gnus-art) | |
41 (require 'nnoo) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
42 (autoload 'gnus-summary-limit-include-cached "gnus-cache" nil t) |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
43 (autoload 'gnus-cache-write-active "gnus-cache") |
33126 | 44 (autoload 'mm-uu-dissect "mm-uu") |
17493 | 45 |
46 (defcustom gnus-kill-summary-on-exit t | |
47 "*If non-nil, kill the summary buffer when you exit from it. | |
48 If nil, the summary will become a \"*Dead Summary*\" buffer, and | |
49 it will be killed sometime later." | |
50 :group 'gnus-summary-exit | |
51 :type 'boolean) | |
52 | |
53 (defcustom gnus-fetch-old-headers nil | |
54 "*Non-nil means that Gnus will try to build threads by grabbing old headers. | |
55 If an unread article in the group refers to an older, already read (or | |
56 just marked as read) article, the old article will not normally be | |
57 displayed in the Summary buffer. If this variable is non-nil, Gnus | |
58 will attempt to grab the headers to the old articles, and thereby | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
59 build complete threads. If it has the value `some', only enough |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
60 headers to connect otherwise loose threads will be displayed. This |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
61 variable can also be a number. In that case, no more than that number |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
62 of old headers will be fetched. If it has the value `invisible', all |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
63 old headers will be fetched, but none will be displayed. |
17493 | 64 |
65 The server has to support NOV for any of this to work." | |
66 :group 'gnus-thread | |
67 :type '(choice (const :tag "off" nil) | |
68 (const some) | |
69 number | |
70 (sexp :menu-tag "other" t))) | |
71 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
72 (defcustom gnus-refer-thread-limit 200 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
73 "*The number of old headers to fetch when doing \\<gnus-summary-mode-map>\\[gnus-summary-refer-thread]. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
74 If t, fetch all the available old headers." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
75 :group 'gnus-thread |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
76 :type '(choice number |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
77 (sexp :menu-tag "other" t))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
78 |
17493 | 79 (defcustom gnus-summary-make-false-root 'adopt |
80 "*nil means that Gnus won't gather loose threads. | |
81 If the root of a thread has expired or been read in a previous | |
82 session, the information necessary to build a complete thread has been | |
83 lost. Instead of having many small sub-threads from this original thread | |
84 scattered all over the summary buffer, Gnus can gather them. | |
85 | |
86 If non-nil, Gnus will try to gather all loose sub-threads from an | |
87 original thread into one large thread. | |
88 | |
89 If this variable is non-nil, it should be one of `none', `adopt', | |
90 `dummy' or `empty'. | |
91 | |
92 If this variable is `none', Gnus will not make a false root, but just | |
93 present the sub-threads after another. | |
94 If this variable is `dummy', Gnus will create a dummy root that will | |
95 have all the sub-threads as children. | |
96 If this variable is `adopt', Gnus will make one of the \"children\" | |
97 the parent and mark all the step-children as such. | |
98 If this variable is `empty', the \"children\" are printed with empty | |
99 subject fields. (Or rather, they will be printed with a string | |
100 given by the `gnus-summary-same-subject' variable.)" | |
101 :group 'gnus-thread | |
102 :type '(choice (const :tag "off" nil) | |
103 (const none) | |
104 (const dummy) | |
105 (const adopt) | |
106 (const empty))) | |
107 | |
108 (defcustom gnus-summary-gather-exclude-subject "^ *$\\|^(none)$" | |
109 "*A regexp to match subjects to be excluded from loose thread gathering. | |
110 As loose thread gathering is done on subjects only, that means that | |
111 there can be many false gatherings performed. By rooting out certain | |
112 common subjects, gathering might become saner." | |
113 :group 'gnus-thread | |
114 :type 'regexp) | |
115 | |
116 (defcustom gnus-summary-gather-subject-limit nil | |
117 "*Maximum length of subject comparisons when gathering loose threads. | |
118 Use nil to compare full subjects. Setting this variable to a low | |
119 number will help gather threads that have been corrupted by | |
120 newsreaders chopping off subject lines, but it might also mean that | |
121 unrelated articles that have subject that happen to begin with the | |
122 same few characters will be incorrectly gathered. | |
123 | |
124 If this variable is `fuzzy', Gnus will use a fuzzy algorithm when | |
125 comparing subjects." | |
126 :group 'gnus-thread | |
127 :type '(choice (const :tag "off" nil) | |
128 (const fuzzy) | |
129 (sexp :menu-tag "on" t))) | |
130 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
131 (defcustom gnus-simplify-subject-functions nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
132 "List of functions taking a string argument that simplify subjects. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
133 The functions are applied recursively. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
134 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
135 Useful functions to put in this list include: `gnus-simplify-subject-re', |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
136 `gnus-simplify-subject-fuzzy' and `gnus-simplify-whitespace'." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
137 :group 'gnus-thread |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
138 :type '(repeat function)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
139 |
17493 | 140 (defcustom gnus-simplify-ignored-prefixes nil |
141 "*Regexp, matches for which are removed from subject lines when simplifying fuzzily." | |
142 :group 'gnus-thread | |
143 :type '(choice (const :tag "off" nil) | |
144 regexp)) | |
145 | |
146 (defcustom gnus-build-sparse-threads nil | |
147 "*If non-nil, fill in the gaps in threads. | |
148 If `some', only fill in the gaps that are needed to tie loose threads | |
149 together. If `more', fill in all leaf nodes that Gnus can find. If | |
150 non-nil and non-`some', fill in all gaps that Gnus manages to guess." | |
151 :group 'gnus-thread | |
152 :type '(choice (const :tag "off" nil) | |
153 (const some) | |
154 (const more) | |
155 (sexp :menu-tag "all" t))) | |
156 | |
157 (defcustom gnus-summary-thread-gathering-function | |
158 'gnus-gather-threads-by-subject | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
159 "*Function used for gathering loose threads. |
17493 | 160 There are two pre-defined functions: `gnus-gather-threads-by-subject', |
161 which only takes Subjects into consideration; and | |
162 `gnus-gather-threads-by-references', which compared the References | |
163 headers of the articles to find matches." | |
164 :group 'gnus-thread | |
19912
4355457d9749
(gnus-summary-thread-gathering-function): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19594
diff
changeset
|
165 :type '(radio (function-item gnus-gather-threads-by-subject) |
4355457d9749
(gnus-summary-thread-gathering-function): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19594
diff
changeset
|
166 (function-item gnus-gather-threads-by-references) |
4355457d9749
(gnus-summary-thread-gathering-function): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19594
diff
changeset
|
167 (function :tag "other"))) |
17493 | 168 |
169 (defcustom gnus-summary-same-subject "" | |
170 "*String indicating that the current article has the same subject as the previous. | |
171 This variable will only be used if the value of | |
172 `gnus-summary-make-false-root' is `empty'." | |
173 :group 'gnus-summary-format | |
174 :type 'string) | |
175 | |
176 (defcustom gnus-summary-goto-unread t | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
177 "*If t, many commands will go to the next unread article. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
178 This applies to marking commands as well as other commands that |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
179 \"naturally\" select the next article, like, for instance, `SPC' at |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
180 the end of an article. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
181 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
182 If nil, the marking commands do NOT go to the next unread article |
48251
fa6138584fae
(gnus-summary-goto-unread): Doc fix - escape open parens in column 0.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47946
diff
changeset
|
183 \(they go to the next article instead). If `never', commands that |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
184 usually go to the next unread article, will go to the next article, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
185 whether it is read or not." |
17493 | 186 :group 'gnus-summary-marks |
187 :link '(custom-manual "(gnus)Setting Marks") | |
188 :type '(choice (const :tag "off" nil) | |
189 (const never) | |
190 (sexp :menu-tag "on" t))) | |
191 | |
192 (defcustom gnus-summary-default-score 0 | |
193 "*Default article score level. | |
194 All scores generated by the score files will be added to this score. | |
195 If this variable is nil, scoring will be disabled." | |
196 :group 'gnus-score-default | |
197 :type '(choice (const :tag "disable") | |
198 integer)) | |
199 | |
200 (defcustom gnus-summary-zcore-fuzz 0 | |
201 "*Fuzziness factor for the zcore in the summary buffer. | |
202 Articles with scores closer than this to `gnus-summary-default-score' | |
203 will not be marked." | |
204 :group 'gnus-summary-format | |
205 :type 'integer) | |
206 | |
207 (defcustom gnus-simplify-subject-fuzzy-regexp nil | |
208 "*Strings to be removed when doing fuzzy matches. | |
209 This can either be a regular expression or list of regular expressions | |
210 that will be removed from subject strings if fuzzy subject | |
211 simplification is selected." | |
212 :group 'gnus-thread | |
213 :type '(repeat regexp)) | |
214 | |
215 (defcustom gnus-show-threads t | |
216 "*If non-nil, display threads in summary mode." | |
217 :group 'gnus-thread | |
218 :type 'boolean) | |
219 | |
220 (defcustom gnus-thread-hide-subtree nil | |
221 "*If non-nil, hide all threads initially. | |
222 If threads are hidden, you have to run the command | |
223 `gnus-summary-show-thread' by hand or use `gnus-select-article-hook' | |
224 to expose hidden threads." | |
225 :group 'gnus-thread | |
226 :type 'boolean) | |
227 | |
228 (defcustom gnus-thread-hide-killed t | |
229 "*If non-nil, hide killed threads automatically." | |
230 :group 'gnus-thread | |
231 :type 'boolean) | |
232 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
233 (defcustom gnus-thread-ignore-subject t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
234 "*If non-nil, which is the default, ignore subjects and do all threading based on the Reference header. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
235 If nil, articles that have different subjects from their parents will |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
236 start separate threads." |
17493 | 237 :group 'gnus-thread |
238 :type 'boolean) | |
239 | |
240 (defcustom gnus-thread-operation-ignore-subject t | |
241 "*If non-nil, subjects will be ignored when doing thread commands. | |
242 This affects commands like `gnus-summary-kill-thread' and | |
243 `gnus-summary-lower-thread'. | |
244 | |
245 If this variable is nil, articles in the same thread with different | |
246 subjects will not be included in the operation in question. If this | |
247 variable is `fuzzy', only articles that have subjects that are fuzzily | |
248 equal will be included." | |
249 :group 'gnus-thread | |
250 :type '(choice (const :tag "off" nil) | |
251 (const fuzzy) | |
252 (sexp :tag "on" t))) | |
253 | |
254 (defcustom gnus-thread-indent-level 4 | |
255 "*Number that says how much each sub-thread should be indented." | |
256 :group 'gnus-thread | |
257 :type 'integer) | |
258 | |
259 (defcustom gnus-auto-extend-newsgroup t | |
260 "*If non-nil, extend newsgroup forward and backward when requested." | |
261 :group 'gnus-summary-choose | |
262 :type 'boolean) | |
263 | |
264 (defcustom gnus-auto-select-first t | |
265 "*If nil, don't select the first unread article when entering a group. | |
266 If this variable is `best', select the highest-scored unread article | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
267 in the group. If t, select the first unread article. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
268 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
269 This variable can also be a function to place point on a likely |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
270 subject line. Useful values include `gnus-summary-first-unread-subject', |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
271 `gnus-summary-first-unread-article' and |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
272 `gnus-summary-best-unread-article'. |
17493 | 273 |
274 If you want to prevent automatic selection of the first unread article | |
275 in some newsgroups, set the variable to nil in | |
276 `gnus-select-group-hook'." | |
277 :group 'gnus-group-select | |
278 :type '(choice (const :tag "none" nil) | |
279 (const best) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
280 (sexp :menu-tag "first" t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
281 (function-item gnus-summary-first-unread-subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
282 (function-item gnus-summary-first-unread-article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
283 (function-item gnus-summary-best-unread-article))) |
17493 | 284 |
285 (defcustom gnus-auto-select-next t | |
286 "*If non-nil, offer to go to the next group from the end of the previous. | |
287 If the value is t and the next newsgroup is empty, Gnus will exit | |
288 summary mode and go back to group mode. If the value is neither nil | |
289 nor t, Gnus will select the following unread newsgroup. In | |
290 particular, if the value is the symbol `quietly', the next unread | |
291 newsgroup will be selected without any confirmation, and if it is | |
292 `almost-quietly', the next group will be selected without any | |
293 confirmation if you are located on the last article in the group. | |
294 Finally, if this variable is `slightly-quietly', the `Z n' command | |
295 will go to the next group without confirmation." | |
296 :group 'gnus-summary-maneuvering | |
297 :type '(choice (const :tag "off" nil) | |
298 (const quietly) | |
299 (const almost-quietly) | |
300 (const slightly-quietly) | |
301 (sexp :menu-tag "on" t))) | |
302 | |
303 (defcustom gnus-auto-select-same nil | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
304 "*If non-nil, select the next article with the same subject. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
305 If there are no more articles with the same subject, go to |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
306 the first unread article." |
17493 | 307 :group 'gnus-summary-maneuvering |
308 :type 'boolean) | |
309 | |
310 (defcustom gnus-summary-check-current nil | |
311 "*If non-nil, consider the current article when moving. | |
312 The \"unread\" movement commands will stay on the same line if the | |
313 current article is unread." | |
314 :group 'gnus-summary-maneuvering | |
315 :type 'boolean) | |
316 | |
317 (defcustom gnus-auto-center-summary t | |
318 "*If non-nil, always center the current summary buffer. | |
319 In particular, if `vertical' do only vertical recentering. If non-nil | |
320 and non-`vertical', do both horizontal and vertical recentering." | |
321 :group 'gnus-summary-maneuvering | |
322 :type '(choice (const :tag "none" nil) | |
323 (const vertical) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
324 (integer :tag "height") |
17493 | 325 (sexp :menu-tag "both" t))) |
326 | |
327 (defcustom gnus-show-all-headers nil | |
328 "*If non-nil, don't hide any headers." | |
329 :group 'gnus-article-hiding | |
330 :group 'gnus-article-headers | |
331 :type 'boolean) | |
332 | |
333 (defcustom gnus-summary-ignore-duplicates nil | |
334 "*If non-nil, ignore articles with identical Message-ID headers." | |
335 :group 'gnus-summary | |
336 :type 'boolean) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
337 |
17493 | 338 (defcustom gnus-single-article-buffer t |
339 "*If non-nil, display all articles in the same buffer. | |
340 If nil, each group will get its own article buffer." | |
341 :group 'gnus-article-various | |
342 :type 'boolean) | |
343 | |
344 (defcustom gnus-break-pages t | |
345 "*If non-nil, do page breaking on articles. | |
346 The page delimiter is specified by the `gnus-page-delimiter' | |
347 variable." | |
348 :group 'gnus-article-various | |
349 :type 'boolean) | |
350 | |
351 (defcustom gnus-move-split-methods nil | |
352 "*Variable used to suggest where articles are to be moved to. | |
353 It uses the same syntax as the `gnus-split-methods' variable." | |
354 :group 'gnus-summary-mail | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
355 :type '(repeat (choice (list :value (fun) function) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
356 (cons :value ("" "") regexp (repeat string)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
357 (sexp :value nil)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
358 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
359 (defcustom gnus-unread-mark ? ;Whitespace |
17493 | 360 "*Mark used for unread articles." |
361 :group 'gnus-summary-marks | |
362 :type 'character) | |
363 | |
364 (defcustom gnus-ticked-mark ?! | |
365 "*Mark used for ticked articles." | |
366 :group 'gnus-summary-marks | |
367 :type 'character) | |
368 | |
369 (defcustom gnus-dormant-mark ?? | |
370 "*Mark used for dormant articles." | |
371 :group 'gnus-summary-marks | |
372 :type 'character) | |
373 | |
374 (defcustom gnus-del-mark ?r | |
375 "*Mark used for del'd articles." | |
376 :group 'gnus-summary-marks | |
377 :type 'character) | |
378 | |
379 (defcustom gnus-read-mark ?R | |
380 "*Mark used for read articles." | |
381 :group 'gnus-summary-marks | |
382 :type 'character) | |
383 | |
384 (defcustom gnus-expirable-mark ?E | |
385 "*Mark used for expirable articles." | |
386 :group 'gnus-summary-marks | |
387 :type 'character) | |
388 | |
389 (defcustom gnus-killed-mark ?K | |
390 "*Mark used for killed articles." | |
391 :group 'gnus-summary-marks | |
392 :type 'character) | |
393 | |
394 (defcustom gnus-souped-mark ?F | |
395 "*Mark used for killed articles." | |
396 :group 'gnus-summary-marks | |
397 :type 'character) | |
398 | |
399 (defcustom gnus-kill-file-mark ?X | |
400 "*Mark used for articles killed by kill files." | |
401 :group 'gnus-summary-marks | |
402 :type 'character) | |
403 | |
404 (defcustom gnus-low-score-mark ?Y | |
405 "*Mark used for articles with a low score." | |
406 :group 'gnus-summary-marks | |
407 :type 'character) | |
408 | |
409 (defcustom gnus-catchup-mark ?C | |
410 "*Mark used for articles that are caught up." | |
411 :group 'gnus-summary-marks | |
412 :type 'character) | |
413 | |
414 (defcustom gnus-replied-mark ?A | |
415 "*Mark used for articles that have been replied to." | |
416 :group 'gnus-summary-marks | |
417 :type 'character) | |
418 | |
419 (defcustom gnus-cached-mark ?* | |
420 "*Mark used for articles that are in the cache." | |
421 :group 'gnus-summary-marks | |
422 :type 'character) | |
423 | |
424 (defcustom gnus-saved-mark ?S | |
425 "*Mark used for articles that have been saved to." | |
426 :group 'gnus-summary-marks | |
427 :type 'character) | |
428 | |
429 (defcustom gnus-ancient-mark ?O | |
430 "*Mark used for ancient articles." | |
431 :group 'gnus-summary-marks | |
432 :type 'character) | |
433 | |
434 (defcustom gnus-sparse-mark ?Q | |
435 "*Mark used for sparsely reffed articles." | |
436 :group 'gnus-summary-marks | |
437 :type 'character) | |
438 | |
439 (defcustom gnus-canceled-mark ?G | |
440 "*Mark used for canceled articles." | |
441 :group 'gnus-summary-marks | |
442 :type 'character) | |
443 | |
444 (defcustom gnus-duplicate-mark ?M | |
445 "*Mark used for duplicate articles." | |
446 :group 'gnus-summary-marks | |
447 :type 'character) | |
448 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
449 (defcustom gnus-undownloaded-mark ?@ |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
450 "*Mark used for articles that weren't downloaded." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
451 :group 'gnus-summary-marks |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
452 :type 'character) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
453 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
454 (defcustom gnus-downloadable-mark ?% |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
455 "*Mark used for articles that are to be downloaded." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
456 :group 'gnus-summary-marks |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
457 :type 'character) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
458 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
459 (defcustom gnus-unsendable-mark ?= |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
460 "*Mark used for articles that won't be sent." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
461 :group 'gnus-summary-marks |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
462 :type 'character) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
463 |
17493 | 464 (defcustom gnus-score-over-mark ?+ |
465 "*Score mark used for articles with high scores." | |
466 :group 'gnus-summary-marks | |
467 :type 'character) | |
468 | |
469 (defcustom gnus-score-below-mark ?- | |
470 "*Score mark used for articles with low scores." | |
471 :group 'gnus-summary-marks | |
472 :type 'character) | |
473 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
474 (defcustom gnus-empty-thread-mark ? ;Whitespace |
17493 | 475 "*There is no thread under the article." |
476 :group 'gnus-summary-marks | |
477 :type 'character) | |
478 | |
479 (defcustom gnus-not-empty-thread-mark ?= | |
480 "*There is a thread under the article." | |
481 :group 'gnus-summary-marks | |
482 :type 'character) | |
483 | |
484 (defcustom gnus-view-pseudo-asynchronously nil | |
485 "*If non-nil, Gnus will view pseudo-articles asynchronously." | |
486 :group 'gnus-extract-view | |
487 :type 'boolean) | |
488 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
489 (defcustom gnus-auto-expirable-marks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
490 (list gnus-killed-mark gnus-del-mark gnus-catchup-mark |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
491 gnus-low-score-mark gnus-ancient-mark gnus-read-mark |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
492 gnus-souped-mark gnus-duplicate-mark) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
493 "*The list of marks converted into expiration if a group is auto-expirable." |
33399 | 494 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
495 :group 'gnus-summary |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
496 :type '(repeat character)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
497 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
498 (defcustom gnus-inhibit-user-auto-expire t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
499 "*If non-nil, user marking commands will not mark an article as expirable, even if the group has auto-expire turned on." |
33399 | 500 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
501 :group 'gnus-summary |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
502 :type 'boolean) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
503 |
17493 | 504 (defcustom gnus-view-pseudos nil |
505 "*If `automatic', pseudo-articles will be viewed automatically. | |
506 If `not-confirm', pseudos will be viewed automatically, and the user | |
507 will not be asked to confirm the command." | |
508 :group 'gnus-extract-view | |
509 :type '(choice (const :tag "off" nil) | |
510 (const automatic) | |
511 (const not-confirm))) | |
512 | |
513 (defcustom gnus-view-pseudos-separately t | |
514 "*If non-nil, one pseudo-article will be created for each file to be viewed. | |
515 If nil, all files that use the same viewing command will be given as a | |
516 list of parameters to that command." | |
517 :group 'gnus-extract-view | |
518 :type 'boolean) | |
519 | |
520 (defcustom gnus-insert-pseudo-articles t | |
521 "*If non-nil, insert pseudo-articles when decoding articles." | |
522 :group 'gnus-extract-view | |
523 :type 'boolean) | |
524 | |
525 (defcustom gnus-summary-dummy-line-format | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
526 " %(: :%) %S\n" |
17493 | 527 "*The format specification for the dummy roots in the summary buffer. |
528 It works along the same lines as a normal formatting string, | |
529 with some simple extensions. | |
530 | |
531 %S The subject" | |
532 :group 'gnus-threading | |
533 :type 'string) | |
534 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
535 (defcustom gnus-summary-mode-line-format "Gnus: %g [%A] %Z" |
17493 | 536 "*The format specification for the summary mode line. |
537 It works along the same lines as a normal formatting string, | |
538 with some simple extensions: | |
539 | |
540 %G Group name | |
541 %p Unprefixed group name | |
542 %A Current article number | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
543 %z Current article score |
17493 | 544 %V Gnus version |
545 %U Number of unread articles in the group | |
546 %e Number of unselected articles in the group | |
547 %Z A string with unread/unselected article counts | |
548 %g Shortish group name | |
549 %S Subject of the current article | |
550 %u User-defined spec | |
551 %s Current score file name | |
552 %d Number of dormant articles | |
553 %r Number of articles that have been marked as read in this session | |
554 %E Number of articles expunged by the score files" | |
555 :group 'gnus-summary-format | |
556 :type 'string) | |
557 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
558 (defcustom gnus-list-identifiers nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
559 "Regexp that matches list identifiers to be removed from subject. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
560 This can also be a list of regexps." |
33399 | 561 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
562 :group 'gnus-summary-format |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
563 :group 'gnus-article-hiding |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
564 :type '(choice (const :tag "none" nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
565 (regexp :value ".*") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
566 (repeat :value (".*") regexp))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
567 |
17493 | 568 (defcustom gnus-summary-mark-below 0 |
569 "*Mark all articles with a score below this variable as read. | |
570 This variable is local to each summary buffer and usually set by the | |
571 score file." | |
572 :group 'gnus-score-default | |
573 :type 'integer) | |
574 | |
575 (defcustom gnus-article-sort-functions '(gnus-article-sort-by-number) | |
576 "*List of functions used for sorting articles in the summary buffer. | |
577 This variable is only used when not using a threaded display." | |
578 :group 'gnus-summary-sort | |
579 :type '(repeat (choice (function-item gnus-article-sort-by-number) | |
580 (function-item gnus-article-sort-by-author) | |
581 (function-item gnus-article-sort-by-subject) | |
582 (function-item gnus-article-sort-by-date) | |
583 (function-item gnus-article-sort-by-score) | |
584 (function :tag "other")))) | |
585 | |
586 (defcustom gnus-thread-sort-functions '(gnus-thread-sort-by-number) | |
587 "*List of functions used for sorting threads in the summary buffer. | |
588 By default, threads are sorted by article number. | |
589 | |
590 Each function takes two threads and return non-nil if the first thread | |
591 should be sorted before the other. If you use more than one function, | |
592 the primary sort function should be the last. You should probably | |
593 always include `gnus-thread-sort-by-number' in the list of sorting | |
594 functions -- preferably first. | |
595 | |
596 Ready-made functions include `gnus-thread-sort-by-number', | |
597 `gnus-thread-sort-by-author', `gnus-thread-sort-by-subject', | |
598 `gnus-thread-sort-by-date', `gnus-thread-sort-by-score' and | |
599 `gnus-thread-sort-by-total-score' (see `gnus-thread-score-function')." | |
600 :group 'gnus-summary-sort | |
601 :type '(repeat (choice (function-item gnus-thread-sort-by-number) | |
602 (function-item gnus-thread-sort-by-author) | |
603 (function-item gnus-thread-sort-by-subject) | |
604 (function-item gnus-thread-sort-by-date) | |
605 (function-item gnus-thread-sort-by-score) | |
606 (function-item gnus-thread-sort-by-total-score) | |
607 (function :tag "other")))) | |
608 | |
609 (defcustom gnus-thread-score-function '+ | |
610 "*Function used for calculating the total score of a thread. | |
611 | |
612 The function is called with the scores of the article and each | |
613 subthread and should then return the score of the thread. | |
614 | |
615 Some functions you can use are `+', `max', or `min'." | |
616 :group 'gnus-summary-sort | |
617 :type 'function) | |
618 | |
619 (defcustom gnus-summary-expunge-below nil | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
620 "All articles that have a score less than this variable will be expunged. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
621 This variable is local to the summary buffers." |
17493 | 622 :group 'gnus-score-default |
623 :type '(choice (const :tag "off" nil) | |
624 integer)) | |
625 | |
626 (defcustom gnus-thread-expunge-below nil | |
627 "All threads that have a total score less than this variable will be expunged. | |
628 See `gnus-thread-score-function' for en explanation of what a | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
629 \"thread score\" is. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
630 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
631 This variable is local to the summary buffers." |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
632 :group 'gnus-threading |
17493 | 633 :group 'gnus-score-default |
634 :type '(choice (const :tag "off" nil) | |
635 integer)) | |
636 | |
637 (defcustom gnus-summary-mode-hook nil | |
638 "*A hook for Gnus summary mode. | |
639 This hook is run before any variables are set in the summary buffer." | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
640 :options '(turn-on-gnus-mailing-list-mode) |
17493 | 641 :group 'gnus-summary-various |
642 :type 'hook) | |
643 | |
644 (defcustom gnus-summary-menu-hook nil | |
645 "*Hook run after the creation of the summary mode menu." | |
646 :group 'gnus-summary-visual | |
647 :type 'hook) | |
648 | |
649 (defcustom gnus-summary-exit-hook nil | |
650 "*A hook called on exit from the summary buffer. | |
651 It will be called with point in the group buffer." | |
652 :group 'gnus-summary-exit | |
653 :type 'hook) | |
654 | |
655 (defcustom gnus-summary-prepare-hook nil | |
656 "*A hook called after the summary buffer has been generated. | |
657 If you want to modify the summary buffer, you can use this hook." | |
658 :group 'gnus-summary-various | |
659 :type 'hook) | |
660 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
661 (defcustom gnus-summary-prepared-hook nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
662 "*A hook called as the last thing after the summary buffer has been generated." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
663 :group 'gnus-summary-various |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
664 :type 'hook) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
665 |
17493 | 666 (defcustom gnus-summary-generate-hook nil |
667 "*A hook run just before generating the summary buffer. | |
668 This hook is commonly used to customize threading variables and the | |
669 like." | |
670 :group 'gnus-summary-various | |
671 :type 'hook) | |
672 | |
673 (defcustom gnus-select-group-hook nil | |
674 "*A hook called when a newsgroup is selected. | |
675 | |
676 If you'd like to simplify subjects like the | |
677 `gnus-summary-next-same-subject' command does, you can use the | |
678 following hook: | |
679 | |
680 (setq gnus-select-group-hook | |
681 (list | |
682 (lambda () | |
683 (mapcar (lambda (header) | |
684 (mail-header-set-subject | |
685 header | |
686 (gnus-simplify-subject | |
687 (mail-header-subject header) 're-only))) | |
688 gnus-newsgroup-headers))))" | |
689 :group 'gnus-group-select | |
690 :type 'hook) | |
691 | |
692 (defcustom gnus-select-article-hook nil | |
693 "*A hook called when an article is selected." | |
694 :group 'gnus-summary-choose | |
695 :type 'hook) | |
696 | |
697 (defcustom gnus-visual-mark-article-hook | |
698 (list 'gnus-highlight-selected-summary) | |
699 "*Hook run after selecting an article in the summary buffer. | |
700 It is meant to be used for highlighting the article in some way. It | |
701 is not run if `gnus-visual' is nil." | |
702 :group 'gnus-summary-visual | |
703 :type 'hook) | |
704 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
705 (defcustom gnus-parse-headers-hook nil |
17493 | 706 "*A hook called before parsing the headers." |
707 :group 'gnus-various | |
708 :type 'hook) | |
709 | |
710 (defcustom gnus-exit-group-hook nil | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
711 "*A hook called when exiting summary mode. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
712 This hook is not called from the non-updating exit commands like `Q'." |
17493 | 713 :group 'gnus-various |
714 :type 'hook) | |
715 | |
716 (defcustom gnus-summary-update-hook | |
717 (list 'gnus-summary-highlight-line) | |
718 "*A hook called when a summary line is changed. | |
719 The hook will not be called if `gnus-visual' is nil. | |
720 | |
721 The default function `gnus-summary-highlight-line' will | |
722 highlight the line according to the `gnus-summary-highlight' | |
723 variable." | |
724 :group 'gnus-summary-visual | |
725 :type 'hook) | |
726 | |
727 (defcustom gnus-mark-article-hook '(gnus-summary-mark-read-and-unread-as-read) | |
728 "*A hook called when an article is selected for the first time. | |
729 The hook is intended to mark an article as read (or unread) | |
730 automatically when it is selected." | |
731 :group 'gnus-summary-choose | |
732 :type 'hook) | |
733 | |
734 (defcustom gnus-group-no-more-groups-hook nil | |
735 "*A hook run when returning to group mode having no more (unread) groups." | |
736 :group 'gnus-group-select | |
737 :type 'hook) | |
738 | |
739 (defcustom gnus-ps-print-hook nil | |
740 "*A hook run before ps-printing something from Gnus." | |
741 :group 'gnus-summary | |
742 :type 'hook) | |
743 | |
744 (defcustom gnus-summary-selected-face 'gnus-summary-selected-face | |
745 "Face used for highlighting the current article in the summary buffer." | |
746 :group 'gnus-summary-visual | |
747 :type 'face) | |
748 | |
749 (defcustom gnus-summary-highlight | |
750 '(((= mark gnus-canceled-mark) | |
751 . gnus-summary-cancelled-face) | |
752 ((and (> score default) | |
753 (or (= mark gnus-dormant-mark) | |
754 (= mark gnus-ticked-mark))) | |
755 . gnus-summary-high-ticked-face) | |
756 ((and (< score default) | |
757 (or (= mark gnus-dormant-mark) | |
758 (= mark gnus-ticked-mark))) | |
759 . gnus-summary-low-ticked-face) | |
760 ((or (= mark gnus-dormant-mark) | |
761 (= mark gnus-ticked-mark)) | |
762 . gnus-summary-normal-ticked-face) | |
763 ((and (> score default) (= mark gnus-ancient-mark)) | |
764 . gnus-summary-high-ancient-face) | |
765 ((and (< score default) (= mark gnus-ancient-mark)) | |
766 . gnus-summary-low-ancient-face) | |
767 ((= mark gnus-ancient-mark) | |
768 . gnus-summary-normal-ancient-face) | |
769 ((and (> score default) (= mark gnus-unread-mark)) | |
770 . gnus-summary-high-unread-face) | |
771 ((and (< score default) (= mark gnus-unread-mark)) | |
772 . gnus-summary-low-unread-face) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
773 ((= mark gnus-unread-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
774 . gnus-summary-normal-unread-face) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
775 ((and (> score default) (memq mark (list gnus-downloadable-mark |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
776 gnus-undownloaded-mark))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
777 . gnus-summary-high-unread-face) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
778 ((and (< score default) (memq mark (list gnus-downloadable-mark |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
779 gnus-undownloaded-mark))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
780 . gnus-summary-low-unread-face) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
781 ((memq mark (list gnus-downloadable-mark gnus-undownloaded-mark)) |
17493 | 782 . gnus-summary-normal-unread-face) |
783 ((> score default) | |
784 . gnus-summary-high-read-face) | |
785 ((< score default) | |
786 . gnus-summary-low-read-face) | |
787 (t | |
788 . gnus-summary-normal-read-face)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
789 "*Controls the highlighting of summary buffer lines. |
17493 | 790 |
46156
b75397971f66
(gnus-summary-highlight): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
44515
diff
changeset
|
791 A list of (FORM . FACE) pairs. When deciding how a particular summary |
b75397971f66
(gnus-summary-highlight): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
44515
diff
changeset
|
792 line should be displayed, each form is evaluated. The content of the |
b75397971f66
(gnus-summary-highlight): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
44515
diff
changeset
|
793 face field after the first true form is used. You can change how those |
b75397971f66
(gnus-summary-highlight): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
44515
diff
changeset
|
794 summary lines are displayed, by editing the face field. |
17493 | 795 |
796 You can use the following variables in the FORM field. | |
797 | |
798 score: The articles score | |
799 default: The default article score. | |
800 below: The score below which articles are automatically marked as read. | |
801 mark: The articles mark." | |
802 :group 'gnus-summary-visual | |
803 :type '(repeat (cons (sexp :tag "Form" nil) | |
804 face))) | |
805 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
806 (defcustom gnus-alter-header-function nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
807 "Function called to allow alteration of article header structures. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
808 The function is called with one parameter, the article header vector, |
49283
735a1f4fc9e0
* gnus-sum.el (gnus-alter-header-function): Add type and group.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
48588
diff
changeset
|
809 which it may alter in any way." |
735a1f4fc9e0
* gnus-sum.el (gnus-alter-header-function): Add type and group.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
48588
diff
changeset
|
810 :type '(choice (const :tag "None" nil) |
735a1f4fc9e0
* gnus-sum.el (gnus-alter-header-function): Add type and group.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
48588
diff
changeset
|
811 function) |
735a1f4fc9e0
* gnus-sum.el (gnus-alter-header-function): Add type and group.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
48588
diff
changeset
|
812 :group 'gnus-summary) |
17493 | 813 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
814 (defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
815 "Variable that says which function should be used to decode a string with encoded words.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
816 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
817 (defcustom gnus-extra-headers nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
818 "*Extra headers to parse." |
33399 | 819 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
820 :group 'gnus-summary |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
821 :type '(repeat symbol)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
822 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
823 (defcustom gnus-ignored-from-addresses |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
824 (and user-mail-address (regexp-quote user-mail-address)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
825 "*Regexp of From headers that may be suppressed in favor of To headers." |
33399 | 826 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
827 :group 'gnus-summary |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
828 :type 'regexp) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
829 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
830 (defcustom gnus-group-charset-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
831 '(("^hk\\>\\|^tw\\>\\|\\<big5\\>" cn-big5) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
832 ("^cn\\>\\|\\<chinese\\>" cn-gb-2312) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
833 ("^fj\\>\\|^japan\\>" iso-2022-jp-2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
834 ("^tnn\\>\\|^pin\\>\\|^sci.lang.japan" iso-2022-7bit) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
835 ("^relcom\\>" koi8-r) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
836 ("^fido7\\>" koi8-r) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
837 ("^\\(cz\\|hun\\|pl\\|sk\\|hr\\)\\>" iso-8859-2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
838 ("^israel\\>" iso-8859-1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
839 ("^han\\>" euc-kr) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
840 ("^alt.chinese.text.big5\\>" chinese-big5) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
841 ("^soc.culture.vietnamese\\>" vietnamese-viqr) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
842 ("^\\(comp\\|rec\\|alt\\|sci\\|soc\\|news\\|gnu\\|bofh\\)\\>" iso-8859-1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
843 (".*" iso-8859-1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
844 "Alist of regexps (to match group names) and default charsets to be used when reading." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
845 :type '(repeat (list (regexp :tag "Group") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
846 (symbol :tag "Charset"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
847 :group 'gnus-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
848 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
849 (defcustom gnus-newsgroup-ignored-charsets '(unknown-8bit x-unknown) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
850 "List of charsets that should be ignored. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
851 When these charsets are used in the \"charset\" parameter, the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
852 default charset will be used instead." |
33399 | 853 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
854 :type '(repeat symbol) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
855 :group 'gnus-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
856 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
857 (defcustom gnus-group-ignored-charsets-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
858 '(("alt\\.chinese\\.text" iso-8859-1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
859 "Alist of regexps (to match group names) and charsets that should be ignored. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
860 When these charsets are used in the \"charset\" parameter, the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
861 default charset will be used instead." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
862 :type '(repeat (cons (regexp :tag "Group") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
863 (repeat symbol))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
864 :group 'gnus-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
865 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
866 (defcustom gnus-group-highlight-words-alist nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
867 "Alist of group regexps and highlight regexps. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
868 This variable uses the same syntax as `gnus-emphasis-alist'." |
33399 | 869 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
870 :type '(repeat (cons (regexp :tag "Group") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
871 (repeat (list (regexp :tag "Highlight regexp") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
872 (number :tag "Group for entire word" 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
873 (number :tag "Group for displayed part" 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
874 (symbol :tag "Face" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
875 gnus-emphasis-highlight-words))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
876 :group 'gnus-summary-visual) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
877 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
878 (defcustom gnus-summary-show-article-charset-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
879 nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
880 "Alist of number and charset. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
881 The article will be shown with the charset corresponding to the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
882 numbered argument. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
883 For example: ((1 . cn-gb-2312) (2 . big5))." |
33399 | 884 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
885 :type '(repeat (cons (number :tag "Argument" 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
886 (symbol :tag "Charset"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
887 :group 'gnus-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
888 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
889 (defcustom gnus-preserve-marks t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
890 "Whether marks are preserved when moving, copying and respooling messages." |
33399 | 891 :version "21.1" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
892 :type 'boolean |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
893 :group 'gnus-summary-marks) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
894 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
895 (defcustom gnus-alter-articles-to-read-function nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
896 "Function to be called to alter the list of articles to be selected." |
35977
8b4e5c2b7d7f
(gnus-alter-articles-to-read-function): Fix :type.
Dave Love <fx@gnu.org>
parents:
35957
diff
changeset
|
897 :type '(choice (const nil) function) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
898 :group 'gnus-summary) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
899 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
900 (defcustom gnus-orphan-score nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
901 "*All orphans get this score added. Set in the score file." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
902 :group 'gnus-score-default |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
903 :type '(choice (const nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
904 integer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
905 |
31785 | 906 (defcustom gnus-summary-save-parts-default-mime "image/.*" |
907 "*A regexp to match MIME parts when saving multiple parts of a message | |
908 with gnus-summary-save-parts (X m). This regexp will be used by default | |
909 when prompting the user for which type of files to save." | |
910 :group 'gnus-summary | |
911 :type 'regexp) | |
912 | |
913 | |
17493 | 914 ;;; Internal variables |
915 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
916 (defvar gnus-article-mime-handles nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
917 (defvar gnus-article-decoded-p nil) |
17493 | 918 (defvar gnus-scores-exclude-files nil) |
919 (defvar gnus-page-broken nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
920 (defvar gnus-inhibit-mime-unbuttonizing nil) |
17493 | 921 |
922 (defvar gnus-original-article nil) | |
923 (defvar gnus-article-internal-prepare-hook nil) | |
924 (defvar gnus-newsgroup-process-stack nil) | |
925 | |
926 (defvar gnus-thread-indent-array nil) | |
927 (defvar gnus-thread-indent-array-level gnus-thread-indent-level) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
928 (defvar gnus-sort-gathered-threads-function 'gnus-thread-sort-by-number |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
929 "Function called to sort the articles within a thread after it has been gathered together.") |
17493 | 930 |
31785 | 931 (defvar gnus-summary-save-parts-type-history nil) |
932 (defvar gnus-summary-save-parts-last-directory nil) | |
933 | |
17493 | 934 ;; Avoid highlighting in kill files. |
935 (defvar gnus-summary-inhibit-highlight nil) | |
936 (defvar gnus-newsgroup-selected-overlay nil) | |
937 (defvar gnus-inhibit-limiting nil) | |
938 (defvar gnus-newsgroup-adaptive-score-file nil) | |
939 (defvar gnus-current-score-file nil) | |
940 (defvar gnus-current-move-group nil) | |
941 (defvar gnus-current-copy-group nil) | |
942 (defvar gnus-current-crosspost-group nil) | |
943 | |
944 (defvar gnus-newsgroup-dependencies nil) | |
945 (defvar gnus-newsgroup-adaptive nil) | |
946 (defvar gnus-summary-display-article-function nil) | |
947 (defvar gnus-summary-highlight-line-function nil | |
948 "Function called after highlighting a summary line.") | |
949 | |
950 (defvar gnus-summary-line-format-alist | |
951 `((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d) | |
952 (?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s) | |
953 (?s gnus-tmp-subject-or-nil ?s) | |
954 (?n gnus-tmp-name ?s) | |
955 (?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from))) | |
956 ?s) | |
957 (?a (or (car (funcall gnus-extract-address-components gnus-tmp-from)) | |
958 gnus-tmp-from) ?s) | |
959 (?F gnus-tmp-from ?s) | |
960 (?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s) | |
961 (?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s) | |
962 (?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
963 (?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s) |
17493 | 964 (?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s) |
965 (?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s) | |
966 (?c (or (mail-header-chars gnus-tmp-header) 0) ?d) | |
967 (?L gnus-tmp-lines ?d) | |
968 (?I gnus-tmp-indentation ?s) | |
969 (?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s) | |
970 (?R gnus-tmp-replied ?c) | |
971 (?\[ gnus-tmp-opening-bracket ?c) | |
972 (?\] gnus-tmp-closing-bracket ?c) | |
973 (?\> (make-string gnus-tmp-level ? ) ?s) | |
974 (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s) | |
975 (?i gnus-tmp-score ?d) | |
976 (?z gnus-tmp-score-char ?c) | |
977 (?l (bbb-grouplens-score gnus-tmp-header) ?s) | |
978 (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d) | |
979 (?U gnus-tmp-unread ?c) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
980 (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header) ?s) |
17493 | 981 (?t (gnus-summary-number-of-articles-in-thread |
982 (and (boundp 'thread) (car thread)) gnus-tmp-level) | |
983 ?d) | |
984 (?e (gnus-summary-number-of-articles-in-thread | |
985 (and (boundp 'thread) (car thread)) gnus-tmp-level t) | |
986 ?c) | |
987 (?u gnus-tmp-user-defined ?s) | |
988 (?P (gnus-pick-line-number) ?d)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
989 "An alist of format specifications that can appear in summary lines. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
990 These are paired with what variables they correspond with, along with |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
991 the type of the variable (string, integer, character, etc).") |
17493 | 992 |
993 (defvar gnus-summary-dummy-line-format-alist | |
994 `((?S gnus-tmp-subject ?s) | |
995 (?N gnus-tmp-number ?d) | |
996 (?u gnus-tmp-user-defined ?s))) | |
997 | |
998 (defvar gnus-summary-mode-line-format-alist | |
999 `((?G gnus-tmp-group-name ?s) | |
1000 (?g (gnus-short-group-name gnus-tmp-group-name) ?s) | |
1001 (?p (gnus-group-real-name gnus-tmp-group-name) ?s) | |
1002 (?A gnus-tmp-article-number ?d) | |
1003 (?Z gnus-tmp-unread-and-unselected ?s) | |
1004 (?V gnus-version ?s) | |
1005 (?U gnus-tmp-unread-and-unticked ?d) | |
1006 (?S gnus-tmp-subject ?s) | |
1007 (?e gnus-tmp-unselected ?d) | |
1008 (?u gnus-tmp-user-defined ?s) | |
1009 (?d (length gnus-newsgroup-dormant) ?d) | |
1010 (?t (length gnus-newsgroup-marked) ?d) | |
1011 (?r (length gnus-newsgroup-reads) ?d) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1012 (?z (gnus-summary-article-score gnus-tmp-article-number) ?d) |
17493 | 1013 (?E gnus-newsgroup-expunged-tally ?d) |
1014 (?s (gnus-current-score-file-nondirectory) ?s))) | |
1015 | |
1016 (defvar gnus-last-search-regexp nil | |
1017 "Default regexp for article search command.") | |
1018 | |
1019 (defvar gnus-last-shell-command nil | |
1020 "Default shell command on article.") | |
1021 | |
1022 (defvar gnus-newsgroup-begin nil) | |
1023 (defvar gnus-newsgroup-end nil) | |
1024 (defvar gnus-newsgroup-last-rmail nil) | |
1025 (defvar gnus-newsgroup-last-mail nil) | |
1026 (defvar gnus-newsgroup-last-folder nil) | |
1027 (defvar gnus-newsgroup-last-file nil) | |
1028 (defvar gnus-newsgroup-auto-expire nil) | |
1029 (defvar gnus-newsgroup-active nil) | |
1030 | |
1031 (defvar gnus-newsgroup-data nil) | |
1032 (defvar gnus-newsgroup-data-reverse nil) | |
1033 (defvar gnus-newsgroup-limit nil) | |
1034 (defvar gnus-newsgroup-limits nil) | |
1035 | |
1036 (defvar gnus-newsgroup-unreads nil | |
1037 "List of unread articles in the current newsgroup.") | |
1038 | |
1039 (defvar gnus-newsgroup-unselected nil | |
1040 "List of unselected unread articles in the current newsgroup.") | |
1041 | |
1042 (defvar gnus-newsgroup-reads nil | |
1043 "Alist of read articles and article marks in the current newsgroup.") | |
1044 | |
1045 (defvar gnus-newsgroup-expunged-tally nil) | |
1046 | |
1047 (defvar gnus-newsgroup-marked nil | |
1048 "List of ticked articles in the current newsgroup (a subset of unread art).") | |
1049 | |
1050 (defvar gnus-newsgroup-killed nil | |
1051 "List of ranges of articles that have been through the scoring process.") | |
1052 | |
1053 (defvar gnus-newsgroup-cached nil | |
1054 "List of articles that come from the article cache.") | |
1055 | |
1056 (defvar gnus-newsgroup-saved nil | |
1057 "List of articles that have been saved.") | |
1058 | |
1059 (defvar gnus-newsgroup-kill-headers nil) | |
1060 | |
1061 (defvar gnus-newsgroup-replied nil | |
1062 "List of articles that have been replied to in the current newsgroup.") | |
1063 | |
1064 (defvar gnus-newsgroup-expirable nil | |
1065 "List of articles in the current newsgroup that can be expired.") | |
1066 | |
1067 (defvar gnus-newsgroup-processable nil | |
1068 "List of articles in the current newsgroup that can be processed.") | |
1069 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1070 (defvar gnus-newsgroup-downloadable nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1071 "List of articles in the current newsgroup that can be processed.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1072 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1073 (defvar gnus-newsgroup-undownloaded nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1074 "List of articles in the current newsgroup that haven't been downloaded..") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1075 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1076 (defvar gnus-newsgroup-unsendable nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1077 "List of articles in the current newsgroup that won't be sent.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1078 |
17493 | 1079 (defvar gnus-newsgroup-bookmarks nil |
1080 "List of articles in the current newsgroup that have bookmarks.") | |
1081 | |
1082 (defvar gnus-newsgroup-dormant nil | |
1083 "List of dormant articles in the current newsgroup.") | |
1084 | |
1085 (defvar gnus-newsgroup-scored nil | |
1086 "List of scored articles in the current newsgroup.") | |
1087 | |
1088 (defvar gnus-newsgroup-headers nil | |
1089 "List of article headers in the current newsgroup.") | |
1090 | |
1091 (defvar gnus-newsgroup-threads nil) | |
1092 | |
1093 (defvar gnus-newsgroup-prepared nil | |
1094 "Whether the current group has been prepared properly.") | |
1095 | |
1096 (defvar gnus-newsgroup-ancient nil | |
1097 "List of `gnus-fetch-old-headers' articles in the current newsgroup.") | |
1098 | |
1099 (defvar gnus-newsgroup-sparse nil) | |
1100 | |
1101 (defvar gnus-current-article nil) | |
1102 (defvar gnus-article-current nil) | |
1103 (defvar gnus-current-headers nil) | |
1104 (defvar gnus-have-all-headers nil) | |
1105 (defvar gnus-last-article nil) | |
1106 (defvar gnus-newsgroup-history nil) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1107 (defvar gnus-newsgroup-charset nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1108 (defvar gnus-newsgroup-ephemeral-charset nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1109 (defvar gnus-newsgroup-ephemeral-ignored-charsets nil) |
17493 | 1110 |
1111 (defconst gnus-summary-local-variables | |
1112 '(gnus-newsgroup-name | |
1113 gnus-newsgroup-begin gnus-newsgroup-end | |
1114 gnus-newsgroup-last-rmail gnus-newsgroup-last-mail | |
1115 gnus-newsgroup-last-folder gnus-newsgroup-last-file | |
1116 gnus-newsgroup-auto-expire gnus-newsgroup-unreads | |
1117 gnus-newsgroup-unselected gnus-newsgroup-marked | |
1118 gnus-newsgroup-reads gnus-newsgroup-saved | |
1119 gnus-newsgroup-replied gnus-newsgroup-expirable | |
1120 gnus-newsgroup-processable gnus-newsgroup-killed | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1121 gnus-newsgroup-downloadable gnus-newsgroup-undownloaded |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1122 gnus-newsgroup-unsendable |
17493 | 1123 gnus-newsgroup-bookmarks gnus-newsgroup-dormant |
1124 gnus-newsgroup-headers gnus-newsgroup-threads | |
1125 gnus-newsgroup-prepared gnus-summary-highlight-line-function | |
1126 gnus-current-article gnus-current-headers gnus-have-all-headers | |
1127 gnus-last-article gnus-article-internal-prepare-hook | |
1128 gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay | |
1129 gnus-newsgroup-scored gnus-newsgroup-kill-headers | |
1130 gnus-thread-expunge-below | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1131 gnus-score-alist gnus-current-score-file |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1132 (gnus-summary-expunge-below . global) |
17493 | 1133 (gnus-summary-mark-below . global) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1134 (gnus-orphan-score . global) |
17493 | 1135 gnus-newsgroup-active gnus-scores-exclude-files |
1136 gnus-newsgroup-history gnus-newsgroup-ancient | |
1137 gnus-newsgroup-sparse gnus-newsgroup-process-stack | |
1138 (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring) | |
1139 gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1) | |
1140 (gnus-newsgroup-expunged-tally . 0) | |
1141 gnus-cache-removable-articles gnus-newsgroup-cached | |
1142 gnus-newsgroup-data gnus-newsgroup-data-reverse | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1143 gnus-newsgroup-limit gnus-newsgroup-limits |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1144 gnus-newsgroup-charset) |
17493 | 1145 "Variables that are buffer-local to the summary buffers.") |
1146 | |
1147 ;; Byte-compiler warning. | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1148 (eval-when-compile (defvar gnus-article-mode-map)) |
17493 | 1149 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1150 ;; MIME stuff. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1151 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1152 (defvar gnus-decode-encoded-word-methods |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1153 '(mail-decode-encoded-word-string) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1154 "List of methods used to decode encoded words. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1155 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1156 This variable is a list of FUNCTION or (REGEXP . FUNCTION). If item is |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1157 FUNCTION, FUNCTION will be apply to all newsgroups. If item is a |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1158 (REGEXP . FUNCTION), FUNCTION will be only apply to thes newsgroups |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1159 whose names match REGEXP. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1160 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1161 For example: |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1162 ((\"chinese\" . gnus-decode-encoded-word-string-by-guess) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1163 mail-decode-encoded-word-string |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1164 (\"chinese\" . rfc1843-decode-string))") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1165 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1166 (defvar gnus-decode-encoded-word-methods-cache nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1167 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1168 (defun gnus-multi-decode-encoded-word-string (string) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1169 "Apply the functions from `gnus-encoded-word-methods' that match." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1170 (unless (and gnus-decode-encoded-word-methods-cache |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1171 (eq gnus-newsgroup-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1172 (car gnus-decode-encoded-word-methods-cache))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1173 (setq gnus-decode-encoded-word-methods-cache (list gnus-newsgroup-name)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1174 (mapcar (lambda (x) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1175 (if (symbolp x) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1176 (nconc gnus-decode-encoded-word-methods-cache (list x)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1177 (if (and gnus-newsgroup-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1178 (string-match (car x) gnus-newsgroup-name)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1179 (nconc gnus-decode-encoded-word-methods-cache |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1180 (list (cdr x)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1181 gnus-decode-encoded-word-methods)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1182 (let ((xlist gnus-decode-encoded-word-methods-cache)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1183 (pop xlist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1184 (while xlist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1185 (setq string (funcall (pop xlist) string)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1186 string) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1187 |
17493 | 1188 ;; Subject simplification. |
1189 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1190 (defun gnus-simplify-whitespace (str) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1191 "Remove excessive whitespace from STR." |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1192 (let ((mystr str)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1193 ;; Multiple spaces. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1194 (while (string-match "[ \t][ \t]+" mystr) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1195 (setq mystr (concat (substring mystr 0 (match-beginning 0)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1196 " " |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1197 (substring mystr (match-end 0))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1198 ;; Leading spaces. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1199 (when (string-match "^[ \t]+" mystr) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1200 (setq mystr (substring mystr (match-end 0)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1201 ;; Trailing spaces. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1202 (when (string-match "[ \t]+$" mystr) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1203 (setq mystr (substring mystr 0 (match-beginning 0)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1204 mystr)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1205 |
17493 | 1206 (defsubst gnus-simplify-subject-re (subject) |
1207 "Remove \"Re:\" from subject lines." | |
1208 (if (string-match "^[Rr][Ee]: *" subject) | |
1209 (substring subject (match-end 0)) | |
1210 subject)) | |
1211 | |
1212 (defun gnus-simplify-subject (subject &optional re-only) | |
1213 "Remove `Re:' and words in parentheses. | |
1214 If RE-ONLY is non-nil, strip leading `Re:'s only." | |
1215 (let ((case-fold-search t)) ;Ignore case. | |
1216 ;; Remove `Re:', `Re^N:', `Re(n)', and `Re[n]:'. | |
1217 (when (string-match "\\`\\(re\\([[(^][0-9]+[])]?\\)?:[ \t]*\\)+" subject) | |
1218 (setq subject (substring subject (match-end 0)))) | |
1219 ;; Remove uninteresting prefixes. | |
1220 (when (and (not re-only) | |
1221 gnus-simplify-ignored-prefixes | |
1222 (string-match gnus-simplify-ignored-prefixes subject)) | |
1223 (setq subject (substring subject (match-end 0)))) | |
1224 ;; Remove words in parentheses from end. | |
1225 (unless re-only | |
1226 (while (string-match "[ \t\n]*([^()]*)[ \t\n]*\\'" subject) | |
1227 (setq subject (substring subject 0 (match-beginning 0))))) | |
1228 ;; Return subject string. | |
1229 subject)) | |
1230 | |
1231 ;; Remove any leading "re:"s, any trailing paren phrases, and simplify | |
1232 ;; all whitespace. | |
1233 (defsubst gnus-simplify-buffer-fuzzy-step (regexp &optional newtext) | |
1234 (goto-char (point-min)) | |
1235 (while (re-search-forward regexp nil t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1236 (replace-match (or newtext "")))) |
17493 | 1237 |
1238 (defun gnus-simplify-buffer-fuzzy () | |
1239 "Simplify string in the buffer fuzzily. | |
1240 The string in the accessible portion of the current buffer is simplified. | |
1241 It is assumed to be a single-line subject. | |
1242 Whitespace is generally cleaned up, and miscellaneous leading/trailing | |
1243 matter is removed. Additional things can be deleted by setting | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1244 `gnus-simplify-subject-fuzzy-regexp'." |
17493 | 1245 (let ((case-fold-search t) |
1246 (modified-tick)) | |
1247 (gnus-simplify-buffer-fuzzy-step "\t" " ") | |
1248 | |
1249 (while (not (eq modified-tick (buffer-modified-tick))) | |
1250 (setq modified-tick (buffer-modified-tick)) | |
1251 (cond | |
1252 ((listp gnus-simplify-subject-fuzzy-regexp) | |
1253 (mapcar 'gnus-simplify-buffer-fuzzy-step | |
1254 gnus-simplify-subject-fuzzy-regexp)) | |
1255 (gnus-simplify-subject-fuzzy-regexp | |
1256 (gnus-simplify-buffer-fuzzy-step gnus-simplify-subject-fuzzy-regexp))) | |
1257 (gnus-simplify-buffer-fuzzy-step "^ *\\[[-+?*!][-+?*!]\\] *") | |
1258 (gnus-simplify-buffer-fuzzy-step | |
1259 "^ *\\(re\\|fw\\|fwd\\)[[{(^0-9]*[])}]?[:;] *") | |
1260 (gnus-simplify-buffer-fuzzy-step "^[[].*:\\( .*\\)[]]$" "\\1")) | |
1261 | |
1262 (gnus-simplify-buffer-fuzzy-step " *[[{(][^()\n]*[]})] *$") | |
1263 (gnus-simplify-buffer-fuzzy-step " +" " ") | |
1264 (gnus-simplify-buffer-fuzzy-step " $") | |
1265 (gnus-simplify-buffer-fuzzy-step "^ +"))) | |
1266 | |
1267 (defun gnus-simplify-subject-fuzzy (subject) | |
1268 "Simplify a subject string fuzzily. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1269 See `gnus-simplify-buffer-fuzzy' for details." |
17493 | 1270 (save-excursion |
1271 (gnus-set-work-buffer) | |
1272 (let ((case-fold-search t)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1273 ;; Remove uninteresting prefixes. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1274 (when (and gnus-simplify-ignored-prefixes |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1275 (string-match gnus-simplify-ignored-prefixes subject)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1276 (setq subject (substring subject (match-end 0)))) |
17493 | 1277 (insert subject) |
1278 (inline (gnus-simplify-buffer-fuzzy)) | |
1279 (buffer-string)))) | |
1280 | |
1281 (defsubst gnus-simplify-subject-fully (subject) | |
1282 "Simplify a subject string according to gnus-summary-gather-subject-limit." | |
1283 (cond | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1284 (gnus-simplify-subject-functions |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1285 (gnus-map-function gnus-simplify-subject-functions subject)) |
17493 | 1286 ((null gnus-summary-gather-subject-limit) |
1287 (gnus-simplify-subject-re subject)) | |
1288 ((eq gnus-summary-gather-subject-limit 'fuzzy) | |
1289 (gnus-simplify-subject-fuzzy subject)) | |
1290 ((numberp gnus-summary-gather-subject-limit) | |
1291 (gnus-limit-string (gnus-simplify-subject-re subject) | |
1292 gnus-summary-gather-subject-limit)) | |
1293 (t | |
1294 subject))) | |
1295 | |
1296 (defsubst gnus-subject-equal (s1 s2 &optional simple-first) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1297 "Check whether two subjects are equal. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1298 If optional argument simple-first is t, first argument is already |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1299 simplified." |
17493 | 1300 (cond |
1301 ((null simple-first) | |
1302 (equal (gnus-simplify-subject-fully s1) | |
1303 (gnus-simplify-subject-fully s2))) | |
1304 (t | |
1305 (equal s1 | |
1306 (gnus-simplify-subject-fully s2))))) | |
1307 | |
1308 (defun gnus-summary-bubble-group () | |
1309 "Increase the score of the current group. | |
1310 This is a handy function to add to `gnus-summary-exit-hook' to | |
1311 increase the score of each group you read." | |
1312 (gnus-group-add-score gnus-newsgroup-name)) | |
1313 | |
1314 | |
1315 ;;; | |
1316 ;;; Gnus summary mode | |
1317 ;;; | |
1318 | |
1319 (put 'gnus-summary-mode 'mode-class 'special) | |
1320 | |
35957
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1321 (defvar gnus-article-commands-menu) |
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1322 |
17493 | 1323 (when t |
1324 ;; Non-orthogonal keys | |
1325 | |
1326 (gnus-define-keys gnus-summary-mode-map | |
1327 " " gnus-summary-next-page | |
1328 "\177" gnus-summary-prev-page | |
1329 [delete] gnus-summary-prev-page | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1330 [backspace] gnus-summary-prev-page |
17493 | 1331 "\r" gnus-summary-scroll-up |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1332 "\M-\r" gnus-summary-scroll-down |
17493 | 1333 "n" gnus-summary-next-unread-article |
1334 "p" gnus-summary-prev-unread-article | |
1335 "N" gnus-summary-next-article | |
1336 "P" gnus-summary-prev-article | |
1337 "\M-\C-n" gnus-summary-next-same-subject | |
1338 "\M-\C-p" gnus-summary-prev-same-subject | |
1339 "\M-n" gnus-summary-next-unread-subject | |
1340 "\M-p" gnus-summary-prev-unread-subject | |
1341 "." gnus-summary-first-unread-article | |
1342 "," gnus-summary-best-unread-article | |
1343 "\M-s" gnus-summary-search-article-forward | |
1344 "\M-r" gnus-summary-search-article-backward | |
1345 "<" gnus-summary-beginning-of-article | |
1346 ">" gnus-summary-end-of-article | |
1347 "j" gnus-summary-goto-article | |
1348 "^" gnus-summary-refer-parent-article | |
1349 "\M-^" gnus-summary-refer-article | |
1350 "u" gnus-summary-tick-article-forward | |
1351 "!" gnus-summary-tick-article-forward | |
1352 "U" gnus-summary-tick-article-backward | |
1353 "d" gnus-summary-mark-as-read-forward | |
1354 "D" gnus-summary-mark-as-read-backward | |
1355 "E" gnus-summary-mark-as-expirable | |
1356 "\M-u" gnus-summary-clear-mark-forward | |
1357 "\M-U" gnus-summary-clear-mark-backward | |
1358 "k" gnus-summary-kill-same-subject-and-select | |
1359 "\C-k" gnus-summary-kill-same-subject | |
1360 "\M-\C-k" gnus-summary-kill-thread | |
1361 "\M-\C-l" gnus-summary-lower-thread | |
1362 "e" gnus-summary-edit-article | |
1363 "#" gnus-summary-mark-as-processable | |
1364 "\M-#" gnus-summary-unmark-as-processable | |
1365 "\M-\C-t" gnus-summary-toggle-threads | |
1366 "\M-\C-s" gnus-summary-show-thread | |
1367 "\M-\C-h" gnus-summary-hide-thread | |
1368 "\M-\C-f" gnus-summary-next-thread | |
1369 "\M-\C-b" gnus-summary-prev-thread | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1370 [(meta down)] gnus-summary-next-thread |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1371 [(meta up)] gnus-summary-prev-thread |
17493 | 1372 "\M-\C-u" gnus-summary-up-thread |
1373 "\M-\C-d" gnus-summary-down-thread | |
1374 "&" gnus-summary-execute-command | |
1375 "c" gnus-summary-catchup-and-exit | |
1376 "\C-w" gnus-summary-mark-region-as-read | |
1377 "\C-t" gnus-summary-toggle-truncation | |
1378 "?" gnus-summary-mark-as-dormant | |
1379 "\C-c\M-\C-s" gnus-summary-limit-include-expunged | |
1380 "\C-c\C-s\C-n" gnus-summary-sort-by-number | |
1381 "\C-c\C-s\C-l" gnus-summary-sort-by-lines | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1382 "\C-c\C-s\C-c" gnus-summary-sort-by-chars |
17493 | 1383 "\C-c\C-s\C-a" gnus-summary-sort-by-author |
1384 "\C-c\C-s\C-s" gnus-summary-sort-by-subject | |
1385 "\C-c\C-s\C-d" gnus-summary-sort-by-date | |
1386 "\C-c\C-s\C-i" gnus-summary-sort-by-score | |
1387 "=" gnus-summary-expand-window | |
1388 "\C-x\C-s" gnus-summary-reselect-current-group | |
1389 "\M-g" gnus-summary-rescan-group | |
1390 "w" gnus-summary-stop-page-breaking | |
1391 "\C-c\C-r" gnus-summary-caesar-message | |
1392 "f" gnus-summary-followup | |
1393 "F" gnus-summary-followup-with-original | |
1394 "C" gnus-summary-cancel-article | |
1395 "r" gnus-summary-reply | |
1396 "R" gnus-summary-reply-with-original | |
1397 "\C-c\C-f" gnus-summary-mail-forward | |
1398 "o" gnus-summary-save-article | |
1399 "\C-o" gnus-summary-save-article-mail | |
1400 "|" gnus-summary-pipe-output | |
1401 "\M-k" gnus-summary-edit-local-kill | |
1402 "\M-K" gnus-summary-edit-global-kill | |
1403 ;; "V" gnus-version | |
1404 "\C-c\C-d" gnus-summary-describe-group | |
1405 "q" gnus-summary-exit | |
1406 "Q" gnus-summary-exit-no-update | |
1407 "\C-c\C-i" gnus-info-find-node | |
1408 gnus-mouse-2 gnus-mouse-pick-article | |
1409 "m" gnus-summary-mail-other-window | |
1410 "a" gnus-summary-post-news | |
1411 "x" gnus-summary-limit-to-unread | |
1412 "s" gnus-summary-isearch-article | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1413 "t" gnus-summary-toggle-header |
17493 | 1414 "g" gnus-summary-show-article |
1415 "l" gnus-summary-goto-last-article | |
1416 "\C-c\C-v\C-v" gnus-uu-decode-uu-view | |
1417 "\C-d" gnus-summary-enter-digest-group | |
1418 "\M-\C-d" gnus-summary-read-document | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1419 "\M-\C-e" gnus-summary-edit-parameters |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1420 "\M-\C-a" gnus-summary-customize-parameters |
17493 | 1421 "\C-c\C-b" gnus-bug |
1422 "*" gnus-cache-enter-article | |
1423 "\M-*" gnus-cache-remove-article | |
1424 "\M-&" gnus-summary-universal-argument | |
1425 "\C-l" gnus-recenter | |
1426 "I" gnus-summary-increase-score | |
1427 "L" gnus-summary-lower-score | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1428 "\M-i" gnus-symbolic-argument |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1429 "h" gnus-summary-select-article-buffer |
17493 | 1430 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1431 "b" gnus-article-view-part |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1432 "\M-t" gnus-summary-toggle-display-buttonized |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1433 |
17493 | 1434 "V" gnus-summary-score-map |
1435 "X" gnus-uu-extract-map | |
1436 "S" gnus-summary-send-map) | |
1437 | |
1438 ;; Sort of orthogonal keymap | |
1439 (gnus-define-keys (gnus-summary-mark-map "M" gnus-summary-mode-map) | |
1440 "t" gnus-summary-tick-article-forward | |
1441 "!" gnus-summary-tick-article-forward | |
1442 "d" gnus-summary-mark-as-read-forward | |
1443 "r" gnus-summary-mark-as-read-forward | |
1444 "c" gnus-summary-clear-mark-forward | |
1445 " " gnus-summary-clear-mark-forward | |
1446 "e" gnus-summary-mark-as-expirable | |
1447 "x" gnus-summary-mark-as-expirable | |
1448 "?" gnus-summary-mark-as-dormant | |
1449 "b" gnus-summary-set-bookmark | |
1450 "B" gnus-summary-remove-bookmark | |
1451 "#" gnus-summary-mark-as-processable | |
1452 "\M-#" gnus-summary-unmark-as-processable | |
1453 "S" gnus-summary-limit-include-expunged | |
1454 "C" gnus-summary-catchup | |
1455 "H" gnus-summary-catchup-to-here | |
1456 "\C-c" gnus-summary-catchup-all | |
1457 "k" gnus-summary-kill-same-subject-and-select | |
1458 "K" gnus-summary-kill-same-subject | |
1459 "P" gnus-uu-mark-map) | |
1460 | |
1461 (gnus-define-keys (gnus-summary-mscore-map "V" gnus-summary-mark-map) | |
1462 "c" gnus-summary-clear-above | |
1463 "u" gnus-summary-tick-above | |
1464 "m" gnus-summary-mark-above | |
1465 "k" gnus-summary-kill-below) | |
1466 | |
1467 (gnus-define-keys (gnus-summary-limit-map "/" gnus-summary-mode-map) | |
1468 "/" gnus-summary-limit-to-subject | |
1469 "n" gnus-summary-limit-to-articles | |
1470 "w" gnus-summary-pop-limit | |
1471 "s" gnus-summary-limit-to-subject | |
1472 "a" gnus-summary-limit-to-author | |
1473 "u" gnus-summary-limit-to-unread | |
1474 "m" gnus-summary-limit-to-marks | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1475 "M" gnus-summary-limit-exclude-marks |
17493 | 1476 "v" gnus-summary-limit-to-score |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1477 "*" gnus-summary-limit-include-cached |
17493 | 1478 "D" gnus-summary-limit-include-dormant |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1479 "T" gnus-summary-limit-include-thread |
17493 | 1480 "d" gnus-summary-limit-exclude-dormant |
1481 "t" gnus-summary-limit-to-age | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1482 "x" gnus-summary-limit-to-extra |
17493 | 1483 "E" gnus-summary-limit-include-expunged |
1484 "c" gnus-summary-limit-exclude-childless-dormant | |
1485 "C" gnus-summary-limit-mark-excluded-as-read) | |
1486 | |
1487 (gnus-define-keys (gnus-summary-goto-map "G" gnus-summary-mode-map) | |
1488 "n" gnus-summary-next-unread-article | |
1489 "p" gnus-summary-prev-unread-article | |
1490 "N" gnus-summary-next-article | |
1491 "P" gnus-summary-prev-article | |
1492 "\C-n" gnus-summary-next-same-subject | |
1493 "\C-p" gnus-summary-prev-same-subject | |
1494 "\M-n" gnus-summary-next-unread-subject | |
1495 "\M-p" gnus-summary-prev-unread-subject | |
1496 "f" gnus-summary-first-unread-article | |
1497 "b" gnus-summary-best-unread-article | |
1498 "j" gnus-summary-goto-article | |
1499 "g" gnus-summary-goto-subject | |
1500 "l" gnus-summary-goto-last-article | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
1501 "o" gnus-summary-pop-article) |
17493 | 1502 |
1503 (gnus-define-keys (gnus-summary-thread-map "T" gnus-summary-mode-map) | |
1504 "k" gnus-summary-kill-thread | |
1505 "l" gnus-summary-lower-thread | |
1506 "i" gnus-summary-raise-thread | |
1507 "T" gnus-summary-toggle-threads | |
1508 "t" gnus-summary-rethread-current | |
1509 "^" gnus-summary-reparent-thread | |
1510 "s" gnus-summary-show-thread | |
1511 "S" gnus-summary-show-all-threads | |
1512 "h" gnus-summary-hide-thread | |
1513 "H" gnus-summary-hide-all-threads | |
1514 "n" gnus-summary-next-thread | |
1515 "p" gnus-summary-prev-thread | |
1516 "u" gnus-summary-up-thread | |
1517 "o" gnus-summary-top-thread | |
1518 "d" gnus-summary-down-thread | |
1519 "#" gnus-uu-mark-thread | |
1520 "\M-#" gnus-uu-unmark-thread) | |
1521 | |
1522 (gnus-define-keys (gnus-summary-buffer-map "Y" gnus-summary-mode-map) | |
1523 "g" gnus-summary-prepare | |
1524 "c" gnus-summary-insert-cached-articles) | |
1525 | |
1526 (gnus-define-keys (gnus-summary-exit-map "Z" gnus-summary-mode-map) | |
1527 "c" gnus-summary-catchup-and-exit | |
1528 "C" gnus-summary-catchup-all-and-exit | |
1529 "E" gnus-summary-exit-no-update | |
1530 "Q" gnus-summary-exit | |
1531 "Z" gnus-summary-exit | |
1532 "n" gnus-summary-catchup-and-goto-next-group | |
1533 "R" gnus-summary-reselect-current-group | |
1534 "G" gnus-summary-rescan-group | |
1535 "N" gnus-summary-next-group | |
1536 "s" gnus-summary-save-newsrc | |
1537 "P" gnus-summary-prev-group) | |
1538 | |
1539 (gnus-define-keys (gnus-summary-article-map "A" gnus-summary-mode-map) | |
1540 " " gnus-summary-next-page | |
1541 "n" gnus-summary-next-page | |
1542 "\177" gnus-summary-prev-page | |
1543 [delete] gnus-summary-prev-page | |
1544 "p" gnus-summary-prev-page | |
1545 "\r" gnus-summary-scroll-up | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1546 "\M-\r" gnus-summary-scroll-down |
17493 | 1547 "<" gnus-summary-beginning-of-article |
1548 ">" gnus-summary-end-of-article | |
1549 "b" gnus-summary-beginning-of-article | |
1550 "e" gnus-summary-end-of-article | |
1551 "^" gnus-summary-refer-parent-article | |
1552 "r" gnus-summary-refer-parent-article | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1553 "D" gnus-summary-enter-digest-group |
17493 | 1554 "R" gnus-summary-refer-references |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1555 "T" gnus-summary-refer-thread |
17493 | 1556 "g" gnus-summary-show-article |
1557 "s" gnus-summary-isearch-article | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1558 "P" gnus-summary-print-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1559 "t" gnus-article-babel) |
17493 | 1560 |
1561 (gnus-define-keys (gnus-summary-wash-map "W" gnus-summary-mode-map) | |
1562 "b" gnus-article-add-buttons | |
1563 "B" gnus-article-add-buttons-to-head | |
1564 "o" gnus-article-treat-overstrike | |
1565 "e" gnus-article-emphasize | |
1566 "w" gnus-article-fill-cited-article | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1567 "Q" gnus-article-fill-long-lines |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1568 "C" gnus-article-capitalize-sentences |
17493 | 1569 "c" gnus-article-remove-cr |
1570 "q" gnus-article-de-quoted-unreadable | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1571 "6" gnus-article-de-base64-unreadable |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1572 "Z" gnus-article-decode-HZ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1573 "h" gnus-article-wash-html |
17493 | 1574 "f" gnus-article-display-x-face |
1575 "l" gnus-summary-stop-page-breaking | |
1576 "r" gnus-summary-caesar-message | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1577 "t" gnus-summary-toggle-header |
17493 | 1578 "v" gnus-summary-verbose-headers |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1579 "H" gnus-article-strip-headers-in-body |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1580 "d" gnus-article-treat-dumbquotes) |
17493 | 1581 |
1582 (gnus-define-keys (gnus-summary-wash-hide-map "W" gnus-summary-wash-map) | |
1583 "a" gnus-article-hide | |
1584 "h" gnus-article-hide-headers | |
1585 "b" gnus-article-hide-boring-headers | |
1586 "s" gnus-article-hide-signature | |
1587 "c" gnus-article-hide-citation | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1588 "C" gnus-article-hide-citation-in-followups |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1589 "l" gnus-article-hide-list-identifiers |
17493 | 1590 "p" gnus-article-hide-pgp |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1591 "B" gnus-article-strip-banner |
17493 | 1592 "P" gnus-article-hide-pem |
1593 "\C-c" gnus-article-hide-citation-maybe) | |
1594 | |
1595 (gnus-define-keys (gnus-summary-wash-highlight-map "H" gnus-summary-wash-map) | |
1596 "a" gnus-article-highlight | |
1597 "h" gnus-article-highlight-headers | |
1598 "c" gnus-article-highlight-citation | |
1599 "s" gnus-article-highlight-signature) | |
1600 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1601 (gnus-define-keys (gnus-summary-wash-mime-map "M" gnus-summary-wash-map) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1602 "w" gnus-article-decode-mime-words |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1603 "c" gnus-article-decode-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1604 "v" gnus-mime-view-all-parts |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1605 "b" gnus-article-view-part) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1606 |
17493 | 1607 (gnus-define-keys (gnus-summary-wash-time-map "T" gnus-summary-wash-map) |
1608 "z" gnus-article-date-ut | |
1609 "u" gnus-article-date-ut | |
1610 "l" gnus-article-date-local | |
1611 "e" gnus-article-date-lapsed | |
1612 "o" gnus-article-date-original | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1613 "i" gnus-article-date-iso8601 |
17493 | 1614 "s" gnus-article-date-user) |
1615 | |
1616 (gnus-define-keys (gnus-summary-wash-empty-map "E" gnus-summary-wash-map) | |
1617 "t" gnus-article-remove-trailing-blank-lines | |
1618 "l" gnus-article-strip-leading-blank-lines | |
1619 "m" gnus-article-strip-multiple-blank-lines | |
1620 "a" gnus-article-strip-blank-lines | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1621 "A" gnus-article-strip-all-blank-lines |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1622 "s" gnus-article-strip-leading-space |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1623 "e" gnus-article-strip-trailing-space) |
17493 | 1624 |
1625 (gnus-define-keys (gnus-summary-help-map "H" gnus-summary-mode-map) | |
1626 "v" gnus-version | |
1627 "f" gnus-summary-fetch-faq | |
1628 "d" gnus-summary-describe-group | |
1629 "h" gnus-summary-describe-briefly | |
1630 "i" gnus-info-find-node) | |
1631 | |
1632 (gnus-define-keys (gnus-summary-backend-map "B" gnus-summary-mode-map) | |
1633 "e" gnus-summary-expire-articles | |
1634 "\M-\C-e" gnus-summary-expire-articles-now | |
1635 "\177" gnus-summary-delete-article | |
1636 [delete] gnus-summary-delete-article | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1637 [backspace] gnus-summary-delete-article |
17493 | 1638 "m" gnus-summary-move-article |
1639 "r" gnus-summary-respool-article | |
1640 "w" gnus-summary-edit-article | |
1641 "c" gnus-summary-copy-article | |
1642 "B" gnus-summary-crosspost-article | |
1643 "q" gnus-summary-respool-query | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1644 "t" gnus-summary-respool-trace |
17493 | 1645 "i" gnus-summary-import-article |
1646 "p" gnus-summary-article-posted-p) | |
1647 | |
1648 (gnus-define-keys (gnus-summary-save-map "O" gnus-summary-mode-map) | |
1649 "o" gnus-summary-save-article | |
1650 "m" gnus-summary-save-article-mail | |
1651 "F" gnus-summary-write-article-file | |
1652 "r" gnus-summary-save-article-rmail | |
1653 "f" gnus-summary-save-article-file | |
1654 "b" gnus-summary-save-article-body-file | |
1655 "h" gnus-summary-save-article-folder | |
1656 "v" gnus-summary-save-article-vm | |
1657 "p" gnus-summary-pipe-output | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1658 "s" gnus-soup-add-article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1659 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1660 (gnus-define-keys (gnus-summary-mime-map "K" gnus-summary-mode-map) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1661 "b" gnus-summary-display-buttonized |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1662 "m" gnus-summary-repair-multipart |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1663 "v" gnus-article-view-part |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1664 "o" gnus-article-save-part |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1665 "c" gnus-article-copy-part |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1666 "e" gnus-article-externalize-part |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1667 "i" gnus-article-inline-part |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1668 "|" gnus-article-pipe-part)) |
17493 | 1669 |
1670 (defun gnus-summary-make-menu-bar () | |
1671 (gnus-turn-off-edit-menu 'summary) | |
1672 | |
1673 (unless (boundp 'gnus-summary-misc-menu) | |
1674 | |
1675 (easy-menu-define | |
1676 gnus-summary-kill-menu gnus-summary-mode-map "" | |
1677 (cons | |
1678 "Score" | |
1679 (nconc | |
1680 (list | |
1681 ["Enter score..." gnus-summary-score-entry t] | |
1682 ["Customize" gnus-score-customize t]) | |
1683 (gnus-make-score-map 'increase) | |
1684 (gnus-make-score-map 'lower) | |
1685 '(("Mark" | |
1686 ["Kill below" gnus-summary-kill-below t] | |
1687 ["Mark above" gnus-summary-mark-above t] | |
1688 ["Tick above" gnus-summary-tick-above t] | |
1689 ["Clear above" gnus-summary-clear-above t]) | |
1690 ["Current score" gnus-summary-current-score t] | |
1691 ["Set score" gnus-summary-set-score t] | |
1692 ["Switch current score file..." gnus-score-change-score-file t] | |
1693 ["Set mark below..." gnus-score-set-mark-below t] | |
1694 ["Set expunge below..." gnus-score-set-expunge-below t] | |
1695 ["Edit current score file" gnus-score-edit-current-scores t] | |
1696 ["Edit score file" gnus-score-edit-file t] | |
1697 ["Trace score" gnus-score-find-trace t] | |
1698 ["Find words" gnus-score-find-favourite-words t] | |
1699 ["Rescore buffer" gnus-summary-rescore t] | |
1700 ["Increase score..." gnus-summary-increase-score t] | |
1701 ["Lower score..." gnus-summary-lower-score t])))) | |
1702 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1703 ;; Define both the Article menu in the summary buffer and the equivalent |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1704 ;; Commands menu in the article buffer here for consistency. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1705 (let ((innards |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1706 '(("Hide" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1707 ["All" gnus-article-hide t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1708 ["Headers" gnus-article-hide-headers t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1709 ["Signature" gnus-article-hide-signature t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1710 ["Citation" gnus-article-hide-citation t] |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1711 ["List identifiers" gnus-article-hide-list-identifiers t] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1712 ["PGP" gnus-article-hide-pgp t] |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1713 ["Banner" gnus-article-strip-banner t] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1714 ["Boring headers" gnus-article-hide-boring-headers t]) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1715 ("Highlight" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1716 ["All" gnus-article-highlight t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1717 ["Headers" gnus-article-highlight-headers t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1718 ["Signature" gnus-article-highlight-signature t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1719 ["Citation" gnus-article-highlight-citation t]) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1720 ("MIME" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1721 ["Words" gnus-article-decode-mime-words t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1722 ["Charset" gnus-article-decode-charset t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1723 ["QP" gnus-article-de-quoted-unreadable t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1724 ["Base64" gnus-article-de-base64-unreadable t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1725 ["View all" gnus-mime-view-all-parts t]) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1726 ("Date" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1727 ["Local" gnus-article-date-local t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1728 ["ISO8601" gnus-article-date-iso8601 t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1729 ["UT" gnus-article-date-ut t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1730 ["Original" gnus-article-date-original t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1731 ["Lapsed" gnus-article-date-lapsed t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1732 ["User-defined" gnus-article-date-user t]) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1733 ("Washing" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1734 ("Remove Blanks" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1735 ["Leading" gnus-article-strip-leading-blank-lines t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1736 ["Multiple" gnus-article-strip-multiple-blank-lines t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1737 ["Trailing" gnus-article-remove-trailing-blank-lines t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1738 ["All of the above" gnus-article-strip-blank-lines t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1739 ["All" gnus-article-strip-all-blank-lines t] |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1740 ["Leading space" gnus-article-strip-leading-space t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1741 ["Trailing space" gnus-article-strip-trailing-space t]) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1742 ["Overstrike" gnus-article-treat-overstrike t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1743 ["Dumb quotes" gnus-article-treat-dumbquotes t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1744 ["Emphasis" gnus-article-emphasize t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1745 ["Word wrap" gnus-article-fill-cited-article t] |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1746 ["Fill long lines" gnus-article-fill-long-lines t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1747 ["Capitalize sentences" gnus-article-capitalize-sentences t] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1748 ["CR" gnus-article-remove-cr t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1749 ["Show X-Face" gnus-article-display-x-face t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1750 ["Quoted-Printable" gnus-article-de-quoted-unreadable t] |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1751 ["Base64" gnus-article-de-base64-unreadable t] |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1752 ["Rot 13" gnus-summary-caesar-message |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1753 :help "\"Caesar rotate\" article by 13"] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1754 ["Unix pipe" gnus-summary-pipe-message t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1755 ["Add buttons" gnus-article-add-buttons t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1756 ["Add buttons to head" gnus-article-add-buttons-to-head t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1757 ["Stop page breaking" gnus-summary-stop-page-breaking t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1758 ["Verbose header" gnus-summary-verbose-headers t] |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1759 ["Toggle header" gnus-summary-toggle-header t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1760 ["Html" gnus-article-wash-html t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1761 ["HZ" gnus-article-decode-HZ t]) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1762 ("Output" |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1763 ["Save in default format" gnus-summary-save-article |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1764 :help "Save article using default method"] |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1765 ["Save in file" gnus-summary-save-article-file |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1766 :help "Save article in file"] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1767 ["Save in Unix mail format" gnus-summary-save-article-mail t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1768 ["Save in MH folder" gnus-summary-save-article-folder t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1769 ["Save in VM folder" gnus-summary-save-article-vm t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1770 ["Save in RMAIL mbox" gnus-summary-save-article-rmail t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1771 ["Save body in file" gnus-summary-save-article-body-file t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1772 ["Pipe through a filter" gnus-summary-pipe-output t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1773 ["Add to SOUP packet" gnus-soup-add-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1774 ["Print" gnus-summary-print-article t]) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1775 ("Backend" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1776 ["Respool article..." gnus-summary-respool-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1777 ["Move article..." gnus-summary-move-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1778 (gnus-check-backend-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1779 'request-move-article gnus-newsgroup-name)] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1780 ["Copy article..." gnus-summary-copy-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1781 ["Crosspost article..." gnus-summary-crosspost-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1782 (gnus-check-backend-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1783 'request-replace-article gnus-newsgroup-name)] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1784 ["Import file..." gnus-summary-import-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1785 ["Check if posted" gnus-summary-article-posted-p t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1786 ["Edit article" gnus-summary-edit-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1787 (not (gnus-group-read-only-p))] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1788 ["Delete article" gnus-summary-delete-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1789 (gnus-check-backend-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1790 'request-expire-articles gnus-newsgroup-name)] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1791 ["Query respool" gnus-summary-respool-query t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1792 ["Trace respool" gnus-summary-respool-trace t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1793 ["Delete expirable articles" gnus-summary-expire-articles-now |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1794 (gnus-check-backend-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1795 'request-expire-articles gnus-newsgroup-name)]) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1796 ("Extract" |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1797 ["Uudecode" gnus-uu-decode-uu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1798 :help "Decode uuencoded article(s)"] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1799 ["Uudecode and save" gnus-uu-decode-uu-and-save t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1800 ["Unshar" gnus-uu-decode-unshar t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1801 ["Unshar and save" gnus-uu-decode-unshar-and-save t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1802 ["Save" gnus-uu-decode-save t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1803 ["Binhex" gnus-uu-decode-binhex t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1804 ["Postscript" gnus-uu-decode-postscript t]) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1805 ("Cache" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1806 ["Enter article" gnus-cache-enter-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1807 ["Remove article" gnus-cache-remove-article t]) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1808 ["Translate" gnus-article-babel t] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1809 ["Select article buffer" gnus-summary-select-article-buffer t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1810 ["Enter digest buffer" gnus-summary-enter-digest-group t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1811 ["Isearch article..." gnus-summary-isearch-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1812 ["Beginning of the article" gnus-summary-beginning-of-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1813 ["End of the article" gnus-summary-end-of-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1814 ["Fetch parent of article" gnus-summary-refer-parent-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1815 ["Fetch referenced articles" gnus-summary-refer-references t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1816 ["Fetch current thread" gnus-summary-refer-thread t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1817 ["Fetch article with id..." gnus-summary-refer-article t] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1818 ["Redisplay" gnus-summary-show-article t]))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1819 (easy-menu-define |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1820 gnus-summary-article-menu gnus-summary-mode-map "" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1821 (cons "Article" innards)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1822 |
35957
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1823 (if (not (keymapp gnus-summary-article-menu)) |
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1824 (easy-menu-define |
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1825 gnus-article-commands-menu gnus-article-mode-map "" |
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1826 (cons "Commands" innards)) |
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1827 ;; in Emacs, don't share menu. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
1828 (setq gnus-article-commands-menu |
35957
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1829 (copy-keymap gnus-summary-article-menu)) |
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1830 (define-key gnus-article-mode-map [menu-bar commands] |
a35d9c07d074
2001-02-07 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
35838
diff
changeset
|
1831 (cons "Commands" gnus-article-commands-menu)))) |
17493 | 1832 |
1833 (easy-menu-define | |
1834 gnus-summary-thread-menu gnus-summary-mode-map "" | |
1835 '("Threads" | |
1836 ["Toggle threading" gnus-summary-toggle-threads t] | |
1837 ["Hide threads" gnus-summary-hide-all-threads t] | |
1838 ["Show threads" gnus-summary-show-all-threads t] | |
1839 ["Hide thread" gnus-summary-hide-thread t] | |
1840 ["Show thread" gnus-summary-show-thread t] | |
1841 ["Go to next thread" gnus-summary-next-thread t] | |
1842 ["Go to previous thread" gnus-summary-prev-thread t] | |
1843 ["Go down thread" gnus-summary-down-thread t] | |
1844 ["Go up thread" gnus-summary-up-thread t] | |
1845 ["Top of thread" gnus-summary-top-thread t] | |
1846 ["Mark thread as read" gnus-summary-kill-thread t] | |
1847 ["Lower thread score" gnus-summary-lower-thread t] | |
1848 ["Raise thread score" gnus-summary-raise-thread t] | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1849 ["Rethread current" gnus-summary-rethread-current t])) |
17493 | 1850 |
1851 (easy-menu-define | |
1852 gnus-summary-post-menu gnus-summary-mode-map "" | |
1853 '("Post" | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1854 ["Post an article" gnus-summary-post-news |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1855 :help "Post an article"] |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1856 ["Followup" gnus-summary-followup |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1857 :help "Post followup to this article"] |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1858 ["Followup and yank" gnus-summary-followup-with-original |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1859 :help "Post followup to this article, quoting its contents"] |
17493 | 1860 ["Supersede article" gnus-summary-supersede-article t] |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1861 ["Cancel article" gnus-summary-cancel-article |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1862 :help "Cancel an article you posted"] |
17493 | 1863 ["Reply" gnus-summary-reply t] |
1864 ["Reply and yank" gnus-summary-reply-with-original t] | |
1865 ["Wide reply" gnus-summary-wide-reply t] | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1866 ["Wide reply and yank" gnus-summary-wide-reply-with-original |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1867 :help "Mail a reply, quoting this article"] |
17493 | 1868 ["Mail forward" gnus-summary-mail-forward t] |
1869 ["Post forward" gnus-summary-post-forward t] | |
1870 ["Digest and mail" gnus-uu-digest-mail-forward t] | |
1871 ["Digest and post" gnus-uu-digest-post-forward t] | |
1872 ["Resend message" gnus-summary-resend-message t] | |
1873 ["Send bounced mail" gnus-summary-resend-bounced-mail t] | |
1874 ["Send a mail" gnus-summary-mail-other-window t] | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1875 ["Uuencode and post" gnus-uu-post-news |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1876 :help "Post a uuencoded article"] |
17493 | 1877 ["Followup via news" gnus-summary-followup-to-mail t] |
1878 ["Followup via news and yank" | |
1879 gnus-summary-followup-to-mail-with-original t] | |
1880 ;;("Draft" | |
1881 ;;["Send" gnus-summary-send-draft t] | |
1882 ;;["Send bounced" gnus-resend-bounced-mail t]) | |
1883 )) | |
1884 | |
1885 (easy-menu-define | |
1886 gnus-summary-misc-menu gnus-summary-mode-map "" | |
1887 '("Misc" | |
1888 ("Mark Read" | |
1889 ["Mark as read" gnus-summary-mark-as-read-forward t] | |
1890 ["Mark same subject and select" | |
1891 gnus-summary-kill-same-subject-and-select t] | |
1892 ["Mark same subject" gnus-summary-kill-same-subject t] | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1893 ["Catchup" gnus-summary-catchup |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1894 :help "Mark unread articles in this group as read"] |
17493 | 1895 ["Catchup all" gnus-summary-catchup-all t] |
1896 ["Catchup to here" gnus-summary-catchup-to-here t] | |
1897 ["Catchup region" gnus-summary-mark-region-as-read t] | |
1898 ["Mark excluded" gnus-summary-limit-mark-excluded-as-read t]) | |
1899 ("Mark Various" | |
1900 ["Tick" gnus-summary-tick-article-forward t] | |
1901 ["Mark as dormant" gnus-summary-mark-as-dormant t] | |
1902 ["Remove marks" gnus-summary-clear-mark-forward t] | |
1903 ["Set expirable mark" gnus-summary-mark-as-expirable t] | |
1904 ["Set bookmark" gnus-summary-set-bookmark t] | |
1905 ["Remove bookmark" gnus-summary-remove-bookmark t]) | |
1906 ("Mark Limit" | |
1907 ["Marks..." gnus-summary-limit-to-marks t] | |
1908 ["Subject..." gnus-summary-limit-to-subject t] | |
1909 ["Author..." gnus-summary-limit-to-author t] | |
1910 ["Age..." gnus-summary-limit-to-age t] | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1911 ["Extra..." gnus-summary-limit-to-extra t] |
17493 | 1912 ["Score" gnus-summary-limit-to-score t] |
1913 ["Unread" gnus-summary-limit-to-unread t] | |
1914 ["Non-dormant" gnus-summary-limit-exclude-dormant t] | |
1915 ["Articles" gnus-summary-limit-to-articles t] | |
1916 ["Pop limit" gnus-summary-pop-limit t] | |
1917 ["Show dormant" gnus-summary-limit-include-dormant t] | |
1918 ["Hide childless dormant" | |
1919 gnus-summary-limit-exclude-childless-dormant t] | |
1920 ;;["Hide thread" gnus-summary-limit-exclude-thread t] | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1921 ["Hide marked" gnus-summary-limit-exclude-marks t] |
17493 | 1922 ["Show expunged" gnus-summary-show-all-expunged t]) |
1923 ("Process Mark" | |
1924 ["Set mark" gnus-summary-mark-as-processable t] | |
1925 ["Remove mark" gnus-summary-unmark-as-processable t] | |
1926 ["Remove all marks" gnus-summary-unmark-all-processable t] | |
1927 ["Mark above" gnus-uu-mark-over t] | |
1928 ["Mark series" gnus-uu-mark-series t] | |
1929 ["Mark region" gnus-uu-mark-region t] | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1930 ["Unmark region" gnus-uu-unmark-region t] |
17493 | 1931 ["Mark by regexp..." gnus-uu-mark-by-regexp t] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1932 ["Unmark by regexp..." gnus-uu-unmark-by-regexp t] |
17493 | 1933 ["Mark all" gnus-uu-mark-all t] |
1934 ["Mark buffer" gnus-uu-mark-buffer t] | |
1935 ["Mark sparse" gnus-uu-mark-sparse t] | |
1936 ["Mark thread" gnus-uu-mark-thread t] | |
1937 ["Unmark thread" gnus-uu-unmark-thread t] | |
1938 ("Process Mark Sets" | |
1939 ["Kill" gnus-summary-kill-process-mark t] | |
1940 ["Yank" gnus-summary-yank-process-mark | |
1941 gnus-newsgroup-process-stack] | |
1942 ["Save" gnus-summary-save-process-mark t])) | |
1943 ("Scroll article" | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1944 ["Page forward" gnus-summary-next-page |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1945 :help "Show next page of article"] |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1946 ["Page backward" gnus-summary-prev-page |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1947 :help "Show previous page of article"] |
17493 | 1948 ["Line forward" gnus-summary-scroll-up t]) |
1949 ("Move" | |
1950 ["Next unread article" gnus-summary-next-unread-article t] | |
1951 ["Previous unread article" gnus-summary-prev-unread-article t] | |
1952 ["Next article" gnus-summary-next-article t] | |
1953 ["Previous article" gnus-summary-prev-article t] | |
1954 ["Next unread subject" gnus-summary-next-unread-subject t] | |
1955 ["Previous unread subject" gnus-summary-prev-unread-subject t] | |
1956 ["Next article same subject" gnus-summary-next-same-subject t] | |
1957 ["Previous article same subject" gnus-summary-prev-same-subject t] | |
1958 ["First unread article" gnus-summary-first-unread-article t] | |
1959 ["Best unread article" gnus-summary-best-unread-article t] | |
1960 ["Go to subject number..." gnus-summary-goto-subject t] | |
1961 ["Go to article number..." gnus-summary-goto-article t] | |
1962 ["Go to the last article" gnus-summary-goto-last-article t] | |
1963 ["Pop article off history" gnus-summary-pop-article t]) | |
1964 ("Sort" | |
1965 ["Sort by number" gnus-summary-sort-by-number t] | |
1966 ["Sort by author" gnus-summary-sort-by-author t] | |
1967 ["Sort by subject" gnus-summary-sort-by-subject t] | |
1968 ["Sort by date" gnus-summary-sort-by-date t] | |
1969 ["Sort by score" gnus-summary-sort-by-score t] | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1970 ["Sort by lines" gnus-summary-sort-by-lines t] |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1971 ["Sort by characters" gnus-summary-sort-by-chars t]) |
17493 | 1972 ("Help" |
1973 ["Fetch group FAQ" gnus-summary-fetch-faq t] | |
1974 ["Describe group" gnus-summary-describe-group t] | |
1975 ["Read manual" gnus-info-find-node t]) | |
1976 ("Modes" | |
1977 ["Pick and read" gnus-pick-mode t] | |
1978 ["Binary" gnus-binary-mode t]) | |
1979 ("Regeneration" | |
1980 ["Regenerate" gnus-summary-prepare t] | |
1981 ["Insert cached articles" gnus-summary-insert-cached-articles t] | |
1982 ["Toggle threading" gnus-summary-toggle-threads t]) | |
1983 ["Filter articles..." gnus-summary-execute-command t] | |
1984 ["Run command on subjects..." gnus-summary-universal-argument t] | |
1985 ["Search articles forward..." gnus-summary-search-article-forward t] | |
1986 ["Search articles backward..." gnus-summary-search-article-backward t] | |
1987 ["Toggle line truncation" gnus-summary-toggle-truncation t] | |
1988 ["Expand window" gnus-summary-expand-window t] | |
1989 ["Expire expirable articles" gnus-summary-expire-articles | |
1990 (gnus-check-backend-function | |
1991 'request-expire-articles gnus-newsgroup-name)] | |
1992 ["Edit local kill file" gnus-summary-edit-local-kill t] | |
1993 ["Edit main kill file" gnus-summary-edit-global-kill t] | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1994 ["Edit group parameters" gnus-summary-edit-parameters t] |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
1995 ["Customize group parameters" gnus-summary-customize-parameters t] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
1996 ["Send a bug report" gnus-bug t] |
17493 | 1997 ("Exit" |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1998 ["Catchup and exit" gnus-summary-catchup-and-exit |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
1999 :help "Mark unread articles in this group as read, then exit"] |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2000 ["Catchup all and exit" gnus-summary-catchup-all-and-exit t] |
17493 | 2001 ["Catchup and goto next" gnus-summary-catchup-and-goto-next-group t] |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2002 ["Exit group" gnus-summary-exit |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2003 :help "Exit current group, return to group selection mode"] |
17493 | 2004 ["Exit group without updating" gnus-summary-exit-no-update t] |
2005 ["Exit and goto next group" gnus-summary-next-group t] | |
2006 ["Exit and goto prev group" gnus-summary-prev-group t] | |
2007 ["Reselect group" gnus-summary-reselect-current-group t] | |
2008 ["Rescan group" gnus-summary-rescan-group t] | |
2009 ["Update dribble" gnus-summary-save-newsrc t]))) | |
2010 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2011 (gnus-run-hooks 'gnus-summary-menu-hook))) |
17493 | 2012 |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2013 (defvar gnus-summary-tool-bar-map nil) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2014 |
33316 | 2015 ;; Emacs 21 tool bar. Should be no-op otherwise. |
44344
37801f2191c3
* gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43362
diff
changeset
|
2016 ;; NB: A new function tool-bar-local-item-from-menu is added in Emacs |
37801f2191c3
* gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43362
diff
changeset
|
2017 ;; 21.2.50+. Considering many users use Emacs 21, use |
37801f2191c3
* gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43362
diff
changeset
|
2018 ;; tool-bar-add-item-from-menu here. |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2019 (defun gnus-summary-make-tool-bar () |
44344
37801f2191c3
* gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43362
diff
changeset
|
2020 (if (and |
37801f2191c3
* gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43362
diff
changeset
|
2021 (condition-case nil (require 'tool-bar) (error nil)) |
37801f2191c3
* gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43362
diff
changeset
|
2022 (fboundp 'tool-bar-add-item-from-menu) |
37801f2191c3
* gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43362
diff
changeset
|
2023 (default-value 'tool-bar-mode) |
37801f2191c3
* gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43362
diff
changeset
|
2024 (not gnus-summary-tool-bar-map)) |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2025 (setq gnus-summary-tool-bar-map |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2026 (let ((tool-bar-map (make-sparse-keymap))) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2027 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2028 'gnus-summary-prev-unread "prev-ur" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2029 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2030 'gnus-summary-next-unread "next-ur" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2031 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2032 'gnus-summary-post-news "post" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2033 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2034 'gnus-summary-followup-with-original "fuwo" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2035 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2036 'gnus-summary-followup "followup" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2037 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2038 'gnus-summary-reply-with-original "reply-wo" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2039 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2040 'gnus-summary-reply "reply" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2041 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2042 'gnus-summary-caesar-message "rot13" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2043 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2044 'gnus-uu-decode-uu "uu-decode" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2045 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2046 'gnus-summary-save-article-file "save-aif" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2047 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2048 'gnus-summary-save-article "save-art" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2049 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2050 'gnus-uu-post-news "uu-post" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2051 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2052 'gnus-summary-catchup "catchup" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2053 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2054 'gnus-summary-catchup-and-exit "cu-exit" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2055 (tool-bar-add-item-from-menu |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2056 'gnus-summary-exit "exit-summ" gnus-summary-mode-map) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2057 tool-bar-map))) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2058 (if gnus-summary-tool-bar-map |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2059 (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map))) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2060 |
17493 | 2061 (defun gnus-score-set-default (var value) |
2062 "A version of set that updates the GNU Emacs menu-bar." | |
2063 (set var value) | |
2064 ;; It is the message that forces the active status to be updated. | |
2065 (message "")) | |
2066 | |
2067 (defun gnus-make-score-map (type) | |
2068 "Make a summary score map of type TYPE." | |
2069 (if t | |
2070 nil | |
2071 (let ((headers '(("author" "from" string) | |
2072 ("subject" "subject" string) | |
2073 ("article body" "body" string) | |
2074 ("article head" "head" string) | |
2075 ("xref" "xref" string) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2076 ("extra header" "extra" string) |
17493 | 2077 ("lines" "lines" number) |
2078 ("followups to author" "followup" string))) | |
2079 (types '((number ("less than" <) | |
2080 ("greater than" >) | |
2081 ("equal" =)) | |
2082 (string ("substring" s) | |
2083 ("exact string" e) | |
2084 ("fuzzy string" f) | |
2085 ("regexp" r)))) | |
2086 (perms '(("temporary" (current-time-string)) | |
2087 ("permanent" nil) | |
2088 ("immediate" now))) | |
2089 header) | |
2090 (list | |
2091 (apply | |
2092 'nconc | |
2093 (list | |
2094 (if (eq type 'lower) | |
2095 "Lower score" | |
2096 "Increase score")) | |
2097 (let (outh) | |
2098 (while headers | |
2099 (setq header (car headers)) | |
2100 (setq outh | |
2101 (cons | |
2102 (apply | |
2103 'nconc | |
2104 (list (car header)) | |
2105 (let ((ts (cdr (assoc (nth 2 header) types))) | |
2106 outt) | |
2107 (while ts | |
2108 (setq outt | |
2109 (cons | |
2110 (apply | |
2111 'nconc | |
2112 (list (caar ts)) | |
2113 (let ((ps perms) | |
2114 outp) | |
2115 (while ps | |
2116 (setq outp | |
2117 (cons | |
2118 (vector | |
2119 (caar ps) | |
2120 (list | |
2121 'gnus-summary-score-entry | |
2122 (nth 1 header) | |
2123 (if (or (string= (nth 1 header) | |
2124 "head") | |
2125 (string= (nth 1 header) | |
2126 "body")) | |
2127 "" | |
2128 (list 'gnus-summary-header | |
2129 (nth 1 header))) | |
2130 (list 'quote (nth 1 (car ts))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2131 (list 'gnus-score-delta-default |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2132 nil) |
17493 | 2133 (nth 1 (car ps)) |
2134 t) | |
2135 t) | |
2136 outp)) | |
2137 (setq ps (cdr ps))) | |
2138 (list (nreverse outp)))) | |
2139 outt)) | |
2140 (setq ts (cdr ts))) | |
2141 (list (nreverse outt)))) | |
2142 outh)) | |
2143 (setq headers (cdr headers))) | |
2144 (list (nreverse outh)))))))) | |
2145 | |
2146 | |
2147 | |
2148 (defun gnus-summary-mode (&optional group) | |
2149 "Major mode for reading articles. | |
2150 | |
2151 All normal editing commands are switched off. | |
2152 \\<gnus-summary-mode-map> | |
2153 Each line in this buffer represents one article. To read an | |
2154 article, you can, for instance, type `\\[gnus-summary-next-page]'. To move forwards | |
2155 and backwards while displaying articles, type `\\[gnus-summary-next-unread-article]' and `\\[gnus-summary-prev-unread-article]', | |
2156 respectively. | |
2157 | |
2158 You can also post articles and send mail from this buffer. To | |
2159 follow up an article, type `\\[gnus-summary-followup]'. To mail a reply to the author | |
2160 of an article, type `\\[gnus-summary-reply]'. | |
2161 | |
2162 There are approx. one gazillion commands you can execute in this | |
2163 buffer; read the info pages for more information (`\\[gnus-info-find-node]'). | |
2164 | |
2165 The following commands are available: | |
2166 | |
2167 \\{gnus-summary-mode-map}" | |
2168 (interactive) | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2169 (kill-all-local-variables) |
17493 | 2170 (when (gnus-visual-p 'summary-menu 'menu) |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2171 (gnus-summary-make-menu-bar) |
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
2172 (gnus-summary-make-tool-bar)) |
17493 | 2173 (gnus-summary-make-local-variables) |
2174 (gnus-make-thread-indent-array) | |
2175 (gnus-simplify-mode-line) | |
2176 (setq major-mode 'gnus-summary-mode) | |
2177 (setq mode-name "Summary") | |
2178 (make-local-variable 'minor-mode-alist) | |
2179 (use-local-map gnus-summary-mode-map) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2180 (buffer-disable-undo) |
17493 | 2181 (setq buffer-read-only t) ;Disable modification |
2182 (setq truncate-lines t) | |
2183 (setq selective-display t) | |
2184 (setq selective-display-ellipses t) ;Display `...' | |
2185 (gnus-summary-set-display-table) | |
2186 (gnus-set-default-directory) | |
2187 (setq gnus-newsgroup-name group) | |
2188 (make-local-variable 'gnus-summary-line-format) | |
2189 (make-local-variable 'gnus-summary-line-format-spec) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2190 (make-local-variable 'gnus-summary-dummy-line-format) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2191 (make-local-variable 'gnus-summary-dummy-line-format-spec) |
17493 | 2192 (make-local-variable 'gnus-summary-mark-positions) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2193 (make-local-hook 'pre-command-hook) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2194 (add-hook 'pre-command-hook 'gnus-set-global-variables nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2195 (gnus-run-hooks 'gnus-summary-mode-hook) |
88783
769c1cbf5c5e
(gnus-summary-mode, gnus-summary-display-article)
Dave Love <fx@gnu.org>
parents:
43362
diff
changeset
|
2196 (mm-enable-multibyte) |
17493 | 2197 (gnus-update-format-specifications nil 'summary 'summary-mode 'summary-dummy) |
2198 (gnus-update-summary-mark-positions)) | |
2199 | |
2200 (defun gnus-summary-make-local-variables () | |
2201 "Make all the local summary buffer variables." | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2202 (let (global) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2203 (dolist (local gnus-summary-local-variables) |
17493 | 2204 (if (consp local) |
2205 (progn | |
2206 (if (eq (cdr local) 'global) | |
2207 ;; Copy the global value of the variable. | |
2208 (setq global (symbol-value (car local))) | |
2209 ;; Use the value from the list. | |
2210 (setq global (eval (cdr local)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2211 (set (make-local-variable (car local)) global)) |
17493 | 2212 ;; Simple nil-valued local variable. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2213 (set (make-local-variable local) nil))))) |
17493 | 2214 |
2215 (defun gnus-summary-clear-local-variables () | |
2216 (let ((locals gnus-summary-local-variables)) | |
2217 (while locals | |
2218 (if (consp (car locals)) | |
2219 (and (vectorp (caar locals)) | |
2220 (set (caar locals) nil)) | |
2221 (and (vectorp (car locals)) | |
2222 (set (car locals) nil))) | |
2223 (setq locals (cdr locals))))) | |
2224 | |
2225 ;; Summary data functions. | |
2226 | |
2227 (defmacro gnus-data-number (data) | |
2228 `(car ,data)) | |
2229 | |
2230 (defmacro gnus-data-set-number (data number) | |
2231 `(setcar ,data ,number)) | |
2232 | |
2233 (defmacro gnus-data-mark (data) | |
2234 `(nth 1 ,data)) | |
2235 | |
2236 (defmacro gnus-data-set-mark (data mark) | |
2237 `(setcar (nthcdr 1 ,data) ,mark)) | |
2238 | |
2239 (defmacro gnus-data-pos (data) | |
2240 `(nth 2 ,data)) | |
2241 | |
2242 (defmacro gnus-data-set-pos (data pos) | |
2243 `(setcar (nthcdr 2 ,data) ,pos)) | |
2244 | |
2245 (defmacro gnus-data-header (data) | |
2246 `(nth 3 ,data)) | |
2247 | |
2248 (defmacro gnus-data-set-header (data header) | |
2249 `(setf (nth 3 ,data) ,header)) | |
2250 | |
2251 (defmacro gnus-data-level (data) | |
2252 `(nth 4 ,data)) | |
2253 | |
2254 (defmacro gnus-data-unread-p (data) | |
2255 `(= (nth 1 ,data) gnus-unread-mark)) | |
2256 | |
2257 (defmacro gnus-data-read-p (data) | |
2258 `(/= (nth 1 ,data) gnus-unread-mark)) | |
2259 | |
2260 (defmacro gnus-data-pseudo-p (data) | |
2261 `(consp (nth 3 ,data))) | |
2262 | |
2263 (defmacro gnus-data-find (number) | |
2264 `(assq ,number gnus-newsgroup-data)) | |
2265 | |
2266 (defmacro gnus-data-find-list (number &optional data) | |
2267 `(let ((bdata ,(or data 'gnus-newsgroup-data))) | |
2268 (memq (assq ,number bdata) | |
2269 bdata))) | |
2270 | |
2271 (defmacro gnus-data-make (number mark pos header level) | |
2272 `(list ,number ,mark ,pos ,header ,level)) | |
2273 | |
2274 (defun gnus-data-enter (after-article number mark pos header level offset) | |
2275 (let ((data (gnus-data-find-list after-article))) | |
2276 (unless data | |
2277 (error "No such article: %d" after-article)) | |
2278 (setcdr data (cons (gnus-data-make number mark pos header level) | |
2279 (cdr data))) | |
2280 (setq gnus-newsgroup-data-reverse nil) | |
2281 (gnus-data-update-list (cddr data) offset))) | |
2282 | |
2283 (defun gnus-data-enter-list (after-article list &optional offset) | |
2284 (when list | |
2285 (let ((data (and after-article (gnus-data-find-list after-article))) | |
2286 (ilist list)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2287 (if (not (or data |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2288 after-article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2289 (let ((odata gnus-newsgroup-data)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2290 (setq gnus-newsgroup-data (nconc list gnus-newsgroup-data)) |
17493 | 2291 (when offset |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2292 (gnus-data-update-list odata offset))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2293 ;; Find the last element in the list to be spliced into the main |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2294 ;; list. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2295 (while (cdr list) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2296 (setq list (cdr list))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2297 (if (not data) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2298 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2299 (setcdr list gnus-newsgroup-data) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2300 (setq gnus-newsgroup-data ilist) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2301 (when offset |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2302 (gnus-data-update-list (cdr list) offset))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2303 (setcdr list (cdr data)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2304 (setcdr data ilist) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2305 (when offset |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2306 (gnus-data-update-list (cdr list) offset)))) |
17493 | 2307 (setq gnus-newsgroup-data-reverse nil)))) |
2308 | |
2309 (defun gnus-data-remove (article &optional offset) | |
2310 (let ((data gnus-newsgroup-data)) | |
2311 (if (= (gnus-data-number (car data)) article) | |
2312 (progn | |
2313 (setq gnus-newsgroup-data (cdr gnus-newsgroup-data) | |
2314 gnus-newsgroup-data-reverse nil) | |
2315 (when offset | |
2316 (gnus-data-update-list gnus-newsgroup-data offset))) | |
2317 (while (cdr data) | |
2318 (when (= (gnus-data-number (cadr data)) article) | |
2319 (setcdr data (cddr data)) | |
2320 (when offset | |
2321 (gnus-data-update-list (cdr data) offset)) | |
2322 (setq data nil | |
2323 gnus-newsgroup-data-reverse nil)) | |
2324 (setq data (cdr data)))))) | |
2325 | |
2326 (defmacro gnus-data-list (backward) | |
2327 `(if ,backward | |
2328 (or gnus-newsgroup-data-reverse | |
2329 (setq gnus-newsgroup-data-reverse | |
2330 (reverse gnus-newsgroup-data))) | |
2331 gnus-newsgroup-data)) | |
2332 | |
2333 (defun gnus-data-update-list (data offset) | |
2334 "Add OFFSET to the POS of all data entries in DATA." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2335 (setq gnus-newsgroup-data-reverse nil) |
17493 | 2336 (while data |
2337 (setcar (nthcdr 2 (car data)) (+ offset (nth 2 (car data)))) | |
2338 (setq data (cdr data)))) | |
2339 | |
2340 (defun gnus-summary-article-pseudo-p (article) | |
2341 "Say whether this article is a pseudo article or not." | |
2342 (not (vectorp (gnus-data-header (gnus-data-find article))))) | |
2343 | |
2344 (defmacro gnus-summary-article-sparse-p (article) | |
2345 "Say whether this article is a sparse article or not." | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
2346 `(memq ,article gnus-newsgroup-sparse)) |
17493 | 2347 |
2348 (defmacro gnus-summary-article-ancient-p (article) | |
2349 "Say whether this article is a sparse article or not." | |
2350 `(memq ,article gnus-newsgroup-ancient)) | |
2351 | |
2352 (defun gnus-article-parent-p (number) | |
2353 "Say whether this article is a parent or not." | |
2354 (let ((data (gnus-data-find-list number))) | |
2355 (and (cdr data) ; There has to be an article after... | |
2356 (< (gnus-data-level (car data)) ; And it has to have a higher level. | |
2357 (gnus-data-level (nth 1 data)))))) | |
2358 | |
2359 (defun gnus-article-children (number) | |
2360 "Return a list of all children to NUMBER." | |
2361 (let* ((data (gnus-data-find-list number)) | |
2362 (level (gnus-data-level (car data))) | |
2363 children) | |
2364 (setq data (cdr data)) | |
2365 (while (and data | |
2366 (= (gnus-data-level (car data)) (1+ level))) | |
2367 (push (gnus-data-number (car data)) children) | |
2368 (setq data (cdr data))) | |
2369 children)) | |
2370 | |
2371 (defmacro gnus-summary-skip-intangible () | |
2372 "If the current article is intangible, then jump to a different article." | |
2373 '(let ((to (get-text-property (point) 'gnus-intangible))) | |
2374 (and to (gnus-summary-goto-subject to)))) | |
2375 | |
2376 (defmacro gnus-summary-article-intangible-p () | |
2377 "Say whether this article is intangible or not." | |
2378 '(get-text-property (point) 'gnus-intangible)) | |
2379 | |
2380 (defun gnus-article-read-p (article) | |
2381 "Say whether ARTICLE is read or not." | |
2382 (not (or (memq article gnus-newsgroup-marked) | |
2383 (memq article gnus-newsgroup-unreads) | |
2384 (memq article gnus-newsgroup-unselected) | |
2385 (memq article gnus-newsgroup-dormant)))) | |
2386 | |
2387 ;; Some summary mode macros. | |
2388 | |
2389 (defmacro gnus-summary-article-number () | |
2390 "The article number of the article on the current line. | |
48588 | 2391 If there isn't an article number here, then we return the current |
17493 | 2392 article number." |
2393 '(progn | |
2394 (gnus-summary-skip-intangible) | |
2395 (or (get-text-property (point) 'gnus-number) | |
2396 (gnus-summary-last-subject)))) | |
2397 | |
2398 (defmacro gnus-summary-article-header (&optional number) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2399 "Return the header of article NUMBER." |
17493 | 2400 `(gnus-data-header (gnus-data-find |
2401 ,(or number '(gnus-summary-article-number))))) | |
2402 | |
2403 (defmacro gnus-summary-thread-level (&optional number) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2404 "Return the level of thread that starts with article NUMBER." |
17493 | 2405 `(if (and (eq gnus-summary-make-false-root 'dummy) |
2406 (get-text-property (point) 'gnus-intangible)) | |
2407 0 | |
2408 (gnus-data-level (gnus-data-find | |
2409 ,(or number '(gnus-summary-article-number)))))) | |
2410 | |
2411 (defmacro gnus-summary-article-mark (&optional number) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2412 "Return the mark of article NUMBER." |
17493 | 2413 `(gnus-data-mark (gnus-data-find |
2414 ,(or number '(gnus-summary-article-number))))) | |
2415 | |
2416 (defmacro gnus-summary-article-pos (&optional number) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2417 "Return the position of the line of article NUMBER." |
17493 | 2418 `(gnus-data-pos (gnus-data-find |
2419 ,(or number '(gnus-summary-article-number))))) | |
2420 | |
2421 (defalias 'gnus-summary-subject-string 'gnus-summary-article-subject) | |
2422 (defmacro gnus-summary-article-subject (&optional number) | |
2423 "Return current subject string or nil if nothing." | |
2424 `(let ((headers | |
2425 ,(if number | |
2426 `(gnus-data-header (assq ,number gnus-newsgroup-data)) | |
2427 '(gnus-data-header (assq (gnus-summary-article-number) | |
2428 gnus-newsgroup-data))))) | |
2429 (and headers | |
2430 (vectorp headers) | |
2431 (mail-header-subject headers)))) | |
2432 | |
2433 (defmacro gnus-summary-article-score (&optional number) | |
2434 "Return current article score." | |
2435 `(or (cdr (assq ,(or number '(gnus-summary-article-number)) | |
2436 gnus-newsgroup-scored)) | |
2437 gnus-summary-default-score 0)) | |
2438 | |
2439 (defun gnus-summary-article-children (&optional number) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2440 "Return a list of article numbers that are children of article NUMBER." |
17493 | 2441 (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number)))) |
2442 (level (gnus-data-level (car data))) | |
2443 l children) | |
2444 (while (and (setq data (cdr data)) | |
2445 (> (setq l (gnus-data-level (car data))) level)) | |
2446 (and (= (1+ level) l) | |
2447 (push (gnus-data-number (car data)) | |
2448 children))) | |
2449 (nreverse children))) | |
2450 | |
2451 (defun gnus-summary-article-parent (&optional number) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2452 "Return the article number of the parent of article NUMBER." |
17493 | 2453 (let* ((data (gnus-data-find-list (or number (gnus-summary-article-number)) |
2454 (gnus-data-list t))) | |
2455 (level (gnus-data-level (car data)))) | |
2456 (if (zerop level) | |
2457 () ; This is a root. | |
2458 ;; We search until we find an article with a level less than | |
2459 ;; this one. That function has to be the parent. | |
2460 (while (and (setq data (cdr data)) | |
2461 (not (< (gnus-data-level (car data)) level)))) | |
2462 (and data (gnus-data-number (car data)))))) | |
2463 | |
2464 (defun gnus-unread-mark-p (mark) | |
2465 "Say whether MARK is the unread mark." | |
2466 (= mark gnus-unread-mark)) | |
2467 | |
2468 (defun gnus-read-mark-p (mark) | |
2469 "Say whether MARK is one of the marks that mark as read. | |
2470 This is all marks except unread, ticked, dormant, and expirable." | |
2471 (not (or (= mark gnus-unread-mark) | |
2472 (= mark gnus-ticked-mark) | |
2473 (= mark gnus-dormant-mark) | |
2474 (= mark gnus-expirable-mark)))) | |
2475 | |
2476 (defmacro gnus-article-mark (number) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2477 "Return the MARK of article NUMBER. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2478 This macro should only be used when computing the mark the \"first\" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2479 time; i.e., when generating the summary lines. After that, |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2480 `gnus-summary-article-mark' should be used to examine the |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2481 marks of articles." |
17493 | 2482 `(cond |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2483 ((memq ,number gnus-newsgroup-unsendable) gnus-unsendable-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2484 ((memq ,number gnus-newsgroup-undownloaded) gnus-undownloaded-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2485 ((memq ,number gnus-newsgroup-downloadable) gnus-downloadable-mark) |
17493 | 2486 ((memq ,number gnus-newsgroup-unreads) gnus-unread-mark) |
2487 ((memq ,number gnus-newsgroup-marked) gnus-ticked-mark) | |
2488 ((memq ,number gnus-newsgroup-dormant) gnus-dormant-mark) | |
2489 ((memq ,number gnus-newsgroup-expirable) gnus-expirable-mark) | |
2490 (t (or (cdr (assq ,number gnus-newsgroup-reads)) | |
2491 gnus-ancient-mark)))) | |
2492 | |
2493 ;; Saving hidden threads. | |
2494 | |
2495 (put 'gnus-save-hidden-threads 'lisp-indent-function 0) | |
2496 (put 'gnus-save-hidden-threads 'edebug-form-spec '(body)) | |
2497 | |
2498 (defmacro gnus-save-hidden-threads (&rest forms) | |
2499 "Save hidden threads, eval FORMS, and restore the hidden threads." | |
2500 (let ((config (make-symbol "config"))) | |
2501 `(let ((,config (gnus-hidden-threads-configuration))) | |
2502 (unwind-protect | |
2503 (save-excursion | |
2504 ,@forms) | |
2505 (gnus-restore-hidden-threads-configuration ,config))))) | |
2506 | |
24552
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2507 (defun gnus-data-compute-positions () |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2508 "Compute the positions of all articles." |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2509 (setq gnus-newsgroup-data-reverse nil) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2510 (let ((data gnus-newsgroup-data)) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2511 (save-excursion |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2512 (gnus-save-hidden-threads |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2513 (gnus-summary-show-all-threads) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2514 (goto-char (point-min)) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2515 (while data |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2516 (while (get-text-property (point) 'gnus-intangible) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2517 (forward-line 1)) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2518 (gnus-data-set-pos (car data) (+ (point) 3)) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2519 (setq data (cdr data)) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2520 (forward-line 1)))))) |
ccf2939fc5ec
(gnus-data-compute-positions): Move down after
Andreas Schwab <schwab@suse.de>
parents:
24357
diff
changeset
|
2521 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2522 (defun gnus-hidden-threads-configuration () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2523 "Return the current hidden threads configuration." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2524 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2525 (let (config) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2526 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2527 (while (search-forward "\r" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2528 (push (1- (point)) config)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2529 config))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2530 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2531 (defun gnus-restore-hidden-threads-configuration (config) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2532 "Restore hidden threads configuration from CONFIG." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2533 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2534 (let (point buffer-read-only) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2535 (while (setq point (pop config)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2536 (when (and (< point (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2537 (goto-char point) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2538 (eq (char-after) ?\n)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2539 (subst-char-in-region point (1+ point) ?\n ?\r)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2540 |
17493 | 2541 ;; Various summary mode internalish functions. |
2542 | |
2543 (defun gnus-mouse-pick-article (e) | |
2544 (interactive "e") | |
2545 (mouse-set-point e) | |
2546 (gnus-summary-next-page nil t)) | |
2547 | |
2548 (defun gnus-summary-set-display-table () | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2549 "Change the display table. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2550 Odd characters have a tendency to mess |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2551 up nicely formatted displays - we make all possible glyphs |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2552 display only a single character." |
17493 | 2553 |
2554 ;; We start from the standard display table, if any. | |
2555 (let ((table (or (copy-sequence standard-display-table) | |
2556 (make-display-table))) | |
2557 (i 32)) | |
2558 ;; Nix out all the control chars... | |
2559 (while (>= (setq i (1- i)) 0) | |
2560 (aset table i [??])) | |
2561 ;; ... but not newline and cr, of course. (cr is necessary for the | |
2562 ;; selective display). | |
2563 (aset table ?\n nil) | |
2564 (aset table ?\r nil) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2565 ;; We keep TAB as well. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2566 (aset table ?\t nil) |
17493 | 2567 ;; We nix out any glyphs over 126 that are not set already. |
2568 (let ((i 256)) | |
2569 (while (>= (setq i (1- i)) 127) | |
2570 ;; Only modify if the entry is nil. | |
2571 (unless (aref table i) | |
2572 (aset table i [??])))) | |
2573 (setq buffer-display-table table))) | |
2574 | |
2575 (defun gnus-summary-setup-buffer (group) | |
2576 "Initialize summary buffer." | |
2577 (let ((buffer (concat "*Summary " group "*"))) | |
2578 (if (get-buffer buffer) | |
2579 (progn | |
2580 (set-buffer buffer) | |
2581 (setq gnus-summary-buffer (current-buffer)) | |
2582 (not gnus-newsgroup-prepared)) | |
2583 ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu> | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2584 (setq gnus-summary-buffer (set-buffer (gnus-get-buffer-create buffer))) |
17493 | 2585 (gnus-summary-mode group) |
2586 (when gnus-carpal | |
2587 (gnus-carpal-setup-buffer 'summary)) | |
2588 (unless gnus-single-article-buffer | |
2589 (make-local-variable 'gnus-article-buffer) | |
2590 (make-local-variable 'gnus-article-current) | |
2591 (make-local-variable 'gnus-original-article-buffer)) | |
2592 (setq gnus-newsgroup-name group) | |
2593 t))) | |
2594 | |
2595 (defun gnus-set-global-variables () | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2596 "Set the global equivalents of the buffer-local variables. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2597 They are set to the latest values they had. These reflect the summary |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2598 buffer that was in action when the last article was fetched." |
17493 | 2599 (when (eq major-mode 'gnus-summary-mode) |
2600 (setq gnus-summary-buffer (current-buffer)) | |
2601 (let ((name gnus-newsgroup-name) | |
2602 (marked gnus-newsgroup-marked) | |
2603 (unread gnus-newsgroup-unreads) | |
2604 (headers gnus-current-headers) | |
2605 (data gnus-newsgroup-data) | |
2606 (summary gnus-summary-buffer) | |
2607 (article-buffer gnus-article-buffer) | |
2608 (original gnus-original-article-buffer) | |
2609 (gac gnus-article-current) | |
2610 (reffed gnus-reffed-article-number) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2611 (score-file gnus-current-score-file) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2612 (default-charset gnus-newsgroup-charset)) |
17493 | 2613 (save-excursion |
2614 (set-buffer gnus-group-buffer) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2615 (setq gnus-newsgroup-name name |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2616 gnus-newsgroup-marked marked |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2617 gnus-newsgroup-unreads unread |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2618 gnus-current-headers headers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2619 gnus-newsgroup-data data |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2620 gnus-article-current gac |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2621 gnus-summary-buffer summary |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2622 gnus-article-buffer article-buffer |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2623 gnus-original-article-buffer original |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2624 gnus-reffed-article-number reffed |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2625 gnus-current-score-file score-file |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2626 gnus-newsgroup-charset default-charset) |
17493 | 2627 ;; The article buffer also has local variables. |
2628 (when (gnus-buffer-live-p gnus-article-buffer) | |
2629 (set-buffer gnus-article-buffer) | |
2630 (setq gnus-summary-buffer summary)))))) | |
2631 | |
2632 (defun gnus-summary-article-unread-p (article) | |
2633 "Say whether ARTICLE is unread or not." | |
2634 (memq article gnus-newsgroup-unreads)) | |
2635 | |
2636 (defun gnus-summary-first-article-p (&optional article) | |
2637 "Return whether ARTICLE is the first article in the buffer." | |
2638 (if (not (setq article (or article (gnus-summary-article-number)))) | |
2639 nil | |
2640 (eq article (caar gnus-newsgroup-data)))) | |
2641 | |
2642 (defun gnus-summary-last-article-p (&optional article) | |
2643 "Return whether ARTICLE is the last article in the buffer." | |
2644 (if (not (setq article (or article (gnus-summary-article-number)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2645 ;; All non-existent numbers are the last article. :-) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2646 t |
17493 | 2647 (not (cdr (gnus-data-find-list article))))) |
2648 | |
2649 (defun gnus-make-thread-indent-array () | |
2650 (let ((n 200)) | |
2651 (unless (and gnus-thread-indent-array | |
2652 (= gnus-thread-indent-level gnus-thread-indent-array-level)) | |
2653 (setq gnus-thread-indent-array (make-vector 201 "") | |
2654 gnus-thread-indent-array-level gnus-thread-indent-level) | |
2655 (while (>= n 0) | |
2656 (aset gnus-thread-indent-array n | |
2657 (make-string (* n gnus-thread-indent-level) ? )) | |
2658 (setq n (1- n)))))) | |
2659 | |
2660 (defun gnus-update-summary-mark-positions () | |
2661 "Compute where the summary marks are to go." | |
2662 (save-excursion | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2663 (when (gnus-buffer-exists-p gnus-summary-buffer) |
17493 | 2664 (set-buffer gnus-summary-buffer)) |
2665 (let ((gnus-replied-mark 129) | |
2666 (gnus-score-below-mark 130) | |
2667 (gnus-score-over-mark 130) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2668 (gnus-download-mark 131) |
17493 | 2669 (spec gnus-summary-line-format-spec) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2670 gnus-visual pos) |
17493 | 2671 (save-excursion |
2672 (gnus-set-work-buffer) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2673 (let ((gnus-summary-line-format-spec spec) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2674 (gnus-newsgroup-downloadable '((0 . t)))) |
17493 | 2675 (gnus-summary-insert-line |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2676 [0 "" "" "" "" "" 0 0 "" nil] 0 nil 128 t nil "" nil 1) |
17493 | 2677 (goto-char (point-min)) |
2678 (setq pos (list (cons 'unread (and (search-forward "\200" nil t) | |
44515
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
2679 (- (point) (point-min) 1))))) |
17493 | 2680 (goto-char (point-min)) |
2681 (push (cons 'replied (and (search-forward "\201" nil t) | |
44515
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
2682 (- (point) (point-min) 1))) |
17493 | 2683 pos) |
2684 (goto-char (point-min)) | |
44515
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
2685 (push (cons 'score (and (search-forward "\202" nil t) |
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
2686 (- (point) (point-min) 1))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2687 pos) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2688 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2689 (push (cons 'download |
44515
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
2690 (and (search-forward "\203" nil t) |
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
2691 (- (point) (point-min) 1))) |
17493 | 2692 pos))) |
2693 (setq gnus-summary-mark-positions pos)))) | |
2694 | |
2695 (defun gnus-summary-insert-dummy-line (gnus-tmp-subject gnus-tmp-number) | |
2696 "Insert a dummy root in the summary buffer." | |
2697 (beginning-of-line) | |
2698 (gnus-add-text-properties | |
2699 (point) (progn (eval gnus-summary-dummy-line-format-spec) (point)) | |
2700 (list 'gnus-number gnus-tmp-number 'gnus-intangible gnus-tmp-number))) | |
2701 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2702 (defun gnus-summary-from-or-to-or-newsgroups (header) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2703 (let ((to (cdr (assq 'To (mail-header-extra header)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2704 (newsgroups (cdr (assq 'Newsgroups (mail-header-extra header)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2705 (mail-parse-charset gnus-newsgroup-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2706 (mail-parse-ignored-charsets |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2707 (save-excursion (set-buffer gnus-summary-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2708 gnus-newsgroup-ignored-charsets))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2709 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2710 ((and to |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2711 gnus-ignored-from-addresses |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2712 (string-match gnus-ignored-from-addresses |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2713 (mail-header-from header))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2714 (concat "-> " |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2715 (or (car (funcall gnus-extract-address-components |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2716 (funcall |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2717 gnus-decode-encoded-word-function to))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2718 (funcall gnus-decode-encoded-word-function to)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2719 ((and newsgroups |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2720 gnus-ignored-from-addresses |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2721 (string-match gnus-ignored-from-addresses |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2722 (mail-header-from header))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2723 (concat "=> " newsgroups)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2724 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2725 (or (car (funcall gnus-extract-address-components |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2726 (mail-header-from header))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2727 (mail-header-from header)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2728 |
17493 | 2729 (defun gnus-summary-insert-line (gnus-tmp-header |
2730 gnus-tmp-level gnus-tmp-current | |
2731 gnus-tmp-unread gnus-tmp-replied | |
2732 gnus-tmp-expirable gnus-tmp-subject-or-nil | |
2733 &optional gnus-tmp-dummy gnus-tmp-score | |
2734 gnus-tmp-process) | |
2735 (let* ((gnus-tmp-indentation (aref gnus-thread-indent-array gnus-tmp-level)) | |
2736 (gnus-tmp-lines (mail-header-lines gnus-tmp-header)) | |
2737 (gnus-tmp-score (or gnus-tmp-score gnus-summary-default-score 0)) | |
2738 (gnus-tmp-score-char | |
2739 (if (or (null gnus-summary-default-score) | |
2740 (<= (abs (- gnus-tmp-score gnus-summary-default-score)) | |
2741 gnus-summary-zcore-fuzz)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2742 ? ;Whitespace |
17493 | 2743 (if (< gnus-tmp-score gnus-summary-default-score) |
2744 gnus-score-below-mark gnus-score-over-mark))) | |
2745 (gnus-tmp-replied | |
2746 (cond (gnus-tmp-process gnus-process-mark) | |
2747 ((memq gnus-tmp-current gnus-newsgroup-cached) | |
2748 gnus-cached-mark) | |
2749 (gnus-tmp-replied gnus-replied-mark) | |
2750 ((memq gnus-tmp-current gnus-newsgroup-saved) | |
2751 gnus-saved-mark) | |
2752 (t gnus-unread-mark))) | |
2753 (gnus-tmp-from (mail-header-from gnus-tmp-header)) | |
2754 (gnus-tmp-name | |
2755 (cond | |
2756 ((string-match "<[^>]+> *$" gnus-tmp-from) | |
2757 (let ((beg (match-beginning 0))) | |
2758 (or (and (string-match "^\"[^\"]*\"" gnus-tmp-from) | |
2759 (substring gnus-tmp-from (1+ (match-beginning 0)) | |
2760 (1- (match-end 0)))) | |
2761 (substring gnus-tmp-from 0 beg)))) | |
2762 ((string-match "(.+)" gnus-tmp-from) | |
2763 (substring gnus-tmp-from | |
2764 (1+ (match-beginning 0)) (1- (match-end 0)))) | |
2765 (t gnus-tmp-from))) | |
2766 (gnus-tmp-subject (mail-header-subject gnus-tmp-header)) | |
2767 (gnus-tmp-number (mail-header-number gnus-tmp-header)) | |
2768 (gnus-tmp-opening-bracket (if gnus-tmp-dummy ?\< ?\[)) | |
2769 (gnus-tmp-closing-bracket (if gnus-tmp-dummy ?\> ?\])) | |
2770 (buffer-read-only nil)) | |
2771 (when (string= gnus-tmp-name "") | |
2772 (setq gnus-tmp-name gnus-tmp-from)) | |
2773 (unless (numberp gnus-tmp-lines) | |
2774 (setq gnus-tmp-lines 0)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2775 (gnus-put-text-property |
17493 | 2776 (point) |
2777 (progn (eval gnus-summary-line-format-spec) (point)) | |
2778 'gnus-number gnus-tmp-number) | |
2779 (when (gnus-visual-p 'summary-highlight 'highlight) | |
2780 (forward-line -1) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2781 (gnus-run-hooks 'gnus-summary-update-hook) |
17493 | 2782 (forward-line 1)))) |
2783 | |
2784 (defun gnus-summary-update-line (&optional dont-update) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2785 "Update summary line after change." |
17493 | 2786 (when (and gnus-summary-default-score |
2787 (not gnus-summary-inhibit-highlight)) | |
2788 (let* ((gnus-summary-inhibit-highlight t) ; Prevent recursion. | |
2789 (article (gnus-summary-article-number)) | |
2790 (score (gnus-summary-article-score article))) | |
2791 (unless dont-update | |
2792 (if (and gnus-summary-mark-below | |
2793 (< (gnus-summary-article-score) | |
2794 gnus-summary-mark-below)) | |
2795 ;; This article has a low score, so we mark it as read. | |
2796 (when (memq article gnus-newsgroup-unreads) | |
2797 (gnus-summary-mark-article-as-read gnus-low-score-mark)) | |
2798 (when (eq (gnus-summary-article-mark) gnus-low-score-mark) | |
2799 ;; This article was previously marked as read on account | |
2800 ;; of a low score, but now it has risen, so we mark it as | |
2801 ;; unread. | |
2802 (gnus-summary-mark-article-as-unread gnus-unread-mark))) | |
2803 (gnus-summary-update-mark | |
2804 (if (or (null gnus-summary-default-score) | |
2805 (<= (abs (- score gnus-summary-default-score)) | |
2806 gnus-summary-zcore-fuzz)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2807 ? ;Whitespace |
17493 | 2808 (if (< score gnus-summary-default-score) |
2809 gnus-score-below-mark gnus-score-over-mark)) | |
2810 'score)) | |
2811 ;; Do visual highlighting. | |
2812 (when (gnus-visual-p 'summary-highlight 'highlight) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2813 (gnus-run-hooks 'gnus-summary-update-hook))))) |
17493 | 2814 |
2815 (defvar gnus-tmp-new-adopts nil) | |
2816 | |
2817 (defun gnus-summary-number-of-articles-in-thread (thread &optional level char) | |
2818 "Return the number of articles in THREAD. | |
2819 This may be 0 in some cases -- if none of the articles in | |
2820 the thread are to be displayed." | |
2821 (let* ((number | |
2822 ;; Fix by Luc Van Eycken <Luc.VanEycken@esat.kuleuven.ac.be>. | |
2823 (cond | |
2824 ((not (listp thread)) | |
2825 1) | |
2826 ((and (consp thread) (cdr thread)) | |
2827 (apply | |
2828 '+ 1 (mapcar | |
2829 'gnus-summary-number-of-articles-in-thread (cdr thread)))) | |
2830 ((null thread) | |
2831 1) | |
2832 ((memq (mail-header-number (car thread)) gnus-newsgroup-limit) | |
2833 1) | |
2834 (t 0)))) | |
2835 (when (and level (zerop level) gnus-tmp-new-adopts) | |
2836 (incf number | |
2837 (apply '+ (mapcar | |
2838 'gnus-summary-number-of-articles-in-thread | |
2839 gnus-tmp-new-adopts)))) | |
2840 (if char | |
2841 (if (> number 1) gnus-not-empty-thread-mark | |
2842 gnus-empty-thread-mark) | |
2843 number))) | |
2844 | |
2845 (defun gnus-summary-set-local-parameters (group) | |
2846 "Go through the local params of GROUP and set all variable specs in that list." | |
2847 (let ((params (gnus-group-find-parameter group)) | |
2848 elem) | |
2849 (while params | |
2850 (setq elem (car params) | |
2851 params (cdr params)) | |
2852 (and (consp elem) ; Has to be a cons. | |
2853 (consp (cdr elem)) ; The cdr has to be a list. | |
2854 (symbolp (car elem)) ; Has to be a symbol in there. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2855 (not (memq (car elem) '(quit-config))) ; Ignore quit-config. |
17493 | 2856 (ignore-errors ; So we set it. |
2857 (make-local-variable (car elem)) | |
2858 (set (car elem) (eval (nth 1 elem)))))))) | |
2859 | |
2860 (defun gnus-summary-read-group (group &optional show-all no-article | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2861 kill-buffer no-display backward |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2862 select-articles) |
17493 | 2863 "Start reading news in newsgroup GROUP. |
2864 If SHOW-ALL is non-nil, already read articles are also listed. | |
2865 If NO-ARTICLE is non-nil, no article is selected initially. | |
2866 If NO-DISPLAY, don't generate a summary buffer." | |
2867 (let (result) | |
2868 (while (and group | |
2869 (null (setq result | |
2870 (let ((gnus-auto-select-next nil)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2871 (or (gnus-summary-read-group-1 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2872 group show-all no-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2873 kill-buffer no-display |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2874 select-articles) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2875 (setq show-all nil |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2876 select-articles nil))))) |
17493 | 2877 (eq gnus-auto-select-next 'quietly)) |
2878 (set-buffer gnus-group-buffer) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2879 ;; The entry function called above goes to the next |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2880 ;; group automatically, so we go two groups back |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2881 ;; if we are searching for the previous group. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2882 (when backward |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2883 (gnus-group-prev-unread-group 2)) |
17493 | 2884 (if (not (equal group (gnus-group-group-name))) |
2885 (setq group (gnus-group-group-name)) | |
2886 (setq group nil))) | |
2887 result)) | |
2888 | |
2889 (defun gnus-summary-read-group-1 (group show-all no-article | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2890 kill-buffer no-display |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2891 &optional select-articles) |
17493 | 2892 ;; Killed foreign groups can't be entered. |
2893 (when (and (not (gnus-group-native-p group)) | |
2894 (not (gnus-gethash group gnus-newsrc-hashtb))) | |
2895 (error "Dead non-native groups can't be entered")) | |
2896 (gnus-message 5 "Retrieving newsgroup: %s..." group) | |
2897 (let* ((new-group (gnus-summary-setup-buffer group)) | |
2898 (quit-config (gnus-group-quit-config group)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2899 (did-select (and new-group (gnus-select-newsgroup |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2900 group show-all select-articles)))) |
17493 | 2901 (cond |
2902 ;; This summary buffer exists already, so we just select it. | |
2903 ((not new-group) | |
2904 (gnus-set-global-variables) | |
2905 (when kill-buffer | |
2906 (gnus-kill-or-deaden-summary kill-buffer)) | |
2907 (gnus-configure-windows 'summary 'force) | |
2908 (gnus-set-mode-line 'summary) | |
2909 (gnus-summary-position-point) | |
2910 (message "") | |
2911 t) | |
2912 ;; We couldn't select this group. | |
2913 ((null did-select) | |
2914 (when (and (eq major-mode 'gnus-summary-mode) | |
2915 (not (equal (current-buffer) kill-buffer))) | |
2916 (kill-buffer (current-buffer)) | |
2917 (if (not quit-config) | |
2918 (progn | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2919 ;; Update the info -- marks might need to be removed, |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2920 ;; for instance. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2921 (gnus-summary-update-info) |
17493 | 2922 (set-buffer gnus-group-buffer) |
2923 (gnus-group-jump-to-group group) | |
2924 (gnus-group-next-unread-group 1)) | |
2925 (gnus-handle-ephemeral-exit quit-config))) | |
2926 (gnus-message 3 "Can't select group") | |
2927 nil) | |
2928 ;; The user did a `C-g' while prompting for number of articles, | |
2929 ;; so we exit this group. | |
2930 ((eq did-select 'quit) | |
2931 (and (eq major-mode 'gnus-summary-mode) | |
2932 (not (equal (current-buffer) kill-buffer)) | |
2933 (kill-buffer (current-buffer))) | |
2934 (when kill-buffer | |
2935 (gnus-kill-or-deaden-summary kill-buffer)) | |
2936 (if (not quit-config) | |
2937 (progn | |
2938 (set-buffer gnus-group-buffer) | |
2939 (gnus-group-jump-to-group group) | |
2940 (gnus-group-next-unread-group 1) | |
2941 (gnus-configure-windows 'group 'force)) | |
2942 (gnus-handle-ephemeral-exit quit-config)) | |
2943 ;; Finally signal the quit. | |
2944 (signal 'quit nil)) | |
2945 ;; The group was successfully selected. | |
2946 (t | |
2947 (gnus-set-global-variables) | |
2948 ;; Save the active value in effect when the group was entered. | |
2949 (setq gnus-newsgroup-active | |
2950 (gnus-copy-sequence | |
2951 (gnus-active gnus-newsgroup-name))) | |
2952 ;; You can change the summary buffer in some way with this hook. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2953 (gnus-run-hooks 'gnus-select-group-hook) |
17493 | 2954 ;; Set any local variables in the group parameters. |
2955 (gnus-summary-set-local-parameters gnus-newsgroup-name) | |
2956 (gnus-update-format-specifications | |
2957 nil 'summary 'summary-mode 'summary-dummy) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
2958 (gnus-update-summary-mark-positions) |
17493 | 2959 ;; Do score processing. |
2960 (when gnus-use-scoring | |
2961 (gnus-possibly-score-headers)) | |
2962 ;; Check whether to fill in the gaps in the threads. | |
2963 (when gnus-build-sparse-threads | |
2964 (gnus-build-sparse-threads)) | |
2965 ;; Find the initial limit. | |
2966 (if gnus-show-threads | |
2967 (if show-all | |
2968 (let ((gnus-newsgroup-dormant nil)) | |
2969 (gnus-summary-initial-limit show-all)) | |
2970 (gnus-summary-initial-limit show-all)) | |
48588 | 2971 ;; When unthreaded, all articles are always shown. |
17493 | 2972 (setq gnus-newsgroup-limit |
2973 (mapcar | |
2974 (lambda (header) (mail-header-number header)) | |
2975 gnus-newsgroup-headers))) | |
2976 ;; Generate the summary buffer. | |
2977 (unless no-display | |
2978 (gnus-summary-prepare)) | |
2979 (when gnus-use-trees | |
2980 (gnus-tree-open group) | |
2981 (setq gnus-summary-highlight-line-function | |
2982 'gnus-tree-highlight-article)) | |
2983 ;; If the summary buffer is empty, but there are some low-scored | |
2984 ;; articles or some excluded dormants, we include these in the | |
2985 ;; buffer. | |
2986 (when (and (zerop (buffer-size)) | |
2987 (not no-display)) | |
2988 (cond (gnus-newsgroup-dormant | |
2989 (gnus-summary-limit-include-dormant)) | |
2990 ((and gnus-newsgroup-scored show-all) | |
2991 (gnus-summary-limit-include-expunged t)))) | |
2992 ;; Function `gnus-apply-kill-file' must be called in this hook. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
2993 (gnus-run-hooks 'gnus-apply-kill-hook) |
17493 | 2994 (if (and (zerop (buffer-size)) |
2995 (not no-display)) | |
2996 (progn | |
2997 ;; This newsgroup is empty. | |
2998 (gnus-summary-catchup-and-exit nil t) | |
2999 (gnus-message 6 "No unread news") | |
3000 (when kill-buffer | |
3001 (gnus-kill-or-deaden-summary kill-buffer)) | |
3002 ;; Return nil from this function. | |
3003 nil) | |
3004 ;; Hide conversation thread subtrees. We cannot do this in | |
3005 ;; gnus-summary-prepare-hook since kill processing may not | |
3006 ;; work with hidden articles. | |
3007 (and gnus-show-threads | |
3008 gnus-thread-hide-subtree | |
3009 (gnus-summary-hide-all-threads)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3010 (when kill-buffer |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3011 (gnus-kill-or-deaden-summary kill-buffer)) |
17493 | 3012 ;; Show first unread article if requested. |
3013 (if (and (not no-article) | |
3014 (not no-display) | |
3015 gnus-newsgroup-unreads | |
3016 gnus-auto-select-first) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3017 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3018 (gnus-configure-windows 'summary) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3019 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3020 ((eq gnus-auto-select-first 'best) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3021 (gnus-summary-best-unread-article)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3022 ((eq gnus-auto-select-first t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3023 (gnus-summary-first-unread-article)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3024 ((gnus-functionp gnus-auto-select-first) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3025 (funcall gnus-auto-select-first)))) |
17493 | 3026 ;; Don't select any articles, just move point to the first |
3027 ;; article in the group. | |
3028 (goto-char (point-min)) | |
3029 (gnus-summary-position-point) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3030 (gnus-configure-windows 'summary 'force) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3031 (gnus-set-mode-line 'summary)) |
17493 | 3032 (when (get-buffer-window gnus-group-buffer t) |
3033 ;; Gotta use windows, because recenter does weird stuff if | |
3034 ;; the current buffer ain't the displayed window. | |
3035 (let ((owin (selected-window))) | |
3036 (select-window (get-buffer-window gnus-group-buffer t)) | |
3037 (when (gnus-group-goto-group group) | |
3038 (recenter)) | |
3039 (select-window owin))) | |
3040 ;; Mark this buffer as "prepared". | |
3041 (setq gnus-newsgroup-prepared t) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3042 (gnus-run-hooks 'gnus-summary-prepared-hook) |
17493 | 3043 t))))) |
3044 | |
3045 (defun gnus-summary-prepare () | |
3046 "Generate the summary buffer." | |
3047 (interactive) | |
3048 (let ((buffer-read-only nil)) | |
3049 (erase-buffer) | |
3050 (setq gnus-newsgroup-data nil | |
3051 gnus-newsgroup-data-reverse nil) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3052 (gnus-run-hooks 'gnus-summary-generate-hook) |
17493 | 3053 ;; Generate the buffer, either with threads or without. |
3054 (when gnus-newsgroup-headers | |
3055 (gnus-summary-prepare-threads | |
3056 (if gnus-show-threads | |
3057 (gnus-sort-gathered-threads | |
3058 (funcall gnus-summary-thread-gathering-function | |
3059 (gnus-sort-threads | |
3060 (gnus-cut-threads (gnus-make-threads))))) | |
3061 ;; Unthreaded display. | |
3062 (gnus-sort-articles gnus-newsgroup-headers)))) | |
3063 (setq gnus-newsgroup-data (nreverse gnus-newsgroup-data)) | |
3064 ;; Call hooks for modifying summary buffer. | |
3065 (goto-char (point-min)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3066 (gnus-run-hooks 'gnus-summary-prepare-hook))) |
17493 | 3067 |
3068 (defsubst gnus-general-simplify-subject (subject) | |
3069 "Simply subject by the same rules as gnus-gather-threads-by-subject." | |
3070 (setq subject | |
3071 (cond | |
3072 ;; Truncate the subject. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3073 (gnus-simplify-subject-functions |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3074 (gnus-map-function gnus-simplify-subject-functions subject)) |
17493 | 3075 ((numberp gnus-summary-gather-subject-limit) |
3076 (setq subject (gnus-simplify-subject-re subject)) | |
3077 (if (> (length subject) gnus-summary-gather-subject-limit) | |
3078 (substring subject 0 gnus-summary-gather-subject-limit) | |
3079 subject)) | |
3080 ;; Fuzzily simplify it. | |
3081 ((eq 'fuzzy gnus-summary-gather-subject-limit) | |
3082 (gnus-simplify-subject-fuzzy subject)) | |
3083 ;; Just remove the leading "Re:". | |
3084 (t | |
3085 (gnus-simplify-subject-re subject)))) | |
3086 | |
3087 (if (and gnus-summary-gather-exclude-subject | |
3088 (string-match gnus-summary-gather-exclude-subject subject)) | |
3089 nil ; This article shouldn't be gathered | |
3090 subject)) | |
3091 | |
3092 (defun gnus-summary-simplify-subject-query () | |
3093 "Query where the respool algorithm would put this article." | |
3094 (interactive) | |
3095 (gnus-summary-select-article) | |
3096 (message (gnus-general-simplify-subject (gnus-summary-article-subject)))) | |
3097 | |
3098 (defun gnus-gather-threads-by-subject (threads) | |
3099 "Gather threads by looking at Subject headers." | |
3100 (if (not gnus-summary-make-false-root) | |
3101 threads | |
3102 (let ((hashtb (gnus-make-hashtable 1024)) | |
3103 (prev threads) | |
3104 (result threads) | |
3105 subject hthread whole-subject) | |
3106 (while threads | |
3107 (setq subject (gnus-general-simplify-subject | |
3108 (setq whole-subject (mail-header-subject | |
3109 (caar threads))))) | |
3110 (when subject | |
3111 (if (setq hthread (gnus-gethash subject hashtb)) | |
3112 (progn | |
3113 ;; We enter a dummy root into the thread, if we | |
3114 ;; haven't done that already. | |
3115 (unless (stringp (caar hthread)) | |
3116 (setcar hthread (list whole-subject (car hthread)))) | |
3117 ;; We add this new gathered thread to this gathered | |
3118 ;; thread. | |
3119 (setcdr (car hthread) | |
3120 (nconc (cdar hthread) (list (car threads)))) | |
3121 ;; Remove it from the list of threads. | |
3122 (setcdr prev (cdr threads)) | |
3123 (setq threads prev)) | |
3124 ;; Enter this thread into the hash table. | |
3125 (gnus-sethash subject threads hashtb))) | |
3126 (setq prev threads) | |
3127 (setq threads (cdr threads))) | |
3128 result))) | |
3129 | |
3130 (defun gnus-gather-threads-by-references (threads) | |
3131 "Gather threads by looking at References headers." | |
3132 (let ((idhashtb (gnus-make-hashtable 1024)) | |
3133 (thhashtb (gnus-make-hashtable 1024)) | |
3134 (prev threads) | |
3135 (result threads) | |
3136 ids references id gthread gid entered ref) | |
3137 (while threads | |
3138 (when (setq references (mail-header-references (caar threads))) | |
3139 (setq id (mail-header-id (caar threads)) | |
3140 ids (gnus-split-references references) | |
3141 entered nil) | |
3142 (while (setq ref (pop ids)) | |
3143 (setq ids (delete ref ids)) | |
3144 (if (not (setq gid (gnus-gethash ref idhashtb))) | |
3145 (progn | |
3146 (gnus-sethash ref id idhashtb) | |
3147 (gnus-sethash id threads thhashtb)) | |
3148 (setq gthread (gnus-gethash gid thhashtb)) | |
3149 (unless entered | |
3150 ;; We enter a dummy root into the thread, if we | |
3151 ;; haven't done that already. | |
3152 (unless (stringp (caar gthread)) | |
3153 (setcar gthread (list (mail-header-subject (caar gthread)) | |
3154 (car gthread)))) | |
3155 ;; We add this new gathered thread to this gathered | |
3156 ;; thread. | |
3157 (setcdr (car gthread) | |
3158 (nconc (cdar gthread) (list (car threads))))) | |
3159 ;; Add it into the thread hash table. | |
3160 (gnus-sethash id gthread thhashtb) | |
3161 (setq entered t) | |
3162 ;; Remove it from the list of threads. | |
3163 (setcdr prev (cdr threads)) | |
3164 (setq threads prev)))) | |
3165 (setq prev threads) | |
3166 (setq threads (cdr threads))) | |
3167 result)) | |
3168 | |
3169 (defun gnus-sort-gathered-threads (threads) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3170 "Sort subtreads inside each gathered thread by `gnus-sort-gathered-threads-function'." |
17493 | 3171 (let ((result threads)) |
3172 (while threads | |
3173 (when (stringp (caar threads)) | |
3174 (setcdr (car threads) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3175 (sort (cdar threads) gnus-sort-gathered-threads-function))) |
17493 | 3176 (setq threads (cdr threads))) |
3177 result)) | |
3178 | |
3179 (defun gnus-thread-loop-p (root thread) | |
3180 "Say whether ROOT is in THREAD." | |
3181 (let ((stack (list thread)) | |
3182 (infloop 0) | |
3183 th) | |
3184 (while (setq thread (pop stack)) | |
3185 (setq th (cdr thread)) | |
3186 (while (and th | |
3187 (not (eq (caar th) root))) | |
3188 (pop th)) | |
3189 (if th | |
3190 ;; We have found a loop. | |
3191 (let (ref-dep) | |
3192 (setcdr thread (delq (car th) (cdr thread))) | |
3193 (if (boundp (setq ref-dep (intern "none" | |
3194 gnus-newsgroup-dependencies))) | |
3195 (setcdr (symbol-value ref-dep) | |
3196 (nconc (cdr (symbol-value ref-dep)) | |
3197 (list (car th)))) | |
3198 (set ref-dep (list nil (car th)))) | |
3199 (setq infloop 1 | |
3200 stack nil)) | |
3201 ;; Push all the subthreads onto the stack. | |
3202 (push (cdr thread) stack))) | |
3203 infloop)) | |
3204 | |
3205 (defun gnus-make-threads () | |
3206 "Go through the dependency hashtb and find the roots. Return all threads." | |
3207 (let (threads) | |
3208 (while (catch 'infloop | |
3209 (mapatoms | |
3210 (lambda (refs) | |
3211 ;; Deal with self-referencing References loops. | |
3212 (when (and (car (symbol-value refs)) | |
3213 (not (zerop | |
3214 (apply | |
3215 '+ | |
3216 (mapcar | |
3217 (lambda (thread) | |
3218 (gnus-thread-loop-p | |
3219 (car (symbol-value refs)) thread)) | |
3220 (cdr (symbol-value refs))))))) | |
3221 (setq threads nil) | |
3222 (throw 'infloop t)) | |
3223 (unless (car (symbol-value refs)) | |
3224 ;; These threads do not refer back to any other articles, | |
3225 ;; so they're roots. | |
3226 (setq threads (append (cdr (symbol-value refs)) threads)))) | |
3227 gnus-newsgroup-dependencies))) | |
3228 threads)) | |
3229 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3230 ;; Build the thread tree. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3231 (defsubst gnus-dependencies-add-header (header dependencies force-new) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3232 "Enter HEADER into the DEPENDENCIES table if it is not already there. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3233 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3234 If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3235 if it was already present. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3236 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3237 If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3238 will not be entered in the DEPENDENCIES table. Otherwise duplicate |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3239 Message-IDs will be renamed be renamed to a unique Message-ID before |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3240 being entered. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3241 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3242 Returns HEADER if it was entered in the DEPENDENCIES. Returns nil otherwise." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3243 (let* ((id (mail-header-id header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3244 (id-dep (and id (intern id dependencies))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3245 ref ref-dep ref-header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3246 ;; Enter this `header' in the `dependencies' table. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3247 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3248 ((not id-dep) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3249 (setq header nil)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3250 ;; The first two cases do the normal part: enter a new `header' |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3251 ;; in the `dependencies' table. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3252 ((not (boundp id-dep)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3253 (set id-dep (list header))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3254 ((null (car (symbol-value id-dep))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3255 (setcar (symbol-value id-dep) header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3256 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3257 ;; From here the `header' was already present in the |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3258 ;; `dependencies' table. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3259 (force-new |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3260 ;; Overrides an existing entry; |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3261 ;; just set the header part of the entry. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3262 (setcar (symbol-value id-dep) header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3263 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3264 ;; Renames the existing `header' to a unique Message-ID. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3265 ((not gnus-summary-ignore-duplicates) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3266 ;; An article with this Message-ID has already been seen. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3267 ;; We rename the Message-ID. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3268 (set (setq id-dep (intern (setq id (nnmail-message-id)) dependencies)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3269 (list header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3270 (mail-header-set-id header id)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3271 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3272 ;; The last case ignores an existing entry, except it adds any |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3273 ;; additional Xrefs (in case the two articles came from different |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3274 ;; servers. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3275 ;; Also sets `header' to `nil' meaning that the `dependencies' |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3276 ;; table was *not* modified. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3277 (t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3278 (mail-header-set-xref |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3279 (car (symbol-value id-dep)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3280 (concat (or (mail-header-xref (car (symbol-value id-dep))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3281 "") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3282 (or (mail-header-xref header) ""))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3283 (setq header nil))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3284 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3285 (when header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3286 ;; First check if that we are not creating a References loop. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3287 (setq ref (gnus-parent-id (mail-header-references header))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3288 (while (and ref |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3289 (setq ref-dep (intern-soft ref dependencies)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3290 (boundp ref-dep) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3291 (setq ref-header (car (symbol-value ref-dep)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3292 (if (string= id ref) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3293 ;; Yuk! This is a reference loop. Make the article be a |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3294 ;; root article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3295 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3296 (mail-header-set-references (car (symbol-value id-dep)) "none") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3297 (setq ref nil)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3298 (setq ref (gnus-parent-id (mail-header-references ref-header))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3299 (setq ref (gnus-parent-id (mail-header-references header))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3300 (setq ref-dep (intern (or ref "none") dependencies)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3301 (if (boundp ref-dep) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3302 (setcdr (symbol-value ref-dep) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3303 (nconc (cdr (symbol-value ref-dep)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3304 (list (symbol-value id-dep)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3305 (set ref-dep (list nil (symbol-value id-dep))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3306 header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3307 |
17493 | 3308 (defun gnus-build-sparse-threads () |
3309 (let ((headers gnus-newsgroup-headers) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3310 (mail-parse-charset gnus-newsgroup-charset) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3311 (gnus-summary-ignore-duplicates t) |
17493 | 3312 header references generation relations |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3313 subject child end new-child date) |
17493 | 3314 ;; First we create an alist of generations/relations, where |
3315 ;; generations is how much we trust the relation, and the relation | |
3316 ;; is parent/child. | |
3317 (gnus-message 7 "Making sparse threads...") | |
3318 (save-excursion | |
3319 (nnheader-set-temp-buffer " *gnus sparse threads*") | |
3320 (while (setq header (pop headers)) | |
3321 (when (and (setq references (mail-header-references header)) | |
3322 (not (string= references ""))) | |
3323 (insert references) | |
3324 (setq child (mail-header-id header) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3325 subject (mail-header-subject header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3326 date (mail-header-date header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3327 generation 0) |
17493 | 3328 (while (search-backward ">" nil t) |
3329 (setq end (1+ (point))) | |
3330 (when (search-backward "<" nil t) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3331 (setq new-child (buffer-substring (point) end)) |
17493 | 3332 (push (list (incf generation) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3333 child (setq child new-child) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3334 subject date) |
17493 | 3335 relations))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3336 (when child |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3337 (push (list (1+ generation) child nil subject) relations)) |
17493 | 3338 (erase-buffer))) |
3339 (kill-buffer (current-buffer))) | |
3340 ;; Sort over trustworthiness. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3341 (mapcar |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3342 (lambda (relation) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3343 (when (gnus-dependencies-add-header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3344 (make-full-mail-header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3345 gnus-reffed-article-number |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3346 (nth 3 relation) "" (or (nth 4 relation) "") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3347 (nth 1 relation) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3348 (or (nth 2 relation) "") 0 0 "") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3349 gnus-newsgroup-dependencies nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3350 (push gnus-reffed-article-number gnus-newsgroup-limit) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3351 (push gnus-reffed-article-number gnus-newsgroup-sparse) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3352 (push (cons gnus-reffed-article-number gnus-sparse-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3353 gnus-newsgroup-reads) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3354 (decf gnus-reffed-article-number))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3355 (sort relations 'car-less-than-car)) |
17493 | 3356 (gnus-message 7 "Making sparse threads...done"))) |
3357 | |
3358 (defun gnus-build-old-threads () | |
3359 ;; Look at all the articles that refer back to old articles, and | |
3360 ;; fetch the headers for the articles that aren't there. This will | |
3361 ;; build complete threads - if the roots haven't been expired by the | |
3362 ;; server, that is. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3363 (let ((mail-parse-charset gnus-newsgroup-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3364 id heads) |
17493 | 3365 (mapatoms |
3366 (lambda (refs) | |
3367 (when (not (car (symbol-value refs))) | |
3368 (setq heads (cdr (symbol-value refs))) | |
3369 (while heads | |
3370 (if (memq (mail-header-number (caar heads)) | |
3371 gnus-newsgroup-dormant) | |
3372 (setq heads (cdr heads)) | |
3373 (setq id (symbol-name refs)) | |
3374 (while (and (setq id (gnus-build-get-header id)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3375 (not (car (gnus-id-to-thread id))))) |
17493 | 3376 (setq heads nil))))) |
3377 gnus-newsgroup-dependencies))) | |
3378 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3379 ;; This function has to be called with point after the article number |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3380 ;; on the beginning of the line. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3381 (defsubst gnus-nov-parse-line (number dependencies &optional force-new) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3382 (let ((eol (gnus-point-at-eol)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3383 (buffer (current-buffer)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3384 header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3385 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3386 ;; overview: [num subject from date id refs chars lines misc] |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3387 (unwind-protect |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3388 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3389 (narrow-to-region (point) eol) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3390 (unless (eobp) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3391 (forward-char)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3392 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3393 (setq header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3394 (make-full-mail-header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3395 number ; number |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3396 (funcall gnus-decode-encoded-word-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3397 (nnheader-nov-field)) ; subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3398 (funcall gnus-decode-encoded-word-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3399 (nnheader-nov-field)) ; from |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3400 (nnheader-nov-field) ; date |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3401 (nnheader-nov-read-message-id) ; id |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3402 (nnheader-nov-field) ; refs |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3403 (nnheader-nov-read-integer) ; chars |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3404 (nnheader-nov-read-integer) ; lines |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3405 (unless (eobp) |
31785 | 3406 (if (looking-at "Xref: ") |
3407 (goto-char (match-end 0))) | |
3408 (nnheader-nov-field)) ; Xref | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3409 (nnheader-nov-parse-extra)))) ; extra |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3410 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3411 (widen)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3412 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3413 (when gnus-alter-header-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3414 (funcall gnus-alter-header-function header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3415 (gnus-dependencies-add-header header dependencies force-new))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3416 |
17493 | 3417 (defun gnus-build-get-header (id) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3418 "Look through the buffer of NOV lines and find the header to ID. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3419 Enter this line into the dependencies hash table, and return |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3420 the id of the parent article (if any)." |
17493 | 3421 (let ((deps gnus-newsgroup-dependencies) |
3422 found header) | |
3423 (prog1 | |
3424 (save-excursion | |
3425 (set-buffer nntp-server-buffer) | |
3426 (let ((case-fold-search nil)) | |
3427 (goto-char (point-min)) | |
3428 (while (and (not found) | |
3429 (search-forward id nil t)) | |
3430 (beginning-of-line) | |
3431 (setq found (looking-at | |
3432 (format "^[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t%s" | |
3433 (regexp-quote id)))) | |
3434 (or found (beginning-of-line 2))) | |
3435 (when found | |
3436 (beginning-of-line) | |
3437 (and | |
3438 (setq header (gnus-nov-parse-line | |
3439 (read (current-buffer)) deps)) | |
3440 (gnus-parent-id (mail-header-references header)))))) | |
3441 (when header | |
3442 (let ((number (mail-header-number header))) | |
3443 (push number gnus-newsgroup-limit) | |
3444 (push header gnus-newsgroup-headers) | |
3445 (if (memq number gnus-newsgroup-unselected) | |
3446 (progn | |
3447 (push number gnus-newsgroup-unreads) | |
3448 (setq gnus-newsgroup-unselected | |
3449 (delq number gnus-newsgroup-unselected))) | |
3450 (push number gnus-newsgroup-ancient))))))) | |
3451 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3452 (defun gnus-build-all-threads () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3453 "Read all the headers." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3454 (let ((gnus-summary-ignore-duplicates t) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3455 (mail-parse-charset gnus-newsgroup-charset) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3456 (dependencies gnus-newsgroup-dependencies) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3457 header article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3458 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3459 (set-buffer nntp-server-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3460 (let ((case-fold-search nil)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3461 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3462 (while (not (eobp)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3463 (ignore-errors |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3464 (setq article (read (current-buffer)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3465 header (gnus-nov-parse-line article dependencies))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3466 (when header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3467 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3468 (set-buffer gnus-summary-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3469 (push header gnus-newsgroup-headers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3470 (if (memq (setq article (mail-header-number header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3471 gnus-newsgroup-unselected) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3472 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3473 (push article gnus-newsgroup-unreads) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3474 (setq gnus-newsgroup-unselected |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3475 (delq article gnus-newsgroup-unselected))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3476 (push article gnus-newsgroup-ancient))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3477 (forward-line 1))))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3478 |
17493 | 3479 (defun gnus-summary-update-article-line (article header) |
3480 "Update the line for ARTICLE using HEADERS." | |
3481 (let* ((id (mail-header-id header)) | |
3482 (thread (gnus-id-to-thread id))) | |
3483 (unless thread | |
3484 (error "Article in no thread")) | |
3485 ;; Update the thread. | |
3486 (setcar thread header) | |
3487 (gnus-summary-goto-subject article) | |
3488 (let* ((datal (gnus-data-find-list article)) | |
3489 (data (car datal)) | |
3490 (length (when (cdr datal) | |
3491 (- (gnus-data-pos data) | |
3492 (gnus-data-pos (cadr datal))))) | |
3493 (buffer-read-only nil) | |
3494 (level (gnus-summary-thread-level))) | |
3495 (gnus-delete-line) | |
3496 (gnus-summary-insert-line | |
3497 header level nil (gnus-article-mark article) | |
3498 (memq article gnus-newsgroup-replied) | |
3499 (memq article gnus-newsgroup-expirable) | |
3500 ;; Only insert the Subject string when it's different | |
3501 ;; from the previous Subject string. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3502 (if (and |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3503 gnus-show-threads |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3504 (gnus-subject-equal |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3505 (condition-case () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3506 (mail-header-subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3507 (gnus-data-header |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3508 (cadr |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3509 (gnus-data-find-list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3510 article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3511 (gnus-data-list t))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3512 ;; Error on the side of excessive subjects. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3513 (error "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3514 (mail-header-subject header))) |
17493 | 3515 "" |
3516 (mail-header-subject header)) | |
3517 nil (cdr (assq article gnus-newsgroup-scored)) | |
3518 (memq article gnus-newsgroup-processable)) | |
3519 (when length | |
3520 (gnus-data-update-list | |
3521 (cdr datal) (- length (- (gnus-data-pos data) (point)))))))) | |
3522 | |
3523 (defun gnus-summary-update-article (article &optional iheader) | |
3524 "Update ARTICLE in the summary buffer." | |
3525 (set-buffer gnus-summary-buffer) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3526 (let* ((header (gnus-summary-article-header article)) |
17493 | 3527 (id (mail-header-id header)) |
3528 (data (gnus-data-find article)) | |
3529 (thread (gnus-id-to-thread id)) | |
3530 (references (mail-header-references header)) | |
3531 (parent | |
3532 (gnus-id-to-thread | |
3533 (or (gnus-parent-id | |
3534 (when (and references | |
3535 (not (equal "" references))) | |
3536 references)) | |
3537 "none"))) | |
3538 (buffer-read-only nil) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3539 (old (car thread))) |
17493 | 3540 (when thread |
3541 (unless iheader | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3542 (setcar thread nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3543 (when parent |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3544 (delq thread parent))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3545 (if (gnus-summary-insert-subject id header) |
17493 | 3546 ;; Set the (possibly) new article number in the data structure. |
3547 (gnus-data-set-number data (gnus-id-to-article id)) | |
3548 (setcar thread old) | |
3549 nil)))) | |
3550 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3551 (defun gnus-rebuild-thread (id &optional line) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3552 "Rebuild the thread containing ID. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3553 If LINE, insert the rebuilt thread starting on line LINE." |
17493 | 3554 (let ((buffer-read-only nil) |
3555 old-pos current thread data) | |
3556 (if (not gnus-show-threads) | |
3557 (setq thread (list (car (gnus-id-to-thread id)))) | |
3558 ;; Get the thread this article is part of. | |
3559 (setq thread (gnus-remove-thread id))) | |
3560 (setq old-pos (gnus-point-at-bol)) | |
3561 (setq current (save-excursion | |
43362
5fe3e0ee7fd7
* gnus-sum.el (gnus-rebuild-thread): Count hidden lines too.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
42206
diff
changeset
|
3562 (and (re-search-backward "[\r\n]" nil t) |
17493 | 3563 (gnus-summary-article-number)))) |
3564 ;; If this is a gathered thread, we have to go some re-gathering. | |
3565 (when (stringp (car thread)) | |
3566 (let ((subject (car thread)) | |
3567 roots thr) | |
3568 (setq thread (cdr thread)) | |
3569 (while thread | |
3570 (unless (memq (setq thr (gnus-id-to-thread | |
3571 (gnus-root-id | |
3572 (mail-header-id (caar thread))))) | |
3573 roots) | |
3574 (push thr roots)) | |
3575 (setq thread (cdr thread))) | |
3576 ;; We now have all (unique) roots. | |
3577 (if (= (length roots) 1) | |
3578 ;; All the loose roots are now one solid root. | |
3579 (setq thread (car roots)) | |
3580 (setq thread (cons subject (gnus-sort-threads roots)))))) | |
3581 (let (threads) | |
3582 ;; We then insert this thread into the summary buffer. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3583 (when line |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3584 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3585 (forward-line (1- line))) |
17493 | 3586 (let (gnus-newsgroup-data gnus-newsgroup-threads) |
3587 (if gnus-show-threads | |
3588 (gnus-summary-prepare-threads (gnus-cut-threads (list thread))) | |
3589 (gnus-summary-prepare-unthreaded thread)) | |
3590 (setq data (nreverse gnus-newsgroup-data)) | |
3591 (setq threads gnus-newsgroup-threads)) | |
3592 ;; We splice the new data into the data structure. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3593 ;;!!! This is kinda bogus. We assume that in LINE is non-nil, |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3594 ;;!!! then we want to insert at the beginning of the buffer. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3595 ;;!!! That happens to be true with Gnus now, but that may |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3596 ;;!!! change in the future. Perhaps. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3597 (gnus-data-enter-list |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3598 (if line nil current) data (- (point) old-pos)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3599 (setq gnus-newsgroup-threads |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3600 (nconc threads gnus-newsgroup-threads)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3601 (gnus-data-compute-positions)))) |
17493 | 3602 |
3603 (defun gnus-number-to-header (number) | |
3604 "Return the header for article NUMBER." | |
3605 (let ((headers gnus-newsgroup-headers)) | |
3606 (while (and headers | |
3607 (not (= number (mail-header-number (car headers))))) | |
3608 (pop headers)) | |
3609 (when headers | |
3610 (car headers)))) | |
3611 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3612 (defun gnus-parent-headers (in-headers &optional generation) |
17493 | 3613 "Return the headers of the GENERATIONeth parent of HEADERS." |
3614 (unless generation | |
3615 (setq generation 1)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
3616 (let ((parent t) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3617 (headers in-headers) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
3618 references) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3619 (while (and parent |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3620 (not (zerop generation)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3621 (setq references (mail-header-references headers))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3622 (setq headers (if (and references |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3623 (setq parent (gnus-parent-id references))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3624 (car (gnus-id-to-thread parent)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3625 nil)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3626 (decf generation)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3627 (and (not (eq headers in-headers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3628 headers))) |
17493 | 3629 |
3630 (defun gnus-id-to-thread (id) | |
3631 "Return the (sub-)thread where ID appears." | |
3632 (gnus-gethash id gnus-newsgroup-dependencies)) | |
3633 | |
3634 (defun gnus-id-to-article (id) | |
3635 "Return the article number of ID." | |
3636 (let ((thread (gnus-id-to-thread id))) | |
3637 (when (and thread | |
3638 (car thread)) | |
3639 (mail-header-number (car thread))))) | |
3640 | |
3641 (defun gnus-id-to-header (id) | |
3642 "Return the article headers of ID." | |
3643 (car (gnus-id-to-thread id))) | |
3644 | |
3645 (defun gnus-article-displayed-root-p (article) | |
3646 "Say whether ARTICLE is a root(ish) article." | |
3647 (let ((level (gnus-summary-thread-level article)) | |
3648 (refs (mail-header-references (gnus-summary-article-header article))) | |
3649 particle) | |
3650 (cond | |
3651 ((null level) nil) | |
3652 ((zerop level) t) | |
3653 ((null refs) t) | |
3654 ((null (gnus-parent-id refs)) t) | |
3655 ((and (= 1 level) | |
3656 (null (setq particle (gnus-id-to-article | |
3657 (gnus-parent-id refs)))) | |
3658 (null (gnus-summary-thread-level particle))))))) | |
3659 | |
3660 (defun gnus-root-id (id) | |
3661 "Return the id of the root of the thread where ID appears." | |
3662 (let (last-id prev) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3663 (while (and id (setq prev (car (gnus-id-to-thread id)))) |
17493 | 3664 (setq last-id id |
3665 id (gnus-parent-id (mail-header-references prev)))) | |
3666 last-id)) | |
3667 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3668 (defun gnus-articles-in-thread (thread) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3669 "Return the list of articles in THREAD." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3670 (cons (mail-header-number (car thread)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3671 (apply 'nconc (mapcar 'gnus-articles-in-thread (cdr thread))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3672 |
17493 | 3673 (defun gnus-remove-thread (id &optional dont-remove) |
3674 "Remove the thread that has ID in it." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3675 (let (headers thread last-id) |
17493 | 3676 ;; First go up in this thread until we find the root. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3677 (setq last-id (gnus-root-id id) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3678 headers (message-flatten-list (gnus-id-to-thread last-id))) |
17493 | 3679 ;; We have now found the real root of this thread. It might have |
3680 ;; been gathered into some loose thread, so we have to search | |
3681 ;; through the threads to find the thread we wanted. | |
3682 (let ((threads gnus-newsgroup-threads) | |
3683 sub) | |
3684 (while threads | |
3685 (setq sub (car threads)) | |
3686 (if (stringp (car sub)) | |
3687 ;; This is a gathered thread, so we look at the roots | |
3688 ;; below it to find whether this article is in this | |
3689 ;; gathered root. | |
3690 (progn | |
3691 (setq sub (cdr sub)) | |
3692 (while sub | |
3693 (when (member (caar sub) headers) | |
3694 (setq thread (car threads) | |
3695 threads nil | |
3696 sub nil)) | |
3697 (setq sub (cdr sub)))) | |
3698 ;; It's an ordinary thread, so we check it. | |
3699 (when (eq (car sub) (car headers)) | |
3700 (setq thread sub | |
3701 threads nil))) | |
3702 (setq threads (cdr threads))) | |
3703 ;; If this article is in no thread, then it's a root. | |
3704 (if thread | |
3705 (unless dont-remove | |
3706 (setq gnus-newsgroup-threads (delq thread gnus-newsgroup-threads))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3707 (setq thread (gnus-id-to-thread last-id))) |
17493 | 3708 (when thread |
3709 (prog1 | |
3710 thread ; We return this thread. | |
3711 (unless dont-remove | |
3712 (if (stringp (car thread)) | |
3713 (progn | |
3714 ;; If we use dummy roots, then we have to remove the | |
3715 ;; dummy root as well. | |
3716 (when (eq gnus-summary-make-false-root 'dummy) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3717 ;; We go to the dummy root by going to |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3718 ;; the first sub-"thread", and then one line up. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3719 (gnus-summary-goto-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3720 (mail-header-number (caadr thread))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3721 (forward-line -1) |
17493 | 3722 (gnus-delete-line) |
3723 (gnus-data-compute-positions)) | |
3724 (setq thread (cdr thread)) | |
3725 (while thread | |
3726 (gnus-remove-thread-1 (car thread)) | |
3727 (setq thread (cdr thread)))) | |
3728 (gnus-remove-thread-1 thread)))))))) | |
3729 | |
3730 (defun gnus-remove-thread-1 (thread) | |
3731 "Remove the thread THREAD recursively." | |
3732 (let ((number (mail-header-number (pop thread))) | |
3733 d) | |
3734 (setq thread (reverse thread)) | |
3735 (while thread | |
3736 (gnus-remove-thread-1 (pop thread))) | |
3737 (when (setq d (gnus-data-find number)) | |
3738 (goto-char (gnus-data-pos d)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3739 (gnus-summary-show-thread) |
17493 | 3740 (gnus-data-remove |
3741 number | |
3742 (- (gnus-point-at-bol) | |
3743 (prog1 | |
3744 (1+ (gnus-point-at-eol)) | |
3745 (gnus-delete-line))))))) | |
3746 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3747 (defun gnus-sort-threads-1 (threads func) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3748 (sort (mapcar (lambda (thread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3749 (cons (car thread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3750 (and (cdr thread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3751 (gnus-sort-threads-1 (cdr thread) func)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3752 threads) func)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3753 |
17493 | 3754 (defun gnus-sort-threads (threads) |
3755 "Sort THREADS." | |
3756 (if (not gnus-thread-sort-functions) | |
3757 threads | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3758 (gnus-message 8 "Sorting threads...") |
17493 | 3759 (prog1 |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
3760 (gnus-sort-threads-1 |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
3761 threads |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3762 (gnus-make-sort-function gnus-thread-sort-functions)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3763 (gnus-message 8 "Sorting threads...done")))) |
17493 | 3764 |
3765 (defun gnus-sort-articles (articles) | |
3766 "Sort ARTICLES." | |
3767 (when gnus-article-sort-functions | |
3768 (gnus-message 7 "Sorting articles...") | |
3769 (prog1 | |
3770 (setq gnus-newsgroup-headers | |
3771 (sort articles (gnus-make-sort-function | |
3772 gnus-article-sort-functions))) | |
3773 (gnus-message 7 "Sorting articles...done")))) | |
3774 | |
3775 ;; Written by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>. | |
3776 (defmacro gnus-thread-header (thread) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3777 "Return header of first article in THREAD. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3778 Note that THREAD must never, ever be anything else than a variable - |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3779 using some other form will lead to serious barfage." |
17493 | 3780 (or (symbolp thread) (signal 'wrong-type-argument '(symbolp thread))) |
3781 ;; (8% speedup to gnus-summary-prepare, just for fun :-) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3782 (list 'byte-code "\10\211:\203\17\0\211@;\203\16\0A@@\207" |
17493 | 3783 (vector thread) 2)) |
3784 | |
3785 (defsubst gnus-article-sort-by-number (h1 h2) | |
3786 "Sort articles by article number." | |
3787 (< (mail-header-number h1) | |
3788 (mail-header-number h2))) | |
3789 | |
3790 (defun gnus-thread-sort-by-number (h1 h2) | |
3791 "Sort threads by root article number." | |
3792 (gnus-article-sort-by-number | |
3793 (gnus-thread-header h1) (gnus-thread-header h2))) | |
3794 | |
3795 (defsubst gnus-article-sort-by-lines (h1 h2) | |
3796 "Sort articles by article Lines header." | |
3797 (< (mail-header-lines h1) | |
3798 (mail-header-lines h2))) | |
3799 | |
3800 (defun gnus-thread-sort-by-lines (h1 h2) | |
3801 "Sort threads by root article Lines header." | |
3802 (gnus-article-sort-by-lines | |
3803 (gnus-thread-header h1) (gnus-thread-header h2))) | |
3804 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3805 (defsubst gnus-article-sort-by-chars (h1 h2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3806 "Sort articles by octet length." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3807 (< (mail-header-chars h1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3808 (mail-header-chars h2))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3809 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3810 (defun gnus-thread-sort-by-chars (h1 h2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3811 "Sort threads by root article octet length." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3812 (gnus-article-sort-by-chars |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3813 (gnus-thread-header h1) (gnus-thread-header h2))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3814 |
17493 | 3815 (defsubst gnus-article-sort-by-author (h1 h2) |
3816 "Sort articles by root author." | |
3817 (string-lessp | |
3818 (let ((extract (funcall | |
3819 gnus-extract-address-components | |
3820 (mail-header-from h1)))) | |
3821 (or (car extract) (cadr extract) "")) | |
3822 (let ((extract (funcall | |
3823 gnus-extract-address-components | |
3824 (mail-header-from h2)))) | |
3825 (or (car extract) (cadr extract) "")))) | |
3826 | |
3827 (defun gnus-thread-sort-by-author (h1 h2) | |
3828 "Sort threads by root author." | |
3829 (gnus-article-sort-by-author | |
3830 (gnus-thread-header h1) (gnus-thread-header h2))) | |
3831 | |
3832 (defsubst gnus-article-sort-by-subject (h1 h2) | |
3833 "Sort articles by root subject." | |
3834 (string-lessp | |
3835 (downcase (gnus-simplify-subject-re (mail-header-subject h1))) | |
3836 (downcase (gnus-simplify-subject-re (mail-header-subject h2))))) | |
3837 | |
3838 (defun gnus-thread-sort-by-subject (h1 h2) | |
3839 "Sort threads by root subject." | |
3840 (gnus-article-sort-by-subject | |
3841 (gnus-thread-header h1) (gnus-thread-header h2))) | |
3842 | |
3843 (defsubst gnus-article-sort-by-date (h1 h2) | |
3844 "Sort articles by root article date." | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3845 (time-less-p |
17493 | 3846 (gnus-date-get-time (mail-header-date h1)) |
3847 (gnus-date-get-time (mail-header-date h2)))) | |
3848 | |
3849 (defun gnus-thread-sort-by-date (h1 h2) | |
3850 "Sort threads by root article date." | |
3851 (gnus-article-sort-by-date | |
3852 (gnus-thread-header h1) (gnus-thread-header h2))) | |
3853 | |
3854 (defsubst gnus-article-sort-by-score (h1 h2) | |
3855 "Sort articles by root article score. | |
3856 Unscored articles will be counted as having a score of zero." | |
3857 (> (or (cdr (assq (mail-header-number h1) | |
3858 gnus-newsgroup-scored)) | |
3859 gnus-summary-default-score 0) | |
3860 (or (cdr (assq (mail-header-number h2) | |
3861 gnus-newsgroup-scored)) | |
3862 gnus-summary-default-score 0))) | |
3863 | |
3864 (defun gnus-thread-sort-by-score (h1 h2) | |
3865 "Sort threads by root article score." | |
3866 (gnus-article-sort-by-score | |
3867 (gnus-thread-header h1) (gnus-thread-header h2))) | |
3868 | |
3869 (defun gnus-thread-sort-by-total-score (h1 h2) | |
3870 "Sort threads by the sum of all scores in the thread. | |
3871 Unscored articles will be counted as having a score of zero." | |
3872 (> (gnus-thread-total-score h1) (gnus-thread-total-score h2))) | |
3873 | |
3874 (defun gnus-thread-total-score (thread) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3875 ;; This function find the total score of THREAD. |
17493 | 3876 (cond ((null thread) |
3877 0) | |
3878 ((consp thread) | |
3879 (if (stringp (car thread)) | |
3880 (apply gnus-thread-score-function 0 | |
3881 (mapcar 'gnus-thread-total-score-1 (cdr thread))) | |
3882 (gnus-thread-total-score-1 thread))) | |
3883 (t | |
3884 (gnus-thread-total-score-1 (list thread))))) | |
3885 | |
3886 (defun gnus-thread-total-score-1 (root) | |
3887 ;; This function find the total score of the thread below ROOT. | |
3888 (setq root (car root)) | |
3889 (apply gnus-thread-score-function | |
3890 (or (append | |
3891 (mapcar 'gnus-thread-total-score | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
3892 (cdr (gnus-id-to-thread (mail-header-id root)))) |
17493 | 3893 (when (> (mail-header-number root) 0) |
3894 (list (or (cdr (assq (mail-header-number root) | |
3895 gnus-newsgroup-scored)) | |
3896 gnus-summary-default-score 0)))) | |
3897 (list gnus-summary-default-score) | |
3898 '(0)))) | |
3899 | |
3900 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>. | |
3901 (defvar gnus-tmp-prev-subject nil) | |
3902 (defvar gnus-tmp-false-parent nil) | |
3903 (defvar gnus-tmp-root-expunged nil) | |
3904 (defvar gnus-tmp-dummy-line nil) | |
3905 | |
33313
8a606f4c8066
Put some defvars in eval-when-compile.
Dave Love <fx@gnu.org>
parents:
33126
diff
changeset
|
3906 (eval-when-compile (defvar gnus-tmp-header)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3907 (defun gnus-extra-header (type &optional header) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3908 "Return the extra header of TYPE." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3909 (or (cdr (assq type (mail-header-extra (or header gnus-tmp-header)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3910 "")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
3911 |
17493 | 3912 (defun gnus-summary-prepare-threads (threads) |
3913 "Prepare summary buffer from THREADS and indentation LEVEL. | |
3914 THREADS is either a list of `(PARENT [(CHILD1 [(GRANDCHILD ...]...) ...])' | |
3915 or a straight list of headers." | |
3916 (gnus-message 7 "Generating summary...") | |
3917 | |
3918 (setq gnus-newsgroup-threads threads) | |
3919 (beginning-of-line) | |
3920 | |
3921 (let ((gnus-tmp-level 0) | |
3922 (default-score (or gnus-summary-default-score 0)) | |
3923 (gnus-visual-p (gnus-visual-p 'summary-highlight 'highlight)) | |
3924 thread number subject stack state gnus-tmp-gathered beg-match | |
3925 new-roots gnus-tmp-new-adopts thread-end | |
3926 gnus-tmp-header gnus-tmp-unread | |
3927 gnus-tmp-replied gnus-tmp-subject-or-nil | |
3928 gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score | |
3929 gnus-tmp-score-char gnus-tmp-from gnus-tmp-name | |
3930 gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket) | |
3931 | |
3932 (setq gnus-tmp-prev-subject nil) | |
3933 | |
3934 (if (vectorp (car threads)) | |
3935 ;; If this is a straight (sic) list of headers, then a | |
3936 ;; threaded summary display isn't required, so we just create | |
3937 ;; an unthreaded one. | |
3938 (gnus-summary-prepare-unthreaded threads) | |
3939 | |
3940 ;; Do the threaded display. | |
3941 | |
3942 (while (or threads stack gnus-tmp-new-adopts new-roots) | |
3943 | |
3944 (if (and (= gnus-tmp-level 0) | |
3945 (or (not stack) | |
3946 (= (caar stack) 0)) | |
3947 (not gnus-tmp-false-parent) | |
3948 (or gnus-tmp-new-adopts new-roots)) | |
3949 (if gnus-tmp-new-adopts | |
3950 (setq gnus-tmp-level (if gnus-tmp-root-expunged 0 1) | |
3951 thread (list (car gnus-tmp-new-adopts)) | |
3952 gnus-tmp-header (caar thread) | |
3953 gnus-tmp-new-adopts (cdr gnus-tmp-new-adopts)) | |
3954 (when new-roots | |
3955 (setq thread (list (car new-roots)) | |
3956 gnus-tmp-header (caar thread) | |
3957 new-roots (cdr new-roots)))) | |
3958 | |
3959 (if threads | |
3960 ;; If there are some threads, we do them before the | |
3961 ;; threads on the stack. | |
3962 (setq thread threads | |
3963 gnus-tmp-header (caar thread)) | |
3964 ;; There were no current threads, so we pop something off | |
3965 ;; the stack. | |
3966 (setq state (car stack) | |
3967 gnus-tmp-level (car state) | |
3968 thread (cdr state) | |
3969 stack (cdr stack) | |
3970 gnus-tmp-header (caar thread)))) | |
3971 | |
3972 (setq gnus-tmp-false-parent nil) | |
3973 (setq gnus-tmp-root-expunged nil) | |
3974 (setq thread-end nil) | |
3975 | |
3976 (if (stringp gnus-tmp-header) | |
3977 ;; The header is a dummy root. | |
3978 (cond | |
3979 ((eq gnus-summary-make-false-root 'adopt) | |
3980 ;; We let the first article adopt the rest. | |
3981 (setq gnus-tmp-new-adopts (nconc gnus-tmp-new-adopts | |
3982 (cddar thread))) | |
3983 (setq gnus-tmp-gathered | |
3984 (nconc (mapcar | |
3985 (lambda (h) (mail-header-number (car h))) | |
3986 (cddar thread)) | |
3987 gnus-tmp-gathered)) | |
3988 (setq thread (cons (list (caar thread) | |
3989 (cadar thread)) | |
3990 (cdr thread))) | |
3991 (setq gnus-tmp-level -1 | |
3992 gnus-tmp-false-parent t)) | |
3993 ((eq gnus-summary-make-false-root 'empty) | |
3994 ;; We print adopted articles with empty subject fields. | |
3995 (setq gnus-tmp-gathered | |
3996 (nconc (mapcar | |
3997 (lambda (h) (mail-header-number (car h))) | |
3998 (cddar thread)) | |
3999 gnus-tmp-gathered)) | |
4000 (setq gnus-tmp-level -1)) | |
4001 ((eq gnus-summary-make-false-root 'dummy) | |
4002 ;; We remember that we probably want to output a dummy | |
4003 ;; root. | |
4004 (setq gnus-tmp-dummy-line gnus-tmp-header) | |
4005 (setq gnus-tmp-prev-subject gnus-tmp-header)) | |
4006 (t | |
4007 ;; We do not make a root for the gathered | |
4008 ;; sub-threads at all. | |
4009 (setq gnus-tmp-level -1))) | |
4010 | |
4011 (setq number (mail-header-number gnus-tmp-header) | |
4012 subject (mail-header-subject gnus-tmp-header)) | |
4013 | |
4014 (cond | |
4015 ;; If the thread has changed subject, we might want to make | |
4016 ;; this subthread into a root. | |
4017 ((and (null gnus-thread-ignore-subject) | |
4018 (not (zerop gnus-tmp-level)) | |
4019 gnus-tmp-prev-subject | |
4020 (not (inline | |
4021 (gnus-subject-equal gnus-tmp-prev-subject subject)))) | |
4022 (setq new-roots (nconc new-roots (list (car thread))) | |
4023 thread-end t | |
4024 gnus-tmp-header nil)) | |
4025 ;; If the article lies outside the current limit, | |
4026 ;; then we do not display it. | |
4027 ((not (memq number gnus-newsgroup-limit)) | |
4028 (setq gnus-tmp-gathered | |
4029 (nconc (mapcar | |
4030 (lambda (h) (mail-header-number (car h))) | |
4031 (cdar thread)) | |
4032 gnus-tmp-gathered)) | |
4033 (setq gnus-tmp-new-adopts (if (cdar thread) | |
4034 (append gnus-tmp-new-adopts | |
4035 (cdar thread)) | |
4036 gnus-tmp-new-adopts) | |
4037 thread-end t | |
4038 gnus-tmp-header nil) | |
4039 (when (zerop gnus-tmp-level) | |
4040 (setq gnus-tmp-root-expunged t))) | |
4041 ;; Perhaps this article is to be marked as read? | |
4042 ((and gnus-summary-mark-below | |
4043 (< (or (cdr (assq number gnus-newsgroup-scored)) | |
4044 default-score) | |
4045 gnus-summary-mark-below) | |
4046 ;; Don't touch sparse articles. | |
4047 (not (gnus-summary-article-sparse-p number)) | |
4048 (not (gnus-summary-article-ancient-p number))) | |
4049 (setq gnus-newsgroup-unreads | |
4050 (delq number gnus-newsgroup-unreads)) | |
4051 (if gnus-newsgroup-auto-expire | |
4052 (push number gnus-newsgroup-expirable) | |
4053 (push (cons number gnus-low-score-mark) | |
4054 gnus-newsgroup-reads)))) | |
4055 | |
4056 (when gnus-tmp-header | |
4057 ;; We may have an old dummy line to output before this | |
4058 ;; article. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4059 (when (and gnus-tmp-dummy-line |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4060 (gnus-subject-equal |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4061 gnus-tmp-dummy-line |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4062 (mail-header-subject gnus-tmp-header))) |
17493 | 4063 (gnus-summary-insert-dummy-line |
4064 gnus-tmp-dummy-line (mail-header-number gnus-tmp-header)) | |
4065 (setq gnus-tmp-dummy-line nil)) | |
4066 | |
4067 ;; Compute the mark. | |
4068 (setq gnus-tmp-unread (gnus-article-mark number)) | |
4069 | |
4070 (push (gnus-data-make number gnus-tmp-unread (1+ (point)) | |
4071 gnus-tmp-header gnus-tmp-level) | |
4072 gnus-newsgroup-data) | |
4073 | |
4074 ;; Actually insert the line. | |
4075 (setq | |
4076 gnus-tmp-subject-or-nil | |
4077 (cond | |
4078 ((and gnus-thread-ignore-subject | |
4079 gnus-tmp-prev-subject | |
4080 (not (inline (gnus-subject-equal | |
4081 gnus-tmp-prev-subject subject)))) | |
4082 subject) | |
4083 ((zerop gnus-tmp-level) | |
4084 (if (and (eq gnus-summary-make-false-root 'empty) | |
4085 (memq number gnus-tmp-gathered) | |
4086 gnus-tmp-prev-subject | |
4087 (inline (gnus-subject-equal | |
4088 gnus-tmp-prev-subject subject))) | |
4089 gnus-summary-same-subject | |
4090 subject)) | |
4091 (t gnus-summary-same-subject))) | |
4092 (if (and (eq gnus-summary-make-false-root 'adopt) | |
4093 (= gnus-tmp-level 1) | |
4094 (memq number gnus-tmp-gathered)) | |
4095 (setq gnus-tmp-opening-bracket ?\< | |
4096 gnus-tmp-closing-bracket ?\>) | |
4097 (setq gnus-tmp-opening-bracket ?\[ | |
4098 gnus-tmp-closing-bracket ?\])) | |
4099 (setq | |
4100 gnus-tmp-indentation | |
4101 (aref gnus-thread-indent-array gnus-tmp-level) | |
4102 gnus-tmp-lines (mail-header-lines gnus-tmp-header) | |
4103 gnus-tmp-score (or (cdr (assq number gnus-newsgroup-scored)) | |
4104 gnus-summary-default-score 0) | |
4105 gnus-tmp-score-char | |
4106 (if (or (null gnus-summary-default-score) | |
4107 (<= (abs (- gnus-tmp-score gnus-summary-default-score)) | |
4108 gnus-summary-zcore-fuzz)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4109 ? ;Whitespace |
17493 | 4110 (if (< gnus-tmp-score gnus-summary-default-score) |
4111 gnus-score-below-mark gnus-score-over-mark)) | |
4112 gnus-tmp-replied | |
4113 (cond ((memq number gnus-newsgroup-processable) | |
4114 gnus-process-mark) | |
4115 ((memq number gnus-newsgroup-cached) | |
4116 gnus-cached-mark) | |
4117 ((memq number gnus-newsgroup-replied) | |
4118 gnus-replied-mark) | |
4119 ((memq number gnus-newsgroup-saved) | |
4120 gnus-saved-mark) | |
4121 (t gnus-unread-mark)) | |
4122 gnus-tmp-from (mail-header-from gnus-tmp-header) | |
4123 gnus-tmp-name | |
4124 (cond | |
4125 ((string-match "<[^>]+> *$" gnus-tmp-from) | |
4126 (setq beg-match (match-beginning 0)) | |
4127 (or (and (string-match "^\"[^\"]*\"" gnus-tmp-from) | |
4128 (substring gnus-tmp-from (1+ (match-beginning 0)) | |
4129 (1- (match-end 0)))) | |
4130 (substring gnus-tmp-from 0 beg-match))) | |
4131 ((string-match "(.+)" gnus-tmp-from) | |
4132 (substring gnus-tmp-from | |
4133 (1+ (match-beginning 0)) (1- (match-end 0)))) | |
4134 (t gnus-tmp-from))) | |
4135 (when (string= gnus-tmp-name "") | |
4136 (setq gnus-tmp-name gnus-tmp-from)) | |
4137 (unless (numberp gnus-tmp-lines) | |
4138 (setq gnus-tmp-lines 0)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4139 (gnus-put-text-property |
17493 | 4140 (point) |
4141 (progn (eval gnus-summary-line-format-spec) (point)) | |
4142 'gnus-number number) | |
4143 (when gnus-visual-p | |
4144 (forward-line -1) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4145 (gnus-run-hooks 'gnus-summary-update-hook) |
17493 | 4146 (forward-line 1)) |
4147 | |
4148 (setq gnus-tmp-prev-subject subject))) | |
4149 | |
4150 (when (nth 1 thread) | |
4151 (push (cons (max 0 gnus-tmp-level) (nthcdr 1 thread)) stack)) | |
4152 (incf gnus-tmp-level) | |
4153 (setq threads (if thread-end nil (cdar thread))) | |
4154 (unless threads | |
4155 (setq gnus-tmp-level 0))))) | |
4156 (gnus-message 7 "Generating summary...done")) | |
4157 | |
4158 (defun gnus-summary-prepare-unthreaded (headers) | |
4159 "Generate an unthreaded summary buffer based on HEADERS." | |
4160 (let (header number mark) | |
4161 | |
4162 (beginning-of-line) | |
4163 | |
4164 (while headers | |
4165 ;; We may have to root out some bad articles... | |
4166 (when (memq (setq number (mail-header-number | |
4167 (setq header (pop headers)))) | |
4168 gnus-newsgroup-limit) | |
4169 ;; Mark article as read when it has a low score. | |
4170 (when (and gnus-summary-mark-below | |
4171 (< (or (cdr (assq number gnus-newsgroup-scored)) | |
4172 gnus-summary-default-score 0) | |
4173 gnus-summary-mark-below) | |
4174 (not (gnus-summary-article-ancient-p number))) | |
4175 (setq gnus-newsgroup-unreads | |
4176 (delq number gnus-newsgroup-unreads)) | |
4177 (if gnus-newsgroup-auto-expire | |
4178 (push number gnus-newsgroup-expirable) | |
4179 (push (cons number gnus-low-score-mark) | |
4180 gnus-newsgroup-reads))) | |
4181 | |
4182 (setq mark (gnus-article-mark number)) | |
4183 (push (gnus-data-make number mark (1+ (point)) header 0) | |
4184 gnus-newsgroup-data) | |
4185 (gnus-summary-insert-line | |
4186 header 0 number | |
4187 mark (memq number gnus-newsgroup-replied) | |
4188 (memq number gnus-newsgroup-expirable) | |
4189 (mail-header-subject header) nil | |
4190 (cdr (assq number gnus-newsgroup-scored)) | |
4191 (memq number gnus-newsgroup-processable)))))) | |
4192 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4193 (defun gnus-summary-remove-list-identifiers () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4194 "Remove list identifiers in `gnus-list-identifiers' from articles in the current group." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4195 (let ((regexp (if (stringp gnus-list-identifiers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4196 gnus-list-identifiers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4197 (mapconcat 'identity gnus-list-identifiers " *\\|")))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4198 (dolist (header gnus-newsgroup-headers) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
4199 (when (string-match (concat "\\(\\(\\(Re: +\\)?\\(" regexp |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4200 " *\\)\\)+\\(Re: +\\)?\\)") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4201 (mail-header-subject header)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4202 (mail-header-set-subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4203 header (concat (substring (mail-header-subject header) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4204 0 (match-beginning 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4205 (or |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4206 (match-string 3 (mail-header-subject header)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4207 (match-string 5 (mail-header-subject header))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4208 (substring (mail-header-subject header) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4209 (match-end 1)))))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4210 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4211 (defun gnus-select-newsgroup (group &optional read-all select-articles) |
17493 | 4212 "Select newsgroup GROUP. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4213 If READ-ALL is non-nil, all articles in the group are selected. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4214 If SELECT-ARTICLES, only select those articles from GROUP." |
17493 | 4215 (let* ((entry (gnus-gethash group gnus-newsrc-hashtb)) |
4216 ;;!!! Dirty hack; should be removed. | |
4217 (gnus-summary-ignore-duplicates | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4218 (if (eq (car (gnus-find-method-for-group group)) 'nnvirtual) |
17493 | 4219 t |
4220 gnus-summary-ignore-duplicates)) | |
4221 (info (nth 2 entry)) | |
4222 articles fetched-articles cached) | |
4223 | |
4224 (unless (gnus-check-server | |
39334
f8ce69d86eea
(gnus-select-newsgroup): Make
Gerd Moellmann <gerd@gnu.org>
parents:
38413
diff
changeset
|
4225 (set (make-local-variable 'gnus-current-select-method) |
f8ce69d86eea
(gnus-select-newsgroup): Make
Gerd Moellmann <gerd@gnu.org>
parents:
38413
diff
changeset
|
4226 (gnus-find-method-for-group group))) |
17493 | 4227 (error "Couldn't open server")) |
4228 | |
4229 (or (and entry (not (eq (car entry) t))) ; Either it's active... | |
4230 (gnus-activate-group group) ; Or we can activate it... | |
4231 (progn ; Or we bug out. | |
4232 (when (equal major-mode 'gnus-summary-mode) | |
4233 (kill-buffer (current-buffer))) | |
4234 (error "Couldn't request group %s: %s" | |
4235 group (gnus-status-message group)))) | |
4236 | |
4237 (unless (gnus-request-group group t) | |
4238 (when (equal major-mode 'gnus-summary-mode) | |
4239 (kill-buffer (current-buffer))) | |
4240 (error "Couldn't request group %s: %s" | |
4241 group (gnus-status-message group))) | |
4242 | |
4243 (setq gnus-newsgroup-name group) | |
4244 (setq gnus-newsgroup-unselected nil) | |
4245 (setq gnus-newsgroup-unreads (gnus-list-of-unread-articles group)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4246 (gnus-summary-setup-default-charset) |
17493 | 4247 |
4248 ;; Adjust and set lists of article marks. | |
4249 (when info | |
4250 (gnus-adjust-marked-articles info)) | |
4251 | |
4252 ;; Kludge to avoid having cached articles nixed out in virtual groups. | |
4253 (when (gnus-virtual-group-p group) | |
4254 (setq cached gnus-newsgroup-cached)) | |
4255 | |
4256 (setq gnus-newsgroup-unreads | |
4257 (gnus-set-difference | |
4258 (gnus-set-difference gnus-newsgroup-unreads gnus-newsgroup-marked) | |
4259 gnus-newsgroup-dormant)) | |
4260 | |
4261 (setq gnus-newsgroup-processable nil) | |
4262 | |
4263 (gnus-update-read-articles group gnus-newsgroup-unreads) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4264 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4265 (if (setq articles select-articles) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4266 (setq gnus-newsgroup-unselected |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4267 (gnus-sorted-intersection |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4268 gnus-newsgroup-unreads |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4269 (gnus-sorted-complement gnus-newsgroup-unreads articles))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4270 (setq articles (gnus-articles-to-read group read-all))) |
17493 | 4271 |
4272 (cond | |
4273 ((null articles) | |
4274 ;;(gnus-message 3 "Couldn't select newsgroup -- no articles to display") | |
4275 'quit) | |
4276 ((eq articles 0) nil) | |
4277 (t | |
4278 ;; Init the dependencies hash table. | |
4279 (setq gnus-newsgroup-dependencies | |
4280 (gnus-make-hashtable (length articles))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4281 (gnus-set-global-variables) |
17493 | 4282 ;; Retrieve the headers and read them in. |
4283 (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name) | |
4284 (setq gnus-newsgroup-headers | |
4285 (if (eq 'nov | |
4286 (setq gnus-headers-retrieved-by | |
4287 (gnus-retrieve-headers | |
4288 articles gnus-newsgroup-name | |
4289 ;; We might want to fetch old headers, but | |
4290 ;; not if there is only 1 article. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4291 (and (or (and |
17493 | 4292 (not (eq gnus-fetch-old-headers 'some)) |
4293 (not (numberp gnus-fetch-old-headers))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4294 (> (length articles) 1)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4295 gnus-fetch-old-headers)))) |
17493 | 4296 (gnus-get-newsgroup-headers-xover |
4297 articles nil nil gnus-newsgroup-name t) | |
4298 (gnus-get-newsgroup-headers))) | |
4299 (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name) | |
4300 | |
4301 ;; Kludge to avoid having cached articles nixed out in virtual groups. | |
4302 (when cached | |
4303 (setq gnus-newsgroup-cached cached)) | |
4304 | |
4305 ;; Suppress duplicates? | |
4306 (when gnus-suppress-duplicates | |
4307 (gnus-dup-suppress-articles)) | |
4308 | |
4309 ;; Set the initial limit. | |
4310 (setq gnus-newsgroup-limit (copy-sequence articles)) | |
4311 ;; Remove canceled articles from the list of unread articles. | |
4312 (setq gnus-newsgroup-unreads | |
4313 (gnus-set-sorted-intersection | |
4314 gnus-newsgroup-unreads | |
4315 (setq fetched-articles | |
4316 (mapcar (lambda (headers) (mail-header-number headers)) | |
4317 gnus-newsgroup-headers)))) | |
4318 ;; Removed marked articles that do not exist. | |
4319 (gnus-update-missing-marks | |
4320 (gnus-sorted-complement fetched-articles articles)) | |
4321 ;; We might want to build some more threads first. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4322 (when (and gnus-fetch-old-headers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4323 (eq gnus-headers-retrieved-by 'nov)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4324 (if (eq gnus-fetch-old-headers 'invisible) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4325 (gnus-build-all-threads) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4326 (gnus-build-old-threads))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4327 ;; Let the Gnus agent mark articles as read. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4328 (when gnus-agent |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4329 (gnus-agent-get-undownloaded-list)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4330 ;; Remove list identifiers from subject |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4331 (when gnus-list-identifiers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4332 (gnus-summary-remove-list-identifiers)) |
17493 | 4333 ;; Check whether auto-expire is to be done in this group. |
4334 (setq gnus-newsgroup-auto-expire | |
4335 (gnus-group-auto-expirable-p group)) | |
4336 ;; Set up the article buffer now, if necessary. | |
4337 (unless gnus-single-article-buffer | |
4338 (gnus-article-setup-buffer)) | |
4339 ;; First and last article in this newsgroup. | |
4340 (when gnus-newsgroup-headers | |
4341 (setq gnus-newsgroup-begin | |
4342 (mail-header-number (car gnus-newsgroup-headers)) | |
4343 gnus-newsgroup-end | |
4344 (mail-header-number | |
4345 (gnus-last-element gnus-newsgroup-headers)))) | |
4346 ;; GROUP is successfully selected. | |
4347 (or gnus-newsgroup-headers t))))) | |
4348 | |
4349 (defun gnus-articles-to-read (group &optional read-all) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4350 "Find out what articles the user wants to read." |
17493 | 4351 (let* ((articles |
4352 ;; Select all articles if `read-all' is non-nil, or if there | |
4353 ;; are no unread articles. | |
4354 (if (or read-all | |
4355 (and (zerop (length gnus-newsgroup-marked)) | |
4356 (zerop (length gnus-newsgroup-unreads))) | |
4357 (eq (gnus-group-find-parameter group 'display) | |
4358 'all)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4359 (or |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4360 (gnus-uncompress-range (gnus-active group)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4361 (gnus-cache-articles-in-group group)) |
17493 | 4362 (sort (append gnus-newsgroup-dormant gnus-newsgroup-marked |
4363 (copy-sequence gnus-newsgroup-unreads)) | |
4364 '<))) | |
4365 (scored-list (gnus-killed-articles gnus-newsgroup-killed articles)) | |
4366 (scored (length scored-list)) | |
4367 (number (length articles)) | |
4368 (marked (+ (length gnus-newsgroup-marked) | |
4369 (length gnus-newsgroup-dormant))) | |
4370 (select | |
4371 (cond | |
4372 ((numberp read-all) | |
4373 read-all) | |
4374 (t | |
4375 (condition-case () | |
4376 (cond | |
4377 ((and (or (<= scored marked) (= scored number)) | |
4378 (numberp gnus-large-newsgroup) | |
4379 (> number gnus-large-newsgroup)) | |
4380 (let ((input | |
4381 (read-string | |
4382 (format | |
4383 "How many articles from %s (default %d): " | |
4384 (gnus-limit-string gnus-newsgroup-name 35) | |
4385 number)))) | |
4386 (if (string-match "^[ \t]*$" input) number input))) | |
4387 ((and (> scored marked) (< scored number) | |
4388 (> (- scored number) 20)) | |
4389 (let ((input | |
4390 (read-string | |
4391 (format "%s %s (%d scored, %d total): " | |
4392 "How many articles from" | |
4393 group scored number)))) | |
4394 (if (string-match "^[ \t]*$" input) | |
4395 number input))) | |
4396 (t number)) | |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
4397 (quit |
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
4398 (message "Quit getting the articles to read") |
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
4399 nil)))))) |
17493 | 4400 (setq select (if (stringp select) (string-to-number select) select)) |
4401 (if (or (null select) (zerop select)) | |
4402 select | |
4403 (if (and (not (zerop scored)) (<= (abs select) scored)) | |
4404 (progn | |
4405 (setq articles (sort scored-list '<)) | |
4406 (setq number (length articles))) | |
4407 (setq articles (copy-sequence articles))) | |
4408 | |
4409 (when (< (abs select) number) | |
4410 (if (< select 0) | |
4411 ;; Select the N oldest articles. | |
4412 (setcdr (nthcdr (1- (abs select)) articles) nil) | |
4413 ;; Select the N most recent articles. | |
4414 (setq articles (nthcdr (- number select) articles)))) | |
4415 (setq gnus-newsgroup-unselected | |
4416 (gnus-sorted-intersection | |
4417 gnus-newsgroup-unreads | |
4418 (gnus-sorted-complement gnus-newsgroup-unreads articles))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4419 (when gnus-alter-articles-to-read-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4420 (setq gnus-newsgroup-unreads |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
4421 (sort |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4422 (funcall gnus-alter-articles-to-read-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4423 gnus-newsgroup-name gnus-newsgroup-unreads) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4424 '<))) |
17493 | 4425 articles))) |
4426 | |
4427 (defun gnus-killed-articles (killed articles) | |
4428 (let (out) | |
4429 (while articles | |
4430 (when (inline (gnus-member-of-range (car articles) killed)) | |
4431 (push (car articles) out)) | |
4432 (setq articles (cdr articles))) | |
4433 out)) | |
4434 | |
4435 (defun gnus-uncompress-marks (marks) | |
4436 "Uncompress the mark ranges in MARKS." | |
4437 (let ((uncompressed '(score bookmark)) | |
4438 out) | |
4439 (while marks | |
4440 (if (memq (caar marks) uncompressed) | |
4441 (push (car marks) out) | |
4442 (push (cons (caar marks) (gnus-uncompress-range (cdar marks))) out)) | |
4443 (setq marks (cdr marks))) | |
4444 out)) | |
4445 | |
4446 (defun gnus-adjust-marked-articles (info) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4447 "Set all article lists and remove all marks that are no longer valid." |
17493 | 4448 (let* ((marked-lists (gnus-info-marks info)) |
4449 (active (gnus-active (gnus-info-group info))) | |
4450 (min (car active)) | |
4451 (max (cdr active)) | |
4452 (types gnus-article-mark-lists) | |
4453 (uncompressed '(score bookmark killed)) | |
4454 marks var articles article mark) | |
4455 | |
4456 (while marked-lists | |
4457 (setq marks (pop marked-lists)) | |
4458 (set (setq var (intern (format "gnus-newsgroup-%s" | |
4459 (car (rassq (setq mark (car marks)) | |
4460 types))))) | |
4461 (if (memq (car marks) uncompressed) (cdr marks) | |
4462 (gnus-uncompress-range (cdr marks)))) | |
4463 | |
4464 (setq articles (symbol-value var)) | |
4465 | |
4466 ;; All articles have to be subsets of the active articles. | |
4467 (cond | |
4468 ;; Adjust "simple" lists. | |
4469 ((memq mark '(tick dormant expire reply save)) | |
4470 (while articles | |
4471 (when (or (< (setq article (pop articles)) min) (> article max)) | |
4472 (set var (delq article (symbol-value var)))))) | |
4473 ;; Adjust assocs. | |
4474 ((memq mark uncompressed) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
4475 (when (not (listp (cdr (symbol-value var)))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
4476 (set var (list (symbol-value var)))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
4477 (when (not (listp (cdr articles))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
4478 (setq articles (list articles))) |
17493 | 4479 (while articles |
4480 (when (or (not (consp (setq article (pop articles)))) | |
4481 (< (car article) min) | |
4482 (> (car article) max)) | |
4483 (set var (delq article (symbol-value var)))))))))) | |
4484 | |
4485 (defun gnus-update-missing-marks (missing) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4486 "Go through the list of MISSING articles and remove them from the mark lists." |
17493 | 4487 (when missing |
4488 (let ((types gnus-article-mark-lists) | |
4489 var m) | |
4490 ;; Go through all types. | |
4491 (while types | |
4492 (setq var (intern (format "gnus-newsgroup-%s" (car (pop types))))) | |
4493 (when (symbol-value var) | |
4494 ;; This list has articles. So we delete all missing articles | |
4495 ;; from it. | |
4496 (setq m missing) | |
4497 (while m | |
4498 (set var (delq (pop m) (symbol-value var))))))))) | |
4499 | |
4500 (defun gnus-update-marks () | |
4501 "Enter the various lists of marked articles into the newsgroup info list." | |
4502 (let ((types gnus-article-mark-lists) | |
4503 (info (gnus-get-info gnus-newsgroup-name)) | |
4504 (uncompressed '(score bookmark killed)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4505 type list newmarked symbol delta-marks) |
17493 | 4506 (when info |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4507 ;; Add all marks lists to the list of marks lists. |
17493 | 4508 (while (setq type (pop types)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4509 (setq list (symbol-value |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4510 (setq symbol |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4511 (intern (format "gnus-newsgroup-%s" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4512 (car type)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4513 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4514 (when list |
17493 | 4515 ;; Get rid of the entries of the articles that have the |
4516 ;; default score. | |
4517 (when (and (eq (cdr type) 'score) | |
4518 gnus-save-score | |
4519 list) | |
4520 (let* ((arts list) | |
4521 (prev (cons nil list)) | |
4522 (all prev)) | |
4523 (while arts | |
4524 (if (or (not (consp (car arts))) | |
4525 (= (cdar arts) gnus-summary-default-score)) | |
4526 (setcdr prev (cdr arts)) | |
4527 (setq prev arts)) | |
4528 (setq arts (cdr arts))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4529 (setq list (cdr all))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4530 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4531 (unless (memq (cdr type) uncompressed) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4532 (setq list (gnus-compress-sequence (set symbol (sort list '<)) t))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
4533 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4534 (when (gnus-check-backend-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4535 'request-set-mark gnus-newsgroup-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4536 ;; propagate flags to server, with the following exceptions: |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4537 ;; uncompressed:s are not proper flags (they are cons cells) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4538 ;; cache is a internal gnus flag |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4539 ;; download are local to one gnus installation (well) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4540 ;; unsend are for nndraft groups only |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4541 ;; xxx: generality of this? this suits nnimap anyway |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4542 (unless (memq (cdr type) (append '(cache download unsend) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4543 uncompressed)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4544 (let* ((old (cdr (assq (cdr type) (gnus-info-marks info)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4545 (del (gnus-remove-from-range (gnus-copy-sequence old) list)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4546 (add (gnus-remove-from-range |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4547 (gnus-copy-sequence list) old))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4548 (when add |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4549 (push (list add 'add (list (cdr type))) delta-marks)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4550 (when del |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4551 (push (list del 'del (list (cdr type))) delta-marks))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
4552 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4553 (when list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4554 (push (cons (cdr type) list) newmarked))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4555 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4556 (when delta-marks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4557 (unless (gnus-check-group gnus-newsgroup-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4558 (error "Can't open server for %s" gnus-newsgroup-name)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4559 (gnus-request-set-mark gnus-newsgroup-name delta-marks)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
4560 |
17493 | 4561 ;; Enter these new marks into the info of the group. |
4562 (if (nthcdr 3 info) | |
4563 (setcar (nthcdr 3 info) newmarked) | |
4564 ;; Add the marks lists to the end of the info. | |
4565 (when newmarked | |
4566 (setcdr (nthcdr 2 info) (list newmarked)))) | |
4567 | |
4568 ;; Cut off the end of the info if there's nothing else there. | |
4569 (let ((i 5)) | |
4570 (while (and (> i 2) | |
4571 (not (nth i info))) | |
4572 (when (nthcdr (decf i) info) | |
4573 (setcdr (nthcdr i info) nil))))))) | |
4574 | |
4575 (defun gnus-set-mode-line (where) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4576 "Set the mode line of the article or summary buffers. |
17493 | 4577 If WHERE is `summary', the summary mode line format will be used." |
4578 ;; Is this mode line one we keep updated? | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4579 (when (and (memq where gnus-updated-mode-lines) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4580 (symbol-value |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4581 (intern (format "gnus-%s-mode-line-format-spec" where)))) |
17493 | 4582 (let (mode-string) |
4583 (save-excursion | |
4584 ;; We evaluate this in the summary buffer since these | |
4585 ;; variables are buffer-local to that buffer. | |
4586 (set-buffer gnus-summary-buffer) | |
4587 ;; We bind all these variables that are used in the `eval' form | |
4588 ;; below. | |
4589 (let* ((mformat (symbol-value | |
4590 (intern | |
4591 (format "gnus-%s-mode-line-format-spec" where)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
4592 (gnus-tmp-group-name (gnus-group-name-decode |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4593 gnus-newsgroup-name |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
4594 (gnus-group-name-charset |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4595 nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4596 gnus-newsgroup-name))) |
17493 | 4597 (gnus-tmp-article-number (or gnus-current-article 0)) |
4598 (gnus-tmp-unread gnus-newsgroup-unreads) | |
4599 (gnus-tmp-unread-and-unticked (length gnus-newsgroup-unreads)) | |
4600 (gnus-tmp-unselected (length gnus-newsgroup-unselected)) | |
4601 (gnus-tmp-unread-and-unselected | |
4602 (cond ((and (zerop gnus-tmp-unread-and-unticked) | |
4603 (zerop gnus-tmp-unselected)) | |
4604 "") | |
4605 ((zerop gnus-tmp-unselected) | |
4606 (format "{%d more}" gnus-tmp-unread-and-unticked)) | |
4607 (t (format "{%d(+%d) more}" | |
4608 gnus-tmp-unread-and-unticked | |
4609 gnus-tmp-unselected)))) | |
4610 (gnus-tmp-subject | |
4611 (if (and gnus-current-headers | |
4612 (vectorp gnus-current-headers)) | |
4613 (gnus-mode-string-quote | |
4614 (mail-header-subject gnus-current-headers)) | |
4615 "")) | |
4616 bufname-length max-len | |
4617 gnus-tmp-header);; passed as argument to any user-format-funcs | |
4618 (setq mode-string (eval mformat)) | |
4619 (setq bufname-length (if (string-match "%b" mode-string) | |
4620 (- (length | |
4621 (buffer-name | |
4622 (if (eq where 'summary) | |
4623 nil | |
4624 (get-buffer gnus-article-buffer)))) | |
4625 2) | |
4626 0)) | |
4627 (setq max-len (max 4 (if gnus-mode-non-string-length | |
4628 (- (window-width) | |
4629 gnus-mode-non-string-length | |
4630 bufname-length) | |
4631 (length mode-string)))) | |
4632 ;; We might have to chop a bit of the string off... | |
4633 (when (> (length mode-string) max-len) | |
4634 (setq mode-string | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4635 (concat (truncate-string-to-width mode-string (- max-len 3)) |
17493 | 4636 "..."))) |
4637 ;; Pad the mode string a bit. | |
4638 (setq mode-string (format (format "%%-%ds" max-len) mode-string)))) | |
4639 ;; Update the mode line. | |
4640 (setq mode-line-buffer-identification | |
4641 (gnus-mode-line-buffer-identification (list mode-string))) | |
4642 (set-buffer-modified-p t)))) | |
4643 | |
4644 (defun gnus-create-xref-hashtb (from-newsgroup headers unreads) | |
4645 "Go through the HEADERS list and add all Xrefs to a hash table. | |
4646 The resulting hash table is returned, or nil if no Xrefs were found." | |
4647 (let* ((virtual (gnus-virtual-group-p from-newsgroup)) | |
4648 (prefix (if virtual "" (gnus-group-real-prefix from-newsgroup))) | |
4649 (xref-hashtb (gnus-make-hashtable)) | |
4650 start group entry number xrefs header) | |
4651 (while headers | |
4652 (setq header (pop headers)) | |
4653 (when (and (setq xrefs (mail-header-xref header)) | |
4654 (not (memq (setq number (mail-header-number header)) | |
4655 unreads))) | |
4656 (setq start 0) | |
4657 (while (string-match "\\([^ ]+\\)[:/]\\([0-9]+\\)" xrefs start) | |
4658 (setq start (match-end 0)) | |
4659 (setq group (if prefix | |
4660 (concat prefix (substring xrefs (match-beginning 1) | |
4661 (match-end 1))) | |
4662 (substring xrefs (match-beginning 1) (match-end 1)))) | |
4663 (setq number | |
4664 (string-to-int (substring xrefs (match-beginning 2) | |
4665 (match-end 2)))) | |
4666 (if (setq entry (gnus-gethash group xref-hashtb)) | |
4667 (setcdr entry (cons number (cdr entry))) | |
4668 (gnus-sethash group (cons number nil) xref-hashtb))))) | |
4669 (and start xref-hashtb))) | |
4670 | |
4671 (defun gnus-mark-xrefs-as-read (from-newsgroup headers unreads) | |
4672 "Look through all the headers and mark the Xrefs as read." | |
4673 (let ((virtual (gnus-virtual-group-p from-newsgroup)) | |
4674 name entry info xref-hashtb idlist method nth4) | |
4675 (save-excursion | |
4676 (set-buffer gnus-group-buffer) | |
4677 (when (setq xref-hashtb | |
4678 (gnus-create-xref-hashtb from-newsgroup headers unreads)) | |
4679 (mapatoms | |
4680 (lambda (group) | |
4681 (unless (string= from-newsgroup (setq name (symbol-name group))) | |
4682 (setq idlist (symbol-value group)) | |
4683 ;; Dead groups are not updated. | |
4684 (and (prog1 | |
4685 (setq entry (gnus-gethash name gnus-newsrc-hashtb) | |
4686 info (nth 2 entry)) | |
4687 (when (stringp (setq nth4 (gnus-info-method info))) | |
4688 (setq nth4 (gnus-server-to-method nth4)))) | |
4689 ;; Only do the xrefs if the group has the same | |
4690 ;; select method as the group we have just read. | |
4691 (or (gnus-methods-equal-p | |
4692 nth4 (gnus-find-method-for-group from-newsgroup)) | |
4693 virtual | |
4694 (equal nth4 (setq method (gnus-find-method-for-group | |
4695 from-newsgroup))) | |
4696 (and (equal (car nth4) (car method)) | |
4697 (equal (nth 1 nth4) (nth 1 method)))) | |
4698 gnus-use-cross-reference | |
4699 (or (not (eq gnus-use-cross-reference t)) | |
4700 virtual | |
4701 ;; Only do cross-references on subscribed | |
4702 ;; groups, if that is what is wanted. | |
4703 (<= (gnus-info-level info) gnus-level-subscribed)) | |
4704 (gnus-group-make-articles-read name idlist)))) | |
4705 xref-hashtb))))) | |
4706 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4707 (defun gnus-compute-read-articles (group articles) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4708 (let* ((entry (gnus-gethash group gnus-newsrc-hashtb)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4709 (info (nth 2 entry)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4710 (active (gnus-active group)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4711 ninfo) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4712 (when entry |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4713 ;; First peel off all invalid article numbers. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4714 (when active |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4715 (let ((ids articles) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4716 id first) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4717 (while (setq id (pop ids)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4718 (when (and first (> id (cdr active))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4719 ;; We'll end up in this situation in one particular |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4720 ;; obscure situation. If you re-scan a group and get |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4721 ;; a new article that is cross-posted to a different |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4722 ;; group that has not been re-scanned, you might get |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4723 ;; crossposted article that has a higher number than |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4724 ;; Gnus believes possible. So we re-activate this |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4725 ;; group as well. This might mean doing the |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4726 ;; crossposting thingy will *increase* the number |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4727 ;; of articles in some groups. Tsk, tsk. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4728 (setq active (or (gnus-activate-group group) active))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4729 (when (or (> id (cdr active)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4730 (< id (car active))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4731 (setq articles (delq id articles)))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4732 ;; If the read list is nil, we init it. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4733 (if (and active |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4734 (null (gnus-info-read info)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4735 (> (car active) 1)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4736 (setq ninfo (cons 1 (1- (car active)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4737 (setq ninfo (gnus-info-read info))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4738 ;; Then we add the read articles to the range. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4739 (gnus-add-to-range |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4740 ninfo (setq articles (sort articles '<)))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4741 |
17493 | 4742 (defun gnus-group-make-articles-read (group articles) |
4743 "Update the info of GROUP to say that ARTICLES are read." | |
4744 (let* ((num 0) | |
4745 (entry (gnus-gethash group gnus-newsrc-hashtb)) | |
4746 (info (nth 2 entry)) | |
4747 (active (gnus-active group)) | |
4748 range) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4749 (when entry |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4750 (setq range (gnus-compute-read-articles group articles)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4751 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4752 (set-buffer gnus-group-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4753 (gnus-undo-register |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4754 `(progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4755 (gnus-info-set-marks ',info ',(gnus-info-marks info) t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4756 (gnus-info-set-read ',info ',(gnus-info-read info)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4757 (gnus-get-unread-articles-in-group ',info (gnus-active ,group)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4758 (gnus-group-update-group ,group t)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4759 ;; Add the read articles to the range. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4760 (gnus-info-set-read info range) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4761 ;; Then we have to re-compute how many unread |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4762 ;; articles there are in this group. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4763 (when active |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4764 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4765 ((not range) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4766 (setq num (- (1+ (cdr active)) (car active)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4767 ((not (listp (cdr range))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4768 (setq num (- (cdr active) (- (1+ (cdr range)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4769 (car range))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4770 (t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4771 (while range |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4772 (if (numberp (car range)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4773 (setq num (1+ num)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4774 (setq num (+ num (- (1+ (cdar range)) (caar range))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4775 (setq range (cdr range))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4776 (setq num (- (cdr active) num)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4777 ;; Update the number of unread articles. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4778 (setcar entry num) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4779 ;; Update the group buffer. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4780 (gnus-group-update-group group t))))) |
17493 | 4781 |
4782 (defvar gnus-newsgroup-none-id 0) | |
4783 | |
4784 (defun gnus-get-newsgroup-headers (&optional dependencies force-new) | |
4785 (let ((cur nntp-server-buffer) | |
4786 (dependencies | |
4787 (or dependencies | |
4788 (save-excursion (set-buffer gnus-summary-buffer) | |
4789 gnus-newsgroup-dependencies))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4790 headers id end ref |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4791 (mail-parse-charset gnus-newsgroup-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4792 (mail-parse-ignored-charsets |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4793 (save-excursion (condition-case nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4794 (set-buffer gnus-summary-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4795 (error)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4796 gnus-newsgroup-ignored-charsets))) |
17493 | 4797 (save-excursion |
4798 (set-buffer nntp-server-buffer) | |
4799 ;; Translate all TAB characters into SPACE characters. | |
4800 (subst-char-in-region (point-min) (point-max) ?\t ? t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4801 (subst-char-in-region (point-min) (point-max) ?\r ? t) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4802 (gnus-run-hooks 'gnus-parse-headers-hook) |
17493 | 4803 (let ((case-fold-search t) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4804 in-reply-to header p lines chars) |
17493 | 4805 (goto-char (point-min)) |
4806 ;; Search to the beginning of the next header. Error messages | |
4807 ;; do not begin with 2 or 3. | |
4808 (while (re-search-forward "^[23][0-9]+ " nil t) | |
4809 (setq id nil | |
4810 ref nil) | |
4811 ;; This implementation of this function, with nine | |
4812 ;; search-forwards instead of the one re-search-forward and | |
4813 ;; a case (which basically was the old function) is actually | |
4814 ;; about twice as fast, even though it looks messier. You | |
4815 ;; can't have everything, I guess. Speed and elegance | |
4816 ;; doesn't always go hand in hand. | |
4817 (setq | |
4818 header | |
4819 (vector | |
4820 ;; Number. | |
4821 (prog1 | |
4822 (read cur) | |
4823 (end-of-line) | |
4824 (setq p (point)) | |
4825 (narrow-to-region (point) | |
4826 (or (and (search-forward "\n.\n" nil t) | |
4827 (- (point) 2)) | |
4828 (point)))) | |
4829 ;; Subject. | |
4830 (progn | |
4831 (goto-char p) | |
4832 (if (search-forward "\nsubject: " nil t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4833 (funcall gnus-decode-encoded-word-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4834 (nnheader-header-value)) |
19594
abfa7b46c7bd
(gnus-structured-field-decoder): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19521
diff
changeset
|
4835 "(none)")) |
17493 | 4836 ;; From. |
4837 (progn | |
4838 (goto-char p) | |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
4839 (if (or (search-forward "\nfrom: " nil t) |
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
4840 (search-forward "\nfrom:" nil t)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4841 (funcall gnus-decode-encoded-word-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4842 (nnheader-header-value)) |
19594
abfa7b46c7bd
(gnus-structured-field-decoder): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19521
diff
changeset
|
4843 "(nobody)")) |
17493 | 4844 ;; Date. |
4845 (progn | |
4846 (goto-char p) | |
4847 (if (search-forward "\ndate: " nil t) | |
4848 (nnheader-header-value) "")) | |
4849 ;; Message-ID. | |
4850 (progn | |
4851 (goto-char p) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4852 (setq id (if (re-search-forward |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4853 "^message-id: *\\(<[^\n\t> ]+>\\)" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4854 ;; We do it this way to make sure the Message-ID |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4855 ;; is (somewhat) syntactically valid. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4856 (buffer-substring (match-beginning 1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4857 (match-end 1)) |
17493 | 4858 ;; If there was no message-id, we just fake one |
4859 ;; to make subsequent routines simpler. | |
4860 (nnheader-generate-fake-message-id)))) | |
4861 ;; References. | |
4862 (progn | |
4863 (goto-char p) | |
4864 (if (search-forward "\nreferences: " nil t) | |
4865 (progn | |
4866 (setq end (point)) | |
4867 (prog1 | |
4868 (nnheader-header-value) | |
4869 (setq ref | |
4870 (buffer-substring | |
4871 (progn | |
4872 (end-of-line) | |
4873 (search-backward ">" end t) | |
4874 (1+ (point))) | |
4875 (progn | |
4876 (search-backward "<" end t) | |
4877 (point)))))) | |
4878 ;; Get the references from the in-reply-to header if there | |
4879 ;; were no references and the in-reply-to header looks | |
4880 ;; promising. | |
4881 (if (and (search-forward "\nin-reply-to: " nil t) | |
4882 (setq in-reply-to (nnheader-header-value)) | |
4883 (string-match "<[^>]+>" in-reply-to)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4884 (let (ref2) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4885 (setq ref (substring in-reply-to (match-beginning 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4886 (match-end 0))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4887 (while (string-match "<[^>]+>" in-reply-to (match-end 0)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4888 (setq ref2 (substring in-reply-to (match-beginning 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4889 (match-end 0))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4890 (when (> (length ref2) (length ref)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4891 (setq ref ref2))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4892 ref) |
17493 | 4893 (setq ref nil)))) |
4894 ;; Chars. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4895 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4896 (goto-char p) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4897 (if (search-forward "\nchars: " nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4898 (if (numberp (setq chars (ignore-errors (read cur)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4899 chars 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4900 0)) |
17493 | 4901 ;; Lines. |
4902 (progn | |
4903 (goto-char p) | |
4904 (if (search-forward "\nlines: " nil t) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
4905 (if (numberp (setq lines (ignore-errors (read cur)))) |
17493 | 4906 lines 0) |
4907 0)) | |
4908 ;; Xref. | |
4909 (progn | |
4910 (goto-char p) | |
4911 (and (search-forward "\nxref: " nil t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4912 (nnheader-header-value))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4913 ;; Extra. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4914 (when gnus-extra-headers |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4915 (let ((extra gnus-extra-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4916 out) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4917 (while extra |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4918 (goto-char p) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4919 (when (search-forward |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4920 (concat "\n" (symbol-name (car extra)) ": ") nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4921 (push (cons (car extra) (nnheader-header-value)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4922 out)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4923 (pop extra)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4924 out)))) |
17493 | 4925 (when (equal id ref) |
4926 (setq ref nil)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4927 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4928 (when gnus-alter-header-function |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4929 (funcall gnus-alter-header-function header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4930 (setq id (mail-header-id header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4931 ref (gnus-parent-id (mail-header-references header)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4932 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4933 (when (setq header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4934 (gnus-dependencies-add-header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4935 header dependencies force-new)) |
17493 | 4936 (push header headers)) |
4937 (goto-char (point-max)) | |
4938 (widen)) | |
4939 (nreverse headers))))) | |
4940 | |
4941 ;; Goes through the xover lines and returns a list of vectors | |
4942 (defun gnus-get-newsgroup-headers-xover (sequence &optional | |
4943 force-new dependencies | |
4944 group also-fetch-heads) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4945 "Parse the news overview data in the server buffer. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4946 Return a list of headers that match SEQUENCE (see |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4947 `nntp-retrieve-headers')." |
17493 | 4948 ;; Get the Xref when the users reads the articles since most/some |
4949 ;; NNTP servers do not include Xrefs when using XOVER. | |
4950 (setq gnus-article-internal-prepare-hook '(gnus-article-get-xrefs)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4951 (let ((mail-parse-charset gnus-newsgroup-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4952 (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4953 (cur nntp-server-buffer) |
17493 | 4954 (dependencies (or dependencies gnus-newsgroup-dependencies)) |
4955 number headers header) | |
4956 (save-excursion | |
4957 (set-buffer nntp-server-buffer) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
4958 (subst-char-in-region (point-min) (point-max) ?\r ? t) |
17493 | 4959 ;; Allow the user to mangle the headers before parsing them. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
4960 (gnus-run-hooks 'gnus-parse-headers-hook) |
17493 | 4961 (goto-char (point-min)) |
4962 (while (not (eobp)) | |
4963 (condition-case () | |
4964 (while (and sequence (not (eobp))) | |
4965 (setq number (read cur)) | |
4966 (while (and sequence | |
4967 (< (car sequence) number)) | |
4968 (setq sequence (cdr sequence))) | |
4969 (and sequence | |
4970 (eq number (car sequence)) | |
4971 (progn | |
4972 (setq sequence (cdr sequence)) | |
4973 (setq header (inline | |
4974 (gnus-nov-parse-line | |
4975 number dependencies force-new)))) | |
4976 (push header headers)) | |
4977 (forward-line 1)) | |
4978 (error | |
4979 (gnus-error 4 "Strange nov line (%d)" | |
4980 (count-lines (point-min) (point))))) | |
4981 (forward-line 1)) | |
4982 ;; A common bug in inn is that if you have posted an article and | |
4983 ;; then retrieves the active file, it will answer correctly -- | |
4984 ;; the new article is included. However, a NOV entry for the | |
4985 ;; article may not have been generated yet, so this may fail. | |
4986 ;; We work around this problem by retrieving the last few | |
4987 ;; headers using HEAD. | |
4988 (if (or (not also-fetch-heads) | |
4989 (not sequence)) | |
4990 ;; We (probably) got all the headers. | |
4991 (nreverse headers) | |
4992 (let ((gnus-nov-is-evil t)) | |
4993 (nconc | |
4994 (nreverse headers) | |
4995 (when (gnus-retrieve-headers sequence group) | |
4996 (gnus-get-newsgroup-headers)))))))) | |
4997 | |
4998 (defun gnus-article-get-xrefs () | |
4999 "Fill in the Xref value in `gnus-current-headers', if necessary. | |
5000 This is meant to be called in `gnus-article-internal-prepare-hook'." | |
5001 (let ((headers (save-excursion (set-buffer gnus-summary-buffer) | |
5002 gnus-current-headers))) | |
5003 (or (not gnus-use-cross-reference) | |
5004 (not headers) | |
5005 (and (mail-header-xref headers) | |
5006 (not (string= (mail-header-xref headers) ""))) | |
5007 (let ((case-fold-search t) | |
5008 xref) | |
5009 (save-restriction | |
5010 (nnheader-narrow-to-headers) | |
5011 (goto-char (point-min)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5012 (when (or (and (not (eobp)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5013 (eq (downcase (char-after)) ?x) |
17493 | 5014 (looking-at "Xref:")) |
5015 (search-forward "\nXref:" nil t)) | |
5016 (goto-char (1+ (match-end 0))) | |
5017 (setq xref (buffer-substring (point) | |
5018 (progn (end-of-line) (point)))) | |
5019 (mail-header-set-xref headers xref))))))) | |
5020 | |
5021 (defun gnus-summary-insert-subject (id &optional old-header use-old-header) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5022 "Find article ID and insert the summary line for that article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5023 OLD-HEADER can either be a header or a line number to insert |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5024 the subject line on." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5025 (let* ((line (and (numberp old-header) old-header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5026 (old-header (and (vectorp old-header) old-header)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5027 (header (cond ((and old-header use-old-header) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5028 old-header) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5029 ((and (numberp id) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5030 (gnus-number-to-header id)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5031 (gnus-number-to-header id)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5032 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5033 (gnus-read-header id)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5034 (number (and (numberp id) id)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5035 d) |
17493 | 5036 (when header |
5037 ;; Rebuild the thread that this article is part of and go to the | |
5038 ;; article we have fetched. | |
5039 (when (and (not gnus-show-threads) | |
5040 old-header) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5041 (when (and number |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5042 (setq d (gnus-data-find (mail-header-number old-header)))) |
17493 | 5043 (goto-char (gnus-data-pos d)) |
5044 (gnus-data-remove | |
5045 number | |
5046 (- (gnus-point-at-bol) | |
5047 (prog1 | |
5048 (1+ (gnus-point-at-eol)) | |
5049 (gnus-delete-line)))))) | |
5050 (when old-header | |
5051 (mail-header-set-number header (mail-header-number old-header))) | |
5052 (setq gnus-newsgroup-sparse | |
5053 (delq (setq number (mail-header-number header)) | |
5054 gnus-newsgroup-sparse)) | |
5055 (setq gnus-newsgroup-ancient (delq number gnus-newsgroup-ancient)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5056 (push number gnus-newsgroup-limit) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5057 (gnus-rebuild-thread (mail-header-id header) line) |
17493 | 5058 (gnus-summary-goto-subject number nil t)) |
5059 (when (and (numberp number) | |
5060 (> number 0)) | |
5061 ;; We have to update the boundaries even if we can't fetch the | |
5062 ;; article if ID is a number -- so that the next `P' or `N' | |
5063 ;; command will fetch the previous (or next) article even | |
5064 ;; if the one we tried to fetch this time has been canceled. | |
5065 (when (> number gnus-newsgroup-end) | |
5066 (setq gnus-newsgroup-end number)) | |
5067 (when (< number gnus-newsgroup-begin) | |
5068 (setq gnus-newsgroup-begin number)) | |
5069 (setq gnus-newsgroup-unselected | |
5070 (delq number gnus-newsgroup-unselected))) | |
5071 ;; Report back a success? | |
5072 (and header (mail-header-number header)))) | |
5073 | |
5074 ;;; Process/prefix in the summary buffer | |
5075 | |
5076 (defun gnus-summary-work-articles (n) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5077 "Return a list of articles to be worked upon. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5078 The prefix argument, the list of process marked articles, and the |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5079 current article will be taken into consideration." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5080 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5081 (set-buffer gnus-summary-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5082 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5083 (n |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5084 ;; A numerical prefix has been given. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5085 (setq n (prefix-numeric-value n)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5086 (let ((backward (< n 0)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5087 (n (abs (prefix-numeric-value n))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5088 articles article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5089 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5090 (while |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5091 (and (> n 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5092 (push (setq article (gnus-summary-article-number)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5093 articles) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5094 (if backward |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5095 (gnus-summary-find-prev nil article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5096 (gnus-summary-find-next nil article))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5097 (decf n))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5098 (nreverse articles))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5099 ((and (gnus-region-active-p) (mark)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5100 (message "region active") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5101 ;; Work on the region between point and mark. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5102 (let ((max (max (point) (mark))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5103 articles article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5104 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5105 (goto-char (min (min (point) (mark)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5106 (while |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5107 (and |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5108 (push (setq article (gnus-summary-article-number)) articles) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5109 (gnus-summary-find-next nil article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5110 (< (point) max))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5111 (nreverse articles)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5112 (gnus-newsgroup-processable |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5113 ;; There are process-marked articles present. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5114 ;; Save current state. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5115 (gnus-summary-save-process-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5116 ;; Return the list. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5117 (reverse gnus-newsgroup-processable)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5118 (t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5119 ;; Just return the current article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5120 (list (gnus-summary-article-number)))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5121 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5122 (defmacro gnus-summary-iterate (arg &rest forms) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5123 "Iterate over the process/prefixed articles and do FORMS. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5124 ARG is the interactive prefix given to the command. FORMS will be |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5125 executed with point over the summary line of the articles." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5126 (let ((articles (make-symbol "gnus-summary-iterate-articles"))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5127 `(let ((,articles (gnus-summary-work-articles ,arg))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5128 (while ,articles |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5129 (gnus-summary-goto-subject (car ,articles)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5130 ,@forms |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5131 (pop ,articles))))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5132 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5133 (put 'gnus-summary-iterate 'lisp-indent-function 1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5134 (put 'gnus-summary-iterate 'edebug-form-spec '(form body)) |
17493 | 5135 |
5136 (defun gnus-summary-save-process-mark () | |
5137 "Push the current set of process marked articles on the stack." | |
5138 (interactive) | |
5139 (push (copy-sequence gnus-newsgroup-processable) | |
5140 gnus-newsgroup-process-stack)) | |
5141 | |
5142 (defun gnus-summary-kill-process-mark () | |
5143 "Push the current set of process marked articles on the stack and unmark." | |
5144 (interactive) | |
5145 (gnus-summary-save-process-mark) | |
5146 (gnus-summary-unmark-all-processable)) | |
5147 | |
5148 (defun gnus-summary-yank-process-mark () | |
5149 "Pop the last process mark state off the stack and restore it." | |
5150 (interactive) | |
5151 (unless gnus-newsgroup-process-stack | |
5152 (error "Empty mark stack")) | |
5153 (gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack))) | |
5154 | |
5155 (defun gnus-summary-process-mark-set (set) | |
5156 "Make SET into the current process marked articles." | |
5157 (gnus-summary-unmark-all-processable) | |
5158 (while set | |
5159 (gnus-summary-set-process-mark (pop set)))) | |
5160 | |
5161 ;;; Searching and stuff | |
5162 | |
5163 (defun gnus-summary-search-group (&optional backward use-level) | |
5164 "Search for next unread newsgroup. | |
5165 If optional argument BACKWARD is non-nil, search backward instead." | |
5166 (save-excursion | |
5167 (set-buffer gnus-group-buffer) | |
5168 (when (gnus-group-search-forward | |
5169 backward nil (if use-level (gnus-group-group-level) nil)) | |
5170 (gnus-group-group-name)))) | |
5171 | |
5172 (defun gnus-summary-best-group (&optional exclude-group) | |
5173 "Find the name of the best unread group. | |
5174 If EXCLUDE-GROUP, do not go to this group." | |
5175 (save-excursion | |
5176 (set-buffer gnus-group-buffer) | |
5177 (save-excursion | |
5178 (gnus-group-best-unread-group exclude-group)))) | |
5179 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5180 (defun gnus-summary-find-next (&optional unread article backward undownloaded) |
17493 | 5181 (if backward (gnus-summary-find-prev) |
5182 (let* ((dummy (gnus-summary-article-intangible-p)) | |
5183 (article (or article (gnus-summary-article-number))) | |
5184 (arts (gnus-data-find-list article)) | |
5185 result) | |
5186 (when (and (not dummy) | |
5187 (or (not gnus-summary-check-current) | |
5188 (not unread) | |
5189 (not (gnus-data-unread-p (car arts))))) | |
5190 (setq arts (cdr arts))) | |
5191 (when (setq result | |
5192 (if unread | |
5193 (progn | |
5194 (while arts | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5195 (when (or (and undownloaded |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5196 (eq gnus-undownloaded-mark |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5197 (gnus-data-mark (car arts)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5198 (gnus-data-unread-p (car arts))) |
17493 | 5199 (setq result (car arts) |
5200 arts nil)) | |
5201 (setq arts (cdr arts))) | |
5202 result) | |
5203 (car arts))) | |
5204 (goto-char (gnus-data-pos result)) | |
5205 (gnus-data-number result))))) | |
5206 | |
5207 (defun gnus-summary-find-prev (&optional unread article) | |
5208 (let* ((eobp (eobp)) | |
5209 (article (or article (gnus-summary-article-number))) | |
5210 (arts (gnus-data-find-list article (gnus-data-list 'rev))) | |
5211 result) | |
5212 (when (and (not eobp) | |
5213 (or (not gnus-summary-check-current) | |
5214 (not unread) | |
5215 (not (gnus-data-unread-p (car arts))))) | |
5216 (setq arts (cdr arts))) | |
5217 (when (setq result | |
5218 (if unread | |
5219 (progn | |
5220 (while arts | |
5221 (when (gnus-data-unread-p (car arts)) | |
5222 (setq result (car arts) | |
5223 arts nil)) | |
5224 (setq arts (cdr arts))) | |
5225 result) | |
5226 (car arts))) | |
5227 (goto-char (gnus-data-pos result)) | |
5228 (gnus-data-number result)))) | |
5229 | |
5230 (defun gnus-summary-find-subject (subject &optional unread backward article) | |
5231 (let* ((simp-subject (gnus-simplify-subject-fully subject)) | |
5232 (article (or article (gnus-summary-article-number))) | |
5233 (articles (gnus-data-list backward)) | |
5234 (arts (gnus-data-find-list article articles)) | |
5235 result) | |
5236 (when (or (not gnus-summary-check-current) | |
5237 (not unread) | |
5238 (not (gnus-data-unread-p (car arts)))) | |
5239 (setq arts (cdr arts))) | |
5240 (while arts | |
5241 (and (or (not unread) | |
5242 (gnus-data-unread-p (car arts))) | |
5243 (vectorp (gnus-data-header (car arts))) | |
5244 (gnus-subject-equal | |
5245 simp-subject (mail-header-subject (gnus-data-header (car arts))) t) | |
5246 (setq result (car arts) | |
5247 arts nil)) | |
5248 (setq arts (cdr arts))) | |
5249 (and result | |
5250 (goto-char (gnus-data-pos result)) | |
5251 (gnus-data-number result)))) | |
5252 | |
5253 (defun gnus-summary-search-forward (&optional unread subject backward) | |
5254 "Search forward for an article. | |
5255 If UNREAD, look for unread articles. If SUBJECT, look for | |
5256 articles with that subject. If BACKWARD, search backward instead." | |
5257 (cond (subject (gnus-summary-find-subject subject unread backward)) | |
5258 (backward (gnus-summary-find-prev unread)) | |
5259 (t (gnus-summary-find-next unread)))) | |
5260 | |
5261 (defun gnus-recenter (&optional n) | |
5262 "Center point in window and redisplay frame. | |
5263 Also do horizontal recentering." | |
5264 (interactive "P") | |
5265 (when (and gnus-auto-center-summary | |
5266 (not (eq gnus-auto-center-summary 'vertical))) | |
5267 (gnus-horizontal-recenter)) | |
5268 (recenter n)) | |
5269 | |
5270 (defun gnus-summary-recenter () | |
5271 "Center point in the summary window. | |
5272 If `gnus-auto-center-summary' is nil, or the article buffer isn't | |
5273 displayed, no centering will be performed." | |
5274 ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle). | |
5275 ;; Recenter only when requested. Suggested by popovich@park.cs.columbia.edu. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5276 (interactive) |
17493 | 5277 (let* ((top (cond ((< (window-height) 4) 0) |
5278 ((< (window-height) 7) 1) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5279 (t (if (numberp gnus-auto-center-summary) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5280 gnus-auto-center-summary |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5281 2)))) |
17493 | 5282 (height (1- (window-height))) |
5283 (bottom (save-excursion (goto-char (point-max)) | |
5284 (forward-line (- height)) | |
5285 (point))) | |
5286 (window (get-buffer-window (current-buffer)))) | |
5287 ;; The user has to want it. | |
5288 (when gnus-auto-center-summary | |
5289 (when (get-buffer-window gnus-article-buffer) | |
5290 ;; Only do recentering when the article buffer is displayed, | |
5291 ;; Set the window start to either `bottom', which is the biggest | |
5292 ;; possible valid number, or the second line from the top, | |
5293 ;; whichever is the least. | |
34414
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5294 (let ((top-pos (save-excursion (forward-line (- top)) (point)))) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5295 (if (> bottom top-pos) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5296 ;; Keep the second line from the top visible |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5297 (set-window-start window top-pos t) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5298 ;; Try to keep the bottom line visible; if it's partially |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5299 ;; obscured, either scroll one more line to make it fully |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5300 ;; visible, or revert to using TOP-POS. |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5301 (save-excursion |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5302 (goto-char (point-max)) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5303 (forward-line -1) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5304 (let ((last-line-start (point))) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5305 (goto-char bottom) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5306 (set-window-start window (point) t) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5307 (when (not (pos-visible-in-window-p last-line-start window)) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5308 (forward-line 1) |
158463f1a26e
(gnus-summary-recenter): When trying to keep the bottom line visible,
Miles Bader <miles@gnu.org>
parents:
33399
diff
changeset
|
5309 (set-window-start window (min (point) top-pos) t))))))) |
17493 | 5310 ;; Do horizontal recentering while we're at it. |
5311 (when (and (get-buffer-window (current-buffer) t) | |
5312 (not (eq gnus-auto-center-summary 'vertical))) | |
5313 (let ((selected (selected-window))) | |
5314 (select-window (get-buffer-window (current-buffer) t)) | |
5315 (gnus-summary-position-point) | |
5316 (gnus-horizontal-recenter) | |
5317 (select-window selected)))))) | |
5318 | |
5319 (defun gnus-summary-jump-to-group (newsgroup) | |
5320 "Move point to NEWSGROUP in group mode buffer." | |
5321 ;; Keep update point of group mode buffer if visible. | |
5322 (if (eq (current-buffer) (get-buffer gnus-group-buffer)) | |
5323 (save-window-excursion | |
5324 ;; Take care of tree window mode. | |
5325 (when (get-buffer-window gnus-group-buffer) | |
5326 (pop-to-buffer gnus-group-buffer)) | |
5327 (gnus-group-jump-to-group newsgroup)) | |
5328 (save-excursion | |
5329 ;; Take care of tree window mode. | |
5330 (if (get-buffer-window gnus-group-buffer) | |
5331 (pop-to-buffer gnus-group-buffer) | |
5332 (set-buffer gnus-group-buffer)) | |
5333 (gnus-group-jump-to-group newsgroup)))) | |
5334 | |
5335 ;; This function returns a list of article numbers based on the | |
5336 ;; difference between the ranges of read articles in this group and | |
5337 ;; the range of active articles. | |
5338 (defun gnus-list-of-unread-articles (group) | |
5339 (let* ((read (gnus-info-read (gnus-get-info group))) | |
5340 (active (or (gnus-active group) (gnus-activate-group group))) | |
5341 (last (cdr active)) | |
5342 first nlast unread) | |
5343 ;; If none are read, then all are unread. | |
5344 (if (not read) | |
5345 (setq first (car active)) | |
5346 ;; If the range of read articles is a single range, then the | |
5347 ;; first unread article is the article after the last read | |
5348 ;; article. Sounds logical, doesn't it? | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5349 (if (and (not (listp (cdr read))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5350 (or (< (car read) (car active)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5351 (progn (setq read (list read)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5352 nil))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5353 (setq first (max (car active) (1+ (cdr read)))) |
17493 | 5354 ;; `read' is a list of ranges. |
5355 (when (/= (setq nlast (or (and (numberp (car read)) (car read)) | |
5356 (caar read))) | |
5357 1) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5358 (setq first (car active))) |
17493 | 5359 (while read |
5360 (when first | |
5361 (while (< first nlast) | |
5362 (push first unread) | |
5363 (setq first (1+ first)))) | |
5364 (setq first (1+ (if (atom (car read)) (car read) (cdar read)))) | |
5365 (setq nlast (if (atom (cadr read)) (cadr read) (caadr read))) | |
5366 (setq read (cdr read))))) | |
5367 ;; And add the last unread articles. | |
5368 (while (<= first last) | |
5369 (push first unread) | |
5370 (setq first (1+ first))) | |
5371 ;; Return the list of unread articles. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5372 (delq 0 (nreverse unread)))) |
17493 | 5373 |
5374 (defun gnus-list-of-read-articles (group) | |
5375 "Return a list of unread, unticked and non-dormant articles." | |
5376 (let* ((info (gnus-get-info group)) | |
5377 (marked (gnus-info-marks info)) | |
5378 (active (gnus-active group))) | |
5379 (and info active | |
5380 (gnus-set-difference | |
5381 (gnus-sorted-complement | |
5382 (gnus-uncompress-range active) | |
5383 (gnus-list-of-unread-articles group)) | |
5384 (append | |
5385 (gnus-uncompress-range (cdr (assq 'dormant marked))) | |
5386 (gnus-uncompress-range (cdr (assq 'tick marked)))))))) | |
5387 | |
5388 ;; Various summary commands | |
5389 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5390 (defun gnus-summary-select-article-buffer () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5391 "Reconfigure windows to show article buffer." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5392 (interactive) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5393 (if (not (gnus-buffer-live-p gnus-article-buffer)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5394 (error "There is no article buffer for this summary buffer") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5395 (gnus-configure-windows 'article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5396 (select-window (get-buffer-window gnus-article-buffer)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5397 |
17493 | 5398 (defun gnus-summary-universal-argument (arg) |
5399 "Perform any operation on all articles that are process/prefixed." | |
5400 (interactive "P") | |
5401 (let ((articles (gnus-summary-work-articles arg)) | |
5402 func article) | |
5403 (if (eq | |
5404 (setq | |
5405 func | |
5406 (key-binding | |
5407 (read-key-sequence | |
5408 (substitute-command-keys | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5409 "\\<gnus-summary-mode-map>\\[gnus-summary-universal-argument]")))) |
17493 | 5410 'undefined) |
5411 (gnus-error 1 "Undefined key") | |
5412 (save-excursion | |
5413 (while articles | |
5414 (gnus-summary-goto-subject (setq article (pop articles))) | |
5415 (let (gnus-newsgroup-processable) | |
5416 (command-execute func)) | |
5417 (gnus-summary-remove-process-mark article))))) | |
5418 (gnus-summary-position-point)) | |
5419 | |
5420 (defun gnus-summary-toggle-truncation (&optional arg) | |
5421 "Toggle truncation of summary lines. | |
48588 | 5422 With arg, turn line truncation on if arg is positive." |
17493 | 5423 (interactive "P") |
5424 (setq truncate-lines | |
5425 (if (null arg) (not truncate-lines) | |
5426 (> (prefix-numeric-value arg) 0))) | |
5427 (redraw-display)) | |
5428 | |
5429 (defun gnus-summary-reselect-current-group (&optional all rescan) | |
5430 "Exit and then reselect the current newsgroup. | |
5431 The prefix argument ALL means to select all articles." | |
5432 (interactive "P") | |
5433 (when (gnus-ephemeral-group-p gnus-newsgroup-name) | |
5434 (error "Ephemeral groups can't be reselected")) | |
5435 (let ((current-subject (gnus-summary-article-number)) | |
5436 (group gnus-newsgroup-name)) | |
5437 (setq gnus-newsgroup-begin nil) | |
5438 (gnus-summary-exit) | |
5439 ;; We have to adjust the point of group mode buffer because | |
5440 ;; point was moved to the next unread newsgroup by exiting. | |
5441 (gnus-summary-jump-to-group group) | |
5442 (when rescan | |
5443 (save-excursion | |
5444 (gnus-group-get-new-news-this-group 1))) | |
5445 (gnus-group-read-group all t) | |
5446 (gnus-summary-goto-subject current-subject nil t))) | |
5447 | |
5448 (defun gnus-summary-rescan-group (&optional all) | |
5449 "Exit the newsgroup, ask for new articles, and select the newsgroup." | |
5450 (interactive "P") | |
5451 (gnus-summary-reselect-current-group all t)) | |
5452 | |
5453 (defun gnus-summary-update-info (&optional non-destructive) | |
5454 (save-excursion | |
5455 (let ((group gnus-newsgroup-name)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5456 (when group |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5457 (when gnus-newsgroup-kill-headers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5458 (setq gnus-newsgroup-killed |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5459 (gnus-compress-sequence |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5460 (nconc |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5461 (gnus-set-sorted-intersection |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5462 (gnus-uncompress-range gnus-newsgroup-killed) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5463 (setq gnus-newsgroup-unselected |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5464 (sort gnus-newsgroup-unselected '<))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5465 (setq gnus-newsgroup-unreads |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5466 (sort gnus-newsgroup-unreads '<))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5467 t))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5468 (unless (listp (cdr gnus-newsgroup-killed)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5469 (setq gnus-newsgroup-killed (list gnus-newsgroup-killed))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5470 (let ((headers gnus-newsgroup-headers)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5471 ;; Set the new ranges of read articles. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5472 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5473 (set-buffer gnus-group-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5474 (gnus-undo-force-boundary)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5475 (gnus-update-read-articles |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5476 group (append gnus-newsgroup-unreads gnus-newsgroup-unselected)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5477 ;; Set the current article marks. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5478 (let ((gnus-newsgroup-scored |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5479 (if (and (not gnus-save-score) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5480 (not non-destructive)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5481 nil |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5482 gnus-newsgroup-scored))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5483 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5484 (gnus-update-marks))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5485 ;; Do the cross-ref thing. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5486 (when gnus-use-cross-reference |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5487 (gnus-mark-xrefs-as-read group headers gnus-newsgroup-unreads)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5488 ;; Do not switch windows but change the buffer to work. |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5489 (set-buffer gnus-group-buffer) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5490 (unless (gnus-ephemeral-group-p group) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5491 (gnus-group-update-group group))))))) |
17493 | 5492 |
5493 (defun gnus-summary-save-newsrc (&optional force) | |
5494 "Save the current number of read/marked articles in the dribble buffer. | |
5495 The dribble buffer will then be saved. | |
5496 If FORCE (the prefix), also save the .newsrc file(s)." | |
5497 (interactive "P") | |
5498 (gnus-summary-update-info t) | |
5499 (if force | |
5500 (gnus-save-newsrc-file) | |
5501 (gnus-dribble-save))) | |
5502 | |
5503 (defun gnus-summary-exit (&optional temporary) | |
5504 "Exit reading current newsgroup, and then return to group selection mode. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5505 `gnus-exit-group-hook' is called with no arguments if that value is non-nil." |
17493 | 5506 (interactive) |
5507 (gnus-set-global-variables) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5508 (when (gnus-buffer-live-p gnus-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5509 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5510 (set-buffer gnus-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5511 (mm-destroy-parts gnus-article-mime-handles) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5512 ;; Set it to nil for safety reason. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5513 (setq gnus-article-mime-handle-alist nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5514 (setq gnus-article-mime-handles nil))) |
17493 | 5515 (gnus-kill-save-kill-buffer) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5516 (gnus-async-halt-prefetch) |
17493 | 5517 (let* ((group gnus-newsgroup-name) |
5518 (quit-config (gnus-group-quit-config gnus-newsgroup-name)) | |
5519 (mode major-mode) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5520 (group-point nil) |
17493 | 5521 (buf (current-buffer))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5522 (unless quit-config |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5523 ;; Do adaptive scoring, and possibly save score files. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5524 (when gnus-newsgroup-adaptive |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5525 (gnus-score-adaptive)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5526 (when gnus-use-scoring |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5527 (gnus-score-save))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5528 (gnus-run-hooks 'gnus-summary-prepare-exit-hook) |
17493 | 5529 ;; If we have several article buffers, we kill them at exit. |
5530 (unless gnus-single-article-buffer | |
5531 (gnus-kill-buffer gnus-original-article-buffer) | |
5532 (setq gnus-article-current nil)) | |
5533 (when gnus-use-cache | |
5534 (gnus-cache-possibly-remove-articles) | |
5535 (gnus-cache-save-buffers)) | |
5536 (gnus-async-prefetch-remove-group group) | |
5537 (when gnus-suppress-duplicates | |
5538 (gnus-dup-enter-articles)) | |
5539 (when gnus-use-trees | |
5540 (gnus-tree-close group)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5541 (when gnus-use-cache |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5542 (gnus-cache-write-active)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5543 ;; Remove entries for this group. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5544 (nnmail-purge-split-history (gnus-group-real-name group)) |
17493 | 5545 ;; Make all changes in this group permanent. |
5546 (unless quit-config | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5547 (gnus-run-hooks 'gnus-exit-group-hook) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5548 (gnus-summary-update-info)) |
17493 | 5549 (gnus-close-group group) |
5550 ;; Make sure where we were, and go to next newsgroup. | |
5551 (set-buffer gnus-group-buffer) | |
5552 (unless quit-config | |
5553 (gnus-group-jump-to-group group)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5554 (gnus-run-hooks 'gnus-summary-exit-hook) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5555 (unless (or quit-config |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5556 ;; If this group has disappeared from the summary |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5557 ;; buffer, don't skip forwards. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5558 (not (string= group (gnus-group-group-name)))) |
17493 | 5559 (gnus-group-next-unread-group 1)) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5560 (setq group-point (point)) |
17493 | 5561 (if temporary |
5562 nil ;Nothing to do. | |
5563 ;; If we have several article buffers, we kill them at exit. | |
5564 (unless gnus-single-article-buffer | |
5565 (gnus-kill-buffer gnus-article-buffer) | |
5566 (gnus-kill-buffer gnus-original-article-buffer) | |
5567 (setq gnus-article-current nil)) | |
5568 (set-buffer buf) | |
5569 (if (not gnus-kill-summary-on-exit) | |
5570 (gnus-deaden-summary) | |
5571 ;; We set all buffer-local variables to nil. It is unclear why | |
5572 ;; this is needed, but if we don't, buffer-local variables are | |
5573 ;; not garbage-collected, it seems. This would the lead to en | |
5574 ;; ever-growing Emacs. | |
5575 (gnus-summary-clear-local-variables) | |
5576 (when (get-buffer gnus-article-buffer) | |
5577 (bury-buffer gnus-article-buffer)) | |
5578 ;; We clear the global counterparts of the buffer-local | |
5579 ;; variables as well, just to be on the safe side. | |
5580 (set-buffer gnus-group-buffer) | |
5581 (gnus-summary-clear-local-variables) | |
5582 ;; Return to group mode buffer. | |
5583 (when (eq mode 'gnus-summary-mode) | |
5584 (gnus-kill-buffer buf))) | |
5585 (setq gnus-current-select-method gnus-select-method) | |
5586 (pop-to-buffer gnus-group-buffer) | |
5587 (if (not quit-config) | |
5588 (progn | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5589 (goto-char group-point) |
17493 | 5590 (gnus-configure-windows 'group 'force)) |
5591 (gnus-handle-ephemeral-exit quit-config)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5592 ;; Clear the current group name. |
17493 | 5593 (unless quit-config |
5594 (setq gnus-newsgroup-name nil))))) | |
5595 | |
5596 (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update) | |
5597 (defun gnus-summary-exit-no-update (&optional no-questions) | |
5598 "Quit reading current newsgroup without updating read article info." | |
5599 (interactive) | |
5600 (let* ((group gnus-newsgroup-name) | |
5601 (quit-config (gnus-group-quit-config group))) | |
5602 (when (or no-questions | |
5603 gnus-expert-user | |
5604 (gnus-y-or-n-p "Discard changes to this group and exit? ")) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5605 (gnus-async-halt-prefetch) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5606 (mapcar 'funcall |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5607 (delq 'gnus-summary-expire-articles |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5608 (copy-sequence gnus-summary-prepare-exit-hook))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5609 (when (gnus-buffer-live-p gnus-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5610 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5611 (set-buffer gnus-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5612 (mm-destroy-parts gnus-article-mime-handles) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5613 ;; Set it to nil for safety reason. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5614 (setq gnus-article-mime-handle-alist nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5615 (setq gnus-article-mime-handles nil))) |
17493 | 5616 ;; If we have several article buffers, we kill them at exit. |
5617 (unless gnus-single-article-buffer | |
5618 (gnus-kill-buffer gnus-article-buffer) | |
5619 (gnus-kill-buffer gnus-original-article-buffer) | |
5620 (setq gnus-article-current nil)) | |
5621 (if (not gnus-kill-summary-on-exit) | |
5622 (gnus-deaden-summary) | |
5623 (gnus-close-group group) | |
5624 (gnus-summary-clear-local-variables) | |
5625 (set-buffer gnus-group-buffer) | |
5626 (gnus-summary-clear-local-variables) | |
5627 (when (get-buffer gnus-summary-buffer) | |
5628 (kill-buffer gnus-summary-buffer))) | |
5629 (unless gnus-single-article-buffer | |
5630 (setq gnus-article-current nil)) | |
5631 (when gnus-use-trees | |
5632 (gnus-tree-close group)) | |
5633 (gnus-async-prefetch-remove-group group) | |
5634 (when (get-buffer gnus-article-buffer) | |
5635 (bury-buffer gnus-article-buffer)) | |
5636 ;; Return to the group buffer. | |
5637 (gnus-configure-windows 'group 'force) | |
5638 ;; Clear the current group name. | |
5639 (setq gnus-newsgroup-name nil) | |
5640 (when (equal (gnus-group-group-name) group) | |
5641 (gnus-group-next-unread-group 1)) | |
5642 (when quit-config | |
5643 (gnus-handle-ephemeral-exit quit-config))))) | |
5644 | |
5645 (defun gnus-handle-ephemeral-exit (quit-config) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5646 "Handle movement when leaving an ephemeral group. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5647 The state which existed when entering the ephemeral is reset." |
17493 | 5648 (if (not (buffer-name (car quit-config))) |
5649 (gnus-configure-windows 'group 'force) | |
5650 (set-buffer (car quit-config)) | |
5651 (cond ((eq major-mode 'gnus-summary-mode) | |
5652 (gnus-set-global-variables)) | |
5653 ((eq major-mode 'gnus-article-mode) | |
5654 (save-excursion | |
5655 ;; The `gnus-summary-buffer' variable may point | |
5656 ;; to the old summary buffer when using a single | |
5657 ;; article buffer. | |
5658 (unless (gnus-buffer-live-p gnus-summary-buffer) | |
5659 (set-buffer gnus-group-buffer)) | |
5660 (set-buffer gnus-summary-buffer) | |
5661 (gnus-set-global-variables)))) | |
5662 (if (or (eq (cdr quit-config) 'article) | |
5663 (eq (cdr quit-config) 'pick)) | |
5664 (progn | |
5665 ;; The current article may be from the ephemeral group | |
5666 ;; thus it is best that we reload this article | |
5667 (gnus-summary-show-article) | |
5668 (if (and (boundp 'gnus-pick-mode) (symbol-value 'gnus-pick-mode)) | |
5669 (gnus-configure-windows 'pick 'force) | |
5670 (gnus-configure-windows (cdr quit-config) 'force))) | |
5671 (gnus-configure-windows (cdr quit-config) 'force)) | |
5672 (when (eq major-mode 'gnus-summary-mode) | |
5673 (gnus-summary-next-subject 1 nil t) | |
5674 (gnus-summary-recenter) | |
5675 (gnus-summary-position-point)))) | |
5676 | |
5677 ;;; Dead summaries. | |
5678 | |
5679 (defvar gnus-dead-summary-mode-map nil) | |
5680 | |
5681 (unless gnus-dead-summary-mode-map | |
5682 (setq gnus-dead-summary-mode-map (make-keymap)) | |
5683 (suppress-keymap gnus-dead-summary-mode-map) | |
5684 (substitute-key-definition | |
5685 'undefined 'gnus-summary-wake-up-the-dead gnus-dead-summary-mode-map) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5686 (let ((keys '("\C-d" "\r" "\177" [delete]))) |
17493 | 5687 (while keys |
5688 (define-key gnus-dead-summary-mode-map | |
5689 (pop keys) 'gnus-summary-wake-up-the-dead)))) | |
5690 | |
5691 (defvar gnus-dead-summary-mode nil | |
5692 "Minor mode for Gnus summary buffers.") | |
5693 | |
5694 (defun gnus-dead-summary-mode (&optional arg) | |
5695 "Minor mode for Gnus summary buffers." | |
5696 (interactive "P") | |
5697 (when (eq major-mode 'gnus-summary-mode) | |
5698 (make-local-variable 'gnus-dead-summary-mode) | |
5699 (setq gnus-dead-summary-mode | |
5700 (if (null arg) (not gnus-dead-summary-mode) | |
5701 (> (prefix-numeric-value arg) 0))) | |
5702 (when gnus-dead-summary-mode | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5703 (gnus-add-minor-mode |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5704 'gnus-dead-summary-mode " Dead" gnus-dead-summary-mode-map)))) |
17493 | 5705 |
5706 (defun gnus-deaden-summary () | |
5707 "Make the current summary buffer into a dead summary buffer." | |
5708 ;; Kill any previous dead summary buffer. | |
5709 (when (and gnus-dead-summary | |
5710 (buffer-name gnus-dead-summary)) | |
5711 (save-excursion | |
5712 (set-buffer gnus-dead-summary) | |
5713 (when gnus-dead-summary-mode | |
5714 (kill-buffer (current-buffer))))) | |
5715 ;; Make this the current dead summary. | |
5716 (setq gnus-dead-summary (current-buffer)) | |
5717 (gnus-dead-summary-mode 1) | |
5718 (let ((name (buffer-name))) | |
5719 (when (string-match "Summary" name) | |
5720 (rename-buffer | |
5721 (concat (substring name 0 (match-beginning 0)) "Dead " | |
5722 (substring name (match-beginning 0))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5723 t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5724 (bury-buffer)))) |
17493 | 5725 |
5726 (defun gnus-kill-or-deaden-summary (buffer) | |
5727 "Kill or deaden the summary BUFFER." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5728 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5729 (when (and (buffer-name buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5730 (not gnus-single-article-buffer)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5731 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5732 (set-buffer buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5733 (gnus-kill-buffer gnus-article-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5734 (gnus-kill-buffer gnus-original-article-buffer))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5735 (cond (gnus-kill-summary-on-exit |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5736 (when (and gnus-use-trees |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5737 (gnus-buffer-exists-p buffer)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5738 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5739 (set-buffer buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5740 (gnus-tree-close gnus-newsgroup-name))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5741 (gnus-kill-buffer buffer)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5742 ((gnus-buffer-exists-p buffer) |
17493 | 5743 (save-excursion |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5744 (set-buffer buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5745 (gnus-deaden-summary)))))) |
17493 | 5746 |
5747 (defun gnus-summary-wake-up-the-dead (&rest args) | |
5748 "Wake up the dead summary buffer." | |
5749 (interactive) | |
5750 (gnus-dead-summary-mode -1) | |
5751 (let ((name (buffer-name))) | |
5752 (when (string-match "Dead " name) | |
5753 (rename-buffer | |
5754 (concat (substring name 0 (match-beginning 0)) | |
5755 (substring name (match-end 0))) | |
5756 t))) | |
5757 (gnus-message 3 "This dead summary is now alive again")) | |
5758 | |
5759 ;; Suggested by Andrew Eskilsson <pi92ae@pt.hk-r.se>. | |
5760 (defun gnus-summary-fetch-faq (&optional faq-dir) | |
5761 "Fetch the FAQ for the current group. | |
5762 If FAQ-DIR (the prefix), prompt for a directory to search for the faq | |
5763 in." | |
5764 (interactive | |
5765 (list | |
5766 (when current-prefix-arg | |
5767 (completing-read | |
48588 | 5768 "FAQ dir: " (and (listp gnus-group-faq-directory) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5769 (mapcar (lambda (file) (list file)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5770 gnus-group-faq-directory)))))) |
17493 | 5771 (let (gnus-faq-buffer) |
5772 (when (setq gnus-faq-buffer | |
5773 (gnus-group-fetch-faq gnus-newsgroup-name faq-dir)) | |
5774 (gnus-configure-windows 'summary-faq)))) | |
5775 | |
5776 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>. | |
5777 (defun gnus-summary-describe-group (&optional force) | |
5778 "Describe the current newsgroup." | |
5779 (interactive "P") | |
5780 (gnus-group-describe-group force gnus-newsgroup-name)) | |
5781 | |
5782 (defun gnus-summary-describe-briefly () | |
5783 "Describe summary mode commands briefly." | |
5784 (interactive) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5785 (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"))) |
17493 | 5786 |
5787 ;; Walking around group mode buffer from summary mode. | |
5788 | |
5789 (defun gnus-summary-next-group (&optional no-article target-group backward) | |
5790 "Exit current newsgroup and then select next unread newsgroup. | |
5791 If prefix argument NO-ARTICLE is non-nil, no article is selected | |
5792 initially. If NEXT-GROUP, go to this group. If BACKWARD, go to | |
5793 previous group instead." | |
5794 (interactive "P") | |
5795 ;; Stop pre-fetching. | |
5796 (gnus-async-halt-prefetch) | |
5797 (let ((current-group gnus-newsgroup-name) | |
5798 (current-buffer (current-buffer)) | |
5799 entered) | |
5800 ;; First we semi-exit this group to update Xrefs and all variables. | |
5801 ;; We can't do a real exit, because the window conf must remain | |
5802 ;; the same in case the user is prompted for info, and we don't | |
5803 ;; want the window conf to change before that... | |
5804 (gnus-summary-exit t) | |
5805 (while (not entered) | |
5806 ;; Then we find what group we are supposed to enter. | |
5807 (set-buffer gnus-group-buffer) | |
5808 (gnus-group-jump-to-group current-group) | |
5809 (setq target-group | |
5810 (or target-group | |
5811 (if (eq gnus-keep-same-level 'best) | |
5812 (gnus-summary-best-group gnus-newsgroup-name) | |
5813 (gnus-summary-search-group backward gnus-keep-same-level)))) | |
5814 (if (not target-group) | |
5815 ;; There are no further groups, so we return to the group | |
5816 ;; buffer. | |
5817 (progn | |
5818 (gnus-message 5 "Returning to the group buffer") | |
5819 (setq entered t) | |
5820 (when (gnus-buffer-live-p current-buffer) | |
5821 (set-buffer current-buffer) | |
5822 (gnus-summary-exit)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5823 (gnus-run-hooks 'gnus-group-no-more-groups-hook)) |
17493 | 5824 ;; We try to enter the target group. |
5825 (gnus-group-jump-to-group target-group) | |
5826 (let ((unreads (gnus-group-group-unread))) | |
5827 (if (and (or (eq t unreads) | |
5828 (and unreads (not (zerop unreads)))) | |
5829 (gnus-summary-read-group | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5830 target-group nil no-article |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5831 (and (buffer-name current-buffer) current-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5832 nil backward)) |
17493 | 5833 (setq entered t) |
5834 (setq current-group target-group | |
5835 target-group nil))))))) | |
5836 | |
5837 (defun gnus-summary-prev-group (&optional no-article) | |
5838 "Exit current newsgroup and then select previous unread newsgroup. | |
5839 If prefix argument NO-ARTICLE is non-nil, no article is selected initially." | |
5840 (interactive "P") | |
5841 (gnus-summary-next-group no-article nil t)) | |
5842 | |
5843 ;; Walking around summary lines. | |
5844 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5845 (defun gnus-summary-first-subject (&optional unread undownloaded) |
17493 | 5846 "Go to the first unread subject. |
5847 If UNREAD is non-nil, go to the first unread article. | |
5848 Returns the article selected or nil if there are no unread articles." | |
5849 (interactive "P") | |
5850 (prog1 | |
5851 (cond | |
5852 ;; Empty summary. | |
5853 ((null gnus-newsgroup-data) | |
5854 (gnus-message 3 "No articles in the group") | |
5855 nil) | |
5856 ;; Pick the first article. | |
5857 ((not unread) | |
5858 (goto-char (gnus-data-pos (car gnus-newsgroup-data))) | |
5859 (gnus-data-number (car gnus-newsgroup-data))) | |
5860 ;; No unread articles. | |
5861 ((null gnus-newsgroup-unreads) | |
5862 (gnus-message 3 "No more unread articles") | |
5863 nil) | |
5864 ;; Find the first unread article. | |
5865 (t | |
5866 (let ((data gnus-newsgroup-data)) | |
5867 (while (and data | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5868 (and (not (and undownloaded |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5869 (eq gnus-undownloaded-mark |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5870 (gnus-data-mark (car data))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5871 (not (gnus-data-unread-p (car data))))) |
17493 | 5872 (setq data (cdr data))) |
5873 (when data | |
5874 (goto-char (gnus-data-pos (car data))) | |
5875 (gnus-data-number (car data)))))) | |
5876 (gnus-summary-position-point))) | |
5877 | |
5878 (defun gnus-summary-next-subject (n &optional unread dont-display) | |
5879 "Go to next N'th summary line. | |
5880 If N is negative, go to the previous N'th subject line. | |
5881 If UNREAD is non-nil, only unread articles are selected. | |
5882 The difference between N and the actual number of steps taken is | |
5883 returned." | |
5884 (interactive "p") | |
5885 (let ((backward (< n 0)) | |
5886 (n (abs n))) | |
5887 (while (and (> n 0) | |
5888 (if backward | |
5889 (gnus-summary-find-prev unread) | |
5890 (gnus-summary-find-next unread))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5891 (unless (zerop (setq n (1- n))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5892 (gnus-summary-show-thread))) |
17493 | 5893 (when (/= 0 n) |
5894 (gnus-message 7 "No more%s articles" | |
5895 (if unread " unread" ""))) | |
5896 (unless dont-display | |
5897 (gnus-summary-recenter) | |
5898 (gnus-summary-position-point)) | |
5899 n)) | |
5900 | |
5901 (defun gnus-summary-next-unread-subject (n) | |
5902 "Go to next N'th unread summary line." | |
5903 (interactive "p") | |
5904 (gnus-summary-next-subject n t)) | |
5905 | |
5906 (defun gnus-summary-prev-subject (n &optional unread) | |
5907 "Go to previous N'th summary line. | |
5908 If optional argument UNREAD is non-nil, only unread article is selected." | |
5909 (interactive "p") | |
5910 (gnus-summary-next-subject (- n) unread)) | |
5911 | |
5912 (defun gnus-summary-prev-unread-subject (n) | |
5913 "Go to previous N'th unread summary line." | |
5914 (interactive "p") | |
5915 (gnus-summary-next-subject (- n) t)) | |
5916 | |
5917 (defun gnus-summary-goto-subject (article &optional force silent) | |
5918 "Go the subject line of ARTICLE. | |
5919 If FORCE, also allow jumping to articles not currently shown." | |
5920 (interactive "nArticle number: ") | |
5921 (let ((b (point)) | |
5922 (data (gnus-data-find article))) | |
5923 ;; We read in the article if we have to. | |
5924 (and (not data) | |
5925 force | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5926 (gnus-summary-insert-subject |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5927 article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5928 (if (or (numberp force) (vectorp force)) force) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5929 t) |
17493 | 5930 (setq data (gnus-data-find article))) |
5931 (goto-char b) | |
5932 (if (not data) | |
5933 (progn | |
5934 (unless silent | |
5935 (gnus-message 3 "Can't find article %d" article)) | |
5936 nil) | |
5937 (goto-char (gnus-data-pos data)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5938 (gnus-summary-position-point) |
17493 | 5939 article))) |
5940 | |
5941 ;; Walking around summary lines with displaying articles. | |
5942 | |
5943 (defun gnus-summary-expand-window (&optional arg) | |
5944 "Make the summary buffer take up the entire Emacs frame. | |
5945 Given a prefix, will force an `article' buffer configuration." | |
5946 (interactive "P") | |
5947 (if arg | |
5948 (gnus-configure-windows 'article 'force) | |
5949 (gnus-configure-windows 'summary 'force))) | |
5950 | |
5951 (defun gnus-summary-display-article (article &optional all-header) | |
5952 "Display ARTICLE in article buffer." | |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
5953 (when (gnus-buffer-live-p gnus-article-buffer) |
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
5954 (with-current-buffer gnus-article-buffer |
88783
769c1cbf5c5e
(gnus-summary-mode, gnus-summary-display-article)
Dave Love <fx@gnu.org>
parents:
43362
diff
changeset
|
5955 (mm-enable-multibyte))) |
17493 | 5956 (gnus-set-global-variables) |
5957 (if (null article) | |
5958 nil | |
5959 (prog1 | |
5960 (if gnus-summary-display-article-function | |
5961 (funcall gnus-summary-display-article-function article all-header) | |
5962 (gnus-article-prepare article all-header)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
5963 (gnus-run-hooks 'gnus-select-article-hook) |
17493 | 5964 (when (and gnus-current-article |
5965 (not (zerop gnus-current-article))) | |
5966 (gnus-summary-goto-subject gnus-current-article)) | |
5967 (gnus-summary-recenter) | |
5968 (when (and gnus-use-trees gnus-show-threads) | |
5969 (gnus-possibly-generate-tree article) | |
5970 (gnus-highlight-selected-tree article)) | |
5971 ;; Successfully display article. | |
5972 (gnus-article-set-window-start | |
5973 (cdr (assq article gnus-newsgroup-bookmarks)))))) | |
5974 | |
5975 (defun gnus-summary-select-article (&optional all-headers force pseudo article) | |
5976 "Select the current article. | |
5977 If ALL-HEADERS is non-nil, show all header fields. If FORCE is | |
5978 non-nil, the article will be re-fetched even if it already present in | |
5979 the article buffer. If PSEUDO is non-nil, pseudo-articles will also | |
5980 be displayed." | |
5981 ;; Make sure we are in the summary buffer to work around bbdb bug. | |
5982 (unless (eq major-mode 'gnus-summary-mode) | |
5983 (set-buffer gnus-summary-buffer)) | |
5984 (let ((article (or article (gnus-summary-article-number))) | |
42206 | 5985 (all-headers (not (not all-headers))) ;Must be t or nil. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5986 gnus-summary-display-article-function) |
17493 | 5987 (and (not pseudo) |
5988 (gnus-summary-article-pseudo-p article) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
5989 (error "This is a pseudo-article")) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5990 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5991 (set-buffer gnus-summary-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5992 (if (or (and gnus-single-article-buffer |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5993 (or (null gnus-current-article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5994 (null gnus-article-current) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5995 (null (get-buffer gnus-article-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5996 (not (eq article (cdr gnus-article-current))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5997 (not (equal (car gnus-article-current) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5998 gnus-newsgroup-name)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
5999 (and (not gnus-single-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6000 (or (null gnus-current-article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6001 (not (eq gnus-current-article article)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6002 force) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6003 ;; The requested article is different from the current article. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6004 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6005 (gnus-summary-display-article article all-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6006 (when (gnus-buffer-live-p gnus-article-buffer) |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
6007 (with-current-buffer gnus-article-buffer |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6008 (if (not gnus-article-decoded-p) ;; a local variable |
88783
769c1cbf5c5e
(gnus-summary-mode, gnus-summary-display-article)
Dave Love <fx@gnu.org>
parents:
43362
diff
changeset
|
6009 (mm-disable-multibyte)))) |
17493 | 6010 (when (or all-headers gnus-show-all-headers) |
6011 (gnus-article-show-all-headers)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6012 (gnus-article-set-window-start |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6013 (cdr (assq article gnus-newsgroup-bookmarks))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6014 article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6015 (when (or all-headers gnus-show-all-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6016 (gnus-article-show-all-headers)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6017 'old)))) |
17493 | 6018 |
6019 (defun gnus-summary-set-current-mark (&optional current-mark) | |
6020 "Obsolete function." | |
6021 nil) | |
6022 | |
6023 (defun gnus-summary-next-article (&optional unread subject backward push) | |
6024 "Select the next article. | |
6025 If UNREAD, only unread articles are selected. | |
6026 If SUBJECT, only articles with SUBJECT are selected. | |
6027 If BACKWARD, the previous article is selected instead of the next." | |
6028 (interactive "P") | |
6029 (cond | |
6030 ;; Is there such an article? | |
6031 ((and (gnus-summary-search-forward unread subject backward) | |
6032 (or (gnus-summary-display-article (gnus-summary-article-number)) | |
6033 (eq (gnus-summary-article-mark) gnus-canceled-mark))) | |
6034 (gnus-summary-position-point)) | |
6035 ;; If not, we try the first unread, if that is wanted. | |
6036 ((and subject | |
6037 gnus-auto-select-same | |
6038 (gnus-summary-first-unread-article)) | |
6039 (gnus-summary-position-point) | |
6040 (gnus-message 6 "Wrapped")) | |
6041 ;; Try to get next/previous article not displayed in this group. | |
6042 ((and gnus-auto-extend-newsgroup | |
6043 (not unread) (not subject)) | |
6044 (gnus-summary-goto-article | |
6045 (if backward (1- gnus-newsgroup-begin) (1+ gnus-newsgroup-end)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6046 nil (count-lines (point-min) (point)))) |
17493 | 6047 ;; Go to next/previous group. |
6048 (t | |
6049 (unless (gnus-ephemeral-group-p gnus-newsgroup-name) | |
6050 (gnus-summary-jump-to-group gnus-newsgroup-name)) | |
6051 (let ((cmd last-command-char) | |
6052 (point | |
6053 (save-excursion | |
6054 (set-buffer gnus-group-buffer) | |
6055 (point))) | |
6056 (group | |
6057 (if (eq gnus-keep-same-level 'best) | |
6058 (gnus-summary-best-group gnus-newsgroup-name) | |
6059 (gnus-summary-search-group backward gnus-keep-same-level)))) | |
6060 ;; For some reason, the group window gets selected. We change | |
6061 ;; it back. | |
6062 (select-window (get-buffer-window (current-buffer))) | |
6063 ;; Select next unread newsgroup automagically. | |
6064 (cond | |
6065 ((or (not gnus-auto-select-next) | |
6066 (not cmd)) | |
6067 (gnus-message 7 "No more%s articles" (if unread " unread" ""))) | |
6068 ((or (eq gnus-auto-select-next 'quietly) | |
6069 (and (eq gnus-auto-select-next 'slightly-quietly) | |
6070 push) | |
6071 (and (eq gnus-auto-select-next 'almost-quietly) | |
6072 (gnus-summary-last-article-p))) | |
6073 ;; Select quietly. | |
6074 (if (gnus-ephemeral-group-p gnus-newsgroup-name) | |
6075 (gnus-summary-exit) | |
6076 (gnus-message 7 "No more%s articles (%s)..." | |
6077 (if unread " unread" "") | |
6078 (if group (concat "selecting " group) | |
6079 "exiting")) | |
6080 (gnus-summary-next-group nil group backward))) | |
6081 (t | |
6082 (when (gnus-key-press-event-p last-input-event) | |
6083 (gnus-summary-walk-group-buffer | |
6084 gnus-newsgroup-name cmd unread backward point)))))))) | |
6085 | |
6086 (defun gnus-summary-walk-group-buffer (from-group cmd unread backward start) | |
6087 (let ((keystrokes '((?\C-n (gnus-group-next-unread-group 1)) | |
6088 (?\C-p (gnus-group-prev-unread-group 1)))) | |
6089 (cursor-in-echo-area t) | |
6090 keve key group ended) | |
6091 (save-excursion | |
6092 (set-buffer gnus-group-buffer) | |
6093 (goto-char start) | |
6094 (setq group | |
6095 (if (eq gnus-keep-same-level 'best) | |
6096 (gnus-summary-best-group gnus-newsgroup-name) | |
6097 (gnus-summary-search-group backward gnus-keep-same-level)))) | |
6098 (while (not ended) | |
6099 (gnus-message | |
6100 5 "No more%s articles%s" (if unread " unread" "") | |
6101 (if (and group | |
6102 (not (gnus-ephemeral-group-p gnus-newsgroup-name))) | |
6103 (format " (Type %s for %s [%s])" | |
6104 (single-key-description cmd) group | |
6105 (car (gnus-gethash group gnus-newsrc-hashtb))) | |
6106 (format " (Type %s to exit %s)" | |
6107 (single-key-description cmd) | |
6108 gnus-newsgroup-name))) | |
6109 ;; Confirm auto selection. | |
6110 (setq key (car (setq keve (gnus-read-event-char)))) | |
6111 (setq ended t) | |
6112 (cond | |
6113 ((assq key keystrokes) | |
6114 (let ((obuf (current-buffer))) | |
6115 (switch-to-buffer gnus-group-buffer) | |
6116 (when group | |
6117 (gnus-group-jump-to-group group)) | |
6118 (eval (cadr (assq key keystrokes))) | |
6119 (setq group (gnus-group-group-name)) | |
6120 (switch-to-buffer obuf)) | |
6121 (setq ended nil)) | |
6122 ((equal key cmd) | |
6123 (if (or (not group) | |
6124 (gnus-ephemeral-group-p gnus-newsgroup-name)) | |
6125 (gnus-summary-exit) | |
6126 (gnus-summary-next-group nil group backward))) | |
6127 (t | |
6128 (push (cdr keve) unread-command-events)))))) | |
6129 | |
6130 (defun gnus-summary-next-unread-article () | |
6131 "Select unread article after current one." | |
6132 (interactive) | |
6133 (gnus-summary-next-article | |
6134 (or (not (eq gnus-summary-goto-unread 'never)) | |
6135 (gnus-summary-last-article-p (gnus-summary-article-number))) | |
6136 (and gnus-auto-select-same | |
6137 (gnus-summary-article-subject)))) | |
6138 | |
6139 (defun gnus-summary-prev-article (&optional unread subject) | |
6140 "Select the article after the current one. | |
6141 If UNREAD is non-nil, only unread articles are selected." | |
6142 (interactive "P") | |
6143 (gnus-summary-next-article unread subject t)) | |
6144 | |
6145 (defun gnus-summary-prev-unread-article () | |
6146 "Select unread article before current one." | |
6147 (interactive) | |
6148 (gnus-summary-prev-article | |
6149 (or (not (eq gnus-summary-goto-unread 'never)) | |
6150 (gnus-summary-first-article-p (gnus-summary-article-number))) | |
6151 (and gnus-auto-select-same | |
6152 (gnus-summary-article-subject)))) | |
6153 | |
6154 (defun gnus-summary-next-page (&optional lines circular) | |
6155 "Show next page of the selected article. | |
6156 If at the end of the current article, select the next article. | |
6157 LINES says how many lines should be scrolled up. | |
6158 | |
6159 If CIRCULAR is non-nil, go to the start of the article instead of | |
6160 selecting the next article when reaching the end of the current | |
6161 article." | |
6162 (interactive "P") | |
6163 (setq gnus-summary-buffer (current-buffer)) | |
6164 (gnus-set-global-variables) | |
6165 (let ((article (gnus-summary-article-number)) | |
6166 (article-window (get-buffer-window gnus-article-buffer t)) | |
6167 endp) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6168 ;; If the buffer is empty, we have no article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6169 (unless article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6170 (error "No article to select")) |
17493 | 6171 (gnus-configure-windows 'article) |
6172 (if (eq (cdr (assq article gnus-newsgroup-reads)) gnus-canceled-mark) | |
6173 (if (and (eq gnus-summary-goto-unread 'never) | |
6174 (not (gnus-summary-last-article-p article))) | |
6175 (gnus-summary-next-article) | |
6176 (gnus-summary-next-unread-article)) | |
6177 (if (or (null gnus-current-article) | |
6178 (null gnus-article-current) | |
6179 (/= article (cdr gnus-article-current)) | |
6180 (not (equal (car gnus-article-current) gnus-newsgroup-name))) | |
6181 ;; Selected subject is different from current article's. | |
6182 (gnus-summary-display-article article) | |
6183 (when article-window | |
6184 (gnus-eval-in-buffer-window gnus-article-buffer | |
6185 (setq endp (gnus-article-next-page lines))) | |
6186 (when endp | |
6187 (cond (circular | |
6188 (gnus-summary-beginning-of-article)) | |
6189 (lines | |
6190 (gnus-message 3 "End of message")) | |
6191 ((null lines) | |
6192 (if (and (eq gnus-summary-goto-unread 'never) | |
6193 (not (gnus-summary-last-article-p article))) | |
6194 (gnus-summary-next-article) | |
6195 (gnus-summary-next-unread-article)))))))) | |
6196 (gnus-summary-recenter) | |
6197 (gnus-summary-position-point))) | |
6198 | |
6199 (defun gnus-summary-prev-page (&optional lines move) | |
6200 "Show previous page of selected article. | |
6201 Argument LINES specifies lines to be scrolled down. | |
6202 If MOVE, move to the previous unread article if point is at | |
6203 the beginning of the buffer." | |
6204 (interactive "P") | |
6205 (let ((article (gnus-summary-article-number)) | |
6206 (article-window (get-buffer-window gnus-article-buffer t)) | |
6207 endp) | |
6208 (gnus-configure-windows 'article) | |
6209 (if (or (null gnus-current-article) | |
6210 (null gnus-article-current) | |
6211 (/= article (cdr gnus-article-current)) | |
6212 (not (equal (car gnus-article-current) gnus-newsgroup-name))) | |
6213 ;; Selected subject is different from current article's. | |
6214 (gnus-summary-display-article article) | |
6215 (gnus-summary-recenter) | |
6216 (when article-window | |
6217 (gnus-eval-in-buffer-window gnus-article-buffer | |
6218 (setq endp (gnus-article-prev-page lines))) | |
6219 (when (and move endp) | |
6220 (cond (lines | |
6221 (gnus-message 3 "Beginning of message")) | |
6222 ((null lines) | |
6223 (if (and (eq gnus-summary-goto-unread 'never) | |
6224 (not (gnus-summary-first-article-p article))) | |
6225 (gnus-summary-prev-article) | |
6226 (gnus-summary-prev-unread-article)))))))) | |
6227 (gnus-summary-position-point)) | |
6228 | |
6229 (defun gnus-summary-prev-page-or-article (&optional lines) | |
6230 "Show previous page of selected article. | |
6231 Argument LINES specifies lines to be scrolled down. | |
6232 If at the beginning of the article, go to the next article." | |
6233 (interactive "P") | |
6234 (gnus-summary-prev-page lines t)) | |
6235 | |
6236 (defun gnus-summary-scroll-up (lines) | |
6237 "Scroll up (or down) one line current article. | |
6238 Argument LINES specifies lines to be scrolled up (or down if negative)." | |
6239 (interactive "p") | |
6240 (gnus-configure-windows 'article) | |
6241 (gnus-summary-show-thread) | |
6242 (when (eq (gnus-summary-select-article nil nil 'pseudo) 'old) | |
6243 (gnus-eval-in-buffer-window gnus-article-buffer | |
6244 (cond ((> lines 0) | |
6245 (when (gnus-article-next-page lines) | |
6246 (gnus-message 3 "End of message"))) | |
6247 ((< lines 0) | |
6248 (gnus-article-prev-page (- lines)))))) | |
6249 (gnus-summary-recenter) | |
6250 (gnus-summary-position-point)) | |
6251 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6252 (defun gnus-summary-scroll-down (lines) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6253 "Scroll down (or up) one line current article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6254 Argument LINES specifies lines to be scrolled down (or up if negative)." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6255 (interactive "p") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6256 (gnus-summary-scroll-up (- lines))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6257 |
17493 | 6258 (defun gnus-summary-next-same-subject () |
6259 "Select next article which has the same subject as current one." | |
6260 (interactive) | |
6261 (gnus-summary-next-article nil (gnus-summary-article-subject))) | |
6262 | |
6263 (defun gnus-summary-prev-same-subject () | |
6264 "Select previous article which has the same subject as current one." | |
6265 (interactive) | |
6266 (gnus-summary-prev-article nil (gnus-summary-article-subject))) | |
6267 | |
6268 (defun gnus-summary-next-unread-same-subject () | |
6269 "Select next unread article which has the same subject as current one." | |
6270 (interactive) | |
6271 (gnus-summary-next-article t (gnus-summary-article-subject))) | |
6272 | |
6273 (defun gnus-summary-prev-unread-same-subject () | |
6274 "Select previous unread article which has the same subject as current one." | |
6275 (interactive) | |
6276 (gnus-summary-prev-article t (gnus-summary-article-subject))) | |
6277 | |
6278 (defun gnus-summary-first-unread-article () | |
6279 "Select the first unread article. | |
6280 Return nil if there are no unread articles." | |
6281 (interactive) | |
6282 (prog1 | |
6283 (when (gnus-summary-first-subject t) | |
6284 (gnus-summary-show-thread) | |
6285 (gnus-summary-first-subject t) | |
6286 (gnus-summary-display-article (gnus-summary-article-number))) | |
6287 (gnus-summary-position-point))) | |
6288 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6289 (defun gnus-summary-first-unread-subject () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6290 "Place the point on the subject line of the first unread article. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6291 Return nil if there are no unread articles." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6292 (interactive) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6293 (prog1 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6294 (when (gnus-summary-first-subject t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6295 (gnus-summary-show-thread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6296 (gnus-summary-first-subject t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6297 (gnus-summary-position-point))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6298 |
17493 | 6299 (defun gnus-summary-first-article () |
6300 "Select the first article. | |
6301 Return nil if there are no articles." | |
6302 (interactive) | |
6303 (prog1 | |
6304 (when (gnus-summary-first-subject) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6305 (gnus-summary-show-thread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6306 (gnus-summary-first-subject) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6307 (gnus-summary-display-article (gnus-summary-article-number))) |
17493 | 6308 (gnus-summary-position-point))) |
6309 | |
6310 (defun gnus-summary-best-unread-article () | |
6311 "Select the unread article with the highest score." | |
6312 (interactive) | |
6313 (let ((best -1000000) | |
6314 (data gnus-newsgroup-data) | |
6315 article score) | |
6316 (while data | |
6317 (and (gnus-data-unread-p (car data)) | |
6318 (> (setq score | |
6319 (gnus-summary-article-score (gnus-data-number (car data)))) | |
6320 best) | |
6321 (setq best score | |
6322 article (gnus-data-number (car data)))) | |
6323 (setq data (cdr data))) | |
6324 (prog1 | |
6325 (if article | |
6326 (gnus-summary-goto-article article) | |
6327 (error "No unread articles")) | |
6328 (gnus-summary-position-point)))) | |
6329 | |
6330 (defun gnus-summary-last-subject () | |
6331 "Go to the last displayed subject line in the group." | |
6332 (let ((article (gnus-data-number (car (gnus-data-list t))))) | |
6333 (when article | |
6334 (gnus-summary-goto-subject article)))) | |
6335 | |
6336 (defun gnus-summary-goto-article (article &optional all-headers force) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6337 "Fetch ARTICLE (article number or Message-ID) and display it if it exists. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6338 If ALL-HEADERS is non-nil, no header lines are hidden. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6339 If FORCE, go to the article even if it isn't displayed. If FORCE |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6340 is a number, it is the line the article is to be displayed on." |
17493 | 6341 (interactive |
6342 (list | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6343 (completing-read |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6344 "Article number or Message-ID: " |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6345 (mapcar (lambda (number) (list (int-to-string number))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6346 gnus-newsgroup-limit)) |
17493 | 6347 current-prefix-arg |
6348 t)) | |
6349 (prog1 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6350 (if (and (stringp article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6351 (string-match "@" article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6352 (gnus-summary-refer-article article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6353 (when (stringp article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6354 (setq article (string-to-number article))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6355 (if (gnus-summary-goto-subject article force) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6356 (gnus-summary-display-article article all-headers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6357 (gnus-message 4 "Couldn't go to article %s" article) nil)) |
17493 | 6358 (gnus-summary-position-point))) |
6359 | |
6360 (defun gnus-summary-goto-last-article () | |
6361 "Go to the previously read article." | |
6362 (interactive) | |
6363 (prog1 | |
6364 (when gnus-last-article | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6365 (gnus-summary-goto-article gnus-last-article nil t)) |
17493 | 6366 (gnus-summary-position-point))) |
6367 | |
6368 (defun gnus-summary-pop-article (number) | |
6369 "Pop one article off the history and go to the previous. | |
6370 NUMBER articles will be popped off." | |
6371 (interactive "p") | |
6372 (let (to) | |
6373 (setq gnus-newsgroup-history | |
6374 (cdr (setq to (nthcdr number gnus-newsgroup-history)))) | |
6375 (if to | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6376 (gnus-summary-goto-article (car to) nil t) |
17493 | 6377 (error "Article history empty"))) |
6378 (gnus-summary-position-point)) | |
6379 | |
6380 ;; Summary commands and functions for limiting the summary buffer. | |
6381 | |
6382 (defun gnus-summary-limit-to-articles (n) | |
6383 "Limit the summary buffer to the next N articles. | |
6384 If not given a prefix, use the process marked articles instead." | |
6385 (interactive "P") | |
6386 (prog1 | |
6387 (let ((articles (gnus-summary-work-articles n))) | |
6388 (setq gnus-newsgroup-processable nil) | |
6389 (gnus-summary-limit articles)) | |
6390 (gnus-summary-position-point))) | |
6391 | |
6392 (defun gnus-summary-pop-limit (&optional total) | |
6393 "Restore the previous limit. | |
6394 If given a prefix, remove all limits." | |
6395 (interactive "P") | |
6396 (when total | |
6397 (setq gnus-newsgroup-limits | |
6398 (list (mapcar (lambda (h) (mail-header-number h)) | |
6399 gnus-newsgroup-headers)))) | |
6400 (unless gnus-newsgroup-limits | |
6401 (error "No limit to pop")) | |
6402 (prog1 | |
6403 (gnus-summary-limit nil 'pop) | |
6404 (gnus-summary-position-point))) | |
6405 | |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6406 (defun gnus-summary-limit-to-subject (subject &optional header not-matching) |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6407 "Limit the summary buffer to articles that have subjects that match a regexp. |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6408 If NOT-MATCHING, excluding articles that have subjects that match a regexp." |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
6409 (interactive |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6410 (list (read-string (if current-prefix-arg |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6411 "Exclude subject (regexp): " |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
6412 "Limit to subject (regexp): ")) |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6413 nil current-prefix-arg)) |
17493 | 6414 (unless header |
6415 (setq header "subject")) | |
6416 (when (not (equal "" subject)) | |
6417 (prog1 | |
6418 (let ((articles (gnus-summary-find-matching | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
6419 (or header "subject") subject 'all nil nil |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6420 not-matching))) |
17493 | 6421 (unless articles |
6422 (error "Found no matches for \"%s\"" subject)) | |
6423 (gnus-summary-limit articles)) | |
6424 (gnus-summary-position-point)))) | |
6425 | |
41630
b24292e7f5ad
2001-11-28 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
41494
diff
changeset
|
6426 (defun gnus-summary-limit-to-author (from &optional not-matching) |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6427 "Limit the summary buffer to articles that have authors that match a regexp. |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6428 If NOT-MATCHING, excluding articles that have authors that match a regexp." |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
6429 (interactive |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6430 (list (read-string (if current-prefix-arg |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6431 "Exclude author (regexp): " |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
6432 "Limit to author (regexp): ")) |
41630
b24292e7f5ad
2001-11-28 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
41494
diff
changeset
|
6433 current-prefix-arg)) |
b24292e7f5ad
2001-11-28 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
41494
diff
changeset
|
6434 (gnus-summary-limit-to-subject from "from" not-matching)) |
17493 | 6435 |
6436 (defun gnus-summary-limit-to-age (age &optional younger-p) | |
6437 "Limit the summary buffer to articles that are older than (or equal) AGE days. | |
6438 If YOUNGER-P (the prefix) is non-nil, limit the summary buffer to | |
6439 articles that are younger than AGE days." | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6440 (interactive |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6441 (let ((younger current-prefix-arg) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6442 (days-got nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6443 days) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6444 (while (not days-got) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6445 (setq days (if younger |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6446 (read-string "Limit to articles within (in days): ") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6447 (read-string "Limit to articles old than (in days): "))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6448 (when (> (length days) 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6449 (setq days (read days))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6450 (if (numberp days) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6451 (setq days-got t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6452 (message "Please enter a number.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6453 (sleep-for 1))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6454 (list days younger))) |
17493 | 6455 (prog1 |
6456 (let ((data gnus-newsgroup-data) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6457 (cutoff (days-to-time age)) |
17493 | 6458 articles d date is-younger) |
6459 (while (setq d (pop data)) | |
6460 (when (and (vectorp (gnus-data-header d)) | |
6461 (setq date (mail-header-date (gnus-data-header d)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6462 (setq is-younger (time-less-p |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6463 (time-since (condition-case () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6464 (date-to-time date) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6465 (error '(0 0)))) |
17493 | 6466 cutoff)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6467 (when (if younger-p |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6468 is-younger |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6469 (not is-younger)) |
17493 | 6470 (push (gnus-data-number d) articles)))) |
6471 (gnus-summary-limit (nreverse articles))) | |
6472 (gnus-summary-position-point))) | |
6473 | |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6474 (defun gnus-summary-limit-to-extra (header regexp &optional not-matching) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6475 "Limit the summary buffer to articles that match an 'extra' header." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6476 (interactive |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6477 (let ((header |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6478 (intern |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6479 (gnus-completing-read |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6480 (symbol-name (car gnus-extra-headers)) |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6481 (if current-prefix-arg |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6482 "Exclude extra header:" |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6483 "Limit extra header:") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6484 (mapcar (lambda (x) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6485 (cons (symbol-name x) x)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6486 gnus-extra-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6487 nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6488 t)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6489 (list header |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
6490 (read-string (format "%s header %s (regexp): " |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6491 (if current-prefix-arg "Exclude" "Limit to") |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6492 header)) |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6493 current-prefix-arg))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6494 (when (not (equal "" regexp)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6495 (prog1 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6496 (let ((articles (gnus-summary-find-matching |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
6497 (cons 'extra header) regexp 'all nil nil |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
6498 not-matching))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6499 (unless articles |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6500 (error "Found no matches for \"%s\"" regexp)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6501 (gnus-summary-limit articles)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6502 (gnus-summary-position-point)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6503 |
17493 | 6504 (defalias 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread) |
6505 (make-obsolete | |
6506 'gnus-summary-delete-marked-as-read 'gnus-summary-limit-to-unread) | |
6507 | |
6508 (defun gnus-summary-limit-to-unread (&optional all) | |
6509 "Limit the summary buffer to articles that are not marked as read. | |
6510 If ALL is non-nil, limit strictly to unread articles." | |
6511 (interactive "P") | |
6512 (if all | |
6513 (gnus-summary-limit-to-marks (char-to-string gnus-unread-mark)) | |
6514 (gnus-summary-limit-to-marks | |
6515 ;; Concat all the marks that say that an article is read and have | |
6516 ;; those removed. | |
6517 (list gnus-del-mark gnus-read-mark gnus-ancient-mark | |
6518 gnus-killed-mark gnus-kill-file-mark | |
6519 gnus-low-score-mark gnus-expirable-mark | |
6520 gnus-canceled-mark gnus-catchup-mark gnus-sparse-mark | |
6521 gnus-duplicate-mark gnus-souped-mark) | |
6522 'reverse))) | |
6523 | |
6524 (defalias 'gnus-summary-delete-marked-with 'gnus-summary-limit-exclude-marks) | |
6525 (make-obsolete 'gnus-summary-delete-marked-with | |
44439
d0bf98f4584b
* gnus-sum.el (gnus-summary-delete-marked-with): Fix typo.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
44344
diff
changeset
|
6526 'gnus-summary-limit-exclude-marks) |
17493 | 6527 |
6528 (defun gnus-summary-limit-exclude-marks (marks &optional reverse) | |
6529 "Exclude articles that are marked with MARKS (e.g. \"DK\"). | |
6530 If REVERSE, limit the summary buffer to articles that are marked | |
6531 with MARKS. MARKS can either be a string of marks or a list of marks. | |
6532 Returns how many articles were removed." | |
6533 (interactive "sMarks: ") | |
6534 (gnus-summary-limit-to-marks marks t)) | |
6535 | |
6536 (defun gnus-summary-limit-to-marks (marks &optional reverse) | |
6537 "Limit the summary buffer to articles that are marked with MARKS (e.g. \"DK\"). | |
6538 If REVERSE (the prefix), limit the summary buffer to articles that are | |
6539 not marked with MARKS. MARKS can either be a string of marks or a | |
6540 list of marks. | |
6541 Returns how many articles were removed." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6542 (interactive "sMarks: \nP") |
17493 | 6543 (prog1 |
6544 (let ((data gnus-newsgroup-data) | |
6545 (marks (if (listp marks) marks | |
6546 (append marks nil))) ; Transform to list. | |
6547 articles) | |
6548 (while data | |
6549 (when (if reverse (not (memq (gnus-data-mark (car data)) marks)) | |
6550 (memq (gnus-data-mark (car data)) marks)) | |
6551 (push (gnus-data-number (car data)) articles)) | |
6552 (setq data (cdr data))) | |
6553 (gnus-summary-limit articles)) | |
6554 (gnus-summary-position-point))) | |
6555 | |
6556 (defun gnus-summary-limit-to-score (&optional score) | |
6557 "Limit to articles with score at or above SCORE." | |
6558 (interactive "P") | |
6559 (setq score (if score | |
6560 (prefix-numeric-value score) | |
6561 (or gnus-summary-default-score 0))) | |
6562 (let ((data gnus-newsgroup-data) | |
6563 articles) | |
6564 (while data | |
6565 (when (>= (gnus-summary-article-score (gnus-data-number (car data))) | |
6566 score) | |
6567 (push (gnus-data-number (car data)) articles)) | |
6568 (setq data (cdr data))) | |
6569 (prog1 | |
6570 (gnus-summary-limit articles) | |
6571 (gnus-summary-position-point)))) | |
6572 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6573 (defun gnus-summary-limit-include-thread (id) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6574 "Display all the hidden articles that in the current thread." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6575 (interactive (list (mail-header-id (gnus-summary-article-header)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6576 (let ((articles (gnus-articles-in-thread |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6577 (gnus-id-to-thread (gnus-root-id id))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6578 (prog1 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6579 (gnus-summary-limit (nconc articles gnus-newsgroup-limit)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6580 (gnus-summary-position-point)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6581 |
17493 | 6582 (defun gnus-summary-limit-include-dormant () |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6583 "Display all the hidden articles that are marked as dormant. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6584 Note that this command only works on a subset of the articles currently |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6585 fetched for this group." |
17493 | 6586 (interactive) |
6587 (unless gnus-newsgroup-dormant | |
6588 (error "There are no dormant articles in this group")) | |
6589 (prog1 | |
6590 (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit)) | |
6591 (gnus-summary-position-point))) | |
6592 | |
6593 (defun gnus-summary-limit-exclude-dormant () | |
6594 "Hide all dormant articles." | |
6595 (interactive) | |
6596 (prog1 | |
6597 (gnus-summary-limit-to-marks (list gnus-dormant-mark) 'reverse) | |
6598 (gnus-summary-position-point))) | |
6599 | |
6600 (defun gnus-summary-limit-exclude-childless-dormant () | |
6601 "Hide all dormant articles that have no children." | |
6602 (interactive) | |
6603 (let ((data (gnus-data-list t)) | |
6604 articles d children) | |
6605 ;; Find all articles that are either not dormant or have | |
6606 ;; children. | |
6607 (while (setq d (pop data)) | |
6608 (when (or (not (= (gnus-data-mark d) gnus-dormant-mark)) | |
6609 (and (setq children | |
6610 (gnus-article-children (gnus-data-number d))) | |
6611 (let (found) | |
6612 (while children | |
6613 (when (memq (car children) articles) | |
6614 (setq children nil | |
6615 found t)) | |
6616 (pop children)) | |
6617 found))) | |
6618 (push (gnus-data-number d) articles))) | |
6619 ;; Do the limiting. | |
6620 (prog1 | |
6621 (gnus-summary-limit articles) | |
6622 (gnus-summary-position-point)))) | |
6623 | |
6624 (defun gnus-summary-limit-mark-excluded-as-read (&optional all) | |
6625 "Mark all unread excluded articles as read. | |
6626 If ALL, mark even excluded ticked and dormants as read." | |
6627 (interactive "P") | |
6628 (let ((articles (gnus-sorted-complement | |
6629 (sort | |
6630 (mapcar (lambda (h) (mail-header-number h)) | |
6631 gnus-newsgroup-headers) | |
6632 '<) | |
6633 (sort gnus-newsgroup-limit '<))) | |
6634 article) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6635 (setq gnus-newsgroup-unreads |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6636 (gnus-intersection gnus-newsgroup-unreads gnus-newsgroup-limit)) |
17493 | 6637 (if all |
6638 (setq gnus-newsgroup-dormant nil | |
6639 gnus-newsgroup-marked nil | |
6640 gnus-newsgroup-reads | |
6641 (nconc | |
6642 (mapcar (lambda (n) (cons n gnus-catchup-mark)) articles) | |
6643 gnus-newsgroup-reads)) | |
6644 (while (setq article (pop articles)) | |
6645 (unless (or (memq article gnus-newsgroup-dormant) | |
6646 (memq article gnus-newsgroup-marked)) | |
6647 (push (cons article gnus-catchup-mark) gnus-newsgroup-reads)))))) | |
6648 | |
6649 (defun gnus-summary-limit (articles &optional pop) | |
6650 (if pop | |
6651 ;; We pop the previous limit off the stack and use that. | |
6652 (setq articles (car gnus-newsgroup-limits) | |
6653 gnus-newsgroup-limits (cdr gnus-newsgroup-limits)) | |
6654 ;; We use the new limit, so we push the old limit on the stack. | |
6655 (push gnus-newsgroup-limit gnus-newsgroup-limits)) | |
6656 ;; Set the limit. | |
6657 (setq gnus-newsgroup-limit articles) | |
6658 (let ((total (length gnus-newsgroup-data)) | |
6659 (data (gnus-data-find-list (gnus-summary-article-number))) | |
6660 (gnus-summary-mark-below nil) ; Inhibit this. | |
6661 found) | |
6662 ;; This will do all the work of generating the new summary buffer | |
6663 ;; according to the new limit. | |
6664 (gnus-summary-prepare) | |
6665 ;; Hide any threads, possibly. | |
6666 (and gnus-show-threads | |
6667 gnus-thread-hide-subtree | |
6668 (gnus-summary-hide-all-threads)) | |
6669 ;; Try to return to the article you were at, or one in the | |
6670 ;; neighborhood. | |
6671 (when data | |
6672 ;; We try to find some article after the current one. | |
6673 (while data | |
6674 (when (gnus-summary-goto-subject (gnus-data-number (car data)) nil t) | |
6675 (setq data nil | |
6676 found t)) | |
6677 (setq data (cdr data)))) | |
6678 (unless found | |
6679 ;; If there is no data, that means that we were after the last | |
6680 ;; article. The same goes when we can't find any articles | |
6681 ;; after the current one. | |
6682 (goto-char (point-max)) | |
6683 (gnus-summary-find-prev)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6684 (gnus-set-mode-line 'summary) |
17493 | 6685 ;; We return how many articles were removed from the summary |
6686 ;; buffer as a result of the new limit. | |
6687 (- total (length gnus-newsgroup-data)))) | |
6688 | |
6689 (defsubst gnus-invisible-cut-children (threads) | |
6690 (let ((num 0)) | |
6691 (while threads | |
6692 (when (memq (mail-header-number (caar threads)) gnus-newsgroup-limit) | |
6693 (incf num)) | |
6694 (pop threads)) | |
6695 (< num 2))) | |
6696 | |
6697 (defsubst gnus-cut-thread (thread) | |
6698 "Go forwards in the thread until we find an article that we want to display." | |
6699 (when (or (eq gnus-fetch-old-headers 'some) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6700 (eq gnus-fetch-old-headers 'invisible) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6701 (numberp gnus-fetch-old-headers) |
17493 | 6702 (eq gnus-build-sparse-threads 'some) |
6703 (eq gnus-build-sparse-threads 'more)) | |
6704 ;; Deal with old-fetched headers and sparse threads. | |
6705 (while (and | |
6706 thread | |
6707 (or | |
6708 (gnus-summary-article-sparse-p (mail-header-number (car thread))) | |
6709 (gnus-summary-article-ancient-p | |
6710 (mail-header-number (car thread)))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6711 (if (or (<= (length (cdr thread)) 1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6712 (eq gnus-fetch-old-headers 'invisible)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6713 (setq gnus-newsgroup-limit |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6714 (delq (mail-header-number (car thread)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6715 gnus-newsgroup-limit) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6716 thread (cadr thread)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6717 (when (gnus-invisible-cut-children (cdr thread)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6718 (let ((th (cdr thread))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6719 (while th |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6720 (if (memq (mail-header-number (caar th)) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
6721 gnus-newsgroup-limit) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6722 (setq thread (car th) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6723 th nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6724 (setq th (cdr th)))))))))) |
17493 | 6725 thread) |
6726 | |
6727 (defun gnus-cut-threads (threads) | |
6728 "Cut off all uninteresting articles from the beginning of threads." | |
6729 (when (or (eq gnus-fetch-old-headers 'some) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6730 (eq gnus-fetch-old-headers 'invisible) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6731 (numberp gnus-fetch-old-headers) |
17493 | 6732 (eq gnus-build-sparse-threads 'some) |
6733 (eq gnus-build-sparse-threads 'more)) | |
6734 (let ((th threads)) | |
6735 (while th | |
6736 (setcar th (gnus-cut-thread (car th))) | |
6737 (setq th (cdr th))))) | |
6738 ;; Remove nixed out threads. | |
6739 (delq nil threads)) | |
6740 | |
6741 (defun gnus-summary-initial-limit (&optional show-if-empty) | |
6742 "Figure out what the initial limit is supposed to be on group entry. | |
6743 This entails weeding out unwanted dormants, low-scored articles, | |
6744 fetch-old-headers verbiage, and so on." | |
6745 ;; Most groups have nothing to remove. | |
6746 (if (or gnus-inhibit-limiting | |
6747 (and (null gnus-newsgroup-dormant) | |
6748 (not (eq gnus-fetch-old-headers 'some)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6749 (not (numberp gnus-fetch-old-headers)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6750 (not (eq gnus-fetch-old-headers 'invisible)) |
17493 | 6751 (null gnus-summary-expunge-below) |
6752 (not (eq gnus-build-sparse-threads 'some)) | |
6753 (not (eq gnus-build-sparse-threads 'more)) | |
6754 (null gnus-thread-expunge-below) | |
6755 (not gnus-use-nocem))) | |
6756 () ; Do nothing. | |
6757 (push gnus-newsgroup-limit gnus-newsgroup-limits) | |
6758 (setq gnus-newsgroup-limit nil) | |
6759 (mapatoms | |
6760 (lambda (node) | |
6761 (unless (car (symbol-value node)) | |
6762 ;; These threads have no parents -- they are roots. | |
6763 (let ((nodes (cdr (symbol-value node))) | |
6764 thread) | |
6765 (while nodes | |
6766 (if (and gnus-thread-expunge-below | |
6767 (< (gnus-thread-total-score (car nodes)) | |
6768 gnus-thread-expunge-below)) | |
6769 (gnus-expunge-thread (pop nodes)) | |
6770 (setq thread (pop nodes)) | |
6771 (gnus-summary-limit-children thread)))))) | |
6772 gnus-newsgroup-dependencies) | |
6773 ;; If this limitation resulted in an empty group, we might | |
6774 ;; pop the previous limit and use it instead. | |
6775 (when (and (not gnus-newsgroup-limit) | |
6776 show-if-empty) | |
6777 (setq gnus-newsgroup-limit (pop gnus-newsgroup-limits))) | |
6778 gnus-newsgroup-limit)) | |
6779 | |
6780 (defun gnus-summary-limit-children (thread) | |
6781 "Return 1 if this subthread is visible and 0 if it is not." | |
6782 ;; First we get the number of visible children to this thread. This | |
6783 ;; is done by recursing down the thread using this function, so this | |
6784 ;; will really go down to a leaf article first, before slowly | |
6785 ;; working its way up towards the root. | |
6786 (when thread | |
6787 (let ((children | |
6788 (if (cdr thread) | |
6789 (apply '+ (mapcar 'gnus-summary-limit-children | |
6790 (cdr thread))) | |
6791 0)) | |
6792 (number (mail-header-number (car thread))) | |
6793 score) | |
6794 (if (and | |
6795 (not (memq number gnus-newsgroup-marked)) | |
6796 (or | |
6797 ;; If this article is dormant and has absolutely no visible | |
6798 ;; children, then this article isn't visible. | |
6799 (and (memq number gnus-newsgroup-dormant) | |
6800 (zerop children)) | |
6801 ;; If this is "fetch-old-headered" and there is no | |
6802 ;; visible children, then we don't want this article. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6803 (and (or (eq gnus-fetch-old-headers 'some) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6804 (numberp gnus-fetch-old-headers)) |
17493 | 6805 (gnus-summary-article-ancient-p number) |
6806 (zerop children)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6807 ;; If this is "fetch-old-headered" and `invisible', then |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6808 ;; we don't want this article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6809 (and (eq gnus-fetch-old-headers 'invisible) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6810 (gnus-summary-article-ancient-p number)) |
17493 | 6811 ;; If this is a sparsely inserted article with no children, |
6812 ;; we don't want it. | |
6813 (and (eq gnus-build-sparse-threads 'some) | |
6814 (gnus-summary-article-sparse-p number) | |
6815 (zerop children)) | |
6816 ;; If we use expunging, and this article is really | |
6817 ;; low-scored, then we don't want this article. | |
6818 (when (and gnus-summary-expunge-below | |
6819 (< (setq score | |
6820 (or (cdr (assq number gnus-newsgroup-scored)) | |
6821 gnus-summary-default-score)) | |
6822 gnus-summary-expunge-below)) | |
6823 ;; We increase the expunge-tally here, but that has | |
6824 ;; nothing to do with the limits, really. | |
6825 (incf gnus-newsgroup-expunged-tally) | |
6826 ;; We also mark as read here, if that's wanted. | |
6827 (when (and gnus-summary-mark-below | |
6828 (< score gnus-summary-mark-below)) | |
6829 (setq gnus-newsgroup-unreads | |
6830 (delq number gnus-newsgroup-unreads)) | |
6831 (if gnus-newsgroup-auto-expire | |
6832 (push number gnus-newsgroup-expirable) | |
6833 (push (cons number gnus-low-score-mark) | |
6834 gnus-newsgroup-reads))) | |
6835 t) | |
6836 ;; Check NoCeM things. | |
6837 (if (and gnus-use-nocem | |
6838 (gnus-nocem-unwanted-article-p | |
6839 (mail-header-id (car thread)))) | |
6840 (progn | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
6841 (setq gnus-newsgroup-unreads |
17493 | 6842 (delq number gnus-newsgroup-unreads)) |
6843 t)))) | |
6844 ;; Nope, invisible article. | |
6845 0 | |
6846 ;; Ok, this article is to be visible, so we add it to the limit | |
6847 ;; and return 1. | |
6848 (push number gnus-newsgroup-limit) | |
6849 1)))) | |
6850 | |
6851 (defun gnus-expunge-thread (thread) | |
6852 "Mark all articles in THREAD as read." | |
6853 (let* ((number (mail-header-number (car thread)))) | |
6854 (incf gnus-newsgroup-expunged-tally) | |
6855 ;; We also mark as read here, if that's wanted. | |
6856 (setq gnus-newsgroup-unreads | |
6857 (delq number gnus-newsgroup-unreads)) | |
6858 (if gnus-newsgroup-auto-expire | |
6859 (push number gnus-newsgroup-expirable) | |
6860 (push (cons number gnus-low-score-mark) | |
6861 gnus-newsgroup-reads))) | |
6862 ;; Go recursively through all subthreads. | |
6863 (mapcar 'gnus-expunge-thread (cdr thread))) | |
6864 | |
6865 ;; Summary article oriented commands | |
6866 | |
6867 (defun gnus-summary-refer-parent-article (n) | |
6868 "Refer parent article N times. | |
6869 If N is negative, go to ancestor -N instead. | |
6870 The difference between N and the number of articles fetched is returned." | |
6871 (interactive "p") | |
6872 (let ((skip 1) | |
6873 error header ref) | |
6874 (when (not (natnump n)) | |
6875 (setq skip (abs n) | |
6876 n 1)) | |
6877 (while (and (> n 0) | |
6878 (not error)) | |
6879 (setq header (gnus-summary-article-header)) | |
6880 (if (and (eq (mail-header-number header) | |
6881 (cdr gnus-article-current)) | |
6882 (equal gnus-newsgroup-name | |
6883 (car gnus-article-current))) | |
6884 ;; If we try to find the parent of the currently | |
6885 ;; displayed article, then we take a look at the actual | |
6886 ;; References header, since this is slightly more | |
6887 ;; reliable than the References field we got from the | |
6888 ;; server. | |
6889 (save-excursion | |
6890 (set-buffer gnus-original-article-buffer) | |
6891 (nnheader-narrow-to-headers) | |
6892 (unless (setq ref (message-fetch-field "references")) | |
6893 (setq ref (message-fetch-field "in-reply-to"))) | |
6894 (widen)) | |
6895 (setq ref | |
6896 ;; It's not the current article, so we take a bet on | |
6897 ;; the value we got from the server. | |
6898 (mail-header-references header))) | |
6899 (if (and ref | |
6900 (not (equal ref ""))) | |
6901 (unless (gnus-summary-refer-article (gnus-parent-id ref skip)) | |
6902 (gnus-message 1 "Couldn't find parent")) | |
6903 (gnus-message 1 "No references in article %d" | |
6904 (gnus-summary-article-number)) | |
6905 (setq error t)) | |
6906 (decf n)) | |
6907 (gnus-summary-position-point) | |
6908 n)) | |
6909 | |
6910 (defun gnus-summary-refer-references () | |
6911 "Fetch all articles mentioned in the References header. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6912 Return the number of articles fetched." |
17493 | 6913 (interactive) |
6914 (let ((ref (mail-header-references (gnus-summary-article-header))) | |
6915 (current (gnus-summary-article-number)) | |
6916 (n 0)) | |
6917 (if (or (not ref) | |
6918 (equal ref "")) | |
6919 (error "No References in the current article") | |
6920 ;; For each Message-ID in the References header... | |
6921 (while (string-match "<[^>]*>" ref) | |
6922 (incf n) | |
6923 ;; ... fetch that article. | |
6924 (gnus-summary-refer-article | |
6925 (prog1 (match-string 0 ref) | |
6926 (setq ref (substring ref (match-end 0)))))) | |
6927 (gnus-summary-goto-subject current) | |
6928 (gnus-summary-position-point) | |
6929 n))) | |
6930 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6931 (defun gnus-summary-refer-thread (&optional limit) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6932 "Fetch all articles in the current thread. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6933 If LIMIT (the numerical prefix), fetch that many old headers instead |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6934 of what's specified by the `gnus-refer-thread-limit' variable." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6935 (interactive "P") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6936 (let ((id (mail-header-id (gnus-summary-article-header))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6937 (limit (if limit (prefix-numeric-value limit) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6938 gnus-refer-thread-limit))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6939 ;; We want to fetch LIMIT *old* headers, but we also have to |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6940 ;; re-fetch all the headers in the current buffer, because many of |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6941 ;; them may be undisplayed. So we adjust LIMIT. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6942 (when (numberp limit) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6943 (incf limit (- gnus-newsgroup-end gnus-newsgroup-begin))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6944 (unless (eq gnus-fetch-old-headers 'invisible) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6945 (gnus-message 5 "Fetching headers for %s..." gnus-newsgroup-name) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6946 ;; Retrieve the headers and read them in. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6947 (if (eq (gnus-retrieve-headers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6948 (list gnus-newsgroup-end) gnus-newsgroup-name limit) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6949 'nov) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6950 (gnus-build-all-threads) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6951 (error "Can't fetch thread from backends that don't support NOV")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6952 (gnus-message 5 "Fetching headers for %s...done" gnus-newsgroup-name)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6953 (gnus-summary-limit-include-thread id))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6954 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6955 (defun gnus-summary-refer-article (message-id) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6956 "Fetch an article specified by MESSAGE-ID." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6957 (interactive "sMessage-ID: ") |
17493 | 6958 (when (and (stringp message-id) |
6959 (not (zerop (length message-id)))) | |
6960 ;; Construct the correct Message-ID if necessary. | |
6961 ;; Suggested by tale@pawl.rpi.edu. | |
6962 (unless (string-match "^<" message-id) | |
6963 (setq message-id (concat "<" message-id))) | |
6964 (unless (string-match ">$" message-id) | |
6965 (setq message-id (concat message-id ">"))) | |
6966 (let* ((header (gnus-id-to-header message-id)) | |
6967 (sparse (and header | |
6968 (gnus-summary-article-sparse-p | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
6969 (mail-header-number header)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
6970 (memq (mail-header-number header) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6971 gnus-newsgroup-limit))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6972 number) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6973 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6974 ;; If the article is present in the buffer we just go to it. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6975 ((and header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6976 (or (not (gnus-summary-article-sparse-p |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6977 (mail-header-number header))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6978 sparse)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6979 (prog1 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6980 (gnus-summary-goto-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6981 (mail-header-number header) nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6982 (when sparse |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6983 (gnus-summary-update-article (mail-header-number header))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
6984 (t |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6985 ;; We fetch the article. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6986 (catch 'found |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6987 (dolist (gnus-override-method (gnus-refer-article-methods)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6988 (gnus-check-server gnus-override-method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6989 ;; Fetch the header, and display the article. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6990 (when (setq number (gnus-summary-insert-subject message-id)) |
17493 | 6991 (gnus-summary-select-article nil nil nil number) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6992 (throw 'found t))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6993 (gnus-message 3 "Couldn't fetch article %s" message-id))))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6994 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6995 (defun gnus-refer-article-methods () |
48588 | 6996 "Return a list of referable methods." |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6997 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6998 ;; No method, so we default to current and native. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
6999 ((null gnus-refer-article-method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7000 (list gnus-current-select-method gnus-select-method)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7001 ;; Current. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7002 ((eq 'current gnus-refer-article-method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7003 (list gnus-current-select-method)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7004 ;; List of select methods. |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
7005 ((not (and (symbolp (car gnus-refer-article-method)) |
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
7006 (assq (car gnus-refer-article-method) nnoo-definition-alist))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7007 (let (out) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7008 (dolist (method gnus-refer-article-method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7009 (push (if (eq 'current method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7010 gnus-current-select-method |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7011 method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7012 out)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7013 (nreverse out))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7014 ;; One single select method. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7015 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7016 (list gnus-refer-article-method)))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7017 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7018 (defun gnus-summary-edit-parameters () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7019 "Edit the group parameters of the current group." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7020 (interactive) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7021 (gnus-group-edit-group gnus-newsgroup-name 'params)) |
17493 | 7022 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7023 (defun gnus-summary-customize-parameters () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7024 "Customize the group parameters of the current group." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7025 (interactive) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7026 (gnus-group-customize gnus-newsgroup-name)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7027 |
17493 | 7028 (defun gnus-summary-enter-digest-group (&optional force) |
7029 "Enter an nndoc group based on the current article. | |
7030 If FORCE, force a digest interpretation. If not, try | |
7031 to guess what the document format is." | |
7032 (interactive "P") | |
7033 (let ((conf gnus-current-window-configuration)) | |
7034 (save-excursion | |
7035 (gnus-summary-select-article)) | |
7036 (setq gnus-current-window-configuration conf) | |
7037 (let* ((name (format "%s-%d" | |
7038 (gnus-group-prefixed-name | |
7039 gnus-newsgroup-name (list 'nndoc "")) | |
7040 (save-excursion | |
7041 (set-buffer gnus-summary-buffer) | |
7042 gnus-current-article))) | |
7043 (ogroup gnus-newsgroup-name) | |
7044 (params (append (gnus-info-params (gnus-get-info ogroup)) | |
7045 (list (cons 'to-group ogroup)) | |
7046 (list (cons 'save-article-group ogroup)))) | |
7047 (case-fold-search t) | |
7048 (buf (current-buffer)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7049 dig to-address) |
17493 | 7050 (save-excursion |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7051 (set-buffer gnus-original-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7052 ;; Have the digest group inherit the main mail address of |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7053 ;; the parent article. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7054 (when (setq to-address (or (message-fetch-field "reply-to") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7055 (message-fetch-field "from"))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7056 (setq params (append |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7057 (list (cons 'to-address |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
7058 (funcall gnus-decode-encoded-word-function |
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
7059 to-address)))))) |
17493 | 7060 (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*")) |
7061 (insert-buffer-substring gnus-original-article-buffer) | |
7062 ;; Remove lines that may lead nndoc to misinterpret the | |
7063 ;; document type. | |
7064 (narrow-to-region | |
7065 (goto-char (point-min)) | |
7066 (or (search-forward "\n\n" nil t) (point))) | |
7067 (goto-char (point-min)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7068 (delete-matching-lines "^Path:\\|^From ") |
17493 | 7069 (widen)) |
7070 (unwind-protect | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7071 (if (let ((gnus-newsgroup-ephemeral-charset gnus-newsgroup-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7072 (gnus-newsgroup-ephemeral-ignored-charsets |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7073 gnus-newsgroup-ignored-charsets)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7074 (gnus-group-read-ephemeral-group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7075 name `(nndoc ,name (nndoc-address ,(get-buffer dig)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7076 (nndoc-article-type |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7077 ,(if force 'mbox 'guess))) t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7078 ;; Make all postings to this group go to the parent group. |
17493 | 7079 (nconc (gnus-info-params (gnus-get-info name)) |
7080 params) | |
7081 ;; Couldn't select this doc group. | |
7082 (switch-to-buffer buf) | |
7083 (gnus-set-global-variables) | |
7084 (gnus-configure-windows 'summary) | |
7085 (gnus-message 3 "Article couldn't be entered?")) | |
7086 (kill-buffer dig))))) | |
7087 | |
7088 (defun gnus-summary-read-document (n) | |
7089 "Open a new group based on the current article(s). | |
7090 This will allow you to read digests and other similar | |
7091 documents as newsgroups. | |
7092 Obeys the standard process/prefix convention." | |
7093 (interactive "P") | |
7094 (let* ((articles (gnus-summary-work-articles n)) | |
7095 (ogroup gnus-newsgroup-name) | |
7096 (params (append (gnus-info-params (gnus-get-info ogroup)) | |
7097 (list (cons 'to-group ogroup)))) | |
7098 article group egroup groups vgroup) | |
7099 (while (setq article (pop articles)) | |
7100 (setq group (format "%s-%d" gnus-newsgroup-name article)) | |
7101 (gnus-summary-remove-process-mark article) | |
7102 (when (gnus-summary-display-article article) | |
7103 (save-excursion | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7104 (with-temp-buffer |
17493 | 7105 (insert-buffer-substring gnus-original-article-buffer) |
7106 ;; Remove some headers that may lead nndoc to make | |
7107 ;; the wrong guess. | |
7108 (message-narrow-to-head) | |
7109 (goto-char (point-min)) | |
7110 (delete-matching-lines "^\\(Path\\):\\|^From ") | |
7111 (widen) | |
7112 (if (setq egroup | |
7113 (gnus-group-read-ephemeral-group | |
7114 group `(nndoc ,group (nndoc-address ,(current-buffer)) | |
7115 (nndoc-article-type guess)) | |
7116 t nil t)) | |
7117 (progn | |
7118 ;; Make all postings to this group go to the parent group. | |
7119 (nconc (gnus-info-params (gnus-get-info egroup)) | |
7120 params) | |
7121 (push egroup groups)) | |
7122 ;; Couldn't select this doc group. | |
7123 (gnus-error 3 "Article couldn't be entered")))))) | |
7124 ;; Now we have selected all the documents. | |
7125 (cond | |
7126 ((not groups) | |
7127 (error "None of the articles could be interpreted as documents")) | |
7128 ((gnus-group-read-ephemeral-group | |
7129 (setq vgroup (format | |
7130 "nnvirtual:%s-%s" gnus-newsgroup-name | |
7131 (format-time-string "%Y%m%dT%H%M%S" (current-time)))) | |
7132 `(nnvirtual ,vgroup (nnvirtual-component-groups ,groups)) | |
7133 t | |
7134 (cons (current-buffer) 'summary))) | |
7135 (t | |
7136 (error "Couldn't select virtual nndoc group"))))) | |
7137 | |
7138 (defun gnus-summary-isearch-article (&optional regexp-p) | |
7139 "Do incremental search forward on the current article. | |
7140 If REGEXP-P (the prefix) is non-nil, do regexp isearch." | |
7141 (interactive "P") | |
7142 (gnus-summary-select-article) | |
7143 (gnus-configure-windows 'article) | |
7144 (gnus-eval-in-buffer-window gnus-article-buffer | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7145 (save-restriction |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7146 (widen) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7147 (isearch-forward regexp-p)))) |
17493 | 7148 |
7149 (defun gnus-summary-search-article-forward (regexp &optional backward) | |
7150 "Search for an article containing REGEXP forward. | |
7151 If BACKWARD, search backward instead." | |
7152 (interactive | |
7153 (list (read-string | |
7154 (format "Search article %s (regexp%s): " | |
7155 (if current-prefix-arg "backward" "forward") | |
7156 (if gnus-last-search-regexp | |
7157 (concat ", default " gnus-last-search-regexp) | |
7158 ""))) | |
7159 current-prefix-arg)) | |
7160 (if (string-equal regexp "") | |
7161 (setq regexp (or gnus-last-search-regexp "")) | |
7162 (setq gnus-last-search-regexp regexp)) | |
7163 (if (gnus-summary-search-article regexp backward) | |
7164 (gnus-summary-show-thread) | |
7165 (error "Search failed: \"%s\"" regexp))) | |
7166 | |
7167 (defun gnus-summary-search-article-backward (regexp) | |
7168 "Search for an article containing REGEXP backward." | |
7169 (interactive | |
7170 (list (read-string | |
7171 (format "Search article backward (regexp%s): " | |
7172 (if gnus-last-search-regexp | |
7173 (concat ", default " gnus-last-search-regexp) | |
7174 ""))))) | |
7175 (gnus-summary-search-article-forward regexp 'backward)) | |
7176 | |
7177 (defun gnus-summary-search-article (regexp &optional backward) | |
7178 "Search for an article containing REGEXP. | |
7179 Optional argument BACKWARD means do search for backward. | |
7180 `gnus-select-article-hook' is not called during the search." | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
7181 ;; We have to require this here to make sure that the following |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
7182 ;; dynamic binding isn't shadowed by autoloading. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
7183 (require 'gnus-async) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7184 (require 'gnus-art) |
17493 | 7185 (let ((gnus-select-article-hook nil) ;Disable hook. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7186 (gnus-article-prepare-hook nil) |
17493 | 7187 (gnus-mark-article-hook nil) ;Inhibit marking as read. |
7188 (gnus-use-article-prefetch nil) | |
7189 (gnus-xmas-force-redisplay nil) ;Inhibit XEmacs redisplay. | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
7190 (gnus-use-trees nil) ;Inhibit updating tree buffer. |
17493 | 7191 (sum (current-buffer)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7192 (gnus-display-mime-function nil) |
17493 | 7193 (found nil) |
7194 point) | |
7195 (gnus-save-hidden-threads | |
7196 (gnus-summary-select-article) | |
7197 (set-buffer gnus-article-buffer) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7198 (goto-char (window-point (get-buffer-window (current-buffer)))) |
17493 | 7199 (when backward |
7200 (forward-line -1)) | |
7201 (while (not found) | |
7202 (gnus-message 7 "Searching article: %d..." (cdr gnus-article-current)) | |
7203 (if (if backward | |
7204 (re-search-backward regexp nil t) | |
7205 (re-search-forward regexp nil t)) | |
7206 ;; We found the regexp. | |
7207 (progn | |
7208 (setq found 'found) | |
7209 (beginning-of-line) | |
7210 (set-window-start | |
7211 (get-buffer-window (current-buffer)) | |
7212 (point)) | |
7213 (forward-line 1) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7214 (set-window-point |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7215 (get-buffer-window (current-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7216 (point)) |
17493 | 7217 (set-buffer sum) |
7218 (setq point (point))) | |
7219 ;; We didn't find it, so we go to the next article. | |
7220 (set-buffer sum) | |
7221 (setq found 'not) | |
7222 (while (eq found 'not) | |
7223 (if (not (if backward (gnus-summary-find-prev) | |
7224 (gnus-summary-find-next))) | |
7225 ;; No more articles. | |
7226 (setq found t) | |
7227 ;; Select the next article and adjust point. | |
7228 (unless (gnus-summary-article-sparse-p | |
7229 (gnus-summary-article-number)) | |
7230 (setq found nil) | |
7231 (gnus-summary-select-article) | |
7232 (set-buffer gnus-article-buffer) | |
7233 (widen) | |
7234 (goto-char (if backward (point-max) (point-min)))))))) | |
7235 (gnus-message 7 "")) | |
7236 ;; Return whether we found the regexp. | |
7237 (when (eq found 'found) | |
7238 (goto-char point) | |
7239 (gnus-summary-show-thread) | |
7240 (gnus-summary-goto-subject gnus-current-article) | |
7241 (gnus-summary-position-point) | |
7242 t))) | |
7243 | |
7244 (defun gnus-summary-find-matching (header regexp &optional backward unread | |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7245 not-case-fold not-matching) |
17493 | 7246 "Return a list of all articles that match REGEXP on HEADER. |
7247 The search stars on the current article and goes forwards unless | |
7248 BACKWARD is non-nil. If BACKWARD is `all', do all articles. | |
7249 If UNREAD is non-nil, only unread articles will | |
7250 be taken into consideration. If NOT-CASE-FOLD, case won't be folded | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7251 in the comparisons. If NOT-MATCHING, return a list of all articles that |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7252 not match REGEXP on HEADER." |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7253 (let ((case-fold-search (not not-case-fold)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7254 articles d func) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7255 (if (consp header) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7256 (if (eq (car header) 'extra) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7257 (setq func |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7258 `(lambda (h) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7259 (or (cdr (assq ',(cdr header) (mail-header-extra h))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7260 ""))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7261 (error "%s is an invalid header" header)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7262 (unless (fboundp (intern (concat "mail-header-" header))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7263 (error "%s is not a valid header" header)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7264 (setq func `(lambda (h) (,(intern (concat "mail-header-" header)) h)))) |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7265 (dolist (d (if (eq backward 'all) |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7266 gnus-newsgroup-data |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7267 (gnus-data-find-list |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7268 (gnus-summary-article-number) |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7269 (gnus-data-list backward)))) |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7270 (when (and (or (not unread) ; We want all articles... |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7271 (gnus-data-unread-p d)) ; Or just unreads. |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7272 (vectorp (gnus-data-header d)) ; It's not a pseudo. |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7273 (if not-matching |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7274 (not (string-match |
41494
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7275 regexp |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7276 (funcall func (gnus-data-header d)))) |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7277 (string-match regexp |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7278 (funcall func (gnus-data-header d))))) |
933ab100fb4a
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39334
diff
changeset
|
7279 (push (gnus-data-number d) articles))) ; Success! |
17493 | 7280 (nreverse articles))) |
7281 | |
7282 (defun gnus-summary-execute-command (header regexp command &optional backward) | |
7283 "Search forward for an article whose HEADER matches REGEXP and execute COMMAND. | |
7284 If HEADER is an empty string (or nil), the match is done on the entire | |
7285 article. If BACKWARD (the prefix) is non-nil, search backward instead." | |
7286 (interactive | |
7287 (list (let ((completion-ignore-case t)) | |
7288 (completing-read | |
7289 "Header name: " | |
7290 (mapcar (lambda (string) (list string)) | |
7291 '("Number" "Subject" "From" "Lines" "Date" | |
7292 "Message-ID" "Xref" "References" "Body")) | |
7293 nil 'require-match)) | |
7294 (read-string "Regexp: ") | |
7295 (read-key-sequence "Command: ") | |
7296 current-prefix-arg)) | |
7297 (when (equal header "Body") | |
7298 (setq header "")) | |
7299 ;; Hidden thread subtrees must be searched as well. | |
7300 (gnus-summary-show-all-threads) | |
7301 ;; We don't want to change current point nor window configuration. | |
7302 (save-excursion | |
7303 (save-window-excursion | |
7304 (gnus-message 6 "Executing %s..." (key-description command)) | |
7305 ;; We'd like to execute COMMAND interactively so as to give arguments. | |
7306 (gnus-execute header regexp | |
7307 `(call-interactively ',(key-binding command)) | |
7308 backward) | |
7309 (gnus-message 6 "Executing %s...done" (key-description command))))) | |
7310 | |
7311 (defun gnus-summary-beginning-of-article () | |
7312 "Scroll the article back to the beginning." | |
7313 (interactive) | |
7314 (gnus-summary-select-article) | |
7315 (gnus-configure-windows 'article) | |
7316 (gnus-eval-in-buffer-window gnus-article-buffer | |
7317 (widen) | |
7318 (goto-char (point-min)) | |
7319 (when gnus-page-broken | |
7320 (gnus-narrow-to-page)))) | |
7321 | |
7322 (defun gnus-summary-end-of-article () | |
7323 "Scroll to the end of the article." | |
7324 (interactive) | |
7325 (gnus-summary-select-article) | |
7326 (gnus-configure-windows 'article) | |
7327 (gnus-eval-in-buffer-window gnus-article-buffer | |
7328 (widen) | |
7329 (goto-char (point-max)) | |
7330 (recenter -3) | |
7331 (when gnus-page-broken | |
7332 (gnus-narrow-to-page)))) | |
7333 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7334 (defun gnus-summary-print-article (&optional filename n) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7335 "Generate and print a PostScript image of the N next (mail) articles. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7336 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7337 If N is negative, print the N previous articles. If N is nil and articles |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7338 have been marked with the process mark, print these instead. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7339 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7340 If the optional first argument FILENAME is nil, send the image to the |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7341 printer. If FILENAME is a string, save the PostScript image in a file with |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7342 that name. If FILENAME is a number, prompt the user for the name of the file |
17493 | 7343 to save in." |
35838
53eebdb81828
2001-02-01 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34858
diff
changeset
|
7344 (interactive (list (ps-print-preprint current-prefix-arg))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7345 (dolist (article (gnus-summary-work-articles n)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7346 (gnus-summary-select-article nil nil 'pseudo article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7347 (gnus-eval-in-buffer-window gnus-article-buffer |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7348 (let ((buffer (generate-new-buffer " *print*"))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7349 (unwind-protect |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7350 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7351 (copy-to-buffer buffer (point-min) (point-max)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7352 (set-buffer buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7353 (gnus-article-delete-invisible-text) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7354 (let ((ps-left-header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7355 (list |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7356 (concat "(" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7357 (mail-header-subject gnus-current-headers) ")") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7358 (concat "(" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7359 (mail-header-from gnus-current-headers) ")"))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7360 (ps-right-header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7361 (list |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7362 "/pagenumberstring load" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7363 (concat "(" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7364 (mail-header-date gnus-current-headers) ")")))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7365 (gnus-run-hooks 'gnus-ps-print-hook) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7366 (save-excursion |
35838
53eebdb81828
2001-02-01 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34858
diff
changeset
|
7367 (ps-spool-buffer-with-faces)))) |
53eebdb81828
2001-02-01 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34858
diff
changeset
|
7368 (kill-buffer buffer)))) |
53eebdb81828
2001-02-01 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34858
diff
changeset
|
7369 (gnus-summary-remove-process-mark article)) |
53eebdb81828
2001-02-01 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34858
diff
changeset
|
7370 (ps-despool filename)) |
17493 | 7371 |
7372 (defun gnus-summary-show-article (&optional arg) | |
7373 "Force re-fetching of the current article. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7374 If ARG (the prefix) is a number, show the article with the charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7375 defined in `gnus-summary-show-article-charset-alist', or the charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7376 inputed. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7377 If ARG (the prefix) is non-nil and not a number, show the raw article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7378 without any article massaging functions being run." |
17493 | 7379 (interactive "P") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7380 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7381 ((numberp arg) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7382 (let ((gnus-newsgroup-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7383 (or (cdr (assq arg gnus-summary-show-article-charset-alist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7384 (read-coding-system "Charset: "))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7385 (gnus-newsgroup-ignored-charsets 'gnus-all)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7386 (gnus-summary-select-article nil 'force))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7387 ((not arg) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7388 ;; Select the article the normal way. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7389 (gnus-summary-select-article nil 'force)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7390 (t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7391 ;; We have to require this here to make sure that the following |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7392 ;; dynamic binding isn't shadowed by autoloading. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7393 (require 'gnus-async) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7394 (require 'gnus-art) |
17493 | 7395 ;; Bind the article treatment functions to nil. |
7396 (let ((gnus-have-all-headers t) | |
7397 gnus-article-prepare-hook | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7398 gnus-article-decode-hook |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7399 gnus-display-mime-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7400 gnus-break-pages) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7401 ;; Destroy any MIME parts. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7402 (when (gnus-buffer-live-p gnus-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7403 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7404 (set-buffer gnus-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7405 (mm-destroy-parts gnus-article-mime-handles) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7406 ;; Set it to nil for safety reason. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7407 (setq gnus-article-mime-handle-alist nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7408 (setq gnus-article-mime-handles nil))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7409 (gnus-summary-select-article nil 'force)))) |
17493 | 7410 (gnus-summary-goto-subject gnus-current-article) |
7411 (gnus-summary-position-point)) | |
7412 | |
7413 (defun gnus-summary-verbose-headers (&optional arg) | |
7414 "Toggle permanent full header display. | |
7415 If ARG is a positive number, turn header display on. | |
7416 If ARG is a negative number, turn header display off." | |
7417 (interactive "P") | |
7418 (setq gnus-show-all-headers | |
7419 (cond ((or (not (numberp arg)) | |
7420 (zerop arg)) | |
7421 (not gnus-show-all-headers)) | |
7422 ((natnump arg) | |
7423 t))) | |
7424 (gnus-summary-show-article)) | |
7425 | |
7426 (defun gnus-summary-toggle-header (&optional arg) | |
7427 "Show the headers if they are hidden, or hide them if they are shown. | |
7428 If ARG is a positive number, show the entire header. | |
7429 If ARG is a negative number, hide the unwanted header lines." | |
7430 (interactive "P") | |
7431 (save-excursion | |
7432 (set-buffer gnus-article-buffer) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7433 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7434 (let* ((buffer-read-only nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7435 (inhibit-point-motion-hooks t) |
44515
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
7436 hidden s e) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7437 (setq hidden |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7438 (if (numberp arg) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7439 (>= arg 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7440 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7441 (article-narrow-to-head) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7442 (gnus-article-hidden-text-p 'headers)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7443 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7444 (when (search-forward "\n\n" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7445 (delete-region (point-min) (1- (point)))) |
17493 | 7446 (goto-char (point-min)) |
44515
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
7447 (with-current-buffer gnus-original-article-buffer |
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
7448 (goto-char (setq s (point-min))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7449 (setq e (1- (or (search-forward "\n\n" nil t) (point-max))))) |
44515
6eaf9e9d6f0b
(gnus-update-summary-mark-positions, gnus-summary-toggle-header):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44439
diff
changeset
|
7450 (insert-buffer-substring gnus-original-article-buffer s e) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7451 (save-restriction |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7452 (narrow-to-region (point-min) (point)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7453 (article-decode-encoded-words) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7454 (if hidden |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7455 (let ((gnus-treat-hide-headers nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7456 (gnus-treat-hide-boring-headers nil)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7457 (setq gnus-article-wash-types |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7458 (delq 'headers gnus-article-wash-types)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7459 (gnus-treat-article 'head)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7460 (gnus-treat-article 'head))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7461 (gnus-set-mode-line 'article))))) |
17493 | 7462 |
7463 (defun gnus-summary-show-all-headers () | |
7464 "Make all header lines visible." | |
7465 (interactive) | |
7466 (gnus-article-show-all-headers)) | |
7467 | |
7468 (defun gnus-summary-caesar-message (&optional arg) | |
7469 "Caesar rotate the current article by 13. | |
7470 The numerical prefix specifies how many places to rotate each letter | |
7471 forward." | |
7472 (interactive "P") | |
7473 (gnus-summary-select-article) | |
7474 (let ((mail-header-separator "")) | |
7475 (gnus-eval-in-buffer-window gnus-article-buffer | |
7476 (save-restriction | |
7477 (widen) | |
7478 (let ((start (window-start)) | |
7479 buffer-read-only) | |
7480 (message-caesar-buffer-body arg) | |
7481 (set-window-start (get-buffer-window (current-buffer)) start)))))) | |
7482 | |
7483 (defun gnus-summary-stop-page-breaking () | |
7484 "Stop page breaking in the current article." | |
7485 (interactive) | |
7486 (gnus-summary-select-article) | |
7487 (gnus-eval-in-buffer-window gnus-article-buffer | |
7488 (widen) | |
7489 (when (gnus-visual-p 'page-marker) | |
7490 (let ((buffer-read-only nil)) | |
7491 (gnus-remove-text-with-property 'gnus-prev) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7492 (gnus-remove-text-with-property 'gnus-next)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7493 (setq gnus-page-broken nil)))) |
17493 | 7494 |
7495 (defun gnus-summary-move-article (&optional n to-newsgroup | |
7496 select-method action) | |
7497 "Move the current article to a different newsgroup. | |
7498 If N is a positive number, move the N next articles. | |
7499 If N is a negative number, move the N previous articles. | |
7500 If N is nil and any articles have been marked with the process mark, | |
7501 move those articles instead. | |
7502 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to. | |
7503 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but | |
7504 re-spool using this method. | |
7505 | |
7506 For this function to work, both the current newsgroup and the | |
7507 newsgroup that you want to move to have to support the `request-move' | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7508 and `request-accept' functions. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7509 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7510 ACTION can be either `move' (the default), `crosspost' or `copy'." |
17493 | 7511 (interactive "P") |
7512 (unless action | |
7513 (setq action 'move)) | |
7514 ;; Disable marking as read. | |
7515 (let (gnus-mark-article-hook) | |
7516 (save-window-excursion | |
7517 (gnus-summary-select-article))) | |
7518 ;; Check whether the source group supports the required functions. | |
7519 (cond ((and (eq action 'move) | |
7520 (not (gnus-check-backend-function | |
7521 'request-move-article gnus-newsgroup-name))) | |
7522 (error "The current group does not support article moving")) | |
7523 ((and (eq action 'crosspost) | |
7524 (not (gnus-check-backend-function | |
7525 'request-replace-article gnus-newsgroup-name))) | |
7526 (error "The current group does not support article editing"))) | |
7527 (let ((articles (gnus-summary-work-articles n)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7528 (prefix (if (gnus-check-backend-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7529 'request-move-article gnus-newsgroup-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7530 (gnus-group-real-prefix gnus-newsgroup-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7531 "")) |
17493 | 7532 (names '((move "Move" "Moving") |
7533 (copy "Copy" "Copying") | |
7534 (crosspost "Crosspost" "Crossposting"))) | |
7535 (copy-buf (save-excursion | |
7536 (nnheader-set-temp-buffer " *copy article*"))) | |
7537 art-group to-method new-xref article to-groups) | |
7538 (unless (assq action names) | |
7539 (error "Unknown action %s" action)) | |
7540 ;; Read the newsgroup name. | |
7541 (when (and (not to-newsgroup) | |
7542 (not select-method)) | |
7543 (setq to-newsgroup | |
7544 (gnus-read-move-group-name | |
7545 (cadr (assq action names)) | |
7546 (symbol-value (intern (format "gnus-current-%s-group" action))) | |
7547 articles prefix)) | |
7548 (set (intern (format "gnus-current-%s-group" action)) to-newsgroup)) | |
7549 (setq to-method (or select-method | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7550 (gnus-server-to-method |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7551 (gnus-group-method to-newsgroup)))) |
17493 | 7552 ;; Check the method we are to move this article to... |
7553 (unless (gnus-check-backend-function | |
7554 'request-accept-article (car to-method)) | |
7555 (error "%s does not support article copying" (car to-method))) | |
7556 (unless (gnus-check-server to-method) | |
7557 (error "Can't open server %s" (car to-method))) | |
7558 (gnus-message 6 "%s to %s: %s..." | |
7559 (caddr (assq action names)) | |
7560 (or (car select-method) to-newsgroup) articles) | |
7561 (while articles | |
7562 (setq article (pop articles)) | |
7563 (setq | |
7564 art-group | |
7565 (cond | |
7566 ;; Move the article. | |
7567 ((eq action 'move) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
7568 ;; Remove this article from future suppression. |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
7569 (gnus-dup-unsuppress-article article) |
17493 | 7570 (gnus-request-move-article |
7571 article ; Article to move | |
7572 gnus-newsgroup-name ; From newsgroup | |
7573 (nth 1 (gnus-find-method-for-group | |
7574 gnus-newsgroup-name)) ; Server | |
7575 (list 'gnus-request-accept-article | |
7576 to-newsgroup (list 'quote select-method) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7577 (not articles) t) ; Accept form |
17493 | 7578 (not articles))) ; Only save nov last time |
7579 ;; Copy the article. | |
7580 ((eq action 'copy) | |
7581 (save-excursion | |
7582 (set-buffer copy-buf) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7583 (when (gnus-request-article-this-buffer article gnus-newsgroup-name) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7584 (gnus-request-accept-article |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7585 to-newsgroup select-method (not articles) t)))) |
17493 | 7586 ;; Crosspost the article. |
7587 ((eq action 'crosspost) | |
7588 (let ((xref (message-tokenize-header | |
7589 (mail-header-xref (gnus-summary-article-header article)) | |
7590 " "))) | |
7591 (setq new-xref (concat (gnus-group-real-name gnus-newsgroup-name) | |
7592 ":" article)) | |
7593 (unless xref | |
7594 (setq xref (list (system-name)))) | |
7595 (setq new-xref | |
7596 (concat | |
7597 (mapconcat 'identity | |
7598 (delete "Xref:" (delete new-xref xref)) | |
7599 " ") | |
7600 " " new-xref)) | |
7601 (save-excursion | |
7602 (set-buffer copy-buf) | |
7603 ;; First put the article in the destination group. | |
7604 (gnus-request-article-this-buffer article gnus-newsgroup-name) | |
7605 (when (consp (setq art-group | |
7606 (gnus-request-accept-article | |
7607 to-newsgroup select-method (not articles)))) | |
7608 (setq new-xref (concat new-xref " " (car art-group) | |
7609 ":" (cdr art-group))) | |
7610 ;; Now we have the new Xrefs header, so we insert | |
7611 ;; it and replace the new article. | |
7612 (nnheader-replace-header "Xref" new-xref) | |
7613 (gnus-request-replace-article | |
7614 (cdr art-group) to-newsgroup (current-buffer)) | |
7615 art-group)))))) | |
7616 (cond | |
7617 ((not art-group) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7618 (gnus-message 1 "Couldn't %s article %s: %s" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7619 (cadr (assq action names)) article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7620 (nnheader-get-report (car to-method)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7621 ((eq art-group 'junk) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7622 (when (eq action 'move) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7623 (gnus-summary-mark-article article gnus-canceled-mark) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7624 (gnus-message 4 "Deleted article %s" article))) |
17493 | 7625 (t |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7626 (let* ((pto-group (gnus-group-prefixed-name |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7627 (car art-group) to-method)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7628 (entry |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7629 (gnus-gethash pto-group gnus-newsrc-hashtb)) |
17493 | 7630 (info (nth 2 entry)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7631 (to-group (gnus-info-group info)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7632 to-marks) |
17493 | 7633 ;; Update the group that has been moved to. |
7634 (when (and info | |
7635 (memq action '(move copy))) | |
7636 (unless (member to-group to-groups) | |
7637 (push to-group to-groups)) | |
7638 | |
7639 (unless (memq article gnus-newsgroup-unreads) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7640 (push 'read to-marks) |
17493 | 7641 (gnus-info-set-read |
7642 info (gnus-add-to-range (gnus-info-read info) | |
7643 (list (cdr art-group))))) | |
7644 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7645 ;; See whether the article is to be put in the cache. |
17493 | 7646 (let ((marks gnus-article-mark-lists) |
7647 (to-article (cdr art-group))) | |
7648 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7649 ;; Enter the article into the cache in the new group, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7650 ;; if that is required. |
17493 | 7651 (when gnus-use-cache |
7652 (gnus-cache-possibly-enter-article | |
7653 to-group to-article | |
7654 (memq article gnus-newsgroup-marked) | |
7655 (memq article gnus-newsgroup-dormant) | |
7656 (memq article gnus-newsgroup-unreads))) | |
7657 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7658 (when gnus-preserve-marks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7659 ;; Copy any marks over to the new group. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7660 (when (and (equal to-group gnus-newsgroup-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7661 (not (memq article gnus-newsgroup-unreads))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7662 ;; Mark this article as read in this group. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7663 (push (cons to-article gnus-read-mark) gnus-newsgroup-reads) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7664 (setcdr (gnus-active to-group) to-article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7665 (setcdr gnus-newsgroup-active to-article)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7666 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7667 (while marks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7668 (when (memq article (symbol-value |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7669 (intern (format "gnus-newsgroup-%s" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7670 (caar marks))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7671 (push (cdar marks) to-marks) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7672 ;; If the other group is the same as this group, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7673 ;; then we have to add the mark to the list. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7674 (when (equal to-group gnus-newsgroup-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7675 (set (intern (format "gnus-newsgroup-%s" (caar marks))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7676 (cons to-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7677 (symbol-value |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7678 (intern (format "gnus-newsgroup-%s" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7679 (caar marks))))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7680 ;; Copy the marks to other group. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7681 (gnus-add-marked-articles |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7682 to-group (cdar marks) (list to-article) info)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7683 (setq marks (cdr marks))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7684 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7685 (gnus-request-set-mark to-group (list (list (list to-article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7686 'set |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7687 to-marks)))) |
17493 | 7688 |
7689 (gnus-dribble-enter | |
7690 (concat "(gnus-group-set-info '" | |
7691 (gnus-prin1-to-string (gnus-get-info to-group)) | |
7692 ")")))) | |
7693 | |
7694 ;; Update the Xref header in this article to point to | |
7695 ;; the new crossposted article we have just created. | |
7696 (when (eq action 'crosspost) | |
7697 (save-excursion | |
7698 (set-buffer copy-buf) | |
7699 (gnus-request-article-this-buffer article gnus-newsgroup-name) | |
7700 (nnheader-replace-header "Xref" new-xref) | |
7701 (gnus-request-replace-article | |
7702 article gnus-newsgroup-name (current-buffer))))) | |
7703 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7704 ;;;!!!Why is this necessary? |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7705 (set-buffer gnus-summary-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7706 |
17493 | 7707 (gnus-summary-goto-subject article) |
7708 (when (eq action 'move) | |
7709 (gnus-summary-mark-article article gnus-canceled-mark)))) | |
7710 (gnus-summary-remove-process-mark article)) | |
7711 ;; Re-activate all groups that have been moved to. | |
7712 (while to-groups | |
7713 (save-excursion | |
7714 (set-buffer gnus-group-buffer) | |
7715 (when (gnus-group-goto-group (car to-groups) t) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
7716 (gnus-group-get-new-news-this-group 1 t)) |
17493 | 7717 (pop to-groups))) |
7718 | |
7719 (gnus-kill-buffer copy-buf) | |
7720 (gnus-summary-position-point) | |
7721 (gnus-set-mode-line 'summary))) | |
7722 | |
7723 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method) | |
7724 "Move the current article to a different newsgroup. | |
7725 If TO-NEWSGROUP is string, do not prompt for a newsgroup to move to. | |
7726 If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but | |
7727 re-spool using this method." | |
7728 (interactive "P") | |
7729 (gnus-summary-move-article n to-newsgroup select-method 'copy)) | |
7730 | |
7731 (defun gnus-summary-crosspost-article (&optional n) | |
7732 "Crosspost the current article to some other group." | |
7733 (interactive "P") | |
7734 (gnus-summary-move-article n nil nil 'crosspost)) | |
7735 | |
7736 (defcustom gnus-summary-respool-default-method nil | |
7737 "Default method for respooling an article. | |
7738 If nil, use to the current newsgroup method." | |
23363
41843e16f6ac
(gnus-summary-respool-default-method): Fix type.
Karl Heuer <kwzh@gnu.org>
parents:
20117
diff
changeset
|
7739 :type '(choice (gnus-select-method :value (nnml "")) |
41843e16f6ac
(gnus-summary-respool-default-method): Fix type.
Karl Heuer <kwzh@gnu.org>
parents:
20117
diff
changeset
|
7740 (const nil)) |
17493 | 7741 :group 'gnus-summary-mail) |
7742 | |
7743 (defun gnus-summary-respool-article (&optional n method) | |
7744 "Respool the current article. | |
7745 The article will be squeezed through the mail spooling process again, | |
7746 which means that it will be put in some mail newsgroup or other | |
7747 depending on `nnmail-split-methods'. | |
7748 If N is a positive number, respool the N next articles. | |
7749 If N is a negative number, respool the N previous articles. | |
7750 If N is nil and any articles have been marked with the process mark, | |
7751 respool those articles instead. | |
7752 | |
7753 Respooling can be done both from mail groups and \"real\" newsgroups. | |
7754 In the former case, the articles in question will be moved from the | |
7755 current group into whatever groups they are destined to. In the | |
7756 latter case, they will be copied into the relevant groups." | |
7757 (interactive | |
7758 (list current-prefix-arg | |
7759 (let* ((methods (gnus-methods-using 'respool)) | |
7760 (methname | |
7761 (symbol-name (or gnus-summary-respool-default-method | |
7762 (car (gnus-find-method-for-group | |
7763 gnus-newsgroup-name))))) | |
7764 (method | |
7765 (gnus-completing-read | |
7766 methname "What backend do you want to use when respooling?" | |
7767 methods nil t nil 'gnus-mail-method-history)) | |
7768 ms) | |
7769 (cond | |
7770 ((zerop (length (setq ms (gnus-servers-using-backend | |
7771 (intern method))))) | |
7772 (list (intern method) "")) | |
7773 ((= 1 (length ms)) | |
7774 (car ms)) | |
7775 (t | |
7776 (let ((ms-alist (mapcar (lambda (m) (cons (cadr m) m)) ms))) | |
7777 (cdr (assoc (completing-read "Server name: " ms-alist nil t) | |
7778 ms-alist)))))))) | |
7779 (unless method | |
7780 (error "No method given for respooling")) | |
7781 (if (assoc (symbol-name | |
7782 (car (gnus-find-method-for-group gnus-newsgroup-name))) | |
7783 (gnus-methods-using 'respool)) | |
7784 (gnus-summary-move-article n nil method) | |
7785 (gnus-summary-copy-article n nil method))) | |
7786 | |
7787 (defun gnus-summary-import-article (file) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7788 "Import an arbitrary file into a mail newsgroup." |
17493 | 7789 (interactive "fImport file: ") |
7790 (let ((group gnus-newsgroup-name) | |
7791 (now (current-time)) | |
7792 atts lines) | |
7793 (unless (gnus-check-backend-function 'request-accept-article group) | |
7794 (error "%s does not support article importing" group)) | |
7795 (or (file-readable-p file) | |
7796 (not (file-regular-p file)) | |
7797 (error "Can't read %s" file)) | |
7798 (save-excursion | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7799 (set-buffer (gnus-get-buffer-create " *import file*")) |
17493 | 7800 (erase-buffer) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7801 (nnheader-insert-file-contents file) |
17493 | 7802 (goto-char (point-min)) |
7803 (unless (nnheader-article-p) | |
7804 ;; This doesn't look like an article, so we fudge some headers. | |
7805 (setq atts (file-attributes file) | |
7806 lines (count-lines (point-min) (point-max))) | |
7807 (insert "From: " (read-string "From: ") "\n" | |
7808 "Subject: " (read-string "Subject: ") "\n" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7809 "Date: " (message-make-date (nth 5 atts)) |
17493 | 7810 "\n" |
7811 "Message-ID: " (message-make-message-id) "\n" | |
7812 "Lines: " (int-to-string lines) "\n" | |
7813 "Chars: " (int-to-string (nth 7 atts)) "\n\n")) | |
7814 (gnus-request-accept-article group nil t) | |
7815 (kill-buffer (current-buffer))))) | |
7816 | |
7817 (defun gnus-summary-article-posted-p () | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7818 "Say whether the current (mail) article is available from news as well. |
17493 | 7819 This will be the case if the article has both been mailed and posted." |
7820 (interactive) | |
7821 (let ((id (mail-header-references (gnus-summary-article-header))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7822 (gnus-override-method (car (gnus-refer-article-methods)))) |
17493 | 7823 (if (gnus-request-head id "") |
7824 (gnus-message 2 "The current message was found on %s" | |
7825 gnus-override-method) | |
7826 (gnus-message 2 "The current message couldn't be found on %s" | |
7827 gnus-override-method) | |
7828 nil))) | |
7829 | |
7830 (defun gnus-summary-expire-articles (&optional now) | |
7831 "Expire all articles that are marked as expirable in the current group." | |
7832 (interactive) | |
7833 (when (gnus-check-backend-function | |
7834 'request-expire-articles gnus-newsgroup-name) | |
7835 ;; This backend supports expiry. | |
7836 (let* ((total (gnus-group-total-expirable-p gnus-newsgroup-name)) | |
7837 (expirable (if total | |
7838 (progn | |
7839 ;; We need to update the info for | |
7840 ;; this group for `gnus-list-of-read-articles' | |
7841 ;; to give us the right answer. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7842 (gnus-run-hooks 'gnus-exit-group-hook) |
17493 | 7843 (gnus-summary-update-info) |
7844 (gnus-list-of-read-articles gnus-newsgroup-name)) | |
7845 (setq gnus-newsgroup-expirable | |
7846 (sort gnus-newsgroup-expirable '<)))) | |
7847 (expiry-wait (if now 'immediate | |
7848 (gnus-group-find-parameter | |
7849 gnus-newsgroup-name 'expiry-wait))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7850 (nnmail-expiry-target |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7851 (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7852 nnmail-expiry-target)) |
17493 | 7853 es) |
7854 (when expirable | |
7855 ;; There are expirable articles in this group, so we run them | |
7856 ;; through the expiry process. | |
7857 (gnus-message 6 "Expiring articles...") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7858 (unless (gnus-check-group gnus-newsgroup-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7859 (error "Can't open server for %s" gnus-newsgroup-name)) |
17493 | 7860 ;; The list of articles that weren't expired is returned. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7861 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7862 (if expiry-wait |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7863 (let ((nnmail-expiry-wait-function nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7864 (nnmail-expiry-wait expiry-wait)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7865 (setq es (gnus-request-expire-articles |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7866 expirable gnus-newsgroup-name))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7867 (setq es (gnus-request-expire-articles |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7868 expirable gnus-newsgroup-name)))) |
17493 | 7869 (unless total |
7870 (setq gnus-newsgroup-expirable es)) | |
7871 ;; We go through the old list of expirable, and mark all | |
7872 ;; really expired articles as nonexistent. | |
7873 (unless (eq es expirable) ;If nothing was expired, we don't mark. | |
7874 (let ((gnus-use-cache nil)) | |
7875 (while expirable | |
7876 (unless (memq (car expirable) es) | |
7877 (when (gnus-data-find (car expirable)) | |
7878 (gnus-summary-mark-article | |
7879 (car expirable) gnus-canceled-mark))) | |
7880 (setq expirable (cdr expirable))))) | |
7881 (gnus-message 6 "Expiring articles...done"))))) | |
7882 | |
7883 (defun gnus-summary-expire-articles-now () | |
7884 "Expunge all expirable articles in the current group. | |
7885 This means that *all* articles that are marked as expirable will be | |
7886 deleted forever, right now." | |
7887 (interactive) | |
7888 (or gnus-expert-user | |
7889 (gnus-yes-or-no-p | |
7890 "Are you really, really, really sure you want to delete all these messages? ") | |
7891 (error "Phew!")) | |
7892 (gnus-summary-expire-articles t)) | |
7893 | |
7894 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>. | |
7895 (defun gnus-summary-delete-article (&optional n) | |
7896 "Delete the N next (mail) articles. | |
7897 This command actually deletes articles. This is not a marking | |
7898 command. The article will disappear forever from your life, never to | |
7899 return. | |
7900 If N is negative, delete backwards. | |
7901 If N is nil and articles have been marked with the process mark, | |
7902 delete these instead." | |
7903 (interactive "P") | |
7904 (unless (gnus-check-backend-function 'request-expire-articles | |
7905 gnus-newsgroup-name) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
7906 (error "The current newsgroup does not support article deletion")) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7907 (unless (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7908 (error "Couldn't open server")) |
17493 | 7909 ;; Compute the list of articles to delete. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7910 (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<)) |
17493 | 7911 not-deleted) |
7912 (if (and gnus-novice-user | |
7913 (not (gnus-yes-or-no-p | |
7914 (format "Do you really want to delete %s forever? " | |
7915 (if (> (length articles) 1) | |
7916 (format "these %s articles" (length articles)) | |
7917 "this article"))))) | |
7918 () | |
7919 ;; Delete the articles. | |
7920 (setq not-deleted (gnus-request-expire-articles | |
7921 articles gnus-newsgroup-name 'force)) | |
7922 (while articles | |
7923 (gnus-summary-remove-process-mark (car articles)) | |
7924 ;; The backend might not have been able to delete the article | |
7925 ;; after all. | |
7926 (unless (memq (car articles) not-deleted) | |
7927 (gnus-summary-mark-article (car articles) gnus-canceled-mark)) | |
7928 (setq articles (cdr articles))) | |
7929 (when not-deleted | |
7930 (gnus-message 4 "Couldn't delete articles %s" not-deleted))) | |
7931 (gnus-summary-position-point) | |
7932 (gnus-set-mode-line 'summary) | |
7933 not-deleted)) | |
7934 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7935 (defun gnus-summary-edit-article (&optional arg) |
17493 | 7936 "Edit the current article. |
7937 This will have permanent effect only in mail groups. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7938 If ARG is nil, edit the decoded articles. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7939 If ARG is 1, edit the raw articles. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7940 If ARG is 2, edit the raw articles even in read-only groups. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7941 Otherwise, allow editing of articles even in read-only |
17493 | 7942 groups." |
7943 (interactive "P") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7944 (let (force raw) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7945 (cond |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7946 ((null arg)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7947 ((eq arg 1) (setq raw t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7948 ((eq arg 2) (setq raw t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7949 force t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7950 (t (setq force t))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7951 (if (and raw (not force) (equal gnus-newsgroup-name "nndraft:drafts")) |
38413
a26d9b55abb6
Some fixes to follow coding conventions in files from Gnus.
Pavel Janík <Pavel@Janik.cz>
parents:
35977
diff
changeset
|
7952 (error "Can't edit the raw article in group nndraft:drafts")) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7953 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7954 (set-buffer gnus-summary-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7955 (let ((mail-parse-charset gnus-newsgroup-charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7956 (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7957 (gnus-set-global-variables) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7958 (when (and (not force) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7959 (gnus-group-read-only-p)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7960 (error "The current newsgroup does not support article editing")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7961 (gnus-summary-show-article t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7962 (when (and (not raw) (gnus-buffer-live-p gnus-article-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7963 (with-current-buffer gnus-article-buffer |
88783
769c1cbf5c5e
(gnus-summary-mode, gnus-summary-display-article)
Dave Love <fx@gnu.org>
parents:
43362
diff
changeset
|
7964 (mm-enable-multibyte))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7965 (if (equal gnus-newsgroup-name "nndraft:drafts") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7966 (setq raw t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7967 (gnus-article-edit-article |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7968 (if raw 'ignore |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7969 #'(lambda () |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7970 (let ((mbl mml-buffer-list)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7971 (setq mml-buffer-list nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7972 (mime-to-mml) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7973 (make-local-hook 'kill-buffer-hook) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7974 (let ((mml-buffer-list mml-buffer-list)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7975 (setq mml-buffer-list mbl) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7976 (make-local-variable 'mml-buffer-list)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7977 (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7978 `(lambda (no-highlight) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7979 (let ((mail-parse-charset ',gnus-newsgroup-charset) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7980 (mail-parse-ignored-charsets |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7981 ',gnus-newsgroup-ignored-charsets)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7982 ,(if (not raw) '(progn |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7983 (mml-to-mime) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7984 (mml-destroy-buffers) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7985 (remove-hook 'kill-buffer-hook |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7986 'mml-destroy-buffers t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7987 (kill-local-variable 'mml-buffer-list))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7988 (gnus-summary-edit-article-done |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7989 ,(or (mail-header-references gnus-current-headers) "") |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
7990 ,(gnus-group-read-only-p) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
7991 ,gnus-summary-buffer no-highlight)))))))) |
17493 | 7992 |
7993 (defalias 'gnus-summary-edit-article-postpone 'gnus-article-edit-exit) | |
7994 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7995 (defun gnus-summary-edit-article-done (&optional references read-only buffer |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
7996 no-highlight) |
17493 | 7997 "Make edits to the current article permanent." |
7998 (interactive) | |
7999 ;; Replace the article. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8000 (let ((buf (current-buffer))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8001 (with-temp-buffer |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8002 (insert-buffer-substring buf) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8003 (if (and (not read-only) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8004 (not (gnus-request-replace-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8005 (cdr gnus-article-current) (car gnus-article-current) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8006 (current-buffer) t))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8007 (error "Couldn't replace article") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8008 ;; Update the summary buffer. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8009 (if (and references |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8010 (equal (message-tokenize-header references " ") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8011 (message-tokenize-header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8012 (or (message-fetch-field "references") "") " "))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8013 ;; We only have to update this line. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8014 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8015 (save-restriction |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8016 (message-narrow-to-head) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8017 (let ((head (buffer-string)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8018 header) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8019 (with-temp-buffer |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8020 (insert (format "211 %d Article retrieved.\n" |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8021 (cdr gnus-article-current))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8022 (insert head) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8023 (insert ".\n") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8024 (let ((nntp-server-buffer (current-buffer))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8025 (setq header (car (gnus-get-newsgroup-headers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8026 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8027 (set-buffer gnus-summary-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8028 gnus-newsgroup-dependencies) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8029 t)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8030 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8031 (set-buffer gnus-summary-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8032 (gnus-data-set-header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8033 (gnus-data-find (cdr gnus-article-current)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8034 header) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8035 (gnus-summary-update-article-line |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8036 (cdr gnus-article-current) header)))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8037 ;; Update threads. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8038 (set-buffer (or buffer gnus-summary-buffer)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8039 (gnus-summary-update-article (cdr gnus-article-current))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8040 ;; Prettify the article buffer again. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8041 (unless no-highlight |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8042 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8043 (set-buffer gnus-article-buffer) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8044 ;;;!!! Fix this -- article should be rehighlighted. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8045 ;;;(gnus-run-hooks 'gnus-article-display-hook) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8046 (set-buffer gnus-original-article-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8047 (gnus-request-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8048 (cdr gnus-article-current) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8049 (car gnus-article-current) (current-buffer)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8050 ;; Prettify the summary buffer line. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8051 (when (gnus-visual-p 'summary-highlight 'highlight) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8052 (gnus-run-hooks 'gnus-visual-mark-article-hook)))))) |
17493 | 8053 |
8054 (defun gnus-summary-edit-wash (key) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8055 "Perform editing command KEY in the article buffer." |
17493 | 8056 (interactive |
8057 (list | |
8058 (progn | |
8059 (message "%s" (concat (this-command-keys) "- ")) | |
8060 (read-char)))) | |
8061 (message "") | |
8062 (gnus-summary-edit-article) | |
8063 (execute-kbd-macro (concat (this-command-keys) key)) | |
8064 (gnus-article-edit-done)) | |
8065 | |
8066 ;;; Respooling | |
8067 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8068 (defun gnus-summary-respool-query (&optional silent trace) |
17493 | 8069 "Query where the respool algorithm would put this article." |
8070 (interactive) | |
8071 (let (gnus-mark-article-hook) | |
8072 (gnus-summary-select-article) | |
8073 (save-excursion | |
8074 (set-buffer gnus-original-article-buffer) | |
8075 (save-restriction | |
8076 (message-narrow-to-head) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8077 (let ((groups (nnmail-article-group 'identity trace))) |
17493 | 8078 (unless silent |
8079 (if groups | |
8080 (message "This message would go to %s" | |
8081 (mapconcat 'car groups ", ")) | |
8082 (message "This message would go to no groups")) | |
8083 groups)))))) | |
8084 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8085 (defun gnus-summary-respool-trace () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8086 "Trace where the respool algorithm would put this article. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8087 Display a buffer showing all fancy splitting patterns which matched." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8088 (interactive) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8089 (gnus-summary-respool-query nil t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8090 |
17493 | 8091 ;; Summary marking commands. |
8092 | |
8093 (defun gnus-summary-kill-same-subject-and-select (&optional unmark) | |
8094 "Mark articles which has the same subject as read, and then select the next. | |
8095 If UNMARK is positive, remove any kind of mark. | |
8096 If UNMARK is negative, tick articles." | |
8097 (interactive "P") | |
8098 (when unmark | |
8099 (setq unmark (prefix-numeric-value unmark))) | |
8100 (let ((count | |
8101 (gnus-summary-mark-same-subject | |
8102 (gnus-summary-article-subject) unmark))) | |
8103 ;; Select next unread article. If auto-select-same mode, should | |
8104 ;; select the first unread article. | |
8105 (gnus-summary-next-article t (and gnus-auto-select-same | |
8106 (gnus-summary-article-subject))) | |
8107 (gnus-message 7 "%d article%s marked as %s" | |
8108 count (if (= count 1) " is" "s are") | |
8109 (if unmark "unread" "read")))) | |
8110 | |
8111 (defun gnus-summary-kill-same-subject (&optional unmark) | |
8112 "Mark articles which has the same subject as read. | |
8113 If UNMARK is positive, remove any kind of mark. | |
8114 If UNMARK is negative, tick articles." | |
8115 (interactive "P") | |
8116 (when unmark | |
8117 (setq unmark (prefix-numeric-value unmark))) | |
8118 (let ((count | |
8119 (gnus-summary-mark-same-subject | |
8120 (gnus-summary-article-subject) unmark))) | |
8121 ;; If marked as read, go to next unread subject. | |
8122 (when (null unmark) | |
8123 ;; Go to next unread subject. | |
8124 (gnus-summary-next-subject 1 t)) | |
8125 (gnus-message 7 "%d articles are marked as %s" | |
8126 count (if unmark "unread" "read")))) | |
8127 | |
8128 (defun gnus-summary-mark-same-subject (subject &optional unmark) | |
8129 "Mark articles with same SUBJECT as read, and return marked number. | |
8130 If optional argument UNMARK is positive, remove any kinds of marks. | |
8131 If optional argument UNMARK is negative, mark articles as unread instead." | |
8132 (let ((count 1)) | |
8133 (save-excursion | |
8134 (cond | |
8135 ((null unmark) ; Mark as read. | |
8136 (while (and | |
8137 (progn | |
8138 (gnus-summary-mark-article-as-read gnus-killed-mark) | |
8139 (gnus-summary-show-thread) t) | |
8140 (gnus-summary-find-subject subject)) | |
8141 (setq count (1+ count)))) | |
8142 ((> unmark 0) ; Tick. | |
8143 (while (and | |
8144 (progn | |
8145 (gnus-summary-mark-article-as-unread gnus-ticked-mark) | |
8146 (gnus-summary-show-thread) t) | |
8147 (gnus-summary-find-subject subject)) | |
8148 (setq count (1+ count)))) | |
8149 (t ; Mark as unread. | |
8150 (while (and | |
8151 (progn | |
8152 (gnus-summary-mark-article-as-unread gnus-unread-mark) | |
8153 (gnus-summary-show-thread) t) | |
8154 (gnus-summary-find-subject subject)) | |
8155 (setq count (1+ count))))) | |
8156 (gnus-set-mode-line 'summary) | |
8157 ;; Return the number of marked articles. | |
8158 count))) | |
8159 | |
8160 (defun gnus-summary-mark-as-processable (n &optional unmark) | |
8161 "Set the process mark on the next N articles. | |
8162 If N is negative, mark backward instead. If UNMARK is non-nil, remove | |
8163 the process mark instead. The difference between N and the actual | |
8164 number of articles marked is returned." | |
8165 (interactive "p") | |
8166 (let ((backward (< n 0)) | |
8167 (n (abs n))) | |
8168 (while (and | |
8169 (> n 0) | |
8170 (if unmark | |
8171 (gnus-summary-remove-process-mark | |
8172 (gnus-summary-article-number)) | |
8173 (gnus-summary-set-process-mark (gnus-summary-article-number))) | |
8174 (zerop (gnus-summary-next-subject (if backward -1 1) nil t))) | |
8175 (setq n (1- n))) | |
8176 (when (/= 0 n) | |
8177 (gnus-message 7 "No more articles")) | |
8178 (gnus-summary-recenter) | |
8179 (gnus-summary-position-point) | |
8180 n)) | |
8181 | |
8182 (defun gnus-summary-unmark-as-processable (n) | |
8183 "Remove the process mark from the next N articles. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8184 If N is negative, unmark backward instead. The difference between N and |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8185 the actual number of articles unmarked is returned." |
17493 | 8186 (interactive "p") |
8187 (gnus-summary-mark-as-processable n t)) | |
8188 | |
8189 (defun gnus-summary-unmark-all-processable () | |
8190 "Remove the process mark from all articles." | |
8191 (interactive) | |
8192 (save-excursion | |
8193 (while gnus-newsgroup-processable | |
8194 (gnus-summary-remove-process-mark (car gnus-newsgroup-processable)))) | |
8195 (gnus-summary-position-point)) | |
8196 | |
8197 (defun gnus-summary-mark-as-expirable (n) | |
8198 "Mark N articles forward as expirable. | |
8199 If N is negative, mark backward instead. The difference between N and | |
8200 the actual number of articles marked is returned." | |
8201 (interactive "p") | |
8202 (gnus-summary-mark-forward n gnus-expirable-mark)) | |
8203 | |
8204 (defun gnus-summary-mark-article-as-replied (article) | |
8205 "Mark ARTICLE replied and update the summary line." | |
8206 (push article gnus-newsgroup-replied) | |
8207 (let ((buffer-read-only nil)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8208 (when (gnus-summary-goto-subject article nil t) |
17493 | 8209 (gnus-summary-update-secondary-mark article)))) |
8210 | |
8211 (defun gnus-summary-set-bookmark (article) | |
8212 "Set a bookmark in current article." | |
8213 (interactive (list (gnus-summary-article-number))) | |
8214 (when (or (not (get-buffer gnus-article-buffer)) | |
8215 (not gnus-current-article) | |
8216 (not gnus-article-current) | |
8217 (not (equal gnus-newsgroup-name (car gnus-article-current)))) | |
8218 (error "No current article selected")) | |
8219 ;; Remove old bookmark, if one exists. | |
8220 (let ((old (assq article gnus-newsgroup-bookmarks))) | |
8221 (when old | |
8222 (setq gnus-newsgroup-bookmarks | |
8223 (delq old gnus-newsgroup-bookmarks)))) | |
8224 ;; Set the new bookmark, which is on the form | |
8225 ;; (article-number . line-number-in-body). | |
8226 (push | |
8227 (cons article | |
8228 (save-excursion | |
8229 (set-buffer gnus-article-buffer) | |
8230 (count-lines | |
8231 (min (point) | |
8232 (save-excursion | |
8233 (goto-char (point-min)) | |
8234 (search-forward "\n\n" nil t) | |
8235 (point))) | |
8236 (point)))) | |
8237 gnus-newsgroup-bookmarks) | |
8238 (gnus-message 6 "A bookmark has been added to the current article.")) | |
8239 | |
8240 (defun gnus-summary-remove-bookmark (article) | |
8241 "Remove the bookmark from the current article." | |
8242 (interactive (list (gnus-summary-article-number))) | |
8243 ;; Remove old bookmark, if one exists. | |
8244 (let ((old (assq article gnus-newsgroup-bookmarks))) | |
8245 (if old | |
8246 (progn | |
8247 (setq gnus-newsgroup-bookmarks | |
8248 (delq old gnus-newsgroup-bookmarks)) | |
8249 (gnus-message 6 "Removed bookmark.")) | |
8250 (gnus-message 6 "No bookmark in current article.")))) | |
8251 | |
8252 ;; Suggested by Daniel Quinlan <quinlan@best.com>. | |
8253 (defun gnus-summary-mark-as-dormant (n) | |
8254 "Mark N articles forward as dormant. | |
8255 If N is negative, mark backward instead. The difference between N and | |
8256 the actual number of articles marked is returned." | |
8257 (interactive "p") | |
8258 (gnus-summary-mark-forward n gnus-dormant-mark)) | |
8259 | |
8260 (defun gnus-summary-set-process-mark (article) | |
8261 "Set the process mark on ARTICLE and update the summary line." | |
8262 (setq gnus-newsgroup-processable | |
8263 (cons article | |
8264 (delq article gnus-newsgroup-processable))) | |
8265 (when (gnus-summary-goto-subject article) | |
8266 (gnus-summary-show-thread) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8267 (gnus-summary-goto-subject article) |
17493 | 8268 (gnus-summary-update-secondary-mark article))) |
8269 | |
8270 (defun gnus-summary-remove-process-mark (article) | |
8271 "Remove the process mark from ARTICLE and update the summary line." | |
8272 (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable)) | |
8273 (when (gnus-summary-goto-subject article) | |
8274 (gnus-summary-show-thread) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8275 (gnus-summary-goto-subject article) |
17493 | 8276 (gnus-summary-update-secondary-mark article))) |
8277 | |
8278 (defun gnus-summary-set-saved-mark (article) | |
8279 "Set the process mark on ARTICLE and update the summary line." | |
8280 (push article gnus-newsgroup-saved) | |
8281 (when (gnus-summary-goto-subject article) | |
8282 (gnus-summary-update-secondary-mark article))) | |
8283 | |
8284 (defun gnus-summary-mark-forward (n &optional mark no-expire) | |
8285 "Mark N articles as read forwards. | |
8286 If N is negative, mark backwards instead. Mark with MARK, ?r by default. | |
8287 The difference between N and the actual number of articles marked is | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8288 returned. |
48588 | 8289 If NO-EXPIRE, auto-expiry will be inhibited." |
17493 | 8290 (interactive "p") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8291 (gnus-summary-show-thread) |
17493 | 8292 (let ((backward (< n 0)) |
8293 (gnus-summary-goto-unread | |
8294 (and gnus-summary-goto-unread | |
8295 (not (eq gnus-summary-goto-unread 'never)) | |
8296 (not (memq mark (list gnus-unread-mark | |
8297 gnus-ticked-mark gnus-dormant-mark))))) | |
8298 (n (abs n)) | |
8299 (mark (or mark gnus-del-mark))) | |
8300 (while (and (> n 0) | |
8301 (gnus-summary-mark-article nil mark no-expire) | |
8302 (zerop (gnus-summary-next-subject | |
8303 (if backward -1 1) | |
8304 (and gnus-summary-goto-unread | |
8305 (not (eq gnus-summary-goto-unread 'never))) | |
8306 t))) | |
8307 (setq n (1- n))) | |
8308 (when (/= 0 n) | |
8309 (gnus-message 7 "No more %sarticles" (if mark "" "unread "))) | |
8310 (gnus-summary-recenter) | |
8311 (gnus-summary-position-point) | |
8312 (gnus-set-mode-line 'summary) | |
8313 n)) | |
8314 | |
8315 (defun gnus-summary-mark-article-as-read (mark) | |
8316 "Mark the current article quickly as read with MARK." | |
8317 (let ((article (gnus-summary-article-number))) | |
8318 (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads)) | |
8319 (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)) | |
8320 (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)) | |
8321 (push (cons article mark) gnus-newsgroup-reads) | |
8322 ;; Possibly remove from cache, if that is used. | |
8323 (when gnus-use-cache | |
8324 (gnus-cache-enter-remove-article article)) | |
8325 ;; Allow the backend to change the mark. | |
8326 (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark)) | |
8327 ;; Check for auto-expiry. | |
8328 (when (and gnus-newsgroup-auto-expire | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8329 (memq mark gnus-auto-expirable-marks)) |
17493 | 8330 (setq mark gnus-expirable-mark) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8331 ;; Let the backend know about the mark change. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8332 (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark)) |
17493 | 8333 (push article gnus-newsgroup-expirable)) |
8334 ;; Set the mark in the buffer. | |
8335 (gnus-summary-update-mark mark 'unread) | |
8336 t)) | |
8337 | |
8338 (defun gnus-summary-mark-article-as-unread (mark) | |
8339 "Mark the current article quickly as unread with MARK." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8340 (let* ((article (gnus-summary-article-number)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8341 (old-mark (gnus-summary-article-mark article))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8342 ;; Allow the backend to change the mark. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8343 (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8344 (if (eq mark old-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8345 t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8346 (if (<= article 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8347 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8348 (gnus-error 1 "Can't mark negative article numbers") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8349 nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8350 (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8351 (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8352 (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8353 (setq gnus-newsgroup-reads (delq article gnus-newsgroup-reads)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8354 (cond ((= mark gnus-ticked-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8355 (push article gnus-newsgroup-marked)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8356 ((= mark gnus-dormant-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8357 (push article gnus-newsgroup-dormant)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8358 (t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8359 (push article gnus-newsgroup-unreads))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8360 (gnus-pull article gnus-newsgroup-reads) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8361 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8362 ;; See whether the article is to be put in the cache. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8363 (and gnus-use-cache |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8364 (vectorp (gnus-summary-article-header article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8365 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8366 (gnus-cache-possibly-enter-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8367 gnus-newsgroup-name article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8368 (= mark gnus-ticked-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8369 (= mark gnus-dormant-mark) (= mark gnus-unread-mark)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8370 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8371 ;; Fix the mark. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8372 (gnus-summary-update-mark mark 'unread) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8373 t)))) |
17493 | 8374 |
8375 (defun gnus-summary-mark-article (&optional article mark no-expire) | |
8376 "Mark ARTICLE with MARK. MARK can be any character. | |
8377 Four MARK strings are reserved: `? ' (unread), `?!' (ticked), | |
8378 `??' (dormant) and `?E' (expirable). | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8379 If MARK is nil, then the default character `?r' is used. |
17493 | 8380 If ARTICLE is nil, then the article on the current line will be |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8381 marked. |
48588 | 8382 If NO-EXPIRE, auto-expiry will be inhibited." |
17493 | 8383 ;; The mark might be a string. |
8384 (when (stringp mark) | |
8385 (setq mark (aref mark 0))) | |
8386 ;; If no mark is given, then we check auto-expiring. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8387 (when (null mark) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8388 (setq mark gnus-del-mark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8389 (when (and (not no-expire) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8390 gnus-newsgroup-auto-expire |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8391 (memq mark gnus-auto-expirable-marks)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8392 (setq mark gnus-expirable-mark)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8393 (let ((article (or article (gnus-summary-article-number))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8394 (old-mark (gnus-summary-article-mark article))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8395 ;; Allow the backend to change the mark. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8396 (setq mark (gnus-request-update-mark gnus-newsgroup-name article mark)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8397 (if (eq mark old-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8398 t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8399 (unless article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8400 (error "No article on current line")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8401 (if (not (if (or (= mark gnus-unread-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8402 (= mark gnus-ticked-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8403 (= mark gnus-dormant-mark)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8404 (gnus-mark-article-as-unread article mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8405 (gnus-mark-article-as-read article mark))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8406 t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8407 ;; See whether the article is to be put in the cache. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8408 (and gnus-use-cache |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8409 (not (= mark gnus-canceled-mark)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8410 (vectorp (gnus-summary-article-header article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8411 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8412 (gnus-cache-possibly-enter-article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8413 gnus-newsgroup-name article |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8414 (= mark gnus-ticked-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8415 (= mark gnus-dormant-mark) (= mark gnus-unread-mark)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8416 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8417 (when (gnus-summary-goto-subject article nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8418 (let ((buffer-read-only nil)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8419 (gnus-summary-show-thread) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8420 ;; Fix the mark. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8421 (gnus-summary-update-mark mark 'unread) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8422 t)))))) |
17493 | 8423 |
8424 (defun gnus-summary-update-secondary-mark (article) | |
8425 "Update the secondary (read, process, cache) mark." | |
8426 (gnus-summary-update-mark | |
8427 (cond ((memq article gnus-newsgroup-processable) | |
8428 gnus-process-mark) | |
8429 ((memq article gnus-newsgroup-cached) | |
8430 gnus-cached-mark) | |
8431 ((memq article gnus-newsgroup-replied) | |
8432 gnus-replied-mark) | |
8433 ((memq article gnus-newsgroup-saved) | |
8434 gnus-saved-mark) | |
8435 (t gnus-unread-mark)) | |
8436 'replied) | |
8437 (when (gnus-visual-p 'summary-highlight 'highlight) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8438 (gnus-run-hooks 'gnus-summary-update-hook)) |
17493 | 8439 t) |
8440 | |
8441 (defun gnus-summary-update-mark (mark type) | |
8442 (let ((forward (cdr (assq type gnus-summary-mark-positions))) | |
8443 (buffer-read-only nil)) | |
8444 (re-search-backward "[\n\r]" (gnus-point-at-bol) 'move-to-limit) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8445 (when forward |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8446 (when (looking-at "\r") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8447 (incf forward)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8448 (when (<= (+ forward (point)) (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8449 ;; Go to the right position on the line. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8450 (goto-char (+ forward (point))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8451 ;; Replace the old mark with the new mark. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8452 (subst-char-in-region (point) (1+ (point)) (char-after) mark) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8453 ;; Optionally update the marks by some user rule. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8454 (when (eq type 'unread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8455 (gnus-data-set-mark |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8456 (gnus-data-find (gnus-summary-article-number)) mark) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8457 (gnus-summary-update-line (eq mark gnus-unread-mark))))))) |
17493 | 8458 |
8459 (defun gnus-mark-article-as-read (article &optional mark) | |
8460 "Enter ARTICLE in the pertinent lists and remove it from others." | |
8461 ;; Make the article expirable. | |
8462 (let ((mark (or mark gnus-del-mark))) | |
8463 (if (= mark gnus-expirable-mark) | |
8464 (push article gnus-newsgroup-expirable) | |
8465 (setq gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable))) | |
8466 ;; Remove from unread and marked lists. | |
8467 (setq gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads)) | |
8468 (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)) | |
8469 (setq gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant)) | |
8470 (push (cons article mark) gnus-newsgroup-reads) | |
8471 ;; Possibly remove from cache, if that is used. | |
8472 (when gnus-use-cache | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8473 (gnus-cache-enter-remove-article article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8474 t)) |
17493 | 8475 |
8476 (defun gnus-mark-article-as-unread (article &optional mark) | |
8477 "Enter ARTICLE in the pertinent lists and remove it from others." | |
8478 (let ((mark (or mark gnus-ticked-mark))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8479 (if (<= article 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8480 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8481 (gnus-error 1 "Can't mark negative article numbers") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8482 nil) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8483 (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8484 gnus-newsgroup-dormant (delq article gnus-newsgroup-dormant) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8485 gnus-newsgroup-expirable (delq article gnus-newsgroup-expirable) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8486 gnus-newsgroup-unreads (delq article gnus-newsgroup-unreads)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8487 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8488 ;; Unsuppress duplicates? |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8489 (when gnus-suppress-duplicates |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8490 (gnus-dup-unsuppress-article article)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8491 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8492 (cond ((= mark gnus-ticked-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8493 (push article gnus-newsgroup-marked)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8494 ((= mark gnus-dormant-mark) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8495 (push article gnus-newsgroup-dormant)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8496 (t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8497 (push article gnus-newsgroup-unreads))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8498 (gnus-pull article gnus-newsgroup-reads) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8499 t))) |
17493 | 8500 |
8501 (defalias 'gnus-summary-mark-as-unread-forward | |
8502 'gnus-summary-tick-article-forward) | |
8503 (make-obsolete 'gnus-summary-mark-as-unread-forward | |
8504 'gnus-summary-tick-article-forward) | |
8505 (defun gnus-summary-tick-article-forward (n) | |
8506 "Tick N articles forwards. | |
8507 If N is negative, tick backwards instead. | |
8508 The difference between N and the number of articles ticked is returned." | |
8509 (interactive "p") | |
8510 (gnus-summary-mark-forward n gnus-ticked-mark)) | |
8511 | |
8512 (defalias 'gnus-summary-mark-as-unread-backward | |
8513 'gnus-summary-tick-article-backward) | |
8514 (make-obsolete 'gnus-summary-mark-as-unread-backward | |
8515 'gnus-summary-tick-article-backward) | |
8516 (defun gnus-summary-tick-article-backward (n) | |
8517 "Tick N articles backwards. | |
8518 The difference between N and the number of articles ticked is returned." | |
8519 (interactive "p") | |
8520 (gnus-summary-mark-forward (- n) gnus-ticked-mark)) | |
8521 | |
8522 (defalias 'gnus-summary-mark-as-unread 'gnus-summary-tick-article) | |
8523 (make-obsolete 'gnus-summary-mark-as-unread 'gnus-summary-tick-article) | |
8524 (defun gnus-summary-tick-article (&optional article clear-mark) | |
8525 "Mark current article as unread. | |
8526 Optional 1st argument ARTICLE specifies article number to be marked as unread. | |
8527 Optional 2nd argument CLEAR-MARK remove any kinds of mark." | |
8528 (interactive) | |
8529 (gnus-summary-mark-article article (if clear-mark gnus-unread-mark | |
8530 gnus-ticked-mark))) | |
8531 | |
8532 (defun gnus-summary-mark-as-read-forward (n) | |
8533 "Mark N articles as read forwards. | |
8534 If N is negative, mark backwards instead. | |
8535 The difference between N and the actual number of articles marked is | |
8536 returned." | |
8537 (interactive "p") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8538 (gnus-summary-mark-forward n gnus-del-mark gnus-inhibit-user-auto-expire)) |
17493 | 8539 |
8540 (defun gnus-summary-mark-as-read-backward (n) | |
8541 "Mark the N articles as read backwards. | |
8542 The difference between N and the actual number of articles marked is | |
8543 returned." | |
8544 (interactive "p") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8545 (gnus-summary-mark-forward |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8546 (- n) gnus-del-mark gnus-inhibit-user-auto-expire)) |
17493 | 8547 |
8548 (defun gnus-summary-mark-as-read (&optional article mark) | |
8549 "Mark current article as read. | |
8550 ARTICLE specifies the article to be marked as read. | |
8551 MARK specifies a string to be inserted at the beginning of the line." | |
8552 (gnus-summary-mark-article article mark)) | |
8553 | |
8554 (defun gnus-summary-clear-mark-forward (n) | |
8555 "Clear marks from N articles forward. | |
8556 If N is negative, clear backward instead. | |
8557 The difference between N and the number of marks cleared is returned." | |
8558 (interactive "p") | |
8559 (gnus-summary-mark-forward n gnus-unread-mark)) | |
8560 | |
8561 (defun gnus-summary-clear-mark-backward (n) | |
8562 "Clear marks from N articles backward. | |
8563 The difference between N and the number of marks cleared is returned." | |
8564 (interactive "p") | |
8565 (gnus-summary-mark-forward (- n) gnus-unread-mark)) | |
8566 | |
8567 (defun gnus-summary-mark-unread-as-read () | |
8568 "Intended to be used by `gnus-summary-mark-article-hook'." | |
8569 (when (memq gnus-current-article gnus-newsgroup-unreads) | |
8570 (gnus-summary-mark-article gnus-current-article gnus-read-mark))) | |
8571 | |
8572 (defun gnus-summary-mark-read-and-unread-as-read () | |
8573 "Intended to be used by `gnus-summary-mark-article-hook'." | |
8574 (let ((mark (gnus-summary-article-mark))) | |
8575 (when (or (gnus-unread-mark-p mark) | |
8576 (gnus-read-mark-p mark)) | |
8577 (gnus-summary-mark-article gnus-current-article gnus-read-mark)))) | |
8578 | |
8579 (defun gnus-summary-mark-region-as-read (point mark all) | |
8580 "Mark all unread articles between point and mark as read. | |
8581 If given a prefix, mark all articles between point and mark as read, | |
8582 even ticked and dormant ones." | |
8583 (interactive "r\nP") | |
8584 (save-excursion | |
8585 (let (article) | |
8586 (goto-char point) | |
8587 (beginning-of-line) | |
8588 (while (and | |
8589 (< (point) mark) | |
8590 (progn | |
8591 (when (or all | |
8592 (memq (setq article (gnus-summary-article-number)) | |
8593 gnus-newsgroup-unreads)) | |
8594 (gnus-summary-mark-article article gnus-del-mark)) | |
8595 t) | |
8596 (gnus-summary-find-next)))))) | |
8597 | |
8598 (defun gnus-summary-mark-below (score mark) | |
8599 "Mark articles with score less than SCORE with MARK." | |
8600 (interactive "P\ncMark: ") | |
8601 (setq score (if score | |
8602 (prefix-numeric-value score) | |
8603 (or gnus-summary-default-score 0))) | |
8604 (save-excursion | |
8605 (set-buffer gnus-summary-buffer) | |
8606 (goto-char (point-min)) | |
8607 (while | |
8608 (progn | |
8609 (and (< (gnus-summary-article-score) score) | |
8610 (gnus-summary-mark-article nil mark)) | |
8611 (gnus-summary-find-next))))) | |
8612 | |
8613 (defun gnus-summary-kill-below (&optional score) | |
8614 "Mark articles with score below SCORE as read." | |
8615 (interactive "P") | |
8616 (gnus-summary-mark-below score gnus-killed-mark)) | |
8617 | |
8618 (defun gnus-summary-clear-above (&optional score) | |
8619 "Clear all marks from articles with score above SCORE." | |
8620 (interactive "P") | |
8621 (gnus-summary-mark-above score gnus-unread-mark)) | |
8622 | |
8623 (defun gnus-summary-tick-above (&optional score) | |
8624 "Tick all articles with score above SCORE." | |
8625 (interactive "P") | |
8626 (gnus-summary-mark-above score gnus-ticked-mark)) | |
8627 | |
8628 (defun gnus-summary-mark-above (score mark) | |
8629 "Mark articles with score over SCORE with MARK." | |
8630 (interactive "P\ncMark: ") | |
8631 (setq score (if score | |
8632 (prefix-numeric-value score) | |
8633 (or gnus-summary-default-score 0))) | |
8634 (save-excursion | |
8635 (set-buffer gnus-summary-buffer) | |
8636 (goto-char (point-min)) | |
8637 (while (and (progn | |
8638 (when (> (gnus-summary-article-score) score) | |
8639 (gnus-summary-mark-article nil mark)) | |
8640 t) | |
8641 (gnus-summary-find-next))))) | |
8642 | |
8643 ;; Suggested by Daniel Quinlan <quinlan@best.com>. | |
8644 (defalias 'gnus-summary-show-all-expunged 'gnus-summary-limit-include-expunged) | |
8645 (defun gnus-summary-limit-include-expunged (&optional no-error) | |
8646 "Display all the hidden articles that were expunged for low scores." | |
8647 (interactive) | |
8648 (let ((buffer-read-only nil)) | |
8649 (let ((scored gnus-newsgroup-scored) | |
8650 headers h) | |
8651 (while scored | |
8652 (unless (gnus-summary-goto-subject (caar scored)) | |
8653 (and (setq h (gnus-summary-article-header (caar scored))) | |
8654 (< (cdar scored) gnus-summary-expunge-below) | |
8655 (push h headers))) | |
8656 (setq scored (cdr scored))) | |
8657 (if (not headers) | |
8658 (when (not no-error) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8659 (error "No expunged articles hidden")) |
17493 | 8660 (goto-char (point-min)) |
8661 (gnus-summary-prepare-unthreaded (nreverse headers)) | |
8662 (goto-char (point-min)) | |
8663 (gnus-summary-position-point) | |
8664 t)))) | |
8665 | |
8666 (defun gnus-summary-catchup (&optional all quietly to-here not-mark) | |
8667 "Mark all unread articles in this newsgroup as read. | |
8668 If prefix argument ALL is non-nil, ticked and dormant articles will | |
8669 also be marked as read. | |
8670 If QUIETLY is non-nil, no questions will be asked. | |
8671 If TO-HERE is non-nil, it should be a point in the buffer. All | |
8672 articles before this point will be marked as read. | |
8673 Note that this function will only catch up the unread article | |
8674 in the current summary buffer limitation. | |
8675 The number of articles marked as read is returned." | |
8676 (interactive "P") | |
8677 (prog1 | |
8678 (save-excursion | |
8679 (when (or quietly | |
8680 (not gnus-interactive-catchup) ;Without confirmation? | |
8681 gnus-expert-user | |
8682 (gnus-y-or-n-p | |
8683 (if all | |
8684 "Mark absolutely all articles as read? " | |
8685 "Mark all unread articles as read? "))) | |
8686 (if (and not-mark | |
8687 (not gnus-newsgroup-adaptive) | |
8688 (not gnus-newsgroup-auto-expire) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8689 (not gnus-suppress-duplicates) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8690 (or (not gnus-use-cache) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8691 (eq gnus-use-cache 'passive))) |
17493 | 8692 (progn |
8693 (when all | |
8694 (setq gnus-newsgroup-marked nil | |
8695 gnus-newsgroup-dormant nil)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8696 (setq gnus-newsgroup-unreads gnus-newsgroup-downloadable)) |
17493 | 8697 ;; We actually mark all articles as canceled, which we |
8698 ;; have to do when using auto-expiry or adaptive scoring. | |
8699 (gnus-summary-show-all-threads) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8700 (when (gnus-summary-first-subject (not all) t) |
17493 | 8701 (while (and |
8702 (if to-here (< (point) to-here) t) | |
8703 (gnus-summary-mark-article-as-read gnus-catchup-mark) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8704 (gnus-summary-find-next (not all) nil nil t)))) |
17493 | 8705 (gnus-set-mode-line 'summary)) |
8706 t)) | |
8707 (gnus-summary-position-point))) | |
8708 | |
8709 (defun gnus-summary-catchup-to-here (&optional all) | |
8710 "Mark all unticked articles before the current one as read. | |
8711 If ALL is non-nil, also mark ticked and dormant articles as read." | |
8712 (interactive "P") | |
8713 (save-excursion | |
8714 (gnus-save-hidden-threads | |
8715 (let ((beg (point))) | |
8716 ;; We check that there are unread articles. | |
8717 (when (or all (gnus-summary-find-prev)) | |
8718 (gnus-summary-catchup all t beg))))) | |
8719 (gnus-summary-position-point)) | |
8720 | |
8721 (defun gnus-summary-catchup-all (&optional quietly) | |
8722 "Mark all articles in this newsgroup as read." | |
8723 (interactive "P") | |
8724 (gnus-summary-catchup t quietly)) | |
8725 | |
8726 (defun gnus-summary-catchup-and-exit (&optional all quietly) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8727 "Mark all unread articles in this group as read, then exit. |
17493 | 8728 If prefix argument ALL is non-nil, all articles are marked as read." |
8729 (interactive "P") | |
8730 (when (gnus-summary-catchup all quietly nil 'fast) | |
8731 ;; Select next newsgroup or exit. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8732 (if (and (not (gnus-group-quit-config gnus-newsgroup-name)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8733 (eq gnus-auto-select-next 'quietly)) |
17493 | 8734 (gnus-summary-next-group nil) |
8735 (gnus-summary-exit)))) | |
8736 | |
8737 (defun gnus-summary-catchup-all-and-exit (&optional quietly) | |
8738 "Mark all articles in this newsgroup as read, and then exit." | |
8739 (interactive "P") | |
8740 (gnus-summary-catchup-and-exit t quietly)) | |
8741 | |
8742 (defun gnus-summary-catchup-and-goto-next-group (&optional all) | |
8743 "Mark all articles in this group as read and select the next group. | |
8744 If given a prefix, mark all articles, unread as well as ticked, as | |
8745 read." | |
8746 (interactive "P") | |
8747 (save-excursion | |
8748 (gnus-summary-catchup all)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8749 (gnus-summary-next-group)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8750 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8751 ;;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8752 ;;; with article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8753 ;;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8754 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8755 (defmacro gnus-with-article (article &rest forms) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8756 "Select ARTICLE and perform FORMS in the original article buffer. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8757 Then replace the article with the result." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8758 `(progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8759 ;; We don't want the article to be marked as read. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8760 (let (gnus-mark-article-hook) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8761 (gnus-summary-select-article t t nil ,article)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8762 (set-buffer gnus-original-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8763 ,@forms |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8764 (if (not (gnus-check-backend-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8765 'request-replace-article (car gnus-article-current))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8766 (gnus-message 5 "Read-only group; not replacing") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8767 (unless (gnus-request-replace-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8768 ,article (car gnus-article-current) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8769 (current-buffer) t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8770 (error "Couldn't replace article"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8771 ;; The cache and backlog have to be flushed somewhat. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8772 (when gnus-keep-backlog |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8773 (gnus-backlog-remove-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8774 (car gnus-article-current) (cdr gnus-article-current))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8775 (when gnus-use-cache |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8776 (gnus-cache-update-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8777 (car gnus-article-current) (cdr gnus-article-current))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8778 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8779 (put 'gnus-with-article 'lisp-indent-function 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8780 (put 'gnus-with-article 'edebug-form-spec '(form body)) |
17493 | 8781 |
8782 ;; Thread-based commands. | |
8783 | |
8784 (defun gnus-summary-articles-in-thread (&optional article) | |
8785 "Return a list of all articles in the current thread. | |
8786 If ARTICLE is non-nil, return all articles in the thread that starts | |
8787 with that article." | |
8788 (let* ((article (or article (gnus-summary-article-number))) | |
8789 (data (gnus-data-find-list article)) | |
8790 (top-level (gnus-data-level (car data))) | |
8791 (top-subject | |
8792 (cond ((null gnus-thread-operation-ignore-subject) | |
8793 (gnus-simplify-subject-re | |
8794 (mail-header-subject (gnus-data-header (car data))))) | |
8795 ((eq gnus-thread-operation-ignore-subject 'fuzzy) | |
8796 (gnus-simplify-subject-fuzzy | |
8797 (mail-header-subject (gnus-data-header (car data))))) | |
8798 (t nil))) | |
8799 (end-point (save-excursion | |
8800 (if (gnus-summary-go-to-next-thread) | |
8801 (point) (point-max)))) | |
8802 articles) | |
8803 (while (and data | |
8804 (< (gnus-data-pos (car data)) end-point)) | |
8805 (when (or (not top-subject) | |
8806 (string= top-subject | |
8807 (if (eq gnus-thread-operation-ignore-subject 'fuzzy) | |
8808 (gnus-simplify-subject-fuzzy | |
8809 (mail-header-subject | |
8810 (gnus-data-header (car data)))) | |
8811 (gnus-simplify-subject-re | |
8812 (mail-header-subject | |
8813 (gnus-data-header (car data))))))) | |
8814 (push (gnus-data-number (car data)) articles)) | |
8815 (unless (and (setq data (cdr data)) | |
8816 (> (gnus-data-level (car data)) top-level)) | |
8817 (setq data nil))) | |
8818 ;; Return the list of articles. | |
8819 (nreverse articles))) | |
8820 | |
8821 (defun gnus-summary-rethread-current () | |
8822 "Rethread the thread the current article is part of." | |
8823 (interactive) | |
8824 (let* ((gnus-show-threads t) | |
8825 (article (gnus-summary-article-number)) | |
8826 (id (mail-header-id (gnus-summary-article-header))) | |
8827 (gnus-newsgroup-threads (list (gnus-id-to-thread (gnus-root-id id))))) | |
8828 (unless id | |
8829 (error "No article on the current line")) | |
8830 (gnus-rebuild-thread id) | |
8831 (gnus-summary-goto-subject article))) | |
8832 | |
8833 (defun gnus-summary-reparent-thread () | |
8834 "Make the current article child of the marked (or previous) article. | |
8835 | |
8836 Note that the re-threading will only work if `gnus-thread-ignore-subject' | |
8837 is non-nil or the Subject: of both articles are the same." | |
8838 (interactive) | |
8839 (unless (not (gnus-group-read-only-p)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8840 (error "The current newsgroup does not support article editing")) |
17493 | 8841 (unless (<= (length gnus-newsgroup-processable) 1) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8842 (error "No more than one article may be marked")) |
17493 | 8843 (save-window-excursion |
8844 (let ((gnus-article-buffer " *reparent*") | |
8845 (current-article (gnus-summary-article-number)) | |
8846 ;; First grab the marked article, otherwise one line up. | |
8847 (parent-article (if (not (null gnus-newsgroup-processable)) | |
8848 (car gnus-newsgroup-processable) | |
8849 (save-excursion | |
8850 (if (eq (forward-line -1) 0) | |
8851 (gnus-summary-article-number) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8852 (error "Beginning of summary buffer")))))) |
17493 | 8853 (unless (not (eq current-article parent-article)) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8854 (error "An article may not be self-referential")) |
17493 | 8855 (let ((message-id (mail-header-id |
8856 (gnus-summary-article-header parent-article)))) | |
8857 (unless (and message-id (not (equal message-id ""))) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8858 (error "No message-id in desired parent")) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8859 (gnus-with-article current-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8860 (save-restriction |
17493 | 8861 (goto-char (point-min)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8862 (message-narrow-to-head) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8863 (if (re-search-forward "^References: " nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8864 (progn |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8865 (re-search-forward "^[^ \t]" nil t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8866 (forward-line -1) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8867 (end-of-line) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8868 (insert " " message-id)) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8869 (insert "References: " message-id "\n")))) |
17493 | 8870 (set-buffer gnus-summary-buffer) |
8871 (gnus-summary-unmark-all-processable) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
8872 (gnus-summary-update-article current-article) |
17493 | 8873 (gnus-summary-rethread-current) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
8874 (gnus-message 3 "Article %d is now the child of article %d" |
17493 | 8875 current-article parent-article))))) |
8876 | |
8877 (defun gnus-summary-toggle-threads (&optional arg) | |
8878 "Toggle showing conversation threads. | |
8879 If ARG is positive number, turn showing conversation threads on." | |
8880 (interactive "P") | |
8881 (let ((current (or (gnus-summary-article-number) gnus-newsgroup-end))) | |
8882 (setq gnus-show-threads | |
8883 (if (null arg) (not gnus-show-threads) | |
8884 (> (prefix-numeric-value arg) 0))) | |
8885 (gnus-summary-prepare) | |
8886 (gnus-summary-goto-subject current) | |
8887 (gnus-message 6 "Threading is now %s" (if gnus-show-threads "on" "off")) | |
8888 (gnus-summary-position-point))) | |
8889 | |
8890 (defun gnus-summary-show-all-threads () | |
8891 "Show all threads." | |
8892 (interactive) | |
8893 (save-excursion | |
8894 (let ((buffer-read-only nil)) | |
8895 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t))) | |
8896 (gnus-summary-position-point)) | |
8897 | |
8898 (defun gnus-summary-show-thread () | |
8899 "Show thread subtrees. | |
8900 Returns nil if no thread was there to be shown." | |
8901 (interactive) | |
8902 (let ((buffer-read-only nil) | |
8903 (orig (point)) | |
8904 ;; first goto end then to beg, to have point at beg after let | |
8905 (end (progn (end-of-line) (point))) | |
8906 (beg (progn (beginning-of-line) (point)))) | |
8907 (prog1 | |
8908 ;; Any hidden lines here? | |
8909 (search-forward "\r" end t) | |
8910 (subst-char-in-region beg end ?\^M ?\n t) | |
8911 (goto-char orig) | |
8912 (gnus-summary-position-point)))) | |
8913 | |
8914 (defun gnus-summary-hide-all-threads () | |
8915 "Hide all thread subtrees." | |
8916 (interactive) | |
8917 (save-excursion | |
8918 (goto-char (point-min)) | |
8919 (gnus-summary-hide-thread) | |
8920 (while (zerop (gnus-summary-next-thread 1 t)) | |
8921 (gnus-summary-hide-thread))) | |
8922 (gnus-summary-position-point)) | |
8923 | |
8924 (defun gnus-summary-hide-thread () | |
8925 "Hide thread subtrees. | |
8926 Returns nil if no threads were there to be hidden." | |
8927 (interactive) | |
8928 (let ((buffer-read-only nil) | |
8929 (start (point)) | |
8930 (article (gnus-summary-article-number))) | |
8931 (goto-char start) | |
8932 ;; Go forward until either the buffer ends or the subthread | |
8933 ;; ends. | |
8934 (when (and (not (eobp)) | |
8935 (or (zerop (gnus-summary-next-thread 1 t)) | |
8936 (goto-char (point-max)))) | |
8937 (prog1 | |
8938 (if (and (> (point) start) | |
8939 (search-backward "\n" start t)) | |
8940 (progn | |
8941 (subst-char-in-region start (point) ?\n ?\^M) | |
8942 (gnus-summary-goto-subject article)) | |
8943 (goto-char start) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
8944 nil))))) |
17493 | 8945 |
8946 (defun gnus-summary-go-to-next-thread (&optional previous) | |
8947 "Go to the same level (or less) next thread. | |
8948 If PREVIOUS is non-nil, go to previous thread instead. | |
8949 Return the article number moved to, or nil if moving was impossible." | |
8950 (let ((level (gnus-summary-thread-level)) | |
8951 (way (if previous -1 1)) | |
8952 (beg (point))) | |
8953 (forward-line way) | |
8954 (while (and (not (eobp)) | |
8955 (< level (gnus-summary-thread-level))) | |
8956 (forward-line way)) | |
8957 (if (eobp) | |
8958 (progn | |
8959 (goto-char beg) | |
8960 nil) | |
8961 (setq beg (point)) | |
8962 (prog1 | |
8963 (gnus-summary-article-number) | |
8964 (goto-char beg))))) | |
8965 | |
8966 (defun gnus-summary-next-thread (n &optional silent) | |
8967 "Go to the same level next N'th thread. | |
8968 If N is negative, search backward instead. | |
8969 Returns the difference between N and the number of skips actually | |
8970 done. | |
8971 | |
8972 If SILENT, don't output messages." | |
8973 (interactive "p") | |
8974 (let ((backward (< n 0)) | |
8975 (n (abs n))) | |
8976 (while (and (> n 0) | |
8977 (gnus-summary-go-to-next-thread backward)) | |
8978 (decf n)) | |
8979 (unless silent | |
8980 (gnus-summary-position-point)) | |
8981 (when (and (not silent) (/= 0 n)) | |
8982 (gnus-message 7 "No more threads")) | |
8983 n)) | |
8984 | |
8985 (defun gnus-summary-prev-thread (n) | |
8986 "Go to the same level previous N'th thread. | |
8987 Returns the difference between N and the number of skips actually | |
8988 done." | |
8989 (interactive "p") | |
8990 (gnus-summary-next-thread (- n))) | |
8991 | |
8992 (defun gnus-summary-go-down-thread () | |
8993 "Go down one level in the current thread." | |
8994 (let ((children (gnus-summary-article-children))) | |
8995 (when children | |
8996 (gnus-summary-goto-subject (car children))))) | |
8997 | |
8998 (defun gnus-summary-go-up-thread () | |
8999 "Go up one level in the current thread." | |
9000 (let ((parent (gnus-summary-article-parent))) | |
9001 (when parent | |
9002 (gnus-summary-goto-subject parent)))) | |
9003 | |
9004 (defun gnus-summary-down-thread (n) | |
9005 "Go down thread N steps. | |
9006 If N is negative, go up instead. | |
9007 Returns the difference between N and how many steps down that were | |
9008 taken." | |
9009 (interactive "p") | |
9010 (let ((up (< n 0)) | |
9011 (n (abs n))) | |
9012 (while (and (> n 0) | |
9013 (if up (gnus-summary-go-up-thread) | |
9014 (gnus-summary-go-down-thread))) | |
9015 (setq n (1- n))) | |
9016 (gnus-summary-position-point) | |
9017 (when (/= 0 n) | |
9018 (gnus-message 7 "Can't go further")) | |
9019 n)) | |
9020 | |
9021 (defun gnus-summary-up-thread (n) | |
9022 "Go up thread N steps. | |
9023 If N is negative, go up instead. | |
9024 Returns the difference between N and how many steps down that were | |
9025 taken." | |
9026 (interactive "p") | |
9027 (gnus-summary-down-thread (- n))) | |
9028 | |
9029 (defun gnus-summary-top-thread () | |
9030 "Go to the top of the thread." | |
9031 (interactive) | |
9032 (while (gnus-summary-go-up-thread)) | |
9033 (gnus-summary-article-number)) | |
9034 | |
9035 (defun gnus-summary-kill-thread (&optional unmark) | |
9036 "Mark articles under current thread as read. | |
9037 If the prefix argument is positive, remove any kinds of marks. | |
9038 If the prefix argument is negative, tick articles instead." | |
9039 (interactive "P") | |
9040 (when unmark | |
9041 (setq unmark (prefix-numeric-value unmark))) | |
9042 (let ((articles (gnus-summary-articles-in-thread))) | |
9043 (save-excursion | |
9044 ;; Expand the thread. | |
9045 (gnus-summary-show-thread) | |
9046 ;; Mark all the articles. | |
9047 (while articles | |
9048 (gnus-summary-goto-subject (car articles)) | |
9049 (cond ((null unmark) | |
9050 (gnus-summary-mark-article-as-read gnus-killed-mark)) | |
9051 ((> unmark 0) | |
9052 (gnus-summary-mark-article-as-unread gnus-unread-mark)) | |
9053 (t | |
9054 (gnus-summary-mark-article-as-unread gnus-ticked-mark))) | |
9055 (setq articles (cdr articles)))) | |
9056 ;; Hide killed subtrees. | |
9057 (and (null unmark) | |
9058 gnus-thread-hide-killed | |
9059 (gnus-summary-hide-thread)) | |
9060 ;; If marked as read, go to next unread subject. | |
9061 (when (null unmark) | |
9062 ;; Go to next unread subject. | |
9063 (gnus-summary-next-subject 1 t))) | |
9064 (gnus-set-mode-line 'summary)) | |
9065 | |
9066 ;; Summary sorting commands | |
9067 | |
9068 (defun gnus-summary-sort-by-number (&optional reverse) | |
9069 "Sort the summary buffer by article number. | |
9070 Argument REVERSE means reverse order." | |
9071 (interactive "P") | |
9072 (gnus-summary-sort 'number reverse)) | |
9073 | |
9074 (defun gnus-summary-sort-by-author (&optional reverse) | |
9075 "Sort the summary buffer by author name alphabetically. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9076 If `case-fold-search' is non-nil, case of letters is ignored. |
17493 | 9077 Argument REVERSE means reverse order." |
9078 (interactive "P") | |
9079 (gnus-summary-sort 'author reverse)) | |
9080 | |
9081 (defun gnus-summary-sort-by-subject (&optional reverse) | |
9082 "Sort the summary buffer by subject alphabetically. `Re:'s are ignored. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9083 If `case-fold-search' is non-nil, case of letters is ignored. |
17493 | 9084 Argument REVERSE means reverse order." |
9085 (interactive "P") | |
9086 (gnus-summary-sort 'subject reverse)) | |
9087 | |
9088 (defun gnus-summary-sort-by-date (&optional reverse) | |
9089 "Sort the summary buffer by date. | |
9090 Argument REVERSE means reverse order." | |
9091 (interactive "P") | |
9092 (gnus-summary-sort 'date reverse)) | |
9093 | |
9094 (defun gnus-summary-sort-by-score (&optional reverse) | |
9095 "Sort the summary buffer by score. | |
9096 Argument REVERSE means reverse order." | |
9097 (interactive "P") | |
9098 (gnus-summary-sort 'score reverse)) | |
9099 | |
9100 (defun gnus-summary-sort-by-lines (&optional reverse) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9101 "Sort the summary buffer by the number of lines. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9102 Argument REVERSE means reverse order." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9103 (interactive "P") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9104 (gnus-summary-sort 'lines reverse)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9105 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9106 (defun gnus-summary-sort-by-chars (&optional reverse) |
17493 | 9107 "Sort the summary buffer by article length. |
9108 Argument REVERSE means reverse order." | |
9109 (interactive "P") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9110 (gnus-summary-sort 'chars reverse)) |
17493 | 9111 |
9112 (defun gnus-summary-sort (predicate reverse) | |
9113 "Sort summary buffer by PREDICATE. REVERSE means reverse order." | |
9114 (let* ((thread (intern (format "gnus-thread-sort-by-%s" predicate))) | |
9115 (article (intern (format "gnus-article-sort-by-%s" predicate))) | |
9116 (gnus-thread-sort-functions | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9117 (if (not reverse) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9118 thread |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9119 `(lambda (t1 t2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9120 (,thread t2 t1)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9121 (gnus-sort-gathered-threads-function |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9122 gnus-thread-sort-functions) |
17493 | 9123 (gnus-article-sort-functions |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9124 (if (not reverse) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9125 article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9126 `(lambda (t1 t2) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9127 (,article t2 t1)))) |
17493 | 9128 (buffer-read-only) |
9129 (gnus-summary-prepare-hook nil)) | |
9130 ;; We do the sorting by regenerating the threads. | |
9131 (gnus-summary-prepare) | |
9132 ;; Hide subthreads if needed. | |
9133 (when (and gnus-show-threads gnus-thread-hide-subtree) | |
9134 (gnus-summary-hide-all-threads)))) | |
9135 | |
9136 ;; Summary saving commands. | |
9137 | |
9138 (defun gnus-summary-save-article (&optional n not-saved) | |
9139 "Save the current article using the default saver function. | |
9140 If N is a positive number, save the N next articles. | |
9141 If N is a negative number, save the N previous articles. | |
9142 If N is nil and any articles have been marked with the process mark, | |
9143 save those articles instead. | |
9144 The variable `gnus-default-article-saver' specifies the saver function." | |
9145 (interactive "P") | |
9146 (let* ((articles (gnus-summary-work-articles n)) | |
9147 (save-buffer (save-excursion | |
9148 (nnheader-set-temp-buffer " *Gnus Save*"))) | |
9149 (num (length articles)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9150 header file) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9151 (dolist (article articles) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9152 (setq header (gnus-summary-article-header article)) |
17493 | 9153 (if (not (vectorp header)) |
9154 ;; This is a pseudo-article. | |
9155 (if (assq 'name header) | |
9156 (gnus-copy-file (cdr (assq 'name header))) | |
9157 (gnus-message 1 "Article %d is unsaveable" article)) | |
9158 ;; This is a real article. | |
9159 (save-window-excursion | |
41829
b4833df45a4c
2001-12-05 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
41630
diff
changeset
|
9160 (let ((gnus-display-mime-function nil) |
b4833df45a4c
2001-12-05 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
41630
diff
changeset
|
9161 (gnus-article-prepare-hook nil)) |
b4833df45a4c
2001-12-05 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
41630
diff
changeset
|
9162 (gnus-summary-select-article t nil nil article))) |
17493 | 9163 (save-excursion |
9164 (set-buffer save-buffer) | |
9165 (erase-buffer) | |
9166 (insert-buffer-substring gnus-original-article-buffer)) | |
9167 (setq file (gnus-article-save save-buffer file num)) | |
9168 (gnus-summary-remove-process-mark article) | |
9169 (unless not-saved | |
9170 (gnus-summary-set-saved-mark article)))) | |
9171 (gnus-kill-buffer save-buffer) | |
9172 (gnus-summary-position-point) | |
9173 (gnus-set-mode-line 'summary) | |
9174 n)) | |
9175 | |
9176 (defun gnus-summary-pipe-output (&optional arg) | |
9177 "Pipe the current article to a subprocess. | |
9178 If N is a positive number, pipe the N next articles. | |
9179 If N is a negative number, pipe the N previous articles. | |
9180 If N is nil and any articles have been marked with the process mark, | |
9181 pipe those articles instead." | |
9182 (interactive "P") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34414
diff
changeset
|
9183 (require 'gnus-art) |
17493 | 9184 (let ((gnus-default-article-saver 'gnus-summary-save-in-pipe)) |
9185 (gnus-summary-save-article arg t)) | |
9186 (gnus-configure-windows 'pipe)) | |
9187 | |
9188 (defun gnus-summary-save-article-mail (&optional arg) | |
9189 "Append the current article to an mail file. | |
9190 If N is a positive number, save the N next articles. | |
9191 If N is a negative number, save the N previous articles. | |
9192 If N is nil and any articles have been marked with the process mark, | |
9193 save those articles instead." | |
9194 (interactive "P") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34414
diff
changeset
|
9195 (require 'gnus-art) |
17493 | 9196 (let ((gnus-default-article-saver 'gnus-summary-save-in-mail)) |
9197 (gnus-summary-save-article arg))) | |
9198 | |
9199 (defun gnus-summary-save-article-rmail (&optional arg) | |
9200 "Append the current article to an rmail file. | |
9201 If N is a positive number, save the N next articles. | |
9202 If N is a negative number, save the N previous articles. | |
9203 If N is nil and any articles have been marked with the process mark, | |
9204 save those articles instead." | |
9205 (interactive "P") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34414
diff
changeset
|
9206 (require 'gnus-art) |
17493 | 9207 (let ((gnus-default-article-saver 'gnus-summary-save-in-rmail)) |
9208 (gnus-summary-save-article arg))) | |
9209 | |
9210 (defun gnus-summary-save-article-file (&optional arg) | |
9211 "Append the current article to a file. | |
9212 If N is a positive number, save the N next articles. | |
9213 If N is a negative number, save the N previous articles. | |
9214 If N is nil and any articles have been marked with the process mark, | |
9215 save those articles instead." | |
9216 (interactive "P") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34414
diff
changeset
|
9217 (require 'gnus-art) |
17493 | 9218 (let ((gnus-default-article-saver 'gnus-summary-save-in-file)) |
9219 (gnus-summary-save-article arg))) | |
9220 | |
9221 (defun gnus-summary-write-article-file (&optional arg) | |
9222 "Write the current article to a file, deleting the previous file. | |
9223 If N is a positive number, save the N next articles. | |
9224 If N is a negative number, save the N previous articles. | |
9225 If N is nil and any articles have been marked with the process mark, | |
9226 save those articles instead." | |
9227 (interactive "P") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34414
diff
changeset
|
9228 (require 'gnus-art) |
17493 | 9229 (let ((gnus-default-article-saver 'gnus-summary-write-to-file)) |
9230 (gnus-summary-save-article arg))) | |
9231 | |
9232 (defun gnus-summary-save-article-body-file (&optional arg) | |
9233 "Append the current article body to a file. | |
9234 If N is a positive number, save the N next articles. | |
9235 If N is a negative number, save the N previous articles. | |
9236 If N is nil and any articles have been marked with the process mark, | |
9237 save those articles instead." | |
9238 (interactive "P") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34414
diff
changeset
|
9239 (require 'gnus-art) |
17493 | 9240 (let ((gnus-default-article-saver 'gnus-summary-save-body-in-file)) |
9241 (gnus-summary-save-article arg))) | |
9242 | |
9243 (defun gnus-summary-pipe-message (program) | |
9244 "Pipe the current article through PROGRAM." | |
9245 (interactive "sProgram: ") | |
9246 (gnus-summary-select-article) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9247 (let ((mail-header-separator "")) |
17493 | 9248 (gnus-eval-in-buffer-window gnus-article-buffer |
9249 (save-restriction | |
9250 (widen) | |
9251 (let ((start (window-start)) | |
9252 buffer-read-only) | |
9253 (message-pipe-buffer-body program) | |
9254 (set-window-start (get-buffer-window (current-buffer)) start)))))) | |
9255 | |
9256 (defun gnus-get-split-value (methods) | |
9257 "Return a value based on the split METHODS." | |
9258 (let (split-name method result match) | |
9259 (when methods | |
9260 (save-excursion | |
9261 (set-buffer gnus-original-article-buffer) | |
9262 (save-restriction | |
9263 (nnheader-narrow-to-headers) | |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
9264 (while (and methods (not split-name)) |
17493 | 9265 (goto-char (point-min)) |
9266 (setq method (pop methods)) | |
9267 (setq match (car method)) | |
9268 (when (cond | |
9269 ((stringp match) | |
9270 ;; Regular expression. | |
9271 (ignore-errors | |
9272 (re-search-forward match nil t))) | |
9273 ((gnus-functionp match) | |
9274 ;; Function. | |
9275 (save-restriction | |
9276 (widen) | |
9277 (setq result (funcall match gnus-newsgroup-name)))) | |
9278 ((consp match) | |
9279 ;; Form. | |
9280 (save-restriction | |
9281 (widen) | |
9282 (setq result (eval match))))) | |
32975
5155c0078eb9
2000-10-27 Kai Gro?ohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
Dave Love <fx@gnu.org>
parents:
31785
diff
changeset
|
9283 (setq split-name (cdr method)) |
17493 | 9284 (cond ((stringp result) |
9285 (push (expand-file-name | |
9286 result gnus-article-save-directory) | |
9287 split-name)) | |
9288 ((consp result) | |
9289 (setq split-name (append result split-name))))))))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9290 (nreverse split-name))) |
17493 | 9291 |
9292 (defun gnus-valid-move-group-p (group) | |
9293 (and (boundp group) | |
9294 (symbol-name group) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9295 (symbol-value group) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9296 (gnus-get-function (gnus-find-method-for-group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9297 (symbol-name group)) 'request-accept-article t))) |
17493 | 9298 |
9299 (defun gnus-read-move-group-name (prompt default articles prefix) | |
9300 "Read a group name." | |
9301 (let* ((split-name (gnus-get-split-value gnus-move-split-methods)) | |
9302 (minibuffer-confirm-incomplete nil) ; XEmacs | |
9303 (prom | |
9304 (format "%s %s to:" | |
9305 prompt | |
9306 (if (> (length articles) 1) | |
9307 (format "these %d articles" (length articles)) | |
9308 "this article"))) | |
9309 (to-newsgroup | |
9310 (cond | |
9311 ((null split-name) | |
9312 (gnus-completing-read default prom | |
9313 gnus-active-hashtb | |
9314 'gnus-valid-move-group-p | |
9315 nil prefix | |
9316 'gnus-group-history)) | |
9317 ((= 1 (length split-name)) | |
9318 (gnus-completing-read (car split-name) prom | |
9319 gnus-active-hashtb | |
9320 'gnus-valid-move-group-p | |
9321 nil nil | |
9322 'gnus-group-history)) | |
9323 (t | |
9324 (gnus-completing-read nil prom | |
9325 (mapcar (lambda (el) (list el)) | |
9326 (nreverse split-name)) | |
9327 nil nil nil | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9328 'gnus-group-history)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9329 (to-method (gnus-server-to-method (gnus-group-method to-newsgroup)))) |
17493 | 9330 (when to-newsgroup |
9331 (if (or (string= to-newsgroup "") | |
9332 (string= to-newsgroup prefix)) | |
9333 (setq to-newsgroup default)) | |
9334 (unless to-newsgroup | |
9335 (error "No group name entered")) | |
9336 (or (gnus-active to-newsgroup) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9337 (gnus-activate-group to-newsgroup nil nil to-method) |
17493 | 9338 (if (gnus-y-or-n-p (format "No such group: %s. Create it? " |
9339 to-newsgroup)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9340 (or (and (gnus-request-create-group to-newsgroup to-method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9341 (gnus-activate-group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9342 to-newsgroup nil nil to-method) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9343 (gnus-subscribe-group to-newsgroup)) |
17493 | 9344 (error "Couldn't create group %s" to-newsgroup))) |
9345 (error "No such group: %s" to-newsgroup))) | |
9346 to-newsgroup)) | |
9347 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9348 (defun gnus-summary-save-parts (type dir n &optional reverse) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9349 "Save parts matching TYPE to DIR. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9350 If REVERSE, save parts that do not match TYPE." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9351 (interactive |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
9352 (list (read-string "Save parts of type: " |
31785 | 9353 (or (car gnus-summary-save-parts-type-history) |
9354 gnus-summary-save-parts-default-mime) | |
9355 'gnus-summary-save-parts-type-history) | |
9356 (setq gnus-summary-save-parts-last-directory | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
9357 (read-file-name "Save to directory: " |
31785 | 9358 gnus-summary-save-parts-last-directory |
9359 nil t)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9360 current-prefix-arg)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9361 (gnus-summary-iterate n |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9362 (let ((gnus-display-mime-function nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9363 (gnus-inhibit-treatment t)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9364 (gnus-summary-select-article)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9365 (save-excursion |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9366 (set-buffer gnus-article-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9367 (let ((handles (or gnus-article-mime-handles |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9368 (mm-dissect-buffer) (mm-uu-dissect)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9369 (when handles |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9370 (gnus-summary-save-parts-1 type dir handles reverse) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9371 (unless gnus-article-mime-handles ;; Don't destroy this case. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9372 (mm-destroy-parts handles))))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9373 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9374 (defun gnus-summary-save-parts-1 (type dir handle reverse) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9375 (if (stringp (car handle)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9376 (mapcar (lambda (h) (gnus-summary-save-parts-1 type dir h reverse)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9377 (cdr handle)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9378 (when (if reverse |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9379 (not (string-match type (mm-handle-media-type handle))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9380 (string-match type (mm-handle-media-type handle))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9381 (let ((file (expand-file-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9382 (file-name-nondirectory |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9383 (or |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9384 (mail-content-type-get |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9385 (mm-handle-disposition handle) 'filename) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9386 (concat gnus-newsgroup-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9387 "." (number-to-string |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9388 (cdr gnus-article-current))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9389 dir))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9390 (unless (file-exists-p file) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9391 (mm-save-part-to-file handle file)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9392 |
17493 | 9393 ;; Summary extract commands |
9394 | |
9395 (defun gnus-summary-insert-pseudos (pslist &optional not-view) | |
9396 (let ((buffer-read-only nil) | |
9397 (article (gnus-summary-article-number)) | |
9398 after-article b e) | |
9399 (unless (gnus-summary-goto-subject article) | |
9400 (error "No such article: %d" article)) | |
9401 (gnus-summary-position-point) | |
9402 ;; If all commands are to be bunched up on one line, we collect | |
9403 ;; them here. | |
9404 (unless gnus-view-pseudos-separately | |
9405 (let ((ps (setq pslist (sort pslist 'gnus-pseudos<))) | |
9406 files action) | |
9407 (while ps | |
9408 (setq action (cdr (assq 'action (car ps)))) | |
9409 (setq files (list (cdr (assq 'name (car ps))))) | |
9410 (while (and ps (cdr ps) | |
9411 (string= (or action "1") | |
9412 (or (cdr (assq 'action (cadr ps))) "2"))) | |
9413 (push (cdr (assq 'name (cadr ps))) files) | |
9414 (setcdr ps (cddr ps))) | |
9415 (when files | |
9416 (when (not (string-match "%s" action)) | |
9417 (push " " files)) | |
9418 (push " " files) | |
9419 (when (assq 'execute (car ps)) | |
9420 (setcdr (assq 'execute (car ps)) | |
9421 (funcall (if (string-match "%s" action) | |
9422 'format 'concat) | |
9423 action | |
9424 (mapconcat | |
9425 (lambda (f) | |
9426 (if (equal f " ") | |
9427 f | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9428 (mm-quote-arg f))) |
17493 | 9429 files " "))))) |
9430 (setq ps (cdr ps))))) | |
9431 (if (and gnus-view-pseudos (not not-view)) | |
9432 (while pslist | |
9433 (when (assq 'execute (car pslist)) | |
9434 (gnus-execute-command (cdr (assq 'execute (car pslist))) | |
9435 (eq gnus-view-pseudos 'not-confirm))) | |
9436 (setq pslist (cdr pslist))) | |
9437 (save-excursion | |
9438 (while pslist | |
9439 (setq after-article (or (cdr (assq 'article (car pslist))) | |
9440 (gnus-summary-article-number))) | |
9441 (gnus-summary-goto-subject after-article) | |
9442 (forward-line 1) | |
9443 (setq b (point)) | |
9444 (insert " " (file-name-nondirectory | |
9445 (cdr (assq 'name (car pslist)))) | |
9446 ": " (or (cdr (assq 'execute (car pslist))) "") "\n") | |
9447 (setq e (point)) | |
9448 (forward-line -1) ; back to `b' | |
9449 (gnus-add-text-properties | |
9450 b (1- e) (list 'gnus-number gnus-reffed-article-number | |
9451 gnus-mouse-face-prop gnus-mouse-face)) | |
9452 (gnus-data-enter | |
9453 after-article gnus-reffed-article-number | |
9454 gnus-unread-mark b (car pslist) 0 (- e b)) | |
9455 (push gnus-reffed-article-number gnus-newsgroup-unreads) | |
9456 (setq gnus-reffed-article-number (1- gnus-reffed-article-number)) | |
9457 (setq pslist (cdr pslist))))))) | |
9458 | |
9459 (defun gnus-pseudos< (p1 p2) | |
9460 (let ((c1 (cdr (assq 'action p1))) | |
9461 (c2 (cdr (assq 'action p2)))) | |
9462 (and c1 c2 (string< c1 c2)))) | |
9463 | |
9464 (defun gnus-request-pseudo-article (props) | |
9465 (cond ((assq 'execute props) | |
9466 (gnus-execute-command (cdr (assq 'execute props))))) | |
9467 (let ((gnus-current-article (gnus-summary-article-number))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9468 (gnus-run-hooks 'gnus-mark-article-hook))) |
17493 | 9469 |
9470 (defun gnus-execute-command (command &optional automatic) | |
9471 (save-excursion | |
9472 (gnus-article-setup-buffer) | |
9473 (set-buffer gnus-article-buffer) | |
9474 (setq buffer-read-only nil) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
9475 (let ((command (if automatic command |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
9476 (read-string "Command: " (cons command 0))))) |
17493 | 9477 (erase-buffer) |
9478 (insert "$ " command "\n\n") | |
9479 (if gnus-view-pseudo-asynchronously | |
9480 (start-process "gnus-execute" (current-buffer) shell-file-name | |
9481 shell-command-switch command) | |
9482 (call-process shell-file-name nil t nil | |
9483 shell-command-switch command))))) | |
9484 | |
9485 ;; Summary kill commands. | |
9486 | |
9487 (defun gnus-summary-edit-global-kill (article) | |
9488 "Edit the \"global\" kill file." | |
9489 (interactive (list (gnus-summary-article-number))) | |
9490 (gnus-group-edit-global-kill article)) | |
9491 | |
9492 (defun gnus-summary-edit-local-kill () | |
9493 "Edit a local kill file applied to the current newsgroup." | |
9494 (interactive) | |
9495 (setq gnus-current-headers (gnus-summary-article-header)) | |
9496 (gnus-group-edit-local-kill | |
9497 (gnus-summary-article-number) gnus-newsgroup-name)) | |
9498 | |
9499 ;;; Header reading. | |
9500 | |
9501 (defun gnus-read-header (id &optional header) | |
9502 "Read the headers of article ID and enter them into the Gnus system." | |
9503 (let ((group gnus-newsgroup-name) | |
9504 (gnus-override-method | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9505 (or |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9506 gnus-override-method |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9507 (and (gnus-news-group-p gnus-newsgroup-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9508 (car (gnus-refer-article-methods))))) |
17493 | 9509 where) |
9510 ;; First we check to see whether the header in question is already | |
9511 ;; fetched. | |
9512 (if (stringp id) | |
9513 ;; This is a Message-ID. | |
9514 (setq header (or header (gnus-id-to-header id))) | |
9515 ;; This is an article number. | |
9516 (setq header (or header (gnus-summary-article-header id)))) | |
9517 (if (and header | |
9518 (not (gnus-summary-article-sparse-p (mail-header-number header)))) | |
9519 ;; We have found the header. | |
9520 header | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9521 ;; If this is a sparse article, we have to nix out its |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9522 ;; previous entry in the thread hashtb. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9523 (when (and header |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9524 (gnus-summary-article-sparse-p (mail-header-number header))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9525 (let* ((parent (gnus-parent-id (mail-header-references header))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9526 (thread (and parent (gnus-id-to-thread parent)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9527 (when thread |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9528 (delq (assq header thread) thread)))) |
17493 | 9529 ;; We have to really fetch the header to this article. |
9530 (save-excursion | |
9531 (set-buffer nntp-server-buffer) | |
9532 (when (setq where (gnus-request-head id group)) | |
9533 (nnheader-fold-continuation-lines) | |
9534 (goto-char (point-max)) | |
9535 (insert ".\n") | |
9536 (goto-char (point-min)) | |
9537 (insert "211 ") | |
9538 (princ (cond | |
9539 ((numberp id) id) | |
9540 ((cdr where) (cdr where)) | |
9541 (header (mail-header-number header)) | |
9542 (t gnus-reffed-article-number)) | |
9543 (current-buffer)) | |
9544 (insert " Article retrieved.\n")) | |
9545 (if (or (not where) | |
9546 (not (setq header (car (gnus-get-newsgroup-headers nil t))))) | |
9547 () ; Malformed head. | |
9548 (unless (gnus-summary-article-sparse-p (mail-header-number header)) | |
9549 (when (and (stringp id) | |
9550 (not (string= (gnus-group-real-name group) | |
9551 (car where)))) | |
9552 ;; If we fetched by Message-ID and the article came | |
9553 ;; from a different group, we fudge some bogus article | |
9554 ;; numbers for this article. | |
9555 (mail-header-set-number header gnus-reffed-article-number)) | |
9556 (save-excursion | |
9557 (set-buffer gnus-summary-buffer) | |
9558 (decf gnus-reffed-article-number) | |
9559 (gnus-remove-header (mail-header-number header)) | |
9560 (push header gnus-newsgroup-headers) | |
9561 (setq gnus-current-headers header) | |
9562 (push (mail-header-number header) gnus-newsgroup-limit))) | |
9563 header))))) | |
9564 | |
9565 (defun gnus-remove-header (number) | |
9566 "Remove header NUMBER from `gnus-newsgroup-headers'." | |
9567 (if (and gnus-newsgroup-headers | |
9568 (= number (mail-header-number (car gnus-newsgroup-headers)))) | |
9569 (pop gnus-newsgroup-headers) | |
9570 (let ((headers gnus-newsgroup-headers)) | |
9571 (while (and (cdr headers) | |
9572 (not (= number (mail-header-number (cadr headers))))) | |
9573 (pop headers)) | |
9574 (when (cdr headers) | |
9575 (setcdr headers (cddr headers)))))) | |
9576 | |
9577 ;;; | |
9578 ;;; summary highlights | |
9579 ;;; | |
9580 | |
9581 (defun gnus-highlight-selected-summary () | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9582 "Highlight selected article in summary buffer." |
17493 | 9583 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>. |
9584 (when gnus-summary-selected-face | |
9585 (save-excursion | |
9586 (let* ((beg (progn (beginning-of-line) (point))) | |
9587 (end (progn (end-of-line) (point))) | |
9588 ;; Fix by Mike Dugan <dugan@bucrf16.bu.edu>. | |
9589 (from (if (get-text-property beg gnus-mouse-face-prop) | |
9590 beg | |
9591 (or (next-single-property-change | |
9592 beg gnus-mouse-face-prop nil end) | |
9593 beg))) | |
9594 (to | |
9595 (if (= from end) | |
9596 (- from 2) | |
9597 (or (next-single-property-change | |
9598 from gnus-mouse-face-prop nil end) | |
9599 end)))) | |
9600 ;; If no mouse-face prop on line we will have to = from = end, | |
9601 ;; so we highlight the entire line instead. | |
9602 (when (= (+ to 2) from) | |
9603 (setq from beg) | |
9604 (setq to end)) | |
9605 (if gnus-newsgroup-selected-overlay | |
9606 ;; Move old overlay. | |
9607 (gnus-move-overlay | |
9608 gnus-newsgroup-selected-overlay from to (current-buffer)) | |
9609 ;; Create new overlay. | |
9610 (gnus-overlay-put | |
9611 (setq gnus-newsgroup-selected-overlay (gnus-make-overlay from to)) | |
9612 'face gnus-summary-selected-face)))))) | |
9613 | |
9614 ;; New implementation by Christian Limpach <Christian.Limpach@nice.ch>. | |
9615 (defun gnus-summary-highlight-line () | |
9616 "Highlight current line according to `gnus-summary-highlight'." | |
9617 (let* ((list gnus-summary-highlight) | |
9618 (p (point)) | |
9619 (end (progn (end-of-line) (point))) | |
9620 ;; now find out where the line starts and leave point there. | |
9621 (beg (progn (beginning-of-line) (point))) | |
9622 (article (gnus-summary-article-number)) | |
9623 (score (or (cdr (assq (or article gnus-current-article) | |
9624 gnus-newsgroup-scored)) | |
9625 gnus-summary-default-score 0)) | |
9626 (mark (or (gnus-summary-article-mark) gnus-unread-mark)) | |
9627 (inhibit-read-only t)) | |
9628 ;; Eval the cars of the lists until we find a match. | |
9629 (let ((default gnus-summary-default-score)) | |
9630 (while (and list | |
9631 (not (eval (caar list)))) | |
9632 (setq list (cdr list)))) | |
9633 (let ((face (cdar list))) | |
9634 (unless (eq face (get-text-property beg 'face)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9635 (gnus-put-text-property-excluding-characters-with-faces |
17493 | 9636 beg end 'face |
9637 (setq face (if (boundp face) (symbol-value face) face))) | |
9638 (when gnus-summary-highlight-line-function | |
9639 (funcall gnus-summary-highlight-line-function article face)))) | |
9640 (goto-char p))) | |
9641 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9642 (defun gnus-update-read-articles (group unread &optional compute) |
17493 | 9643 "Update the list of read articles in GROUP." |
9644 (let* ((active (or gnus-newsgroup-active (gnus-active group))) | |
9645 (entry (gnus-gethash group gnus-newsrc-hashtb)) | |
9646 (info (nth 2 entry)) | |
9647 (prev 1) | |
9648 (unread (sort (copy-sequence unread) '<)) | |
9649 read) | |
9650 (if (or (not info) (not active)) | |
9651 ;; There is no info on this group if it was, in fact, | |
9652 ;; killed. Gnus stores no information on killed groups, so | |
9653 ;; there's nothing to be done. | |
9654 ;; One could store the information somewhere temporarily, | |
9655 ;; perhaps... Hmmm... | |
9656 () | |
9657 ;; Remove any negative articles numbers. | |
9658 (while (and unread (< (car unread) 0)) | |
9659 (setq unread (cdr unread))) | |
9660 ;; Remove any expired article numbers | |
9661 (while (and unread (< (car unread) (car active))) | |
9662 (setq unread (cdr unread))) | |
9663 ;; Compute the ranges of read articles by looking at the list of | |
9664 ;; unread articles. | |
9665 (while unread | |
9666 (when (/= (car unread) prev) | |
9667 (push (if (= prev (1- (car unread))) prev | |
9668 (cons prev (1- (car unread)))) | |
9669 read)) | |
9670 (setq prev (1+ (car unread))) | |
9671 (setq unread (cdr unread))) | |
9672 (when (<= prev (cdr active)) | |
9673 (push (cons prev (cdr active)) read)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9674 (setq read (if (> (length read) 1) (nreverse read) read)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9675 (if compute |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9676 read |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9677 (save-excursion |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9678 (let (setmarkundo) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9679 ;; Propagate the read marks to the backend. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9680 (when (gnus-check-backend-function 'request-set-mark group) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9681 (let ((del (gnus-remove-from-range (gnus-info-read info) read)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9682 (add (gnus-remove-from-range read (gnus-info-read info)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9683 (when (or add del) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9684 (unless (gnus-check-group group) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9685 (error "Can't open server for %s" group)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9686 (gnus-request-set-mark |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9687 group (delq nil (list (if add (list add 'add '(read))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9688 (if del (list del 'del '(read)))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9689 (setq setmarkundo |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9690 `(gnus-request-set-mark |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9691 ,group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9692 ',(delq nil (list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9693 (if del (list del 'add '(read))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9694 (if add (list add 'del '(read)))))))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9695 (set-buffer gnus-group-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9696 (gnus-undo-register |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9697 `(progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9698 (gnus-info-set-marks ',info ',(gnus-info-marks info) t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9699 (gnus-info-set-read ',info ',(gnus-info-read info)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
9700 (gnus-get-unread-articles-in-group ',info |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9701 (gnus-active ,group)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9702 (gnus-group-update-group ,group t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9703 ,setmarkundo)))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9704 ;; Enter this list into the group info. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9705 (gnus-info-set-read info read) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9706 ;; Set the number of unread articles in gnus-newsrc-hashtb. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9707 (gnus-get-unread-articles-in-group info (gnus-active group)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9708 t)))) |
17493 | 9709 |
9710 (defun gnus-offer-save-summaries () | |
9711 "Offer to save all active summary buffers." | |
9712 (save-excursion | |
9713 (let ((buflist (buffer-list)) | |
9714 buffers bufname) | |
9715 ;; Go through all buffers and find all summaries. | |
9716 (while buflist | |
9717 (and (setq bufname (buffer-name (car buflist))) | |
9718 (string-match "Summary" bufname) | |
9719 (save-excursion | |
9720 (set-buffer bufname) | |
9721 ;; We check that this is, indeed, a summary buffer. | |
9722 (and (eq major-mode 'gnus-summary-mode) | |
9723 ;; Also make sure this isn't bogus. | |
9724 gnus-newsgroup-prepared | |
9725 ;; Also make sure that this isn't a dead summary buffer. | |
9726 (not gnus-dead-summary-mode))) | |
9727 (push bufname buffers)) | |
9728 (setq buflist (cdr buflist))) | |
9729 ;; Go through all these summary buffers and offer to save them. | |
9730 (when buffers | |
9731 (map-y-or-n-p | |
9732 "Update summary buffer %s? " | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9733 (lambda (buf) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9734 (switch-to-buffer buf) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23363
diff
changeset
|
9735 (gnus-summary-exit)) |
17493 | 9736 buffers))))) |
9737 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9738 (defun gnus-summary-setup-default-charset () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9739 "Setup newsgroup default charset." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9740 (if (equal gnus-newsgroup-name "nndraft:drafts") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9741 (setq gnus-newsgroup-charset nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9742 (let* ((name (and gnus-newsgroup-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9743 (gnus-group-real-name gnus-newsgroup-name))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9744 (ignored-charsets |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9745 (or gnus-newsgroup-ephemeral-ignored-charsets |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9746 (append |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9747 (and gnus-newsgroup-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9748 (or (gnus-group-find-parameter gnus-newsgroup-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9749 'ignored-charsets t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9750 (let ((alist gnus-group-ignored-charsets-alist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9751 elem (charsets nil)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9752 (while (setq elem (pop alist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9753 (when (and name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9754 (string-match (car elem) name)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9755 (setq alist nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9756 charsets (cdr elem)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9757 charsets))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9758 gnus-newsgroup-ignored-charsets)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9759 (setq gnus-newsgroup-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9760 (or gnus-newsgroup-ephemeral-charset |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9761 (and gnus-newsgroup-name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9762 (or (gnus-group-find-parameter gnus-newsgroup-name 'charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9763 (let ((alist gnus-group-charset-alist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9764 elem charset) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9765 (while (setq elem (pop alist)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9766 (when (and name |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9767 (string-match (car elem) name)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9768 (setq alist nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9769 charset (cadr elem)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9770 charset))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9771 gnus-default-charset)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9772 (set (make-local-variable 'gnus-newsgroup-ignored-charsets) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9773 ignored-charsets)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9774 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9775 ;;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9776 ;;; Mime Commands |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9777 ;;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9778 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9779 (defun gnus-summary-display-buttonized (&optional show-all-parts) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9780 "Display the current article buffer fully MIME-buttonized. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9781 If SHOW-ALL-PARTS (the prefix) is non-nil, all multipart/* parts are |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9782 treated as multipart/mixed." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9783 (interactive "P") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9784 (require 'gnus-art) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9785 (let ((gnus-unbuttonized-mime-types nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9786 (gnus-mime-display-multipart-as-mixed show-all-parts)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9787 (gnus-summary-show-article))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9788 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9789 (defun gnus-summary-repair-multipart (article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9790 "Add a Content-Type header to a multipart article without one." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9791 (interactive (list (gnus-summary-article-number))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9792 (gnus-with-article article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9793 (message-narrow-to-head) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9794 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9795 (widen) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9796 (when (search-forward "\n--" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9797 (let ((separator (buffer-substring (point) (gnus-point-at-eol)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9798 (message-narrow-to-head) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9799 (message-remove-header "Mime-Version") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9800 (message-remove-header "Content-Type") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9801 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9802 (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9803 separator)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9804 (insert "Mime-Version: 1.0\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9805 (widen)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9806 (let (gnus-mark-article-hook) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9807 (gnus-summary-select-article t t nil article))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9808 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9809 (defun gnus-summary-toggle-display-buttonized () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9810 "Toggle the buttonizing of the article buffer." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9811 (interactive) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9812 (require 'gnus-art) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9813 (if (setq gnus-inhibit-mime-unbuttonizing |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9814 (not gnus-inhibit-mime-unbuttonizing)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9815 (let ((gnus-unbuttonized-mime-types nil)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9816 (gnus-summary-show-article)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9817 (gnus-summary-show-article))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9818 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9819 ;;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9820 ;;; Generic summary marking commands |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9821 ;;; |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9822 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9823 (defvar gnus-summary-marking-alist |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9824 '((read gnus-del-mark "d") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9825 (unread gnus-unread-mark "u") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9826 (ticked gnus-ticked-mark "!") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9827 (dormant gnus-dormant-mark "?") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9828 (expirable gnus-expirable-mark "e")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9829 "An alist of names/marks/keystrokes.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9830 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9831 (defvar gnus-summary-generic-mark-map (make-sparse-keymap)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9832 (defvar gnus-summary-mark-map) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9833 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9834 (defun gnus-summary-make-all-marking-commands () |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9835 (define-key gnus-summary-mark-map "M" gnus-summary-generic-mark-map) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9836 (dolist (elem gnus-summary-marking-alist) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9837 (apply 'gnus-summary-make-marking-command elem))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9838 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9839 (defun gnus-summary-make-marking-command (name mark keystroke) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9840 (let ((map (make-sparse-keymap))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9841 (define-key gnus-summary-generic-mark-map keystroke map) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9842 (dolist (lway `((next "next" next nil "n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9843 (next-unread "next unread" next t "N") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9844 (prev "previous" prev nil "p") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9845 (prev-unread "previous unread" prev t "P") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9846 (nomove "" nil nil ,keystroke))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9847 (let ((func (gnus-summary-make-marking-command-1 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9848 mark (car lway) lway name))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9849 (setq func (eval func)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9850 (define-key map (nth 4 lway) func))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
9851 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9852 (defun gnus-summary-make-marking-command-1 (mark way lway name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9853 `(defun ,(intern |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9854 (format "gnus-summary-put-mark-as-%s%s" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9855 name (if (eq way 'nomove) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9856 "" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9857 (concat "-" (symbol-name way))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9858 (n) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9859 ,(format |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9860 "Mark the current article as %s%s. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9861 If N, the prefix, then repeat N times. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9862 If N is negative, move in reverse order. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9863 The difference between N and the actual number of articles marked is |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9864 returned." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9865 name (cadr lway)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9866 (interactive "p") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9867 (gnus-summary-generic-mark n ,mark ',(nth 2 lway) ,(nth 3 lway)))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49283
diff
changeset
|
9868 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9869 (defun gnus-summary-generic-mark (n mark move unread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9870 "Mark N articles with MARK." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9871 (unless (eq major-mode 'gnus-summary-mode) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9872 (error "This command can only be used in the summary buffer")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9873 (gnus-summary-show-thread) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9874 (let ((nummove |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9875 (cond |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9876 ((eq move 'next) 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9877 ((eq move 'prev) -1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9878 (t 0)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9879 (if (zerop nummove) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9880 (setq n 1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9881 (when (< n 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9882 (setq n (abs n) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9883 nummove (* -1 nummove)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9884 (while (and (> n 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9885 (gnus-summary-mark-article nil mark) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9886 (zerop (gnus-summary-next-subject nummove unread t))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9887 (setq n (1- n))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9888 (when (/= 0 n) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9889 (gnus-message 7 "No more %sarticles" (if mark "" "unread "))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9890 (gnus-summary-recenter) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9891 (gnus-summary-position-point) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9892 (gnus-set-mode-line 'summary) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9893 n)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9894 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9895 (gnus-summary-make-all-marking-commands) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24552
diff
changeset
|
9896 |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
9897 (gnus-ems-redefine) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19912
diff
changeset
|
9898 |
17493 | 9899 (provide 'gnus-sum) |
9900 | |
9901 (run-hooks 'gnus-sum-load-hook) | |
9902 | |
9903 ;;; gnus-sum.el ends here |