[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: [Q] shimbun 再び



> At Fri, 22 Mar 2002 13:28:28 +0900,
> 新村  篤史 <GGB03631@nifty.ne.jp> wrote:

>> w3m-0.3 + w3m_el-1.2.6 は、CVS 版を除けば最新リリースのものです

[...]

>> 正常に、shimbun が文書整形されて読めたのは、asahi.*** 系で、
>> nikkei.*** , yahoo.*** は各々、文書整形は全く出来ていません。

えーと、もしや新村さんは mime-w3m.el の冒頭に書かれている設定を
行なっていらっしゃらないのではないかと思うのですが、いかがでしょ
う?

(1) Install SEMI.
(2) Put this file to appropriate directory.
(3) Write these following code to your ~/.emacs or ~/.gnus.

(setq mime-setup-enable-inline-html nil)
(eval-after-load "mime-view"
  '(progn
     (autoload 'mime-w3m-preview-text/html "mime-w3m")
     (ctree-set-calist-strictly
      'mime-preview-condition
      '((type . text)
	(subtype . html)
	(body . visible)
	(body-presentation-method . mime-w3m-preview-text/html)))
     (set-alist 'mime-view-type-subtype-score-alist
		'(text . html) 3)))

;; w3m_el-1.2.6 を改めて眺めたら、ここにしか書いてないぞ。^^;;
CVS の幹にある開発版を使う場合は

(require 'mime-w3m)

とだけ書けば良いことになっていますが、いずれにしても不親切なので、
次回の release からは幹の mime-w3m.el を採用、かつ README に説明
を追加することを提案します。→ emacs-w3m のみなさま。

なお、以下は現在の release 版 (w3m_el-1.2.6) と開発版の両方で使
える設定です。

(if (condition-case nil
	(require 'mime-w3m)
      (error nil))
    (or (fboundp 'mime-w3m-insinuate)
	(setq mime-setup-enable-inline-html nil)
	(eval-after-load "mime-view"
	  '(progn
	     (autoload 'mime-w3m-preview-text/html "mime-w3m")
	     (ctree-set-calist-strictly
	      'mime-preview-condition
	      '((type . text)
		(subtype . html)
		(body . visible)
		(body-presentation-method . mime-w3m-preview-text/html)))
	     (set-alist 'mime-view-type-subtype-score-alist
			'(text . html) 3)))))
-- 
Katsumi Yamaoka <yamaoka@namazu.org>