Gnus development mailing list
 help / color / mirror / Atom feed
* emacs-w3m-1.3
@ 2002-07-07 14:06 TSUCHIYA Masatoshi
  2002-07-17  6:05 ` emacs-w3m-1.3.1 TSUCHIYA Masatoshi
  0 siblings, 1 reply; 6+ messages in thread
From: TSUCHIYA Masatoshi @ 2002-07-07 14:06 UTC (permalink / raw)


We are pleased to inform you that the gamma release of emacs-w3m is
available.  Gamma means that it is satisfactorily stable for most
sophisticated users.  You can get it from:

	http://emacs-w3m.namazu.org/w3m_el-1.3.tar.gz

We launched into the development on the asynchronous operations.
It is an ambitious project, you can always use Emacs for reading
or writing mail messages, doing homework, playing games, etc.
even if Emacs is waiting for responses from a web server.

However, it is also the fact that we have some bug reports.  As
far as we know, Emacs 20 or 21 under MacOS X does not work for
the asynchronous operations, so we have set to make emacs-w3m do
not work asynchronously under MacOS X by default.
If you have any trouble with this feature, try the following
setting to switch over to the synchronous operations (though it
is against our will):

	(setq w3m-async-exec nil)

In addition, we also started on the official supporting non-MULE
Emacsen.  If you are patient with some trivial malfunctions, you
can use emacs-w3m under Emacs 19.34 or XEmacs 21.[45] without
MULE.  Note that all non-MULE Emacs users need to install APEL.
See README file for more informations.

By the way, you may use the new command `report-emacs-w3m-bug'
or the key `C-c C-b' to send a bug report.

Enjoy!

-- 
TSUCHIYA Masatoshi



^ permalink raw reply	[flat|nested] 6+ messages in thread

* emacs-w3m-1.3.1
  2002-07-07 14:06 emacs-w3m-1.3 TSUCHIYA Masatoshi
@ 2002-07-17  6:05 ` TSUCHIYA Masatoshi
  2002-07-24  2:00   ` cid images with emacs-w3m ? Jinhyok Heo
  2002-09-05  3:13   ` emacs-w3m-1.3.2 TSUCHIYA Masatoshi
  0 siblings, 2 replies; 6+ messages in thread
From: TSUCHIYA Masatoshi @ 2002-07-17  6:05 UTC (permalink / raw)


Hello all,

We are pleased to inform you that emacs-w3m-1.3.1 is now available.
It can be downloaded from:

   http://emacs-w3m.namazu.org/w3m_el-1.3.1.tar.gz

This is the bug fix release of emacs-w3m-1.3.

--
TSUCHIYA Masatoshi



^ permalink raw reply	[flat|nested] 6+ messages in thread

* cid images with emacs-w3m ?
  2002-07-17  6:05 ` emacs-w3m-1.3.1 TSUCHIYA Masatoshi
@ 2002-07-24  2:00   ` Jinhyok Heo
  2002-07-24  2:46     ` Katsumi Yamaoka
  2002-07-24  2:46     ` Katsumi Yamaoka
  2002-09-05  3:13   ` emacs-w3m-1.3.2 TSUCHIYA Masatoshi
  1 sibling, 2 replies; 6+ messages in thread
From: Jinhyok Heo @ 2002-07-24  2:00 UTC (permalink / raw)


Is it possible to see cid images(images which come within mails, not
URL) with emacs-w3m?

-- 
| Jinhyok Heo (novembre @ ournature.org || http://ournature.org/~novembre/)
|--------------------------------------------------------------------------
| "We are still reaching for the sky. In the developed countries people
|  are coming back down, saying, `It's empty up there.'" --- a Ladakhi monk



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: cid images with emacs-w3m ?
  2002-07-24  2:00   ` cid images with emacs-w3m ? Jinhyok Heo
@ 2002-07-24  2:46     ` Katsumi Yamaoka
  2002-07-24  2:46     ` Katsumi Yamaoka
  1 sibling, 0 replies; 6+ messages in thread
From: Katsumi Yamaoka @ 2002-07-24  2:46 UTC (permalink / raw)
  Cc: emacs-w3m

[-- Attachment #1: Type: text/plain, Size: 546 bytes --]

>>>>> In <microsoft-free.3oznwhq3zb.fsf@ournature.org>
>>>>>	Jinhyok Heo <novembre+dated+1027907928.307f54@ournature.org> wrote:

> Is it possible to see cid images(images which come within mails, not
> URL) with emacs-w3m?

Well, I think there is a nonsense logic in the function
`mm-inline-text-html-render-with-w3m' and the option
`mm-inline-text-html-with-images'.  Could you try to use the
attached patch?  You need to set the option
`mm-inline-text-html-with-images' to non-nil to see cid images:

(setq mm-inline-text-html-with-images t)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 2006 bytes --]

