Sync with semi-1_14.
[elisp/semi.git] / mime-w3.el
1 ;;; mime-w3.el --- mime-view content filter for text
2
3 ;; Copyright (C) 1994,95,96,97,98,99,2000 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: HTML, MIME, multimedia, mail, news
7
8 ;; This file is part of SEMI (Suite of Emacs MIME Interfaces).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; 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., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Code:
26
27 (condition-case nil
28     (require 'w3)
29   (error nil))
30 (require 'mime)
31
32 (defmacro mime-put-keymap-region (start end keymap)
33   `(put-text-property ,start ,end
34                       ',(if (featurep 'xemacs)
35                             'keymap
36                           'local-map)
37                       ,keymap))
38
39 (defmacro mime-save-background-color (&rest body)
40   (if (featurep 'xemacs)
41       `(let ((color (color-name (face-background 'default))))
42          (prog1
43              (progn ,@body)
44            (font-set-face-background 'default color (current-buffer))))
45     (cons 'progn body)))
46
47 (defvar mime-w3-message-structure nil)
48
49 (defun mime-preview-text/html (entity situation)
50   (setq mime-w3-message-structure (mime-find-root-entity entity))
51   (goto-char (point-max))
52   (let ((p (point)))
53     (insert "\n")
54     (goto-char p)
55     (mime-save-background-color
56      (save-restriction
57        (narrow-to-region p p)
58        (mime-insert-text-content entity)
59        (run-hooks 'mime-text-decode-hook)
60        (condition-case err
61            (w3-region p (point-max))
62          (error (message "%s" err)))
63        (mime-put-keymap-region p (point-max) w3-mode-map)))))
64
65 (defun url-cid (url &optional proxy-info)
66   (let ((entity
67          (mime-find-entity-from-content-id (mime-uri-parse-cid url)
68                                            mime-w3-message-structure))
69         buffer)
70     (when entity
71       (setq buffer (generate-new-buffer (format " *cid %s" url)))
72       (save-excursion
73         (set-buffer buffer)
74         (mime-insert-entity-content entity)
75         (if (boundp 'url-current-mime-type)
76             (setq url-current-mime-type (mime-entity-type/subtype entity)))))
77     buffer))
78
79 (if (fboundp 'url-register-protocol)
80     (url-register-protocol "cid"
81                            'url-cid
82                            'url-identity-expander)
83   (provide 'url-cid))
84
85
86 ;;; @ end
87 ;;;
88
89 (provide 'mime-w3)
90
91 ;;; mime-w3.el ends here