+Thu Oct 31 15:17:33 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * MEL: Version 6.0.1 was released.
+ * tm: Version 7.93 was released.
+ * tm-vm: Version 7.73 was released.
+
+ * tm-edit.el (mime-editor/message-default-max-lines): Renamed from
+ `mime-editor/message-default-max-size'.
+
+ (mime-editor/message-max-lines-alist): Renamed from
+ `mime-editor/message-max-size-alist'.
+
+Mon Oct 28 08:44:12 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * tm-parse.el: Require tl-822.el.
+
+ * tm-def.el: Don't require tl-822.
+
+ * tm-parse.el (mime/content-parameter-value-regexp): New constant;
+ from tm-def.el.
+
+ * tm-def.el: Definition of constant
+ `mime/content-parameter-value-regexp' was moved to tm-parse.el.
+
+\f
Thu Oct 24 08:25:47 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.61.12 was released.
Thu Oct 17 02:00:30 1996 Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
* tm-bbdb.el (tm-bbdb/pop-up-bbdb-buffer): Hunter Kelly
- <retnuh@zule.pixar.com>'s patch was applied.
+ <retnuh@zule.pixar.com>'s patch was applied. (cf. [tm-en:847])
\f
Wed Oct 16 00:35:29 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
# $Id: Makefile,v 7.30 1996/10/16 00:35:29 morioka Exp morioka $
#
-VERSION = 7.92
+VERSION = 7.93
SHELL = /bin/sh
MAKE = make
oomori:
cd doc; $(MAKE) tex
cd ..; gtar cvf tm$(VERSION).tar $(FILES)
- -cd ..; mkdir tm$(VERSION)
- cp ../tm-oomori/README.?? ../tm$(VERSION)
- cd ../tm$(VERSION); gtar xvf ../tm$(VERSION).tar
- cd ..; gtar cvzf tm$(VERSION).tar.gz tm$(VERSION)
- cd ..; $(RM) -r tm$(VERSION); rm tm$(VERSION).tar
+ -cd ..; mkdir tm-$(VERSION)
+ cp ../tm-oomori/README.?? ../tm-$(VERSION)
+ cd ../tm-$(VERSION); gtar xvf ../tm$(VERSION).tar
+ cd ..; gtar cvzf tm$(VERSION).tar.gz tm-$(VERSION)
+ cd ..; $(RM) -r tm-$(VERSION); rm tm$(VERSION).tar
+
+
+release:
+ cd ..; mv tm$(VERSION).tar.gz /pub/GNU/elisp/mime/beta/
+ -cd /pub/GNU/elisp/mime/beta/ ; rm tm-oomori-current.tar.gz
+ cd /pub/GNU/elisp/mime/beta/ ; ln -s tm$(VERSION).tar.gz tm-oomori-current.tar.gz
;; Copyright (C) 1995,1996 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: tm-def.el,v 7.63 1996/09/05 09:08:31 morioka Exp $
+;; Version: $Id: tm-def.el,v 7.65 1996/10/28 08:43:40 morioka Exp $
;; Keywords: mail, news, MIME, multimedia, definition
;; This file is part of tm (Tools for MIME).
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
-;; along with this program; see the file COPYING. If not, write to
-;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; along with GNU Emacs; see the file COPYING. If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Code:
(require 'emu)
-(require 'tl-822)
;;; @ variables
(defconst mime/content-type-subtype-regexp
(concat mime/token-regexp "/" mime/token-regexp))
-(defconst mime/content-parameter-value-regexp
- (concat "\\("
- rfc822/quoted-string-regexp
- "\\|[^; \t\n]*\\)"))
(defconst mime/disposition-type-regexp mime/token-regexp)
;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1994/08/21 renamed from mime.el
-;; Version: $Revision: 7.92 $
+;; Version: $Revision: 7.93 $
;; 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.92 1996/10/24 08:25:47 morioka Exp $")
+ "$Id: tm-edit.el,v 7.93 1996/10/31 15:17:33 morioka Exp $")
(defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
(defvar mime-editor/split-message t
"*Split large message if it is non-nil. [tm-edit.el]")
-(defvar mime-editor/message-default-max-length 1000
- "*Default maximum size of a message. [tm-edit.el]")
+(defvar mime-editor/message-default-max-lines 1000
+ "*Default maximum lines of a message. [tm-edit.el]")
-(defvar mime-editor/message-max-length-alist
- '((news-reply-mode . 500)))
+(defvar mime-editor/message-max-lines-alist
+ '((news-reply-mode . 500))
+ "Alist of major-mode vs maximum lines of a message.
+If it is not specified for a major-mode,
+`mime-editor/message-default-max-lines' is used. [tm-edit.el]")
(defconst mime-editor/split-ignored-field-regexp
"\\(^Content-\\|^Subject:\\|^Mime-Version:\\)")
)
(or mime-editor/message-max-length
(setq mime-editor/message-max-length
- (or (cdr (assq major-mode mime-editor/message-max-length-alist))
- mime-editor/message-default-max-length))
+ (or (cdr (assq major-mode mime-editor/message-max-lines-alist))
+ mime-editor/message-default-max-lines))
)
(let* ((mime-editor/draft-file-name
(or (buffer-file-name)
(interactive)
(run-hooks 'mime-editor/before-send-hook)
(let ((mime-editor/message-max-length
- (or (cdr (assq major-mode mime-editor/message-max-length-alist))
- mime-editor/message-default-max-length))
+ (or (cdr (assq major-mode mime-editor/message-max-lines-alist))
+ mime-editor/message-default-max-lines))
(lines (count-lines (point-min) (point-max)))
)
(if (and (> lines mime-editor/message-max-length)
;; Copyright (C) 1994,1995,1996 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: tm-parse.el,v 7.13 1996/09/20 07:27:41 morioka Exp $
+;; Version: $Id: tm-parse.el,v 7.15 1996/10/28 08:44:12 morioka Exp $
;; Keywords: mail, news, MIME, multimedia
;; This file is part of tm (Tools for MIME).
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
-;; along with this program; see the file COPYING. If not, write to
-;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; along with GNU Emacs; see the file COPYING. If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Code:
-(require 'std11)
+(require 'tl-822)
(require 'tl-misc)
(require 'tm-def)
;;; @ field parser
;;;
+(defconst mime/content-parameter-value-regexp
+ (concat "\\("
+ rfc822/quoted-string-regexp
+ "\\|[^; \t\n]*\\)"))
+
(defconst mime::parameter-regexp
(concat "^[ \t]*\;[ \t]*\\(" mime/token-regexp "\\)"
"[ \t]*=[ \t]*\\(" mime/content-parameter-value-regexp "\\)"))