;; Author: OKABE Yasuo @ Kyoto University
;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version:
-;; $Id: mime-partial.el,v 0.8 1997-03-18 13:56:18 morioka Exp $
+;; Version: $Id: mime-partial.el,v 0.9 1997-06-19 03:27:21 morioka Exp $
;; Keywords: message/partial, MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
(if (or (file-exists-p full-file)
(not (y-or-n-p "Merge partials?"))
)
- (mime-article/decode-message/partial beg end cal)
+ (mime-display-message/partial beg end cal)
(let (the-id parameters)
(setq subject-id (std11-field-body "Subject"))
(if (string-match "[0-9\n]+" subject-id)
(setq the-id (cdr (assoc "id" parameters)))
(if (string= the-id id)
(progn
- (mime-article/decode-message/partial
+ (mime-display-message/partial
(point-min)(point-max) parameters)
(if (file-exists-p full-file)
(throw 'tag nil)
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1995/9/26 (separated from tm-view.el)
;; Renamed: 1997/2/21 from tm-play.el
-;; Version: $Id: mime-play.el,v 0.44 1997-06-19 03:17:11 morioka Exp $
+;; Version: $Id: mime-play.el,v 0.45 1997-06-19 03:27:22 morioka Exp $
;; Keywords: MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
)
(setq mime-preview/after-decoded-position (point))
(set-buffer raw-buffer)
- (mime-article/decode-content cinfo mode)
+ (mime-display-content cinfo mode)
(if (eq (current-buffer) raw-buffer)
(progn
(set-buffer the-buf)
))
))))
-(defun mime-article/decode-content (cinfo &optional mode)
+(defun mime-display-content (cinfo &optional mode)
(let ((beg (mime::content-info/point-min cinfo))
(end (mime::content-info/point-max cinfo))
(ctype (or (mime::content-info/type cinfo) "text/plain"))
(write-region start end file)
))
-(defun mime-article/decode-message/partial (beg end cal)
+(defun mime-display-message/partial (beg end cal)
(goto-char beg)
(let* ((root-dir
(expand-file-name
(dired dir)
))
-(defun mime-article/decode-message/external-ftp (beg end cal)
+(defun mime-display-message/external-ftp (beg end cal)
(let* ((site (cdr (assoc "site" cal)))
(directory (cdr (assoc "directory" cal)))
(name (cdr (assoc "name" cal)))
;; Created: 1994/7/13
;; Renamed: 1994/8/31 from tm-body.el
;; Renamed: 1997/02/19 from tm-view.el
-;; Version: $Revision: 0.91 $
+;; Version: $Revision: 0.92 $
;; Keywords: MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
;;;
(defconst mime-view-RCS-ID
- "$Id: mime-view.el,v 0.91 1997-05-28 13:16:15 morioka Exp $")
+ "$Id: mime-view.el,v 0.92 1997-06-19 03:27:23 morioka Exp $")
(defconst mime-view-version (get-version-string mime-view-RCS-ID))
;; 'file '"access-type" '"name" '"site" '"directory"))
((type . "message/external-body")
("access-type" . "anon-ftp")
- (method . mime-article/decode-message/external-ftp)
+ (method . mime-display-message/external-ftp)
)
((type . "message/rfc822")
(method . mime-article/view-message/rfc822)
(mode . "play")
)
((type . "message/partial")
- (method . mime-article/decode-message/partial)
+ (method . mime-display-message/partial)
(mode . "play")
)