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