1 ;;; mh-gnus.el --- make MH-E compatible with various versions of Gnus
3 ;; Copyright (C) 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
5 ;; Author: Satyaki Das <satyaki@theforce.stanford.edu>
6 ;; Maintainer: Bill Wohler <wohler@newt.com>
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
33 (mh-require 'gnus-util nil t
)
34 (mh-require 'mm-bodies nil t
)
35 (mh-require 'mm-decode nil t
)
36 (mh-require 'mm-view nil t
)
37 (mh-require 'mml nil t
)
39 ;; Copy of function from gnus-util.el.
40 (defun-mh mh-gnus-local-map-property gnus-local-map-property
(map)
41 "Return a list suitable for a text property list specifying keymap MAP."
42 (cond ((featurep 'xemacs
) (list 'keymap map
))
43 ((>= emacs-major-version
21) (list 'keymap map
))
44 (t (list 'local-map map
))))
46 ;; Copy of function from mm-decode.el.
47 (defun-mh mh-mm-merge-handles mm-merge-handles
(handles1 handles2
)
48 (append (if (listp (car handles1
)) handles1
(list handles1
))
49 (if (listp (car handles2
)) handles2
(list handles2
))))
51 ;; Copy of function from mm-decode.el.
52 (defun-mh mh-mm-set-handle-multipart-parameter
53 mm-set-handle-multipart-parameter
(handle parameter value
)
54 ;; HANDLE could be a CTL.
56 (put-text-property 0 (length (car handle
)) parameter value
59 ;; Copy of function from mm-view.el.
60 (defun-mh mh-mm-inline-text-vcard mm-inline-text-vcard
(handle)
61 (let (buffer-read-only)
66 (if (fboundp 'vcard-pretty-print
)
67 (vcard-pretty-print (mm-get-part handle
))
69 (vcard-parse-string (mm-get-part handle
)
70 'vcard-standard-filter
))))))))
72 ;; Function from mm-decode.el used in PGP messages. Just define it with older
73 ;; Gnus to avoid compiler warning.
74 (defun-mh mh-mm-possibly-verify-or-decrypt
75 mm-possibly-verify-or-decrypt
(parts ctl
)
78 ;; Copy of macro in mm-decode.el.
79 (defmacro-mh mh-mm-handle-multipart-ctl-parameter
80 mm-handle-multipart-ctl-parameter
(handle parameter
)
81 `(get-text-property 0 ,parameter
(car ,handle
)))
83 ;; Copy of function in mm-decode.el.
84 (defun-mh mh-mm-readable-p mm-readable-p
(handle)
85 "Say whether the content of HANDLE is readable."
86 (and (< (with-current-buffer (mm-handle-buffer handle
)
88 (mm-with-unibyte-buffer
89 (mm-insert-part handle
)
90 (and (eq (mm-body-7-or-8) '7bit
)
91 (not (mh-mm-long-lines-p 76))))))
93 ;; Copy of function in mm-bodies.el.
94 (defun-mh mh-mm-long-lines-p mm-long-lines-p
(length)
95 "Say whether any of the lines in the buffer is longer than LENGTH."
97 (goto-char (point-min))
99 (while (and (not (eobp))
100 (not (> (current-column) length
)))
103 (and (> (current-column) length
)
106 (defun-mh mh-mm-keep-viewer-alive-p mm-keep-viewer-alive-p
(handle)
107 ;; Released Gnus doesn't keep handles associated with externally displayed
108 ;; MIME parts. So this will always return nil.
111 (defun-mh mh-mm-destroy-parts mm-destroy-parts
(list)
112 "Older versions of Emacs don't have this function."
115 (defun-mh mh-mm-uu-dissect-text-parts mm-uu-dissect-text-parts
(handles)
116 "Emacs 21 and XEmacs don't have this function."
119 ;; Copy of function in mml.el.
120 (defun-mh mh-mml-minibuffer-read-disposition
121 mml-minibuffer-read-disposition
(type &optional default
)
122 (unless default
(setq default
123 (if (and (string-match "\\`text/" type
)
124 (not (string-match "\\`text/rtf\\'" type
)))
127 (let ((disposition (completing-read
128 (format "Disposition (default %s): " default
)
129 '(("attachment") ("inline") (""))
130 nil t nil nil default
)))
131 (if (not (equal disposition
""))
135 ;; This is mm-save-part from Gnus 5.10 since that function in emacs21.2 is
136 ;; buggy (the args to read-file-name are incorrect). When all supported
137 ;; versions of Emacs come with at least Gnus 5.10, we can delete this
138 ;; function and rename calls to mh-mm-save-part to mm-save-part.
139 (defun mh-mm-save-part (handle)
140 "Write HANDLE to a file."
141 (let ((name (mail-content-type-get (mm-handle-type handle
) 'name
))
142 (filename (mail-content-type-get
143 (mm-handle-disposition handle
) 'filename
))
146 (setq filename
(file-name-nondirectory filename
)))
147 (setq file
(read-file-name "Save MIME part to: "
148 (or mm-default-directory
150 nil nil
(or filename name
"")))
151 (setq mm-default-directory
(file-name-directory file
))
152 (and (or (not (file-exists-p file
))
153 (yes-or-no-p (format "File %s already exists; overwrite? "
155 (mm-save-part-to-file handle file
))))
157 (defun mh-mm-text-html-renderer ()
158 "Find the renderer Gnus is using to display text/html MIME parts."
159 (or (and (boundp 'mm-inline-text-html-renderer
) mm-inline-text-html-renderer
)
160 (and (boundp 'mm-text-html-renderer
) mm-text-html-renderer
)))
165 ;; no-byte-compile: t
166 ;; no-update-autoloads: t
167 ;; indent-tabs-mode: nil
168 ;; sentence-end-double-space: nil
171 ;; arch-tag: 1e3638af-cad3-4c69-8427-bc8eb6e5e4fa
172 ;;; mh-gnus.el ends here