*** empty log message ***
[gnus] / lisp / mm-view.el
1 ;;; mm-view.el --- Functions for viewing MIME objects
2 ;; Copyright (C) 1998 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
10 ;; any later version.
11
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ;; GNU General Public License for more details.
16
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
21
22 ;;; Commentary:
23
24 ;;; Code:
25
26 (require 'mail-parse)
27 (require 'mailcap)
28 (require 'mm-bodies)
29
30 ;;;
31 ;;; Functions for displaying various formats inline
32 ;;;
33
34 (defun mm-inline-image (handle)
35   (let ((type (cadr (split-string (car (mm-handle-type handle)) "/")))
36         buffer-read-only image)
37     (mm-with-unibyte-buffer
38       (insert-buffer-substring (mm-handle-buffer handle))
39       (mm-decode-content-transfer-encoding
40        (mm-handle-encoding handle)
41        (car (mm-handle-type handle)))
42       (setq image (make-image-specifier
43                    (vector (intern type) :data (buffer-string)))))
44     (let ((annot (make-annotation image nil 'text)))
45       (set-extent-property annot 'mm t)
46       (set-extent-property annot 'duplicable t)
47       (mm-handle-set-undisplayer handle annot))
48     (insert " ")))
49
50 (defun mm-inline-text (handle)
51   (let ((type (cadr (split-string (car (mm-handle-type handle)) "/")))
52         text buffer-read-only)
53     (cond
54      ((equal type "plain")
55       (with-temp-buffer
56         (insert-buffer-substring (mm-handle-buffer handle))
57         (mm-decode-content-transfer-encoding
58          (mm-handle-encoding handle)
59          (car (mm-handle-type handle)))
60         (setq text (buffer-string)))
61       (let ((b (point)))
62         (insert text)
63         (save-restriction
64           (narrow-to-region b (point))
65           (let ((charset (mail-content-type-get
66                           (mm-handle-type handle) 'charset)))
67             (when charset
68               (mm-decode-body charset nil)))
69           (mm-handle-set-undisplayer
70            handle
71            `(lambda ()
72               (let (buffer-read-only)
73                 (delete-region
74                  ,(set-marker (make-marker) (point-min))
75                  ,(set-marker (make-marker) (point-max)))))))))
76      ((equal type "html")
77       (save-excursion
78         (w3-do-setup)
79         (mm-with-unibyte-buffer
80           (insert-buffer-substring (mm-handle-buffer handle))
81           (mm-decode-content-transfer-encoding
82            (mm-handle-encoding handle)
83            (car (mm-handle-type handle)))
84           (require 'url)
85           (save-window-excursion
86             (w3-region (point-min) (point-max))
87             (setq text (buffer-string))))
88         (mm-insert-inline handle text)))
89      ((or (equal type "enriched")
90           (equal type "richtext"))
91       (save-excursion
92         (mm-with-unibyte-buffer
93           (insert-buffer-substring (mm-handle-buffer handle))
94           (mm-decode-content-transfer-encoding
95            (mm-handle-encoding handle)
96            (car (mm-handle-type handle)))
97           (save-window-excursion
98             (enriched-decode (point-min) (point-max))
99             (setq text (buffer-string)))))
100       (mm-insert-inline handle text))
101      (t
102       (save-excursion
103         (mm-with-unibyte-buffer
104           (insert-buffer-substring (mm-handle-buffer handle))
105           (mm-decode-content-transfer-encoding
106            (mm-handle-encoding handle)
107            (car (mm-handle-type handle)))
108           (setq text (buffer-string))))
109       (mm-insert-inline handle text)))))
110
111 (defun mm-insert-inline (handle text)
112   "Insert TEXT inline from HANDLE."
113   (let ((b (point)))
114     (insert text)
115     (mm-handle-set-undisplayer
116      handle
117      `(lambda ()
118         (let (buffer-read-only)
119           (delete-region ,(set-marker (make-marker) b)
120                          ,(set-marker (make-marker) (point))))))))
121   
122 (defun mm-inline-audio (handle)
123   (message "Not implemented"))
124
125 (defun mm-view-sound-file ()
126   (message "Not implemented"))
127
128 (defun mm-w3-prepare-buffer ()
129   (require 'w3)
130   (w3-prepare-buffer))
131
132 (provide 'mm-view)
133
134 ;; mm-view.el ends here