From owner-freebsd-www@FreeBSD.ORG Tue May 24 18:28:07 2005 Return-Path: X-Original-To: freebsd-www@freebsd.org Delivered-To: freebsd-www@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E2F516A41C for ; Tue, 24 May 2005 18:28:07 +0000 (GMT) (envelope-from alecsk@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2EC743D1F for ; Tue, 24 May 2005 18:28:04 +0000 (GMT) (envelope-from alecsk@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so292319wri for ; Tue, 24 May 2005 11:28:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:subject:message-id:mime-version:content-type:content-disposition:user-agent; b=YSxs1IJ7T6gCo/hxMYBXE376E4HjEDHFpodzbaV86MfMXIDDDWU/iap9dujevjC0/4Qbno+LhrE0tDEvIgJfRXhyI4ma2zsPFVUbVWqdv8I5x8MQDAxJOXAqlMLW1AF9gJEGMcEJoxGaZr3+mrSrmTzE1pzymbW06mxAG2Iv+Ek= Received: by 10.54.57.9 with SMTP id f9mr676228wra; Tue, 24 May 2005 11:28:03 -0700 (PDT) Received: from localhost ([210.77.2.13]) by mx.gmail.com with ESMTP id 6sm295589wrl.2005.05.24.11.28.02; Tue, 24 May 2005 11:28:03 -0700 (PDT) Date: Wed, 25 May 2005 02:30:23 +0800 From: Alecs King To: freebsd-www@freebsd.org Message-ID: <20050524182550.GA1338@alc.bsd.st> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i Subject: [Patch] for man.cgi (problem: www/67554) X-BeenThere: freebsd-www@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD Project Webmasters List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2005 18:28:07 -0000 Quick (dirty?) fix for http://www.freebsd.org/cgi/query-pr.cgi?pr=67554 --- old +++ new @@ -910,7 +910,7 @@ s,((_\010.)+),($str = $1) =~ s/.\010//g; "$str";,ge; s,(.\010)+,$1,g; - if (!s,((.\010.)+\s+(.\010.)+),($str = $1) =~ s/.\010//g; "$str";,ge) { + if (!s,(((.\010.)+\s+)+(.\010.)+),($str = $1) =~ s/.\010//g; "$str";,ge) { s,((.\010.)+),($str = $1) =~ s/.\010//g; "$str";,ge; } P.S, 1) Is the man.cgi checked in the public cvs? I found a very old (4 years?) version of it at www/en/cgi. For latest version, i grabbed it from http://www.freebsd.org/cgi/man.cgi/source , which the patch above is made against. 2) The mail archives at http://lists.freebsd.org/mailman/listinfo/ cannot be searched: htdig Archives Access Failure search failed -12- -- Alecs King