+2002-02-01 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * mm-view.el (mm-inline-text-html-render-with-w3m): Bind
+ `w3m-safe-url-regexp' with nil if `mm-inline-text-html-with-images'
+ is non-nil; bind `w3m-force-redisplay' with nil.
+
+ * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
+
+ * mm-decode.el (mm-inline-text-html-with-images): Supplement docs.
+
2002-01-31 ShengHuo ZHU <zsh@cs.rochester.edu>
* nnfolder.el (nnfolder-request-replace-article): Unfold. Don't
(mm-setup-w3m)
(save-restriction
(narrow-to-region (point) (point-max))
- (let ((w3m-safe-url-regexp "\\`cid:")
- (w3m-display-inline-images mm-inline-text-html-with-images))
+ (let ((w3m-safe-url-regexp (if mm-inline-text-html-with-images
+ nil
+ "\\`cid:"))
+ (w3m-display-inline-images mm-inline-text-html-with-images)
+ w3m-force-redisplay)
(w3m-region (point-min) (point-max)))
(when mm-inline-text-html-with-w3m-keymap
(add-text-properties
"If non-nil, Gnus will allow retrieving images in the HTML contents
with <img> tags. It has no effect on Emacs/w3. For emacs-w3m, the
value of the option `w3m-display-inline-images' will be bound with
-this value."
+this value. In addition, the variable `w3m-safe-url-regexp' will be
+bound with the value nil if it is non-nil to make emacs-w3m show all
+images, however this behavior may be changed in the future."
:type 'boolean
:group 'mime-display)
(when charset
(delete-region (point-min) (point-max))
(insert (mm-decode-string text charset)))
- (let ((w3m-safe-url-regexp "\\`cid:")
- (w3m-display-inline-images mm-inline-text-html-with-images))
+ (let ((w3m-safe-url-regexp (if mm-inline-text-html-with-images
+ nil
+ "\\`cid:"))
+ (w3m-display-inline-images mm-inline-text-html-with-images)
+ w3m-force-redisplay)
(w3m-region (point-min) (point-max)))
(when mm-inline-text-html-with-w3m-keymap
(add-text-properties
+2002-02-01 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * emacs-mime.texi (Customization): Addition.
+
2002-01-31 ShengHuo ZHU <zsh@cs.rochester.edu>
* gnus.texi (Posting Styles): Addition. Suggested by
Michael Cook <michael@waxrat.com>.
-
+
2002-01-30 Katsumi Yamaoka <yamaoka@jpl.org>
* emacs-mime.texi (Customization): Move emacs-w3m stuff backward;
You can prevent your personal informations from leaking by setting this
option to @code{nil} (which is the default). It is currently ignored by
Emacs/w3. For emacs-w3m, you may use the command @kbd{t} on the image
-anchor to show an image (or @kbd{T} for loading all images) even if it
-is @code{nil}.
+anchor to show an image even if it is @code{nil}.@footnote{The command
+@kbd{T} will load all images. If you have set the option
+@code{w3m-key-binding} to @code{info}, use @kbd{i} or @kbd{I} instead.}
@item mm-inline-text-html-with-w3m-keymap
You can use emacs-w3m command keys in the inlined text/html part by