166a313b60bcbb22f8d9e086559fbc0d8e4d196b
[elisp/gnus.git-] / lisp / gnus-art.el
1 ;;; gnus-art.el --- article mode commands for Semi-gnus
2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;;      MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;;      Katsumi Yamaoka <yamaoka@jpl.org>
9 ;; Keywords: mail, news, MIME
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
27
28 ;;; Commentary:
29
30 ;;; Code:
31
32 (eval-when-compile
33   (require 'cl)
34   (require 'static)
35   (defvar tool-bar-map))
36
37 (require 'path-util)
38 (require 'gnus)
39 ;; Avoid the "Recursive load suspected" error in Emacs 21.1.
40 (eval-and-compile
41   (let ((recursive-load-depth-limit 100))
42     (require 'gnus-sum)))
43 (require 'gnus-spec)
44 (require 'gnus-int)
45 (require 'gnus-win)
46 (require 'alist)
47 (require 'mime-view)
48 (when (static-if (featurep 'xemacs)
49           (console-on-window-system-p)
50         window-system)
51   (require 'mime-image))
52 (require 'wid-edit)
53
54 ;; Avoid byte-compile warnings.
55 (eval-when-compile
56   (require 'mm-bodies)
57   (require 'mail-parse)
58   (require 'mm-decode)
59   (require 'mm-view)
60   (require 'mm-uu))
61
62 (require 'message)
63
64 (autoload 'gnus-msg-mail "gnus-msg" nil t)
65 (autoload 'gnus-button-mailto "gnus-msg")
66 (autoload 'gnus-button-reply "gnus-msg" nil t)
67 (autoload 'parse-time-string "parse-time" nil nil)
68 (autoload 'ansi-color-apply-on-region "ansi-color")
69
70 (defgroup gnus-article nil
71   "Article display."
72   :link '(custom-manual "(gnus)Article Buffer")
73   :group 'gnus)
74
75 (defgroup gnus-article-treat nil
76   "Treating article parts."
77   :link '(custom-manual "(gnus)Article Hiding")
78   :group 'gnus-article)
79
80 (defgroup gnus-article-hiding nil
81   "Hiding article parts."
82   :link '(custom-manual "(gnus)Article Hiding")
83   :group 'gnus-article)
84
85 (defgroup gnus-article-highlight nil
86   "Article highlighting."
87   :link '(custom-manual "(gnus)Article Highlighting")
88   :group 'gnus-article
89   :group 'gnus-visual)
90
91 (defgroup gnus-article-signature nil
92   "Article signatures."
93   :link '(custom-manual "(gnus)Article Signature")
94   :group 'gnus-article)
95
96 (defgroup gnus-article-headers nil
97   "Article headers."
98   :link '(custom-manual "(gnus)Hiding Headers")
99   :group 'gnus-article)
100
101 (defgroup gnus-article-washing nil
102   "Special commands on articles."
103   :link '(custom-manual "(gnus)Article Washing")
104   :group 'gnus-article)
105
106 (defgroup gnus-article-emphasis nil
107   "Fontisizing articles."
108   :link '(custom-manual "(gnus)Article Fontisizing")
109   :group 'gnus-article)
110
111 (defgroup gnus-article-saving nil
112   "Saving articles."
113   :link '(custom-manual "(gnus)Saving Articles")
114   :group 'gnus-article)
115
116 (defgroup gnus-article-mime nil
117   "Worshiping the MIME wonder."
118   :link '(custom-manual "(gnus)Using MIME")
119   :group 'gnus-article)
120
121 (defgroup gnus-article-buttons nil
122   "Pushable buttons in the article buffer."
123   :link '(custom-manual "(gnus)Article Buttons")
124   :group 'gnus-article)
125
126 (defgroup gnus-article-various nil
127   "Other article options."
128   :link '(custom-manual "(gnus)Misc Article")
129   :group 'gnus-article)
130
131 (defcustom gnus-ignored-headers
132   (mapcar
133    (lambda (header)
134      (concat "^" header ":"))
135    '("Path" "Expires" "Date-Received" "References" "Xref" "Lines"
136      "Relay-Version" "Message-ID" "Approved" "Sender" "Received"
137      "X-UIDL" "MIME-Version" "Return-Path" "In-Reply-To"
138      "Content-Type" "Content-Transfer-Encoding" "X-WebTV-Signature"
139      "X-MimeOLE" "X-MSMail-Priority" "X-Priority" "X-Loop"
140      "X-Authentication-Warning" "X-MIME-Autoconverted" "X-Face"
141      "X-Attribution" "X-Originating-IP" "Delivered-To"
142      "NNTP-[-A-Za-z]+" "Distribution" "X-no-archive" "X-Trace"
143      "X-Complaints-To" "X-NNTP-Posting-Host" "X-Orig.*"
144      "Abuse-Reports-To" "Cache-Post-Path" "X-Article-Creation-Date"
145      "X-Poster" "X-Mail2News-Path" "X-Server-Date" "X-Cache"
146      "Originator" "X-Problems-To" "X-Auth-User" "X-Post-Time"
147      "X-Admin" "X-UID" "Resent-[-A-Za-z]+" "X-Mailing-List"
148      "Precedence" "Original-[-A-Za-z]+" "X-filename" "X-Orcpt"
149      "Old-Received" "X-Pgp" "X-Auth" "X-From-Line"
150      "X-Gnus-Article-Number" "X-Majordomo" "X-Url" "X-Sender"
151      "MBOX-Line" "Priority" "X400-[-A-Za-z]+"
152      "Status" "X-Gnus-Mail-Source" "Cancel-Lock"
153      "X-FTN" "X-EXP32-SerialNo" "Encoding" "Importance"
154      "Autoforwarded" "Original-Encoded-Information-Types" "X-Ya-Pop3"
155      "X-Face-Version" "X-Vms-To" "X-ML-NAME" "X-ML-COUNT"
156      "Mailing-List" "X-finfo" "X-md5sum" "X-md5sum-Origin"
157      "X-Sun-Charset" "X-Accept-Language" "X-Envelope-Sender"
158      "List-[A-Za-z]+" "X-Listprocessor-Version"
159      "X-Received" "X-Distribute" "X-Sequence" "X-Juno-Line-Breaks"
160      "X-Notes-Item" "X-MS-TNEF-Correlator" "x-uunet-gateway"
161      "X-Received" "Content-length" "X-precedence"
162      "X-Authenticated-User" "X-Comment" "X-Report" "X-Abuse-Info"
163      "X-HTTP-Proxy" "X-Mydeja-Info" "X-Copyright" "X-No-Markup"
164      "X-Abuse-Info" "X-From_" "X-Accept-Language" "Errors-To"
165      "X-BeenThere" "X-Mailman-Version" "List-Help" "List-Post"
166      "List-Subscribe" "List-Id" "List-Unsubscribe" "List-Archive"
167      "X-Content-length" "X-Posting-Agent" "Original-Received"
168      "X-Request-PGP" "X-Fingerprint" "X-WRIEnvto" "X-WRIEnvfrom"
169      "X-Virus-Scanned" "X-Delivery-Agent" "Posted-Date" "X-Gateway"
170      "X-Local-Origin" "X-Local-Destination" "X-UserInfo1"
171      "X-Received-Date" "X-Hashcash" "Face" "X-DMCA-Notifications"
172      "X-Abuse-and-DMCA-Info" "X-Postfilter" "X-Gpg-.*" "X-Disclaimer"))
173   "*All headers that start with this regexp will be hidden.
174 This variable can also be a list of regexps of headers to be ignored.
175 If `gnus-visible-headers' is non-nil, this variable will be ignored."
176   :type '(choice :custom-show nil
177                  regexp
178                  (repeat regexp))
179   :group 'gnus-article-hiding)
180
181 (defcustom gnus-visible-headers
182   "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^[BGF]?Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Mail-Followup-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-From:\\|^X-Sent:"
183   "*All headers that do not match this regexp will be hidden.
184 This variable can also be a list of regexp of headers to remain visible.
185 If this variable is non-nil, `gnus-ignored-headers' will be ignored."
186   :type '(repeat :value-to-internal (lambda (widget value)
187                                       (custom-split-regexp-maybe value))
188                  :match (lambda (widget value)
189                           (or (stringp value)
190                               (widget-editable-list-match widget value)))
191                  regexp)
192   :group 'gnus-article-hiding)
193
194 (defcustom gnus-sorted-header-list
195   '("^From:" "^Subject:" "^Summary:" "^Keywords:" "^Newsgroups:"
196     "^Followup-To:" "^To:" "^Cc:" "^Date:" "^Organization:")
197   "*This variable is a list of regular expressions.
198 If it is non-nil, headers that match the regular expressions will
199 be placed first in the article buffer in the sequence specified by
200 this list."
201   :type '(repeat regexp)
202   :group 'gnus-article-hiding)
203
204 (defcustom gnus-boring-article-headers '(empty followup-to reply-to)
205   "Headers that are only to be displayed if they have interesting data.
206 Possible values in this list are:
207
208   'empty       Headers with no content.
209   'newsgroups  Newsgroup identical to Gnus group.
210   'to-address  To identical to To-address.
211   'to-list     To identical to To-list.
212   'cc-list     CC identical to To-list.
213   'followup-to Followup-to identical to Newsgroups.
214   'reply-to    Reply-to identical to From.
215   'date        Date less than four days old.
216   'long-to     To and/or Cc longer than 1024 characters.
217   'many-to     Multiple To and/or Cc."
218   :type '(set (const :tag "Headers with no content." empty)
219               (const :tag "Newsgroups identical to Gnus group." newsgroups)
220               (const :tag "To identical to To-address." to-address)
221               (const :tag "To identical to To-list." to-list)
222               (const :tag "CC identical to To-list." cc-list)
223               (const :tag "Followup-to identical to Newsgroups." followup-to)
224               (const :tag "Reply-to identical to From." reply-to)
225               (const :tag "Date less than four days old." date)
226               (const :tag "To and/or Cc longer than 1024 characters." long-to)
227               (const :tag "Multiple To and/or Cc headers." many-to))
228   :group 'gnus-article-hiding)
229
230 (defcustom gnus-article-skip-boring nil
231   "Skip over text that is not worth reading.
232 By default, if you set this t, then Gnus will display citations and
233 signatures, but will never scroll down to show you a page consisting
234 only of boring text.  Boring text is controlled by
235 `gnus-article-boring-faces'."
236   :version "22.1"
237   :type 'boolean
238   :group 'gnus-article-hiding)
239
240 (defcustom gnus-signature-separator '("^-- $" "^-- *$")
241   "Regexp matching signature separator.
242 This can also be a list of regexps.  In that case, it will be checked
243 from head to tail looking for a separator.  Searches will be done from
244 the end of the buffer."
245   :type '(repeat string)
246   :group 'gnus-article-signature)
247
248 (defcustom gnus-signature-limit nil
249   "Provide a limit to what is considered a signature.
250 If it is a number, no signature may not be longer (in characters) than
251 that number.  If it is a floating point number, no signature may be
252 longer (in lines) than that number.  If it is a function, the function
253 will be called without any parameters, and if it returns nil, there is
254 no signature in the buffer.  If it is a string, it will be used as a
255 regexp.  If it matches, the text in question is not a signature.
256
257 This can also be a list of the above values."
258   :type '(choice (integer :value 200)
259                  (number :value 4.0)
260                  (function :value fun)
261                  (regexp :value ".*"))
262   :group 'gnus-article-signature)
263
264 (defcustom gnus-hidden-properties '(invisible t intangible t)
265   "Property list to use for hiding text."
266   :type 'sexp
267   :group 'gnus-article-hiding)
268
269 ;; Fixme: This isn't the right thing for mixed graphical and non-graphical
270 ;; frames in a session.
271 (defcustom gnus-article-x-face-command
272   (cond
273    (noninteractive
274     'ignore)
275    ((featurep 'xemacs)
276     (if (or (gnus-image-type-available-p 'xface)
277             (gnus-image-type-available-p 'pbm))
278         'gnus-display-x-face-in-from
279       "{ echo '/* Width=48, Height=48 */'; uncompface; } | icontopbm | ee -"))
280    ((gnus-image-type-available-p 'pbm)
281     'gnus-display-x-face-in-from)
282    (t
283     "{ echo '/* Width=48, Height=48 */'; uncompface; } | icontopbm | \
284 display -"))
285   "*String or function to be executed to display an X-Face header.
286 If it is a string, the command will be executed in a sub-shell
287 asynchronously.  The compressed face will be piped to this command."
288   :type `(choice
289           :format "%{%t%}:\n%[Value Menu%] %v"
290           ,@(delq nil
291                   (list
292                    'string
293                    (if (or (gnus-image-type-available-p 'xface)
294                            (gnus-image-type-available-p 'pbm))
295                        '(function-item gnus-display-x-face-in-from))
296                    'function)))
297   :version "21.1"
298   :group 'gnus-picon
299   :group 'gnus-article-washing)
300
301 (defcustom gnus-article-x-face-too-ugly nil
302   "Regexp matching posters whose face shouldn't be shown automatically."
303   :type '(choice regexp (const nil))
304   :group 'gnus-article-washing)
305
306 (defcustom gnus-article-banner-alist nil
307   "Banner alist for stripping.
308 For example,
309      ((egroups . \"^[ \\t\\n]*-------------------+\\\\( \\\\(e\\\\|Yahoo! \\\\)Groups Sponsor -+\\\\)?....\\n\\\\(.+\\n\\\\)+\"))"
310   :version "21.1"
311   :type '(repeat (cons symbol regexp))
312   :group 'gnus-article-washing)
313
314 (gnus-define-group-parameter
315  banner
316  :variable-document
317  "Alist of regexps (to match group names) and banner."
318  :variable-group gnus-article-washing
319  :parameter-type
320  '(choice :tag "Banner"
321           :value nil
322           (const :tag "Remove signature" signature)
323           (symbol :tag "Item in `gnus-article-banner-alist'" none)
324           regexp
325           (const :tag "None" nil))
326  :parameter-document
327  "If non-nil, specify how to remove `banners' from articles.
328
329 Symbol `signature' means to remove signatures delimited by
330 `gnus-signature-separator'.  Any other symbol is used to look up a
331 regular expression to match the banner in `gnus-article-banner-alist'.
332 A string is used as a regular expression to match the banner
333 directly.")
334
335 (defcustom gnus-article-address-banner-alist nil
336   "Alist of mail addresses and banners.
337 Each element has the form (ADDRESS . BANNER), where ADDRESS is a regexp
338 to match a mail address in the From: header, BANNER is one of a symbol
339 `signature', an item in `gnus-article-banner-alist', a regexp and nil.
340 If ADDRESS matches author's mail address, it will remove things like
341 advertisements.  For example:
342
343 \((\"@yoo-hoo\\\\.co\\\\.jp\\\\'\" . \"\\n_+\\nDo You Yoo-hoo!\\\\?\\n.*\\n.*\\n\"))
344 "
345   :type '(repeat
346           (cons
347            (regexp :tag "Address")
348            (choice :tag "Banner" :value nil
349                    (const :tag "Remove signature" signature)
350                    (symbol :tag "Item in `gnus-article-banner-alist'" none)
351                    regexp
352                    (const :tag "None" nil))))
353   :version "22.1"
354   :group 'gnus-article-washing)
355
356 (defmacro gnus-emphasis-custom-with-format (&rest body)
357   `(let ((format "\
358 \\(\\s-\\|^\\|\\=\\|[-\"]\\|\\s(\\)\\(%s\\(\\w+\\(\\s-+\\w+\\)*[.,]?\\)%s\\)\
359 \\(\\([-,.;:!?\"]\\|\\s)\\)+\\s-\\|[?!.]\\s-\\|\\s)\\|\\s-\\)"))
360      ,@body))
361
362 (defun gnus-emphasis-custom-value-to-external (value)
363   (gnus-emphasis-custom-with-format
364    (if (consp (car value))
365        (list (format format (car (car value)) (cdr (car value)))
366              2
367              (if (nth 1 value) 2 3)
368              (nth 2 value))
369      value)))
370
371 (defun gnus-emphasis-custom-value-to-internal (value)
372   (gnus-emphasis-custom-with-format
373    (let ((regexp (concat "\\`"
374                          (format (regexp-quote format)
375                                  "\\([^()]+\\)" "\\([^()]+\\)")
376                          "\\'"))
377          pattern)
378      (if (string-match regexp (setq pattern (car value)))
379          (list (cons (match-string 1 pattern) (match-string 2 pattern))
380                (= (nth 2 value) 2)
381                (nth 3 value))
382        value))))
383
384 (defcustom gnus-emphasis-alist
385   (let ((types
386          '(("\\*" "\\*" bold nil 2)
387            ("_" "_" underline)
388            ("/" "/" italic)
389            ("_/" "/_" underline-italic)
390            ("_\\*" "\\*_" underline-bold)
391            ("\\*/" "/\\*" bold-italic)
392            ("_\\*/" "/\\*_" underline-bold-italic))))
393     (nconc
394      (gnus-emphasis-custom-with-format
395       (mapcar (lambda (spec)
396                 (list (format format (car spec) (cadr spec))
397                       (or (nth 3 spec) 2)
398                       (or (nth 4 spec) 3)
399                       (intern (format "gnus-emphasis-%s" (nth 2 spec)))))
400               types))
401      '(;; I've never seen anyone use this strikethru convention whereas I've
402        ;; several times seen it triggered by normal text.  --Stef
403        ;; Miles suggests that this form is sometimes used but for italics,
404        ;; so maybe we should map it to `italic'.
405        ;; ("\\(\\s-\\|^\\)\\(-\\(\\(\\w\\|-[^-]\\)+\\)-\\)\\(\\s-\\|[?!.,;]\\)"
406        ;; 2 3 gnus-emphasis-strikethru)
407        ("\\(\\s-\\|^\\)\\(_\\(\\(\\w\\|_[^_]\\)+\\)_\\)\\(\\s-\\|[?!.,;]\\)"
408         2 3 gnus-emphasis-underline))))
409   "*Alist that says how to fontify certain phrases.
410 Each item looks like this:
411
412   (\"_\\\\(\\\\w+\\\\)_\" 0 1 'underline)
413
414 The first element is a regular expression to be matched.  The second
415 is a number that says what regular expression grouping used to find
416 the entire emphasized word.  The third is a number that says what
417 regexp grouping should be displayed and highlighted.  The fourth
418 is the face used for highlighting."
419   :type
420   '(repeat
421     (menu-choice
422      :format "%[Customizing Style%]\n%v"
423      :indent 2
424      (group :tag "Default"
425             :value ("" 0 0 default)
426             :value-create
427             (lambda (widget)
428               (let ((value (widget-get
429                             (cadr (widget-get (widget-get widget :parent)
430                                               :args))
431                             :value)))
432                 (if (not (eq (nth 2 value) 'default))
433                     (widget-put
434                      widget
435                      :value
436                      (gnus-emphasis-custom-value-to-external value))))
437               (widget-group-value-create widget))
438             regexp
439             (integer :format "Match group: %v")
440             (integer :format "Emphasize group: %v")
441             face)
442      (group :tag "Simple"
443             :value (("_" . "_") nil default)
444             (cons :format "%v"
445                   (regexp :format "Start regexp: %v")
446                   (regexp :format "End regexp: %v"))
447             (boolean :format "Show start and end patterns: %[%v%]\n"
448                      :on " On " :off " Off ")
449             face)))
450   :get (lambda (symbol)
451          (mapcar 'gnus-emphasis-custom-value-to-internal
452                  (default-value symbol)))
453   :set (lambda (symbol value)
454          (set-default symbol (mapcar 'gnus-emphasis-custom-value-to-external
455                                      value)))
456   :group 'gnus-article-emphasis)
457
458 (defcustom gnus-emphasize-whitespace-regexp "^[ \t]+\\|[ \t]*\n"
459   "A regexp to describe whitespace which should not be emphasized.
460 Typical values are \"^[ \\t]+\\\\|[ \\t]*\\n\" and \"[ \\t]+\\\\|[ \\t]*\\n\".
461 The former avoids underlining of leading and trailing whitespace,
462 and the latter avoids underlining any whitespace at all."
463   :version "21.1"
464   :group 'gnus-article-emphasis
465   :type 'regexp)
466
467 (defface gnus-emphasis-bold '((t (:bold t)))
468   "Face used for displaying strong emphasized text (*word*)."
469   :group 'gnus-article-emphasis)
470
471 (defface gnus-emphasis-italic '((t (:italic t)))
472   "Face used for displaying italic emphasized text (/word/)."
473   :group 'gnus-article-emphasis)
474
475 (defface gnus-emphasis-underline '((t (:underline t)))
476   "Face used for displaying underlined emphasized text (_word_)."
477   :group 'gnus-article-emphasis)
478
479 (defface gnus-emphasis-underline-bold '((t (:bold t :underline t)))
480   "Face used for displaying underlined bold emphasized text (_*word*_)."
481   :group 'gnus-article-emphasis)
482
483 (defface gnus-emphasis-underline-italic '((t (:italic t :underline t)))
484   "Face used for displaying underlined italic emphasized text (_/word/_)."
485   :group 'gnus-article-emphasis)
486
487 (defface gnus-emphasis-bold-italic '((t (:bold t :italic t)))
488   "Face used for displaying bold italic emphasized text (/*word*/)."
489   :group 'gnus-article-emphasis)
490
491 (defface gnus-emphasis-underline-bold-italic
492   '((t (:bold t :italic t :underline t)))
493   "Face used for displaying underlined bold italic emphasized text.
494 Example: (_/*word*/_)."
495   :group 'gnus-article-emphasis)
496
497 (defface gnus-emphasis-strikethru (if (featurep 'xemacs)
498                                       '((t (:strikethru t)))
499                                     '((t (:strike-through t))))
500   "Face used for displaying strike-through text (-word-)."
501   :group 'gnus-article-emphasis)
502
503 (defface gnus-emphasis-highlight-words
504   '((t (:background "black" :foreground "yellow")))
505   "Face used for displaying highlighted words."
506   :group 'gnus-article-emphasis)
507
508 (defcustom gnus-article-time-format "%a, %d %b %Y %T %Z"
509   "Format for display of Date headers in article bodies.
510 See `format-time-string' for the possible values.
511
512 The variable can also be function, which should return a complete Date
513 header.  The function is called with one argument, the time, which can
514 be fed to `format-time-string'."
515   :type '(choice string function)
516   :link '(custom-manual "(gnus)Article Date")
517   :group 'gnus-article-washing)
518
519 (defcustom gnus-save-all-headers t
520   "*If non-nil, don't remove any headers before saving."
521   :group 'gnus-article-saving
522   :type 'boolean)
523
524 (defcustom gnus-prompt-before-saving 'always
525   "*This variable says how much prompting is to be done when saving articles.
526 If it is nil, no prompting will be done, and the articles will be
527 saved to the default files.  If this variable is `always', each and
528 every article that is saved will be preceded by a prompt, even when
529 saving large batches of articles.  If this variable is neither nil not
530 `always', there the user will be prompted once for a file name for
531 each invocation of the saving commands."
532   :group 'gnus-article-saving
533   :type '(choice (item always)
534                  (item :tag "never" nil)
535                  (sexp :tag "once" :format "%t\n" :value t)))
536
537 (defcustom gnus-saved-headers gnus-visible-headers
538   "Headers to keep if `gnus-save-all-headers' is nil.
539 If `gnus-save-all-headers' is non-nil, this variable will be ignored.
540 If that variable is nil, however, all headers that match this regexp
541 will be kept while the rest will be deleted before saving."
542   :group 'gnus-article-saving
543   :type 'regexp)
544
545 (defcustom gnus-default-article-saver 'gnus-summary-save-in-rmail
546   "A function to save articles in your favourite format.
547 The function must be interactively callable (in other words, it must
548 be an Emacs command).
549
550 Gnus provides the following functions:
551
552 * gnus-summary-save-in-rmail (Rmail format)
553 * gnus-summary-save-in-mail (Unix mail format)
554 * gnus-summary-save-in-folder (MH folder)
555 * gnus-summary-save-in-file (article format)
556 * gnus-summary-save-body-in-file (article body)
557 * gnus-summary-save-in-vm (use VM's folder format)
558 * gnus-summary-write-to-file (article format -- overwrite)."
559   :group 'gnus-article-saving
560   :type '(radio (function-item gnus-summary-save-in-rmail)
561                 (function-item gnus-summary-save-in-mail)
562                 (function-item gnus-summary-save-in-folder)
563                 (function-item gnus-summary-save-in-file)
564                 (function-item gnus-summary-save-body-in-file)
565                 (function-item gnus-summary-save-in-vm)
566                 (function-item gnus-summary-write-to-file)))
567
568 (defcustom gnus-rmail-save-name 'gnus-plain-save-name
569   "A function generating a file name to save articles in Rmail format.
570 The function is called with NEWSGROUP, HEADERS, and optional LAST-FILE."
571   :group 'gnus-article-saving
572   :type 'function)
573
574 (defcustom gnus-mail-save-name 'gnus-plain-save-name
575   "A function generating a file name to save articles in Unix mail format.
576 The function is called with NEWSGROUP, HEADERS, and optional LAST-FILE."
577   :group 'gnus-article-saving
578   :type 'function)
579
580 (defcustom gnus-folder-save-name 'gnus-folder-save-name
581   "A function generating a file name to save articles in MH folder.
582 The function is called with NEWSGROUP, HEADERS, and optional LAST-FOLDER."
583   :group 'gnus-article-saving
584   :type 'function)
585
586 (defcustom gnus-file-save-name 'gnus-numeric-save-name
587   "A function generating a file name to save articles in article format.
588 The function is called with NEWSGROUP, HEADERS, and optional
589 LAST-FILE."
590   :group 'gnus-article-saving
591   :type 'function)
592
593 (defcustom gnus-split-methods
594   '((gnus-article-archive-name)
595     (gnus-article-nndoc-name))
596   "*Variable used to suggest where articles are to be saved.
597 For instance, if you would like to save articles related to Gnus in
598 the file \"gnus-stuff\", and articles related to VM in \"vm-stuff\",
599 you could set this variable to something like:
600
601  '((\"^Subject:.*gnus\\|^Newsgroups:.*gnus\" \"gnus-stuff\")
602    (\"^Subject:.*vm\\|^Xref:.*vm\" \"vm-stuff\"))
603
604 This variable is an alist where the key is the match and the
605 value is a list of possible files to save in if the match is
606 non-nil.
607
608 If the match is a string, it is used as a regexp match on the
609 article.  If the match is a symbol, that symbol will be funcalled
610 from the buffer of the article to be saved with the newsgroup as
611 the parameter.  If it is a list, it will be evaled in the same
612 buffer.
613
614 If this form or function returns a string, this string will be
615 used as a possible file name; and if it returns a non-nil list,
616 that list will be used as possible file names."
617   :group 'gnus-article-saving
618   :type '(repeat (choice (list :value (fun) function)
619                          (cons :value ("" "") regexp (repeat string))
620                          (sexp :value nil))))
621
622 (defcustom gnus-article-display-method-for-mime
623   'gnus-article-display-mime-message
624   "Function to display a MIME message.
625 The function is called from the article buffer."
626   :group 'gnus-article-mime
627   :type 'function)
628
629 (defcustom gnus-article-display-method-for-traditional
630   'gnus-article-display-traditional-message
631   "*Function to display a traditional message.
632 The function is called from the article buffer."
633   :group 'gnus-article-mime
634   :type 'function)
635
636 (defcustom gnus-page-delimiter "^\^L"
637   "*Regexp describing what to use as article page delimiters.
638 The default value is \"^\^L\", which is a form linefeed at the
639 beginning of a line."
640   :type 'regexp
641   :group 'gnus-article-various)
642
643 (defcustom gnus-article-mode-line-format "Gnus: %g [%w] %S%m"
644   "*The format specification for the article mode line.
645 See `gnus-summary-mode-line-format' for a closer description.
646
647 The following additional specs are available:
648
649 %w  The article washing status.
650 %m  The number of MIME parts in the article."
651   :type 'string
652   :group 'gnus-article-various)
653
654 (defcustom gnus-article-mode-hook nil
655   "*A hook for Gnus article mode."
656   :type 'hook
657   :group 'gnus-article-various)
658
659 (when (featurep 'xemacs)
660   ;; Extracted from gnus-xmas-define in order to preserve user settings
661   (when (fboundp 'turn-off-scroll-in-place)
662     (add-hook 'gnus-article-mode-hook 'turn-off-scroll-in-place))
663   ;; Extracted from gnus-xmas-redefine in order to preserve user settings
664   (add-hook 'gnus-article-mode-hook 'gnus-xmas-article-menu-add))
665
666 (defcustom gnus-article-menu-hook nil
667   "*Hook run after the creation of the article mode menu."
668   :type 'hook
669   :group 'gnus-article-various)
670
671 (defcustom gnus-article-prepare-hook nil
672   "*A hook called after an article has been prepared in the article buffer."
673   :type 'hook
674   :group 'gnus-article-various)
675
676 (defcustom gnus-copy-article-ignored-headers nil
677   "List of headers to be removed when copying an article.
678 Each element is a regular expression."
679   :version "23.0" ;; No Gnus
680   :type '(repeat regexp)
681   :group 'gnus-article-various)
682
683 (make-obsolete-variable 'gnus-article-hide-pgp-hook
684                         "This variable is obsolete in Gnus 5.10.")
685
686 (defcustom gnus-article-button-face 'bold
687   "Face used for highlighting buttons in the article buffer.
688
689 An article button is a piece of text that you can activate by pressing
690 `RET' or `mouse-2' above it."
691   :type 'face
692   :group 'gnus-article-buttons)
693
694 (defcustom gnus-article-mouse-face 'highlight
695   "Face used for mouse highlighting in the article buffer.
696
697 Article buttons will be displayed in this face when the cursor is
698 above them."
699   :type 'face
700   :group 'gnus-article-buttons)
701
702 (defcustom gnus-signature-face 'gnus-signature
703   "Face used for highlighting a signature in the article buffer.
704 Obsolete; use the face `gnus-signature' for customizations instead."
705   :type 'face
706   :group 'gnus-article-highlight
707   :group 'gnus-article-signature)
708
709 (defface gnus-signature
710   '((t
711      (:italic t)))
712   "Face used for highlighting a signature in the article buffer."
713   :group 'gnus-article-highlight
714   :group 'gnus-article-signature)
715 ;; backward-compatibility alias
716 (put 'gnus-signature-face 'face-alias 'gnus-signature)
717
718 (defface gnus-header-from
719   '((((class color)
720       (background dark))
721      (:foreground "spring green"))
722     (((class color)
723       (background light))
724      (:foreground "red3"))
725     (t
726      (:italic t)))
727   "Face used for displaying from headers."
728   :group 'gnus-article-headers
729   :group 'gnus-article-highlight)
730 ;; backward-compatibility alias
731 (put 'gnus-header-from-face 'face-alias 'gnus-header-from)
732
733 (defface gnus-header-subject
734   '((((class color)
735       (background dark))
736      (:foreground "SeaGreen3"))
737     (((class color)
738       (background light))
739      (:foreground "red4"))
740     (t
741      (:bold t :italic t)))
742   "Face used for displaying subject headers."
743   :group 'gnus-article-headers
744   :group 'gnus-article-highlight)
745 ;; backward-compatibility alias
746 (put 'gnus-header-subject-face 'face-alias 'gnus-header-subject)
747
748 (defface gnus-header-newsgroups
749   '((((class color)
750       (background dark))
751      (:foreground "yellow" :italic t))
752     (((class color)
753       (background light))
754      (:foreground "MidnightBlue" :italic t))
755     (t
756      (:italic t)))
757   "Face used for displaying newsgroups headers.
758 In the default setup this face is only used for crossposted
759 articles."
760   :group 'gnus-article-headers
761   :group 'gnus-article-highlight)
762 ;; backward-compatibility alias
763 (put 'gnus-header-newsgroups-face 'face-alias 'gnus-header-newsgroups)
764
765 (defface gnus-header-name
766   '((((class color)
767       (background dark))
768      (:foreground "SeaGreen"))
769     (((class color)
770       (background light))
771      (:foreground "maroon"))
772     (t
773      (:bold t)))
774   "Face used for displaying header names."
775   :group 'gnus-article-headers
776   :group 'gnus-article-highlight)
777 ;; backward-compatibility alias
778 (put 'gnus-header-name-face 'face-alias 'gnus-header-name)
779
780 (defface gnus-header-content
781   '((((class color)
782       (background dark))
783      (:foreground "forest green" :italic t))
784     (((class color)
785       (background light))
786      (:foreground "indianred4" :italic t))
787     (t
788      (:italic t)))
789   "Face used for displaying header content."
790   :group 'gnus-article-headers
791   :group 'gnus-article-highlight)
792 ;; backward-compatibility alias
793 (put 'gnus-header-content-face 'face-alias 'gnus-header-content)
794
795 (defcustom gnus-header-face-alist
796   '(("From" nil gnus-header-from)
797     ("Subject" nil gnus-header-subject)
798     ("Newsgroups:.*," nil gnus-header-newsgroups)
799     ("" gnus-header-name gnus-header-content))
800   "*Controls highlighting of article headers.
801
802 An alist of the form (HEADER NAME CONTENT).
803
804 HEADER is a regular expression which should match the name of a
805 header and NAME and CONTENT are either face names or nil.
806
807 The name of each header field will be displayed using the face
808 specified by the first element in the list where HEADER matches
809 the header name and NAME is non-nil.  Similarly, the content will
810 be displayed by the first non-nil matching CONTENT face."
811   :group 'gnus-article-headers
812   :group 'gnus-article-highlight
813   :type '(repeat (list (regexp :tag "Header")
814                        (choice :tag "Name"
815                                (item :tag "skip" nil)
816                                (face :value default))
817                        (choice :tag "Content"
818                                (item :tag "skip" nil)
819                                (face :value default)))))
820
821 (defcustom gnus-article-decode-hook
822   '(article-decode-group-name article-decode-idna-rhs)
823   "*Hook run to decode charsets in articles."
824   :group 'gnus-article-headers
825   :type 'hook)
826
827 (defcustom gnus-display-mime-function 'gnus-display-mime
828   "Function to display MIME articles."
829   :group 'gnus-article-mime
830   :type 'function)
831
832 (defvar gnus-decode-header-function 'mail-decode-encoded-word-region
833   "Function used to decode headers.")
834
835 (defvar gnus-article-dumbquotes-map
836   '(("\200" "EUR")
837     ("\202" ",")
838     ("\203" "f")
839     ("\204" ",,")
840     ("\205" "...")
841     ("\213" "<")
842     ("\214" "OE")
843     ("\221" "`")
844     ("\222" "'")
845     ("\223" "``")
846     ("\224" "\"")
847     ("\225" "*")
848     ("\226" "-")
849     ("\227" "--")
850     ("\230" "~")
851     ("\231" "(TM)")
852     ("\233" ">")
853     ("\234" "oe")
854     ("\264" "'"))
855   "Table for MS-to-Latin1 translation.")
856
857 (defcustom gnus-ignored-mime-types nil
858   "List of MIME types that should be ignored by Gnus."
859   :version "21.1"
860   :group 'gnus-article-mime
861   :type '(repeat regexp))
862
863 (defcustom gnus-unbuttonized-mime-types '(".*/.*")
864   "List of MIME types that should not be given buttons when rendered inline.
865 See also `gnus-buttonized-mime-types' which may override this variable.
866 This variable is only used when `gnus-inhibit-mime-unbuttonizing' is nil."
867   :version "21.1"
868   :group 'gnus-article-mime
869   :type '(repeat regexp))
870
871 (defcustom gnus-buttonized-mime-types nil
872   "List of MIME types that should be given buttons when rendered inline.
873 If set, this variable overrides `gnus-unbuttonized-mime-types'.
874 To see e.g. security buttons you could set this to
875 `(\"multipart/signed\")'.
876 This variable is only used when `gnus-inhibit-mime-unbuttonizing' is nil."
877   :version "22.1"
878   :group 'gnus-article-mime
879   :type '(repeat regexp))
880
881 (defcustom gnus-inhibit-mime-unbuttonizing nil
882   "If non-nil, all MIME parts get buttons.
883 When nil (the default value), then some MIME parts do not get buttons,
884 as described by the variables `gnus-buttonized-mime-types' and
885 `gnus-unbuttonized-mime-types'."
886   :version "22.1"
887   :group 'gnus-article-mime
888   :type 'boolean)
889
890 (defcustom gnus-body-boundary-delimiter "_"
891   "String used to delimit header and body.
892 This variable is used by `gnus-article-treat-body-boundary' which can
893 be controlled by `gnus-treat-body-boundary'."
894   :version "22.1"
895   :group 'gnus-article-various
896   :type '(choice (item :tag "None" :value nil)
897                  string))
898
899 (defcustom gnus-picon-databases '("/usr/lib/picon" "/usr/local/faces"
900                                   "/usr/share/picons")
901   "Defines the location of the faces database.
902 For information on obtaining this database of pretty pictures, please
903 see http://www.cs.indiana.edu/picons/ftp/index.html"
904   :version "22.1"
905   :type '(repeat directory)
906   :link '(url-link :tag "download"
907                    "http://www.cs.indiana.edu/picons/ftp/index.html")
908   :link '(custom-manual "(gnus)Picons")
909   :group 'gnus-picon)
910
911 (defun gnus-picons-installed-p ()
912   "Say whether picons are installed on your machine."
913   (let ((installed nil))
914     (dolist (database gnus-picon-databases)
915       (when (file-exists-p database)
916         (setq installed t)))
917     installed))
918
919 (defcustom gnus-article-mime-part-function nil
920   "Function called with a MIME handle as the argument.
921 This is meant for people who want to do something automatic based
922 on parts -- for instance, adding Vcard info to a database."
923   :group 'gnus-article-mime
924   :type 'function)
925
926 (defcustom gnus-mime-multipart-functions nil
927   "An alist of MIME types to functions to display them."
928   :version "21.1"
929   :group 'gnus-article-mime
930   :type '(repeat (cons :format "%v" (string :tag "MIME type") function)))
931
932 (defcustom gnus-article-date-lapsed-new-header nil
933   "Whether the X-Sent and Date headers can coexist.
934 When using `gnus-treat-date-lapsed', the \"X-Sent:\" header will
935 either replace the old \"Date:\" header (if this variable is nil), or
936 be added below it (otherwise)."
937   :version "21.1"
938   :group 'gnus-article-headers
939   :type 'boolean)
940
941 (defcustom gnus-article-mime-match-handle-function 'undisplayed-alternative
942   "Function called with a MIME handle as the argument.
943 This is meant for people who want to view first matched part.
944 For `undisplayed-alternative' (default), the first undisplayed
945 part or alternative part is used.  For `undisplayed', the first
946 undisplayed part is used.  For a function, the first part which
947 the function return t is used.  For nil, the first part is
948 used."
949   :version "21.1"
950   :group 'gnus-article-mime
951   :type '(choice
952           (item :tag "first" :value nil)
953           (item :tag "undisplayed" :value undisplayed)
954           (item :tag "undisplayed or alternative"
955                 :value undisplayed-alternative)
956           (function)))
957
958 (defcustom gnus-mime-action-alist
959   '(("save to file" . gnus-mime-save-part)
960     ("save and strip" . gnus-mime-save-part-and-strip)
961     ("delete part" . gnus-mime-delete-part)
962     ("display as text" . gnus-mime-inline-part)
963     ("view the part" . gnus-mime-view-part)
964     ("pipe to command" . gnus-mime-pipe-part)
965     ("toggle display" . gnus-article-press-button)
966     ("toggle display" . gnus-article-view-part-as-charset)
967     ("view as type" . gnus-mime-view-part-as-type)
968     ("view internally" . gnus-mime-view-part-internally)
969     ("view externally" . gnus-mime-view-part-externally))
970   "An alist of actions that run on the MIME attachment."
971   :group 'gnus-article-mime
972   :type '(repeat (cons (string :tag "name")
973                        (function))))
974
975 (defcustom gnus-auto-select-part 1
976   "Advance to next MIME part when deleting or stripping parts.
977
978 When 0, point will be placed on the same part as before.  When
979 positive (negative), move point forward (backwards) this many
980 parts.  When nil, redisplay article."
981   :version "23.0" ;; No Gnus
982   :group 'gnus-article-mime
983   :type '(choice (const nil :tag "Redisplay article.")
984                  (const 1 :tag "Next part.")
985                  (const 0 :tag "Current part.")
986                  integer))
987
988 ;;;
989 ;;; The treatment variables
990 ;;;
991
992 (defvar gnus-part-display-hook nil
993   "Hook called on parts that are to receive treatment.")
994
995 (defvar gnus-article-treat-custom
996   '(choice (const :tag "Off" nil)
997            (const :tag "On" t)
998            (const :tag "Header" head)
999            (const :tag "Last" last)
1000            (const :tag "Mime" mime)
1001            (integer :tag "Less")
1002            (repeat :tag "Groups" regexp)
1003            (sexp :tag "Predicate")))
1004
1005 (defvar gnus-article-treat-head-custom
1006   '(choice (const :tag "Off" nil)
1007            (const :tag "Header" head)))
1008
1009 (defvar gnus-article-treat-types '("text/plain")
1010   "Parts to treat.")
1011
1012 (defvar gnus-inhibit-treatment nil
1013   "Whether to inhibit treatment.")
1014
1015 (defcustom gnus-treat-highlight-signature '(or t (typep "text/x-vcard"))
1016   "Highlight the signature.
1017 Valid values are nil, t, `head', `last', an integer or a predicate.
1018 See Info node `(gnus)Customizing Articles'."
1019   :group 'gnus-article-treat
1020   :link '(custom-manual "(gnus)Customizing Articles")
1021   :type gnus-article-treat-custom)
1022 (put 'gnus-treat-highlight-signature 'highlight t)
1023
1024 (defcustom gnus-treat-buttonize 100000
1025   "Add buttons.
1026 Valid values are nil, t, `head', `last', an integer or a predicate.
1027 See Info node `(gnus)Customizing Articles'."
1028   :group 'gnus-article-treat
1029   :link '(custom-manual "(gnus)Customizing Articles")
1030   :type gnus-article-treat-custom)
1031 (put 'gnus-treat-buttonize 'highlight t)
1032
1033 (defcustom gnus-treat-buttonize-head 'head
1034   "Add buttons to the head.
1035 Valid values are nil, t, `head', `last', an integer or a predicate.
1036 See Info node `(gnus)Customizing Articles' for details."
1037   :group 'gnus-article-treat
1038   :link '(custom-manual "(gnus)Customizing Articles")
1039   :type gnus-article-treat-head-custom)
1040 (put 'gnus-treat-buttonize-head 'highlight t)
1041
1042 (defcustom gnus-treat-emphasize
1043   (and (or window-system
1044            (featurep 'xemacs))
1045        50000)
1046   "Emphasize text.
1047 Valid values are nil, t, `head', `last', an integer or a predicate.
1048 See Info node `(gnus)Customizing Articles' for details."
1049   :group 'gnus-article-treat
1050   :link '(custom-manual "(gnus)Customizing Articles")
1051   :type gnus-article-treat-custom)
1052 (put 'gnus-treat-emphasize 'highlight t)
1053
1054 (defcustom gnus-treat-strip-cr nil
1055   "Remove carriage returns.
1056 Valid values are nil, t, `head', `last', an integer or a predicate.
1057 See Info node `(gnus)Customizing Articles' for details."
1058   :version "22.1"
1059   :group 'gnus-article-treat
1060   :link '(custom-manual "(gnus)Customizing Articles")
1061   :type gnus-article-treat-custom)
1062
1063 (defcustom gnus-treat-unsplit-urls nil
1064   "Remove newlines from within URLs.
1065 Valid values are nil, t, `head', `last', an integer or a predicate.
1066 See Info node `(gnus)Customizing Articles' for details."
1067   :version "22.1"
1068   :group 'gnus-article-treat
1069   :link '(custom-manual "(gnus)Customizing Articles")
1070   :type gnus-article-treat-custom)
1071
1072 (defcustom gnus-treat-leading-whitespace nil
1073   "Remove leading whitespace in headers.
1074 Valid values are nil, t, `head', `last', an integer or a predicate.
1075 See Info node `(gnus)Customizing Articles' for details."
1076   :version "22.1"
1077   :group 'gnus-article-treat
1078   :link '(custom-manual "(gnus)Customizing Articles")
1079   :type gnus-article-treat-custom)
1080
1081 (defcustom gnus-treat-hide-headers 'head
1082   "Hide headers.
1083 Valid values are nil, t, `head', `last', an integer or a predicate.
1084 See Info node `(gnus)Customizing Articles' for details."
1085   :group 'gnus-article-treat
1086   :link '(custom-manual "(gnus)Customizing Articles")
1087   :type gnus-article-treat-head-custom)
1088
1089 (defcustom gnus-treat-hide-boring-headers nil
1090   "Hide boring headers.
1091 Valid values are nil, t, `head', `last', an integer or a predicate.
1092 See Info node `(gnus)Customizing Articles' for details."
1093   :group 'gnus-article-treat
1094   :link '(custom-manual "(gnus)Customizing Articles")
1095   :type gnus-article-treat-head-custom)
1096
1097 (defcustom gnus-treat-hide-signature nil
1098   "Hide the signature.
1099 Valid values are nil, t, `head', `last', an integer or a predicate.
1100 See Info node `(gnus)Customizing Articles' for details."
1101   :group 'gnus-article-treat
1102   :link '(custom-manual "(gnus)Customizing Articles")
1103   :type gnus-article-treat-custom)
1104
1105 (defcustom gnus-treat-fill-article nil
1106   "Fill the article.
1107 Valid values are nil, t, `head', `last', an integer or a predicate.
1108 See Info node `(gnus)Customizing Articles' for details."
1109   :group 'gnus-article-treat
1110   :link '(custom-manual "(gnus)Customizing Articles")
1111   :type gnus-article-treat-custom)
1112
1113 (defcustom gnus-treat-hide-citation nil
1114   "Hide cited text.
1115 Valid values are nil, t, `head', `last', an integer or a predicate.
1116 See Info node `(gnus)Customizing Articles' for details."
1117   :group 'gnus-article-treat
1118   :link '(custom-manual "(gnus)Customizing Articles")
1119   :type gnus-article-treat-custom)
1120
1121 (defcustom gnus-treat-hide-citation-maybe nil
1122   "Hide cited text.
1123 Valid values are nil, t, `head', `last', an integer or a predicate.
1124 See Info node `(gnus)Customizing Articles' for details."
1125   :group 'gnus-article-treat
1126   :link '(custom-manual "(gnus)Customizing Articles")
1127   :type gnus-article-treat-custom)
1128
1129 (defcustom gnus-treat-strip-list-identifiers 'head
1130   "Strip list identifiers from `gnus-list-identifiers`.
1131 Valid values are nil, t, `head', `last', an integer or a predicate.
1132 See Info node `(gnus)Customizing Articles' for details."
1133   :version "21.1"
1134   :group 'gnus-article-treat
1135   :link '(custom-manual "(gnus)Customizing Articles")
1136   :type gnus-article-treat-custom)
1137
1138 (make-obsolete-variable 'gnus-treat-strip-pgp
1139                         "This option is obsolete in Gnus 5.10.")
1140
1141 (defcustom gnus-treat-strip-pem nil
1142   "Strip PEM signatures.
1143 Valid values are nil, t, `head', `last', an integer or a predicate.
1144 See Info node `(gnus)Customizing Articles' for details."
1145   :group 'gnus-article-treat
1146   :link '(custom-manual "(gnus)Customizing Articles")
1147   :type gnus-article-treat-custom)
1148
1149 (defcustom gnus-treat-strip-banner t
1150   "Strip banners from articles.
1151 The banner to be stripped is specified in the `banner' group parameter.
1152 Valid values are nil, t, `head', `last', an integer or a predicate.
1153 See Info node `(gnus)Customizing Articles' for details."
1154   :group 'gnus-article-treat
1155   :link '(custom-manual "(gnus)Customizing Articles")
1156   :type gnus-article-treat-custom)
1157
1158 (defcustom gnus-treat-highlight-headers 'head
1159   "Highlight the headers.
1160 Valid values are nil, t, `head', `last', an integer or a predicate.
1161 See Info node `(gnus)Customizing Articles' for details."
1162   :group 'gnus-article-treat
1163   :link '(custom-manual "(gnus)Customizing Articles")
1164   :type gnus-article-treat-head-custom)
1165 (put 'gnus-treat-highlight-headers 'highlight t)
1166
1167 (defcustom gnus-treat-highlight-citation t
1168   "Highlight cited text.
1169 Valid values are nil, t, `head', `last', an integer or a predicate.
1170 See Info node `(gnus)Customizing Articles' for details."
1171   :group 'gnus-article-treat
1172   :link '(custom-manual "(gnus)Customizing Articles")
1173   :type gnus-article-treat-custom)
1174 (put 'gnus-treat-highlight-citation 'highlight t)
1175
1176 (defcustom gnus-treat-date-ut nil
1177   "Display the Date in UT (GMT).
1178 Valid values are nil, t, `head', `last', an integer or a predicate.
1179 See Info node `(gnus)Customizing Articles' for details."
1180   :group 'gnus-article-treat
1181   :link '(custom-manual "(gnus)Customizing Articles")
1182   :type gnus-article-treat-head-custom)
1183
1184 (defcustom gnus-treat-date-local nil
1185   "Display the Date in the local timezone.
1186 Valid values are nil, t, `head', `last', an integer or a predicate.
1187 See Info node `(gnus)Customizing Articles' for details."
1188   :group 'gnus-article-treat
1189   :link '(custom-manual "(gnus)Customizing Articles")
1190   :type gnus-article-treat-head-custom)
1191
1192 (defcustom gnus-treat-date-english nil
1193   "Display the Date in a format that can be read aloud in English.
1194 Valid values are nil, t, `head', `last', an integer or a predicate.
1195 See Info node `(gnus)Customizing Articles' for details."
1196   :version "22.1"
1197   :group 'gnus-article-treat
1198   :link '(custom-manual "(gnus)Customizing Articles")
1199   :type gnus-article-treat-head-custom)
1200
1201 (defcustom gnus-treat-date-lapsed nil
1202   "Display the Date header in a way that says how much time has elapsed.
1203 Valid values are nil, t, `head', `last', an integer or a predicate.
1204 See Info node `(gnus)Customizing Articles' for details."
1205   :group 'gnus-article-treat
1206   :link '(custom-manual "(gnus)Customizing Articles")
1207   :type gnus-article-treat-head-custom)
1208
1209 (defcustom gnus-treat-date-original nil
1210   "Display the date in the original timezone.
1211 Valid values are nil, t, `head', `last', an integer or a predicate.
1212 See Info node `(gnus)Customizing Articles' for details."
1213   :group 'gnus-article-treat
1214   :link '(custom-manual "(gnus)Customizing Articles")
1215   :type gnus-article-treat-head-custom)
1216
1217 (defcustom gnus-treat-date-iso8601 nil
1218   "Display the date in the ISO8601 format.
1219 Valid values are nil, t, `head', `last', an integer or a predicate.
1220 See Info node `(gnus)Customizing Articles' for details."
1221   :version "21.1"
1222   :group 'gnus-article-treat
1223   :link '(custom-manual "(gnus)Customizing Articles")
1224   :type gnus-article-treat-head-custom)
1225
1226 (defcustom gnus-treat-date-user-defined nil
1227   "Display the date in a user-defined format.
1228 The format is defined by the `gnus-article-time-format' variable.
1229 Valid values are nil, t, `head', `last', an integer or a predicate.
1230 See Info node `(gnus)Customizing Articles' for details."
1231   :group 'gnus-article-treat
1232   :link '(custom-manual "(gnus)Customizing Articles")
1233   :type gnus-article-treat-head-custom)
1234
1235 (defcustom gnus-treat-strip-headers-in-body t
1236   "Strip the X-No-Archive header line from the beginning of the body.
1237 Valid values are nil, t, `head', `last', an integer or a predicate.
1238 See Info node `(gnus)Customizing Articles' for details."
1239   :version "21.1"
1240   :group 'gnus-article-treat
1241   :link '(custom-manual "(gnus)Customizing Articles")
1242   :type gnus-article-treat-custom)
1243
1244 (defcustom gnus-treat-strip-trailing-blank-lines nil
1245   "Strip trailing blank lines.
1246 Valid values are nil, t, `head', `last', an integer or a predicate.
1247 See Info node `(gnus)Customizing Articles' for details."
1248   :group 'gnus-article-treat
1249   :link '(custom-manual "(gnus)Customizing Articles")
1250   :type gnus-article-treat-custom)
1251
1252 (defcustom gnus-treat-strip-leading-blank-lines nil
1253   "Strip leading blank lines.
1254 Valid values are nil, t, `head', `last', an integer or a predicate.
1255 See Info node `(gnus)Customizing Articles' for details."
1256   :group 'gnus-article-treat
1257   :link '(custom-manual "(gnus)Customizing Articles")
1258   :type gnus-article-treat-custom)
1259
1260 (defcustom gnus-treat-strip-multiple-blank-lines nil
1261   "Strip multiple blank lines.
1262 Valid values are nil, t, `head', `last', an integer or a predicate.
1263 See Info node `(gnus)Customizing Articles' for details."
1264   :group 'gnus-article-treat
1265   :link '(custom-manual "(gnus)Customizing Articles")
1266   :type gnus-article-treat-custom)
1267
1268 (defcustom gnus-treat-unfold-headers 'head
1269   "Unfold folded header lines.
1270 Valid values are nil, t, `head', `last', an integer or a predicate.
1271 See Info node `(gnus)Customizing Articles' for details."
1272   :version "22.1"
1273   :group 'gnus-article-treat
1274   :link '(custom-manual "(gnus)Customizing Articles")
1275   :type gnus-article-treat-custom)
1276
1277 (defcustom gnus-treat-fold-headers nil
1278   "Fold headers.
1279 Valid values are nil, t, `head', `last', an integer or a predicate.
1280 See Info node `(gnus)Customizing Articles' for details."
1281   :version "22.1"
1282   :group 'gnus-article-treat
1283   :link '(custom-manual "(gnus)Customizing Articles")
1284   :type gnus-article-treat-custom)
1285
1286 (defcustom gnus-treat-fold-newsgroups 'head
1287   "Fold the Newsgroups and Followup-To headers.
1288 Valid values are nil, t, `head', `last', an integer or a predicate.
1289 See Info node `(gnus)Customizing Articles' for details."
1290   :version "22.1"
1291   :group 'gnus-article-treat
1292   :link '(custom-manual "(gnus)Customizing Articles")
1293   :type gnus-article-treat-custom)
1294
1295 (defcustom gnus-treat-overstrike t
1296   "Treat overstrike highlighting.
1297 Valid values are nil, t, `head', `last', an integer or a predicate.
1298 See Info node `(gnus)Customizing Articles' for details."
1299   :group 'gnus-article-treat
1300   :link '(custom-manual "(gnus)Customizing Articles")
1301   :type gnus-article-treat-custom)
1302 (put 'gnus-treat-overstrike 'highlight t)
1303
1304 (defcustom gnus-treat-ansi-sequences (if (locate-library "ansi-color") t)
1305   "Treat ANSI SGR control sequences.
1306 Valid values are nil, t, `head', `last', an integer or a predicate.
1307 See Info node `(gnus)Customizing Articles' for details."
1308   :group 'gnus-article-treat
1309   :link '(custom-manual "(gnus)Customizing Articles")
1310   :type gnus-article-treat-custom)
1311
1312 (make-obsolete-variable 'gnus-treat-display-xface
1313                         'gnus-treat-display-x-face)
1314
1315 (defcustom gnus-treat-display-x-face
1316   (and (not noninteractive)
1317        (or (and (fboundp 'image-type-available-p)
1318                 (image-type-available-p 'xbm)
1319                 (string-match "^0x" (shell-command-to-string "uncompface"))
1320                 (executable-find "icontopbm"))
1321            (and (featurep 'xemacs)
1322                 (featurep 'xface)))
1323        'head)
1324   "Display X-Face headers.
1325 Valid values are nil, t, `head', `last', an integer or a predicate.
1326 See Info node `(gnus)Customizing Articles' and Info node
1327 `(gnus)X-Face' for details."
1328   :group 'gnus-article-treat
1329   :version "21.1"
1330   :link '(custom-manual "(gnus)Customizing Articles")
1331   :link '(custom-manual "(gnus)X-Face")
1332   :type gnus-article-treat-head-custom
1333   :set (lambda (symbol value)
1334          (set-default
1335           symbol
1336           (cond ((or (boundp symbol) (get symbol 'saved-value))
1337                  value)
1338                 ((boundp 'gnus-treat-display-xface)
1339                  (message "\
1340 ** gnus-treat-display-xface is an obsolete variable;\
1341  use gnus-treat-display-x-face instead")
1342                  (default-value 'gnus-treat-display-xface))
1343                 ((get 'gnus-treat-display-xface 'saved-value)
1344                  (message "\
1345 ** gnus-treat-display-xface is an obsolete variable;\
1346  use gnus-treat-display-x-face instead")
1347                  (eval (car (get 'gnus-treat-display-xface 'saved-value))))
1348                 (t
1349                  value)))))
1350 (put 'gnus-treat-display-x-face 'highlight t)
1351
1352 (defcustom gnus-article-should-use-smiley-mule
1353   (not (or (featurep 'xemacs)
1354            (gnus-image-type-available-p 'xpm)
1355            (gnus-image-type-available-p 'pbm)))
1356   "Non-nil means use `smiley-mule' to show smileys rather than `smiley'.
1357 `smiley-mule' is boundled in BITMAP-MULE package.  You can set it to t
1358 even if your Emacs supports images.  It has no effect on XEmacs."
1359   :group 'gnus-article-various
1360   :type 'boolean
1361   :get (lambda (symbol)
1362          (and (not noninteractive)
1363               (default-value symbol)
1364               (not (featurep 'xemacs))
1365               (module-installed-p 'smiley-mule)
1366               t))
1367   :set (lambda (symbol value)
1368          (set-default symbol (and (not noninteractive)
1369                                   value
1370                                   (not (featurep 'xemacs))
1371                                   (module-installed-p 'smiley-mule)
1372                                   t))))
1373
1374 (defvar gnus-article-smiley-mule-loaded-p nil
1375   "Internal variable used to say whether `smiley-mule' is loaded (whether
1376 smiley functions are not overridden by `smiley').")
1377
1378 (defcustom gnus-treat-display-face
1379   (and (not noninteractive)
1380        (or (and (fboundp 'image-type-available-p)
1381                 (image-type-available-p 'png))
1382            (and (featurep 'xemacs)
1383                 (featurep 'png)))
1384        'head)
1385   "Display Face headers.
1386 Valid values are nil, t, `head', `last', an integer or a predicate.
1387 See Info node `(gnus)Customizing Articles' and Info node
1388 `(gnus)X-Face' for details."
1389   :group 'gnus-article-treat
1390   :version "22.1"
1391   :link '(custom-manual "(gnus)Customizing Articles")
1392   :link '(custom-manual "(gnus)X-Face")
1393   :type gnus-article-treat-head-custom)
1394 (put 'gnus-treat-display-face 'highlight t)
1395
1396 (defcustom gnus-treat-display-smileys
1397   (if (and (not noninteractive)
1398            (or (and (featurep 'xemacs)
1399                     (featurep 'xpm))
1400                (gnus-image-type-available-p 'xpm)
1401                (gnus-image-type-available-p 'pbm)
1402                (and (not (featurep 'xemacs))
1403                     window-system
1404                     (module-installed-p 'smiley-mule))))
1405       t
1406     nil)
1407   "Display smileys.
1408 Valid values are nil, t, `head', `last', an integer or a predicate.
1409 See Info node `(gnus)Customizing Articles' and Info node
1410 `(gnus)Smileys' for details."
1411   :group 'gnus-article-treat
1412   :version "21.1"
1413   :link '(custom-manual "(gnus)Customizing Articles")
1414   :link '(custom-manual "(gnus)Smileys")
1415   :type gnus-article-treat-custom)
1416 (put 'gnus-treat-display-smileys 'highlight t)
1417
1418 (defcustom gnus-treat-from-picon
1419   (if (and (gnus-image-type-available-p 'xpm)
1420            (gnus-picons-installed-p))
1421       'head nil)
1422   "Display picons in the From header.
1423 Valid values are nil, t, `head', `last', an integer or a predicate.
1424 See Info node `(gnus)Customizing Articles' and Info node
1425 `(gnus)Picons' for details."
1426   :version "22.1"
1427   :group 'gnus-article-treat
1428   :group 'gnus-picon
1429   :link '(custom-manual "(gnus)Customizing Articles")
1430   :link '(custom-manual "(gnus)Picons")
1431   :type gnus-article-treat-head-custom)
1432 (put 'gnus-treat-from-picon 'highlight t)
1433
1434 (defcustom gnus-treat-mail-picon
1435   (if (and (gnus-image-type-available-p 'xpm)
1436            (gnus-picons-installed-p))
1437       'head nil)
1438   "Display picons in To and Cc headers.
1439 Valid values are nil, t, `head', `last', an integer or a predicate.
1440 See Info node `(gnus)Customizing Articles' and Info node
1441 `(gnus)Picons' for details."
1442   :version "22.1"
1443   :group 'gnus-article-treat
1444   :group 'gnus-picon
1445   :link '(custom-manual "(gnus)Customizing Articles")
1446   :link '(custom-manual "(gnus)Picons")
1447   :type gnus-article-treat-head-custom)
1448 (put 'gnus-treat-mail-picon 'highlight t)
1449
1450 (defcustom gnus-treat-newsgroups-picon
1451   (if (and (gnus-image-type-available-p 'xpm)
1452            (gnus-picons-installed-p))
1453       'head nil)
1454   "Display picons in the Newsgroups and Followup-To headers.
1455 Valid values are nil, t, `head', `last', an integer or a predicate.
1456 See Info node `(gnus)Customizing Articles' and Info node
1457 `(gnus)Picons' for details."
1458   :version "22.1"
1459   :group 'gnus-article-treat
1460   :group 'gnus-picon
1461   :link '(custom-manual "(gnus)Customizing Articles")
1462   :link '(custom-manual "(gnus)Picons")
1463   :type gnus-article-treat-head-custom)
1464 (put 'gnus-treat-newsgroups-picon 'highlight t)
1465
1466 (defcustom gnus-treat-body-boundary
1467   (if (and (eq window-system 'x)
1468            (or gnus-treat-newsgroups-picon
1469                gnus-treat-mail-picon
1470                gnus-treat-from-picon))
1471       'head nil)
1472   "Draw a boundary at the end of the headers.
1473 Valid values are nil and `head'.
1474 See Info node `(gnus)Customizing Articles' for details."
1475   :version "22.1"
1476   :group 'gnus-article-treat
1477   :link '(custom-manual "(gnus)Customizing Articles")
1478   :type gnus-article-treat-head-custom)
1479
1480 (defcustom gnus-treat-capitalize-sentences nil
1481   "Capitalize sentence-starting words.
1482 Valid values are nil, t, `head', `last', an integer or a predicate.
1483 See Info node `(gnus)Customizing Articles' for details."
1484   :version "21.1"
1485   :group 'gnus-article-treat
1486   :link '(custom-manual "(gnus)Customizing Articles")
1487   :type gnus-article-treat-custom)
1488
1489 (defcustom gnus-treat-wash-html nil
1490   "Format as HTML.
1491 Valid values are nil, t, `head', `last', an integer or a predicate.
1492 See Info node `(gnus)Customizing Articles' for details."
1493   :version "22.1"
1494   :group 'gnus-article-treat
1495   :link '(custom-manual "(gnus)Customizing Articles")
1496   :type gnus-article-treat-custom)
1497
1498 (defcustom gnus-treat-fill-long-lines nil
1499   "Fill long lines.
1500 Valid values are nil, t, `head', `last', an integer or a predicate.
1501 See Info node `(gnus)Customizing Articles' for details."
1502   :group 'gnus-article-treat
1503   :link '(custom-manual "(gnus)Customizing Articles")
1504   :type gnus-article-treat-custom)
1505
1506 (defcustom gnus-treat-play-sounds nil
1507   "Play sounds.
1508 Valid values are nil, t, `head', `last', an integer or a predicate.
1509 See Info node `(gnus)Customizing Articles' for details."
1510   :version "21.1"
1511   :group 'gnus-article-treat
1512   :link '(custom-manual "(gnus)Customizing Articles")
1513   :type gnus-article-treat-custom)
1514
1515 (defcustom gnus-treat-decode-article-as-default-mime-charset nil
1516   "Decode an article as `default-mime-charset'.  For instance, if you want to
1517 attempt to decode an article even if the value of `gnus-show-mime' is nil,
1518 you could set this variable to something like: nil for don't decode, t for
1519 decode the body, '(or header t) for the whole article, etc."
1520   :group 'gnus-article-treat
1521   :type '(radio (const :tag "Off" nil)
1522                 (const :tag "Decode body" t)
1523                 (const :tag "Decode all" (or head t))))
1524
1525 (defcustom gnus-treat-translate nil
1526   "Translate articles from one language to another.
1527 Valid values are nil, t, `head', `last', an integer or a predicate.
1528 See Info node `(gnus)Customizing Articles' for details."
1529   :version "21.1"
1530   :group 'gnus-article-treat
1531   :link '(custom-manual "(gnus)Customizing Articles")
1532   :type gnus-article-treat-custom)
1533
1534 (defcustom gnus-treat-x-pgp-sig nil
1535   "Verify X-PGP-Sig.
1536 To automatically treat X-PGP-Sig, set it to head.
1537 Valid values are nil, t, `head', `last', an integer or a predicate.
1538 See Info node `(gnus)Customizing Articles' for details."
1539   :version "22.1"
1540   :group 'gnus-article-treat
1541   :group 'mime-security
1542   :type gnus-article-treat-custom)
1543
1544 (defcustom gnus-treat-monafy nil
1545   "Display body part with mona font.
1546 Valid values are nil, t, `head', `last', an integer or a predicate.
1547 See Info node `(gnus)Customizing Articles' for details."
1548   :group 'gnus-article-treat
1549   :group 'mime-security
1550   :link '(custom-manual "(gnus)Customizing Articles")
1551   :type gnus-article-treat-custom)
1552
1553 (defvar gnus-article-encrypt-protocol-alist
1554   '(("PGP" . mml2015-self-encrypt)))
1555
1556 ;; Set to nil if more than one protocol added to
1557 ;; gnus-article-encrypt-protocol-alist.
1558 (defcustom gnus-article-encrypt-protocol "PGP"
1559   "The protocol used for encrypt articles.
1560 It is a string, such as \"PGP\". If nil, ask user."
1561   :version "22.1"
1562   :type 'string
1563   :group 'mime-security)
1564
1565 (defvar gnus-article-wash-function nil
1566   "Function used for converting HTML into text.")
1567
1568 (defcustom gnus-use-idna (and (condition-case nil (require 'idna) (file-error))
1569                               (mm-coding-system-p 'utf-8)
1570                               (executable-find idna-program))
1571   "Whether IDNA decoding of headers is used when viewing messages.
1572 This requires GNU Libidn, and by default only enabled if it is found."
1573   :version "22.1"
1574   :group 'gnus-article-headers
1575   :type 'boolean)
1576
1577 (defcustom gnus-article-over-scroll nil
1578   "If non-nil, allow scrolling the article buffer even when there no more text."
1579   :version "22.1"
1580   :group 'gnus-article
1581   :type 'boolean)
1582
1583 ;;; Internal variables
1584
1585 (defvar gnus-english-month-names
1586   '("January" "February" "March" "April" "May" "June" "July" "August"
1587     "September" "October" "November" "December"))
1588
1589 (defvar gnus-button-regexp nil)
1590 (defvar gnus-button-marker-list nil)
1591 ;; Regexp matching any of the regexps from `gnus-button-alist'.
1592
1593 (defvar gnus-button-last nil)
1594 ;; The value of `gnus-button-alist' when `gnus-button-regexp' was build.
1595
1596 (defvar article-goto-body-goes-to-point-min-p nil)
1597 (defvar gnus-article-wash-types nil)
1598 (defvar gnus-article-emphasis-alist nil)
1599 (defvar gnus-article-image-alist nil)
1600
1601 (defvar gnus-article-mime-handle-alist-1 nil)
1602 (defvar gnus-treatment-function-alist
1603   '((gnus-treat-decode-article-as-default-mime-charset
1604      gnus-article-decode-article-as-default-mime-charset)
1605     (gnus-treat-x-pgp-sig gnus-article-verify-x-pgp-sig)
1606     (gnus-treat-monafy gnus-article-monafy)
1607     (gnus-treat-strip-banner gnus-article-strip-banner)
1608     (gnus-treat-strip-headers-in-body gnus-article-strip-headers-in-body)
1609     (gnus-treat-buttonize gnus-article-add-buttons)
1610     (gnus-treat-fill-article gnus-article-fill-cited-article)
1611     (gnus-treat-fill-long-lines gnus-article-fill-long-lines)
1612     (gnus-treat-strip-cr gnus-article-remove-cr)
1613     (gnus-treat-unsplit-urls gnus-article-unsplit-urls)
1614     (gnus-treat-date-ut gnus-article-date-ut)
1615     (gnus-treat-date-local gnus-article-date-local)
1616     (gnus-treat-date-english gnus-article-date-english)
1617     (gnus-treat-date-original gnus-article-date-original)
1618     (gnus-treat-date-user-defined gnus-article-date-user)
1619     (gnus-treat-date-iso8601 gnus-article-date-iso8601)
1620     (gnus-treat-date-lapsed gnus-article-date-lapsed)
1621     (gnus-treat-display-face gnus-article-display-face)
1622     (gnus-treat-hide-headers gnus-article-maybe-hide-headers)
1623     (gnus-treat-hide-boring-headers gnus-article-hide-boring-headers)
1624     (gnus-treat-hide-signature gnus-article-hide-signature)
1625     (gnus-treat-strip-list-identifiers gnus-article-hide-list-identifiers)
1626     (gnus-treat-leading-whitespace gnus-article-remove-leading-whitespace)
1627     (gnus-treat-strip-pem gnus-article-hide-pem)
1628     (gnus-treat-from-picon gnus-treat-from-picon)
1629     (gnus-treat-mail-picon gnus-treat-mail-picon)
1630     (gnus-treat-newsgroups-picon gnus-treat-newsgroups-picon)
1631     (gnus-treat-highlight-headers gnus-article-highlight-headers)
1632     (gnus-treat-highlight-signature gnus-article-highlight-signature)
1633     (gnus-treat-strip-trailing-blank-lines
1634      gnus-article-remove-trailing-blank-lines)
1635     (gnus-treat-strip-leading-blank-lines
1636      gnus-article-strip-leading-blank-lines)
1637     (gnus-treat-strip-multiple-blank-lines
1638      gnus-article-strip-multiple-blank-lines)
1639     (gnus-treat-overstrike gnus-article-treat-overstrike)
1640     (gnus-treat-ansi-sequences gnus-article-treat-ansi-sequences)
1641     (gnus-treat-unfold-headers gnus-article-treat-unfold-headers)
1642     (gnus-treat-fold-headers gnus-article-treat-fold-headers)
1643     ;; Displaying X-Face should be done after unfolding headers
1644     ;; to protect bitmap lines.
1645     (gnus-treat-display-x-face gnus-article-display-x-face)
1646     (gnus-treat-fold-newsgroups gnus-article-treat-fold-newsgroups)
1647     (gnus-treat-buttonize-head gnus-article-add-buttons-to-head)
1648     (gnus-treat-display-smileys gnus-treat-smiley)
1649     (gnus-treat-capitalize-sentences gnus-article-capitalize-sentences)
1650     (gnus-treat-wash-html gnus-article-wash-html)
1651     (gnus-treat-emphasize gnus-article-emphasize)
1652     (gnus-treat-hide-citation gnus-article-hide-citation)
1653     (gnus-treat-hide-citation-maybe gnus-article-hide-citation-maybe)
1654     (gnus-treat-highlight-citation gnus-article-highlight-citation)
1655     (gnus-treat-body-boundary gnus-article-treat-body-boundary)
1656     (gnus-treat-play-sounds gnus-earcon-display)))
1657
1658 (defvar gnus-article-mime-handle-alist nil)
1659 (defvar article-lapsed-timer nil)
1660 (defvar gnus-article-current-summary nil)
1661
1662 (defvar gnus-article-mode-syntax-table
1663   (let ((table (copy-syntax-table text-mode-syntax-table)))
1664     ;; This causes the citation match run O(2^n).
1665     ;; (modify-syntax-entry ?- "w" table)
1666     (modify-syntax-entry ?> ")<" table)
1667     (modify-syntax-entry ?< "(>" table)
1668     ;; make M-. in article buffers work for `foo' strings
1669     (modify-syntax-entry ?' " " table)
1670     (modify-syntax-entry ?` " " table)
1671     table)
1672   "Syntax table used in article mode buffers.
1673 Initialized from `text-mode-syntax-table.")
1674
1675 (defvar gnus-save-article-buffer nil)
1676
1677 (defvar gnus-article-mode-line-format-alist
1678   (nconc '((?w (gnus-article-wash-status) ?s)
1679            (?m (gnus-article-mime-part-status) ?s))
1680          gnus-summary-mode-line-format-alist))
1681
1682 (defvar gnus-number-of-articles-to-be-saved nil)
1683
1684 (defvar gnus-inhibit-hiding nil)
1685
1686 (defvar gnus-article-edit-mode nil)
1687
1688 ;;; Macros for dealing with the article buffer.
1689
1690 (defmacro gnus-with-article-headers (&rest forms)
1691   `(save-excursion
1692      (set-buffer gnus-article-buffer)
1693      (save-restriction
1694        (let ((inhibit-read-only t)
1695              (inhibit-point-motion-hooks t)
1696              (case-fold-search t))
1697          (article-narrow-to-head)
1698          ,@forms))))
1699
1700 (put 'gnus-with-article-headers 'lisp-indent-function 0)
1701 (put 'gnus-with-article-headers 'edebug-form-spec '(body))
1702
1703 (defmacro gnus-with-article-buffer (&rest forms)
1704   `(save-excursion
1705      (set-buffer gnus-article-buffer)
1706      (let ((inhibit-read-only t))
1707        ,@forms)))
1708
1709 (put 'gnus-with-article-buffer 'lisp-indent-function 0)
1710 (put 'gnus-with-article-buffer 'edebug-form-spec '(body))
1711
1712 (defun gnus-article-goto-header (header)
1713   "Go to HEADER, which is a regular expression."
1714   (re-search-forward (concat "^\\(" header "\\):") nil t))
1715
1716 (defsubst gnus-article-hide-text (b e props)
1717   "Set text PROPS on the B to E region, extending `intangible' 1 past B."
1718   (gnus-add-text-properties-when 'article-type nil b e props)
1719   (when (memq 'intangible props)
1720     (put-text-property
1721      (max (1- b) (point-min))
1722      b 'intangible (cddr (memq 'intangible props)))))
1723
1724 (defsubst gnus-article-unhide-text (b e)
1725   "Remove hidden text properties from region between B and E."
1726   (remove-text-properties b e gnus-hidden-properties)
1727   (when (memq 'intangible gnus-hidden-properties)
1728     (put-text-property (max (1- b) (point-min))
1729                        b 'intangible nil)))
1730
1731 (defun gnus-article-hide-text-type (b e type)
1732   "Hide text of TYPE between B and E."
1733   (gnus-add-wash-type type)
1734   (gnus-article-hide-text
1735    b e (cons 'article-type (cons type gnus-hidden-properties))))
1736
1737 (defun gnus-article-unhide-text-type (b e type)
1738   "Unhide text of TYPE between B and E."
1739   (gnus-delete-wash-type type)
1740   (remove-text-properties
1741    b e (cons 'article-type (cons type gnus-hidden-properties)))
1742   (when (memq 'intangible gnus-hidden-properties)
1743     (put-text-property (max (1- b) (point-min))
1744                        b 'intangible nil)))
1745
1746 (defun gnus-article-hide-text-of-type (type)
1747   "Hide text of TYPE in the current buffer."
1748   (save-excursion
1749     (let ((b (point-min))
1750           (e (point-max)))
1751       (while (setq b (text-property-any b e 'article-type type))
1752         (add-text-properties b (incf b) gnus-hidden-properties)))))
1753
1754 (defun gnus-article-delete-text-of-type (type)
1755   "Delete text of TYPE in the current buffer."
1756   (save-excursion
1757     (let ((b (point-min)))
1758       (while (setq b (text-property-any b (point-max) 'article-type type))
1759         (delete-region
1760          b (or (text-property-not-all b (point-max) 'article-type type)
1761                (point-max)))))))
1762
1763 (defun gnus-article-delete-invisible-text ()
1764   "Delete all invisible text in the current buffer."
1765   (save-excursion
1766     (let ((b (point-min)))
1767       (while (setq b (text-property-any b (point-max) 'invisible t))
1768         (delete-region
1769          b (or (text-property-not-all b (point-max) 'invisible t)
1770                (point-max)))))))
1771
1772 (defun gnus-article-text-type-exists-p (type)
1773   "Say whether any text of type TYPE exists in the buffer."
1774   (text-property-any (point-min) (point-max) 'article-type type))
1775
1776 (defsubst gnus-article-header-rank ()
1777   "Give the rank of the string HEADER as given by `gnus-sorted-header-list'."
1778   (let ((list gnus-sorted-header-list)
1779         (i 1))
1780     (while list
1781       (if (looking-at (car list))
1782           (setq list nil)
1783         (setq list (cdr list))
1784         (incf i)))
1785       i))
1786
1787 (defun article-hide-headers (&optional arg delete)
1788   "Hide unwanted headers and possibly sort them as well."
1789   (interactive (gnus-article-hidden-arg))
1790   ;; Lars said that this function might be inhibited.
1791   (if (gnus-article-check-hidden-text 'headers arg)
1792       (progn
1793         ;; Show boring headers as well.
1794         (gnus-article-show-hidden-text 'boring-headers)
1795         (when (eq 1 (point-min))
1796           (set-window-start (get-buffer-window (current-buffer)) 1)))
1797     (unless gnus-inhibit-hiding
1798       (let ((inhibit-read-only t)
1799             (case-fold-search t)
1800             (max (1+ (length gnus-sorted-header-list)))
1801             (inhibit-point-motion-hooks t)
1802             (cur (current-buffer))
1803             ignored visible beg)
1804         (save-excursion
1805           ;; `gnus-ignored-headers' and `gnus-visible-headers' may be
1806           ;; group parameters, so we should go to the summary buffer.
1807           (when (prog1
1808                     (condition-case nil
1809                         (progn (set-buffer gnus-summary-buffer) t)
1810                       (error nil))
1811                   (setq ignored (when (not gnus-visible-headers)
1812                                   (cond ((stringp gnus-ignored-headers)
1813                                          gnus-ignored-headers)
1814                                         ((listp gnus-ignored-headers)
1815                                          (mapconcat 'identity
1816                                                     gnus-ignored-headers
1817                                                     "\\|"))))
1818                         visible (cond ((stringp gnus-visible-headers)
1819                                        gnus-visible-headers)
1820                                       ((and gnus-visible-headers
1821                                             (listp gnus-visible-headers))
1822                                        (mapconcat 'identity
1823                                                   gnus-visible-headers
1824                                                   "\\|")))))
1825             (set-buffer cur))
1826           (save-restriction
1827             ;; First we narrow to just the headers.
1828             (article-narrow-to-head)
1829             ;; Hide any "From " lines at the beginning of (mail) articles.
1830             (while (looking-at "From ")
1831               (forward-line 1))
1832             (unless (bobp)
1833               (if delete
1834                   (delete-region (point-min) (point))
1835                 (gnus-article-hide-text (point-min) (point)
1836                                         (nconc (list 'article-type 'headers)
1837                                                gnus-hidden-properties))))
1838             ;; Then treat the rest of the header lines.
1839             ;; Then we use the two regular expressions
1840             ;; `gnus-ignored-headers' and `gnus-visible-headers' to
1841             ;; select which header lines is to remain visible in the
1842             ;; article buffer.
1843             (while (re-search-forward "^[^ \t:]*:" nil t)
1844               (beginning-of-line)
1845               ;; Mark the rank of the header.
1846               (put-text-property
1847                (point) (1+ (point)) 'message-rank
1848                (if (or (and visible (looking-at visible))
1849                        (and ignored
1850                             (not (looking-at ignored))))
1851                    (gnus-article-header-rank)
1852                  (+ 2 max)))
1853               (forward-line 1))
1854             (message-sort-headers-1)
1855             (when (setq beg (text-property-any
1856                              (point-min) (point-max) 'message-rank (+ 2 max)))
1857               ;; We delete or make invisible the unwanted headers.
1858               (gnus-add-wash-type 'headers)
1859               (if delete
1860                   (progn
1861                     (add-text-properties
1862                      (point-min) (+ 5 (point-min))
1863                      '(article-type headers dummy-invisible t))
1864                     (delete-region beg (point-max)))
1865                 (gnus-article-hide-text-type beg (point-max) 'headers)))))))))
1866
1867 (defun article-hide-boring-headers (&optional arg)
1868   "Toggle hiding of headers that aren't very interesting.
1869 If given a negative prefix, always show; if given a positive prefix,
1870 always hide."
1871   (interactive (gnus-article-hidden-arg))
1872   (when (and (not (gnus-article-check-hidden-text 'boring-headers arg))
1873              (not gnus-show-all-headers))
1874     (save-excursion
1875       (save-restriction
1876         (let ((inhibit-read-only t)
1877               (inhibit-point-motion-hooks t))
1878           (article-narrow-to-head)
1879           (dolist (elem gnus-boring-article-headers)
1880             (goto-char (point-min))
1881             (cond
1882              ;; Hide empty headers.
1883              ((eq elem 'empty)
1884               (while (re-search-forward "^[^: \t]+:[ \t]*\n[^ \t]" nil t)
1885                 (forward-line -1)
1886                 (gnus-article-hide-text-type
1887                  (point-at-bol)
1888                  (progn
1889                    (end-of-line)
1890                    (if (re-search-forward "^[^ \t]" nil t)
1891                        (match-beginning 0)
1892                      (point-max)))
1893                  'boring-headers)))
1894              ;; Hide boring Newsgroups header.
1895              ((eq elem 'newsgroups)
1896               (when (gnus-string-equal
1897                      (gnus-fetch-field "newsgroups")
1898                      (gnus-group-real-name
1899                       (if (boundp 'gnus-newsgroup-name)
1900                           gnus-newsgroup-name
1901                         "")))
1902                 (gnus-article-hide-header "newsgroups")))
1903              ((eq elem 'to-address)
1904               (let ((to (message-fetch-field "to"))
1905                     (to-address
1906                      (gnus-parameter-to-address
1907                       (if (boundp 'gnus-newsgroup-name)
1908                           gnus-newsgroup-name ""))))
1909                 (when (and to to-address
1910                            (ignore-errors
1911                              (gnus-string-equal
1912                               ;; only one address in To
1913                               (nth 1 (mail-extract-address-components to))
1914                               to-address)))
1915                   (gnus-article-hide-header "to"))))
1916              ((eq elem 'to-list)
1917               (let ((to (message-fetch-field "to"))
1918                     (to-list
1919                      (gnus-parameter-to-list
1920                       (if (boundp 'gnus-newsgroup-name)
1921                           gnus-newsgroup-name ""))))
1922                 (when (and to to-list
1923                            (ignore-errors
1924                              (gnus-string-equal
1925                               ;; only one address in To
1926                               (nth 1 (mail-extract-address-components to))
1927                               to-list)))
1928                   (gnus-article-hide-header "to"))))
1929              ((eq elem 'cc-list)
1930               (let ((cc (message-fetch-field "cc"))
1931                     (to-list
1932                      (gnus-parameter-to-list
1933                       (if (boundp 'gnus-newsgroup-name)
1934                           gnus-newsgroup-name ""))))
1935                 (when (and cc to-list
1936                            (ignore-errors
1937                              (gnus-string-equal
1938                               ;; only one address in CC
1939                               (nth 1 (mail-extract-address-components cc))
1940                               to-list)))
1941                   (gnus-article-hide-header "cc"))))
1942              ((eq elem 'followup-to)
1943               (when (gnus-string-equal
1944                      (message-fetch-field "followup-to")
1945                      (message-fetch-field "newsgroups"))
1946                 (gnus-article-hide-header "followup-to")))
1947              ((eq elem 'reply-to)
1948               (if (gnus-group-find-parameter
1949                    gnus-newsgroup-name 'broken-reply-to)
1950                   (gnus-article-hide-header "reply-to")
1951                 (let ((from (message-fetch-field "from"))
1952                       (reply-to (message-fetch-field "reply-to")))
1953                   (when
1954                       (and
1955                        from reply-to
1956                        (ignore-errors
1957                          (equal
1958                           (sort (mapcar
1959                                  (lambda (x) (downcase (cadr x)))
1960                                  (mail-extract-address-components from t))
1961                                 'string<)
1962                           (sort (mapcar
1963                                  (lambda (x) (downcase (cadr x)))
1964                                  (mail-extract-address-components reply-to t))
1965                                 'string<))))
1966                     (gnus-article-hide-header "reply-to")))))
1967              ((eq elem 'date)
1968               (let ((date (message-fetch-field "date")))
1969                 (when (and date
1970                            (< (days-between (current-time-string) date)
1971                               4))
1972                   (gnus-article-hide-header "date"))))
1973              ((eq elem 'long-to)
1974               (let ((to (message-fetch-field "to"))
1975                     (cc (message-fetch-field "cc")))
1976                 (when (> (length to) 1024)
1977                   (gnus-article-hide-header "to"))
1978                 (when (> (length cc) 1024)
1979                   (gnus-article-hide-header "cc"))))
1980              ((eq elem 'many-to)
1981               (let ((to-count 0)
1982                     (cc-count 0))
1983                 (goto-char (point-min))
1984                 (while (re-search-forward "^to:" nil t)
1985                   (setq to-count (1+ to-count)))
1986                 (when (> to-count 1)
1987                   (while (> to-count 0)
1988                     (goto-char (point-min))
1989                     (save-restriction
1990                       (re-search-forward "^to:" nil nil to-count)
1991                       (forward-line -1)
1992                       (narrow-to-region (point) (point-max))
1993                       (gnus-article-hide-header "to"))
1994                     (setq to-count (1- to-count))))
1995                 (goto-char (point-min))
1996                 (while (re-search-forward "^cc:" nil t)
1997                   (setq cc-count (1+ cc-count)))
1998                 (when (> cc-count 1)
1999                   (while (> cc-count 0)
2000                     (goto-char (point-min))
2001                     (save-restriction
2002                       (re-search-forward "^cc:" nil nil cc-count)
2003                       (forward-line -1)
2004                       (narrow-to-region (point) (point-max))
2005                       (gnus-article-hide-header "cc"))
2006                     (setq cc-count (1- cc-count)))))))))))))
2007
2008 (defun gnus-article-hide-header (header)
2009   (save-excursion
2010     (goto-char (point-min))
2011     (when (re-search-forward (concat "^" header ":") nil t)
2012       (gnus-article-hide-text-type
2013        (point-at-bol)
2014        (progn
2015          (end-of-line)
2016          (if (re-search-forward "^[^ \t]" nil t)
2017              (match-beginning 0)
2018            (point-max)))
2019        'boring-headers))))
2020
2021 (defvar gnus-article-normalized-header-length 40
2022   "Length of normalized headers.")
2023
2024 (defun article-normalize-headers ()
2025   "Make all header lines 40 characters long."
2026   (interactive)
2027   (let ((inhibit-read-only t)
2028         column)
2029     (save-excursion
2030       (save-restriction
2031         (article-narrow-to-head)
2032         (while (not (eobp))
2033           (cond
2034            ((< (setq column (- (point-at-eol) (point)))
2035                gnus-article-normalized-header-length)
2036             (end-of-line)
2037             (insert (make-string
2038                      (- gnus-article-normalized-header-length column)
2039                      ? )))
2040            ((> column gnus-article-normalized-header-length)
2041             (gnus-put-text-property
2042              (progn
2043                (forward-char gnus-article-normalized-header-length)
2044                (point))
2045              (point-at-eol)
2046              'invisible t))
2047            (t
2048             ;; Do nothing.
2049             ))
2050           (forward-line 1))))))
2051
2052 (defun article-treat-dumbquotes ()
2053   "Translate M****s*** sm*rtq**t*s and other symbols into proper text.
2054 Note that this function guesses whether a character is a sm*rtq**t* or
2055 not, so it should only be used interactively.
2056
2057 Sm*rtq**t*s are M****s***'s unilateral extension to the
2058 iso-8859-1 character map in an attempt to provide more quoting
2059 characters.  If you see something like \\222 or \\264 where
2060 you're expecting some kind of apostrophe or quotation mark, then
2061 try this wash."
2062   (interactive)
2063   (article-translate-strings gnus-article-dumbquotes-map))
2064
2065 (defun article-translate-characters (from to)
2066   "Translate all characters in the body of the article according to FROM and TO.
2067 FROM is a string of characters to translate from; to is a string of
2068 characters to translate to."
2069   (save-excursion
2070     (when (article-goto-body)
2071       (let ((inhibit-read-only t)
2072             (x (make-string 225 ?x))
2073             (i -1))
2074         (while (< (incf i) (length x))
2075           (aset x i i))
2076         (setq i 0)
2077         (while (< i (length from))
2078           (aset x (aref from i) (aref to i))
2079           (incf i))
2080         (translate-region (point) (point-max) x)))))
2081
2082 (defun article-translate-strings (map)
2083   "Translate all string in the body of the article according to MAP.
2084 MAP is an alist where the elements are on the form (\"from\" \"to\")."
2085   (save-excursion
2086     (when (article-goto-body)
2087       (let ((inhibit-read-only t))
2088         (dolist (elem map)
2089           (save-excursion
2090             (while (search-forward (car elem) nil t)
2091               (replace-match (cadr elem)))))))))
2092
2093 (defun article-treat-overstrike ()
2094   "Translate overstrikes into bold text."
2095   (interactive)
2096   (save-excursion
2097     (when (article-goto-body)
2098       (let ((inhibit-read-only t))
2099         (while (search-forward "\b" nil t)
2100           (let ((next (char-after))
2101                 start end previous)
2102             (backward-char 2)
2103             (setq start (point)
2104                   previous (char-after))
2105             (forward-char 3)
2106             (setq end (point))
2107             (backward-char)
2108             ;; We do the boldification/underlining by hiding the
2109             ;; overstrikes and putting the proper text property
2110             ;; on the letters.
2111             (cond
2112              ((eq next previous)
2113               (gnus-article-hide-text-type start (point) 'overstrike)
2114               (put-text-property (point) end 'face 'bold))
2115              ((eq next ?_)
2116               (gnus-article-hide-text-type
2117                (1- (point)) (1+ (point)) 'overstrike)
2118               (put-text-property
2119                start (1- (point)) 'face 'underline))
2120              ((eq previous ?_)
2121               (gnus-article-hide-text-type start (point) 'overstrike)
2122               (put-text-property
2123                (point) end 'face 'underline)))))))))
2124
2125 (defun article-treat-ansi-sequences ()
2126   "Translate ANSI SGR control sequences into overlays or extents."
2127   (interactive)
2128   (save-excursion
2129     (when (article-goto-body)
2130       (let ((inhibit-read-only t))
2131         (ansi-color-apply-on-region (point) (point-max))))))
2132
2133 (defun gnus-article-treat-unfold-headers ()
2134   "Unfold folded message headers.
2135 Only the headers that fit into the current window width will be
2136 unfolded."
2137   (interactive)
2138   (gnus-with-article-headers
2139     (let (length)
2140       (while (not (eobp))
2141         (save-restriction
2142           (mail-header-narrow-to-field)
2143           (let ((header (buffer-string)))
2144             (with-temp-buffer
2145               (insert header)
2146               (goto-char (point-min))
2147               (while (re-search-forward "\n[\t ]" nil t)
2148                 (replace-match " " t t)))
2149             (setq length (- (point-max) (point-min) 1)))
2150           (when (< length (window-width))
2151             (while (re-search-forward "\n[\t ]" nil t)
2152               (replace-match " " t t)))
2153           (goto-char (point-max)))))))
2154
2155 (defun gnus-article-treat-fold-headers ()
2156   "Fold message headers."
2157   (interactive)
2158   (gnus-with-article-headers
2159     (while (not (eobp))
2160       (save-restriction
2161         (mail-header-narrow-to-field)
2162         (mail-header-fold-field)
2163         (goto-char (point-max))))))
2164
2165 (defun gnus-treat-smiley ()
2166   "Toggle display of textual emoticons (\"smileys\") as small graphical icons."
2167   (interactive)
2168   (unless (featurep 'xemacs)
2169     (when (and (not gnus-article-should-use-smiley-mule)
2170                gnus-article-smiley-mule-loaded-p)
2171       (load "smiley" nil t)
2172       (setq gnus-article-smiley-mule-loaded-p nil))
2173     (when (and gnus-article-should-use-smiley-mule
2174                (not gnus-article-smiley-mule-loaded-p))
2175       (load "smiley-mule" nil t)
2176       (setq gnus-article-smiley-mule-loaded-p t)))
2177   (gnus-with-article-buffer
2178     (if (memq 'smiley gnus-article-wash-types)
2179         (gnus-delete-images 'smiley)
2180       (article-goto-body)
2181       (let ((images (smiley-region (point) (point-max))))
2182         (when images
2183           (gnus-add-wash-type 'smiley)
2184           (dolist (image images)
2185             (gnus-add-image 'smiley image)))))))
2186
2187 (defun gnus-article-remove-images ()
2188   "Remove all images from the article buffer."
2189   (interactive)
2190   (gnus-with-article-buffer
2191     (dolist (elem gnus-article-image-alist)
2192       (gnus-delete-images (car elem)))))
2193
2194 (defun gnus-article-treat-fold-newsgroups ()
2195   "Unfold folded message headers.
2196 Only the headers that fit into the current window width will be
2197 unfolded."
2198   (interactive)
2199   (gnus-with-article-headers
2200     (while (gnus-article-goto-header "newsgroups\\|followup-to")
2201       (save-restriction
2202         (mail-header-narrow-to-field)
2203         (while (re-search-forward ", *" nil t)
2204           (replace-match ", " t t))
2205         (mail-header-fold-field)
2206         (goto-char (point-max))))))
2207
2208 (defun gnus-article-treat-body-boundary ()
2209   "Place a boundary line at the end of the headers."
2210   (interactive)
2211   (when (and gnus-body-boundary-delimiter
2212              (> (length gnus-body-boundary-delimiter) 0))
2213     (gnus-with-article-headers
2214       (goto-char (point-max))
2215       (let ((start (point)))
2216         (insert "X-Boundary: ")
2217         (gnus-add-text-properties start (point) '(invisible t intangible t))
2218         (insert (let (str)
2219                   (while (>= (1- (window-width)) (length str))
2220                     (setq str (concat str gnus-body-boundary-delimiter)))
2221                   (substring str 0 (1- (window-width))))
2222                 "\n")
2223         (gnus-put-text-property start (point) 'gnus-decoration 'header)))))
2224
2225 (defun article-fill-long-lines ()
2226   "Fill lines that are wider than the window width."
2227   (interactive)
2228   (save-excursion
2229     (let ((inhibit-read-only t)
2230           (width (window-width (get-buffer-window (current-buffer)))))
2231       (save-restriction
2232         (article-goto-body)
2233         (let ((adaptive-fill-mode nil)) ;Why?  -sm
2234           (while (not (eobp))
2235             (end-of-line)
2236             (when (>= (current-column) (min fill-column width))
2237               (narrow-to-region (min (1+ (point)) (point-max))
2238                                 (point-at-bol))
2239               (let ((goback (point-marker)))
2240                 (fill-paragraph nil)
2241                 (goto-char (marker-position goback)))
2242               (widen))
2243             (forward-line 1)))))))
2244
2245 (defun article-capitalize-sentences ()
2246   "Capitalize the first word in each sentence."
2247   (interactive)
2248   (save-excursion
2249     (let ((inhibit-read-only t)
2250           (paragraph-start "^[\n\^L]"))
2251       (article-goto-body)
2252       (while (not (eobp))
2253         (capitalize-word 1)
2254         (forward-sentence)))))
2255
2256 (defun article-remove-cr ()
2257   "Remove trailing CRs and then translate remaining CRs into LFs."
2258   (interactive)
2259   (save-excursion
2260     (let ((inhibit-read-only t))
2261       (goto-char (point-min))
2262       (while (re-search-forward "\r+$" nil t)
2263         (replace-match "" t t))
2264       (goto-char (point-min))
2265       (while (search-forward "\r" nil t)
2266         (replace-match "\n" t t)))))
2267
2268 (defun article-remove-trailing-blank-lines ()
2269   "Remove all trailing blank lines from the article."
2270   (interactive)
2271   (save-excursion
2272     (let ((inhibit-read-only t))
2273       (goto-char (point-max))
2274       (delete-region
2275        (point)
2276        (progn
2277          (while (and (not (bobp))
2278                      (looking-at "^[ \t]*$")
2279                      (not (gnus-annotation-in-region-p
2280                            (point) (point-at-eol))))
2281            (forward-line -1))
2282          (forward-line 1)
2283          (point))))))
2284
2285 (eval-when-compile
2286   (defvar gnus-face-properties-alist))
2287
2288 (defun article-display-face ()
2289   "Display any Face headers in the header."
2290   (interactive)
2291   (let ((wash-face-p buffer-read-only))
2292     (gnus-with-article-headers
2293       ;; When displaying parts, this function can be called several times on
2294       ;; the same article, without any intended toggle semantic (as typing `W
2295       ;; D d' would have). So face deletion must occur only when we come from
2296       ;; an interactive command, that is when the *Article* buffer is
2297       ;; read-only.
2298       (if (and wash-face-p (memq 'face gnus-article-wash-types))
2299           (gnus-delete-images 'face)
2300         (let (face faces from)
2301           (save-current-buffer
2302             (when (and wash-face-p
2303                        (gnus-buffer-live-p gnus-original-article-buffer)
2304                        (not (re-search-forward "^Face:[\t ]*" nil t)))
2305               (set-buffer gnus-original-article-buffer))
2306             (save-restriction
2307               (mail-narrow-to-head)
2308               (while (gnus-article-goto-header "Face")
2309                 (push (mail-header-field-value) faces))))
2310           (when faces
2311             (goto-char (point-min))
2312             (let ((from (gnus-article-goto-header "from"))
2313                   png image)
2314               (unless from
2315                 (insert "From:")
2316                 (setq from (point))
2317                 (insert "[no `from' set]\n"))
2318               (while faces
2319                 (when (setq png (gnus-convert-face-to-png (pop faces)))
2320                   (setq image
2321                         (apply 'gnus-create-image png 'png t
2322                                (cdr (assq 'png gnus-face-properties-alist))))
2323                   (goto-char from)
2324                   (gnus-add-wash-type 'face)
2325                   (gnus-add-image 'face image)
2326                   (gnus-put-image image nil 'face))))))))))
2327
2328 (defun article-display-x-face (&optional force)
2329   "Look for an X-Face header and display it if present."
2330   (interactive (list 'force))
2331   (let ((wash-face-p buffer-read-only)) ;; When type `W f'
2332     (gnus-with-article-headers
2333       ;; Delete the old process, if any.
2334       (when (process-status "article-x-face")
2335         (delete-process "article-x-face"))
2336       ;; See the comment in `article-display-face'.
2337       (if (and wash-face-p (memq 'xface gnus-article-wash-types))
2338           ;; We have already displayed X-Faces, so we remove them
2339           ;; instead.
2340           (gnus-delete-images 'xface)
2341         ;; Display X-Faces.
2342         (let (x-faces from face)
2343           (save-current-buffer
2344             (when (and wash-face-p
2345                        (gnus-buffer-live-p gnus-original-article-buffer)
2346                        (not (re-search-forward "^X-Face:[\t ]*" nil t)))
2347               ;; If type `W f', use gnus-original-article-buffer,
2348               ;; otherwise use the current buffer because displaying
2349               ;; RFC822 parts calls this function too.
2350               (set-buffer gnus-original-article-buffer))
2351             (save-restriction
2352               (mail-narrow-to-head)
2353               (while (gnus-article-goto-header "X-Face")
2354                 (push (mail-header-field-value) x-faces))
2355               (setq from (message-fetch-field "from"))))
2356           ;; Sending multiple EOFs to xv doesn't work, so we only do a
2357           ;; single external face.
2358           (when (stringp gnus-article-x-face-command)
2359             (setq x-faces (list (car x-faces))))
2360           (when (and x-faces
2361                      gnus-article-x-face-command
2362                      (or force
2363                          ;; Check whether this face is censored.
2364                          (not gnus-article-x-face-too-ugly)
2365                          (and from
2366                               (not (string-match gnus-article-x-face-too-ugly
2367                                                  from)))))
2368             (while (setq face (pop x-faces))
2369               ;; We display the face.
2370               (cond ((stringp gnus-article-x-face-command)
2371                      ;; The command is a string, so we interpret the command
2372                      ;; as a, well, command, and fork it off.
2373                      (let ((process-connection-type nil))
2374                        (gnus-set-process-query-on-exit-flag
2375                         (start-process
2376                          "article-x-face" nil shell-file-name
2377                          shell-command-switch gnus-article-x-face-command)
2378                         nil)
2379                        (with-temp-buffer
2380                          (insert face)
2381                          (process-send-region "article-x-face"
2382                                               (point-min) (point-max)))
2383                        (process-send-eof "article-x-face")))
2384                     ((functionp gnus-article-x-face-command)
2385                      ;; The command is a lisp function, so we call it.
2386                      (funcall gnus-article-x-face-command face))
2387                     (t
2388                      (error "%s is not a function"
2389                             gnus-article-x-face-command))))))))))
2390
2391 (defun article-decode-mime-words ()
2392   "Decode all MIME-encoded words in the article."
2393   (interactive)
2394   (gnus-with-article-buffer
2395     (let ((inhibit-point-motion-hooks t)
2396           (mail-parse-charset gnus-newsgroup-charset)
2397           (mail-parse-ignored-charsets
2398            (with-current-buffer gnus-summary-buffer
2399              gnus-newsgroup-ignored-charsets)))
2400       (mail-decode-encoded-word-region (point-min) (point-max)))))
2401
2402 (defun article-decode-charset (&optional prompt)
2403   "Decode charset-encoded text in the article.
2404 If PROMPT (the prefix), prompt for a coding system to use."
2405   (interactive "P")
2406   (let ((inhibit-point-motion-hooks t) (case-fold-search t)
2407         (inhibit-read-only t)
2408         (mail-parse-charset gnus-newsgroup-charset)
2409         (mail-parse-ignored-charsets
2410          (save-excursion (condition-case nil
2411                              (set-buffer gnus-summary-buffer)
2412                            (error))
2413                          gnus-newsgroup-ignored-charsets))
2414         ct cte ctl charset format)
2415     (save-excursion
2416       (save-restriction
2417         (article-narrow-to-head)
2418         (setq ct (message-fetch-field "Content-Type" t)
2419               cte (message-fetch-field "Content-Transfer-Encoding" t)
2420               ctl (and ct (ignore-errors
2421                             (mail-header-parse-content-type ct)))
2422               charset (cond
2423                        (prompt
2424                         (mm-read-coding-system "Charset to decode: "))
2425                        (ctl
2426                         (mail-content-type-get ctl 'charset)))
2427               format (and ctl (mail-content-type-get ctl 'format)))
2428         (when cte
2429           (setq cte (mail-header-strip cte)))
2430         (if (and ctl (not (string-match "/" (car ctl))))
2431             (setq ctl nil))
2432         (goto-char (point-max)))
2433       (forward-line 1)
2434       (save-restriction
2435         (narrow-to-region (point) (point-max))
2436         (when (and (eq mail-parse-charset 'gnus-decoded)
2437                    (eq (mm-body-7-or-8) '8bit))
2438           ;; The text code could have been decoded.
2439           (setq charset mail-parse-charset))
2440         (when (and (or (not ctl)
2441                        (equal (car ctl) "text/plain"))
2442                    (not format)) ;; article with format will decode later.
2443           (mm-decode-body
2444            charset (and cte (intern (downcase
2445                                      (gnus-strip-whitespace cte))))
2446            (car ctl)))))))
2447
2448 (defun article-decode-encoded-words ()
2449   "Remove encoded-word encoding from headers."
2450   (let ((charset (save-excursion
2451                    (set-buffer gnus-summary-buffer)
2452                    default-mime-charset))
2453         (inhibit-read-only t))
2454     (mime-decode-header-in-buffer charset)))
2455
2456 (defun article-decode-group-name ()
2457   "Decode group names in `Newsgroups:'."
2458   (let ((inhibit-point-motion-hooks t)
2459         (inhibit-read-only t)
2460         (method (gnus-find-method-for-group gnus-newsgroup-name)))
2461     (when (and (or gnus-group-name-charset-method-alist
2462                    gnus-group-name-charset-group-alist)
2463                (gnus-buffer-live-p gnus-original-article-buffer))
2464       (save-restriction
2465         (article-narrow-to-head)
2466         (with-current-buffer gnus-original-article-buffer
2467           (goto-char (point-min)))
2468         (while (re-search-forward
2469                 "^Newsgroups:\\(\\(.\\|\n[\t ]\\)*\\)\n[^\t ]" nil t)
2470           (replace-match (save-match-data
2471                            (gnus-decode-newsgroups
2472                             ;; XXX how to use data in article buffer?
2473                             (with-current-buffer gnus-original-article-buffer
2474                               (re-search-forward
2475                                "^Newsgroups:\\(\\(.\\|\n[\t ]\\)*\\)\n[^\t ]"
2476                                nil t)
2477                               (match-string 1))
2478                             gnus-newsgroup-name method))
2479                          t t nil 1))
2480         (goto-char (point-min))
2481         (with-current-buffer gnus-original-article-buffer
2482           (goto-char (point-min)))
2483         (while (re-search-forward
2484                 "^Followup-To:\\(\\(.\\|\n[\t ]\\)*\\)\n[^\t ]" nil t)
2485           (replace-match (save-match-data
2486                            (gnus-decode-newsgroups
2487                             ;; XXX how to use data in article buffer?
2488                             (with-current-buffer gnus-original-article-buffer
2489                               (re-search-forward
2490                                "^Followup-To:\\(\\(.\\|\n[\t ]\\)*\\)\n[^\t ]"
2491                                nil t)
2492                               (match-string 1))
2493                             gnus-newsgroup-name method))
2494                          t t nil 1))))))
2495
2496 (autoload 'idna-to-unicode "idna")
2497
2498 (defun article-decode-idna-rhs ()
2499   "Decode IDNA strings in RHS in From:, To: and Cc: headers in current buffer."
2500   (when gnus-use-idna
2501     (save-restriction
2502       (let ((inhibit-point-motion-hooks t)
2503             (inhibit-read-only t))
2504         (article-narrow-to-head)
2505         (goto-char (point-min))
2506         (while (re-search-forward "@.*\\(xn--[-A-Za-z0-9.]*\\)[ \t\n\r,>]" nil t)
2507           (let (ace unicode)
2508             (when (save-match-data
2509                     (and (setq ace (match-string 1))
2510                          (save-excursion
2511                            (and (re-search-backward "^[^ \t]" nil t)
2512                                 (looking-at "From\\|To\\|Cc")))
2513                          (setq unicode (idna-to-unicode ace))))
2514               (unless (string= ace unicode)
2515                 (replace-match unicode nil nil nil 1)))))))))
2516
2517 (defun article-de-quoted-unreadable (&optional force read-charset)
2518   "Translate a quoted-printable-encoded article.
2519 If FORCE, decode the article whether it is marked as quoted-printable
2520 or not.
2521 If READ-CHARSET, ask for a coding system."
2522   (interactive (list 'force current-prefix-arg))
2523   (save-excursion
2524     (let ((inhibit-read-only t) type charset)
2525       (if (gnus-buffer-live-p gnus-original-article-buffer)
2526           (with-current-buffer gnus-original-article-buffer
2527             (setq type
2528                   (gnus-fetch-field "content-transfer-encoding"))
2529             (let* ((ct (gnus-fetch-field "content-type"))
2530                    (ctl (and ct
2531                              (ignore-errors
2532                                (mail-header-parse-content-type ct)))))
2533               (setq charset (and ctl
2534                                  (mail-content-type-get ctl 'charset)))
2535               (if (stringp charset)
2536                   (setq charset (intern (downcase charset)))))))
2537       (if read-charset
2538           (setq charset (mm-read-coding-system "Charset: " charset)))
2539       (unless charset
2540         (setq charset gnus-newsgroup-charset))
2541       (when (or force
2542                 (and type (let ((case-fold-search t))
2543                             (string-match "quoted-printable" type))))
2544         (article-goto-body)
2545         (quoted-printable-decode-region
2546          (point) (point-max) (mm-charset-to-coding-system charset))))))
2547
2548 (defun article-de-base64-unreadable (&optional force read-charset)
2549   "Translate a base64 article.
2550 If FORCE, decode the article whether it is marked as base64 not.
2551 If READ-CHARSET, ask for a coding system."
2552   (interactive (list 'force current-prefix-arg))
2553   (save-excursion
2554     (let ((inhibit-read-only t) type charset)
2555       (if (gnus-buffer-live-p gnus-original-article-buffer)
2556           (with-current-buffer gnus-original-article-buffer
2557             (setq type
2558                   (gnus-fetch-field "content-transfer-encoding"))
2559             (let* ((ct (gnus-fetch-field "content-type"))
2560                    (ctl (and ct
2561                              (ignore-errors
2562                                (mail-header-parse-content-type ct)))))
2563               (setq charset (and ctl
2564                                  (mail-content-type-get ctl 'charset)))
2565               (if (stringp charset)
2566                   (setq charset (intern (downcase charset)))))))
2567       (if read-charset
2568           (setq charset (mm-read-coding-system "Charset: " charset)))
2569       (unless charset
2570         (setq charset gnus-newsgroup-charset))
2571       (when (or force
2572                 (and type (let ((case-fold-search t))
2573                             (string-match "base64" type))))
2574         (article-goto-body)
2575         (save-restriction
2576           (narrow-to-region (point) (point-max))
2577           (base64-decode-region (point-min) (point-max))
2578           (mm-decode-coding-region
2579            (point-min) (point-max) (mm-charset-to-coding-system charset)))))))
2580
2581 (eval-when-compile
2582   (require 'rfc1843))
2583
2584 (defun article-decode-HZ ()
2585   "Translate a HZ-encoded article."
2586   (interactive)
2587   (require 'rfc1843)
2588   (save-excursion
2589     (let ((inhibit-read-only t))
2590       (rfc1843-decode-region (point-min) (point-max)))))
2591
2592 (defun article-unsplit-urls ()
2593   "Remove the newlines that some other mailers insert into URLs."
2594   (interactive)
2595   (save-excursion
2596     (let ((inhibit-read-only t))
2597       (goto-char (point-min))
2598       (while (re-search-forward
2599               "\\(\\(https?\\|ftp\\)://\\S-+\\) *\n\\(\\S-+\\)" nil t)
2600         (replace-match "\\1\\3" t)))
2601     (when (interactive-p)
2602       (gnus-treat-article nil))))
2603
2604
2605 (defun article-wash-html (&optional read-charset)
2606   "Format an HTML article.
2607 If READ-CHARSET, ask for a coding system."
2608   (interactive "P")
2609   (save-excursion
2610     (let ((inhibit-read-only t)
2611           charset)
2612       (when (gnus-buffer-live-p gnus-original-article-buffer)
2613         (with-current-buffer gnus-original-article-buffer
2614           (let* ((ct (gnus-fetch-field "content-type"))
2615                  (ctl (and ct
2616                            (ignore-errors
2617                              (mail-header-parse-content-type ct)))))
2618             (setq charset (and ctl
2619                                (mail-content-type-get ctl 'charset)))
2620             (when (stringp charset)
2621               (setq charset (intern (downcase charset)))))))
2622       (when read-charset
2623         (setq charset (mm-read-coding-system "Charset: " charset)))
2624       (unless charset
2625         (setq charset gnus-newsgroup-charset))
2626       (article-goto-body)
2627       (save-window-excursion
2628         (save-restriction
2629           (narrow-to-region (point) (point-max))
2630           (let* ((func (or gnus-article-wash-function mm-text-html-renderer))
2631                  (entry (assq func mm-text-html-washer-alist)))
2632             (when entry
2633               (setq func (cdr entry)))
2634             (cond
2635              ((functionp func)
2636               (funcall func))
2637              (t
2638               (apply (car func) (cdr func))))))))))
2639
2640 (defun gnus-article-wash-html-with-w3 ()
2641   "Wash the current buffer with w3."
2642   (mm-setup-w3)
2643   (let ((w3-strict-width (window-width))
2644         (url-standalone-mode t)
2645         (url-gateway-unplugged t)
2646         (w3-honor-stylesheets nil))
2647     (condition-case ()
2648         (w3-region (point-min) (point-max))
2649       (error))))
2650
2651 (defun gnus-article-wash-html-with-w3m ()
2652   "Wash the current buffer with emacs-w3m."
2653   (mm-setup-w3m)
2654   (save-restriction
2655     (narrow-to-region (point) (point-max))
2656     (let ((w3m-safe-url-regexp mm-w3m-safe-url-regexp)
2657           w3m-force-redisplay)
2658       (w3m-region (point-min) (point-max)))
2659     (when (and mm-inline-text-html-with-w3m-keymap
2660                (boundp 'w3m-minor-mode-map)
2661                w3m-minor-mode-map)
2662       (add-text-properties
2663        (point-min) (point-max)
2664        (list 'keymap w3m-minor-mode-map
2665              ;; Put the mark meaning this part was rendered by emacs-w3m.
2666              'mm-inline-text-html-with-w3m t)))))
2667
2668 (defun article-hide-list-identifiers ()
2669   "Remove list identifies from the Subject header.
2670 The `gnus-list-identifiers' variable specifies what to do."
2671   (interactive)
2672   (let ((inhibit-point-motion-hooks t)
2673         (regexp (if (consp gnus-list-identifiers)
2674                     (mapconcat 'identity gnus-list-identifiers " *\\|")
2675                   gnus-list-identifiers))
2676         (inhibit-read-only t))
2677     (when regexp
2678       (save-excursion
2679         (save-restriction
2680           (article-narrow-to-head)
2681           (goto-char (point-min))
2682           (while (re-search-forward
2683                   (concat "^Subject: +\\(R[Ee]: +\\)*\\(" regexp " *\\)")
2684                   nil t)
2685             (delete-region (match-beginning 2) (match-end 0))
2686             (beginning-of-line))
2687           (when (re-search-forward
2688                  "^Subject: +\\(\\(R[Ee]: +\\)+\\)R[Ee]: +" nil t)
2689             (delete-region (match-beginning 1) (match-end 1))))))))
2690
2691 (defun article-hide-pem (&optional arg)
2692   "Toggle hiding of any PEM headers and signatures in the current article.
2693 If given a negative prefix, always show; if given a positive prefix,
2694 always hide."
2695   (interactive (gnus-article-hidden-arg))
2696   (unless (gnus-article-check-hidden-text 'pem arg)
2697     (save-excursion
2698       (let ((inhibit-read-only t) end)
2699         (goto-char (point-min))
2700         ;; Hide the horrendously ugly "header".
2701         (when (and (search-forward
2702                     "\n-----BEGIN PRIVACY-ENHANCED MESSAGE-----\n"
2703                     nil t)
2704                    (setq end (1+ (match-beginning 0))))
2705           (gnus-add-wash-type 'pem)
2706           (gnus-article-hide-text-type
2707            end
2708            (if (search-forward "\n\n" nil t)
2709                (match-end 0)
2710              (point-max))
2711            'pem)
2712           ;; Hide the trailer as well
2713           (when (search-forward "\n-----END PRIVACY-ENHANCED MESSAGE-----\n"
2714                                 nil t)
2715             (gnus-article-hide-text-type
2716              (match-beginning 0) (match-end 0) 'pem)))))))
2717
2718 (defun article-strip-banner ()
2719   "Strip the banners specified by the `banner' group parameter and by
2720 `gnus-article-address-banner-alist'."
2721   (interactive)
2722   (save-excursion
2723     (save-restriction
2724       (let ((inhibit-point-motion-hooks t))
2725         (when (gnus-parameter-banner gnus-newsgroup-name)
2726           (article-really-strip-banner
2727            (gnus-parameter-banner gnus-newsgroup-name)))
2728         (when gnus-article-address-banner-alist
2729           ;; It is necessary to encode from fields before checking,
2730           ;; because `mail-header-parse-addresses' does not work
2731           ;; (reliably) on decoded headers.  And more, it is
2732           ;; impossible to use `gnus-fetch-original-field' here,
2733           ;; because `article-strip-banner' may be called in draft
2734           ;; buffers to preview them.
2735           (let ((from (save-restriction
2736                         (widen)
2737                         (article-narrow-to-head)
2738                         (mail-fetch-field "from"))))
2739             (when (and from
2740                        (setq from
2741                              (caar (mail-header-parse-addresses
2742                                     (mail-encode-encoded-word-string from)))))
2743               (catch 'found
2744                 (dolist (pair gnus-article-address-banner-alist)
2745                   (when (string-match (car pair) from)
2746                     (throw 'found
2747                            (article-really-strip-banner (cdr pair)))))))))))))
2748
2749 (defun article-really-strip-banner (banner)
2750   "Strip the banner specified by the argument."
2751   (save-excursion
2752     (save-restriction
2753       (let ((inhibit-point-motion-hooks t)
2754             (gnus-signature-limit nil)
2755             (inhibit-read-only t))
2756         (article-goto-body)
2757         (cond
2758          ((eq banner 'signature)
2759           (when (gnus-article-narrow-to-signature)
2760             (widen)
2761             (forward-line -1)
2762             (delete-region (point) (point-max))))
2763          ((symbolp banner)
2764           (if (setq banner (cdr (assq banner gnus-article-banner-alist)))
2765               (while (re-search-forward banner nil t)
2766                 (delete-region (match-beginning 0) (match-end 0)))))
2767          ((stringp banner)
2768           (while (re-search-forward banner nil t)
2769             (delete-region (match-beginning 0) (match-end 0)))))))))
2770
2771 (defun article-babel ()
2772   "Translate article using an online translation service."
2773   (interactive)
2774   (require 'babel)
2775   (gnus-with-article-buffer
2776     (when (article-goto-body)
2777       (let* ((start (point))
2778              (end (point-max))
2779              (orig (buffer-substring start end))
2780              (trans (babel-as-string orig)))
2781         (save-restriction
2782           (narrow-to-region start end)
2783           (delete-region start end)
2784           (insert trans))))))
2785
2786 (defun article-hide-signature (&optional arg)
2787   "Hide the signature in the current article.
2788 If given a negative prefix, always show; if given a positive prefix,
2789 always hide."
2790   (interactive (gnus-article-hidden-arg))
2791   (save-excursion
2792     (save-restriction
2793       (if (interactive-p)
2794           (progn
2795             (widen)
2796             (article-goto-body))
2797         (goto-char (point-min)))
2798       (unless (gnus-article-check-hidden-text 'signature arg)
2799         (let ((inhibit-read-only t)
2800               (button (point)))
2801           (while (setq button (text-property-any button (point-max)
2802                                                  'gnus-callback
2803                                                  'gnus-signature-toggle))
2804             (setq button (text-property-not-all button (point-max)
2805                                                 'gnus-callback
2806                                                 'gnus-signature-toggle))
2807             (when (and button (not (eobp)))
2808               (gnus-article-hide-text-type
2809                (1+ button)
2810                (next-single-property-change (1+ button) 'mime-view-entity
2811                                             nil (point-max))
2812                'signature)))))))
2813   (gnus-set-mode-line 'article))
2814
2815 (defun article-strip-headers-in-body ()
2816   "Strip offensive headers from bodies."
2817   (interactive)
2818   (save-excursion
2819     (article-goto-body)
2820     (let ((case-fold-search t))
2821       (when (looking-at "x-no-archive:")
2822         (gnus-delete-line)))))
2823
2824 (defun article-strip-leading-blank-lines ()
2825   "Remove all blank lines from the beginning of the article."
2826   (interactive)
2827   (save-excursion
2828     (let ((inhibit-point-motion-hooks t)
2829           (inhibit-read-only t))
2830       (when (article-goto-body)
2831         (while (and (not (eobp))
2832                     (looking-at "[ \t]*$"))
2833           (gnus-delete-line))))))
2834
2835 (defun article-narrow-to-head ()
2836   "Narrow the buffer to the head of the message.
2837 Point is left at the beginning of the narrowed-to region."
2838   (narrow-to-region
2839    (goto-char (point-min))
2840    (if (search-forward "\n\n" nil 1)
2841        (1- (point))
2842      (point-max)))
2843   (goto-char (point-min)))
2844
2845 (defun article-goto-body ()
2846   "Place point at the start of the body."
2847   (goto-char (point-min))
2848   (cond
2849    ;; This variable is only bound when dealing with separate
2850    ;; MIME body parts.
2851    (article-goto-body-goes-to-point-min-p
2852     t)
2853    ((search-forward "\n\n" nil t)
2854     t)
2855    (t
2856     (goto-char (point-max))
2857     nil)))
2858
2859 (defun article-strip-multiple-blank-lines ()
2860   "Replace consecutive blank lines with one empty line."
2861   (interactive)
2862   (save-excursion
2863     (let ((inhibit-point-motion-hooks t)
2864           (inhibit-read-only t))
2865       ;; First make all blank lines empty.
2866       (article-goto-body)
2867       (while (re-search-forward "^[ \t]+$" nil t)
2868         (unless (gnus-annotation-in-region-p
2869                  (match-beginning 0) (match-end 0))
2870           (replace-match "" nil t)))
2871       ;; Then replace multiple empty lines with a single empty line.
2872       (article-goto-body)
2873       (while (re-search-forward "\n\n\\(\n+\\)" nil t)
2874         (unless (gnus-annotation-in-region-p
2875                  (match-beginning 0) (match-end 0))
2876           (delete-region (match-beginning 1) (match-end 1)))))))
2877
2878 (defun article-strip-leading-space ()
2879   "Remove all white space from the beginning of the lines in the article."
2880   (interactive)
2881   (save-excursion
2882     (let ((inhibit-point-motion-hooks t)
2883           (inhibit-read-only t))
2884       (article-goto-body)
2885       (while (re-search-forward "^[ \t]+" nil t)
2886         (replace-match "" t t)))))
2887
2888 (defun article-strip-trailing-space ()
2889   "Remove all white space from the end of the lines in the article."
2890   (interactive)
2891   (save-excursion
2892     (let ((inhibit-point-motion-hooks t)
2893           (inhibit-read-only t))
2894       (article-goto-body)
2895       (while (re-search-forward "[ \t]+$" nil t)
2896         (replace-match "" t t)))))
2897
2898 (defun article-strip-blank-lines ()
2899   "Strip leading, trailing and multiple blank lines."
2900   (interactive)
2901   (article-strip-leading-blank-lines)
2902   (article-remove-trailing-blank-lines)
2903   (article-strip-multiple-blank-lines))
2904
2905 (defun article-strip-all-blank-lines ()
2906   "Strip all blank lines."
2907   (interactive)
2908   (save-excursion
2909     (let ((inhibit-point-motion-hooks t)
2910           (inhibit-read-only t))
2911       (article-goto-body)
2912       (while (re-search-forward "^[ \t]*\n" nil t)
2913         (replace-match "" t t)))))
2914
2915 (defun gnus-article-narrow-to-signature ()
2916   "Narrow to the signature; return t if a signature is found, else nil."
2917   (let ((inhibit-point-motion-hooks t))
2918     (when (gnus-article-search-signature)
2919       (forward-line 1)
2920       ;; Check whether we have some limits to what we consider
2921       ;; to be a signature.
2922       (let ((limits (if (listp gnus-signature-limit) gnus-signature-limit
2923                       (list gnus-signature-limit)))
2924             limit limited)
2925         (while (setq limit (pop limits))
2926           (if (or (and (integerp limit)
2927                        (< (- (point-max) (point)) limit))
2928                   (and (floatp limit)
2929                        (< (count-lines (point) (point-max)) limit))
2930                   (and (functionp limit)
2931                        (funcall limit))
2932                   (and (stringp limit)
2933                        (not (re-search-forward limit nil t))))
2934               ()                        ; This limit did not succeed.
2935             (setq limited t
2936                   limits nil)))
2937         (unless limited
2938           (narrow-to-region (point) (point-max))
2939           t)))))
2940
2941 (defun gnus-article-search-signature ()
2942   "Search the current buffer for the signature separator.
2943 Put point at the beginning of the signature separator."
2944   (let ((cur (point)))
2945     (goto-char (point-max))
2946     (if (if (stringp gnus-signature-separator)
2947             (re-search-backward gnus-signature-separator nil t)
2948           (let ((seps gnus-signature-separator))
2949             (while (and seps
2950                         (not (re-search-backward (car seps) nil t)))
2951               (pop seps))
2952             seps))
2953         t
2954       (goto-char cur)
2955       nil)))
2956
2957 (defun gnus-article-hidden-arg ()
2958   "Return the current prefix arg as a number, or 0 if no prefix."
2959   (list (if current-prefix-arg
2960             (prefix-numeric-value current-prefix-arg)
2961           0)))
2962
2963 (defun gnus-article-check-hidden-text (type arg)
2964   "Return nil if hiding is necessary.
2965 Arg can be nil or a number.  nil and positive means hide, negative
2966 means show, 0 means toggle."
2967   (save-excursion
2968     (save-restriction
2969       (let ((hide (gnus-article-hidden-text-p type)))
2970         (cond
2971          ((or (null arg)
2972               (> arg 0))
2973           nil)
2974          ((< arg 0)
2975           (gnus-article-show-hidden-text type)
2976           t)
2977          (t
2978           (if (eq hide 'hidden)
2979               (progn
2980                 (gnus-article-show-hidden-text type)
2981                 t)
2982             nil)))))))
2983
2984 (defun gnus-article-hidden-text-p (type)
2985   "Say whether the current buffer contains hidden text of type TYPE."
2986   (let ((pos (text-property-any (point-min) (point-max) 'article-type type)))
2987     (while (and pos
2988                 (not (get-text-property pos 'invisible))
2989                 (not (get-text-property pos 'dummy-invisible)))
2990       (setq pos
2991             (text-property-any (1+ pos) (point-max) 'article-type type)))
2992     (if pos
2993         'hidden
2994       nil)))
2995
2996 (defun gnus-article-show-hidden-text (type &optional dummy)
2997   "Show all hidden text of type TYPE.
2998 Originally it is hide instead of DUMMY."
2999   (let ((inhibit-read-only t)
3000         (inhibit-point-motion-hooks t))
3001     (gnus-remove-text-properties-when
3002      'article-type type
3003      (point-min) (point-max)
3004      (cons 'article-type (cons type
3005                                gnus-hidden-properties)))
3006     (gnus-delete-wash-type type)))
3007
3008 (defconst article-time-units
3009   `((year . ,(* 365.25 24 60 60))
3010     (week . ,(* 7 24 60 60))
3011     (day . ,(* 24 60 60))
3012     (hour . ,(* 60 60))
3013     (minute . 60)
3014     (second . 1))
3015   "Mapping from time units to seconds.")
3016
3017 (defun gnus-article-forward-header ()
3018   "Move point to the start of the next header.
3019 If the current header is a continuation header, this can be several
3020 lines forward."
3021   (let ((ended nil))
3022     (while (not ended)
3023       (forward-line 1)
3024       (if (looking-at "[ \t]+[^ \t]")
3025           (forward-line 1)
3026         (setq ended t)))))
3027
3028 (defun article-date-ut (&optional type highlight)
3029   "Convert DATE date to universal time in the current article.
3030 If TYPE is `local', convert to local time; if it is `lapsed', output
3031 how much time has lapsed since DATE.  For `lapsed', the value of
3032 `gnus-article-date-lapsed-new-header' says whether the \"X-Sent:\" header
3033 should replace the \"Date:\" one, or should be added below it."
3034   (interactive (list 'ut t))
3035   (let* ((tdate-regexp "^Date:[ \t]\\|^X-Sent:[ \t]")
3036          (date-regexp (cond ((not gnus-article-date-lapsed-new-header)
3037                              tdate-regexp)
3038                             ((eq type 'lapsed)
3039                              "^X-Sent:[ \t]")
3040                             (article-lapsed-timer
3041                              "^Date:[ \t]")
3042                             (t
3043                              tdate-regexp)))
3044          (case-fold-search t)
3045          (inhibit-read-only t)
3046          (inhibit-point-motion-hooks t)
3047          pos date bface eface)
3048     (save-excursion
3049       (save-restriction
3050         (widen)
3051         (goto-char (point-min))
3052         (while (or (setq date (get-text-property (setq pos (point))
3053                                                  'original-date))
3054                    (when (setq pos (next-single-property-change
3055                                     (point) 'original-date))
3056                      (setq date (get-text-property pos 'original-date))
3057                      t))
3058           (narrow-to-region pos (or (text-property-any pos (point-max)
3059                                                        'original-date nil)
3060                                     (point-max)))
3061           (goto-char (point-min))
3062           (when (re-search-forward tdate-regexp nil t)
3063             (setq bface (get-text-property (point-at-bol) 'face)
3064                   eface (get-text-property (1- (point-at-eol)) 'face)))
3065           (goto-char (point-min))
3066           (setq pos nil)
3067           ;; Delete any old Date headers.
3068           (while (re-search-forward date-regexp nil t)
3069             (if pos
3070                 (delete-region (point-at-bol) (progn
3071                                                 (gnus-article-forward-header)
3072                                                 (point)))
3073               (delete-region (point-at-bol) (progn
3074                                               (gnus-article-forward-header)
3075                                               (forward-char -1)
3076                                               (point)))
3077               (setq pos (point))))
3078           (when (and (not pos)
3079                      (re-search-forward tdate-regexp nil t))
3080             (forward-line 1))
3081           (gnus-goto-char pos)
3082           (insert (article-make-date-line date (or type 'ut)))
3083           (unless pos
3084             (insert "\n")
3085             (forward-line -1))
3086           ;; Do highlighting.
3087           (beginning-of-line)
3088           (when (looking-at "\\([^:]+\\): *\\(.*\\)$")
3089             (put-text-property (match-beginning 1) (1+ (match-end 1))
3090                                'face bface)
3091             (put-text-property (match-beginning 2) (match-end 2)
3092                                'face eface))
3093           (put-text-property (point-min) (1- (point-max)) 'original-date date)
3094           (goto-char (point-max))
3095           (widen))))))
3096
3097 (defun article-make-date-line (date type)
3098   "Return a DATE line of TYPE."
3099   (unless (memq type '(local ut original user iso8601 lapsed english))
3100     (error "Unknown conversion type: %s" type))
3101   (condition-case ()
3102       (let ((time (date-to-time date)))
3103         (cond
3104          ;; Convert to the local timezone.
3105          ((eq type 'local)
3106           (concat "Date: " (message-make-date time)))
3107          ;; Convert to Universal Time.
3108          ((eq type 'ut)
3109           (concat "Date: "
3110                   (substring
3111                    (message-make-date
3112                     (let* ((e (parse-time-string date))
3113                            (tm (apply 'encode-time e))
3114                            (ms (car tm))
3115                            (ls (- (cadr tm) (car (current-time-zone time)))))
3116                       (cond ((< ls 0) (list (1- ms) (+ ls 65536)))
3117                             ((> ls 65535) (list (1+ ms) (- ls 65536)))
3118                             (t (list ms ls)))))
3119                    0 -5)
3120                   "UT"))
3121          ;; Get the original date from the article.
3122          ((eq type 'original)
3123           (concat "Date: " (if (string-match "\n+$" date)
3124                                (substring date 0 (match-beginning 0))
3125                              date)))
3126          ;; Let the user define the format.
3127          ((eq type 'user)
3128           (let ((format (or (condition-case nil
3129                                 (with-current-buffer gnus-summary-buffer
3130                                   gnus-article-time-format)
3131                               (error nil))
3132                             gnus-article-time-format)))
3133             (if (functionp format)
3134                 (funcall format time)
3135               (concat "Date: " (format-time-string format time)))))
3136          ;; ISO 8601.
3137          ((eq type 'iso8601)
3138           (let ((tz (car (current-time-zone time))))
3139             (concat
3140              "Date: "
3141              (format-time-string "%Y%m%dT%H%M%S" time)
3142              (format "%s%02d%02d"
3143                      (if (> tz 0) "+" "-") (/ (abs tz) 3600)
3144                      (/ (% (abs tz) 3600) 60)))))
3145          ;; Do an X-Sent lapsed format.
3146          ((eq type 'lapsed)
3147           ;; If the date is seriously mangled, the timezone functions are
3148           ;; liable to bug out, so we ignore all errors.
3149           (let* ((now (current-time))
3150                  (real-time (subtract-time now time))
3151                  (real-sec (and real-time
3152                                 (+ (* (float (car real-time)) 65536)
3153                                    (cadr real-time))))
3154                  (sec (and real-time (abs real-sec)))
3155                  num prev)
3156             (cond
3157              ((null real-time)
3158               "X-Sent: Unknown")
3159              ((zerop sec)
3160               "X-Sent: Now")
3161              (t
3162               (concat
3163                "X-Sent: "
3164                ;; This is a bit convoluted, but basically we go
3165                ;; through the time units for years, weeks, etc,
3166                ;; and divide things to see whether that results
3167                ;; in positive answers.
3168                (mapconcat
3169                 (lambda (unit)
3170                   (if (zerop (setq num (ffloor (/ sec (cdr unit)))))
3171                       ;; The (remaining) seconds are too few to
3172                       ;; be divided into this time unit.
3173                       ""
3174                     ;; It's big enough, so we output it.
3175                     (setq sec (- sec (* num (cdr unit))))
3176                     (prog1
3177                         (concat (if prev ", " "") (int-to-string
3178                                                    (floor num))
3179                                 " " (symbol-name (car unit))
3180                                 (if (> num 1) "s" ""))
3181                       (setq prev t))))
3182                 article-time-units "")
3183                ;; If dates are odd, then it might appear like the
3184                ;; article was sent in the future.
3185                (if (> real-sec 0)
3186                    " ago"
3187                  " in the future"))))))
3188          ;; Display the date in proper English
3189          ((eq type 'english)
3190           (let ((dtime (decode-time time)))
3191             (concat
3192              "Date: the "
3193              (number-to-string (nth 3 dtime))
3194              (let ((digit (% (nth 3 dtime) 10)))
3195                (cond
3196                 ((memq (nth 3 dtime) '(11 12 13)) "th")
3197                 ((= digit 1) "st")
3198                 ((= digit 2) "nd")
3199                 ((= digit 3) "rd")
3200                 (t "th")))
3201              " of "
3202              (nth (1- (nth 4 dtime)) gnus-english-month-names)
3203              " "
3204              (number-to-string (nth 5 dtime))
3205              " at "
3206              (format "%02d" (nth 2 dtime))
3207              ":"
3208              (format "%02d" (nth 1 dtime)))))))
3209     (error
3210      (format "Date: %s (from T-gnus)" date))))
3211
3212 (defun article-date-local (&optional highlight)
3213   "Convert the current article date to the local timezone."
3214   (interactive (list t))
3215   (article-date-ut 'local highlight))
3216
3217 (defun article-date-english (&optional highlight)
3218   "Convert the current article date to something that is proper English."
3219   (interactive (list t))
3220   (article-date-ut 'english highlight))
3221
3222 (defun article-date-original (&optional highlight)
3223   "Convert the current article date to what it was originally.
3224 This is only useful if you have used some other date conversion
3225 function and want to see what the date was before converting."
3226   (interactive (list t))
3227   (article-date-ut 'original highlight))
3228
3229 (defun article-date-lapsed (&optional highlight)
3230   "Convert the current article date to time lapsed since it was sent."
3231   (interactive (list t))
3232   (article-date-ut 'lapsed highlight))
3233
3234 (defun article-update-date-lapsed ()
3235   "Function to be run from a timer to update the lapsed time line."
3236   (save-match-data
3237     (let (deactivate-mark)
3238       (save-excursion
3239         (ignore-errors
3240          (walk-windows
3241           (lambda (w)
3242             (set-buffer (window-buffer w))
3243             (when (or (and (eq major-mode 'mime-view-mode)
3244                            (eq (mime-preview-original-major-mode)
3245                                'gnus-original-article-mode))
3246                       (eq major-mode 'gnus-article-mode))
3247               (let ((mark (point-marker)))
3248                 (goto-char (point-min))
3249                 (when (re-search-forward "^X-Sent:" nil t)
3250                   (article-date-lapsed t))
3251                 (goto-char (marker-position mark))
3252                 (move-marker mark nil))))
3253           nil 'visible))))))
3254
3255 (defun gnus-start-date-timer (&optional n)
3256   "Start a timer to update the X-Sent header in the article buffers.
3257 The numerical prefix says how frequently (in seconds) the function
3258 is to run."
3259   (interactive "p")
3260   (unless n
3261     (setq n 1))
3262   (gnus-stop-date-timer)
3263   (setq article-lapsed-timer
3264         (run-at-time 1 n 'article-update-date-lapsed)))
3265
3266 (defun gnus-stop-date-timer ()
3267   "Stop the X-Sent timer."
3268   (interactive)
3269   (when article-lapsed-timer
3270     (nnheader-cancel-timer article-lapsed-timer)
3271     (setq article-lapsed-timer nil)))
3272
3273 (defun article-date-user (&optional highlight)
3274   "Convert the current article date to the user-defined format.
3275 This format is defined by the `gnus-article-time-format' variable."
3276   (interactive (list t))
3277   (article-date-ut 'user highlight))
3278
3279 (defun article-date-iso8601 (&optional highlight)
3280   "Convert the current article date to ISO8601."
3281   (interactive (list t))
3282   (article-date-ut 'iso8601 highlight))
3283
3284 (defmacro gnus-article-save-original-date (&rest forms)
3285   "Save the original date as a text property and evaluate FORMS."
3286   `(let* ((case-fold-search t)
3287           (start (progn
3288                    (goto-char (point-min))
3289                    (when (and (re-search-forward "^date:[\t\n ]+" nil t)
3290                               (not (bolp)))
3291                      (match-end 0))))
3292           (date (when (and start
3293                            (re-search-forward "[\t ]*\n\\(?:[^\t ]\\|\\'\\)"
3294                                               nil t))
3295                   (buffer-substring-no-properties start
3296                                                   (match-beginning 0)))))
3297      (goto-char (point-max))
3298      (skip-chars-backward "\n")
3299      (put-text-property (point-min) (point) 'original-date date)
3300      ,@forms
3301      (goto-char (point-max))
3302      (skip-chars-backward "\n")
3303      (put-text-property (point-min) (point) 'original-date date)))
3304
3305 ;; (defun article-show-all ()
3306 ;;   "Show all hidden text in the article buffer."
3307 ;;   (interactive)
3308 ;;   (save-excursion
3309 ;;     (widen)
3310 ;;     (let ((inhibit-read-only t))
3311 ;;       (gnus-article-unhide-text (point-min) (point-max))
3312 ;;       (gnus-remove-text-with-property 'gnus-prev)
3313 ;;       (gnus-remove-text-with-property 'gnus-next))))
3314
3315 (defun article-show-all-headers ()
3316   "Show all hidden headers in the article buffer."
3317   (interactive)
3318   (save-excursion
3319     (save-restriction
3320       (widen)
3321       (article-narrow-to-head)
3322       (let ((inhibit-read-only t))
3323         (gnus-article-unhide-text (point-min) (point-max))))))
3324
3325 (defun article-remove-leading-whitespace ()
3326   "Remove excessive whitespace from all headers."
3327   (interactive)
3328   (save-excursion
3329     (save-restriction
3330       (let ((inhibit-read-only t))
3331         (article-narrow-to-head)
3332         (goto-char (point-min))
3333         (while (re-search-forward "^[^ :]+: \\([ \t]+\\)" nil t)
3334           (delete-region (match-beginning 1) (match-end 1)))))))
3335
3336 (defun article-emphasize (&optional arg)
3337   "Emphasize text according to `gnus-emphasis-alist'."
3338   (interactive (gnus-article-hidden-arg))
3339   (unless (gnus-article-check-hidden-text 'emphasis arg)
3340     (save-excursion
3341       (let ((alist (or
3342                     (condition-case nil
3343                         (with-current-buffer gnus-summary-buffer
3344                           gnus-article-emphasis-alist)
3345                       (error))
3346                     gnus-emphasis-alist))
3347             (inhibit-read-only t)
3348             (props (append '(article-type emphasis)
3349                            gnus-hidden-properties))
3350             regexp elem beg invisible visible face)
3351         (article-goto-body)
3352         (setq beg (point))
3353         (while (setq elem (pop alist))
3354           (goto-char beg)
3355           (setq regexp (car elem)
3356                 invisible (nth 1 elem)
3357                 visible (nth 2 elem)
3358                 face (nth 3 elem))
3359           (while (re-search-forward regexp nil t)
3360             (when (and (match-beginning visible) (match-beginning invisible))
3361               (gnus-article-hide-text
3362                (match-beginning invisible) (match-end invisible) props)
3363               (gnus-article-unhide-text-type
3364                (match-beginning visible) (match-end visible) 'emphasis)
3365               (gnus-put-overlay-excluding-newlines
3366                (match-beginning visible) (match-end visible) 'face face)
3367               (gnus-add-wash-type 'emphasis)
3368               (goto-char (match-end invisible)))))))))
3369
3370 (defun gnus-article-setup-highlight-words (&optional highlight-words)
3371   "Setup newsgroup emphasis alist."
3372   (unless gnus-article-emphasis-alist
3373     (let ((name (and gnus-newsgroup-name
3374                      (gnus-group-real-name gnus-newsgroup-name))))
3375       (make-local-variable 'gnus-article-emphasis-alist)
3376       (setq gnus-article-emphasis-alist
3377             (nconc
3378              (let ((alist gnus-group-highlight-words-alist) elem highlight)
3379                (while (setq elem (pop alist))
3380                  (when (and name (string-match (car elem) name))
3381                    (setq alist nil
3382                          highlight (copy-sequence (cdr elem)))))
3383                highlight)
3384              (copy-sequence highlight-words)
3385              (if gnus-newsgroup-name
3386                  (copy-sequence (gnus-group-find-parameter
3387                                  gnus-newsgroup-name 'highlight-words t)))
3388              gnus-emphasis-alist)))))
3389
3390 (eval-when-compile
3391   (defvar gnus-summary-article-menu)
3392   (defvar gnus-summary-post-menu))
3393
3394 ;;; Saving functions.
3395
3396 (defun gnus-article-save (save-buffer file &optional num)
3397   "Save the currently selected article."
3398   (unless gnus-save-all-headers
3399     ;; Remove headers according to `gnus-saved-headers'.
3400     (let ((gnus-visible-headers
3401            (or gnus-saved-headers gnus-visible-headers))
3402           (gnus-article-buffer save-buffer))
3403       (save-excursion
3404         (set-buffer save-buffer)
3405         (article-hide-headers 1 t))))
3406   (save-window-excursion
3407     (if (not gnus-default-article-saver)
3408         (error "No default saver is defined")
3409       ;; !!! Magic!  The saving functions all save
3410       ;; `gnus-save-article-buffer' (or so they think), but we
3411       ;; bind that variable to our save-buffer.
3412       (set-buffer gnus-article-buffer)
3413       (let* ((gnus-save-article-buffer save-buffer)
3414              (filename
3415               (cond
3416                ((not gnus-prompt-before-saving) 'default)
3417                ((eq gnus-prompt-before-saving 'always) nil)
3418                (t file)))
3419              (gnus-number-of-articles-to-be-saved
3420               (when (eq gnus-prompt-before-saving t)
3421                 num)))                  ; Magic
3422         (set-buffer gnus-article-current-summary)
3423         (funcall gnus-default-article-saver filename)))))
3424
3425 (defun gnus-read-save-file-name (prompt &optional filename
3426                                         function group headers variable)
3427   (let ((default-name
3428           (funcall function group headers (symbol-value variable)))
3429         result)
3430     (setq result
3431           (expand-file-name
3432            (cond
3433             ((eq filename 'default)
3434              default-name)
3435             ((eq filename t)
3436              default-name)
3437             (filename filename)
3438             (t
3439              (let* ((split-name (gnus-get-split-value gnus-split-methods))
3440                     (prompt
3441                      (format prompt
3442                              (if (and gnus-number-of-articles-to-be-saved
3443                                       (> gnus-number-of-articles-to-be-saved 1))
3444                                  (format "these %d articles"
3445                                          gnus-number-of-articles-to-be-saved)
3446                                "this article")))
3447                     (file
3448                      ;; Let the split methods have their say.
3449                      (cond
3450                       ;; No split name was found.
3451                       ((null split-name)
3452                        (read-file-name
3453                         (concat prompt " (default "
3454                                 (file-name-nondirectory default-name) ") ")
3455                         (file-name-directory default-name)
3456                         default-name))
3457                       ;; A single group name is returned.
3458                       ((stringp split-name)
3459                        (setq default-name
3460                              (funcall function split-name headers
3461                                       (symbol-value variable)))
3462                        (read-file-name
3463                         (concat prompt " (default "
3464                                 (file-name-nondirectory default-name) ") ")
3465                         (file-name-directory default-name)
3466                         default-name))
3467                       ;; A single split name was found
3468                       ((= 1 (length split-name))
3469                        (let* ((name (expand-file-name
3470                                      (car split-name)
3471                                      gnus-article-save-directory))
3472                               (dir (cond ((file-directory-p name)
3473                                           (file-name-as-directory name))
3474                                          ((file-exists-p name) name)
3475                                          (t gnus-article-save-directory))))
3476                          (read-file-name
3477                           (concat prompt " (default " name ") ")
3478                           dir name)))
3479                       ;; A list of splits was found.
3480                       (t
3481                        (setq split-name (nreverse split-name))
3482                        (let (result)
3483                          (let ((file-name-history
3484                                 (nconc split-name file-name-history)))
3485                            (setq result
3486                                  (expand-file-name
3487                                   (read-file-name
3488                                    (concat prompt " (`M-p' for defaults) ")
3489                                    gnus-article-save-directory
3490                                    (car split-name))
3491                                   gnus-article-save-directory)))
3492                          (car (push result file-name-history)))))))
3493                ;; Create the directory.
3494                (gnus-make-directory (file-name-directory file))
3495                ;; If we have read a directory, we append the default file name.
3496                (when (file-directory-p file)
3497                  (setq file (expand-file-name (file-name-nondirectory
3498                                                default-name)
3499                                               (file-name-as-directory file))))
3500                ;; Possibly translate some characters.
3501                (nnheader-translate-file-chars file))))))
3502     (gnus-make-directory (file-name-directory result))
3503     (set variable result)))
3504
3505 (defun gnus-article-archive-name (group)
3506   "Return the first instance of an \"Archive-name\" in the current buffer."
3507   (let ((case-fold-search t))
3508     (when (re-search-forward "archive-name: *\\([^ \n\t]+\\)[ \t]*$" nil t)
3509       (nnheader-concat gnus-article-save-directory
3510                        (match-string 1)))))
3511
3512 (defun gnus-article-nndoc-name (group)
3513   "If GROUP is an nndoc group, return the name of the parent group."
3514   (when (eq (car (gnus-find-method-for-group group)) 'nndoc)
3515     (gnus-group-get-parameter group 'save-article-group)))
3516
3517 (defun gnus-summary-save-in-rmail (&optional filename)
3518   "Append this article to Rmail file.
3519 Optional argument FILENAME specifies file name.
3520 Directory to save to is default to `gnus-article-save-directory'."
3521   (setq filename (gnus-read-save-file-name
3522                   "Save %s in rmail file:" filename
3523                   gnus-rmail-save-name gnus-newsgroup-name
3524                   gnus-current-headers 'gnus-newsgroup-last-rmail))
3525   (gnus-eval-in-buffer-window gnus-save-article-buffer
3526     (save-excursion
3527       (save-restriction
3528         (widen)
3529         (gnus-output-to-rmail filename))))
3530   filename)
3531
3532 (defun gnus-summary-save-in-mail (&optional filename)
3533   "Append this article to Unix mail file.
3534 Optional argument FILENAME specifies file name.
3535 Directory to save to is default to `gnus-article-save-directory'."
3536   (setq filename (gnus-read-save-file-name
3537                   "Save %s in Unix mail file:" filename
3538                   gnus-mail-save-name gnus-newsgroup-name
3539                   gnus-current-headers 'gnus-newsgroup-last-mail))
3540   (gnus-eval-in-buffer-window gnus-save-article-buffer
3541     (save-excursion
3542       (save-restriction
3543         (widen)
3544         (if (and (file-readable-p filename)
3545                  (file-regular-p filename)
3546                  (mail-file-babyl-p filename))
3547             (rmail-output-to-rmail-file filename t)
3548           (gnus-output-to-mail filename)))))
3549   filename)
3550
3551 (defun gnus-summary-save-in-file (&optional filename overwrite)
3552   "Append this article to file.
3553 Optional argument FILENAME specifies file name.
3554 Directory to save to is default to `gnus-article-save-directory'."
3555   (setq filename (gnus-read-save-file-name
3556                   "Save %s in file:" filename
3557                   gnus-file-save-name gnus-newsgroup-name
3558                   gnus-current-headers 'gnus-newsgroup-last-file))
3559   (gnus-eval-in-buffer-window gnus-save-article-buffer
3560     (save-excursion
3561       (save-restriction
3562         (widen)
3563         (when (and overwrite
3564                    (file-exists-p filename))
3565           (delete-file filename))
3566         (gnus-output-to-file filename))))
3567   filename)
3568
3569 (defun gnus-summary-write-to-file (&optional filename)
3570   "Write this article to a file, overwriting it if the file exists.
3571 Optional argument FILENAME specifies file name.
3572 The directory to save in defaults to `gnus-article-save-directory'."
3573   (gnus-summary-save-in-file nil t))
3574
3575 (defun gnus-summary-save-body-in-file (&optional filename)
3576   "Append this article body to a file.
3577 Optional argument FILENAME specifies file name.
3578 The directory to save in defaults to `gnus-article-save-directory'."
3579   (setq filename (gnus-read-save-file-name
3580                   "Save %s body in file:" filename
3581                   gnus-file-save-name gnus-newsgroup-name
3582                   gnus-current-headers 'gnus-newsgroup-last-file))
3583   (gnus-eval-in-buffer-window gnus-save-article-buffer
3584     (save-excursion
3585       (save-restriction
3586         (widen)
3587         (when (article-goto-body)
3588           (narrow-to-region (point) (point-max)))
3589         (gnus-output-to-file filename))))
3590   filename)
3591
3592 (defun gnus-summary-save-in-pipe (&optional command)
3593   "Pipe this article to subprocess."
3594   (setq command
3595         (cond ((and (eq command 'default)
3596                     gnus-last-shell-command)
3597                gnus-last-shell-command)
3598               ((stringp command)
3599                command)
3600               (t (read-string
3601                   (format
3602                    "Shell command on %s: "
3603                    (if (and gnus-number-of-articles-to-be-saved
3604                             (> gnus-number-of-articles-to-be-saved 1))
3605                        (format "these %d articles"
3606                                gnus-number-of-articles-to-be-saved)
3607                      "this article"))
3608                   gnus-last-shell-command))))
3609   (when (string-equal command "")
3610     (if gnus-last-shell-command
3611         (setq command gnus-last-shell-command)
3612       (error "A command is required")))
3613   (gnus-eval-in-buffer-window gnus-article-buffer
3614     (save-restriction
3615       (widen)
3616       (shell-command-on-region (point-min) (point-max) command nil)))
3617   (setq gnus-last-shell-command command))
3618
3619 (defun gnus-summary-pipe-to-muttprint (&optional command)
3620   "Pipe this article to muttprint."
3621   (setq command (read-string
3622                  "Print using command: " gnus-summary-muttprint-program
3623                  nil gnus-summary-muttprint-program))
3624   (gnus-summary-save-in-pipe command))
3625
3626 ;;; Article file names when saving.
3627
3628 (defun gnus-capitalize-newsgroup (newsgroup)
3629   "Capitalize NEWSGROUP name."
3630   (when (not (zerop (length newsgroup)))
3631     (concat (char-to-string (upcase (aref newsgroup 0)))
3632             (substring newsgroup 1))))
3633
3634 (defun gnus-Numeric-save-name (newsgroup headers &optional last-file)
3635   "Generate file name from NEWSGROUP, HEADERS, and optional LAST-FILE.
3636 If variable `gnus-use-long-file-name' is non-nil, it is ~/News/News.group/num.
3637 Otherwise, it is like ~/News/news/group/num."
3638   (let ((default
3639           (expand-file-name
3640            (concat (if (gnus-use-long-file-name 'not-save)
3641                        (gnus-capitalize-newsgroup newsgroup)
3642                      (gnus-newsgroup-directory-form newsgroup))
3643                    "/" (int-to-string (mail-header-number headers)))
3644            gnus-article-save-directory)))
3645     (if (and last-file
3646              (string-equal (file-name-directory default)
3647                            (file-name-directory last-file))
3648              (string-match "^[0-9]+$" (file-name-nondirectory last-file)))
3649         default
3650       (or last-file default))))
3651
3652 (defun gnus-numeric-save-name (newsgroup headers &optional last-file)
3653   "Generate file name from NEWSGROUP, HEADERS, and optional LAST-FILE.
3654 If variable `gnus-use-long-file-name' is non-nil, it is
3655 ~/News/news.group/num.  Otherwise, it is like ~/News/news/group/num."
3656   (let ((default
3657           (expand-file-name
3658            (concat (if (gnus-use-long-file-name 'not-save)
3659                        newsgroup
3660                      (gnus-newsgroup-directory-form newsgroup))
3661                    "/" (int-to-string (mail-header-number headers)))
3662            gnus-article-save-directory)))
3663     (if (and last-file
3664              (string-equal (file-name-directory default)
3665                            (file-name-directory last-file))
3666              (string-match "^[0-9]+$" (file-name-nondirectory last-file)))
3667         default
3668       (or last-file default))))
3669
3670 (defun gnus-plain-save-name (newsgroup headers &optional last-file)
3671   "Generate file name from NEWSGROUP, HEADERS, and optional LAST-FILE.
3672 If variable `gnus-use-long-file-name' is non-nil, it is
3673 ~/News/news.group.  Otherwise, it is like ~/News/news/group/news."
3674   (or last-file
3675       (expand-file-name
3676        (if (gnus-use-long-file-name 'not-save)
3677            newsgroup
3678          (file-relative-name
3679           (expand-file-name "news" (gnus-newsgroup-directory-form newsgroup))
3680           default-directory))
3681        gnus-article-save-directory)))
3682
3683 (defun gnus-sender-save-name (newsgroup headers &optional last-file)
3684   "Generate file name from sender."
3685   (let ((from (mail-header-from headers)))
3686     (expand-file-name
3687      (if (and from (string-match "\\([^ <]+\\)@" from))
3688          (match-string 1 from)
3689        "nobody")
3690      gnus-article-save-directory)))
3691
3692 (defun article-verify-x-pgp-sig ()
3693   "Verify X-PGP-Sig."
3694   (interactive)
3695   (if (gnus-buffer-live-p gnus-original-article-buffer)
3696       (let ((sig (with-current-buffer gnus-original-article-buffer
3697                    (gnus-fetch-field "X-PGP-Sig")))
3698             items info headers)
3699         (when (and sig
3700                    mml2015-use
3701                    (mml2015-clear-verify-function))
3702           (with-temp-buffer
3703             (insert-buffer-substring gnus-original-article-buffer)
3704             (setq items (split-string sig))
3705             (message-narrow-to-head)
3706             (let ((inhibit-point-motion-hooks t)
3707                   (case-fold-search t))
3708               ;; Don't verify multiple headers.
3709               (setq headers (mapconcat (lambda (header)
3710                                          (concat header ": "
3711                                                  (mail-fetch-field header)
3712                                                  "\n"))
3713                                        (split-string (nth 1 items) ",") "")))
3714             (delete-region (point-min) (point-max))
3715             (insert "-----BEGIN PGP SIGNED MESSAGE-----\n\n")
3716             (insert "X-Signed-Headers: " (nth 1 items) "\n")
3717             (insert headers)
3718             (widen)
3719             (forward-line)
3720             (while (not (eobp))
3721               (if (looking-at "^-")
3722                   (insert "- "))
3723               (forward-line))
3724             (insert "\n-----BEGIN PGP SIGNATURE-----\n")
3725             (insert "Version: " (car items) "\n\n")
3726             (insert (mapconcat 'identity (cddr items) "\n"))
3727             (insert "\n-----END PGP SIGNATURE-----\n")
3728             (let ((mm-security-handle (list (format "multipart/signed"))))
3729               (mml2015-clean-buffer)
3730               (let ((coding-system-for-write (or gnus-newsgroup-charset
3731                                                  'iso-8859-1)))
3732                 (funcall (mml2015-clear-verify-function)))
3733               (setq info
3734                     (or (mm-handle-multipart-ctl-parameter
3735                          mm-security-handle 'gnus-details)
3736                         (mm-handle-multipart-ctl-parameter
3737                          mm-security-handle 'gnus-info)))))
3738           (when info
3739             (let ((inhibit-read-only t) bface eface)
3740               (save-restriction
3741                 (message-narrow-to-head)
3742                 (goto-char (point-max))
3743                 (forward-line -1)
3744                 (setq bface (get-text-property (point-at-bol) 'face)
3745                       eface (get-text-property (1- (point-at-eol)) 'face))
3746                 (message-remove-header "X-Gnus-PGP-Verify")
3747                 (if (re-search-forward "^X-PGP-Sig:" nil t)
3748                     (forward-line)
3749                   (goto-char (point-max)))
3750                 (narrow-to-region (point) (point))
3751                 (insert "X-Gnus-PGP-Verify: " info "\n")
3752                 (goto-char (point-min))
3753                 (forward-line)
3754                 (while (not (eobp))
3755                   (if (not (looking-at "^[ \t]"))
3756                       (insert " "))
3757                   (forward-line))
3758                 ;; Do highlighting.
3759                 (goto-char (point-min))
3760                 (when (looking-at "\\([^:]+\\): *")
3761                   (put-text-property (match-beginning 1) (1+ (match-end 1))
3762                                      'face bface)
3763                   (put-text-property (match-end 0) (point-max)
3764                                      'face eface)))))))))
3765
3766 (defun article-verify-cancel-lock ()
3767   "Verify Cancel-Lock header."
3768   (interactive)
3769   (if (gnus-buffer-live-p gnus-original-article-buffer)
3770       (canlock-verify gnus-original-article-buffer)))
3771
3772 (defun article-monafy ()
3773   "Display body part with mona font."
3774   (interactive)
3775   (unless (if (featurep 'xemacs)
3776               (find-face 'gnus-mona-face)
3777             (facep 'gnus-mona-face))
3778     (require 'navi2ch-mona)
3779     (set-face-font (make-face 'gnus-mona-face) navi2ch-mona-font))
3780   (save-excursion
3781     (let ((inhibit-read-only t))
3782       (article-goto-body)
3783       (gnus-overlay-put
3784        (gnus-make-overlay (point) (point-max))
3785        'face 'gnus-mona-face))))
3786
3787 (eval-and-compile
3788   (mapcar
3789    (lambda (func)
3790      (let (afunc gfunc)
3791        (if (consp func)
3792            (setq afunc (car func)
3793                  gfunc (cdr func))
3794          (setq afunc func
3795                gfunc (intern (format "gnus-%s" func))))
3796        (defalias gfunc
3797          (when (fboundp afunc)
3798            `(lambda (&optional interactive &rest args)
3799               ,(documentation afunc t)
3800               (interactive (list t))
3801               (save-excursion
3802                 (set-buffer gnus-article-buffer)
3803                 (if interactive
3804                     (call-interactively ',afunc)
3805                   (apply ',afunc args))))))))
3806    '(article-hide-headers
3807      article-verify-x-pgp-sig
3808      article-verify-cancel-lock
3809      article-monafy
3810      article-hide-boring-headers
3811      article-treat-overstrike
3812      article-treat-ansi-sequences
3813      article-fill-long-lines
3814      article-capitalize-sentences
3815      article-remove-cr
3816      article-remove-leading-whitespace
3817      article-display-x-face
3818      article-display-face
3819      article-de-quoted-unreadable
3820      article-de-base64-unreadable
3821      article-decode-HZ
3822      article-wash-html
3823      article-unsplit-urls
3824      article-hide-list-identifiers
3825      article-strip-banner
3826      article-babel
3827      article-hide-pem
3828      article-hide-signature
3829      article-strip-headers-in-body
3830      article-remove-trailing-blank-lines
3831      article-strip-leading-blank-lines
3832      article-strip-multiple-blank-lines
3833      article-strip-leading-space
3834      article-strip-trailing-space
3835      article-strip-blank-lines
3836      article-strip-all-blank-lines
3837      article-date-local
3838      article-date-english
3839      article-date-iso8601
3840      article-date-original
3841      article-date-ut
3842      article-decode-mime-words
3843      article-decode-charset
3844      article-decode-encoded-words
3845      article-date-user
3846      article-date-lapsed
3847      article-emphasize
3848      article-treat-dumbquotes
3849      article-normalize-headers
3850      (article-show-all-headers . gnus-article-show-all-headers)
3851 ;;      (article-show-all . gnus-article-show-all)
3852      )))
3853 \f
3854 ;;;
3855 ;;; Gnus article mode
3856 ;;;
3857
3858 (put 'gnus-article-mode 'mode-class 'special)
3859
3860 (gnus-define-keys gnus-article-mode-map
3861   " " gnus-article-goto-next-page
3862   "\177" gnus-article-goto-prev-page
3863   [delete] gnus-article-goto-prev-page
3864   [backspace] gnus-article-goto-prev-page
3865   "\C-c^" gnus-article-refer-article
3866   "h" gnus-article-show-summary
3867   "s" gnus-article-show-summary
3868   "\C-c\C-m" gnus-article-mail
3869   "?" gnus-article-describe-briefly
3870   "e" gnus-summary-edit-article
3871   "<" beginning-of-buffer
3872   ">" end-of-buffer
3873   "\C-c\C-i" gnus-info-find-node
3874   "\C-c\C-b" gnus-bug
3875   "R" gnus-article-reply-with-original
3876   "F" gnus-article-followup-with-original
3877   "\C-hk" gnus-article-describe-key
3878   "\C-hc" gnus-article-describe-key-briefly
3879
3880   "\C-d" gnus-article-read-summary-keys
3881   "\M-*" gnus-article-read-summary-keys
3882   "\M-#" gnus-article-read-summary-keys
3883   "\M-^" gnus-article-read-summary-keys
3884   "\M-g" gnus-article-read-summary-keys)
3885
3886 ;; Define almost undefined keys to `gnus-article-read-summary-keys'.
3887 (let (keys)
3888   (let ((key 32))
3889     (while (<= key 127)
3890       (push (char-to-string key) keys)
3891       (incf key))
3892     (dolist (elem (accessible-keymaps gnus-summary-mode-map))
3893       (setq key (car elem))
3894       (when (and (> (length key) 0)
3895                  (not (eq 'menu-bar (aref key 0)))
3896                  (symbolp (lookup-key gnus-summary-mode-map key)))
3897         (push key keys))))
3898   (dolist (key keys)
3899     (unless (lookup-key gnus-article-mode-map key)
3900       (define-key gnus-article-mode-map key 'gnus-article-read-summary-keys))))
3901
3902 (defun gnus-article-make-menu-bar ()
3903   (unless (boundp 'gnus-article-commands-menu)
3904     (gnus-summary-make-menu-bar))
3905   (gnus-turn-off-edit-menu 'article)
3906   (unless (boundp 'gnus-article-article-menu)
3907     (easy-menu-define
3908      gnus-article-article-menu gnus-article-mode-map ""
3909      '("Article"
3910        ["Scroll forwards" gnus-article-goto-next-page t]
3911        ["Scroll backwards" gnus-article-goto-prev-page t]
3912        ["Show summary" gnus-article-show-summary t]
3913        ["Fetch Message-ID at point" gnus-article-refer-article t]
3914        ["Mail to address at point" gnus-article-mail t]
3915        ["Send a bug report" gnus-bug t]))
3916
3917     (easy-menu-define
3918      gnus-article-treatment-menu gnus-article-mode-map ""
3919      ;; Fixme: this should use :active (and maybe :visible).
3920      '("Treatment"
3921        ["Hide headers" gnus-article-hide-headers t]
3922        ["Hide signature" gnus-article-hide-signature t]
3923        ["Hide citation" gnus-article-hide-citation t]
3924        ["Treat overstrike" gnus-article-treat-overstrike t]
3925        ["Treat ANSI sequences" gnus-article-treat-ansi-sequences t]
3926        ["Remove carriage return" gnus-article-remove-cr t]
3927        ["Remove leading whitespace" gnus-article-remove-leading-whitespace t]
3928        ["Treat html" gnus-article-wash-html t]
3929        ["Remove newlines from within URLs" gnus-article-unsplit-urls t]
3930        ["Decode HZ" gnus-article-decode-HZ t]))
3931
3932     ;; Note "Commands" menu is defined in gnus-sum.el for consistency
3933
3934     ;; Note "Post" menu is defined in gnus-sum.el for consistency
3935
3936     (gnus-run-hooks 'gnus-article-menu-hook)))
3937
3938 (defun gnus-article-mode ()
3939   "Major mode for displaying an article.
3940
3941 All normal editing commands are switched off.
3942
3943 The following commands are available in addition to all summary mode
3944 commands:
3945 \\<gnus-article-mode-map>
3946 \\[gnus-article-next-page]\t Scroll the article one page forwards
3947 \\[gnus-article-prev-page]\t Scroll the article one page backwards
3948 \\[gnus-article-refer-article]\t Go to the article referred to by an article id near point
3949 \\[gnus-article-show-summary]\t Display the summary buffer
3950 \\[gnus-article-mail]\t Send a reply to the address near point
3951 \\[gnus-article-describe-briefly]\t Describe the current mode briefly
3952 \\[gnus-info-find-node]\t Go to the Gnus info node"
3953   (interactive)
3954   (kill-all-local-variables)
3955   (gnus-simplify-mode-line)
3956   (setq mode-name "Article")
3957   (setq major-mode 'gnus-article-mode)
3958   (make-local-variable 'minor-mode-alist)
3959   (unless (assq 'gnus-show-mime minor-mode-alist)
3960     (push (list 'gnus-show-mime " MIME") minor-mode-alist))
3961   (use-local-map gnus-article-mode-map)
3962   (when (gnus-visual-p 'article-menu 'menu)
3963     (gnus-article-make-menu-bar)
3964     (when gnus-summary-tool-bar-map
3965       (set (make-local-variable 'tool-bar-map) gnus-summary-tool-bar-map)))
3966   (gnus-update-format-specifications nil 'article-mode)
3967   (set (make-local-variable 'page-delimiter) gnus-page-delimiter)
3968   (set (make-local-variable 'gnus-page-broken) nil)
3969   (make-local-variable 'gnus-button-marker-list)
3970   (make-local-variable 'gnus-article-current-summary)
3971   (make-local-variable 'gnus-article-mime-handles)
3972   (make-local-variable 'gnus-article-decoded-p)
3973   (make-local-variable 'gnus-article-mime-handle-alist)
3974   (make-local-variable 'gnus-article-wash-types)
3975   (make-local-variable 'gnus-article-image-alist)
3976   (make-local-variable 'gnus-article-charset)
3977   (make-local-variable 'gnus-article-ignored-charsets)
3978   ;; Prevent recent Emacsen from displaying non-break space as "\ ".
3979   (set (make-local-variable 'nobreak-char-display) nil)
3980   (gnus-set-default-directory)
3981   (buffer-disable-undo)
3982   (setq buffer-read-only t
3983         show-trailing-whitespace nil)
3984   (set-syntax-table gnus-article-mode-syntax-table)
3985   (gnus-run-mode-hooks 'gnus-article-mode-hook))
3986
3987 (defun gnus-article-setup-buffer ()
3988   "Initialize the article buffer."
3989   (let* ((name (if gnus-single-article-buffer "*Article*"
3990                  (concat "*Article " gnus-newsgroup-name "*")))
3991          (original
3992           (progn (string-match "\\*Article" name)
3993                  (concat " *Original Article"
3994                          (substring name (match-end 0))))))
3995     (setq gnus-article-buffer name)
3996     (setq gnus-original-article-buffer original)
3997     (setq gnus-article-mime-handle-alist nil)
3998     ;; This might be a variable local to the summary buffer.
3999     (unless gnus-single-article-buffer
4000       (save-excursion
4001         (set-buffer gnus-summary-buffer)
4002         (setq gnus-article-buffer name)
4003         (setq gnus-original-article-buffer original)
4004         (gnus-set-global-variables)))
4005     (gnus-article-setup-highlight-words)
4006     ;; Init original article buffer.
4007     (save-excursion
4008       (set-buffer (gnus-get-buffer-create gnus-original-article-buffer))
4009       (set-buffer-multibyte t)
4010       (setq major-mode 'gnus-original-article-mode)
4011       (make-local-variable 'gnus-original-article))
4012     (if (and (get-buffer name)
4013              (with-current-buffer name
4014                (if gnus-article-edit-mode
4015                    (if (y-or-n-p "Article mode edit in progress; discard? ")
4016                        (progn
4017                          (set-buffer-modified-p nil)
4018                          (gnus-kill-buffer name)
4019                          (message "")
4020                          nil)
4021                      (error "Action aborted"))
4022                  t)))
4023         (save-excursion
4024           (set-buffer name)
4025           (set (make-local-variable 'gnus-article-edit-mode) nil)
4026           (buffer-disable-undo)
4027           (setq buffer-read-only t)
4028           ;; This list just keeps growing if we don't reset it.
4029           (setq gnus-button-marker-list nil)
4030           (unless (eq major-mode 'gnus-article-mode)
4031             (gnus-article-mode))
4032           (current-buffer))
4033       (save-excursion
4034         (set-buffer (gnus-get-buffer-create name))
4035         (gnus-article-mode)
4036         (make-local-variable 'gnus-summary-buffer)
4037         (gnus-summary-set-local-parameters gnus-newsgroup-name)
4038         (current-buffer)))))
4039
4040 ;; Set article window start at LINE, where LINE is the number of lines
4041 ;; from the head of the article.
4042 (defun gnus-article-set-window-start (&optional line)
4043   (set-window-start
4044    (gnus-get-buffer-window gnus-article-buffer t)
4045    (save-excursion
4046      (set-buffer gnus-article-buffer)
4047      (goto-char (point-min))
4048      (if (not line)
4049          (point-min)
4050        (gnus-message 6 "Moved to bookmark")
4051        (search-forward "\n\n" nil t)
4052        (forward-line line)
4053        (point)))))
4054
4055 ;;; @@ article filters
4056 ;;;
4057
4058 (defun gnus-article-display-mime-message ()
4059   "Article display method for MIME message."
4060   ;; called from `gnus-original-article-buffer'.
4061   (let (charset all-headers)
4062     (with-current-buffer gnus-summary-buffer
4063       (setq charset default-mime-charset
4064             all-headers gnus-have-all-headers))
4065     (make-local-variable 'default-mime-charset)
4066     (setq default-mime-charset charset)
4067     (with-current-buffer (get-buffer-create gnus-article-buffer)
4068       (make-local-variable 'default-mime-charset)
4069       (setq default-mime-charset charset))
4070     (mime-display-message mime-message-structure
4071                           gnus-article-buffer nil gnus-article-mode-map)
4072     (when all-headers
4073       (gnus-article-hide-headers nil -1)))
4074   (run-hooks 'gnus-mime-article-prepare-hook))
4075
4076 (defun gnus-article-display-traditional-message ()
4077   "Article display method for traditional message."
4078   (set-buffer gnus-article-buffer)
4079   (let ((inhibit-read-only t))
4080     (erase-buffer)
4081     (insert-buffer-substring gnus-original-article-buffer)))
4082
4083 (defun gnus-article-make-full-mail-header (&optional number charset)
4084   "Create a new mail header structure in a raw article buffer."
4085   (unless (and number charset)
4086     (save-current-buffer
4087       (set-buffer gnus-summary-buffer)
4088       (unless number
4089         (setq number (or (cdr gnus-article-current) 0)))
4090       (unless charset
4091         (setq charset (or default-mime-charset 'x-ctext)))))
4092   (goto-char (point-min))
4093   (let ((header-end (if (search-forward "\n\n" nil t)
4094                         (1- (point))
4095                       (goto-char (point-max))))
4096         (chars (- (point-max) (point)))
4097         (lines (count-lines (point) (point-max)))
4098         (default-mime-charset charset)
4099         xref)
4100     (narrow-to-region (point-min) header-end)
4101     (setq xref (std11-fetch-field "xref"))
4102     (prog1
4103         (make-full-mail-header
4104          number
4105          (std11-fetch-field "subject")
4106          (std11-fetch-field "from")
4107          (std11-fetch-field "date")
4108          (std11-fetch-field "message-id")
4109          (std11-fetch-field "references")
4110          chars
4111          lines
4112          (when xref (concat "Xref: " xref)))
4113       (widen))))
4114
4115 (defun gnus-article-prepare (article &optional all-headers header)
4116   "Prepare ARTICLE in article mode buffer.
4117 ARTICLE should either be an article number or a Message-ID.
4118 If ARTICLE is an id, HEADER should be the article headers.
4119 If ALL-HEADERS is non-nil, no headers are hidden."
4120   (save-excursion
4121     ;; Make sure we start in a summary buffer.
4122     (unless (eq major-mode 'gnus-summary-mode)
4123       (set-buffer gnus-summary-buffer))
4124     (setq gnus-summary-buffer (current-buffer))
4125     (let* ((gnus-article (if header (mail-header-number header) article))
4126            (summary-buffer (current-buffer))
4127            (gnus-tmp-internal-hook gnus-article-internal-prepare-hook)
4128            (group gnus-newsgroup-name)
4129            result)
4130       (save-excursion
4131         (gnus-article-setup-buffer)
4132         (set-buffer gnus-article-buffer)
4133         ;; Deactivate active regions.
4134         (when (and (boundp 'transient-mark-mode)
4135                    transient-mark-mode)
4136           (setq mark-active nil))
4137         (if (not (setq result (let ((inhibit-read-only t))
4138                                 (gnus-request-article-this-buffer
4139                                  article group))))
4140             ;; There is no such article.
4141             (save-excursion
4142               (when (and (numberp article)
4143                          (not (memq article gnus-newsgroup-sparse)))
4144                 (setq gnus-article-current
4145                       (cons gnus-newsgroup-name article))
4146                 (set-buffer gnus-summary-buffer)
4147                 (setq gnus-current-article article)
4148                 (if (and (memq article gnus-newsgroup-undownloaded)
4149                          (not (gnus-online (gnus-find-method-for-group
4150                                             gnus-newsgroup-name))))
4151                     (progn
4152                       (gnus-summary-set-agent-mark article)
4153                       (message "Message marked for downloading"))
4154                   (gnus-summary-mark-article article gnus-canceled-mark)
4155                   (unless (memq article gnus-newsgroup-sparse)
4156                     (gnus-error 1 "No such article (may have expired or been canceled)")))))
4157           (if (or (eq result 'pseudo)
4158                   (eq result 'nneething))
4159               (progn
4160                 (save-excursion
4161                   (set-buffer summary-buffer)
4162                   (push article gnus-newsgroup-history)
4163                   (setq gnus-last-article gnus-current-article
4164                         gnus-current-article 0
4165                         gnus-current-headers nil
4166                         gnus-article-current nil)
4167                   (if (eq result 'nneething)
4168                       (gnus-configure-windows 'summary)
4169                     (gnus-configure-windows 'article))
4170                   (gnus-set-global-variables))
4171                 (let ((gnus-article-mime-handle-alist-1
4172                        gnus-article-mime-handle-alist))
4173                   (gnus-set-mode-line 'article)))
4174             ;; The result from the `request' was an actual article -
4175             ;; or at least some text that is now displayed in the
4176             ;; article buffer.
4177             (when (and (numberp article)
4178                        (not (eq article gnus-current-article)))
4179               ;; Seems like a new article has been selected.
4180               ;; `gnus-current-article' must be an article number.
4181               (save-excursion
4182                 (set-buffer summary-buffer)
4183                 (push article gnus-newsgroup-history)
4184                 (setq gnus-last-article gnus-current-article
4185                       gnus-current-article article
4186                       gnus-current-headers
4187                       (gnus-summary-article-header gnus-current-article)
4188                       gnus-article-current
4189                       (cons gnus-newsgroup-name gnus-current-article))
4190                 (unless (vectorp gnus-current-headers)
4191                   (setq gnus-current-headers nil))
4192                 (gnus-summary-goto-subject gnus-current-article)
4193                 (when (gnus-summary-show-thread)
4194                   ;; If the summary buffer really was folded, the
4195                   ;; previous goto may not actually have gone to
4196                   ;; the right article, but the thread root instead.
4197                   ;; So we go again.
4198                   (gnus-summary-goto-subject gnus-current-article))
4199                 (gnus-run-hooks 'gnus-mark-article-hook)
4200                 (gnus-set-mode-line 'summary)
4201                 (when (gnus-visual-p 'article-highlight 'highlight)
4202                   (gnus-run-hooks 'gnus-visual-mark-article-hook))
4203                 ;; Set the global newsgroup variables here.
4204                 (gnus-set-global-variables)
4205                 (setq gnus-have-all-headers
4206                       (or all-headers gnus-show-all-headers))))
4207             (save-excursion
4208               (gnus-configure-windows 'article))
4209             (when (or (numberp article)
4210                       (stringp article))
4211               (gnus-article-prepare-display)
4212               ;; Do page break.
4213               (goto-char (point-min))
4214               (when gnus-break-pages
4215                 (gnus-narrow-to-page)))
4216             (let ((gnus-article-mime-handle-alist-1
4217                    gnus-article-mime-handle-alist))
4218               (gnus-set-mode-line 'article))
4219             (article-goto-body)
4220             (unless (bobp)
4221               (forward-line -1))
4222             (set-window-point (get-buffer-window (current-buffer)) (point))
4223             (gnus-configure-windows 'article)
4224             t))))))
4225
4226 (defun gnus-article-prepare-mime-display (&optional number)
4227   (goto-char (point-min))
4228   (when (re-search-forward "^[^\t ]+:" nil t)
4229     (goto-char (match-beginning 0)))
4230   (let ((entity (if (eq 1 (point-min))
4231                     (get-text-property 1 'mime-view-entity)
4232                   (get-text-property (point) 'mime-view-entity)))
4233         last-entity child-entity next type)
4234     (setq child-entity (mime-entity-children entity))
4235     (if child-entity
4236         (setq last-entity (nth (1- (length child-entity))
4237                                child-entity))
4238       (setq last-entity entity))
4239     (save-restriction
4240       (narrow-to-region (point)
4241                         (if (search-forward "\n\n" nil t)
4242                             (point)
4243                           (point-max)))
4244       (gnus-article-save-original-date (gnus-treat-article 'head))
4245       (put-text-property (point-min) (point-max) 'article-treated-header t)
4246       (goto-char (point-max)))
4247     (while (and (not (eobp)) entity)
4248       (setq next (set-marker
4249                   (make-marker)
4250                   (next-single-property-change (point) 'mime-view-entity
4251                                                nil (point-max))))
4252       (let ((types (mime-entity-content-type entity)))
4253         (while (eq 'multipart (mime-content-type-primary-type types))
4254           (setq entity (car (mime-entity-children entity))
4255                 types (mime-entity-content-type entity)))
4256         (when types
4257           (setq type (format "%s/%s"
4258                              (mime-content-type-primary-type types)
4259                              (mime-content-type-subtype types)))))
4260       (if (string-equal type "message/rfc822")
4261           (progn
4262             (setq next (point))
4263             (let ((children (mime-entity-children entity))
4264                   last-children)
4265               (when children
4266                 (setq last-children (nth (1- (length children)) children))
4267                 (while
4268                     (and
4269                      (not (eq last-children
4270                               (get-text-property next 'mime-view-entity)))
4271                      (setq next
4272                            (next-single-property-change next
4273                                                         'mime-view-entity
4274                                                         nil (point-max)))))))
4275             (setq next (next-single-property-change next 'mime-view-entity
4276                                                     nil (point-max)))
4277             (save-restriction
4278               (narrow-to-region (point) next)
4279               (gnus-article-prepare-mime-display)
4280               (goto-char (point-max)))
4281             (setq entity (get-text-property (point) 'mime-view-entity)))
4282         (save-restriction
4283           (narrow-to-region (point) next)
4284           ;; Kludge. We have to count true number, but for now,
4285           ;; part number is here only to achieve `last'.
4286           (gnus-treat-article nil 1
4287                               (if (eq entity last-entity)
4288                                   1 2)
4289                               type)
4290           (goto-char (point-max)))
4291         (setq entity (get-text-property next 'mime-view-entity))))))
4292
4293 ;;;###autoload
4294 (defun gnus-article-prepare-display ()
4295   "Make the current buffer look like a nice article."
4296   (let ((gnus-article-buffer (current-buffer))
4297         buffer-read-only
4298         (inhibit-read-only t))
4299     (unless (eq major-mode 'gnus-article-mode)
4300       (gnus-article-mode))
4301     (setq buffer-read-only nil
4302           gnus-button-marker-list nil
4303           gnus-article-wash-types nil
4304           gnus-article-image-alist nil)
4305     (save-restriction
4306       (widen)
4307       (static-if (featurep 'xemacs)
4308           (map-extents (lambda (extent maparg) (delete-extent extent)))
4309         (let ((lists (overlay-lists)))
4310           (dolist (overlay (nconc (car lists) (cdr lists)))
4311             (delete-overlay overlay)))))
4312     (gnus-run-hooks 'gnus-tmp-internal-hook))
4313   (let ((show-mime (unless (member gnus-newsgroup-name '("nndraft:delayed"
4314                                                          "nndraft:drafts"))
4315                      gnus-show-mime))
4316         (inhibit-read-only t))
4317     (set-buffer gnus-original-article-buffer)
4318     ;; Display message.
4319     (setq mime-message-structure gnus-current-headers)
4320     (mime-buffer-entity-set-buffer-internal mime-message-structure
4321                                             gnus-original-article-buffer)
4322     (mime-entity-set-representation-type-internal mime-message-structure
4323                                                   'mime-buffer-entity)
4324     (luna-send mime-message-structure 'initialize-instance
4325                mime-message-structure)
4326     (if show-mime
4327         (let (mime-display-header-hook mime-display-text/plain-hook)
4328           (funcall gnus-article-display-method-for-mime))
4329       (funcall gnus-article-display-method-for-traditional))
4330     ;; Call the treatment functions.
4331     (save-restriction
4332       (widen)
4333       (if show-mime
4334           (gnus-article-prepare-mime-display)
4335         (narrow-to-region (goto-char (point-min))
4336                           (if (search-forward "\n\n" nil t)
4337                               (point)
4338                             (point-max)))
4339         (gnus-article-save-original-date (gnus-treat-article 'head))
4340         (put-text-property (point-min) (point-max) 'article-treated-header t)
4341         (goto-char (point-max))
4342         (widen)
4343         (narrow-to-region (point) (point-max))
4344         (gnus-treat-article nil))
4345       (put-text-property (point-min) (point-max) 'read-only nil)))
4346   (gnus-run-hooks 'gnus-article-prepare-hook))
4347
4348 (defun gnus-article-decode-article-as-default-mime-charset ()
4349   "Decode an article as `default-mime-charset'.  It won't work if the
4350 value of the variable `gnus-show-mime' is non-nil."
4351   (unless (or gnus-show-mime
4352               (member gnus-newsgroup-name '("nndraft:delayed"
4353                                             "nndraft:drafts")))
4354     (set (make-local-variable 'default-mime-charset)
4355          (with-current-buffer gnus-summary-buffer
4356            default-mime-charset))
4357     (decode-mime-charset-region (point-min) (point-max)
4358                                 default-mime-charset)))
4359
4360 ;;;
4361 ;;; Gnus MIME viewing functions
4362 ;;;
4363
4364 (defvar gnus-mime-button-line-format "%{%([%p. %d%T]%)%}%e\n"
4365   "Format of the MIME buttons.
4366
4367 Valid specifiers include:
4368 %t  The MIME type
4369 %T  MIME type, along with additional info
4370 %n  The `name' parameter
4371 %d  The description, if any
4372 %l  The length of the encoded part
4373 %p  The part identifier number
4374 %e  Dots if the part isn't displayed
4375
4376 General format specifiers can also be used.  See Info node
4377 `(gnus)Formatting Variables'.")
4378
4379 (defvar gnus-mime-button-line-format-alist
4380   '((?t gnus-tmp-type ?s)
4381     (?T gnus-tmp-type-long ?s)
4382     (?n gnus-tmp-name ?s)
4383     (?d gnus-tmp-description ?s)
4384     (?p gnus-tmp-id ?s)
4385     (?l gnus-tmp-length ?d)
4386     (?e gnus-tmp-dots ?s)))
4387
4388 (defvar gnus-mime-button-commands
4389   '((gnus-article-press-button "\r" "Toggle Display")
4390     (gnus-mime-view-part "v" "View Interactively...")
4391     (gnus-mime-view-part-as-type "t" "View As Type...")
4392     (gnus-mime-view-part-as-charset "C" "View As charset...")
4393     (gnus-mime-save-part "o" "Save...")
4394     (gnus-mime-save-part-and-strip "\C-o" "Save and Strip")
4395     (gnus-mime-delete-part "d" "Delete part")
4396     (gnus-mime-copy-part "c" "View As Text, In Other Buffer")
4397     (gnus-mime-inline-part "i" "View As Text, In This Buffer")
4398     (gnus-mime-view-part-internally "E" "View Internally")
4399     (gnus-mime-view-part-externally "e" "View Externally")
4400     (gnus-mime-print-part "p" "Print")
4401     (gnus-mime-pipe-part "|" "Pipe To Command...")
4402     (gnus-mime-action-on-part "." "Take action on the part...")))
4403
4404 (defun gnus-article-mime-part-status ()
4405   (with-current-buffer gnus-article-buffer
4406     (let ((entity (get-text-property (point-min) 'mime-view-entity))
4407           children)
4408       (if (and entity
4409                (setq children (mime-entity-children entity))
4410                (setq children (length children)))
4411           (if (eq 1 children)
4412               " (1 part)"
4413             (format " (%d parts)" children))
4414         ""))))
4415
4416 (defvar gnus-mime-button-map
4417   (let ((map (make-sparse-keymap)))
4418     (define-key map gnus-mouse-2 'gnus-article-push-button)
4419     (define-key map gnus-down-mouse-3 'gnus-mime-button-menu)
4420     (dolist (c gnus-mime-button-commands)
4421       (define-key map (cadr c) (car c)))
4422     map))
4423
4424 (easy-menu-define
4425   gnus-mime-button-menu gnus-mime-button-map "MIME button menu."
4426   `("MIME Part"
4427     ,@(mapcar (lambda (c)
4428                 (vector (caddr c) (car c) :enable t))
4429               gnus-mime-button-commands)))
4430
4431 (defun gnus-mime-button-menu (event prefix)
4432  "Construct a context-sensitive menu of MIME commands."
4433  (interactive "e\nP")
4434  (save-window-excursion
4435    (let ((pos (event-start event)))
4436      (select-window (posn-window pos))
4437      (goto-char (posn-point pos))
4438      (gnus-article-check-buffer)
4439      (popup-menu gnus-mime-button-menu nil prefix))))
4440
4441 (defun gnus-mime-view-all-parts (&optional handles)
4442   "View all the MIME parts."
4443   (interactive)
4444   (with-current-buffer gnus-article-buffer
4445     (let ((handles (or handles gnus-article-mime-handles))
4446           (mail-parse-charset gnus-newsgroup-charset)
4447           (mail-parse-ignored-charsets
4448            (with-current-buffer gnus-summary-buffer
4449              gnus-newsgroup-ignored-charsets)))
4450       (when handles
4451         (mm-remove-parts handles)
4452         (goto-char (point-min))
4453         (or (search-forward "\n\n") (goto-char (point-max)))
4454         (let ((inhibit-read-only t))
4455           (delete-region (point) (point-max))
4456           (mm-display-parts handles))))))
4457
4458 (defun gnus-article-jump-to-part (n)
4459   "Jump to MIME part N."
4460   (interactive "P")
4461   (pop-to-buffer gnus-article-buffer)
4462   (let ((parts (length gnus-article-mime-handle-alist)))
4463     (while (not (and (integerp n) (<= n parts) (>= n 1)))
4464       (setq n (read-number
4465                (concat
4466                 (if n
4467                     (format "`%s' is not a valid part.  " n)
4468                   "")
4469                 (format "Jump to part (2..%s): " parts))
4470                parts)))
4471     (gnus-article-goto-part n)))
4472
4473 (eval-when-compile
4474   (defsubst gnus-article-edit-part (handles &optional current-id)
4475     "Edit an article in order to delete a mime part.
4476 This function is exclusively used by `gnus-mime-save-part-and-strip'
4477 and `gnus-mime-delete-part', and not provided at run-time normally."
4478     (gnus-article-edit-article
4479      `(lambda ()
4480         (buffer-disable-undo)
4481         (erase-buffer)
4482         (let ((mail-parse-charset (or gnus-article-charset
4483                                       ',gnus-newsgroup-charset))
4484               (mail-parse-ignored-charsets
4485                (or gnus-article-ignored-charsets
4486                    ',gnus-newsgroup-ignored-charsets))
4487               (mbl mml-buffer-list))
4488           (setq mml-buffer-list nil)
4489           (insert-buffer-substring gnus-original-article-buffer)
4490           (mime-to-mml ',handles)
4491           (setq gnus-article-mime-handles nil)
4492           (let ((mbl1 mml-buffer-list))
4493             (setq mml-buffer-list mbl)
4494             (set (make-local-variable 'mml-buffer-list) mbl1))
4495           (gnus-make-local-hook 'kill-buffer-hook)
4496           (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t)))
4497      `(lambda (no-highlight)
4498         (let ((mail-parse-charset (or gnus-article-charset
4499                                       ',gnus-newsgroup-charset))
4500               (message-options message-options)
4501               (message-options-set-recipient)
4502               (mail-parse-ignored-charsets
4503                (or gnus-article-ignored-charsets
4504                    ',gnus-newsgroup-ignored-charsets)))
4505           (mml-to-mime)
4506           (mml-destroy-buffers)
4507           (remove-hook 'kill-buffer-hook
4508                        'mml-destroy-buffers t)
4509           (kill-local-variable 'mml-buffer-list))
4510         (gnus-summary-edit-article-done
4511          ,(or (mail-header-references gnus-current-headers) "")
4512          ,(gnus-group-read-only-p)
4513          ,gnus-summary-buffer no-highlight)))
4514     (gnus-article-edit-done)
4515     (gnus-summary-expand-window)
4516     (gnus-summary-show-article)
4517     (when (and current-id (integerp gnus-auto-select-part))
4518       (gnus-article-jump-to-part
4519        (+ current-id gnus-auto-select-part)))))
4520
4521 (defun gnus-mime-save-part-and-strip ()
4522   "Save the MIME part under point then replace it with an external body."
4523   (interactive)
4524   (gnus-article-check-buffer)
4525   (when (gnus-group-read-only-p)
4526     (error "The current group does not support deleting of parts"))
4527   (when (mm-complicated-handles gnus-article-mime-handles)
4528     (error "\
4529 The current article has a complicated MIME structure, giving up..."))
4530   (let* ((data (get-text-property (point) 'gnus-data))
4531          (id (get-text-property (point) 'gnus-part))
4532          file param
4533          (handles gnus-article-mime-handles))
4534     (setq file (and data (mm-save-part data)))
4535     (when file
4536       (with-current-buffer (mm-handle-buffer data)
4537         (erase-buffer)
4538         (insert "Content-Type: " (mm-handle-media-type data))
4539         (mml-insert-parameter-string (cdr (mm-handle-type data))
4540                                      '(charset))
4541         (insert "\n")
4542         (insert "Content-ID: " (message-make-message-id) "\n")
4543         (insert "Content-Transfer-Encoding: binary\n")
4544         (insert "\n"))
4545       (setcdr data
4546               (cdr (mm-make-handle nil
4547                                    `("message/external-body"
4548                                      (access-type . "LOCAL-FILE")
4549                                      (name . ,file)))))
4550       ;; (set-buffer gnus-summary-buffer)
4551       (gnus-article-edit-part handles id))))
4552
4553 (defun gnus-mime-delete-part ()
4554   "Delete the MIME part under point.
4555 Replace it with some information about the removed part."
4556   (interactive)
4557   (gnus-article-check-buffer)
4558   (when (gnus-group-read-only-p)
4559     (error "The current group does not support deleting of parts"))
4560   (when (mm-complicated-handles gnus-article-mime-handles)
4561     (error "\
4562 The current article has a complicated MIME structure, giving up..."))
4563   (when (or gnus-expert-user
4564             (gnus-yes-or-no-p "\
4565 Deleting parts may malfunction or destroy the article; continue? "))
4566     (let* ((data (get-text-property (point) 'gnus-data))
4567            (id (get-text-property (point) 'gnus-part))
4568            (handles gnus-article-mime-handles)
4569            (none "(none)")
4570            (description
4571             (or
4572              (mail-decode-encoded-word-string (or (mm-handle-description data)
4573                                                   none))))
4574            (filename
4575             (or (mail-content-type-get (mm-handle-disposition data) 'filename)
4576                 none))
4577            (type (mm-handle-media-type data)))
4578       (unless data
4579         (error "No MIME part under point"))
4580       (with-current-buffer (mm-handle-buffer data)
4581         (let ((bsize (format "%s" (buffer-size))))
4582           (erase-buffer)
4583           (insert
4584            (concat
4585             ",----\n"
4586             "| The following attachment has been deleted:\n"
4587             "|\n"
4588             "| Type:           " type "\n"
4589             "| Filename:       " filename "\n"
4590             "| Size (encoded): " bsize " Byte\n"
4591             "| Description:    " description "\n"
4592             "`----\n"))
4593           (setcdr data
4594                   (cdr (mm-make-handle
4595                         nil `("text/plain") nil nil
4596                         (list "attachment")
4597                         (format "Deleted attachment (%s bytes)" bsize))))))
4598       ;; (set-buffer gnus-summary-buffer)
4599       (gnus-article-edit-part handles id))))
4600
4601 (defun gnus-mime-save-part ()
4602   "Save the MIME part under point."
4603   (interactive)
4604   (gnus-article-check-buffer)
4605   (let ((data (get-text-property (point) 'gnus-data)))
4606     (when data
4607       (mm-save-part data))))
4608
4609 (defun gnus-mime-pipe-part ()
4610   "Pipe the MIME part under point to a process."
4611   (interactive)
4612   (gnus-article-check-buffer)
4613   (let ((data (get-text-property (point) 'gnus-data)))
4614     (when data
4615       (mm-pipe-part data))))
4616
4617 (defun gnus-mime-view-part ()
4618   "Interactively choose a viewing method for the MIME part under point."
4619   (interactive)
4620   (gnus-article-check-buffer)
4621   (let ((data (get-text-property (point) 'gnus-data)))
4622     (when data
4623       (setq gnus-article-mime-handles
4624             (mm-merge-handles
4625              gnus-article-mime-handles (setq data (copy-sequence data))))
4626       (mm-interactively-view-part data))))
4627
4628 (defun gnus-mime-view-part-as-type-internal ()
4629   (gnus-article-check-buffer)
4630   (let* ((name (mail-content-type-get
4631                 (mm-handle-type (get-text-property (point) 'gnus-data))
4632                 'name))
4633          (def-type (and name (mm-default-file-encoding name))))
4634     (and def-type (cons def-type 0))))
4635
4636 (defun gnus-mime-view-part-as-type (&optional mime-type)
4637   "Choose a MIME media type, and view the part as such."
4638   (interactive)
4639   (unless mime-type
4640     (setq mime-type (completing-read
4641                      "View as MIME type: "
4642                      (mapcar #'list (mailcap-mime-types))
4643                      nil nil
4644                      (gnus-mime-view-part-as-type-internal))))
4645   (gnus-article-check-buffer)
4646   (let ((handle (get-text-property (point) 'gnus-data)))
4647     (when handle
4648       (setq handle
4649             (mm-make-handle (mm-handle-buffer handle)
4650                             (cons mime-type (cdr (mm-handle-type handle)))
4651                             (mm-handle-encoding handle)
4652                             (mm-handle-undisplayer handle)
4653                             (mm-handle-disposition handle)
4654                             (mm-handle-description handle)
4655                             nil
4656                             (mm-handle-id handle)))
4657       (setq gnus-article-mime-handles
4658             (mm-merge-handles gnus-article-mime-handles handle))
4659       (gnus-mm-display-part handle))))
4660
4661 (defun gnus-mime-copy-part (&optional handle arg)
4662   "Put the MIME part under point into a new buffer.
4663 If `auto-compression-mode' is enabled, compressed files like .gz and .bz2
4664 are decompressed."
4665   (interactive (list nil current-prefix-arg))
4666   (gnus-article-check-buffer)
4667   (unless handle
4668     (setq handle (get-text-property (point) 'gnus-data)))
4669   (when handle
4670     (let ((filename (or (mail-content-type-get (mm-handle-disposition handle)
4671                                                'name)
4672                         (mail-content-type-get (mm-handle-disposition handle)
4673                                                'filename)))
4674           contents dont-decode charset coding-system)
4675       (mm-with-unibyte-buffer
4676         (mm-insert-part handle)
4677         (setq contents (or (condition-case nil
4678                                (mm-decompress-buffer filename nil 'sig)
4679                              (error
4680                               (setq dont-decode t)
4681                               nil))
4682                            (buffer-string))))
4683       (setq filename (cond (filename (file-name-nondirectory filename))
4684                            (dont-decode "*raw data*")
4685                            (t "*decoded*")))
4686       (cond
4687        (dont-decode)
4688        ((not arg)
4689         (unless (setq charset (mail-content-type-get
4690                                (mm-handle-type handle) 'charset))
4691           (unless (setq coding-system (mm-with-unibyte-buffer
4692                                         (insert contents)
4693                                         (mm-find-buffer-file-coding-system)))
4694             (setq charset gnus-newsgroup-charset))))
4695        ((numberp arg)
4696         (setq charset (or (cdr (assq arg
4697                                      gnus-summary-show-article-charset-alist))
4698                           (mm-read-coding-system "Charset: ")))))
4699       (switch-to-buffer (generate-new-buffer filename))
4700       (if (or coding-system
4701               (and charset
4702                    (setq coding-system (mm-charset-to-coding-system charset))
4703                    (not (eq charset 'ascii))))
4704           (progn
4705             (mm-enable-multibyte)
4706             (insert (mm-decode-coding-string contents coding-system))
4707             (setq buffer-file-coding-system
4708                   (if (boundp 'last-coding-system-used)
4709                       (symbol-value 'last-coding-system-used)
4710                     coding-system)))
4711         (mm-disable-multibyte)
4712         (insert contents)
4713         (setq buffer-file-coding-system mm-binary-coding-system))
4714       ;; We do it this way to make `normal-mode' set the appropriate mode.
4715       (unwind-protect
4716           (progn
4717             (setq buffer-file-name (expand-file-name filename))
4718             (normal-mode))
4719         (setq buffer-file-name nil))
4720       (goto-char (point-min)))))
4721
4722 (defun gnus-mime-print-part (&optional handle filename)
4723   "Print the MIME part under point."
4724   (interactive (list nil (ps-print-preprint current-prefix-arg)))
4725   (gnus-article-check-buffer)
4726   (let* ((handle (or handle (get-text-property (point) 'gnus-data)))
4727          (contents (and handle (mm-get-part handle)))
4728          (file (mm-make-temp-file (expand-file-name "mm." mm-tmp-directory)))
4729          (printer (mailcap-mime-info (mm-handle-media-type handle) "print")))
4730     (when contents
4731         (if printer
4732             (unwind-protect
4733                 (progn
4734                   (mm-save-part-to-file handle file)
4735                   (call-process shell-file-name nil
4736                                 (generate-new-buffer " *mm*")
4737                                 nil
4738                                 shell-command-switch
4739                                 (mm-mailcap-command
4740                                  printer file (mm-handle-type handle))))
4741               (delete-file file))
4742           (with-temp-buffer
4743             (insert contents)
4744             (gnus-print-buffer))
4745           (ps-despool filename)))))
4746
4747 (defun gnus-mime-inline-part (&optional handle arg)
4748   "Insert the MIME part under point into the current buffer.
4749 Compressed files like .gz and .bz2 are decompressed."
4750   (interactive (list nil current-prefix-arg))
4751   (gnus-article-check-buffer)
4752   (unless handle
4753     (setq handle (get-text-property (point) 'gnus-data)))
4754   (when handle
4755     (let ((b (point))
4756           (inhibit-read-only t)
4757           contents charset coding-system)
4758       (if (and (not arg) (mm-handle-undisplayer handle))
4759           (mm-remove-part handle)
4760         (mm-with-unibyte-buffer
4761           (mm-insert-part handle)
4762           (setq contents
4763                 (or (mm-decompress-buffer
4764                      (or (mail-content-type-get (mm-handle-disposition handle)
4765                                                 'name)
4766                          (mail-content-type-get (mm-handle-disposition handle)
4767                                                 'filename))
4768                      nil t)
4769                     (buffer-string))))
4770         (cond
4771          ((not arg)
4772           (unless (setq charset (mail-content-type-get
4773                                  (mm-handle-type handle) 'charset))
4774             (unless (setq coding-system
4775                           (mm-with-unibyte-buffer
4776                             (insert contents)
4777                             (mm-find-buffer-file-coding-system)))
4778               (setq charset gnus-newsgroup-charset))))
4779          ((numberp arg)
4780           (if (mm-handle-undisplayer handle)
4781               (mm-remove-part handle))
4782           (setq charset
4783                 (or (cdr (assq arg
4784                                gnus-summary-show-article-charset-alist))
4785                     (mm-read-coding-system "Charset: "))))
4786          (t
4787           (if (mm-handle-undisplayer handle)
4788               (mm-remove-part handle))))
4789         (forward-line 2)
4790         (mm-insert-inline
4791          handle
4792          (if (or coding-system
4793                  (and charset
4794                       (setq coding-system
4795                             (mm-charset-to-coding-system charset))
4796                       (not (eq coding-system 'ascii))))
4797              (mm-decode-coding-string contents coding-system)
4798            (mm-string-to-multibyte contents)))
4799         (goto-char b)))))
4800
4801 (defun gnus-mime-view-part-as-charset (&optional handle arg)
4802   "Insert the MIME part under point into the current buffer using the
4803 specified charset."
4804   (interactive (list nil current-prefix-arg))
4805   (gnus-article-check-buffer)
4806   (let* ((handle (or handle (get-text-property (point) 'gnus-data)))
4807          contents charset
4808          (b (point))
4809          (inhibit-read-only t))
4810     (when handle
4811       (if (mm-handle-undisplayer handle)
4812           (mm-remove-part handle))
4813       (let ((gnus-newsgroup-charset
4814              (or (cdr (assq arg
4815                             gnus-summary-show-article-charset-alist))
4816                  (mm-read-coding-system "Charset: ")))
4817             (gnus-newsgroup-ignored-charsets 'gnus-all))
4818         (gnus-article-press-button)))))
4819
4820 (defun gnus-mime-view-part-externally (&optional handle)
4821   "View the MIME part under point with an external viewer."
4822   (interactive)
4823   (gnus-article-check-buffer)
4824   (let* ((handle (or handle (get-text-property (point) 'gnus-data)))
4825          (mm-user-display-methods nil)
4826          (mm-inlined-types nil)
4827          (mail-parse-charset gnus-newsgroup-charset)
4828          (mail-parse-ignored-charsets
4829           (with-current-buffer gnus-summary-buffer
4830             gnus-newsgroup-ignored-charsets)))
4831     (when handle
4832       (if (mm-handle-undisplayer handle)
4833           (mm-remove-part handle)
4834         (mm-display-part handle)))))
4835
4836 (defun gnus-mime-view-part-internally (&optional handle)
4837   "View the MIME part under point with an internal viewer.
4838 If no internal viewer is available, use an external viewer."
4839   (interactive)
4840   (gnus-article-check-buffer)
4841   (let* ((handle (or handle (get-text-property (point) 'gnus-data)))
4842          (mm-inlined-types '(".*"))
4843          (mm-inline-large-images t)
4844          (mail-parse-charset gnus-newsgroup-charset)
4845          (mail-parse-ignored-charsets
4846           (with-current-buffer gnus-summary-buffer
4847             gnus-newsgroup-ignored-charsets))
4848          (inhibit-read-only t))
4849     (when handle
4850       (if (mm-handle-undisplayer handle)
4851           (mm-remove-part handle)
4852         (mm-display-part handle)))))
4853
4854 (defun gnus-mime-action-on-part (&optional action)
4855   "Do something with the MIME attachment at \(point\)."
4856   (interactive
4857    (list (completing-read "Action: " gnus-mime-action-alist nil t)))
4858   (gnus-article-check-buffer)
4859   (let ((action-pair (assoc action gnus-mime-action-alist)))
4860     (if action-pair
4861         (funcall (cdr action-pair)))))
4862
4863 (defun gnus-article-part-wrapper (n function)
4864   (with-current-buffer gnus-article-buffer
4865     (when (> n (length gnus-article-mime-handle-alist))
4866       (error "No such part"))
4867     (gnus-article-goto-part n)
4868     (let ((handle (cdr (assq n gnus-article-mime-handle-alist))))
4869       (funcall function handle))))
4870
4871 (defun gnus-article-pipe-part (n)
4872   "Pipe MIME part N, which is the numerical prefix."
4873   (interactive "p")
4874   (gnus-article-part-wrapper n 'mm-pipe-part))
4875
4876 (defun gnus-article-save-part (n)
4877   "Save MIME part N, which is the numerical prefix."
4878   (interactive "p")
4879   (gnus-article-part-wrapper n 'mm-save-part))
4880
4881 (defun gnus-article-interactively-view-part (n)
4882   "View MIME part N interactively, which is the numerical prefix."
4883   (interactive "p")
4884   (gnus-article-part-wrapper n 'mm-interactively-view-part))
4885
4886 (defun gnus-article-copy-part (n)
4887   "Copy MIME part N, which is the numerical prefix."
4888   (interactive "p")
4889   (gnus-article-part-wrapper n 'gnus-mime-copy-part))
4890
4891 (defun gnus-article-view-part-as-charset (n)
4892   "View MIME part N using a specified charset.
4893 N is the numerical prefix."
4894   (interactive "p")
4895   (gnus-article-part-wrapper n 'gnus-mime-view-part-as-charset))
4896
4897 (defun gnus-article-view-part-externally (n)
4898   "View MIME part N externally, which is the numerical prefix."
4899   (interactive "p")
4900   (gnus-article-part-wrapper n 'gnus-mime-view-part-externally))
4901
4902 (defun gnus-article-inline-part (n)
4903   "Inline MIME part N, which is the numerical prefix."
4904   (interactive "p")
4905   (gnus-article-part-wrapper n 'gnus-mime-inline-part))
4906
4907 (defun gnus-article-mime-match-handle-first (condition)
4908   (if condition
4909       (let (n)
4910         (dolist (ihandle gnus-article-mime-handle-alist)
4911           (if (and (cond
4912                     ((functionp condition)
4913                      (funcall condition (cdr ihandle)))
4914                     ((eq condition 'undisplayed)
4915                      (not (or (mm-handle-undisplayer (cdr ihandle))
4916                               (equal (mm-handle-media-type (cdr ihandle))
4917                                      "multipart/alternative"))))
4918                     ((eq condition 'undisplayed-alternative)
4919                      (not (mm-handle-undisplayer (cdr ihandle))))
4920                     (t t))
4921                    (gnus-article-goto-part (car ihandle))
4922                    (or (not n) (< (car ihandle) n)))
4923               (setq n (car ihandle))))
4924         (or n 1))
4925     1))
4926
4927 (defun gnus-article-view-part (&optional n)
4928   "View MIME part N, which is the numerical prefix."
4929   (interactive "P")
4930   (with-current-buffer gnus-article-buffer
4931     (or (numberp n) (setq n (gnus-article-mime-match-handle-first
4932                              gnus-article-mime-match-handle-function)))
4933     (when (> n (length gnus-article-mime-handle-alist))
4934       (error "No such part"))
4935     (let ((handle (cdr (assq n gnus-article-mime-handle-alist))))
4936       (when (gnus-article-goto-part n)
4937         (if (equal (car handle) "multipart/alternative")
4938             (gnus-article-press-button)
4939           (when (eq (gnus-mm-display-part handle) 'internal)
4940             (gnus-set-window-start)))))))
4941
4942 (defsubst gnus-article-mime-total-parts ()
4943   (if (bufferp (car gnus-article-mime-handles))
4944       1 ;; single part
4945     (1- (length gnus-article-mime-handles))))
4946
4947 (defun gnus-mm-display-part (handle)
4948   "Display HANDLE and fix MIME button."
4949   (let ((id (get-text-property (point) 'gnus-part))
4950         (point (point))
4951         (inhibit-read-only t))
4952     (forward-line 1)
4953     (prog1
4954         (let ((window (selected-window))
4955               (mail-parse-charset gnus-newsgroup-charset)
4956               (mail-parse-ignored-charsets
4957                (if (gnus-buffer-live-p gnus-summary-buffer)
4958                    (with-current-buffer gnus-summary-buffer
4959                      gnus-newsgroup-ignored-charsets)
4960                  nil)))
4961           (save-excursion
4962             (unwind-protect
4963                 (let ((win (gnus-get-buffer-window (current-buffer) t))
4964                       (beg (point)))
4965                   (when win
4966                     (select-window win))
4967                   (goto-char point)
4968                   (forward-line)
4969                   (if (mm-handle-displayed-p handle)
4970                       ;; This will remove the part.
4971                       (mm-display-part handle)
4972                     (save-restriction
4973                       (narrow-to-region (point)
4974                                         (if (eobp) (point) (1+ (point))))
4975                       (mm-display-part handle)
4976                       ;; We narrow to the part itself and
4977                       ;; then call the treatment functions.
4978                       (goto-char (point-min))
4979                       (forward-line 1)
4980                       (narrow-to-region (point) (point-max))
4981                       (gnus-treat-article
4982                        nil id
4983                        (gnus-article-mime-total-parts)
4984                        (mm-handle-media-type handle)))))
4985               (if (window-live-p window)
4986                   (select-window window)))))
4987       (goto-char point)
4988       (gnus-delete-line)
4989       (gnus-insert-mime-button
4990        handle id (list (mm-handle-displayed-p handle)))
4991       (goto-char point))))
4992
4993 (defun gnus-article-goto-part (n)
4994   "Go to MIME part N."
4995   (gnus-goto-char (text-property-any (point-min) (point-max) 'gnus-part n)))
4996
4997 (defun gnus-insert-mime-button (handle gnus-tmp-id &optional displayed)
4998   (let ((gnus-tmp-name
4999          (or (mail-content-type-get (mm-handle-type handle) 'name)
5000              (mail-content-type-get (mm-handle-disposition handle) 'filename)
5001              (mail-content-type-get (mm-handle-type handle) 'url)
5002              ""))
5003         (gnus-tmp-type (mm-handle-media-type handle))
5004         (gnus-tmp-description
5005          (mail-decode-encoded-word-string (or (mm-handle-description handle)
5006                                               "")))
5007         (gnus-tmp-dots
5008          (if (if displayed (car displayed)
5009                (mm-handle-displayed-p handle))
5010              "" "..."))
5011         (gnus-tmp-length (with-current-buffer (mm-handle-buffer handle)
5012                            (buffer-size)))
5013         gnus-tmp-type-long b e)
5014     (when (string-match ".*/" gnus-tmp-name)
5015       (setq gnus-tmp-name (replace-match "" t t gnus-tmp-name)))
5016     (setq gnus-tmp-type-long (concat gnus-tmp-type
5017                                      (and (not (equal gnus-tmp-name ""))
5018                                           (concat "; " gnus-tmp-name))))
5019     (unless (equal gnus-tmp-description "")
5020       (setq gnus-tmp-type-long (concat " --- " gnus-tmp-type-long)))
5021     (unless (bolp)
5022       (insert "\n"))
5023     (setq b (point))
5024     (gnus-eval-format
5025      gnus-mime-button-line-format gnus-mime-button-line-format-alist
5026      `(keymap ,gnus-mime-button-map
5027               gnus-callback gnus-mm-display-part
5028               gnus-part ,gnus-tmp-id
5029               article-type annotation
5030               gnus-data ,handle))
5031     (setq e (if (bolp)
5032                 ;; Exclude a newline.
5033                 (1- (point))
5034               (point)))
5035     (widget-convert-button
5036      'link b e
5037      :mime-handle handle
5038      :action 'gnus-widget-press-button
5039      :button-keymap gnus-mime-button-map
5040      :help-echo
5041      (lambda (widget/window &optional overlay pos)
5042        ;; Needed to properly clear the message due to a bug in
5043        ;; wid-edit (XEmacs only).
5044        (if (boundp 'help-echo-owns-message)
5045            (setq help-echo-owns-message t))
5046        (format
5047         "%S: %s the MIME part; %S: more options"
5048         (aref gnus-mouse-2 0)
5049         ;; XEmacs will get a single widget arg; Emacs 21 will get
5050         ;; window, overlay, position.
5051         (if (mm-handle-displayed-p
5052              (if overlay
5053                  (with-current-buffer (gnus-overlay-buffer overlay)
5054                    (widget-get (widget-at (gnus-overlay-start overlay))
5055                                :mime-handle))
5056                (widget-get widget/window :mime-handle)))
5057             "hide" "show")
5058         (aref gnus-down-mouse-3 0))))))
5059
5060 (defun gnus-widget-press-button (elems el)
5061   (goto-char (widget-get elems :from))
5062   (gnus-article-press-button))
5063
5064 (defvar gnus-displaying-mime nil)
5065
5066 (defun gnus-display-mime (&optional ihandles)
5067   "Display the MIME parts."
5068   (save-excursion
5069     (save-selected-window
5070       (let ((window (get-buffer-window gnus-article-buffer))
5071             (point (point)))
5072         (when window
5073           (select-window window)
5074           ;; We have to do this since selecting the window
5075           ;; may change the point.  So we set the window point.
5076           (set-window-point window point)))
5077       (let ((handles ihandles)
5078             (inhibit-read-only t)
5079             handle)
5080         (cond (handles)
5081               ((setq handles (mm-dissect-buffer nil gnus-article-loose-mime))
5082                (when gnus-article-emulate-mime
5083                  (mm-uu-dissect-text-parts handles)))
5084               (gnus-article-emulate-mime
5085                (setq handles (mm-uu-dissect))))
5086         (when (and (not ihandles)
5087                    (not gnus-displaying-mime))
5088           ;; Top-level call; we clean up.
5089           (when gnus-article-mime-handles
5090             (mm-destroy-parts gnus-article-mime-handles)
5091             (setq gnus-article-mime-handle-alist nil));; A trick.
5092           (setq gnus-article-mime-handles handles)
5093           ;; We allow users to glean info from the handles.
5094           (when gnus-article-mime-part-function
5095             (gnus-mime-part-function handles)))
5096         (if (and handles
5097                  (or (not (stringp (car handles)))
5098                      (cdr handles)))
5099             (progn
5100               (when (and (not ihandles)
5101                          (not gnus-displaying-mime))
5102                 ;; Clean up for mime parts.
5103                 (article-goto-body)
5104                 (delete-region (point) (point-max)))
5105               (let ((gnus-displaying-mime t))
5106                 (gnus-mime-display-part handles)))
5107           (save-restriction
5108             (article-goto-body)
5109             (narrow-to-region (point) (point-max))
5110             (gnus-treat-article nil 1 1)
5111             (widen)))
5112         (unless ihandles
5113           ;; Highlight the headers.
5114           (save-excursion
5115             (save-restriction
5116               (article-goto-body)
5117               (narrow-to-region (point-min) (point))
5118               (gnus-article-save-original-date
5119                (gnus-treat-article 'head)))))))))
5120
5121 (defcustom gnus-mime-display-multipart-as-mixed nil
5122   "Display \"multipart\" parts as  \"multipart/mixed\".
5123
5124 If t, it overrides nil values of
5125 `gnus-mime-display-multipart-alternative-as-mixed' and
5126 `gnus-mime-display-multipart-related-as-mixed'."
5127   :group 'gnus-article-mime
5128   :type 'boolean)
5129
5130 (defcustom gnus-mime-display-multipart-alternative-as-mixed nil
5131   "Display \"multipart/alternative\" parts as  \"multipart/mixed\"."
5132   :version "22.1"
5133   :group 'gnus-article-mime
5134   :type 'boolean)
5135
5136 (defcustom gnus-mime-display-multipart-related-as-mixed nil
5137   "Display \"multipart/related\" parts as  \"multipart/mixed\".
5138
5139 If displaying \"text/html\" is discouraged \(see
5140 `mm-discouraged-alternatives'\) images or other material inside a
5141 \"multipart/related\" part might be overlooked when this variable is nil."
5142   :version "22.1"
5143   :group 'gnus-article-mime
5144   :type 'boolean)
5145
5146 (defun gnus-mime-display-part (handle)
5147   (cond
5148    ;; Single part.
5149    ((not (stringp (car handle)))
5150     (gnus-mime-display-single handle))
5151    ;; User-defined multipart
5152    ((cdr (assoc (car handle) gnus-mime-multipart-functions))
5153     (funcall (cdr (assoc (car handle) gnus-mime-multipart-functions))
5154              handle))
5155    ;; multipart/alternative
5156    ((and (equal (car handle) "multipart/alternative")
5157          (not (or gnus-mime-display-multipart-as-mixed
5158                   gnus-mime-display-multipart-alternative-as-mixed)))
5159     (let ((id (1+ (length gnus-article-mime-handle-alist))))
5160       (push (cons id handle) gnus-article-mime-handle-alist)
5161       (gnus-mime-display-alternative (cdr handle) nil nil id)))
5162    ;; multipart/related
5163    ((and (equal (car handle) "multipart/related")
5164          (not (or gnus-mime-display-multipart-as-mixed
5165                   gnus-mime-display-multipart-related-as-mixed)))
5166     ;;;!!!We should find the start part, but we just default
5167     ;;;!!!to the first part.
5168     ;;(gnus-mime-display-part (cadr handle))
5169     ;;;!!! Most multipart/related is an HTML message plus images.
5170     ;;;!!! Unfortunately we are unable to let W3 display those
5171     ;;;!!! included images, so we just display it as a mixed multipart.
5172     ;;(gnus-mime-display-mixed (cdr handle))
5173     ;;;!!! No, w3 can display everything just fine.
5174     (gnus-mime-display-part (cadr handle)))
5175    ((equal (car handle) "multipart/signed")
5176     (gnus-add-wash-type 'signed)
5177     (gnus-mime-display-security handle))
5178    ((equal (car handle) "multipart/encrypted")
5179     (gnus-add-wash-type 'encrypted)
5180     (gnus-mime-display-security handle))
5181    ;; Other multiparts are handled like multipart/mixed.
5182    (t
5183     (gnus-mime-display-mixed (cdr handle)))))
5184
5185 (defun gnus-mime-part-function (handles)
5186   (if (stringp (car handles))
5187       (mapcar 'gnus-mime-part-function (cdr handles))
5188     (funcall gnus-article-mime-part-function handles)))
5189
5190 (defun gnus-mime-display-mixed (handles)
5191   (mapcar 'gnus-mime-display-part handles))
5192
5193 (defun gnus-mime-display-single (handle)
5194   (let ((type (mm-handle-media-type handle))
5195         (ignored gnus-ignored-mime-types)
5196         (not-attachment t)
5197         (move nil)
5198         display text)
5199     (catch 'ignored
5200       (progn
5201         (while ignored
5202           (when (string-match (pop ignored) type)
5203             (throw 'ignored nil)))
5204         (if (and (setq not-attachment
5205                        (and (not (mm-inline-override-p handle))
5206                             (or (not (mm-handle-disposition handle))
5207                                 (equal (car (mm-handle-disposition handle))
5208                                        "inline")
5209                                 (mm-attachment-override-p handle))))
5210                  (mm-automatic-display-p handle)
5211                  (or (and
5212                       (mm-inlinable-p handle)
5213                       (mm-inlined-p handle))
5214                      (mm-automatic-external-display-p type)))
5215             (setq display t)
5216           (when (equal (mm-handle-media-supertype handle) "text")
5217             (setq text t)))
5218         (let ((id (1+ (length gnus-article-mime-handle-alist)))
5219               beg)
5220           (push (cons id handle) gnus-article-mime-handle-alist)
5221           (when (or (not display)
5222                     (not (gnus-unbuttonized-mime-type-p type)))
5223             (gnus-insert-mime-button
5224              handle id (list (or display (and not-attachment text))))
5225             (gnus-article-insert-newline)
5226             ;; Remember modify the number of forward lines.
5227             (setq move t))
5228           (setq beg (point))
5229           (cond
5230            (display
5231             (when move
5232               (forward-line -1)
5233               (setq beg (point)))
5234             (let ((mail-parse-charset gnus-newsgroup-charset)
5235                   (mail-parse-ignored-charsets
5236                    (save-excursion (condition-case ()
5237                                        (set-buffer gnus-summary-buffer)
5238                                      (error))
5239                                    gnus-newsgroup-ignored-charsets)))
5240               (mm-display-part handle t))
5241             (goto-char (point-max)))
5242            ((and text not-attachment)
5243             (when move
5244               (forward-line -1)
5245               (setq beg (point)))
5246             (gnus-article-insert-newline)
5247             (mm-display-inline handle)
5248             (goto-char (point-max))))
5249           ;; Do highlighting.
5250           (save-excursion
5251             (save-restriction
5252               (narrow-to-region beg (point))
5253               (gnus-treat-article
5254                nil id
5255                (gnus-article-mime-total-parts)
5256                (mm-handle-media-type handle)))))))))
5257
5258 (defun gnus-unbuttonized-mime-type-p (type)
5259   "Say whether TYPE is to be unbuttonized."
5260   (unless gnus-inhibit-mime-unbuttonizing
5261     (when (catch 'found
5262             (let ((types gnus-unbuttonized-mime-types))
5263               (while types
5264                 (when (string-match (pop types) type)
5265                   (throw 'found t)))))
5266       (not (catch 'found
5267              (let ((types gnus-buttonized-mime-types))
5268                (while types
5269                  (when (string-match (pop types) type)
5270                    (throw 'found t)))))))))
5271
5272 (defun gnus-article-insert-newline ()
5273   "Insert a newline, but mark it as undeletable."
5274   (gnus-put-text-property
5275    (point) (progn (insert "\n") (point)) 'gnus-undeletable t))
5276
5277 (defun gnus-mime-display-alternative (handles &optional preferred ibegend id)
5278   (let* ((preferred (or preferred (mm-preferred-alternative handles)))
5279          (ihandles handles)
5280          (point (point))
5281          handle (inhibit-read-only t) from props begend not-pref)
5282     (save-window-excursion
5283       (save-restriction
5284         (when ibegend
5285           (narrow-to-region (car ibegend)
5286                             (or (cdr ibegend)
5287                                 (progn
5288                                   (goto-char (car ibegend))
5289                                   (forward-line 2)
5290                                   (point))))
5291           (delete-region (point-min) (point-max))
5292           (mm-remove-parts handles))
5293         (setq begend (list (point-marker)))
5294         ;; Do the toggle.
5295         (unless (setq not-pref (cadr (member preferred ihandles)))
5296           (setq not-pref (car ihandles)))
5297         (when (or ibegend
5298                   (not preferred)
5299                   (not (gnus-unbuttonized-mime-type-p
5300                         "multipart/alternative")))
5301           (gnus-add-text-properties
5302            (setq from (point))
5303            (progn
5304              (insert (format "%d.  " id))
5305              (point))
5306            `(gnus-callback
5307              (lambda (handles)
5308                (unless ,(not ibegend)
5309                  (setq gnus-article-mime-handle-alist
5310                        ',gnus-article-mime-handle-alist))
5311                (gnus-mime-display-alternative
5312                 ',ihandles ',not-pref ',begend ,id))
5313              keymap ,gnus-mime-button-map
5314              ,gnus-mouse-face-prop ,gnus-article-mouse-face
5315              face ,gnus-article-button-face
5316              gnus-part ,id
5317              gnus-data ,handle))
5318           (widget-convert-button 'link from (point)
5319                                  :action 'gnus-widget-press-button
5320                                  :button-keymap gnus-widget-button-keymap)
5321           ;; Do the handles
5322           (while (setq handle (pop handles))
5323             (gnus-add-text-properties
5324              (setq from (point))
5325              (progn
5326                (insert (format "(%c) %-18s"
5327                                (if (equal handle preferred) ?* ? )
5328                                (mm-handle-media-type handle)))
5329                (point))
5330              `(gnus-callback
5331                (lambda (handles)
5332                  (unless ,(not ibegend)
5333                    (setq gnus-article-mime-handle-alist
5334                          ',gnus-article-mime-handle-alist))
5335                  (gnus-mime-display-alternative
5336                   ',ihandles ',handle ',begend ,id))
5337                keymap ,gnus-mime-button-map
5338                ,gnus-mouse-face-prop ,gnus-article-mouse-face
5339                face ,gnus-article-button-face
5340                gnus-part ,id
5341                gnus-data ,handle))
5342             (widget-convert-button 'link from (point)
5343                                    :action 'gnus-widget-press-button
5344                                    :button-keymap gnus-widget-button-keymap)
5345             (insert "  "))
5346           (insert "\n\n"))
5347         (when preferred
5348           (if (stringp (car preferred))
5349               (gnus-display-mime preferred)
5350             (let ((mail-parse-charset gnus-newsgroup-charset)
5351                   (mail-parse-ignored-charsets
5352                    (with-current-buffer gnus-summary-buffer
5353                      gnus-newsgroup-ignored-charsets)))
5354               (mm-display-part preferred)
5355               ;; Do highlighting.
5356               (save-excursion
5357                 (save-restriction
5358                   (narrow-to-region (car begend) (point-max))
5359                   (gnus-treat-article
5360                    nil (length gnus-article-mime-handle-alist)
5361                    (gnus-article-mime-total-parts)
5362                    (mm-handle-media-type handle))))))
5363           (goto-char (point-max))
5364           (setcdr begend (point-marker)))))
5365     (when ibegend
5366       (goto-char point))))
5367
5368 (defconst gnus-article-wash-status-strings
5369   (let ((alist '((cite "c" "Possible hidden citation text"
5370                        " " "All citation text visible")
5371                  (headers "h" "Hidden headers"
5372                           " " "All headers visible.")
5373                  (pgp "p" "Encrypted or signed message status hidden"
5374                       " " "No hidden encryption nor digital signature status")
5375                  (signature "s" "Signature has been hidden"
5376                             " " "Signature is visible")
5377                  (overstrike "o" "Overstrike (^H) characters applied"
5378                              " " "No overstrike characters applied")
5379                  (gnus-show-mime "m" "Mime processing is activated"
5380                                  " " "Mime processing is not activated")
5381                  (emphasis "e" "/*_Emphasis_*/ characters applied"
5382                            " " "No /*_emphasis_*/ characters applied")))
5383         result)
5384     (dolist (entry alist result)
5385       (let ((key (nth 0 entry))
5386             (on (copy-sequence (nth 1 entry)))
5387             (on-help (nth 2 entry))
5388             (off (copy-sequence (nth 3 entry)))
5389             (off-help (nth 4 entry)))
5390         (put-text-property 0 1 'help-echo on-help on)
5391         (put-text-property 0 1 'help-echo off-help off)
5392         (push (list key on off) result))))
5393   "Alist of strings describing wash status in the mode line.
5394 Each entry has the form (KEY ON OF), where the KEY is a symbol
5395 representing the particular washing function, ON is the string to use
5396 in the article mode line when the washing function is active, and OFF
5397 is the string to use when it is inactive.")
5398
5399 (defun gnus-article-wash-status-entry (key value)
5400   (let ((entry (assoc key gnus-article-wash-status-strings)))
5401     (if value (nth 1 entry) (nth 2 entry))))
5402
5403 (defun gnus-article-wash-status ()
5404   "Return a string which display status of article washing."
5405   (with-current-buffer gnus-article-buffer
5406     (let ((cite (memq 'cite gnus-article-wash-types))
5407           (headers (memq 'headers gnus-article-wash-types))
5408           (boring (memq 'boring-headers gnus-article-wash-types))
5409           (pgp (memq 'pgp gnus-article-wash-types))
5410           (pem (memq 'pem gnus-article-wash-types))
5411           (signed (memq 'signed gnus-article-wash-types))
5412           (encrypted (memq 'encrypted gnus-article-wash-types))
5413           (signature (memq 'signature gnus-article-wash-types))
5414           (overstrike (memq 'overstrike gnus-article-wash-types))
5415           (emphasis (memq 'emphasis gnus-article-wash-types)))
5416       (concat
5417        (gnus-article-wash-status-entry 'cite cite)
5418        (gnus-article-wash-status-entry 'headers (or headers boring))
5419        (gnus-article-wash-status-entry 'pgp (or pgp pem signed encrypted))
5420        (gnus-article-wash-status-entry 'signature signature)
5421        (gnus-article-wash-status-entry 'overstrike overstrike)
5422        (gnus-article-wash-status-entry 'gnus-show-mime gnus-show-mime)
5423        (gnus-article-wash-status-entry 'emphasis emphasis)))))
5424
5425 (defun gnus-add-wash-type (type)
5426   "Add a washing of TYPE to the current status."
5427   (add-to-list 'gnus-article-wash-types type))
5428
5429 (defun gnus-delete-wash-type (type)
5430   "Add a washing of TYPE to the current status."
5431   (setq gnus-article-wash-types (delq type gnus-article-wash-types)))
5432
5433 (defun gnus-add-image (category image)
5434   "Add IMAGE of CATEGORY to the list of displayed images."
5435   (let ((entry (assq category gnus-article-image-alist)))
5436     (unless entry
5437       (setq entry (list category))
5438       (push entry gnus-article-image-alist))
5439     (nconc entry (list image))))
5440
5441 (defun gnus-delete-images (category)
5442   "Delete all images in CATEGORY."
5443   (let ((entry (assq category gnus-article-image-alist)))
5444     (dolist (image (cdr entry))
5445       (gnus-remove-image image category))
5446     (setq gnus-article-image-alist (delq entry gnus-article-image-alist))
5447     (gnus-delete-wash-type category)))
5448
5449 (defalias 'gnus-article-hide-headers-if-wanted 'gnus-article-maybe-hide-headers)
5450
5451 (defun gnus-article-maybe-hide-headers ()
5452   "Hide unwanted headers if `gnus-have-all-headers' is nil.
5453 Provided for backwards compatibility."
5454   (when (and (or (not (gnus-buffer-live-p gnus-summary-buffer))
5455                  (not (with-current-buffer gnus-summary-buffer
5456                         gnus-have-all-headers)))
5457              (not gnus-inhibit-hiding))
5458     (gnus-article-hide-headers)))
5459
5460 ;;; Article savers.
5461
5462 (defun gnus-output-to-file (file-name)
5463   "Append the current article to a file named FILE-NAME."
5464   (let ((artbuf (current-buffer)))
5465     (with-temp-buffer
5466       (insert-buffer-substring artbuf)
5467       ;; Append newline at end of the buffer as separator, and then
5468       ;; save it to file.
5469       (goto-char (point-max))
5470       (insert "\n")
5471       (let ((file-name-coding-system nnmail-pathname-coding-system))
5472         (write-region-as-binary (point-min) (point-max) file-name 'append))
5473       t)))
5474
5475 (defun gnus-narrow-to-page (&optional arg)
5476   "Narrow the article buffer to a page.
5477 If given a numerical ARG, move forward ARG pages."
5478   (interactive "P")
5479   (setq arg (if arg (prefix-numeric-value arg) 0))
5480   (save-excursion
5481     (set-buffer gnus-article-buffer)
5482     (goto-char (point-min))
5483     (widen)
5484     ;; Remove any old next/prev buttons.
5485     (when (gnus-visual-p 'page-marker)
5486       (let ((inhibit-read-only t))
5487         (gnus-remove-text-with-property 'gnus-prev)
5488         (gnus-remove-text-with-property 'gnus-next)))
5489     (if
5490         (cond ((< arg 0)
5491                (re-search-backward page-delimiter nil 'move (1+ (abs arg))))
5492               ((> arg 0)
5493                (re-search-forward page-delimiter nil 'move arg)))
5494         (goto-char (match-end 0))
5495       (save-excursion
5496         (goto-char (point-min))
5497         (setq gnus-page-broken
5498               (and (re-search-forward page-delimiter nil t) t))))
5499     (when gnus-page-broken
5500       (narrow-to-region
5501        (point)
5502        (if (re-search-forward page-delimiter nil 'move)
5503            (match-beginning 0)
5504          (point)))
5505       (when (and (gnus-visual-p 'page-marker)
5506                  (> (point-min) (save-restriction (widen) (point-min))))
5507         (save-excursion
5508           (goto-char (point-min))
5509           (gnus-insert-prev-page-button)))
5510       (when (and (gnus-visual-p 'page-marker)
5511                  (< (point-max) (save-restriction (widen) (point-max))))
5512         (save-excursion
5513           (goto-char (point-max))
5514           (gnus-insert-next-page-button))))))
5515
5516 ;; Article mode commands
5517
5518 (defun gnus-article-goto-next-page ()
5519   "Show the next page of the article."
5520   (interactive)
5521   (when (gnus-article-next-page)
5522     (goto-char (point-min))
5523     (gnus-article-read-summary-keys nil (gnus-character-to-event ?n))))
5524
5525
5526 (defun gnus-article-goto-prev-page ()
5527   "Show the previous page of the article."
5528   (interactive)
5529   (if (bobp)
5530       (gnus-article-read-summary-keys nil (gnus-character-to-event ?p))
5531     (gnus-article-prev-page nil)))
5532
5533 ;; This is cleaner but currently breaks `gnus-pick-mode':
5534 ;;
5535 ;; (defun gnus-article-goto-next-page ()
5536 ;;   "Show the next page of the article."
5537 ;;   (interactive)
5538 ;;   (gnus-eval-in-buffer-window gnus-summary-buffer
5539 ;;     (gnus-summary-next-page)))
5540 ;;
5541 ;; (defun gnus-article-goto-prev-page ()
5542 ;;   "Show the next page of the article."
5543 ;;   (interactive)
5544 ;;   (gnus-eval-in-buffer-window gnus-summary-buffer
5545 ;;     (gnus-summary-prev-page)))
5546
5547 (defun gnus-article-next-page (&optional lines)
5548   "Show the next page of the current article.
5549 If end of article, return non-nil.  Otherwise return nil.
5550 Argument LINES specifies lines to be scrolled up."
5551   (interactive "p")
5552   (move-to-window-line -1)
5553   (if (save-excursion
5554         (end-of-line)
5555         (and (pos-visible-in-window-p)  ;Not continuation line.
5556              (>= (1+ (point)) (point-max)))) ;Allow for trailing newline.
5557       ;; Nothing in this page.
5558       (if (or (not gnus-page-broken)
5559               (save-excursion
5560                 (save-restriction
5561                   (widen)
5562                   (forward-line)
5563                   (eobp)))) ;Real end-of-buffer?
5564           (progn
5565             (when gnus-article-over-scroll
5566               (gnus-article-next-page-1 lines))
5567             t)                  ;Nothing more.
5568         (gnus-narrow-to-page 1)         ;Go to next page.
5569         nil)
5570     ;; More in this page.
5571     (gnus-article-next-page-1 lines)
5572     nil))
5573
5574 (defmacro gnus-article-beginning-of-window ()
5575   "Move point to the beginning of the window.
5576 In Emacs, the point is placed at the line number which `scroll-margin'
5577 specifies."
5578   (if (featurep 'xemacs)
5579       '(move-to-window-line 0)
5580     '(move-to-window-line
5581       (min (max 0 scroll-margin)
5582            (max 1 (- (window-height)
5583                      (if mode-line-format 1 0)
5584                      (if header-line-format 1 0)))))))
5585
5586 (defun gnus-article-next-page-1 (lines)
5587   (when (and (not (featurep 'xemacs))
5588              (numberp lines)
5589              (> lines 0)
5590              (numberp (symbol-value 'scroll-margin))
5591              (> (symbol-value 'scroll-margin) 0))
5592     ;; Protect against the bug that Emacs 21.x hangs up when scrolling up for
5593     ;; too many number of lines if `scroll-margin' is set as two or greater.
5594     (setq lines (min lines
5595                      (max 0 (- (count-lines (window-start) (point-max))
5596                                (symbol-value 'scroll-margin))))))
5597   (condition-case ()
5598       (let ((scroll-in-place nil))
5599         (scroll-up lines))
5600     (end-of-buffer
5601      ;; Long lines may cause an end-of-buffer error.
5602      (goto-char (point-max))))
5603   (gnus-article-beginning-of-window))
5604
5605 (defun gnus-article-prev-page (&optional lines)
5606   "Show previous page of current article.
5607 Argument LINES specifies lines to be scrolled down."
5608   (interactive "p")
5609   (move-to-window-line 0)
5610   (if (and gnus-page-broken
5611            (bobp)
5612            (not (save-restriction (widen) (bobp)))) ;Real beginning-of-buffer?
5613       (progn
5614         (gnus-narrow-to-page -1)        ;Go to previous page.
5615         (goto-char (point-max))
5616         (recenter -1))
5617     (prog1
5618         (condition-case ()
5619             (let ((scroll-in-place nil))
5620               (scroll-down lines))
5621           (beginning-of-buffer
5622            (goto-char (point-min))))
5623       (gnus-article-beginning-of-window))))
5624
5625 (defun gnus-article-only-boring-p ()
5626   "Decide whether there is only boring text remaining in the article.
5627 Something \"interesting\" is a word of at least two letters that does
5628 not have a face in `gnus-article-boring-faces'."
5629   (when (and gnus-article-skip-boring
5630              (boundp 'gnus-article-boring-faces)
5631              (symbol-value 'gnus-article-boring-faces))
5632     (save-excursion
5633       (catch 'only-boring
5634         (while (re-search-forward "\\b\\w\\w" nil t)
5635           (forward-char -1)
5636           (when (not (gnus-intersection
5637                       (gnus-faces-at (point))
5638                       (symbol-value 'gnus-article-boring-faces)))
5639             (throw 'only-boring nil)))
5640         (throw 'only-boring t)))))
5641
5642 (defun gnus-article-refer-article ()
5643   "Read article specified by message-id around point."
5644   (interactive)
5645   (save-excursion
5646     (re-search-backward "[ \t]\\|^" (point-at-bol) t)
5647     (re-search-forward "<?news:<?\\|<" (point-at-eol) t)
5648     (if (re-search-forward "[^@ ]+@[^ \t>]+" (point-at-eol) t)
5649         (let ((msg-id (concat "<" (match-string 0) ">")))
5650           (set-buffer gnus-summary-buffer)
5651           (gnus-summary-refer-article msg-id))
5652       (error "No references around point"))))
5653
5654 (defun gnus-article-show-summary ()
5655   "Reconfigure windows to show summary buffer."
5656   (interactive)
5657   (if (not (gnus-buffer-live-p gnus-summary-buffer))
5658       (error "There is no summary buffer for this article buffer")
5659     (gnus-article-set-globals)
5660     (gnus-configure-windows 'article)
5661     (gnus-summary-goto-subject gnus-current-article)
5662     (gnus-summary-position-point)))
5663
5664 (defun gnus-article-describe-briefly ()
5665   "Describe article mode commands briefly."
5666   (interactive)
5667   (gnus-message 6 (substitute-command-keys "\\<gnus-article-mode-map>\\[gnus-article-goto-next-page]:Next page   \\[gnus-article-goto-prev-page]:Prev page  \\[gnus-article-show-summary]:Show summary  \\[gnus-info-find-node]:Run Info  \\[gnus-article-describe-briefly]:This help")))
5668
5669 (defun gnus-article-summary-command ()
5670   "Execute the last keystroke in the summary buffer."
5671   (interactive)
5672   (let ((obuf (current-buffer))
5673         (owin (current-window-configuration))
5674         func)
5675     (switch-to-buffer gnus-article-current-summary 'norecord)
5676     (setq func (lookup-key (current-local-map) (this-command-keys)))
5677     (call-interactively func)
5678     (set-buffer obuf)
5679     (set-window-configuration owin)
5680     (set-window-point (get-buffer-window (current-buffer)) (point))))
5681
5682 (defun gnus-article-summary-command-nosave ()
5683   "Execute the last keystroke in the summary buffer."
5684   (interactive)
5685   (let (func)
5686     (pop-to-buffer gnus-article-current-summary 'norecord)
5687     (setq func (lookup-key (current-local-map) (this-command-keys)))
5688     (call-interactively func)))
5689
5690 (defun gnus-article-check-buffer ()
5691   "Beep if not in an article buffer."
5692   (unless (eq (get-buffer gnus-article-buffer) (current-buffer))
5693     (error "Command invoked outside of a Gnus article buffer")))
5694
5695 (defun gnus-article-read-summary-keys (&optional arg key not-restore-window)
5696   "Read a summary buffer key sequence and execute it from the article buffer."
5697   (interactive "P")
5698   (gnus-article-check-buffer)
5699   (let ((nosaves
5700          '("q" "Q"  "c" "r" "\C-c\C-f" "m"  "a" "f"
5701            "Zc" "ZC" "ZE" "ZJ" "ZQ" "ZZ" "Zn" "ZR" "ZG" "ZN" "ZP"
5702            "=" "^" "\M-^" "|"))
5703         (nosave-but-article
5704          '("A\r"))
5705         (nosave-in-article
5706          '("\C-d"))
5707         (up-to-top
5708          '("n" "Gn" "p" "Gp"))
5709         keys new-sum-point)
5710     (save-excursion
5711       (set-buffer gnus-article-current-summary)
5712       (let (gnus-pick-mode)
5713         (push (or key last-command-event) unread-command-events)
5714         (setq keys (static-if (featurep 'xemacs)
5715                        (events-to-keys (read-key-sequence nil))
5716                      (read-key-sequence nil)))))
5717     (message "")
5718
5719     (if (or (member keys nosaves)
5720             (member keys nosave-but-article)
5721             (member keys nosave-in-article))
5722         (let (func)
5723           (save-window-excursion
5724             (pop-to-buffer gnus-article-current-summary 'norecord)
5725             ;; We disable the pick minor mode commands.
5726             (let (gnus-pick-mode)
5727               (setq func (lookup-key (current-local-map) keys))))
5728           (if (or (not func)
5729                   (numberp func))
5730               (ding)
5731             (unless (member keys nosave-in-article)
5732               (set-buffer gnus-article-current-summary))
5733             (call-interactively func)
5734             (setq new-sum-point (point)))
5735           (when (member keys nosave-but-article)
5736             (pop-to-buffer gnus-article-buffer 'norecord)))
5737       ;; These commands should restore window configuration.
5738       (let ((obuf (current-buffer))
5739             (owin (current-window-configuration))
5740             (opoint (point))
5741             win func in-buffer selected new-sum-start new-sum-hscroll)
5742         (cond (not-restore-window
5743                (pop-to-buffer gnus-article-current-summary 'norecord))
5744               ((setq win (get-buffer-window gnus-article-current-summary))
5745                (select-window win))
5746               (t
5747                (switch-to-buffer gnus-article-current-summary 'norecord)))
5748         (setq in-buffer (current-buffer))
5749         ;; We disable the pick minor mode commands.
5750         (if (and (setq func (let (gnus-pick-mode)
5751                               (lookup-key (current-local-map) keys)))
5752                  (functionp func))
5753             (progn
5754               (call-interactively func)
5755               (when (eq win (selected-window))
5756                 (setq new-sum-point (point)
5757                       new-sum-start (window-start win)
5758                       new-sum-hscroll (window-hscroll win)))
5759               (when (eq in-buffer (current-buffer))
5760                 (setq selected (gnus-summary-select-article))
5761                 (set-buffer obuf)
5762                 (unless not-restore-window
5763                   (set-window-configuration owin))
5764                 (when (eq selected 'old)
5765                   (article-goto-body)
5766                   (set-window-start (get-buffer-window (current-buffer))
5767                                     1)
5768                   (set-window-point (get-buffer-window (current-buffer))
5769                                     (point)))
5770                 (when (and (not not-restore-window)
5771                            new-sum-point)
5772                   (set-window-point win new-sum-point)
5773                   (set-window-start win new-sum-start)
5774                   (set-window-hscroll win new-sum-hscroll))))
5775           (set-window-configuration owin)
5776           (ding))))))
5777
5778 (defun gnus-article-describe-key (key)
5779   "Display documentation of the function invoked by KEY.  KEY is a string."
5780   (interactive "kDescribe key: ")
5781   (gnus-article-check-buffer)
5782   (if (eq (key-binding key) 'gnus-article-read-summary-keys)
5783       (save-excursion
5784         (set-buffer gnus-article-current-summary)
5785         (let (gnus-pick-mode)
5786           (if (featurep 'xemacs)
5787               (progn
5788                 (push (elt key 0) unread-command-events)
5789                 (setq key (events-to-keys
5790                            (read-key-sequence "Describe key: "))))
5791             (setq unread-command-events
5792                   (mapcar
5793                    (lambda (x) (if (>= x 128) (list 'meta (- x 128)) x))
5794                    key))
5795             (setq key (read-key-sequence "Describe key: "))))
5796         (describe-key key))
5797     (describe-key key)))
5798
5799 (defun gnus-article-describe-key-briefly (key &optional insert)
5800   "Display documentation of the function invoked by KEY.  KEY is a string."
5801   (interactive "kDescribe key: \nP")
5802   (gnus-article-check-buffer)
5803   (if (eq (key-binding key) 'gnus-article-read-summary-keys)
5804       (save-excursion
5805         (set-buffer gnus-article-current-summary)
5806         (let (gnus-pick-mode)
5807           (if (featurep 'xemacs)
5808               (progn
5809                 (push (elt key 0) unread-command-events)
5810                 (setq key (events-to-keys
5811                            (read-key-sequence "Describe key: "))))
5812             (setq unread-command-events
5813                   (mapcar
5814                    (lambda (x) (if (>= x 128) (list 'meta (- x 128)) x))
5815                    key))
5816             (setq key (read-key-sequence "Describe key: "))))
5817         (describe-key-briefly key insert))
5818     (describe-key-briefly key insert)))
5819
5820 (defun gnus-article-reply-with-original (&optional wide)
5821   "Start composing a reply mail to the current message.
5822 The text in the region will be yanked.  If the region isn't active,
5823 the entire article will be yanked."
5824   (interactive "P")
5825   (let ((article (cdr gnus-article-current))
5826         contents)
5827     (if (not (gnus-region-active-p))
5828         (with-current-buffer gnus-summary-buffer
5829           (gnus-summary-reply (list (list article)) wide))
5830       (setq contents (buffer-substring (point) (mark t)))
5831       ;; Deactivate active regions.
5832       (when (and (boundp 'transient-mark-mode)
5833                  transient-mark-mode)
5834         (setq mark-active nil))
5835       (with-current-buffer gnus-summary-buffer
5836         (gnus-summary-reply
5837          (list (list article contents)) wide)))))
5838
5839 (defun gnus-article-followup-with-original ()
5840   "Compose a followup to the current article.
5841 The text in the region will be yanked.  If the region isn't active,
5842 the entire article will be yanked."
5843   (interactive)
5844   (let ((article (cdr gnus-article-current))
5845         contents)
5846       (if (not (gnus-region-active-p))
5847           (with-current-buffer gnus-summary-buffer
5848             (gnus-summary-followup (list (list article))))
5849         (setq contents (buffer-substring (point) (mark t)))
5850         ;; Deactivate active regions.
5851         (when (and (boundp 'transient-mark-mode)
5852                    transient-mark-mode)
5853           (setq mark-active nil))
5854         (with-current-buffer gnus-summary-buffer
5855           (gnus-summary-followup
5856            (list (list article contents)))))))
5857
5858 (defun gnus-article-hide (&optional arg force)
5859   "Hide all the gruft in the current article.
5860 This means that signatures, cited text and (some) headers will be
5861 hidden.
5862 If given a prefix, show the hidden text instead."
5863   (interactive (append (gnus-article-hidden-arg) (list 'force)))
5864   (gnus-article-hide-headers arg)
5865   (gnus-article-hide-list-identifiers arg)
5866   (gnus-article-hide-citation-maybe arg force)
5867   (gnus-article-hide-signature arg))
5868
5869 (defun gnus-article-maybe-highlight ()
5870   "Do some article highlighting if article highlighting is requested."
5871   (when (gnus-visual-p 'article-highlight 'highlight)
5872     (gnus-article-highlight-some)))
5873
5874 (defun gnus-check-group-server ()
5875   ;; Make sure the connection to the server is alive.
5876   (unless (gnus-server-opened
5877            (gnus-find-method-for-group gnus-newsgroup-name))
5878     (gnus-check-server (gnus-find-method-for-group gnus-newsgroup-name))
5879     (gnus-request-group gnus-newsgroup-name t)))
5880
5881 (eval-when-compile
5882   (autoload 'nneething-get-file-name "nneething"))
5883
5884 (defun gnus-request-article-this-buffer (article group)
5885   "Get an article and insert it into this buffer."
5886   (let (do-update-line sparse-header)
5887     (prog1
5888         (save-excursion
5889           (erase-buffer)
5890           (gnus-kill-all-overlays)
5891           (setq group (or group gnus-newsgroup-name))
5892
5893           ;; Using `gnus-request-article' directly will insert the article into
5894           ;; `nntp-server-buffer' - so we'll save some time by not having to
5895           ;; copy it from the server buffer into the article buffer.
5896
5897           ;; We only request an article by message-id when we do not have the
5898           ;; headers for it, so we'll have to get those.
5899           (when (stringp article)
5900             (gnus-read-header article))
5901
5902           ;; If the article number is negative, that means that this article
5903           ;; doesn't belong in this newsgroup (possibly), so we find its
5904           ;; message-id and request it by id instead of number.
5905           (when (and (numberp article)
5906                      gnus-summary-buffer
5907                      (get-buffer gnus-summary-buffer)
5908                      (gnus-buffer-exists-p gnus-summary-buffer))
5909             (save-excursion
5910               (set-buffer gnus-summary-buffer)
5911               (let ((header (gnus-summary-article-header article)))
5912                 (when (< article 0)
5913                   (cond
5914                    ((memq article gnus-newsgroup-sparse)
5915                     ;; This is a sparse gap article.
5916                     (setq do-update-line article)
5917                     (setq article (mail-header-id header))
5918                     (setq sparse-header (gnus-read-header article))
5919                     (setq gnus-newsgroup-sparse
5920                           (delq article gnus-newsgroup-sparse)))
5921                    ((vectorp header)
5922                     ;; It's a real article.
5923                     (setq article (mail-header-id header)))
5924                    (t
5925                     ;; It is an extracted pseudo-article.
5926                     (setq article 'pseudo)
5927                     (gnus-request-pseudo-article header))))
5928
5929                 (let ((method (gnus-find-method-for-group
5930                                gnus-newsgroup-name)))
5931                   (when (and (eq (car method) 'nneething)
5932                              (vectorp header))
5933                     (let ((dir (nneething-get-file-name
5934                                 (mail-header-id header))))
5935                       (when (and (stringp dir)
5936                                  (file-directory-p dir))
5937                         (setq article 'nneething)
5938                         (gnus-group-enter-directory dir))))))))
5939
5940           (cond
5941            ;; Refuse to select canceled articles.
5942            ((and (numberp article)
5943                  gnus-summary-buffer
5944                  (get-buffer gnus-summary-buffer)
5945                  (gnus-buffer-exists-p gnus-summary-buffer)
5946                  (eq (cdr (with-current-buffer gnus-summary-buffer
5947                             (assq article gnus-newsgroup-reads)))
5948                      gnus-canceled-mark))
5949             nil)
5950            ;; We first check `gnus-original-article-buffer'.
5951            ((and (get-buffer gnus-original-article-buffer)
5952                  (numberp article)
5953                  (with-current-buffer gnus-original-article-buffer
5954                    (and (equal (car gnus-original-article) group)
5955                         (eq (cdr gnus-original-article) article))))
5956             (insert-buffer-substring gnus-original-article-buffer)
5957             'article)
5958            ;; Check the backlog.
5959            ((and gnus-keep-backlog
5960                  (gnus-backlog-request-article group article (current-buffer)))
5961             'article)
5962            ;; Check asynchronous pre-fetch.
5963            ((gnus-async-request-fetched-article group article (current-buffer))
5964             (gnus-async-prefetch-next group article gnus-summary-buffer)
5965             (when (and (numberp article) gnus-keep-backlog)
5966               (gnus-backlog-enter-article group article (current-buffer)))
5967             'article)
5968            ;; Check the cache.
5969            ((and gnus-use-cache
5970                  (numberp article)
5971                  (gnus-cache-request-article article group))
5972             'article)
5973            ;; Check the agent cache.
5974            ((gnus-agent-request-article article group)
5975             'article)
5976            ;; Get the article and put into the article buffer.
5977            ((or (stringp article)
5978                 (numberp article))
5979             (let ((gnus-override-method gnus-override-method)
5980                   (methods (and (stringp article)
5981                                 gnus-refer-article-method))
5982                   (backend (car (gnus-find-method-for-group
5983                                  gnus-newsgroup-name)))
5984                   result
5985                   (inhibit-read-only t))
5986               (if (or (not (listp methods))
5987                       (and (symbolp (car methods))
5988                            (assq (car methods) nnoo-definition-alist)))
5989                   (setq methods (list methods)))
5990               (when (and (null gnus-override-method)
5991                          methods)
5992                 (setq gnus-override-method (pop methods)))
5993               (while (not result)
5994                 (when (eq gnus-override-method 'current)
5995                   (setq gnus-override-method
5996                         (with-current-buffer gnus-summary-buffer
5997                           gnus-current-select-method)))
5998                 (erase-buffer)
5999                 (gnus-kill-all-overlays)
6000                 (let ((gnus-newsgroup-name group))
6001                   (gnus-check-group-server))
6002                 (cond
6003                  ((gnus-request-article article group (current-buffer))
6004                   (when (numberp article)
6005                     (gnus-async-prefetch-next group article
6006                                               gnus-summary-buffer)
6007                     (when gnus-keep-backlog
6008                       (gnus-backlog-enter-article
6009                        group article (current-buffer))))
6010                   (setq result 'article))
6011                  (methods
6012                   (setq gnus-override-method (pop methods)))
6013                  ((not (string-match "^400 "
6014                                      (nnheader-get-report backend)))
6015                   ;; If we get 400 server disconnect, reconnect and
6016                   ;; retry; otherwise, assume the article has expired.
6017                   (setq result 'done))))
6018               (and (eq result 'article) 'article)))
6019            ;; It was a pseudo.
6020            (t article)))
6021
6022       ;; Associate this article with the current summary buffer.
6023       (setq gnus-article-current-summary gnus-summary-buffer)
6024
6025       ;; Take the article from the original article buffer
6026       ;; and place it in the buffer it's supposed to be in.
6027       (when (and (get-buffer gnus-article-buffer)
6028                  (equal (buffer-name (current-buffer))
6029                         (buffer-name (get-buffer gnus-article-buffer))))
6030         (save-excursion
6031           (if (get-buffer gnus-original-article-buffer)
6032               (set-buffer gnus-original-article-buffer)
6033             (set-buffer (gnus-get-buffer-create gnus-original-article-buffer))
6034             (buffer-disable-undo)
6035             (setq major-mode 'gnus-original-article-mode)
6036             (setq buffer-read-only t))
6037           (let ((inhibit-read-only t))
6038             (erase-buffer)
6039             (insert-buffer-substring gnus-article-buffer))
6040           (setq gnus-original-article (cons group article)))
6041
6042         ;; Decode charsets.
6043         (run-hooks 'gnus-article-decode-hook)
6044         ;; Mark article as decoded or not.
6045         (setq gnus-article-decoded-p gnus-article-decode-hook))
6046
6047       ;; Update sparse articles.
6048       (when (and do-update-line
6049                  (or (numberp article)
6050                      (stringp article)))
6051         (let ((buf (current-buffer)))
6052           (set-buffer gnus-summary-buffer)
6053           (gnus-summary-update-article do-update-line sparse-header)
6054           (gnus-summary-goto-subject do-update-line nil t)
6055           (set-window-point (gnus-get-buffer-window (current-buffer) t)
6056                             (point))
6057           (set-buffer buf))))))
6058
6059 ;;;
6060 ;;; Article editing
6061 ;;;
6062
6063 (defcustom gnus-article-edit-mode-hook nil
6064   "Hook run in article edit mode buffers."
6065   :group 'gnus-article-various
6066   :type 'hook)
6067
6068 (defcustom gnus-article-edit-article-setup-function
6069   'gnus-article-mime-edit-article-setup
6070   "Function called to setup an editing article buffer."
6071   :group 'gnus-article-various
6072   :type 'function)
6073
6074 (defvar gnus-article-edit-done-function nil)
6075
6076 (defvar gnus-article-edit-mode-map nil)
6077
6078 ;; Should we be using derived.el for this?
6079 (unless gnus-article-edit-mode-map
6080   (setq gnus-article-edit-mode-map (make-keymap))
6081   (set-keymap-parent gnus-article-edit-mode-map text-mode-map)
6082
6083   (gnus-define-keys gnus-article-edit-mode-map
6084     "\C-c?"    describe-mode
6085     "\C-c\C-c" gnus-article-edit-done
6086     "\C-c\C-k" gnus-article-edit-exit
6087     "\C-c\C-f\C-t" message-goto-to
6088     "\C-c\C-f\C-o" message-goto-from
6089     "\C-c\C-f\C-b" message-goto-bcc
6090     ;;"\C-c\C-f\C-w" message-goto-fcc
6091     "\C-c\C-f\C-c" message-goto-cc
6092     "\C-c\C-f\C-s" message-goto-subject
6093     "\C-c\C-f\C-r" message-goto-reply-to
6094     "\C-c\C-f\C-n" message-goto-newsgroups
6095     "\C-c\C-f\C-d" message-goto-distribution
6096     "\C-c\C-f\C-f" message-goto-followup-to
6097     "\C-c\C-f\C-m" message-goto-mail-followup-to
6098     "\C-c\C-f\C-k" message-goto-keywords
6099     "\C-c\C-f\C-u" message-goto-summary
6100     "\C-c\C-f\C-i" message-insert-or-toggle-importance
6101     "\C-c\C-f\C-a" message-generate-unsubscribed-mail-followup-to
6102     "\C-c\C-b" message-goto-body
6103     "\C-c\C-i" message-goto-signature
6104
6105     "\C-c\C-t" message-insert-to
6106     "\C-c\C-n" message-insert-newsgroups
6107     "\C-c\C-o" message-sort-headers
6108     "\C-c\C-e" message-elide-region
6109     "\C-c\C-v" message-delete-not-region
6110     "\C-c\C-z" message-kill-to-signature
6111     "\M-\r" message-newline-and-reformat
6112     "\C-c\C-a" mml-attach-file
6113     "\C-a" message-beginning-of-line
6114     "\t" message-tab
6115     "\M-;" comment-region)
6116
6117   (gnus-define-keys (gnus-article-edit-wash-map
6118                      "\C-c\C-w" gnus-article-edit-mode-map)
6119     "f" gnus-article-edit-full-stops))
6120
6121 (easy-menu-define
6122   gnus-article-edit-mode-field-menu gnus-article-edit-mode-map ""
6123   '("Field"
6124     ["Fetch To" message-insert-to t]
6125     ["Fetch Newsgroups" message-insert-newsgroups t]
6126     "----"
6127     ["To" message-goto-to t]
6128     ["From" message-goto-from t]
6129     ["Subject" message-goto-subject t]
6130     ["Cc" message-goto-cc t]
6131     ["Reply-To" message-goto-reply-to t]
6132     ["Summary" message-goto-summary t]
6133     ["Keywords" message-goto-keywords t]
6134     ["Newsgroups" message-goto-newsgroups t]
6135     ["Followup-To" message-goto-followup-to t]
6136     ["Mail-Followup-To" message-goto-mail-followup-to t]
6137     ["Distribution" message-goto-distribution t]
6138     ["Body" message-goto-body t]
6139     ["Signature" message-goto-signature t]))
6140
6141 (define-derived-mode gnus-article-edit-mode message-mode "Article Edit"
6142   "Major mode for editing articles.
6143 This is an extended text-mode.
6144
6145 \\{gnus-article-edit-mode-map}"
6146   (make-local-variable 'gnus-article-edit-done-function)
6147   (make-local-variable 'gnus-prev-winconf)
6148   (set (make-local-variable 'font-lock-defaults)
6149        '(message-font-lock-keywords t))
6150   (set (make-local-variable 'mail-header-separator) "")
6151   (set (make-local-variable 'gnus-article-edit-mode) t)
6152   (easy-menu-add message-mode-field-menu message-mode-map)
6153   (setq buffer-read-only nil)
6154   (buffer-enable-undo)
6155   (widen))
6156
6157 (defun gnus-article-edit (&optional force)
6158   "Edit the current article.
6159 This will have permanent effect only in mail groups.
6160 If FORCE is non-nil, allow editing of articles even in read-only
6161 groups."
6162   (interactive "P")
6163   (when (and (not force)
6164              (gnus-group-read-only-p))
6165     (error "The current newsgroup does not support article editing"))
6166   (gnus-article-date-original)
6167   (gnus-article-edit-article
6168    'ignore
6169    `(lambda (no-highlight)
6170       'ignore
6171       (gnus-summary-edit-article-done
6172        ,(or (mail-header-references gnus-current-headers) "")
6173        ,(gnus-group-read-only-p) ,gnus-summary-buffer no-highlight))))
6174
6175 (defun gnus-article-edit-article (start-func exit-func)
6176   "Start editing the contents of the current article buffer."
6177   (let ((winconf (current-window-configuration)))
6178     (set-buffer gnus-article-buffer)
6179     (let ((message-auto-save-directory
6180            ;; Don't associate the article buffer with a draft file.
6181            nil))
6182       (gnus-article-edit-mode))
6183     (funcall start-func)
6184     (set-buffer-modified-p nil)
6185     (gnus-configure-windows 'edit-article)
6186     (setq gnus-article-edit-done-function exit-func)
6187     (setq gnus-prev-winconf winconf)
6188     (when gnus-article-edit-article-setup-function
6189       (funcall gnus-article-edit-article-setup-function))
6190     (gnus-message 6 "C-c C-c to end edits; C-c C-k to exit")))
6191
6192 (defun gnus-article-edit-done (&optional arg)
6193   "Update the article edits and exit."
6194   (interactive "P")
6195   (let ((func gnus-article-edit-done-function)
6196         (buf (current-buffer))
6197         (start (window-start))
6198         (p (point))
6199         (winconf gnus-prev-winconf))
6200     (remove-hook 'gnus-article-mode-hook
6201                  'gnus-article-mime-edit-article-unwind)
6202     (widen) ;; Widen it in case that users narrowed the buffer.
6203     (funcall func arg)
6204     (set-buffer buf)
6205     ;; The cache and backlog have to be flushed somewhat.
6206     (when gnus-keep-backlog
6207       (gnus-backlog-remove-article
6208        (car gnus-article-current) (cdr gnus-article-current)))
6209     ;; Flush original article as well.
6210     (save-excursion
6211       (when (get-buffer gnus-original-article-buffer)
6212         (set-buffer gnus-original-article-buffer)
6213         (setq gnus-original-article nil)))
6214     (when gnus-use-cache
6215       (gnus-cache-update-article
6216        (car gnus-article-current) (cdr gnus-article-current)))
6217     ;; We remove all text props from the article buffer.
6218     (kill-all-local-variables)
6219     (set-text-properties (point-min) (point-max) nil)
6220     (gnus-article-mode)
6221     (set-window-configuration winconf)
6222     (set-buffer buf)
6223     (set-window-start (get-buffer-window buf) start)
6224     (set-window-point (get-buffer-window buf) (point)))
6225   (gnus-summary-show-article))
6226
6227 (defun gnus-article-edit-exit ()
6228   "Exit the article editing without updating."
6229   (interactive)
6230   (when (or (not (buffer-modified-p))
6231             (yes-or-no-p "Article modified; kill anyway? "))
6232     (let ((curbuf (current-buffer))
6233           (p (point))
6234           (window-start (window-start)))
6235       (erase-buffer)
6236       (if (gnus-buffer-live-p gnus-original-article-buffer)
6237           (insert-buffer-substring gnus-original-article-buffer))
6238       (let ((winconf gnus-prev-winconf))
6239         (kill-all-local-variables)
6240         (gnus-article-mode)
6241         (set-window-configuration winconf)
6242         ;; Tippy-toe some to make sure that point remains where it was.
6243         (save-current-buffer
6244           (set-buffer curbuf)
6245           (set-window-start (get-buffer-window (current-buffer)) window-start)
6246           (goto-char p))))
6247     (gnus-summary-show-article)))
6248
6249 (defun gnus-article-edit-full-stops ()
6250   "Interactively repair spacing at end of sentences."
6251   (interactive)
6252   (save-excursion
6253     (goto-char (point-min))
6254     (search-forward-regexp "^$" nil t)
6255     (let ((case-fold-search nil))
6256       (query-replace-regexp "\\([.!?][])}]* \\)\\([[({A-Z]\\)" "\\1 \\2"))))
6257
6258 ;;;
6259 ;;; Article editing with MIME-Edit
6260 ;;;
6261
6262 (defcustom gnus-article-mime-edit-article-setup-hook nil
6263   "Hook run after setting up a MIME editing article buffer."
6264   :group 'gnus-article-various
6265   :type 'hook)
6266
6267 (defun gnus-article-mime-edit-article-unwind ()
6268   "Unwind `gnus-article-buffer' if article editing was given up."
6269   (remove-hook 'gnus-article-mode-hook 'gnus-article-mime-edit-article-unwind)
6270   (when (featurep 'font-lock)
6271     (setq font-lock-defaults nil)
6272     (font-lock-mode -1))
6273   (when mime-edit-mode-flag
6274     (mime-edit-exit 'nomime 'no-error)
6275     (message "")))
6276
6277 (defun gnus-article-mime-edit-article-setup ()
6278   "Convert current buffer to MIME-Edit buffer and turn on MIME-Edit mode
6279 after replacing with the original article."
6280   (setq gnus-show-mime t)
6281   (setq gnus-article-edit-done-function
6282         `(lambda (&rest args)
6283            (when mime-edit-mode-flag
6284              (let (mime-edit-insert-user-agent-field)
6285                (mime-edit-exit))
6286              (message ""))
6287            (goto-char (point-min))
6288            (let (case-fold-search)
6289              (when (re-search-forward
6290                     (format "^%s$" (regexp-quote mail-header-separator))
6291                     nil t)
6292                (replace-match "")))
6293            (apply ,gnus-article-edit-done-function args)
6294            (insert
6295             (prog1
6296                 (buffer-substring-no-properties (point-min) (point-max))
6297               (set-buffer (get-buffer-create gnus-original-article-buffer))
6298               (erase-buffer)))
6299            (setq gnus-current-headers (gnus-article-make-full-mail-header))
6300            (set-buffer gnus-article-buffer)
6301            (gnus-article-prepare-display)))
6302   (substitute-key-definition 'gnus-article-edit-done
6303                              'gnus-article-mime-edit-done
6304                              gnus-article-edit-mode-map)
6305   (substitute-key-definition 'gnus-article-edit-exit
6306                              'gnus-article-mime-edit-exit
6307                              gnus-article-edit-mode-map)
6308   (erase-buffer)
6309   (insert-buffer-substring gnus-original-article-buffer)
6310   (unless (member (with-current-buffer gnus-summary-buffer
6311                     gnus-newsgroup-name)
6312                   '("nndraft:delayed" "nndraft:drafts"))
6313     (let ((ofn (symbol-function 'mime-edit-decode-single-part-in-buffer)))
6314       (fset 'mime-edit-decode-single-part-in-buffer
6315             (lambda (&rest args)
6316               (if (let ((content-type (car args)))
6317                     (and (eq 'message (mime-content-type-primary-type
6318                                        content-type))
6319                          (eq 'rfc822 (mime-content-type-subtype
6320                                       content-type))))
6321                   (setcar (cdr args) 'not-decode-text))
6322               (apply ofn args)))
6323       (unwind-protect
6324           (mime-edit-again)
6325         (fset 'mime-edit-decode-single-part-in-buffer ofn))))
6326   (when (featurep 'font-lock)
6327     (set (make-local-variable 'font-lock-defaults)
6328          '(message-font-lock-keywords t))
6329     (font-lock-set-defaults)
6330     (turn-on-font-lock))
6331   (set-buffer-modified-p nil)
6332   (delete-other-windows)
6333   (add-hook 'gnus-article-mode-hook 'gnus-article-mime-edit-article-unwind)
6334   (gnus-run-hooks 'gnus-article-mime-edit-article-setup-hook))
6335
6336 (defun gnus-article-mime-edit-done (&optional arg)
6337   "Update the article MIME edits and exit."
6338   (interactive "P")
6339   (when (featurep 'font-lock)
6340     (setq font-lock-defaults nil)
6341     (font-lock-mode -1))
6342   (let ((inhibit-read-only t))
6343     (gnus-article-edit-done arg)))
6344
6345 (defun gnus-article-mime-edit-exit ()
6346   "Exit the article MIME editing without updating."
6347   (interactive)
6348   (when (or (not (buffer-modified-p))
6349             (yes-or-no-p "Article modified; kill anyway? "))
6350     (when (featurep 'font-lock)
6351       (setq font-lock-defaults nil)
6352       (font-lock-mode -1))
6353     (when mime-edit-mode-flag
6354       (let (mime-edit-insert-user-agent-field)
6355         (mime-edit-exit))
6356       (message ""))
6357     (goto-char (point-min))
6358     (let (case-fold-search)
6359       (when (re-search-forward
6360              (format "^%s$" (regexp-quote mail-header-separator)) nil t)
6361         (replace-match "")))
6362     (let ((winconf gnus-prev-winconf))
6363       (insert (prog1
6364                   (buffer-substring-no-properties (point-min) (point-max))
6365                 (set-buffer (get-buffer-create gnus-original-article-buffer))
6366                 (erase-buffer)))
6367       (setq gnus-current-headers (gnus-article-make-full-mail-header))
6368       (set-buffer gnus-article-buffer)
6369       (gnus-article-prepare-display)
6370       (set-window-configuration winconf))))
6371
6372 ;;;
6373 ;;; Article highlights
6374 ;;;
6375
6376 ;; Written by Per Abrahamsen <abraham@iesd.auc.dk>.
6377
6378 ;;; Internal Variables:
6379
6380 (defcustom gnus-button-url-regexp
6381   (if (string-match "[[:digit:]]" "1") ;; support POSIX?
6382       "\\b\\(\\(www\\.\\|\\(s?https?\\|ftp\\|file\\|gopher\\|nntp\\|news\\|telnet\\|wais\\|mailto\\|info\\):\\)\\(//[-a-z0-9_.]+:[0-9]*\\)?[-a-z0-9_=!?#$@~%&*+\\/:;.,[:word:]]+[-a-z0-9_=#$@~%&*+\\/[:word:]]\\)"
6383     "\\b\\(\\(www\\.\\|\\(s?https?\\|ftp\\|file\\|gopher\\|nntp\\|news\\|telnet\\|wais\\|mailto\\|info\\):\\)\\(//[-a-z0-9_.]+:[0-9]*\\)?\\([-a-z0-9_=!?#$@~%&*+\\/:;.,]\\|\\w\\)+\\([-a-z0-9_=#$@~%&*+\\/]\\|\\w\\)\\)")
6384   "Regular expression that matches URLs."
6385   :group 'gnus-article-buttons
6386   :type 'regexp)
6387
6388 (defcustom gnus-button-valid-fqdn-regexp
6389   message-valid-fqdn-regexp
6390   "Regular expression that matches a valid FQDN."
6391   :version "22.1"
6392   :group 'gnus-article-buttons
6393   :type 'regexp)
6394
6395 ;; Regexp suggested by Felix Wiemann in <87oeuomcz9.fsf@news2.ososo.de>
6396 (defcustom gnus-button-valid-localpart-regexp
6397   "[a-z0-9$%(*-=?[_][^<>\")!;:,{}\n\t ]*"
6398   "Regular expression that matches a localpart of mail addresses or MIDs."
6399   :version "22.1"
6400   :group 'gnus-article-buttons
6401   :type 'regexp)
6402
6403 (defcustom gnus-button-man-handler 'manual-entry
6404   "Function to use for displaying man pages.
6405 The function must take at least one argument with a string naming the
6406 man page."
6407   :version "22.1"
6408   :type '(choice (function-item :tag "Man" manual-entry)
6409                  (function-item :tag "Woman" woman)
6410                  (function :tag "Other"))
6411   :group 'gnus-article-buttons)
6412
6413 (defcustom gnus-ctan-url "http://tug.ctan.org/tex-archive/"
6414   "Top directory of a CTAN \(Comprehensive TeX Archive Network\) archive.
6415 If the default site is too slow, try to find a CTAN mirror, see
6416 <URL:http://tug.ctan.org/tex-archive/CTAN.sites?action=/index.html>.  See also
6417 the variable `gnus-button-handle-ctan'."
6418   :version "22.1"
6419   :group 'gnus-article-buttons
6420   :link '(custom-manual "(gnus)Group Parameters")
6421   :type '(choice (const "http://www.tex.ac.uk/tex-archive/")
6422                  (const "http://tug.ctan.org/tex-archive/")
6423                  (const "http://www.dante.de/CTAN/")
6424                  (string :tag "Other")))
6425
6426 (defcustom gnus-button-ctan-handler 'browse-url
6427   "Function to use for displaying CTAN links.
6428 The function must take one argument, the string naming the URL."
6429   :version "22.1"
6430   :type '(choice (function-item :tag "Browse Url" browse-url)
6431                  (function :tag "Other"))
6432   :group 'gnus-article-buttons)
6433
6434 (defcustom gnus-button-handle-ctan-bogus-regexp "^/?tex-archive/\\|^/"
6435   "Bogus strings removed from CTAN URLs."
6436   :version "22.1"
6437   :group 'gnus-article-buttons
6438   :type '(choice (const "^/?tex-archive/\\|/")
6439                  (regexp :tag "Other")))
6440
6441 (defcustom gnus-button-ctan-directory-regexp
6442   (regexp-opt
6443    (list "archive-tools" "biblio" "bibliography" "digests" "documentation"
6444          "dviware" "fonts" "graphics" "help" "indexing" "info" "language"
6445          "languages" "macros" "nonfree" "obsolete" "support" "systems"
6446          "tds" "tools" "usergrps" "web") t)
6447   "Regular expression for ctan directories.
6448 It should match all directories in the top level of `gnus-ctan-url'."
6449   :version "22.1"
6450   :group 'gnus-article-buttons
6451   :type 'regexp)
6452
6453 (defcustom gnus-button-mid-or-mail-regexp
6454   (concat "\\b\\(<?" gnus-button-valid-localpart-regexp "@"
6455           gnus-button-valid-fqdn-regexp
6456           ">?\\)\\b")
6457   "Regular expression that matches a message ID or a mail address."
6458   :version "22.1"
6459   :group 'gnus-article-buttons
6460   :type 'regexp)
6461
6462 (defcustom gnus-button-prefer-mid-or-mail 'gnus-button-mid-or-mail-heuristic
6463   "What to do when the button on a string as \"foo123@bar.invalid\" is pushed.
6464 Strings like this can be either a message ID or a mail address.  If it is one
6465 of the symbols `mid' or `mail', Gnus will always assume that the string is a
6466 message ID or a mail address, respectively.  If this variable is set to the
6467 symbol `ask', always query the user what do do.  If it is a function, this
6468 function will be called with the string as it's only argument.  The function
6469 must return `mid', `mail', `invalid' or `ask'."
6470   :version "22.1"
6471   :group 'gnus-article-buttons
6472   :type '(choice (function-item :tag "Heuristic function"
6473                                 gnus-button-mid-or-mail-heuristic)
6474                  (const ask)
6475                  (const mid)
6476                  (const mail)))
6477
6478 (defcustom gnus-button-mid-or-mail-heuristic-alist
6479   '((-10.0 . ".+\\$.+@")
6480     (-10.0 . "#")
6481     (-10.0 . "\\*")
6482     (-5.0  . "\\+[^+]*\\+.*@") ;; # two plus signs
6483     (-5.0  . "@[Nn][Ee][Ww][Ss]") ;; /\@news/i
6484     (-5.0  . "@.*[Dd][Ii][Aa][Ll][Uu][Pp]") ;; /\@.*dialup/i;
6485     (-1.0  . "^[^a-z]+@")
6486     ;;
6487     (-5.0  . "\\.[0-9][0-9]+.*@") ;; "\.[0-9]{2,}.*\@"
6488     (-5.0  . "[a-z].*[A-Z].*[a-z].*[A-Z].*@") ;; "([a-z].*[A-Z].*){2,}\@"
6489     (-3.0  . "[A-Z][A-Z][a-z][a-z].*@")
6490     (-5.0  . "\\...?.?@") ;; (-5.0 . "\..{1,3}\@")
6491     ;;
6492     (-2.0  . "^[0-9]")
6493     (-1.0  . "^[0-9][0-9]")
6494     ;;
6495     ;; -3.0 /^[0-9][0-9a-fA-F]{2,2}/;
6496     (-3.0  . "^[0-9][0-9a-fA-F][0-9a-fA-F][^0-9a-fA-F]")
6497     ;; -5.0 /^[0-9][0-9a-fA-F]{3,3}/;
6498     (-5.0  . "^[0-9][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][^0-9a-fA-F]")
6499     ;;
6500     (-3.0  .  "[0-9][0-9][0-9][0-9][0-9][^0-9].*@") ;; "[0-9]{5,}.*\@"
6501     (-3.0  .  "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][^0-9].*@")
6502     ;;       "[0-9]{8,}.*\@"
6503     (-3.0
6504      . "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9].*@")
6505     ;; "[0-9]{12,}.*\@"
6506     ;; compensation for TDMA dated mail addresses:
6507     (25.0  . "-dated-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]+.*@")
6508     ;;
6509     (-20.0 . "\\.fsf@") ;; Gnus
6510     (-20.0 . "^slrn")
6511     (-20.0 . "^Pine")
6512     (-20.0 . "_-_") ;; Subject change in thread
6513     ;;
6514     (-20.0 . "\\.ln@") ;; leafnode
6515     (-30.0 . "@ID-[0-9]+\\.[a-zA-Z]+\\.dfncis\\.de")
6516     (-30.0 . "@4[Aa][Xx]\\.com") ;; Forte Agent
6517     ;;
6518     ;; (5.0 . "") ;; $local_part_len <= 7
6519     (10.0  . "^[^0-9]+@")
6520     (3.0   . "^[^0-9]+[0-9][0-9]?[0-9]?@")
6521     ;;      ^[^0-9]+[0-9]{1,3}\@ digits only at end of local part
6522     (3.0   . "\@stud")
6523     ;;
6524     (2.0   . "[a-z][a-z][._-][A-Z][a-z].*@")
6525     ;;
6526     (0.5   . "^[A-Z][a-z]")
6527     (0.5   . "^[A-Z][a-z][a-z]")
6528     (1.5   . "^[A-Z][a-z][A-Z][a-z][^a-z]") ;; ^[A-Z][a-z]{3,3}
6529     (2.0   . "^[A-Z][a-z][A-Z][a-z][a-z][^a-z]")) ;; ^[A-Z][a-z]{4,4}
6530   "An alist of \(RATE . REGEXP\) pairs for `gnus-button-mid-or-mail-heuristic'.
6531
6532 A negative RATE indicates a message IDs, whereas a positive indicates a mail
6533 address.  The REGEXP is processed with `case-fold-search' set to nil."
6534   :version "22.1"
6535   :group 'gnus-article-buttons
6536   :type '(repeat (cons (number :tag "Rate")
6537                        (regexp :tag "Regexp"))))
6538
6539 (defun gnus-button-mid-or-mail-heuristic (mid-or-mail)
6540   "Guess whether MID-OR-MAIL is a message ID or a mail address.
6541 Returns `mid' if MID-OR-MAIL is a message IDs, `mail' if it's a mail
6542 address, `ask' if unsure and `invalid' if the string is invalid."
6543   (let ((case-fold-search nil)
6544         (list gnus-button-mid-or-mail-heuristic-alist)
6545         (result 0) rate regexp lpartlen elem)
6546     (setq lpartlen
6547           (length (gnus-replace-in-string mid-or-mail "^\\(.*\\)@.*$" "\\1")))
6548     (gnus-message 8 "`%s', length of local part=`%s'." mid-or-mail lpartlen)
6549     ;; Certain special cases...
6550     (when (string-match
6551            (concat
6552             "^0[0-9]+-[0-9][0-9][0-9][0-9]@t-online\\.de$\\|"
6553             "^[0-9]+\\.[0-9]+@compuserve\\|"
6554             "@public\\.gmane\\.org")
6555            mid-or-mail)
6556       (gnus-message 8 "`%s' is a known mail address." mid-or-mail)
6557       (setq result 'mail))
6558     (when (string-match "@.*@\\| " mid-or-mail)
6559       (gnus-message 8 "`%s' is invalid." mid-or-mail)
6560       (setq result 'invalid))
6561     ;; Nothing more to do, if result is not a number here...
6562     (when (numberp result)
6563       (while list
6564         (setq elem (car list)
6565               rate (car elem)
6566               regexp (cdr elem)
6567               list (cdr list))
6568         (when (string-match regexp mid-or-mail)
6569           (setq result (+ result rate))
6570           (gnus-message
6571            9 "`%s' matched `%s', rate `%s', result `%s'."
6572            mid-or-mail regexp rate result)))
6573       (when (<= lpartlen 7)
6574         (setq result (+ result 5.0))
6575         (gnus-message 9 "`%s' matched (<= lpartlen 7), result `%s'."
6576                       mid-or-mail result))
6577       (when (>= lpartlen 12)
6578         (gnus-message 9 "`%s' matched (>= lpartlen 12)" mid-or-mail)
6579         (cond
6580          ((string-match "[0-9][^0-9]+[0-9].*@" mid-or-mail)
6581           ;; Long local part should contain realname if e-mail address,
6582           ;; too many digits: message-id.
6583           ;; $score -= 5.0 + 0.1 * $local_part_len;
6584           (setq rate (* -1.0 (+ 5.0 (* 0.1 lpartlen))))
6585           (setq result (+ result rate))
6586           (gnus-message
6587            9 "Many digits in `%s', rate `%s', result `%s'."
6588            mid-or-mail rate result))
6589          ((string-match "[^aeiouy][^aeiouy][^aeiouy][^aeiouy]+.*\@"
6590                         mid-or-mail)
6591           ;; Too few vowels [^aeiouy]{4,}.*\@
6592           (setq result (+ result -5.0))
6593           (gnus-message
6594            9 "Few vowels in `%s', rate `%s', result `%s'."
6595            mid-or-mail -5.0 result))
6596          (t
6597           (setq result (+ result 5.0))
6598           (gnus-message
6599            9 "`%s', rate `%s', result `%s'." mid-or-mail 5.0 result)))))
6600     (gnus-message 8 "`%s': Final rate is `%s'." mid-or-mail result)
6601     ;; Maybe we should make this a customizable alist: (condition . 'result)
6602     (cond
6603      ((symbolp result) result)
6604      ;; Now convert number into proper results:
6605      ((< result -10.0) 'mid)
6606      ((> result  10.0) 'mail)
6607      (t 'ask))))
6608
6609 (defun gnus-button-handle-mid-or-mail (mid-or-mail)
6610   (let* ((pref gnus-button-prefer-mid-or-mail) guessed
6611          (url-mid (concat "news" ":" mid-or-mail))
6612          (url-mailto (concat "mailto" ":" mid-or-mail)))
6613     (gnus-message 9 "mid-or-mail=%s" mid-or-mail)
6614     (when (fboundp pref)
6615       (setq guessed
6616             ;; get rid of surrounding angles...
6617             (funcall pref
6618                      (gnus-replace-in-string mid-or-mail "^<\\|>$" "")))
6619       (if (or (eq 'mid guessed) (eq 'mail guessed))
6620           (setq pref guessed)
6621         (setq pref 'ask)))
6622     (if (eq pref 'ask)
6623         (save-window-excursion
6624           (if (y-or-n-p (concat "Is <" mid-or-mail "> a mail address? "))
6625               (setq pref 'mail)
6626             (setq pref 'mid))))
6627     (cond ((eq pref 'mid)
6628            (gnus-message 8 "calling `gnus-button-handle-news' %s" url-mid)
6629            (gnus-button-handle-news url-mid))
6630           ((eq pref 'mail)
6631            (gnus-message 8 "calling `gnus-url-mailto'  %s" url-mailto)
6632            (gnus-url-mailto url-mailto))
6633           (t (gnus-message 3 "Invalid string.")))))
6634
6635 (defun gnus-button-handle-custom (url)
6636   "Follow a Custom URL."
6637   (customize-apropos (gnus-url-unhex-string url)))
6638
6639 (defvar gnus-button-handle-describe-prefix "^\\(C-h\\|<?[Ff]1>?\\)")
6640
6641 ;; FIXME: Maybe we should merge some of the functions that do quite similar
6642 ;; stuff?
6643
6644 (defun gnus-button-handle-describe-function (url)
6645   "Call `describe-function' when pushing the corresponding URL button."
6646   (describe-function
6647    (intern
6648     (gnus-replace-in-string url gnus-button-handle-describe-prefix ""))))
6649
6650 (defun gnus-button-handle-describe-variable (url)
6651   "Call `describe-variable' when pushing the corresponding URL button."
6652   (describe-variable
6653    (intern
6654     (gnus-replace-in-string url gnus-button-handle-describe-prefix ""))))
6655
6656 (defun gnus-button-handle-symbol (url)
6657 "Display help on variable or function.
6658 Calls `describe-variable' or `describe-function'."
6659   (let ((sym (intern url)))
6660     (cond
6661      ((fboundp sym) (describe-function sym))
6662      ((boundp sym) (describe-variable sym))
6663      (t (gnus-message 3 "`%s' is not a known function of variable." url)))))
6664
6665 (defun gnus-button-handle-describe-key (url)
6666   "Call `describe-key' when pushing the corresponding URL button."
6667   (let* ((key-string
6668           (gnus-replace-in-string url gnus-button-handle-describe-prefix ""))
6669          (keys (ignore-errors (eval `(kbd ,key-string)))))
6670     (if keys
6671         (describe-key keys)
6672       (gnus-message 3 "Invalid key sequence in button: %s" key-string))))
6673
6674 (defun gnus-button-handle-apropos (url)
6675   "Call `apropos' when pushing the corresponding URL button."
6676   (apropos (gnus-replace-in-string url gnus-button-handle-describe-prefix "")))
6677
6678 (defun gnus-button-handle-apropos-command (url)
6679   "Call `apropos' when pushing the corresponding URL button."
6680   (apropos-command
6681    (gnus-replace-in-string url gnus-button-handle-describe-prefix "")))
6682
6683 (defun gnus-button-handle-apropos-variable (url)
6684   "Call `apropos' when pushing the corresponding URL button."
6685   (funcall
6686    (if (fboundp 'apropos-variable) 'apropos-variable 'apropos)
6687    (gnus-replace-in-string url gnus-button-handle-describe-prefix "")))
6688
6689 (defun gnus-button-handle-apropos-documentation (url)
6690   "Call `apropos' when pushing the corresponding URL button."
6691   (funcall
6692    (if (fboundp 'apropos-documentation) 'apropos-documentation 'apropos)
6693    (gnus-replace-in-string url gnus-button-handle-describe-prefix "")))
6694
6695 (defun gnus-button-handle-library (url)
6696   "Call `locate-library' when pushing the corresponding URL button."
6697   (gnus-message 9 "url=`%s'" url)
6698   (let* ((lib (locate-library url))
6699          (file (gnus-replace-in-string (or lib "") "\.elc" ".el")))
6700     (if (not lib)
6701         (gnus-message 1 "Cannot locale library `%s'." url)
6702       (find-file-read-only file))))
6703
6704 (defun gnus-button-handle-ctan (url)
6705   "Call `browse-url' when pushing a CTAN URL button."
6706   (funcall
6707    gnus-button-ctan-handler
6708    (concat
6709     gnus-ctan-url
6710     (gnus-replace-in-string url gnus-button-handle-ctan-bogus-regexp ""))))
6711
6712 (defcustom gnus-button-tex-level 5
6713   "*Integer that says how many TeX-related buttons Gnus will show.
6714 The higher the number, the more buttons will appear and the more false
6715 positives are possible.  Note that you can set this variable local to
6716 specific groups.  Setting it higher in TeX groups is probably a good idea.
6717 See Info node `(gnus)Group Parameters' and the variable `gnus-parameters' on
6718 how to set variables in specific groups."
6719   :version "22.1"
6720   :group 'gnus-article-buttons
6721   :link '(custom-manual "(gnus)Group Parameters")
6722   :type 'integer)
6723
6724 (defcustom gnus-button-man-level 5
6725   "*Integer that says how many man-related buttons Gnus will show.
6726 The higher the number, the more buttons will appear and the more false
6727 positives are possible.  Note that you can set this variable local to
6728 specific groups.  Setting it higher in Unix groups is probably a good idea.
6729 See Info node `(gnus)Group Parameters' and the variable `gnus-parameters' on
6730 how to set variables in specific groups."
6731   :version "22.1"
6732   :group 'gnus-article-buttons
6733   :link '(custom-manual "(gnus)Group Parameters")
6734   :type 'integer)
6735
6736 (defcustom gnus-button-emacs-level 5
6737   "*Integer that says how many emacs-related buttons Gnus will show.
6738 The higher the number, the more buttons will appear and the more false
6739 positives are possible.  Note that you can set this variable local to
6740 specific groups.  Setting it higher in Emacs or Gnus related groups is
6741 probably a good idea.  See Info node `(gnus)Group Parameters' and the variable
6742 `gnus-parameters' on how to set variables in specific groups."
6743   :version "22.1"
6744   :group 'gnus-article-buttons
6745   :link '(custom-manual "(gnus)Group Parameters")
6746   :type 'integer)
6747
6748 (defcustom gnus-button-message-level 5
6749   "*Integer that says how many buttons for news or mail messages will appear.
6750 The higher the number, the more buttons will appear and the more false
6751 positives are possible."
6752   ;; mail addresses, MIDs, URLs for news, ...
6753   :version "22.1"
6754   :group 'gnus-article-buttons
6755   :type 'integer)
6756
6757 (defcustom gnus-button-browse-level 5
6758   "*Integer that says how many buttons for browsing will appear.
6759 The higher the number, the more buttons will appear and the more false
6760 positives are possible."
6761   ;; stuff handled by `browse-url' or `gnus-button-embedded-url'
6762   :version "22.1"
6763   :group 'gnus-article-buttons
6764   :type 'integer)
6765
6766 (defcustom gnus-button-alist
6767   '(("<\\(url:[>\n\t ]*?\\)?\\(nntp\\|news\\):[>\n\t ]*\\([^>\n\t ]*@[^>\n\t ]*\\)>"
6768      0 (>= gnus-button-message-level 0) gnus-button-handle-news 3)
6769     ((concat "\\b\\(nntp\\|news\\):\\("
6770              gnus-button-valid-localpart-regexp "@[a-z0-9.-]+[a-z]\\)")
6771      0 t gnus-button-handle-news 2)
6772     ("\\(\\b<\\(url:[>\n\t ]*\\)?\\(nntp\\|news\\):[>\n\t ]*\\(//\\)?\\([^>\n\t ]*\\)>\\)"
6773      1 (>= gnus-button-message-level 0) gnus-button-fetch-group 5)
6774     ("\\b\\(nntp\\|news\\):\\(//\\)?\\([^'\">\n\t ]+\\)"
6775      0 (>= gnus-button-message-level 0) gnus-button-fetch-group 3)
6776     ;; RFC 2392 (Don't allow `/' in domain part --> CID)
6777     ("\\bmid:\\(//\\)?\\([^'\">\n\t ]+@[^'\">\n\t /]+\\)"
6778      0 (>= gnus-button-message-level 0) gnus-button-message-id 2)
6779     ("\\bin\\( +article\\| +message\\)? +\\(<\\([^\n @<>]+@[^\n @<>]+\\)>\\)"
6780      2 (>= gnus-button-message-level 0) gnus-button-message-id 3)
6781     ("\\(<URL: *\\)mailto: *\\([^> \n\t]+\\)>"
6782      0 (>= gnus-button-message-level 0) gnus-url-mailto 2)
6783     ;; RFC 2368 (The mailto URL scheme)
6784     ("\\bmailto:\\([-a-z.@_+0-9%=?&/]+\\)"
6785      0 (>= gnus-button-message-level 0) gnus-url-mailto 1)
6786     ("\\bmailto:\\([^ \n\t]+\\)"
6787      0 (>= gnus-button-message-level 0) gnus-url-mailto 1)
6788     ;; CTAN
6789     ((concat "\\bCTAN:[ \t\n]?[^>)!;:,'\n\t ]*\\("
6790              gnus-button-ctan-directory-regexp
6791              "[^][>)!;:,'\n\t ]+\\)")
6792      0 (>= gnus-button-tex-level 1) gnus-button-handle-ctan 1)
6793     ((concat "\\btex-archive/\\("
6794              gnus-button-ctan-directory-regexp
6795              "/[-_.a-z0-9/]+[-_./a-z0-9]+[/a-z0-9]\\)")
6796      1 (>= gnus-button-tex-level 6) gnus-button-handle-ctan 1)
6797     ((concat
6798       "\\b\\("
6799       gnus-button-ctan-directory-regexp
6800       "/[-_.a-z0-9]+/[-_./a-z0-9]+[/a-z0-9]\\)")
6801      1 (>= gnus-button-tex-level 8) gnus-button-handle-ctan 1)
6802     ;; This is info (home-grown style) <info://foo/bar+baz>
6803     ("\\binfo://\\([^'\">\n\t ]+\\)"
6804      0 (>= gnus-button-emacs-level 1) gnus-button-handle-info-url 1)
6805     ;; Info GNOME style <info:foo#bar_baz>
6806     ("\\binfo:\\([^('\n\t\r \"><][^'\n\t\r \"><]*\\)"
6807      0 (>= gnus-button-emacs-level 1) gnus-button-handle-info-url-gnome 1)
6808     ;; Info KDE style <info:(foo)bar baz>
6809     ("<\\(info:\\(([^)]+)[^>\n\r]*\\)\\)>"
6810      1 (>= gnus-button-emacs-level 1) gnus-button-handle-info-url-kde 2)
6811     ("\\((Info-goto-node\\|(info\\)[ \t\n]*\\(\"[^\"]*\"\\))" 0
6812      (>= gnus-button-emacs-level 1) gnus-button-handle-info-url 2)
6813     ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+i[ \t\n]+d?[ \t\n]?m[ \t\n]+\\([^ ]+ ?[^ ]+\\)[ \t\n]+RET"
6814      ;; Info links like `C-h i d m CC Mode RET'
6815      0 (>= gnus-button-emacs-level 1) gnus-button-handle-info-keystrokes 2)
6816     ;; This is custom
6817     ("\\bcustom:\\(//\\)?\\([^'\">\n\t ]+\\)"
6818      0 (>= gnus-button-emacs-level 5) gnus-button-handle-custom 2)
6819     ("M-x[ \t\n]customize-[^ ]+[ \t\n]RET[ \t\n]\\([^ ]+\\)[ \t\n]RET" 0
6820      (>= gnus-button-emacs-level 1) gnus-button-handle-custom 1)
6821     ;; Emacs help commands
6822     ("M-x[ \t\n]+apropos[ \t\n]+RET[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
6823      ;; regexp doesn't match arguments containing ` '.
6824      0 (>= gnus-button-emacs-level 1) gnus-button-handle-apropos 1)
6825     ("M-x[ \t\n]+apropos-command[ \t\n]+RET[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
6826      0 (>= gnus-button-emacs-level 1) gnus-button-handle-apropos-command 1)
6827     ("M-x[ \t\n]+apropos-variable[ \t\n]+RET[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
6828      0 (>= gnus-button-emacs-level 1) gnus-button-handle-apropos-variable 1)
6829     ("M-x[ \t\n]+apropos-documentation[ \t\n]+RET[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
6830      0 (>= gnus-button-emacs-level 1) gnus-button-handle-apropos-documentation 1)
6831     ;; The following entries may lead to many false positives so don't enable
6832     ;; them by default (use a high button level).
6833     ("/\\([a-z][-a-z0-9]+\\.el\\)\\>[^.?]"
6834      ;; Exclude [.?] for URLs in gmane.emacs.cvs
6835      1 (>= gnus-button-emacs-level 8) gnus-button-handle-library 1)
6836     ("`\\([a-z][-a-z0-9]+\\.el\\)'"
6837      1 (>= gnus-button-emacs-level 8) gnus-button-handle-library 1)
6838     ("`\\([a-z][a-z0-9]+-[a-z]+-[-a-z]+\\|\\(gnus\\|message\\)-[-a-z]+\\)'"
6839      0 (>= gnus-button-emacs-level 8) gnus-button-handle-symbol 1)
6840     ("`\\([a-z][a-z0-9]+-[a-z]+\\)'"
6841      0 (>= gnus-button-emacs-level 9) gnus-button-handle-symbol 1)
6842     ("(setq[ \t\n]+\\([a-z][a-z0-9]+-[-a-z0-9]+\\)[ \t\n]+.+)"
6843      1 (>= gnus-button-emacs-level 7) gnus-button-handle-describe-variable 1)
6844     ("\\bM-x[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
6845      1 (>= gnus-button-emacs-level 7) gnus-button-handle-describe-function 1)
6846     ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+f[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
6847      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-function 2)
6848     ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+v[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET"
6849      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-variable 2)
6850     ("`\\(\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^']+\\)\\)'"
6851      ;; Unlike the other regexps we really have to require quoting
6852      ;; here to determine where it ends.
6853      1 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-key 3)
6854     ;; This is how URLs _should_ be embedded in text (RFC 1738, RFC 2396)...
6855     ("<URL: *\\([^<>]*\\)>"
6856      1 (>= gnus-button-browse-level 0) gnus-button-embedded-url 1)
6857     ;; RFC 2396 (2.4.3., delims) ...
6858     ("\"URL: *\\([^\"]*\\)\""
6859      1 (>= gnus-button-browse-level 0) gnus-button-embedded-url 1)
6860     ;; RFC 2396 (2.4.3., delims) ...
6861     ("\"URL: *\\([^\"]*\\)\""
6862      1 (>= gnus-button-browse-level 0) gnus-button-embedded-url 1)
6863     ;; Raw URLs.
6864     (gnus-button-url-regexp
6865      0 (>= gnus-button-browse-level 0) browse-url 0)
6866     ;; man pages
6867     ("\\b\\([a-z][a-z]+([1-9])\\)\\W"
6868      0 (and (>= gnus-button-man-level 1) (< gnus-button-man-level 3))
6869      gnus-button-handle-man 1)
6870     ;; more man pages: resolv.conf(5), iso_8859-1(7), xterm(1x)
6871     ("\\b\\([a-z][-_.a-z0-9]+([1-9])\\)\\W"
6872      0 (and (>= gnus-button-man-level 3) (< gnus-button-man-level 5))
6873      gnus-button-handle-man 1)
6874     ;; even more: Apache::PerlRun(3pm), PDL::IO::FastRaw(3pm),
6875     ;; SoWWWAnchor(3iv), XSelectInput(3X11), X(1), X(7)
6876     ("\\b\\(\\(?:[a-z][-+_.:a-z0-9]+([1-9][X1a-z]*)\\)\\|\\b\\(?:X([1-9])\\)\\)\\W"
6877      0 (>= gnus-button-man-level 5) gnus-button-handle-man 1)
6878     ;; MID or mail: To avoid too many false positives we don't try to catch
6879     ;; all kind of allowed MIDs or mail addresses.  Domain part must contain
6880     ;; at least one dot.  TLD must contain two or three chars or be a know TLD
6881     ;; (info|name|...).  Put this entry near the _end_ of `gnus-button-alist'
6882     ;; so that non-ambiguous entries (see above) match first.
6883     (gnus-button-mid-or-mail-regexp
6884      0 (>= gnus-button-message-level 5) gnus-button-handle-mid-or-mail 1))
6885   "*Alist of regexps matching buttons in article bodies.
6886
6887 Each entry has the form (REGEXP BUTTON FORM CALLBACK PAR...), where
6888 REGEXP: is the string (case insensitive) matching text around the button (can
6889 also be Lisp expression evaluating to a string),
6890 BUTTON: is the number of the regexp grouping actually matching the button,
6891 FORM: is a Lisp expression which must eval to true for the button to
6892 be added,
6893 CALLBACK: is the function to call when the user push this button, and each
6894 PAR: is a number of a regexp grouping whose text will be passed to CALLBACK.
6895
6896 CALLBACK can also be a variable, in that case the value of that
6897 variable it the real callback function."
6898   :group 'gnus-article-buttons
6899   :type '(repeat (list (choice regexp variable sexp)
6900                        (integer :tag "Button")
6901                        (sexp :tag "Form")
6902                        (function :tag "Callback")
6903                        (repeat :tag "Par"
6904                                :inline t
6905                                (integer :tag "Regexp group")))))
6906
6907 (defcustom gnus-header-button-alist
6908   '(("^\\(References\\|Message-I[Dd]\\|^In-Reply-To\\):" "<[^<>]+>"
6909      0 (>= gnus-button-message-level 0) gnus-button-message-id 0)
6910     ("^\\(From\\|Reply-To\\):" ": *\\(.+\\)$"
6911      1 (>= gnus-button-message-level 0) gnus-button-reply 1)
6912     ("^\\(Cc\\|To\\):" "[^ \t\n<>,()\"]+@[^ \t\n<>,()\"]+"
6913      0 (>= gnus-button-message-level 0) gnus-msg-mail 0)
6914     ("^X-[Uu][Rr][Ll]:" gnus-button-url-regexp
6915      0 (>= gnus-button-browse-level 0) browse-url 0)
6916     ("^Subject:" gnus-button-url-regexp
6917      0 (>= gnus-button-browse-level 0) browse-url 0)
6918     ("^[^:]+:" gnus-button-url-regexp
6919      0 (>= gnus-button-browse-level 0) browse-url 0)
6920     ("^OpenPGP:.*url=" gnus-button-url-regexp
6921      0 (>= gnus-button-browse-level 0) gnus-button-openpgp 0)
6922     ("^[^:]+:" "\\bmailto:\\([-a-z.@_+0-9%=?&/]+\\)"
6923      0 (>= gnus-button-message-level 0) gnus-url-mailto 1)
6924     ("^[^:]+:" "\\(<\\(url: \\)?\\(nntp\\|news\\):\\([^>\n ]*\\)>\\)"
6925      1 (>= gnus-button-message-level 0) gnus-button-message-id 4))
6926   "*Alist of headers and regexps to match buttons in article heads.
6927
6928 This alist is very similar to `gnus-button-alist', except that each
6929 alist has an additional HEADER element first in each entry:
6930
6931 \(HEADER REGEXP BUTTON FORM CALLBACK PAR)
6932
6933 HEADER is a regexp to match a header.  For a fuller explanation, see
6934 `gnus-button-alist'."
6935   :group 'gnus-article-buttons
6936   :group 'gnus-article-headers
6937   :type '(repeat (list (regexp :tag "Header")
6938                        (choice regexp variable)
6939                        (integer :tag "Button")
6940                        (sexp :tag "Form")
6941                        (function :tag "Callback")
6942                        (repeat :tag "Par"
6943                                :inline t
6944                                (integer :tag "Regexp group")))))
6945
6946 ;;; Commands:
6947
6948 (defun gnus-article-push-button (event)
6949   "Check text under the mouse pointer for a callback function.
6950 If the text under the mouse pointer has a `gnus-callback' property,
6951 call it with the value of the `gnus-data' text property."
6952   (interactive "e")
6953   (set-buffer (window-buffer (posn-window (event-start event))))
6954   (let* ((pos (posn-point (event-start event)))
6955          (data (get-text-property pos 'gnus-data))
6956          (fun (get-text-property pos 'gnus-callback)))
6957     (goto-char pos)
6958     (when fun
6959       (funcall fun data))))
6960
6961 (defun gnus-article-press-button ()
6962   "Check text at point for a callback function.
6963 If the text at point has a `gnus-callback' property,
6964 call it with the value of the `gnus-data' text property."
6965   (interactive)
6966   (let ((data (get-text-property (point) 'gnus-data))
6967         (fun (get-text-property (point) 'gnus-callback)))
6968     (when fun
6969       (funcall fun data))))
6970
6971 (defun gnus-article-prev-button (n)
6972   "Move point to N buttons backward.
6973 If N is negative, move forward instead."
6974   (interactive "p")
6975   (gnus-article-next-button (- n)))
6976
6977 (defun gnus-article-next-button (n)
6978   "Move point to N buttons forward.
6979 If N is negative, move backward instead."
6980   (interactive "p")
6981   (let ((function (if (< n 0) 'previous-single-property-change
6982                     'next-single-property-change))
6983         (inhibit-point-motion-hooks t)
6984         (backward (< n 0))
6985         (limit (if (< n 0) (point-min) (point-max))))
6986     (setq n (abs n))
6987     (while (and (not (= limit (point)))
6988                 (> n 0))
6989       ;; Skip past the current button.
6990       (when (get-text-property (point) 'gnus-callback)
6991         (goto-char (funcall function (point) 'gnus-callback nil limit)))
6992       ;; Go to the next (or previous) button.
6993       (gnus-goto-char (funcall function (point) 'gnus-callback nil limit))
6994       ;; Put point at the start of the button.
6995       (when (and backward (not (get-text-property (point) 'gnus-callback)))
6996         (goto-char (funcall function (point) 'gnus-callback nil limit)))
6997       ;; Skip past intangible buttons.
6998       (when (get-text-property (point) 'intangible)
6999         (incf n))
7000       (decf n))
7001     (unless (zerop n)
7002       (gnus-message 5 "No more buttons"))
7003     n))
7004
7005 (defun gnus-article-highlight (&optional force)
7006   "Highlight current article.
7007 This function calls `gnus-article-highlight-headers',
7008 `gnus-article-highlight-citation',
7009 `gnus-article-highlight-signature', and `gnus-article-add-buttons' to
7010 do the highlighting.  See the documentation for those functions."
7011   (interactive (list 'force))
7012   (gnus-article-highlight-headers)
7013   (gnus-article-highlight-citation force)
7014   (gnus-article-highlight-signature)
7015   (gnus-article-add-buttons force)
7016   (gnus-article-add-buttons-to-head))
7017
7018 (defun gnus-article-highlight-some (&optional force)
7019   "Highlight current article.
7020 This function calls `gnus-article-highlight-headers',
7021 `gnus-article-highlight-signature', and `gnus-article-add-buttons' to
7022 do the highlighting.  See the documentation for those functions."
7023   (interactive (list 'force))
7024   (gnus-article-highlight-headers)
7025   (gnus-article-highlight-signature)
7026   (gnus-article-add-buttons))
7027
7028 (defun gnus-article-highlight-headers ()
7029   "Highlight article headers as specified by `gnus-header-face-alist'."
7030   (interactive)
7031   (gnus-with-article-headers
7032     (let (regexp header-face field-face from hpoints fpoints)
7033       (dolist (entry gnus-header-face-alist)
7034         (goto-char (point-min))
7035         (setq regexp (concat "^\\("
7036                              (if (string-equal "" (nth 0 entry))
7037                                  "[^\t ]"
7038                                (nth 0 entry))
7039                              "\\)")
7040               header-face (nth 1 entry)
7041               field-face (nth 2 entry))
7042         (while (and (re-search-forward regexp nil t)
7043                     (not (eobp)))
7044           (beginning-of-line)
7045           (setq from (point))
7046           (unless (search-forward ":" nil t)
7047             (forward-char 1))
7048           (when (and header-face
7049                      (not (memq (point) hpoints)))
7050             (push (point) hpoints)
7051             (gnus-put-text-property from (point) 'face header-face))
7052           (when (and field-face
7053                      (not (memq (setq from (point)) fpoints)))
7054             (push from fpoints)
7055             (if (re-search-forward "^[^ \t]" nil t)
7056                 (forward-char -2)
7057               (goto-char (point-max)))
7058             (gnus-put-text-property from (point) 'face field-face)))))))
7059
7060 (defun gnus-article-highlight-signature ()
7061   "Highlight the signature in an article.
7062 It does this by highlighting everything after
7063 `gnus-signature-separator' using the face `gnus-signature'."
7064   (interactive)
7065   (when gnus-signature-face
7066     (gnus-with-article-buffer
7067       (let ((inhibit-point-motion-hooks t))
7068         (save-restriction
7069           (when (gnus-article-narrow-to-signature)
7070             (gnus-overlay-put (gnus-make-overlay (point-min) (point-max))
7071                               'face gnus-signature-face)))))))
7072
7073 (defun gnus-article-buttonize-signature ()
7074   "Add button to the signature."
7075   (interactive)
7076   (save-excursion
7077     (set-buffer gnus-article-buffer)
7078     (let ((inhibit-read-only t)
7079           (inhibit-point-motion-hooks t))
7080       (when (gnus-article-search-signature)
7081         (gnus-article-add-button (match-beginning 0) (match-end 0)
7082                                  'gnus-signature-toggle
7083                                  (set-marker (make-marker)
7084                                              (1+ (match-end 0))))))))
7085
7086 (defun gnus-button-in-region-p (b e prop)
7087   "Say whether PROP exists in the region."
7088   (text-property-not-all b e prop nil))
7089
7090 (defun gnus-article-add-buttons (&optional force)
7091   "Find external references in the article and make buttons of them.
7092 \"External references\" are things like Message-IDs and URLs, as
7093 specified by `gnus-button-alist'."
7094   (interactive (list 'force))
7095   (gnus-with-article-buffer
7096     (let ((inhibit-point-motion-hooks t)
7097           (case-fold-search t)
7098           (alist gnus-button-alist)
7099           beg entry regexp)
7100       ;; Remove all old markers.
7101       (let (marker entry new-list)
7102         (while (setq marker (pop gnus-button-marker-list))
7103           (if (or (< marker (point-min)) (>= marker (point-max)))
7104               (push marker new-list)
7105             (goto-char marker)
7106             (when (setq entry (gnus-button-entry))
7107               (put-text-property (match-beginning (nth 1 entry))
7108                                  (match-end (nth 1 entry))
7109                                  'gnus-callback nil))
7110             (set-marker marker nil)))
7111         (setq gnus-button-marker-list new-list))
7112       ;; We skip the headers.
7113       (article-goto-body)
7114       (setq beg (point))
7115       (while (setq entry (pop alist))
7116         (setq regexp (eval (car entry)))
7117         (goto-char beg)
7118         (while (re-search-forward regexp nil t)
7119           (let* ((start (and entry (match-beginning (nth 1 entry))))
7120                  (end (and entry (match-end (nth 1 entry))))
7121                  (from (match-beginning 0)))
7122             (when (and (or (eq t (nth 2 entry))
7123                            (eval (nth 2 entry)))
7124                        (not (gnus-button-in-region-p
7125                              start end 'gnus-callback)))
7126               ;; That optional form returned non-nil, so we add the
7127               ;; button.
7128               (gnus-article-add-button
7129                start end 'gnus-button-push
7130                (car (push (set-marker (make-marker) from)
7131                           gnus-button-marker-list))))))))))
7132
7133 ;; Add buttons to the head of an article.
7134 (defun gnus-article-add-buttons-to-head ()
7135   "Add buttons to the head of the article."
7136   (interactive)
7137   (gnus-with-article-headers
7138     (let (beg end)
7139       (dolist (entry gnus-header-button-alist)
7140         ;; Each alist entry.
7141         (goto-char (point-min))
7142         (while (re-search-forward (car entry) nil t)
7143           ;; Each header matching the entry.
7144           (setq beg (match-beginning 0))
7145           (setq end (or (and (re-search-forward "^[^ \t]" nil t)
7146                              (match-beginning 0))
7147                         (point-max)))
7148           (goto-char beg)
7149           (while (re-search-forward (eval (nth 1 entry)) end t)
7150             ;; Each match within a header.
7151             (let* ((entry (cdr entry))
7152                    (start (match-beginning (nth 1 entry)))
7153                    (end (match-end (nth 1 entry)))
7154                    (form (nth 2 entry)))
7155               (goto-char (match-end 0))
7156               (when (eval form)
7157                 (gnus-article-add-button
7158                  start end (nth 3 entry)
7159                  (buffer-substring (match-beginning (nth 4 entry))
7160                                    (match-end (nth 4 entry)))))))
7161           (goto-char end))))))
7162
7163 ;;; External functions:
7164
7165 (defun gnus-article-add-button (from to fun &optional data)
7166   "Create a button between FROM and TO with callback FUN and data DATA."
7167   (when gnus-article-button-face
7168     (gnus-overlay-put (gnus-make-overlay from to)
7169                       'face gnus-article-button-face))
7170   (gnus-add-text-properties
7171    from to
7172    (nconc (and gnus-article-mouse-face
7173                (list gnus-mouse-face-prop gnus-article-mouse-face))
7174           (list 'gnus-callback fun)
7175           (and data (list 'gnus-data data))))
7176   (widget-convert-button 'link from to :action 'gnus-widget-press-button
7177                          :button-keymap gnus-widget-button-keymap))
7178
7179 ;;; Internal functions:
7180
7181 (defun gnus-article-set-globals ()
7182   (with-current-buffer gnus-summary-buffer
7183     (gnus-set-global-variables)))
7184
7185 (defun gnus-signature-toggle (end)
7186   (gnus-with-article-buffer
7187     (let ((inhibit-point-motion-hooks t)
7188           (limit (next-single-property-change end 'mime-view-entity
7189                                               nil (point-max))))
7190       (if (text-property-any end limit 'article-type 'signature)
7191           (progn
7192             (gnus-delete-wash-type 'signature)
7193             (gnus-remove-text-properties-when
7194              'article-type 'signature end limit
7195              (cons 'article-type (cons 'signature
7196                                        gnus-hidden-properties))))
7197         (gnus-add-wash-type 'signature)
7198         (gnus-add-text-properties-when
7199          'article-type nil end limit
7200          (cons 'article-type (cons 'signature
7201                                    gnus-hidden-properties)))))
7202     (let ((gnus-article-mime-handle-alist-1 gnus-article-mime-handle-alist))
7203       (gnus-set-mode-line 'article))))
7204
7205 (defun gnus-button-entry ()
7206   ;; Return the first entry in `gnus-button-alist' matching this place.
7207   (let ((alist gnus-button-alist)
7208         (entry nil))
7209     (while alist
7210       (setq entry (pop alist))
7211       (if (looking-at (eval (car entry)))
7212           (setq alist nil)
7213         (setq entry nil)))
7214     entry))
7215
7216 (defun gnus-button-push (marker)
7217   ;; Push button starting at MARKER.
7218   (save-excursion
7219     (goto-char marker)
7220     (let* ((entry (gnus-button-entry))
7221            (inhibit-point-motion-hooks t)
7222            (fun (nth 3 entry))
7223            (args (mapcar (lambda (group)
7224                            (let ((string (match-string group)))
7225                              (set-text-properties
7226                               0 (length string) nil string)
7227                              string))
7228                          (nthcdr 4 entry))))
7229       (cond
7230        ((fboundp fun)
7231         (apply fun args))
7232        ((and (boundp fun)
7233              (fboundp (symbol-value fun)))
7234         (apply (symbol-value fun) args))
7235        (t
7236         (gnus-message 1 "You must define `%S' to use this button"
7237                       (cons fun args)))))))
7238
7239 (defun gnus-parse-news-url (url)
7240   (let (scheme server port group message-id articles)
7241     (with-temp-buffer
7242       (insert url)
7243       (goto-char (point-min))
7244       (when (looking-at "\\([A-Za-z]+\\):")
7245         (setq scheme (match-string 1))
7246         (goto-char (match-end 0)))
7247       (when (looking-at "//\\([^:/]+\\)\\(:?\\)\\([0-9]+\\)?/")
7248         (setq server (match-string 1))
7249         (setq port (if (stringp (match-string 3))
7250                        (string-to-number (match-string 3))
7251                      (match-string 3)))
7252         (goto-char (match-end 0)))
7253
7254       (cond
7255        ((looking-at "\\(.*@.*\\)")
7256         (setq message-id (match-string 1)))
7257        ((looking-at "\\([^/]+\\)/\\([-0-9]+\\)")
7258         (setq group (match-string 1)
7259               articles (split-string (match-string 2) "-")))
7260        ((looking-at "\\([^/]+\\)/?")
7261         (setq group (match-string 1)))
7262        (t
7263         (error "Unknown news URL syntax"))))
7264     (list scheme server port group message-id articles)))
7265
7266 (defun gnus-button-handle-news (url)
7267   "Fetch a news URL."
7268   (destructuring-bind (scheme server port group message-id articles)
7269       (gnus-parse-news-url url)
7270     (cond
7271      (message-id
7272       (save-excursion
7273         (set-buffer gnus-summary-buffer)
7274         (if server
7275             (let ((gnus-refer-article-method
7276                    (nconc (list (list 'nntp server))
7277                           gnus-refer-article-method))
7278                   (nntp-port-number (or port "nntp")))
7279               (gnus-message 7 "Fetching %s with %s"
7280                             message-id gnus-refer-article-method)
7281               (gnus-summary-refer-article message-id))
7282           (gnus-summary-refer-article message-id))))
7283      (group
7284       (gnus-button-fetch-group url)))))
7285
7286 (defun gnus-button-handle-man (url)
7287   "Fetch a man page."
7288   (gnus-message 9 "`%s' `%s'" gnus-button-man-handler url)
7289   (when (eq gnus-button-man-handler 'woman)
7290     (setq url (gnus-replace-in-string url "([1-9][X1a-z]*).*\\'" "")))
7291   (gnus-message 9 "`%s' `%s'" gnus-button-man-handler url)
7292   (funcall gnus-button-man-handler url))
7293
7294 (defun gnus-button-handle-info-url (url)
7295   "Fetch an info URL."
7296   (setq url (mm-subst-char-in-string ?+ ?\  url))
7297   (cond
7298    ((string-match "^\\([^:/]+\\)?/\\(.*\\)" url)
7299     (gnus-info-find-node
7300      (concat "(" (or (gnus-url-unhex-string (match-string 1 url))
7301                      "Gnus")
7302              ")" (gnus-url-unhex-string (match-string 2 url)))))
7303    ((string-match "([^)\"]+)[^\"]+" url)
7304     (setq url
7305           (gnus-replace-in-string
7306            (gnus-replace-in-string url "[\n\t ]+" " ") "\"" ""))
7307     (gnus-info-find-node url))
7308    (t (error "Can't parse %s" url))))
7309
7310 (defun gnus-button-handle-info-url-gnome (url)
7311   "Fetch GNOME style info URL."
7312   (setq url (mm-subst-char-in-string ?_ ?\  url))
7313   (if (string-match "\\([^#]+\\)#?\\(.*\\)" url)
7314       (gnus-info-find-node
7315        (concat "("
7316                (gnus-url-unhex-string
7317                  (match-string 1 url))
7318                ")"
7319                (or (gnus-url-unhex-string
7320                     (match-string 2 url))
7321                    "Top")))
7322     (error "Can't parse %s" url)))
7323
7324 (defun gnus-button-handle-info-url-kde (url)
7325   "Fetch KDE style info URL."
7326   (gnus-info-find-node (gnus-url-unhex-string url)))
7327
7328 (defun gnus-button-handle-info-keystrokes (url)
7329   "Call `info' when pushing the corresponding URL button."
7330   ;; For links like `C-h i d m gnus RET', `C-h i d m CC Mode RET'.
7331   (info)
7332   (Info-directory)
7333   (Info-menu url))
7334
7335 (defun gnus-button-openpgp (url)
7336   "Retrieve and add an OpenPGP key given URL from an OpenPGP header."
7337   (with-temp-buffer
7338     (mm-url-insert-file-contents-external url)
7339     (pgg-snarf-keys-region (point-min) (point-max))
7340     (pgg-display-output-buffer nil nil nil)))
7341
7342 (defun gnus-button-message-id (message-id)
7343   "Fetch MESSAGE-ID."
7344   (with-current-buffer gnus-summary-buffer
7345     (gnus-summary-refer-article message-id)))
7346
7347 (defun gnus-button-fetch-group (address)
7348   "Fetch GROUP specified by ADDRESS."
7349   (if (not (string-match "[:/]" address))
7350       ;; This is just a simple group url.
7351       (gnus-group-read-ephemeral-group address gnus-select-method)
7352     (if (not
7353          (string-match
7354           "^\\([^:/]+\\)\\(:\\([^/]+\\)\\)?/\\([^/]+\\)\\(/\\([0-9]+\\)\\)?"
7355           address))
7356         (error "Can't parse %s" address)
7357       (gnus-group-read-ephemeral-group
7358        (match-string 4 address)
7359        `(nntp ,(match-string 1 address)
7360               (nntp-address ,(match-string 1 address))
7361               (nntp-port-number ,(if (match-end 3)
7362                                      (match-string 3 address)
7363                                    "nntp")))
7364        nil nil nil
7365        (and (match-end 6) (list (string-to-number (match-string 6 address))))))))
7366
7367 (defun gnus-url-parse-query-string (query &optional downcase)
7368   (let (retval pairs cur key val)
7369     (setq pairs (split-string query "&"))
7370     (while pairs
7371       (setq cur (car pairs)
7372             pairs (cdr pairs))
7373       (if (not (string-match "=" cur))
7374           nil                           ; Grace
7375         (setq key (gnus-url-unhex-string (substring cur 0 (match-beginning 0)))
7376               val (gnus-url-unhex-string (substring cur (match-end 0) nil) t))
7377         (if downcase
7378             (setq key (downcase key)))
7379         (setq cur (assoc key retval))
7380         (if cur
7381             (setcdr cur (cons val (cdr cur)))
7382           (setq retval (cons (list key val) retval)))))
7383     retval))
7384
7385 (defun gnus-url-mailto (url)
7386   ;; Send mail to someone
7387   (when (string-match "mailto:/*\\(.*\\)" url)
7388     (setq url (substring url (match-beginning 1) nil)))
7389   (let (to args subject func)
7390     (setq args (gnus-url-parse-query-string
7391                 (if (string-match "^\\?" url)
7392                     (substring url 1)
7393                   (if (string-match "^\\([^?]+\\)\\?\\(.*\\)" url)
7394                       (concat "to=" (match-string 1 url) "&"
7395                               (match-string 2 url))
7396                     (concat "to=" url)))
7397                 t)
7398           subject (cdr-safe (assoc "subject" args)))
7399     (gnus-msg-mail)
7400     (while args
7401       (setq func (intern-soft (concat "message-goto-" (downcase (caar args)))))
7402       (if (fboundp func)
7403           (funcall func)
7404         (message-position-on-field (caar args)))
7405       (insert (gnus-replace-in-string
7406                (mapconcat 'identity (reverse (cdar args)) ", ")
7407                "\r\n" "\n" t))
7408       (setq args (cdr args)))
7409     (if subject
7410         (message-goto-body)
7411       (message-goto-subject))))
7412
7413 (defun gnus-button-embedded-url (address)
7414   "Activate ADDRESS with `browse-url'."
7415   (browse-url (gnus-strip-whitespace address)))
7416
7417 ;;; Next/prev buttons in the article buffer.
7418
7419 (defvar gnus-next-page-line-format "%{%(Next page...%)%}\n")
7420 (defvar gnus-prev-page-line-format "%{%(Previous page...%)%}\n")
7421
7422 (defvar gnus-prev-page-map
7423   (let ((map (make-sparse-keymap)))
7424     (define-key map gnus-mouse-2 'gnus-button-prev-page)
7425     (define-key map "\r" 'gnus-button-prev-page)
7426     map))
7427
7428 (defvar gnus-next-page-map
7429   (let ((map (make-sparse-keymap)))
7430     (unless (>= emacs-major-version 21)
7431       ;; XEmacs doesn't care.
7432       (set-keymap-parent map gnus-article-mode-map))
7433     (define-key map gnus-mouse-2 'gnus-button-next-page)
7434     (define-key map "\r" 'gnus-button-next-page)
7435     map))
7436
7437 (defun gnus-insert-prev-page-button ()
7438   (let ((b (point))
7439         (inhibit-read-only t)
7440         (situation (get-text-property (point-min) 'mime-view-situation)))
7441     (gnus-eval-format
7442      gnus-prev-page-line-format nil
7443      `(keymap ,gnus-prev-page-map
7444          gnus-prev t
7445          gnus-callback gnus-article-button-prev-page
7446          article-type annotation
7447          mime-view-situation ,situation))
7448     (widget-convert-button
7449      'link b (if (bolp)
7450                  ;; Exclude a newline.
7451                  (1- (point))
7452                (point))
7453      :action 'gnus-button-prev-page
7454      :button-keymap gnus-prev-page-map)))
7455
7456 (defun gnus-button-next-page (&optional args more-args)
7457   "Go to the next page."
7458   (interactive)
7459   (let ((win (selected-window)))
7460     (select-window (gnus-get-buffer-window gnus-article-buffer t))
7461     (gnus-article-next-page)
7462     (select-window win)))
7463
7464 (defun gnus-button-prev-page (&optional args more-args)
7465   "Go to the prev page."
7466   (interactive)
7467   (let ((win (selected-window)))
7468     (select-window (gnus-get-buffer-window gnus-article-buffer t))
7469     (gnus-article-prev-page)
7470     (select-window win)))
7471
7472 (defun gnus-insert-next-page-button ()
7473   (let ((b (point))
7474         (inhibit-read-only t)
7475         (situation (get-text-property (point-min) 'mime-view-situation)))
7476     (gnus-eval-format gnus-next-page-line-format nil
7477                       `(keymap ,gnus-next-page-map
7478                           gnus-next t
7479                           gnus-callback gnus-article-button-next-page
7480                           article-type annotation
7481                           mime-view-situation ,situation))
7482     (widget-convert-button
7483      'link b (if (bolp)
7484                  ;; Exclude a newline.
7485                  (1- (point))
7486                (point))
7487      :action 'gnus-button-next-page
7488      :button-keymap gnus-next-page-map)))
7489
7490 (defun gnus-article-button-next-page (arg)
7491   "Go to the next page."
7492   (interactive "P")
7493   (let ((win (selected-window)))
7494     (select-window (gnus-get-buffer-window gnus-article-buffer t))
7495     (gnus-article-next-page)
7496     (select-window win)))
7497
7498 (defun gnus-article-button-prev-page (arg)
7499   "Go to the prev page."
7500   (interactive "P")
7501   (let ((win (selected-window)))
7502     (select-window (gnus-get-buffer-window gnus-article-buffer t))
7503     (gnus-article-prev-page)
7504     (select-window win)))
7505
7506 (defvar gnus-decode-header-methods
7507   '(mail-decode-encoded-word-region)
7508   "List of methods used to decode headers.
7509
7510 This variable is a list of FUNCTION or (REGEXP . FUNCTION).  If item
7511 is FUNCTION, FUNCTION will be applied to all newsgroups.  If item is a
7512 \(REGEXP . FUNCTION), FUNCTION will be only apply to the newsgroups
7513 whose names match REGEXP.
7514
7515 For example:
7516 \((\"chinese\" . gnus-decode-encoded-word-region-by-guess)
7517  mail-decode-encoded-word-region
7518  (\"chinese\" . rfc1843-decode-region))
7519 ")
7520
7521 (defvar gnus-decode-header-methods-cache nil)
7522
7523 (defun gnus-multi-decode-header (start end)
7524   "Apply the functions from `gnus-encoded-word-methods' that match."
7525   (unless (and gnus-decode-header-methods-cache
7526                (eq gnus-newsgroup-name
7527                    (car gnus-decode-header-methods-cache)))
7528     (setq gnus-decode-header-methods-cache (list gnus-newsgroup-name))
7529     (mapcar (lambda (x)
7530               (if (symbolp x)
7531                   (nconc gnus-decode-header-methods-cache (list x))
7532                 (if (and gnus-newsgroup-name
7533                          (string-match (car x) gnus-newsgroup-name))
7534                     (nconc gnus-decode-header-methods-cache
7535                            (list (cdr x))))))
7536             gnus-decode-header-methods))
7537   (let ((xlist gnus-decode-header-methods-cache))
7538     (pop xlist)
7539     (save-restriction
7540       (narrow-to-region start end)
7541       (while xlist
7542         (funcall (pop xlist) (point-min) (point-max))))))
7543
7544 ;;;
7545 ;;; Treatment top-level handling.
7546 ;;;
7547
7548 (defun gnus-treat-article (condition &optional part-number total-parts type)
7549   (let ((length (- (point-max) (point-min)))
7550         (alist gnus-treatment-function-alist)
7551         (article-goto-body-goes-to-point-min-p t)
7552         (treated-type
7553          (or (not type)
7554              (catch 'found
7555                (let ((list gnus-article-treat-types))
7556                  (while list
7557                    (when (string-match (pop list) type)
7558                      (throw 'found t)))))))
7559         (highlightp (gnus-visual-p 'article-highlight 'highlight))
7560         (entity (static-unless (featurep 'xemacs)
7561                   (when (eq 'head condition)
7562                     (get-text-property (point-min) 'mime-view-entity))))
7563         val elem buttonized)
7564     (gnus-run-hooks 'gnus-part-display-hook)
7565     (unless gnus-inhibit-treatment
7566       (dolist (elem alist)
7567         (setq val
7568               (save-excursion
7569                 (when (gnus-buffer-live-p gnus-summary-buffer)
7570                   (set-buffer gnus-summary-buffer))
7571                 (symbol-value (car elem))))
7572         (when (and (or (consp val)
7573                        treated-type)
7574                    (gnus-treat-predicate val)
7575                    (or (not (get (car elem) 'highlight))
7576                        highlightp))
7577           (when (and (not buttonized)
7578                      (memq (car elem)
7579                            '(gnus-treat-hide-signature
7580                              gnus-treat-highlight-signature)))
7581             (gnus-article-buttonize-signature)
7582             (setq buttonized t))
7583           (save-restriction
7584             (funcall (cadr elem)))))
7585       ;; FSF Emacsen does not inherit the existing text properties
7586       ;; in the new text, so we should do it for `mime-view-entity'.
7587       (static-unless (featurep 'xemacs)
7588         (when entity
7589           (put-text-property (point-min) (point-max)
7590                              'mime-view-entity entity))))))
7591
7592 ;; Dynamic variables.
7593 (eval-when-compile
7594   (defvar part-number)
7595   (defvar total-parts)
7596   (defvar type)
7597   (defvar condition)
7598   (defvar length))
7599
7600 (defun gnus-treat-predicate (val)
7601   (cond
7602    ((null val)
7603     nil)
7604    ((and (listp val)
7605          (stringp (car val)))
7606     (apply 'gnus-or (mapcar `(lambda (s)
7607                                (string-match s ,(or gnus-newsgroup-name "")))
7608                             val)))
7609    ((listp val)
7610     (let ((pred (pop val)))
7611       (cond
7612        ((eq pred 'or)
7613         (apply 'gnus-or (mapcar 'gnus-treat-predicate val)))
7614        ((eq pred 'and)
7615         (apply 'gnus-and (mapcar 'gnus-treat-predicate val)))
7616        ((eq pred 'not)
7617         (not (gnus-treat-predicate (car val))))
7618        ((eq pred 'typep)
7619         (equal (car val) type))
7620        (t
7621         (error "%S is not a valid predicate" pred)))))
7622    ((eq val 'mime)
7623     gnus-show-mime)
7624    (condition
7625     (eq condition val))
7626    ((eq val t)
7627     t)
7628    ((eq val 'head)
7629     nil)
7630    ((eq val 'last)
7631     (eq part-number total-parts))
7632    ((numberp val)
7633     (< length val))
7634    (t
7635     (error "%S is not a valid value" val))))
7636
7637 (defun gnus-article-encrypt-body (protocol &optional n)
7638   "Encrypt the article body."
7639   (interactive
7640    (list
7641     (or gnus-article-encrypt-protocol
7642         (completing-read "Encrypt protocol: "
7643                          gnus-article-encrypt-protocol-alist
7644                          nil t))
7645     current-prefix-arg))
7646   (let ((func (cdr (assoc protocol gnus-article-encrypt-protocol-alist))))
7647     (unless func
7648       (error "Can't find the encrypt protocol %s" protocol))
7649     (if (member gnus-newsgroup-name '("nndraft:delayed"
7650                                       "nndraft:drafts"
7651                                       "nndraft:queue"))
7652         (error "Can't encrypt the article in group %s"
7653                gnus-newsgroup-name))
7654     (gnus-summary-iterate n
7655       (save-excursion
7656         (set-buffer gnus-summary-buffer)
7657         (let ((mail-parse-charset gnus-newsgroup-charset)
7658               (mail-parse-ignored-charsets gnus-newsgroup-ignored-charsets)
7659               (summary-buffer gnus-summary-buffer)
7660               references point)
7661           (gnus-set-global-variables)
7662           (when (gnus-group-read-only-p)
7663             (error "The current newsgroup does not support article encrypt"))
7664           (gnus-summary-show-article t)
7665           (setq references
7666                 (or (mail-header-references gnus-current-headers) ""))
7667           (set-buffer gnus-article-buffer)
7668           (let* ((inhibit-read-only t)
7669                  (headers
7670                   (mapcar (lambda (field)
7671                             (and (save-restriction
7672                                    (message-narrow-to-head)
7673                                    (goto-char (point-min))
7674                                    (search-forward field nil t))
7675                                  (prog2
7676                                      (message-narrow-to-field)
7677                                      (buffer-string)
7678                                    (delete-region (point-min) (point-max))
7679                                    (widen))))
7680                           '("Content-Type:" "Content-Transfer-Encoding:"
7681                             "Content-Disposition:"))))
7682             (message-narrow-to-head)
7683             (message-remove-header "MIME-Version")
7684             (goto-char (point-max))
7685             (setq point (point))
7686             (insert (apply 'concat headers))
7687             (widen)
7688             (narrow-to-region point (point-max))
7689             (let ((message-options message-options))
7690               (message-options-set 'message-sender user-mail-address)
7691               (message-options-set 'message-recipients user-mail-address)
7692               (message-options-set 'message-sign-encrypt 'not)
7693               (funcall func))
7694             (goto-char (point-min))
7695             (insert "MIME-Version: 1.0\n")
7696             (widen)
7697             (gnus-summary-edit-article-done
7698              references nil summary-buffer t))
7699           (when gnus-keep-backlog
7700             (gnus-backlog-remove-article
7701              (car gnus-article-current) (cdr gnus-article-current)))
7702           (save-excursion
7703             (when (get-buffer gnus-original-article-buffer)
7704               (set-buffer gnus-original-article-buffer)
7705               (setq gnus-original-article nil)))
7706           (when gnus-use-cache
7707             (gnus-cache-update-article
7708              (car gnus-article-current) (cdr gnus-article-current))))))))
7709
7710 (defvar gnus-mime-security-button-line-format "%{%([[%t:%i]%D]%)%}\n"
7711   "The following specs can be used:
7712 %t  The security MIME type
7713 %i  Additional info
7714 %d  Details
7715 %D  Details if button is pressed")
7716
7717 (defvar gnus-mime-security-button-end-line-format "%{%([[End of %t]%D]%)%}\n"
7718   "The following specs can be used:
7719 %t  The security MIME type
7720 %i  Additional info
7721 %d  Details
7722 %D  Details if button is pressed")
7723
7724 (defvar gnus-mime-security-button-line-format-alist
7725   '((?t gnus-tmp-type ?s)
7726     (?i gnus-tmp-info ?s)
7727     (?d gnus-tmp-details ?s)
7728     (?D gnus-tmp-pressed-details ?s)))
7729
7730 (defvar gnus-mime-security-button-map
7731   (let ((map (make-sparse-keymap)))
7732     (define-key map gnus-mouse-2 'gnus-article-push-button)
7733     (define-key map "\r" 'gnus-article-press-button)
7734     map))
7735
7736 (defvar gnus-mime-security-details-buffer nil)
7737
7738 (defvar gnus-mime-security-button-pressed nil)
7739
7740 (defvar gnus-mime-security-show-details-inline t
7741   "If non-nil, show details in the article buffer.")
7742
7743 (defun gnus-mime-security-verify-or-decrypt (handle)
7744   (mm-remove-parts (cdr handle))
7745   (let ((region (mm-handle-multipart-ctl-parameter handle 'gnus-region))
7746         point (inhibit-read-only t))
7747     (if region
7748         (goto-char (car region)))
7749     (save-restriction
7750       (narrow-to-region (point) (point))
7751       (with-current-buffer (mm-handle-multipart-original-buffer handle)
7752         (let* ((mm-verify-option 'known)
7753                (mm-decrypt-option 'known)
7754                (nparts (mm-possibly-verify-or-decrypt (cdr handle) handle)))
7755           (unless (eq nparts (cdr handle))
7756             (mm-destroy-parts (cdr handle))
7757             (setcdr handle nparts))))
7758       (setq point (point))
7759       (gnus-mime-display-security handle)
7760       (goto-char (point-max)))
7761     (when region
7762       (delete-region (point) (cdr region))
7763       (set-marker (car region) nil)
7764       (set-marker (cdr region) nil))
7765     (goto-char point)))
7766
7767 (defun gnus-mime-security-show-details (handle)
7768   (let ((details (mm-handle-multipart-ctl-parameter handle 'gnus-details)))
7769     (if (not details)
7770         (gnus-message 5 "No details.")
7771       (if gnus-mime-security-show-details-inline
7772           (let ((gnus-mime-security-button-pressed
7773                  (not (get-text-property (point) 'gnus-mime-details)))
7774                 (gnus-mime-security-button-line-format
7775                  (get-text-property (point) 'gnus-line-format))
7776                 (inhibit-read-only t))
7777             (forward-char -1)
7778             (while (eq (get-text-property (point) 'gnus-line-format)
7779                        gnus-mime-security-button-line-format)
7780               (forward-char -1))
7781             (forward-char)
7782             (save-restriction
7783               (narrow-to-region (point) (point))
7784               (gnus-insert-mime-security-button handle))
7785             (delete-region (point)
7786                            (or (text-property-not-all
7787                                 (point) (point-max)
7788                                 'gnus-line-format
7789                                 gnus-mime-security-button-line-format)
7790                                (point-max))))
7791         ;; Not inlined.
7792         (if (gnus-buffer-live-p gnus-mime-security-details-buffer)
7793             (with-current-buffer gnus-mime-security-details-buffer
7794               (erase-buffer)
7795               t)
7796           (setq gnus-mime-security-details-buffer
7797                 (gnus-get-buffer-create "*MIME Security Details*")))
7798         (with-current-buffer gnus-mime-security-details-buffer
7799           (insert details)
7800           (goto-char (point-min)))
7801         (pop-to-buffer gnus-mime-security-details-buffer)))))
7802
7803 (defun gnus-mime-security-press-button (handle)
7804   (save-excursion
7805     (if (mm-handle-multipart-ctl-parameter handle 'gnus-info)
7806         (gnus-mime-security-show-details handle)
7807       (gnus-mime-security-verify-or-decrypt handle))))
7808
7809 (defun gnus-insert-mime-security-button (handle &optional displayed)
7810   (let* ((protocol (mm-handle-multipart-ctl-parameter handle 'protocol))
7811          (gnus-tmp-type
7812           (concat
7813            (or (nth 2 (assoc protocol mm-verify-function-alist))
7814                (nth 2 (assoc protocol mm-decrypt-function-alist))
7815                "Unknown")
7816            (if (equal (car handle) "multipart/signed")
7817                " Signed" " Encrypted")
7818            " Part"))
7819          (gnus-tmp-info
7820           (or (mm-handle-multipart-ctl-parameter handle 'gnus-info)
7821               "Undecided"))
7822          (gnus-tmp-details
7823           (mm-handle-multipart-ctl-parameter handle 'gnus-details))
7824          gnus-tmp-pressed-details
7825          b e)
7826     (setq gnus-tmp-details
7827           (if gnus-tmp-details
7828               (concat "\n" gnus-tmp-details)
7829             ""))
7830     (setq gnus-tmp-pressed-details
7831           (if gnus-mime-security-button-pressed gnus-tmp-details ""))
7832     (unless (bolp)
7833       (insert "\n"))
7834     (setq b (point))
7835     (gnus-eval-format
7836      gnus-mime-security-button-line-format
7837      gnus-mime-security-button-line-format-alist
7838      `(keymap ,gnus-mime-security-button-map
7839          gnus-callback gnus-mime-security-press-button
7840          gnus-line-format ,gnus-mime-security-button-line-format
7841          gnus-mime-details ,gnus-mime-security-button-pressed
7842          article-type annotation
7843          gnus-data ,handle))
7844     (setq e (if (bolp)
7845                 ;; Exclude a newline.
7846                 (1- (point))
7847               (point)))
7848     (widget-convert-button
7849      'link b e
7850      :mime-handle handle
7851      :action 'gnus-widget-press-button
7852      :button-keymap gnus-mime-security-button-map
7853      :help-echo
7854      (lambda (widget/window &optional overlay pos)
7855        ;; Needed to properly clear the message due to a bug in
7856        ;; wid-edit (XEmacs only).
7857        (when (boundp 'help-echo-owns-message)
7858          (setq help-echo-owns-message t))
7859        (format
7860         "%S: show detail"
7861         (aref gnus-mouse-2 0))))))
7862
7863 (defun gnus-mime-display-security (handle)
7864   (save-restriction
7865     (narrow-to-region (point) (point))
7866     (unless (gnus-unbuttonized-mime-type-p (car handle))
7867       (gnus-insert-mime-security-button handle))
7868     (gnus-mime-display-mixed (cdr handle))
7869     (unless (bolp)
7870       (insert "\n"))
7871     (unless (gnus-unbuttonized-mime-type-p (car handle))
7872       (let ((gnus-mime-security-button-line-format
7873              gnus-mime-security-button-end-line-format))
7874         (gnus-insert-mime-security-button handle)))
7875     (mm-set-handle-multipart-parameter
7876      handle 'gnus-region
7877      (cons (set-marker (make-marker) (point-min))
7878            (set-marker (make-marker) (point-max))))))
7879
7880
7881 ;;; @ for mime-view
7882 ;;;
7883
7884 (defun gnus-article-header-presentation-method (entity situation)
7885   (mime-insert-header entity)
7886   (article-decode-group-name))
7887
7888 (set-alist 'mime-header-presentation-method-alist
7889            'gnus-original-article-mode
7890            #'gnus-article-header-presentation-method)
7891
7892 (defun gnus-mime-preview-quitting-method ()
7893   (mime-preview-kill-buffer)
7894   (delete-other-windows)
7895   (gnus-article-show-summary)
7896   (gnus-summary-select-article gnus-show-all-headers t))
7897
7898 (set-alist 'mime-preview-quitting-method-alist
7899            'gnus-original-article-mode #'gnus-mime-preview-quitting-method)
7900
7901 (set-alist 'mime-preview-following-method-alist
7902            'gnus-original-article-mode #'gnus-following-method)
7903
7904 (set-alist 'mime-preview-over-to-previous-method-alist
7905            'gnus-original-article-mode
7906            (lambda ()
7907              (if (> (point-min) 1)
7908                  (gnus-article-prev-page)
7909                (gnus-article-read-summary-keys
7910                 nil (gnus-character-to-event ?P)))))
7911
7912 (set-alist 'mime-preview-over-to-next-method-alist
7913            'gnus-original-article-mode'
7914            (lambda ()
7915              (if (< (point-max) (buffer-size))
7916                  (gnus-article-next-page)
7917                (gnus-article-read-summary-keys
7918                 nil (gnus-character-to-event ?N)))))
7919
7920
7921 ;;; @ end
7922 ;;;
7923
7924 (gnus-ems-redefine)
7925
7926 (provide 'gnus-art)
7927
7928 (run-hooks 'gnus-art-load-hook)
7929
7930 ;;; gnus-art.el ends here