--- lisp/mm-decode.el~	2002-04-30 02:01:14 +0000
+++ lisp/mm-decode.el	2002-07-24 02:40:56 +0000
@@ -127,14 +127,23 @@
 
 (defcustom mm-inline-text-html-with-images nil
   "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.  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."
+with <img> tags.  It has no effect on Emacs/w3.  See also
+the documentation for the option `mm-w3m-safe-url-regexp'.
   :type 'boolean
   :group 'mime-display)
 
+(defcustom mm-w3m-safe-url-regexp "\\`cid:"
+  "Regexp that matches safe url names.  Some HTML mails might have the
+trick of spammers using <img> tags.  It is likely to be intended to
+verify whether you have read the mail.  You can prevent your personal
+informations from leaking by setting this to the regexp which matches
+the safe url names.  The value of the variable `w3m-safe-url-regexp'
+will be bound with this value.  You may set this value to nil if you
+consider all the urls to be safe."
+  :type '(choice (regexp :tag "Regexp")
+		 (const :tag "All URLs are safe" nil)
+  :group 'mime-display))
+
 (defcustom mm-inline-text-html-with-w3m-keymap t
   "If non-nil, use emacs-w3m command keys in the article buffer."
   :type 'boolean
--- lisp/mm-view.el~	2002-04-08 01:21:51 +0000
+++ lisp/mm-view.el	2002-07-24 02:40:48 +0000
@@ -281,9 +281,7 @@
 	(when charset
 	  (delete-region (point-min) (point-max))
 	  (insert (mm-decode-string text charset)))
-	(let ((w3m-safe-url-regexp (if mm-inline-text-html-with-images
-				       nil
-				     "\\`cid:"))
+	(let ((w3m-safe-url-regexp mm-w3m-safe-url-regexp)
 	      (w3m-display-inline-images mm-inline-text-html-with-images)
 	      w3m-force-redisplay)
 	  (w3m-region (point-min) (point-max)))

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: cid images with emacs-w3m ?
  2002-07-24  2:00   ` cid images with emacs-w3m ? Jinhyok Heo
  2002-07-24  2:46     ` Katsumi Yamaoka
@ 2002-07-24  2:46     ` Katsumi Yamaoka
  1 sibling, 0 replies; 6+ messages in thread
From: Katsumi Yamaoka @ 2002-07-24  2:46 UTC (permalink / raw)
  Cc: emacs-w3m

[-- Attachment #1: Type: text/plain, Size: 546 bytes --]

>>>>> In <microsoft-free.3oznwhq3zb.fsf@ournature.org>
>>>>>	Jinhyok Heo <novembre+dated+1027907928.307f54@ournature.org> wrote:

> Is it possible to see cid images(images which come within mails, not
> URL) with emacs-w3m?

Well, I think there is a nonsense logic in the function
`mm-inline-text-html-render-with-w3m' and the option
`mm-inline-text-html-with-images'.  Could you try to use the
attached patch?  You need to set the option
`mm-inline-text-html-with-images' to non-nil to see cid images:

(setq mm-inline-text-html-with-images t)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 2006 bytes --]

--- lisp/mm-decode.el~	2002-04-30 02:01:14 +0000
+++ lisp/mm-decode.el	2002-07-24 02:40:56 +0000
@@ -127,14 +127,23 @@
 
 (defcustom mm-inline-text-html-with-images nil
   "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.  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."
+with <img> tags.  It has no effect on Emacs/w3.  See also
+the documentation for the option `mm-w3m-safe-url-regexp'.
   :type 'boolean
   :group 'mime-display)
 
+(defcustom mm-w3m-safe-url-regexp "\\`cid:"
+  "Regexp that matches safe url names.  Some HTML mails might have the
+trick of spammers using <img> tags.  It is likely to be intended to
+verify whether you have read the mail.  You can prevent your personal
+informations from leaking by setting this to the regexp which matches
+the safe url names.  The value of the variable `w3m-safe-url-regexp'
+will be bound with this value.  You may set this value to nil if you
+consider all the urls to be safe."
+  :type '(choice (regexp :tag "Regexp")
+		 (const :tag "All URLs are safe" nil)
+  :group 'mime-display))
+
 (defcustom mm-inline-text-html-with-w3m-keymap t
   "If non-nil, use emacs-w3m command keys in the article buffer."
   :type 'boolean
--- lisp/mm-view.el~	2002-04-08 01:21:51 +0000
+++ lisp/mm-view.el	2002-07-24 02:40:48 +0000
@@ -281,9 +281,7 @@
 	(when charset
 	  (delete-region (point-min) (point-max))
 	  (insert (mm-decode-string text charset)))
-	(let ((w3m-safe-url-regexp (if mm-inline-text-html-with-images
-				       nil
-				     "\\`cid:"))
+	(let ((w3m-safe-url-regexp mm-w3m-safe-url-regexp)
 	      (w3m-display-inline-images mm-inline-text-html-with-images)
 	      w3m-force-redisplay)
 	  (w3m-region (point-min) (point-max)))

^ permalink raw reply	[flat|nested] 6+ messages in thread

* emacs-w3m-1.3.2
  2002-07-17  6:05 ` emacs-w3m-1.3.1 TSUCHIYA Masatoshi
  2002-07-24  2:00   ` cid images with emacs-w3m ? Jinhyok Heo
@ 2002-09-05  3:13   ` TSUCHIYA Masatoshi
  1 sibling, 0 replies; 6+ messages in thread
From: TSUCHIYA Masatoshi @ 2002-09-05  3:13 UTC (permalink / raw)


Hello all,

We are pleased to inform you that emacs-w3m-1.3.2 is now available.
It can be downloaded from:

    http://emacs-w3m.namazu.org/emacs-w3m-1.3.2.tar.gz

This is the bug fix release of emacs-w3m-1.3.1.

-- 
TSUCHIYA Masatoshi



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-09-05  3:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-07 14:06 emacs-w3m-1.3 TSUCHIYA Masatoshi
2002-07-17  6:05 ` emacs-w3m-1.3.1 TSUCHIYA Masatoshi
2002-07-24  2:00   ` cid images with emacs-w3m ? Jinhyok Heo
2002-07-24  2:46     ` Katsumi Yamaoka
2002-07-24  2:46     ` Katsumi Yamaoka
2002-09-05  3:13   ` emacs-w3m-1.3.2 TSUCHIYA Masatoshi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).