+Sun Sep 15 04:17:35 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * tl: Version 7.61.4 was released.
+ * MU: Version 0.33 was released.
+ * tm: Version 7.85 was released.
+
+ * tm-edit.el (mime-editor::edit-again, mime/edit-again): Use
+ function `std11-field-end' instead of `rfc822/field-end'.
+
+Sat Sep 14 08:56:05 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * tm-view.el: Use std11.el instead of tl-822.el.
+
+ * tm-view.el (mime-article/get-subject): Use function
+ `std11-strip-quoted-string' instead of
+ `rfc822/strip-quoted-string'.
+
+ * tm-play.el (mime-article/get-original-filename): Use function
+ `std11-strip-quoted-string' instead of
+ `rfc822/strip-quoted-string'.
+
+ * tm-parse.el (mime/parse-parameter, mime/parse-message): Use
+ function `std11-strip-quoted-string' instead of
+ `rfc822/strip-quoted-string'; Use std11 instead of tl-822.
+
+Fri Sep 13 02:39:01 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * tm-ew-d.el (mime/decode-encoded-text): eliminate CR after
+ unfolded when `unfolding' is not nil.
+
+\f
Sun Sep 8 18:18:02 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* MU: Version 0.31 was released.
# $Id: Makefile,v 7.29 1996/09/07 17:20:36 morioka Exp morioka $
#
-VERSION = 7.84
+VERSION = 7.85
SHELL = /bin/sh
MAKE = make
;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1994/08/21 renamed from mime.el
-;; Version: $Revision: 7.84 $
+;; Version: $Revision: 7.85 $
;; Keywords: mail, news, MIME, multimedia, multilingual
;; This file is part of tm (Tools for MIME).
;;;
(defconst mime-editor/RCS-ID
- "$Id: tm-edit.el,v 7.84 1996/09/08 18:18:02 morioka Exp $")
+ "$Id: tm-edit.el,v 7.85 1996/09/15 04:17:35 morioka Exp $")
(defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
"Content-Transfer-Encoding:" nil t)
(let ((beg (match-beginning 0))
(hbeg (match-end 0))
- (end (rfc822/field-end)))
+ (end (std11-field-end)))
(setq encoding
(eliminate-top-spaces
(rfc822/unfolding-string
(goto-char (point-min))
(while (re-search-forward
"^\\(Content-.*\\|Mime-Version\\):" nil t)
- (delete-region (match-beginning 0) (1+ (rfc822/field-end)))
+ (delete-region (match-beginning 0) (1+ (std11-field-end)))
))
(or no-separator
(and (re-search-forward "^$")
;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1993/6/3 (1995/10/3 obsolete tiny-mime.el)
-;; Version: $Revision: 7.24 $
+;; Version: $Revision: 7.25 $
;; Keywords: mail, news, MIME, RFC 1522, multilingual, encoded-word
;; This file is part of tm (Tools for MIME).
;;;
(defconst tm-ew-d/RCS-ID
- "$Id: tm-ew-d.el,v 7.24 1996/08/28 15:42:49 morioka Exp $")
+ "$Id: tm-ew-d.el,v 7.25 1996/09/13 02:39:01 morioka Exp $")
(defconst mime/eword-decoder-version (get-version-string tm-ew-d/RCS-ID))
(progn
(setq dest (decode-coding-string dest cs))
(if unfolding
- (std11-unfold-string dest)
+ (mapconcat (function
+ (lambda (chr)
+ (if (eq chr ?\n)
+ ""
+ (char-to-string chr)
+ )
+ ))
+ (std11-unfold-string dest)
+ "")
dest)
))))))
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Version:
-;; $Id: tm-parse.el,v 7.11 1996/08/30 06:20:52 morioka Exp $
+;; $Id: tm-parse.el,v 7.12 1996/09/14 08:51:36 morioka Exp $
;; Keywords: mail, news, MIME, multimedia
;; This file is part of tm (Tools for MIME).
;;; Code:
-(require 'tl-822)
+(require 'std11)
(require 'tl-misc)
(require 'tm-def)
(let ((e (match-end 2)))
(cons
(cons (downcase (substring str (match-beginning 1) (match-end 1)))
- (rfc822/strip-quoted-string
+ (std11-strip-quoted-string
(substring str (match-beginning 2) e))
)
(substring str e)
)
(let ((boundary (assoc "boundary" params)))
(cond (boundary
- (setq boundary (rfc822/strip-quoted-string (cdr boundary)))
+ (setq boundary (std11-strip-quoted-string (cdr boundary)))
(mime/parse-multipart boundary ctype params encoding rcnum)
)
((string-equal ctype "message/rfc822")
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1995/9/26 (separated from tm-view.el)
-;; Version: $Id: tm-play.el,v 7.26 1996/08/30 16:42:15 morioka Exp $
+;; Version: $Id: tm-play.el,v 7.27 1996/09/14 08:53:38 morioka Exp $
;; Keywords: mail, news, MIME, multimedia
;; This file is part of tm (Tools for MIME).
(setq ret (assoc "name" param))
(setq ret (assoc "x-name" param))
)
- (rfc822/strip-quoted-string (cdr ret))
+ (std11-strip-quoted-string (cdr ret))
)
(if (setq ret
(std11-find-field-body '("Content-Description"
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1994/7/13 (1994/8/31 obsolete tm-body.el)
-;; Version: $Revision: 7.73 $
+;; Version: $Revision: 7.75 $
;; Keywords: mail, news, MIME, multimedia
;; This file is part of tm (Tools for MIME).
(require 'tl-list)
(require 'tl-atype)
(require 'tl-misc)
-(require 'tl-822)
+(require 'std11)
(require 'mel)
(require 'tm-ew-d)
(require 'tm-def)
;;;
(defconst mime-viewer/RCS-ID
- "$Id: tm-view.el,v 7.73 1996/08/30 16:57:53 morioka Exp $")
+ "$Id: tm-view.el,v 7.75 1996/09/14 08:56:05 morioka Exp $")
(defconst mime-viewer/version (get-version-string mime-viewer/RCS-ID))
(defconst mime/viewer-version mime-viewer/version)
(setq ret (assoc "name" param))
(setq ret (assoc "x-name" param))
)
- (rfc822/strip-quoted-string (cdr ret))
+ (std11-strip-quoted-string (cdr ret))
))
(mime-article/get-uu-filename param encoding)
""))