From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/44435 Path: main.gmane.org!not-for-mail From: ShengHuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: Patch To Fetch Messages From Google Date: Sat, 27 Apr 2002 13:57:37 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: <2n662dqb1q.fsf@zsh.cs.rochester.edu> References: <7chemjh2qi.fsf@iki.fi> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1019930301 2335 127.0.0.1 (27 Apr 2002 17:58:21 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 27 Apr 2002 17:58:21 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 171WSi-0000bY-00 for ; Sat, 27 Apr 2002 19:58:21 +0200 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 171WSR-0007GW-00; Sat, 27 Apr 2002 12:58:03 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 27 Apr 2002 12:58:17 -0500 (CDT) 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 MAA16262 for ; Sat, 27 Apr 2002 12:58:06 -0500 (CDT) Original-Received: (qmail 23679 invoked by alias); 27 Apr 2002 17:57:48 -0000 Original-Received: (qmail 23674 invoked from network); 27 Apr 2002 17:57:48 -0000 Original-Received: from roc-24-58-72-167.rochester.rr.com (HELO zsh.2y.net) (@24.58.72.167) by gnus.org with SMTP; 27 Apr 2002 17:57:48 -0000 Original-Received: (from zsh@localhost) by zsh.2y.net (8.11.6/8.11.2) id g3RHvbL21411; Sat, 27 Apr 2002 13:57:37 -0400 Original-To: ding@gnus.org X-Attribution: ZSH X-Face: #zw9`a=vHLkn+ZH8C (Kalle Kivimaa's message of "Wed, 10 Apr 2002 20:39:49 +0300") Original-Lines: 23 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.2.50 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:44435 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:44435 Kalle Kivimaa writes: > If a message id is not found on the server, the following patch will > then try to fetch the message from Google (in a separate browser > window). Just something that came up in Sfnet :) > > --- gnus-sum.el Wed Apr 10 20:37:24 2002 > +++ gnus-sum-orig.el Wed Apr 10 20:36:46 2002 > @@ -7653,8 +7653,7 @@ > (when (setq number (gnus-summary-insert-subject message-id)) > (gnus-summary-select-article nil nil nil number) > (throw 'found t))) > - (browse-url (concat "http://groups.google.com/groups?as_umsgid=" > - message-id "&hl=en")))))))) > + (gnus-message 3 "Couldn't fetch article %s" message-id))))))) > > (defun gnus-refer-article-methods () > "Return a list of referrable methods." IMHO, adding (nnweb "" (nnweb-type google)) into gnus-refer-article-method is a better solution. ShengHuo