>>>>> In <851wgwr5qv....@robf.de> newsspam5REMOVET...@robf.de wrote: > Many thanks to all those which have tried the devo snapshots and > helped in squeezing bugs. > The 8.0.x versions are reserved for the remaining bugs while new > features will be in 8.1.0, i.e. better HTML support is on my > radar for now.
Congratulations!
I'm going to recommend using VM 8.x with the emacs-w3m Info manual and to remove vm-w3m.el in the emacs-w3m CVS repository. Here is a patch to vm-8.1.0-devo-455 to make it synch with the latest (the last) vm-w3m.el in emacs-w3m:
--8<---------------cut here---------------start------------->8--- --- vm-w3m.el~ 2007-05-31 22:11:05 +0000 +++ vm-w3m.el 2007-06-01 02:59:02 +0000 @@ -1,6 +1,6 @@ ;;; vm-w3m.el --- additional functions to make VM use emacs-w3m for HTML mails
;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -14,8 +14,8 @@
;; You should have received a copy of the GNU General Public License ;; along with this program; if not, write to the Free Software -;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, -;; USA. +;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +;; 02110-1301, USA.
(defcustom vm-w3m-display-inline-images t @@ -64,6 +65,15 @@ :type '(choice (regexp :tag "Regexp") (const :tag "All URLs are safe" nil)))
+(defcustom vm-w3m-use-w3m-minor-mode-map t + "Say whether to use emacs-w3m command keys in VM presentation buffers. +Set this variable to nil if you don't want vm-w3m to override any VM +commend keys. If it is non-nil, you will not be able to use some VM +command keys, which are bound to emacs-w3m commands defined in the +`w3m-minor-mode-command-alist' variable." + :group 'w3m + :type 'boolean) + (eval-and-compile (or (featurep 'xemacs) (>= emacs-major-version 21) (defvar vm-w3m-mode-map nil @@ -146,7 +156,8 @@ (delete-char -1) (add-text-properties start end - (nconc (vm-w3m-local-map-property) + (nconc (if vm-w3m-use-w3m-minor-mode-map + (vm-w3m-local-map-property)) ;; Put the mark meaning that this part was ;; inlined by emacs-w3m. '(text-rendered-by-emacs-w3m t))) --8<---------------cut here---------------end--------------->8---
Katsumi Yamaoka <yama...@jpl.org> writes: >>>>>> In <851wgwr5qv....@robf.de> newsspam5REMOVET...@robf.de wrote:
>> Many thanks to all those which have tried the devo snapshots and >> helped in squeezing bugs.
>> The 8.0.x versions are reserved for the remaining bugs while new >> features will be in 8.1.0, i.e. better HTML support is on my >> radar for now.
> Congratulations!
Thanks ;-)
> I'm going to recommend using VM 8.x with the emacs-w3m Info > manual and to remove vm-w3m.el in the emacs-w3m CVS repository. > Here is a patch to vm-8.1.0-devo-455 to make it synch with the > latest (the last) vm-w3m.el in emacs-w3m:
We are running RedHat Enterprise Linux 4 with xemacs packages.
I read your INSTALL/README and I configured it with:
./configure --with-xemacs --prefix=/usr/share
I did the 'make' and that seemed fine except for bdb. I noticed your INSTALL did not include a 'make install' -- I went ahead and did it anyway (okay?), it installed files to:
/usr/share/xemacs/site-packages/lisp/vm
I did not change any of my xemacs or vm startup file. I restarted vm and it seemed to work fine. The only 'visible' difference I noticed were some different fonts/colors in the Summary.
I thought it would be easy to get some version confirmation just to make sure I am actually running your stuff... Is there a command I can give?
-- John ___________________________________________________________________ John Murtari Software Workshop Inc. jmurtari@following domain 315.635-1968(x-211) "TheBook.Com" (TM) http://thebook.com/
Oops! After sending the last message I found out where the version was, right on the status bar at the bottom of the window -- pretty sneaky!
-- John ___________________________________________________________________ John Murtari Software Workshop Inc. jmurtari@following domain 315.635-1968(x-211) "TheBook.Com" (TM) http://thebook.com/
> We are running RedHat Enterprise Linux 4 with xemacs packages.
> I read your INSTALL/README and I configured it with:
> ./configure --with-xemacs --prefix=/usr/share
> I did the 'make' and that seemed fine except for bdb. I noticed > your INSTALL did not include a 'make install'
Well I did not test that too much and I never will install into the system directories my self, just into my home dir.
> -- I went ahead > and did it anyway (okay?), it installed files to:
> /usr/share/xemacs/site-packages/lisp/vm
> I did not change any of my xemacs or vm startup file. I restarted > vm and it seemed to work fine. The only 'visible' difference I > noticed were some different fonts/colors in the Summary.
> I thought it would be easy to get some version confirmation just > to make sure I am actually running your stuff... Is there a command > I can give?
In a composition buffer you should see:
X-Mailer: VM 8.0.0-453 under XEmacs 21.4.21 (i686-pc-linux)
or something similar.
You could also M-x find-function vm-session-initialization RET and find (require 'vm-rfaddons) 19 lines below.