a4ff9a790b4bf370740076e859ba1d5e051deebe
[elisp/semi.git] / mime-view.el
1 ;;; mime-view.el --- interactive MIME viewer for GNU Emacs
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Created: 1994/07/13
7 ;;      Renamed: 1994/08/31 from tm-body.el
8 ;;      Renamed: 1997/02/19 from tm-view.el
9 ;; Keywords: MIME, multimedia, mail, news
10
11 ;; This file is part of SEMI (Sophisticated Emacs MIME Interfaces).
12
13 ;; This program is free software; you can redistribute it and/or
14 ;; modify it under the terms of the GNU General Public License as
15 ;; published by the Free Software Foundation; either version 2, or (at
16 ;; your option) any later version.
17
18 ;; This program is distributed in the hope that it will be useful, but
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 ;; General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Code:
29
30 (require 'std11)
31 (require 'mel)
32 (require 'eword-decode)
33 (require 'mime-parse)
34 (require 'semi-def)
35 (require 'calist)
36 (require 'mailcap)
37
38
39 ;;; @ version
40 ;;;
41
42 (defconst mime-view-version-string
43   `,(concat (car mime-module-version) " MIME-View "
44             (mapconcat #'number-to-string (cddr mime-module-version) ".")
45             " (" (cadr mime-module-version) ")"))
46
47
48 ;;; @ variables
49 ;;;
50
51 (defgroup mime-view nil
52   "MIME view mode"
53   :group 'mime)
54
55 (defcustom mime-view-find-every-acting-situation t
56   "*Find every available acting-situation if non-nil."
57   :group 'mime-view
58   :type 'boolean)
59
60 (defcustom mime-acting-situation-examples-file "~/.mime-example"
61   "*File name of example about acting-situation demonstrated by user."
62   :group 'mime-view
63   :type 'file)
64
65
66 ;;; @ buffer local variables
67 ;;;
68
69 ;;; @@ in raw-buffer
70 ;;;
71
72 (defvar mime-raw-message-info
73   "Information about structure of message.
74 Please use reference function `mime-entity-SLOT' to get value of SLOT.
75
76 Following is a list of slots of the structure:
77
78 node-id         reversed entity-number (list of integers)
79 point-min       beginning point of region in raw-buffer
80 point-max       end point of region in raw-buffer
81 type            media-type (symbol)
82 subtype         media-subtype (symbol)
83 type/subtype    media-type/subtype (string or nil)
84 parameters      parameter of Content-Type field (association list)
85 encoding        Content-Transfer-Encoding (string or nil)
86 children        entities included in this entity (list of content-infos)
87
88 If an entity includes other entities in its body, such as multipart or
89 message/rfc822, `mime-entity' structures of them are included in
90 `children', so the `mime-entity' structure become a tree.")
91 (make-variable-buffer-local 'mime-raw-message-info)
92
93 (defvar mime-preview-buffer nil
94   "MIME-preview buffer corresponding with the (raw) buffer.")
95 (make-variable-buffer-local 'mime-preview-buffer)
96
97
98 ;;; @@ in preview-buffer
99 ;;;
100
101 (defvar mime-mother-buffer nil
102   "Mother buffer corresponding with the (MIME-preview) buffer.
103 If current MIME-preview buffer is generated by other buffer, such as
104 message/partial, it is called `mother-buffer'.")
105 (make-variable-buffer-local 'mime-mother-buffer)
106
107 (defvar mime-raw-buffer nil
108   "Raw buffer corresponding with the (MIME-preview) buffer.")
109 (make-variable-buffer-local 'mime-raw-buffer)
110
111 (defvar mime-preview-original-major-mode nil
112   "Major-mode of mime-raw-buffer.")
113 (make-variable-buffer-local 'mime-preview-original-major-mode)
114
115 (defvar mime-preview-original-window-configuration nil
116   "Window-configuration before mime-view-mode is called.")
117 (make-variable-buffer-local 'mime-preview-original-window-configuration)
118
119
120 ;;; @ entity information
121 ;;;
122
123 (defsubst mime-raw-find-entity-from-node-id (entity-node-id
124                                              &optional message-info)
125   "Return entity from ENTITY-NODE-ID in mime-raw-buffer.
126 If optional argument MESSAGE-INFO is not specified,
127 `mime-raw-message-info' is used."
128   (mime-raw-find-entity-from-number (reverse entity-node-id) message-info))
129
130 (defun mime-raw-find-entity-from-number (entity-number &optional message-info)
131   "Return entity from ENTITY-NUMBER in mime-raw-buffer.
132 If optional argument MESSAGE-INFO is not specified,
133 `mime-raw-message-info' is used."
134   (or message-info
135       (setq message-info mime-raw-message-info))
136   (if (eq entity-number t)
137       message-info
138     (let ((sn (car entity-number)))
139       (if (null sn)
140           message-info
141         (let ((rc (nth sn (mime-entity-children message-info))))
142           (if rc
143               (mime-raw-find-entity-from-number (cdr entity-number) rc)
144             ))
145         ))))
146
147 (defun mime-raw-find-entity-from-point (point &optional message-info)
148   "Return entity from POINT in mime-raw-buffer.
149 If optional argument MESSAGE-INFO is not specified,
150 `mime-raw-message-info' is used."
151   (or message-info
152       (setq message-info mime-raw-message-info))
153   (if (and (<= (mime-entity-point-min message-info) point)
154            (<= point (mime-entity-point-max message-info)))
155       (let ((children (mime-entity-children message-info)))
156         (catch 'tag
157           (while children
158             (let ((ret
159                    (mime-raw-find-entity-from-point point (car children))))
160               (if ret
161                   (throw 'tag ret)
162                 ))
163             (setq children (cdr children)))
164           message-info))))
165
166 (defsubst mime-raw-point-to-entity-node-id (point &optional message-info)
167   "Return entity-node-id from POINT in mime-raw-buffer.
168 If optional argument MESSAGE-INFO is not specified,
169 `mime-raw-message-info' is used."
170   (mime-entity-node-id (mime-raw-find-entity-from-point point message-info)))
171
172 (defsubst mime-raw-point-to-entity-number (point &optional message-info)
173   "Return entity-number from POINT in mime-raw-buffer.
174 If optional argument MESSAGE-INFO is not specified,
175 `mime-raw-message-info' is used."
176   (reverse (mime-raw-point-to-entity-node-id point message-info)))
177
178 (defsubst mime-raw-entity-parent (entity &optional message-info)
179   "Return mother entity of ENTITY.
180 If optional argument MESSAGE-INFO is not specified,
181 `mime-raw-message-info' is used."
182   (mime-raw-find-entity-from-node-id (cdr (mime-entity-node-id entity))
183                                      message-info))
184
185 (defun mime-raw-flatten-message-info (&optional message-info)
186   "Return list of entity in mime-raw-buffer.
187 If optional argument MESSAGE-INFO is not specified,
188 `mime-raw-message-info' is used."
189   (or message-info
190       (setq message-info mime-raw-message-info))
191   (let ((dest (list message-info))
192         (rcl (mime-entity-children message-info)))
193     (while rcl
194       (setq dest (nconc dest (mime-raw-flatten-message-info (car rcl))))
195       (setq rcl (cdr rcl)))
196     dest))
197
198
199 ;;; @ presentation of preview
200 ;;;
201
202 ;;; @@ entity-button
203 ;;;
204
205 ;;; @@@ predicate function
206 ;;;
207
208 (defun mime-view-entity-button-visible-p (entity message-info)
209   "Return non-nil if header of ENTITY is visible.
210 Please redefine this function if you want to change default setting."
211   (let ((media-type (mime-entity-media-type entity))
212         (media-subtype (mime-entity-media-subtype entity)))
213     (or (not (eq media-type 'application))
214         (and (not (eq media-subtype 'x-selection))
215              (or (not (eq media-subtype 'octet-stream))
216                  (let ((mother-entity
217                         (mime-raw-entity-parent entity message-info)))
218                    (or (not (eq (mime-entity-media-type mother-entity)
219                                 'multipart))
220                        (not (eq (mime-entity-media-subtype mother-entity)
221                                 'encrypted)))
222                    )
223                  )))))
224
225 ;;; @@@ entity button generator
226 ;;;
227
228 (defun mime-view-insert-entity-button (entity message-info subj)
229   "Insert entity-button of ENTITY."
230   (let ((entity-node-id (mime-entity-node-id entity))
231         (params (mime-entity-parameters entity)))
232     (mime-insert-button
233      (let ((access-type (assoc "access-type" params))
234            (num (or (cdr (assoc "x-part-number" params))
235                     (if (consp entity-node-id)
236                         (mapconcat (function
237                                     (lambda (num)
238                                       (format "%s" (1+ num))
239                                       ))
240                                    (reverse entity-node-id) ".")
241                       "0"))
242                 ))
243        (cond (access-type
244               (let ((server (assoc "server" params)))
245                 (setq access-type (cdr access-type))
246                 (if server
247                     (format "%s %s ([%s] %s)"
248                             num subj access-type (cdr server))
249                 (let ((site (cdr (assoc "site" params)))
250                       (dir (cdr (assoc "directory" params)))
251                       )
252                   (format "%s %s ([%s] %s:%s)"
253                           num subj access-type site dir)
254                   )))
255             )
256            (t
257             (let ((media-type (mime-entity-media-type entity))
258                   (media-subtype (mime-entity-media-subtype entity))
259                   (charset (cdr (assoc "charset" params)))
260                   (encoding (mime-entity-encoding entity)))
261               (concat
262                num " " subj
263                (let ((rest
264                       (format " <%s/%s%s%s>"
265                               media-type media-subtype
266                               (if charset
267                                   (concat "; " charset)
268                                 "")
269                               (if encoding
270                                   (concat " (" encoding ")")
271                                 ""))))
272                  (if (>= (+ (current-column)(length rest))(window-width))
273                      "\n\t")
274                  rest)))
275             )))
276      (function mime-preview-play-current-entity))
277     ))
278
279
280 ;;; @@ entity-header
281 ;;;
282
283 ;;; @@@ predicate function
284 ;;;
285
286 ;; (defvar mime-view-childrens-header-showing-Content-Type-list
287 ;;   '("message/rfc822" "message/news"))
288
289 ;; (defun mime-view-header-visible-p (entity message-info)
290 ;;   "Return non-nil if header of ENTITY is visible."
291 ;;   (let ((entity-node-id (mime-entity-node-id entity)))
292 ;;     (member (mime-entity-type/subtype
293 ;;              (mime-raw-find-entity-from-node-id
294 ;;               (cdr entity-node-id) message-info))
295 ;;             mime-view-childrens-header-showing-Content-Type-list)
296 ;;     ))
297
298 ;;; @@@ entity header filter
299 ;;;
300
301 (defvar mime-view-content-header-filter-alist nil)
302
303 (defun mime-view-default-content-header-filter ()
304   (mime-view-cut-header)
305   (eword-decode-header)
306   )
307
308 ;;; @@@ entity field cutter
309 ;;;
310
311 (defvar mime-view-ignored-field-list
312   '(".*Received" ".*Path" ".*Id" "References"
313     "Replied" "Errors-To"
314     "Lines" "Sender" ".*Host" "Xref"
315     "Content-Type" "Precedence"
316     "Status" "X-VM-.*")
317   "All fields that match this list will be hidden in MIME preview buffer.
318 Each elements are regexp of field-name.")
319
320 (defvar mime-view-ignored-field-regexp
321   (concat "^"
322           (apply (function regexp-or) mime-view-ignored-field-list)
323           ":"))
324
325 (defvar mime-view-visible-field-list '("Dnas.*" "Message-Id")
326   "All fields that match this list will be displayed in MIME preview buffer.
327 Each elements are regexp of field-name.")
328
329 (defun mime-view-cut-header ()
330   (goto-char (point-min))
331   (while (re-search-forward mime-view-ignored-field-regexp nil t)
332     (let* ((beg (match-beginning 0))
333            (end (match-end 0))
334            (name (buffer-substring beg end))
335            )
336       (catch 'visible
337         (let ((rest mime-view-visible-field-list))
338           (while rest
339             (if (string-match (car rest) name)
340                 (throw 'visible nil)
341               )
342             (setq rest (cdr rest))))
343         (delete-region beg
344                        (save-excursion
345                          (if (re-search-forward "^\\([^ \t]\\|$\\)" nil t)
346                              (match-beginning 0)
347                            (point-max))))
348         ))))
349
350
351 ;;; @@ entity-body
352 ;;;
353
354 ;;; @@@ predicate function
355 ;;;
356
357 (defun mime-calist::field-match-method-as-default-rule (calist
358                                                         field-type field-value)
359   (let ((s-field (assq field-type calist)))
360     (cond ((null s-field)
361            (cons (cons field-type field-value) calist)
362            )
363           (t calist))))
364
365 (define-calist-field-match-method
366   'header #'mime-calist::field-match-method-as-default-rule)
367
368 (define-calist-field-match-method
369   'body #'mime-calist::field-match-method-as-default-rule)
370
371
372 (defvar mime-preview-condition nil
373   "Condition-tree about how to display entity.")
374
375 (ctree-set-calist-strictly
376  'mime-preview-condition '((type . application)(subtype . octet-stream)
377                            (encoding . nil)
378                            (body . visible)))
379 (ctree-set-calist-strictly
380  'mime-preview-condition '((type . application)(subtype . octet-stream)
381                            (encoding . "7bit")
382                            (body . visible)))
383 (ctree-set-calist-strictly
384  'mime-preview-condition '((type . application)(subtype . octet-stream)
385                            (encoding . "8bit")
386                            (body . visible)))
387
388 (ctree-set-calist-strictly
389  'mime-preview-condition '((type . application)(subtype . pgp)
390                            (body . visible)))
391
392 (ctree-set-calist-strictly
393  'mime-preview-condition '((type . application)(subtype . x-latex)
394                            (body . visible)))
395
396 (ctree-set-calist-strictly
397  'mime-preview-condition '((type . application)(subtype . x-selection)
398                            (body . visible)))
399
400 (ctree-set-calist-strictly
401  'mime-preview-condition '((type . application)(subtype . x-comment)
402                            (body . visible)))
403
404 (ctree-set-calist-strictly
405  'mime-preview-condition '((type . message)(subtype . delivery-status)
406                            (body . visible)))
407
408 (ctree-set-calist-strictly
409  'mime-preview-condition '((body . visible)
410                            (body-presentation-method . with-filter)
411                            (body-filter . mime-preview-filter-for-text/plain)))
412
413 (ctree-set-calist-strictly
414  'mime-preview-condition '((type . nil)
415                            (body . visible)
416                            (body-presentation-method . with-filter)
417                            (body-filter . mime-preview-filter-for-text/plain)))
418
419 (ctree-set-calist-strictly
420  'mime-preview-condition '((type . text)(subtype . enriched)
421                            (body . visible)
422                            (body-presentation-method . with-filter)
423                            (body-filter
424                             . mime-preview-filter-for-text/enriched)))
425
426 (ctree-set-calist-strictly
427  'mime-preview-condition '((type . text)(subtype . richtext)
428                            (body . visible)
429                            (body-presentation-method . with-filter)
430                            (body-filter
431                             . mime-preview-filter-for-text/richtext)))
432
433 (ctree-set-calist-strictly
434  'mime-preview-condition '((type . text)(subtype . t)
435                            (body . visible)
436                            (body-presentation-method . with-filter)
437                            (body-filter . mime-preview-filter-for-text/plain)))
438
439 (ctree-set-calist-strictly
440  'mime-preview-condition '((type . message)(subtype . partial)
441                            (body-presentation-method
442                             . mime-view-insert-message/partial-button)))
443
444 (ctree-set-calist-strictly
445  'mime-preview-condition '((type . message)(subtype . rfc822)
446                            (body-presentation-method . nil)
447                            (childrens-situation (header . visible)
448                                                 (entity-button . invisible))))
449
450 (ctree-set-calist-strictly
451  'mime-preview-condition '((type . message)(subtype . news)
452                            (body-presentation-method . nil)
453                            (childrens-situation (header . visible)
454                                                 (entity-button . invisible))))
455
456
457 ;;; @@@ entity filter
458 ;;;
459
460 (autoload 'mime-preview-filter-for-text/plain "mime-text")
461 (autoload 'mime-preview-filter-for-text/enriched "mime-text")
462 (autoload 'mime-preview-filter-for-text/richtext "mime-text")
463
464 (defvar mime-text-decoder-alist
465   '((mime-show-message-mode     . mime-text-decode-buffer)
466     (mime-temp-message-mode     . mime-text-decode-buffer)
467     (t                          . mime-text-decode-buffer-maybe)
468     )
469   "Alist of major-mode vs. mime-text-decoder.
470 Each element looks like (SYMBOL . FUNCTION).  SYMBOL is major-mode or
471 t.  t means default.
472
473 Specification of FUNCTION is described in DOC-string of variable
474 `mime-text-decoder'.
475
476 This value is overridden by buffer local variable `mime-text-decoder'
477 if it is not nil.")
478
479
480 (defvar mime-view-announcement-for-message/partial
481   (if (and (>= emacs-major-version 19) window-system)
482       "\
483 \[[ This is message/partial style split message. ]]
484 \[[ Please press `v' key in this buffer          ]]
485 \[[ or click here by mouse button-2.             ]]"
486     "\
487 \[[ This is message/partial style split message. ]]
488 \[[ Please press `v' key in this buffer.         ]]"
489     ))
490
491 (defun mime-view-insert-message/partial-button (&optional situation)
492   (save-restriction
493     (goto-char (point-max))
494     (if (not (search-backward "\n\n" nil t))
495         (insert "\n")
496       )
497     (goto-char (point-max))
498     (narrow-to-region (point-max)(point-max))
499     (insert mime-view-announcement-for-message/partial)
500     (mime-add-button (point-min)(point-max)
501                      #'mime-preview-play-current-entity)
502     ))
503
504
505 ;;; @ acting-condition
506 ;;;
507
508 (defvar mime-acting-condition nil
509   "Condition-tree about how to process entity.")
510
511 (if (file-readable-p mailcap-file)
512     (let ((entries (mailcap-parse-file)))
513       (while entries
514         (let ((entry (car entries))
515               view print shared)
516           (while entry
517             (let* ((field (car entry))
518                    (field-type (car field)))
519               (cond ((eq field-type 'view)  (setq view field))
520                     ((eq field-type 'print) (setq print field))
521                     ((memq field-type '(compose composetyped edit)))
522                     (t (setq shared (cons field shared))))
523               )
524             (setq entry (cdr entry))
525             )
526           (setq shared (nreverse shared))
527           (ctree-set-calist-strictly
528            'mime-acting-condition
529            (append shared (list '(mode . "play")(cons 'method (cdr view)))))
530           (if print
531               (ctree-set-calist-strictly
532                'mime-acting-condition
533                (append shared
534                        (list '(mode . "print")(cons 'method (cdr view))))
535                ))
536           )
537         (setq entries (cdr entries))
538         )))
539
540 (ctree-set-calist-strictly
541  'mime-acting-condition
542  '((type . t)(subtype . t)(mode . "play")
543    (method "metamail" t "-m" "tm" "-x" "-d" "-z" "-e" 'file)
544    ))
545 (ctree-set-calist-strictly
546  'mime-acting-condition
547  '((type . t)(subtype . t)(mode . "extract")
548    (method . mime-method-to-save)))
549
550 (ctree-set-calist-strictly
551  'mime-acting-condition
552  '((type . text)(subtype . plain)(mode . "play")
553    (method "tm-plain" nil 'file "" 'encoding 'mode 'name)
554    ))
555 (ctree-set-calist-strictly
556  'mime-acting-condition
557  '((type . text)(subtype . plain)(mode . "print")
558    (method "tm-plain" nil 'file "" 'encoding 'mode 'name)
559    ))
560 (ctree-set-calist-strictly
561  'mime-acting-condition
562  '((type . text)(subtype . html)(mode . "play")
563    (method "tm-html" nil 'file "" 'encoding 'mode 'name)
564    ))
565 (ctree-set-calist-strictly
566  'mime-acting-condition
567  '((type . text)(subtype . x-rot13-47)(mode . "play")
568    (method . mime-method-to-display-caesar)
569    ))
570 (ctree-set-calist-strictly
571  'mime-acting-condition
572  '((type . text)(subtype . x-rot13-47-48)(mode . "play")
573    (method . mime-method-to-display-caesar)
574    ))
575
576 (ctree-set-calist-strictly
577  'mime-acting-condition
578  '((type . audio)(subtype . basic)(mode . "play")
579    (method "tm-au" nil 'file "" 'encoding 'mode 'name)
580    ))
581
582 (ctree-set-calist-strictly
583  'mime-acting-condition
584  '((type . image)(mode . "play")
585    (method "tm-image" nil 'file "" 'encoding 'mode 'name)
586    ))
587 (ctree-set-calist-strictly
588  'mime-acting-condition
589  '((type . image)(mode . "print")
590    (method "tm-image" nil 'file "" 'encoding 'mode 'name)
591    ))
592
593 (ctree-set-calist-strictly
594  'mime-acting-condition
595  '((type . video)(subtype . mpeg)(mode . "play")
596    (method "tm-mpeg" nil 'file "" 'encoding 'mode 'name)
597    ))
598
599 (ctree-set-calist-strictly
600  'mime-acting-condition
601  '((type . application)(subtype . postscript)(mode . "play")
602    (method "tm-ps" nil 'file "" 'encoding 'mode 'name)
603    ))
604 (ctree-set-calist-strictly
605  'mime-acting-condition
606  '((type . application)(subtype . postscript)(mode . "print")
607    (method "tm-ps" nil 'file "" 'encoding 'mode 'name)
608    ))
609
610 (ctree-set-calist-strictly
611  'mime-acting-condition
612  '((type . message)(subtype . rfc822)(mode . "play")
613    (method . mime-method-to-display-message/rfc822)
614    ))
615 (ctree-set-calist-strictly
616  'mime-acting-condition
617  '((type . message)(subtype . partial)(mode . "play")
618    (method . mime-method-to-store-message/partial)
619    ))
620
621 (ctree-set-calist-strictly
622  'mime-acting-condition
623  '((type . message)(subtype . external-body)
624    ("access-type" . "anon-ftp")
625    (method . mime-method-to-display-message/external-ftp)
626    ))
627
628 (ctree-set-calist-strictly
629  'mime-acting-condition
630  '((type . application)(subtype . octet-stream)
631    (method . mime-method-to-save)
632    ))
633
634
635 ;;; @ quitting method
636 ;;;
637
638 (defvar mime-preview-quitting-method-alist
639   '((mime-show-message-mode
640      . mime-preview-quitting-method-for-mime-show-message-mode))
641   "Alist of major-mode vs. quitting-method of mime-view.")
642
643 (defvar mime-view-over-to-previous-method-alist nil)
644 (defvar mime-view-over-to-next-method-alist nil)
645
646 (defvar mime-view-show-summary-method nil
647   "Alist of major-mode vs. show-summary-method.")
648
649
650 ;;; @ following method
651 ;;;
652
653 (defvar mime-view-following-method-alist nil
654   "Alist of major-mode vs. following-method of mime-view.")
655
656 (defvar mime-view-following-required-fields-list
657   '("From"))
658
659
660 ;;; @ X-Face
661 ;;;
662
663 ;; hack from Gnus 5.0.4.
664
665 (defvar mime-view-x-face-to-pbm-command
666   "{ echo '/* Width=48, Height=48 */'; uncompface; } | icontopbm")
667
668 (defvar mime-view-x-face-command
669   (concat mime-view-x-face-to-pbm-command
670           " | xv -quit -")
671   "String to be executed to display an X-Face field.
672 The command will be executed in a sub-shell asynchronously.
673 The compressed face will be piped to this command.")
674
675 (defun mime-view-x-face-function ()
676   "Function to display X-Face field. You can redefine to customize."
677   ;; 1995/10/12 (c.f. tm-eng:130)
678   ;;    fixed by Eric Ding <ericding@San-Jose.ate.slb.com>
679   (save-restriction
680     (narrow-to-region (point-min) (re-search-forward "^$" nil t))
681     ;; end
682     (goto-char (point-min))
683     (if (re-search-forward "^X-Face:[ \t]*" nil t)
684         (let ((beg (match-end 0))
685               (end (std11-field-end))
686               )
687           (call-process-region beg end "sh" nil 0 nil
688                                "-c" mime-view-x-face-command)
689           ))))
690
691
692 ;;; @ miscellaneous
693 ;;;
694
695 (defvar mime-view-uuencode-encoding-name-list '("x-uue" "x-uuencode"))
696
697 (defvar mime-raw-buffer-coding-system-alist
698   `((t . ,(mime-charset-to-coding-system default-mime-charset)))
699   "Alist of major-mode vs. corresponding coding-system of `mime-raw-buffer'.")
700
701
702 ;;; @ buffer setup
703 ;;;
704
705 (defvar mime-view-redisplay nil)
706
707 (defun mime-view-setup-buffers (&optional ctl encoding ibuf obuf)
708   (if ibuf
709       (progn
710         (get-buffer ibuf)
711         (set-buffer ibuf)
712         ))
713   (or mime-view-redisplay
714       (setq mime-raw-message-info (mime-parse-message ctl encoding))
715       )
716   (let ((message-info mime-raw-message-info)
717         (the-buf (current-buffer))
718         (mode major-mode))
719     (or obuf
720         (setq obuf (concat "*Preview-" (buffer-name the-buf) "*")))
721     (set-buffer (get-buffer-create obuf))
722     (let ((inhibit-read-only t))
723       ;;(setq buffer-read-only nil)
724       (widen)
725       (erase-buffer)
726       (setq mime-raw-buffer the-buf)
727       (setq mime-preview-original-major-mode mode)
728       (setq major-mode 'mime-view-mode)
729       (setq mode-name "MIME-View")
730       (mime-view-display-message message-info the-buf obuf)
731       (set-buffer-modified-p nil)
732       )
733     (setq buffer-read-only t)
734     (set-buffer the-buf)
735     )
736   (setq mime-preview-buffer obuf)
737   )
738
739 (defun mime-view-display-message (message-info ibuf obuf)
740   (let* ((start (mime-entity-point-min message-info))
741          (end (mime-entity-point-max message-info))
742          (media-type (mime-entity-media-type message-info))
743          (media-subtype (mime-entity-media-subtype message-info))
744          (params (mime-entity-parameters message-info))
745          (encoding (mime-entity-encoding message-info))
746          end-of-header e nb ne subj)
747     (set-buffer ibuf)
748     (goto-char start)
749     (setq end-of-header (if (re-search-forward "^$" nil t)
750                             (1+ (match-end 0))
751                           end))
752     (if (> end-of-header end)
753         (setq end-of-header end)
754       )
755     (save-restriction
756       (narrow-to-region start end)
757       (setq subj
758             (eword-decode-string
759              (mime-raw-get-subject params encoding)))
760       )
761     (set-buffer obuf)
762     (setq nb (point))
763     (narrow-to-region nb nb)
764     ;; Insert message-header
765     (save-restriction
766       (narrow-to-region (point)(point))
767       (insert-buffer-substring mime-raw-buffer start end-of-header)
768       (let ((f (cdr (assq mime-preview-original-major-mode
769                           mime-view-content-header-filter-alist))))
770         (if (functionp f)
771             (funcall f)
772           (mime-view-default-content-header-filter)
773           ))
774       (run-hooks 'mime-view-content-header-filter-hook)
775       )
776     (let* ((situation
777             (ctree-match-calist mime-preview-condition
778                                 (list* (cons 'type       media-type)
779                                        (cons 'subtype    media-subtype)
780                                        (cons 'encoding   encoding)
781                                        (cons 'major-mode major-mode)
782                                        params)))
783            (message-button
784             (cdr (assq 'message-button situation)))
785            (body-presentation-method
786             (cdr (assq 'body-presentation-method situation))))
787       (when (eq message-button 'visible)
788         (goto-char (point-max))
789         (mime-view-insert-entity-button message-info message-info subj)
790         )
791       (cond ((eq body-presentation-method 'with-filter)
792              (let ((body-filter (cdr (assq 'body-filter situation))))
793                (save-restriction
794                  (narrow-to-region (point-max)(point-max))
795                  (insert-buffer-substring mime-raw-buffer end-of-header end)
796                  (funcall body-filter situation)
797                  )))
798             ((functionp body-presentation-method)
799              (funcall body-presentation-method situation)
800              )
801             ((null (mime-entity-children message-info))
802              (goto-char (point-max))
803              (mime-view-insert-entity-button message-info message-info subj)
804              ))
805       (setq ne (point-max))
806       (widen)
807       (put-text-property nb ne 'mime-view-raw-buffer ibuf)
808       (put-text-property nb ne 'mime-view-entity message-info)
809       (goto-char ne)
810       (let ((children (mime-entity-children message-info))
811             (default-situation
812              (cdr (assq 'childrens-situation situation))))
813         (while children
814           (mime-view-display-entity (car children) message-info ibuf obuf
815                                     default-situation)
816           (setq children (cdr children))
817           )))))
818
819 (defun mime-view-display-entity (entity message-info ibuf obuf
820                                         default-situation)
821   (let* ((start (mime-entity-point-min entity))
822          (end (mime-entity-point-max entity))
823          (media-type (mime-entity-media-type entity))
824          (media-subtype (mime-entity-media-subtype entity))
825          (params (mime-entity-parameters entity))
826          (encoding (mime-entity-encoding entity))
827          end-of-header e nb ne subj)
828     (set-buffer ibuf)
829     (goto-char start)
830     (setq end-of-header (if (re-search-forward "^$" nil t)
831                             (1+ (match-end 0))
832                           end))
833     (if (> end-of-header end)
834         (setq end-of-header end)
835       )
836     (save-restriction
837       (narrow-to-region start end)
838       (setq subj
839             (eword-decode-string
840              (mime-raw-get-subject params encoding)))
841       )
842     (let* ((situation
843             (ctree-match-calist mime-preview-condition
844                                 (list* (cons 'type       media-type)
845                                        (cons 'subtype    media-subtype)
846                                        (cons 'encoding   encoding)
847                                        (cons 'major-mode major-mode)
848                                        (append params
849                                                default-situation))))
850            (button-is-invisible
851             (eq (cdr (assq 'entity-button situation)) 'invisible))
852            (header-is-visible
853             (eq (cdr (assq 'header situation)) 'visible))
854            (body-presentation-method
855             (cdr (assq 'body-presentation-method situation))))
856       (set-buffer obuf)
857       (setq nb (point))
858       (narrow-to-region nb nb)
859       (or button-is-invisible
860           (if (mime-view-entity-button-visible-p entity message-info)
861               (mime-view-insert-entity-button entity message-info subj)
862             ))
863       (if header-is-visible
864           (save-restriction
865             (narrow-to-region (point)(point))
866             (insert-buffer-substring mime-raw-buffer start end-of-header)
867             (let ((f (cdr (assq mime-preview-original-major-mode
868                                 mime-view-content-header-filter-alist))))
869               (if (functionp f)
870                   (funcall f)
871                 (mime-view-default-content-header-filter)
872                 ))
873             (run-hooks 'mime-view-content-header-filter-hook)
874             ))
875       (cond ((eq body-presentation-method 'with-filter)
876              (let ((body-filter (cdr (assq 'body-filter situation))))
877                (save-restriction
878                  (narrow-to-region (point-max)(point-max))
879                  (insert-buffer-substring mime-raw-buffer end-of-header end)
880                  (funcall body-filter situation)
881                  )))
882             ((functionp body-presentation-method)
883              (funcall body-presentation-method situation)
884              ))
885       (or header-is-visible
886           body-presentation-method
887           (progn
888             (goto-char (point-max))
889             (insert "\n")
890             ))
891       (setq ne (point-max))
892       (widen)
893       (put-text-property nb ne 'mime-view-raw-buffer ibuf)
894       (put-text-property nb ne 'mime-view-entity entity)
895       (goto-char ne)
896       (let ((children (mime-entity-children entity))
897             (default-situation
898               (cdr (assq 'childrens-situation situation))))
899         (while children
900           (mime-view-display-entity (car children) message-info ibuf obuf
901                                     default-situation)
902           (setq children (cdr children))
903           )))))
904
905 (defun mime-raw-get-uu-filename (param &optional encoding)
906   (if (member (or encoding
907                   (cdr (assq 'encoding param))
908                   )
909               mime-view-uuencode-encoding-name-list)
910       (save-excursion
911         (or (if (re-search-forward "^begin [0-9]+ " nil t)
912                 (if (looking-at ".+$")
913                     (buffer-substring (match-beginning 0)(match-end 0))
914                   ))
915             ""))
916     ))
917
918 (defun mime-raw-get-subject (param &optional encoding)
919   (or (std11-find-field-body '("Content-Description" "Subject"))
920       (let (ret)
921         (if (or (and (setq ret (mime/Content-Disposition))
922                      (setq ret (assoc "filename" (cdr ret)))
923                      )
924                 (setq ret (assoc "name" param))
925                 (setq ret (assoc "x-name" param))
926                 )
927             (std11-strip-quoted-string (cdr ret))
928           ))
929       (mime-raw-get-uu-filename param encoding)
930       ""))
931
932
933 ;;; @ MIME viewer mode
934 ;;;
935
936 (defconst mime-view-menu-title "MIME-View")
937 (defconst mime-view-menu-list
938   '((up          "Move to upper entity"    mime-preview-move-to-upper)
939     (previous    "Move to previous entity" mime-preview-move-to-previous)
940     (next        "Move to next entity"     mime-preview-move-to-next)
941     (scroll-down "Scroll-down"             mime-preview-scroll-down-entity)
942     (scroll-up   "Scroll-up"               mime-preview-scroll-up-entity)
943     (play        "Play current entity"     mime-preview-play-current-entity)
944     (extract     "Extract current entity"  mime-preview-extract-current-entity)
945     (print       "Print current entity"    mime-preview-print-current-entity)
946     (x-face      "Show X Face"             mime-preview-display-x-face)
947     )
948   "Menu for MIME Viewer")
949
950 (cond (running-xemacs
951        (defvar mime-view-xemacs-popup-menu
952          (cons mime-view-menu-title
953                (mapcar (function
954                         (lambda (item)
955                           (vector (nth 1 item)(nth 2 item) t)
956                           ))
957                        mime-view-menu-list)))
958        (defun mime-view-xemacs-popup-menu (event)
959          "Popup the menu in the MIME Viewer buffer"
960          (interactive "e")
961          (select-window (event-window event))
962          (set-buffer (event-buffer event))
963          (popup-menu 'mime-view-xemacs-popup-menu))
964        (defvar mouse-button-2 'button2)
965        )
966       (t
967        (defvar mouse-button-2 [mouse-2])
968        ))
969
970 (defun mime-view-define-keymap (&optional default)
971   (let ((mime-view-mode-map (if (keymapp default)
972                                 (copy-keymap default)
973                               (make-sparse-keymap)
974                               )))
975     (define-key mime-view-mode-map
976       "u"        (function mime-preview-move-to-upper))
977     (define-key mime-view-mode-map
978       "p"        (function mime-preview-move-to-previous))
979     (define-key mime-view-mode-map
980       "n"        (function mime-preview-move-to-next))
981     (define-key mime-view-mode-map
982       "\e\t"     (function mime-preview-move-to-previous))
983     (define-key mime-view-mode-map
984       "\t"       (function mime-preview-move-to-next))
985     (define-key mime-view-mode-map
986       " "        (function mime-preview-scroll-up-entity))
987     (define-key mime-view-mode-map
988       "\M- "     (function mime-preview-scroll-down-entity))
989     (define-key mime-view-mode-map
990       "\177"     (function mime-preview-scroll-down-entity))
991     (define-key mime-view-mode-map
992       "\C-m"     (function mime-preview-next-line-entity))
993     (define-key mime-view-mode-map
994       "\C-\M-m"  (function mime-preview-previous-line-entity))
995     (define-key mime-view-mode-map
996       "v"        (function mime-preview-play-current-entity))
997     (define-key mime-view-mode-map
998       "e"        (function mime-preview-extract-current-entity))
999     (define-key mime-view-mode-map
1000       "\C-c\C-p" (function mime-preview-print-current-entity))
1001     (define-key mime-view-mode-map
1002       "a"        (function mime-preview-follow-current-entity))
1003     (define-key mime-view-mode-map
1004       "q"        (function mime-preview-quit))
1005     (define-key mime-view-mode-map
1006       "h"        (function mime-preview-show-summary))
1007     (define-key mime-view-mode-map
1008       "\C-c\C-x" (function mime-preview-kill-buffer))
1009     ;; (define-key mime-view-mode-map
1010     ;;   "<"        (function beginning-of-buffer))
1011     ;; (define-key mime-view-mode-map
1012     ;;   ">"        (function end-of-buffer))
1013     (define-key mime-view-mode-map
1014       "?"        (function describe-mode))
1015     (define-key mime-view-mode-map
1016       [tab] (function mime-preview-move-to-next))
1017     (define-key mime-view-mode-map
1018       [delete] (function mime-preview-scroll-down-entity))
1019     (define-key mime-view-mode-map
1020       [backspace] (function mime-preview-scroll-down-entity))
1021     (if (functionp default)
1022         (cond (running-xemacs
1023                (set-keymap-default-binding mime-view-mode-map default)
1024                )
1025               (t
1026                (setq mime-view-mode-map
1027                      (append mime-view-mode-map (list (cons t default))))
1028                )))
1029     (if mouse-button-2
1030         (define-key mime-view-mode-map
1031           mouse-button-2 (function mime-button-dispatcher))
1032       )
1033     (cond (running-xemacs
1034            (define-key mime-view-mode-map
1035              mouse-button-3 (function mime-view-xemacs-popup-menu))
1036            )
1037           ((>= emacs-major-version 19)
1038            (define-key mime-view-mode-map [menu-bar mime-view]
1039              (cons mime-view-menu-title
1040                    (make-sparse-keymap mime-view-menu-title)))
1041            (mapcar (function
1042                     (lambda (item)
1043                       (define-key mime-view-mode-map
1044                         (vector 'menu-bar 'mime-view (car item))
1045                         (cons (nth 1 item)(nth 2 item))
1046                         )
1047                       ))
1048                    (reverse mime-view-menu-list)
1049                    )
1050            ))
1051     (use-local-map mime-view-mode-map)
1052     (run-hooks 'mime-view-define-keymap-hook)
1053     ))
1054
1055 (defsubst mime-maybe-hide-echo-buffer ()
1056   "Clear mime-echo buffer and delete window for it."
1057   (let ((buf (get-buffer mime-echo-buffer-name)))
1058     (if buf
1059         (save-excursion
1060           (set-buffer buf)
1061           (erase-buffer)
1062           (let ((win (get-buffer-window buf)))
1063             (if win
1064                 (delete-window win)
1065               ))
1066           (bury-buffer buf)
1067           ))))
1068
1069 (defun mime-view-mode (&optional mother ctl encoding ibuf obuf
1070                                  default-keymap-or-function)
1071   "Major mode for viewing MIME message.
1072
1073 Here is a list of the standard keys for mime-view-mode.
1074
1075 key             feature
1076 ---             -------
1077
1078 u               Move to upper content
1079 p or M-TAB      Move to previous content
1080 n or TAB        Move to next content
1081 SPC             Scroll up or move to next content
1082 M-SPC or DEL    Scroll down or move to previous content
1083 RET             Move to next line
1084 M-RET           Move to previous line
1085 v               Decode current content as `play mode'
1086 e               Decode current content as `extract mode'
1087 C-c C-p         Decode current content as `print mode'
1088 a               Followup to current content.
1089 x               Display X-Face
1090 q               Quit
1091 button-2        Move to point under the mouse cursor
1092                 and decode current content as `play mode'
1093 "
1094   (interactive)
1095   (mime-maybe-hide-echo-buffer)
1096   (let ((ret (mime-view-setup-buffers ctl encoding ibuf obuf))
1097         (win-conf (current-window-configuration))
1098         )
1099     (prog1
1100         (switch-to-buffer ret)
1101       (setq mime-preview-original-window-configuration win-conf)
1102       (if mother
1103           (progn
1104             (setq mime-mother-buffer mother)
1105             ))
1106       (mime-view-define-keymap default-keymap-or-function)
1107       (let ((point
1108              (next-single-property-change (point-min) 'mime-view-entity)))
1109         (if point
1110             (goto-char point)
1111           (goto-char (point-min))
1112           (search-forward "\n\n" nil t)
1113           ))
1114       (run-hooks 'mime-view-mode-hook)
1115       )))
1116
1117
1118 ;;; @@ playing
1119 ;;;
1120
1121 (autoload 'mime-preview-play-current-entity "mime-play"
1122   "Play current entity." t)
1123
1124 (defun mime-preview-extract-current-entity ()
1125   "Extract current entity into file (maybe).
1126 It decodes current entity to call internal or external method as
1127 \"extract\" mode.  The method is selected from variable
1128 `mime-acting-condition'."
1129   (interactive)
1130   (mime-preview-play-current-entity "extract")
1131   )
1132
1133 (defun mime-preview-print-current-entity ()
1134   "Print current entity (maybe).
1135 It decodes current entity to call internal or external method as
1136 \"print\" mode.  The method is selected from variable
1137 `mime-acting-condition'."
1138   (interactive)
1139   (mime-preview-play-current-entity "print")
1140   )
1141
1142
1143 ;;; @@ following
1144 ;;;
1145
1146 (defun mime-preview-original-major-mode ()
1147   "Return major-mode of original buffer.
1148 If a current buffer has mime-mother-buffer, return original major-mode
1149 of the mother-buffer."
1150   (if mime-mother-buffer
1151       (save-excursion
1152         (set-buffer mime-mother-buffer)
1153         (mime-preview-original-major-mode)
1154         )
1155     mime-preview-original-major-mode))
1156
1157 (defun mime-preview-follow-current-entity ()
1158   "Write follow message to current entity.
1159 It calls following-method selected from variable
1160 `mime-view-following-method-alist'."
1161   (interactive)
1162   (let (entity)
1163     (while (null (setq entity
1164                        (get-text-property (point) 'mime-view-entity)))
1165       (backward-char)
1166       )
1167     (let* ((p-beg
1168             (previous-single-property-change (point) 'mime-view-entity))
1169            p-end
1170            (entity-node-id (mime-entity-node-id entity))
1171            (len (length entity-node-id))
1172            )
1173       (cond ((null p-beg)
1174              (setq p-beg
1175                    (if (eq (next-single-property-change (point-min)
1176                                                         'mime-view-entity)
1177                            (point))
1178                        (point)
1179                      (point-min)))
1180              )
1181             ((eq (next-single-property-change p-beg 'mime-view-entity)
1182                  (point))
1183              (setq p-beg (point))
1184              ))
1185       (setq p-end (next-single-property-change p-beg 'mime-view-entity))
1186       (cond ((null p-end)
1187              (setq p-end (point-max))
1188              )
1189             ((null entity-node-id)
1190              (setq p-end (point-max))
1191              )
1192             (t
1193              (save-excursion
1194                (goto-char p-end)
1195                (catch 'tag
1196                  (let (e)
1197                    (while (setq e
1198                                 (next-single-property-change
1199                                  (point) 'mime-view-entity))
1200                      (goto-char e)
1201                      (let ((rc (mime-entity-node-id
1202                                 (get-text-property (point)
1203                                                    'mime-view-entity))))
1204                        (or (equal entity-node-id
1205                                   (nthcdr (- (length rc) len) rc))
1206                            (throw 'tag nil)
1207                            ))
1208                      (setq p-end e)
1209                      ))
1210                  (setq p-end (point-max))
1211                  ))
1212              ))
1213       (let* ((mode (mime-preview-original-major-mode))
1214              (new-name
1215               (format "%s-%s" (buffer-name) (reverse entity-node-id)))
1216              new-buf
1217              (the-buf (current-buffer))
1218              (a-buf mime-raw-buffer)
1219              fields)
1220         (save-excursion
1221           (set-buffer (setq new-buf (get-buffer-create new-name)))
1222           (erase-buffer)
1223           (insert-buffer-substring the-buf p-beg p-end)
1224           (goto-char (point-min))
1225           (let ((entity-node-id (mime-entity-node-id entity)) ci str)
1226             (while (progn
1227                      (setq
1228                       str
1229                       (save-excursion
1230                         (set-buffer a-buf)
1231                         (setq
1232                          ci
1233                          (mime-raw-find-entity-from-node-id entity-node-id))
1234                         (save-restriction
1235                           (narrow-to-region
1236                            (mime-entity-point-min ci)
1237                            (mime-entity-point-max ci)
1238                            )
1239                           (std11-header-string-except
1240                            (concat "^"
1241                                    (apply (function regexp-or) fields)
1242                                    ":") ""))))
1243                      (if (and
1244                           (eq (mime-entity-media-type ci) 'message)
1245                           (eq (mime-entity-media-subtype ci) 'rfc822))
1246                          nil
1247                        (if str
1248                            (insert str)
1249                          )
1250                        entity-node-id))
1251               (setq fields (std11-collect-field-names)
1252                     entity-node-id (cdr entity-node-id))
1253               )
1254             )
1255           (let ((rest mime-view-following-required-fields-list))
1256             (while rest
1257               (let ((field-name (car rest)))
1258                 (or (std11-field-body field-name)
1259                     (insert
1260                      (format
1261                       (concat field-name
1262                               ": "
1263                               (save-excursion
1264                                 (set-buffer the-buf)
1265                                 (set-buffer mime-mother-buffer)
1266                                 (set-buffer mime-raw-buffer)
1267                                 (std11-field-body field-name)
1268                                 )
1269                               "\n")))
1270                     ))
1271               (setq rest (cdr rest))
1272               ))
1273           (eword-decode-header)
1274           )
1275         (let ((f (cdr (assq mode mime-view-following-method-alist))))
1276           (if (functionp f)
1277               (funcall f new-buf)
1278             (message
1279              (format
1280               "Sorry, following method for %s is not implemented yet."
1281               mode))
1282             ))
1283         ))))
1284
1285
1286 ;;; @@ X-Face
1287 ;;;
1288
1289 (defun mime-preview-display-x-face ()
1290   (interactive)
1291   (save-window-excursion
1292     (set-buffer mime-raw-buffer)
1293     (mime-view-x-face-function)
1294     ))
1295
1296
1297 ;;; @@ moving
1298 ;;;
1299
1300 (defun mime-preview-move-to-upper ()
1301   "Move to upper entity.
1302 If there is no upper entity, call function `mime-preview-quit'."
1303   (interactive)
1304   (let (cinfo)
1305     (while (null (setq cinfo
1306                        (get-text-property (point) 'mime-view-entity)))
1307       (backward-char)
1308       )
1309     (let ((r (mime-raw-find-entity-from-node-id
1310               (cdr (mime-entity-node-id cinfo))
1311               (get-text-property 1 'mime-view-entity)))
1312           point)
1313       (catch 'tag
1314         (while (setq point (previous-single-property-change
1315                             (point) 'mime-view-entity))
1316           (goto-char point)
1317           (if (eq r (get-text-property (point) 'mime-view-entity))
1318               (throw 'tag t)
1319             )
1320           )
1321         (mime-preview-quit)
1322         ))))
1323
1324 (defun mime-preview-move-to-previous ()
1325   "Move to previous entity.
1326 If there is no previous entity, it calls function registered in
1327 variable `mime-view-over-to-previous-method-alist'."
1328   (interactive)
1329   (while (null (get-text-property (point) 'mime-view-entity))
1330     (backward-char)
1331     )
1332   (let ((point
1333          (previous-single-property-change (point) 'mime-view-entity)))
1334     (if point
1335         (goto-char point)
1336       (let ((f (assq mime-preview-original-major-mode
1337                      mime-view-over-to-previous-method-alist)))
1338         (if f
1339             (funcall (cdr f))
1340           ))
1341       )))
1342
1343 (defun mime-preview-move-to-next ()
1344   "Move to next entity.
1345 If there is no previous entity, it calls function registered in
1346 variable `mime-view-over-to-next-method-alist'."
1347   (interactive)
1348   (let ((point (next-single-property-change (point) 'mime-view-entity)))
1349     (if point
1350         (goto-char point)
1351       (let ((f (assq mime-preview-original-major-mode
1352                      mime-view-over-to-next-method-alist)))
1353         (if f
1354             (funcall (cdr f))
1355           ))
1356       )))
1357
1358 (defun mime-preview-scroll-up-entity (&optional h)
1359   "Scroll up current entity.
1360 If reached to (point-max), it calls function registered in variable
1361 `mime-view-over-to-next-method-alist'."
1362   (interactive)
1363   (or h
1364       (setq h (1- (window-height)))
1365       )
1366   (if (= (point) (point-max))
1367       (let ((f (assq mime-preview-original-major-mode
1368                      mime-view-over-to-next-method-alist)))
1369         (if f
1370             (funcall (cdr f))
1371           ))
1372     (let ((point
1373            (or (next-single-property-change (point) 'mime-view-entity)
1374                (point-max))))
1375       (forward-line h)
1376       (if (> (point) point)
1377           (goto-char point)
1378         )
1379       )))
1380
1381 (defun mime-preview-scroll-down-entity (&optional h)
1382   "Scroll down current entity.
1383 If reached to (point-min), it calls function registered in variable
1384 `mime-view-over-to-previous-method-alist'."
1385   (interactive)
1386   (or h
1387       (setq h (1- (window-height)))
1388       )
1389   (if (= (point) (point-min))
1390       (let ((f (assq mime-preview-original-major-mode
1391                      mime-view-over-to-previous-method-alist)))
1392         (if f
1393             (funcall (cdr f))
1394           ))
1395     (let (point)
1396       (save-excursion
1397         (catch 'tag
1398           (while (> (point) 1)
1399             (if (setq point
1400                       (previous-single-property-change (point)
1401                                                        'mime-view-entity))
1402                 (throw 'tag t)
1403               )
1404             (backward-char)
1405             )
1406           (setq point (point-min))
1407           ))
1408       (forward-line (- h))
1409       (if (< (point) point)
1410           (goto-char point)
1411         ))))
1412
1413 (defun mime-preview-next-line-entity ()
1414   (interactive)
1415   (mime-preview-scroll-up-entity 1)
1416   )
1417
1418 (defun mime-preview-previous-line-entity ()
1419   (interactive)
1420   (mime-preview-scroll-down-entity 1)
1421   )
1422
1423
1424 ;;; @@ quitting
1425 ;;;
1426
1427 (defun mime-preview-quit ()
1428   "Quit from MIME-preview buffer.
1429 It calls function registered in variable
1430 `mime-preview-quitting-method-alist'."
1431   (interactive)
1432   (let ((r (assq mime-preview-original-major-mode
1433                  mime-preview-quitting-method-alist)))
1434     (if r
1435         (funcall (cdr r))
1436       )))
1437
1438 (defun mime-preview-show-summary ()
1439   "Show summary.
1440 It calls function registered in variable
1441 `mime-view-show-summary-method'."
1442   (interactive)
1443   (let ((r (assq mime-preview-original-major-mode
1444                  mime-view-show-summary-method)))
1445     (if r
1446         (funcall (cdr r))
1447       )))
1448
1449 (defun mime-preview-kill-buffer ()
1450   (interactive)
1451   (kill-buffer (current-buffer))
1452   )
1453
1454
1455 ;;; @ end
1456 ;;;
1457
1458 (provide 'mime-view)
1459
1460 (run-hooks 'mime-view-load-hook)
1461
1462 ;;; mime-view.el ends here