From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/41227 Path: main.gmane.org!not-for-mail From: Lars Magne Ingebrigtsen Newsgroups: gmane.emacs.gnus.general Subject: Re: browse-url vs. w3 Date: Mon, 31 Dec 2001 03:55:51 +0100 Organization: Programmerer Ingebrigtsen Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035176655 4993 80.91.224.250 (21 Oct 2002 05:04:15 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 05:04:15 +0000 (UTC) Return-Path: Original-Received: (qmail 24920 invoked from network); 31 Dec 2001 02:57:13 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 31 Dec 2001 02:57:13 -0000 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 16Ksck-00017Q-00; Sun, 30 Dec 2001 20:56:26 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 30 Dec 2001 20:56:17 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id UAA07590 for ; Sun, 30 Dec 2001 20:56:05 -0600 (CST) Original-Received: (qmail 24894 invoked by alias); 31 Dec 2001 02:56:02 -0000 Original-Received: (qmail 24889 invoked from network); 31 Dec 2001 02:56:02 -0000 Original-Received: from quimby.gnus.org (HELO quimby2.netfonds.no) (195.204.10.66) by gnus.org with SMTP; 31 Dec 2001 02:56:02 -0000 Original-Received: from news by quimby2.netfonds.no with local (Exim 3.12 #1 (Debian)) id 16Kscq-0001kS-00 for ; Mon, 31 Dec 2001 03:56:32 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 25 Original-NNTP-Posting-Host: quimbies.gnus.org Original-X-Trace: quimby2.netfonds.no 1009767392 6465 195.204.10.148 (31 Dec 2001 02:56:32 GMT) Original-X-Complaints-To: usenet@quimby2.netfonds.no Original-NNTP-Posting-Date: 31 Dec 2001 02:56:32 GMT Mail-Copies-To: never X-Now-Playing: Stephan Mathieu's _FrequencyLib_: "Mrs. Moon" User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.0.104 (i686-pc-linux-gnu) X-Face: |J writes: > When w3 renders an article, (either because someone sent HTML, or > because the group is an HTML thing like nnslashdot) URL links get > followed by w3 when clicked on. > > Anyone know of a way to get browse-url to handle those widgets > instead? The following code from Bill works for me: (eval-after-load "w3" '(progn (fset 'w3-fetch-orig (symbol-function 'w3-fetch)) (defun w3-fetch (&optional url target) (interactive (list (w3-read-url-with-default))) (if (eq major-mode 'gnus-article-mode) (browse-url-netscape url t) (w3-fetch-orig url target))))) It seems to be a FAQ, so perhaps I should put this in the manual? -- (domestic pets only, the antidote for overdose, milk.) larsi@gnus.org * Lars Magne Ingebrigtsen