From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/34297 Path: main.gmane.org!not-for-mail From: ShengHuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: Slashdot? Date: 16 Jan 2001 21:16:22 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: <2ng0iizzwp.fsf@tiger.jia.vnet> References: <87hf33r208.fsf@nwalsh.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035170250 29705 80.91.224.250 (21 Oct 2002 03:17:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:17:30 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by mailhost.sclp.com (Postfix) with ESMTP id 97461D049D for ; Tue, 16 Jan 2001 21:17:29 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.3/8.9.3) with ESMTP id UAC01981; Tue, 16 Jan 2001 20:17:20 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 16 Jan 2001 20:16:43 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id UAA29566 for ; Tue, 16 Jan 2001 20:16:33 -0600 (CST) Original-Received: from zsh.yi.org (roc-24-93-30-91.rochester.rr.com [24.93.30.91]) by mailhost.sclp.com (Postfix) with ESMTP id 71B4FD049D for ; Tue, 16 Jan 2001 21:17:02 -0500 (EST) Original-Received: (from zsh@localhost) by zsh.yi.org (8.11.0/8.10.0) id f0H2GMl16992; Tue, 16 Jan 2001 21:16:22 -0500 Original-To: ding@gnus.org X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q In-Reply-To: <87hf33r208.fsf@nwalsh.com> User-Agent: Gnus/5.090001 (Oort Gnus v0.01) Emacs/20.7 Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 11 Xref: main.gmane.org gmane.emacs.gnus.general:34297 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:34297 --=-=-= Norman Walsh writes: > Have a made an obvious blunder? I suppose I should upgrade to v5.8.8 and > try again... This is the patch in the current CVS version. Maybe it helps. ShengHuo --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=nnslashdot.el-6.2.diff --- nnslashdot.el Wed Aug 16 13:11:08 2000 +++ ../../gnus/lisp/nnslashdot.el Fri Jan 5 01:06:13 2001 @@ -397,8 +397,8 @@ (nnweb-decode-entities-string (match-string 1))) (re-search-forward "\\([^<]+\\)") (setq sid (match-string 1)) - (string-match "/\\([0-9/]+\\)\\(.shtml\\|$\\)" sid) - (setq sid (concat "00/" (match-string 1 sid))) + (string-match "sid=\\([0-9/]+\\)\\(.shtml\\|$\\)" sid) + (setq sid (match-string 1 sid)) (re-search-forward "\\([^<]+\\)") (setq articles (string-to-number (match-string 1))) (setq gname (concat description " (" sid ")")) --=-=-=--