From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/62978 Path: news.gmane.org!not-for-mail From: Andreas Seltenreich Newsgroups: gmane.emacs.gnus.general Subject: nnweb fix Date: Sat, 22 Apr 2006 12:42:16 +0200 Message-ID: <87ejzpzybb.fsf@gate450.dyndns.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1145702849 30931 80.91.229.2 (22 Apr 2006 10:47:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 22 Apr 2006 10:47:29 +0000 (UTC) Cc: Tassilo Horn Original-X-From: ding-owner+m11505@lists.math.uh.edu Sat Apr 22 12:47:28 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FXFeA-0006qa-9n for ding-account@gmane.org; Sat, 22 Apr 2006 12:47:26 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1FXFdy-0006Xv-00; Sat, 22 Apr 2006 05:47:14 -0500 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1FXFZL-0006Xn-00 for ding@lists.math.uh.edu; Sat, 22 Apr 2006 05:42:28 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1FXFZI-0007aZ-Tn for ding@lists.math.uh.edu; Sat, 22 Apr 2006 05:42:27 -0500 Original-Received: from smtp2.rz.uni-karlsruhe.de ([129.13.185.218]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1FXFZE-0000Kv-00 for ; Sat, 22 Apr 2006 12:42:20 +0200 Original-Received: from rzstud1.stud.uni-karlsruhe.de (rzstud1.stud.uni-karlsruhe.de [193.196.41.33]) by smtp2.rz.uni-karlsruhe.de with esmtp (Exim 4.50 #1) id 1FXFZC-0000fT-Tp; Sat, 22 Apr 2006 12:42:18 +0200 Original-Received: from uwi7 by rzstud1.stud.uni-karlsruhe.de with local (Exim 3.36 #1) id 1FXFZJ-00027H-00; Sat, 22 Apr 2006 12:42:25 +0200 Original-To: ding@gnus.org X-Face: $:F<87a[gD1?#R6S3j21cr1&C&7bd63GHC.tSdskUb}hhwG(ci*=D5kJ<_N+p9q(7-,PnG. Et.Yh --=-=-= Hi, the google part of nnweb recently broke for me again (both, web groups and referring articles). The attached patch seems to fix it. I don't know if is related to the problems recently reported on though. While the symptoms are the same (blank articles), I wasn't able to reproduce it back then, and web groups weren't affected. Thanks, andreas 2006-04-22 Andreas Seltenreich * nnweb.el (nnweb-google-wash-article): Update regexp. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=nnweb.patch Index: nnweb.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/nnweb.el,v retrieving revision 7.19 diff -c -r7.19 nnweb.el *** nnweb.el 4 Apr 2006 21:35:07 -0000 7.19 --- nnweb.el 22 Apr 2006 09:57:25 -0000 *************** *** 307,314 **** (defun nnweb-google-wash-article () ;; We have Google's masked e-mail addresses here. :-/ (let ((case-fold-search t) ! (start-re "
\n *")
! 	(end-re "\n *
")) (goto-char (point-min)) (if (save-excursion (or (re-search-forward "The requested message.*could not be found." --- 307,314 ---- (defun nnweb-google-wash-article () ;; We have Google's masked e-mail addresses here. :-/ (let ((case-fold-search t) ! (start-re "
[\r\n ]*")
! 	(end-re "[\r\n ]*
")) (goto-char (point-min)) (if (save-excursion (or (re-search-forward "The requested message.*could not be found." --=-=-=--