From owner-freebsd-cvsweb Mon Jul 8 8:27: 5 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A045837B4A2; Mon, 8 Jul 2002 08:26:49 -0700 (PDT) Received: from ns1.comverse.com (ns1.comverse.com [63.64.185.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 285CE43E5E; Mon, 8 Jul 2002 08:26:48 -0700 (PDT) (envelope-from Vassilii.Khachaturov@comverse.com) Received: from mail-bridge.comverse.com (mail-bridge.comverse.com [10.200.7.190]) by ns1.comverse.com (8.11.6/8.11.6) with ESMTP id g68FAun24838; Mon, 8 Jul 2002 11:10:59 -0400 Received: by mail-bridge.comverse.com with Internet Mail Service (5.5.2653.19) id ; Mon, 8 Jul 2002 11:27:11 -0400 Received: from mail-in.comverse.com (mail-in [10.230.12.30]) by mail-bridge.comverse.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id NX84T1QD; Mon, 8 Jul 2002 11:27:08 -0400 Received: by mail-in.comverse.com with Internet Mail Service (5.5.2653.19) id ; Mon, 8 Jul 2002 11:26:09 -0400 From: Khachaturov Vassilii To: "'Ville Skytta'" Cc: "'cvsweb development'" Message-ID: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> Subject: RE: FW: [PATCH] fileSortCmp() should properly weed out rogue non- dir files Date: Mon, 8 Jul 2002 11:26:08 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Both are fine with me, but it seems inlining works better with the > archives as you already noticed. :-( Unfortunately, the inlining doesn't work quite well - I just checked the archives, and saw broken lines and things like =20 in the archived message text... I will use both at the same time next time - one for easy application of the patch by whoever needs it and the other for those who want to read it off the archive. > Could you shed a bit more light on this, I can't verify the problem > here. I'm unable to get non-,v files in the repo dirs to show up in > CVSweb's directory listings or the sort orders to break... The rogue files never show in the directory listings by CVSweb, but they do get fed to the comparison routine. In our CVS repository directories, the rogue files (report files by a proprietary legacy release report system co-existing with it) are named starting with an underline (which puts them betw. capital and lowercase-starting filenames). If both (cap. and low-case-starting files) are present in the repository, and if the sort order is not name-base (but, e.g., date-based), then we consistently have the sort order randomly broken (because the sorting routine discovers no rlog-generated info on the rogue files cached and resorts to name-based comparison when asked to compare between a rogue and real file.) Imagine, e.g., two files: Foo (modified in 2000) and bar (modified in 1999) Name-based comparison orders them as (Foo, bar). Date-based comparison - as (bar, Foo). Suppose that also a file Now imagine that the sort routine gets invoked on (Foo, _rogue) and (bar, _rogue). The partial order that it will infer will be (Foo, _rogue, bar), regardless of the actual sort order selected. So, if the sort order was date-based, this will break the consistency of the partial order built by the perl sort algorithm, and the results will be ordered badly. The patch will force the rogue files always to be "greater" than real ones, so that comparisons with them won't be possible to be used by the perl sort outer algorithm to infer the partial order between the real ones. Please apply, Vassilii To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Mon Jul 8 14:44:15 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7094C37B400; Mon, 8 Jul 2002 14:44:12 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id C630043E54; Mon, 8 Jul 2002 14:44:10 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g68Li8523822; Tue, 9 Jul 2002 00:44:08 +0300 (EETDST) Subject: RE: FW: [PATCH] fileSortCmp() should properly weed out rogue non- dir files From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: knu@FreeBSD.org, Vassilii.Khachaturov@comverse.com Cc: freebsd-cvsweb@FreeBSD.org In-Reply-To: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> References: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 09 Jul 2002 00:44:18 +0300 Message-Id: <1026164659.32411.680.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 2002-07-08 at 18:26, Khachaturov Vassilii wrote: > > Could you shed a bit more light on this, I can't verify the problem > > here. I'm unable to get non-,v files in the repo dirs to show up in > > CVSweb's directory listings or the sort orders to break... >=20 > The rogue files never show in the directory listings by CVSweb, > but they do get fed to the comparison routine. [long and good patch description snipped] Allright, you're correct. Turns out to be that the initial data I tested this with wasn't good enough and didn't trigger the bug, sorry about that. But now I've verified both the bug and the fix. Still need knu's approval before committing... I did small tweaks to the original patch (comments only) and removed the TODO part that was already committed in CVS. Thanks, Vassilii, good catch! Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/projects/cvsweb/ChangeLog,v retrieving revision 1.49 diff -a -u -r1.49 ChangeLog --- ChangeLog 6 Jul 2002 18:15:19 -0000 1.49 +++ ChangeLog 8 Jul 2002 21:34:07 -0000 @@ -1,5 +1,12 @@ $FreeBSD: projects/cvsweb/ChangeLog,v 1.49 2002/07/06 18:15:19 scop Exp $ =09 +2002-07-09 Ville Skytt=E4 + + * cvsweb.cgi (fileSortCmp): Fix dir sort order breakage when + there are rogue files in the repository dir and the sort order + is not by file name. + [Submitted by: "Khachaturov, Vassilii" ] + 2002-07-06 Ville Skytt=E4 =20 * cvsweb.conf (long_intro): Remove authors' email addresses. Index: cvsweb.cgi =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/projects/cvsweb/cvsweb.cgi,v retrieving revision 1.112 diff -a -u -r1.112 cvsweb.cgi --- cvsweb.cgi 6 Jul 2002 18:15:19 -0000 1.112 +++ cvsweb.cgi 8 Jul 2002 21:34:09 -0000 @@ -3,14 +3,15 @@ # cvsweb - a CGI interface to CVS trees. # # Written in their spare time by -# Bill Fenner (original work) -# extended by Henner Zeller , -# Henrik Nordstrom -# Ken Coar -# Dick Balaska -# Akinori MUSHA -# Jens-Uwe Mager -# Ville Skytt=E4 +# Bill Fenner (original work) +# extended by Henner Zeller , +# Henrik Nordstrom +# Ken Coar +# Dick Balaska +# Akinori MUSHA +# Jens-Uwe Mager +# Ville Skytt=E4 +# Vassilii Khachaturov # # Based on: # * Bill Fenners cvsweb.cgi revision 1.28 available from: @@ -3376,10 +3377,14 @@ =20 if ($comp =3D=3D 0) { =20 - # Directories first, then sorted on name if no other sort critera - # available. - my $ad =3D ((-d "$fullname/$a") ? "D" : "F"); - my $bd =3D ((-d "$fullname/$b") ? "D" : "F"); + # Directories first, then files under version control, + # then other, "rogue" files. + # Sort by filename if no other criteria available. + + my $ad =3D ((-d "$fullname/$a") ? 'D' + : (defined($fileinfo{$af}) ? 'F' : 'R')); + my $bd =3D ((-d "$fullname/$b") ? 'D' + : (defined($fileinfo{$bf}) ? 'F' : 'R')); ($c =3D $a) =3D~ s|.*/||; ($d =3D $b) =3D~ s|.*/||; $comp =3D ("$ad$c" cmp "$bd$d"); --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Mon Jul 8 15: 1: 2 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF8F737B401; Mon, 8 Jul 2002 15:00:59 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 708B743E52; Mon, 8 Jul 2002 15:00:58 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g68M0v525799; Tue, 9 Jul 2002 01:00:57 +0300 (EETDST) Subject: RE: FW: [PATCH] fileSortCmp() should properly weed out rogue non- dir files From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: knu@FreeBSD.org, Khachaturov Vassilii Cc: freebsd-cvsweb@FreeBSD.org In-Reply-To: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> References: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 09 Jul 2002 01:01:07 +0300 Message-Id: <1026165668.32411.698.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 2002-07-08 at 18:26, Khachaturov Vassilii wrote:=20 > > Both are fine with me, but it seems inlining works better with the > > archives as you already noticed. >=20 > :-( Unfortunately, the inlining doesn't work quite well - I just checked = the > archives, > and saw broken lines and things like =3D20 in the archived message text..= . I > will > use both at the same time next time - one for easy application of the pat= ch > by > whoever needs it and the other for those who want to read it off the > archive. Yeah, looks like the archiver can't handle Quoted-Printable properly.=20 The software seems to be "mailindex 1.0", wonder if anyone would like to fix it... I might give it a shot, but would like to know if we're really using the version from 1999, see the link at the bottom of ? Anyway, I'd suggest that patches would be sent either inlined in the message, or as attachments, uncompressed and in quoted-printable, not base64. This should be enough for everyone's needs. People can always access the raw mboxes from the archives. Comments? A more serious problem seems to be that for freebsd-cvsweb@, *only* the "current" archive is available ATM. There's nothing at . Hopefully that's temporary. knu, do you think I should report this somewhere, and where?=20 postmaster@? --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Mon Jul 8 15:49:27 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CC4E37B400; Mon, 8 Jul 2002 15:49:26 -0700 (PDT) Received: from ns1.comverse.com (ns1.comverse.com [63.64.185.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D22243E09; Mon, 8 Jul 2002 15:49:25 -0700 (PDT) (envelope-from Vassilii.Khachaturov@comverse.com) Received: from mail-bridge.comverse.com (mail-bridge.comverse.com [10.200.7.190]) by ns1.comverse.com (8.11.6/8.11.6) with ESMTP id g68MXXn09444; Mon, 8 Jul 2002 18:33:36 -0400 Received: by mail-bridge.comverse.com with Internet Mail Service (5.5.2653.19) id ; Mon, 8 Jul 2002 18:49:54 -0400 Received: from mail-in.comverse.com (mail-in [10.230.12.30]) by mail-bridge.comverse.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id NX84TLH5; Mon, 8 Jul 2002 18:49:52 -0400 Received: by mail-in.comverse.com with Internet Mail Service (5.5.2653.19) id ; Mon, 8 Jul 2002 18:48:53 -0400 From: Khachaturov Vassilii To: "'Ville Skytta'" Cc: freebsd-cvsweb@FreeBSD.ORG Message-ID: <6B1DF6EEBA51D31182F200902740436803B24BBC@mail-in.comverse.com> Subject: http://freshmeat.net/projects/FreeBSD-CVSweb Date: Mon, 8 Jul 2002 18:48:53 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just noticed the new entry you created on Freshmeat - why didn't you instead register a new branch through the old project, http://freshmeat.net/projects/cvsweb/ ? This way you would have the old project's subscribers base (20 is probably not too much, but it's still smth...) v. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Mon Jul 8 19: 3:43 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9218037B400; Mon, 8 Jul 2002 19:03:42 -0700 (PDT) Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4ED443E42; Mon, 8 Jul 2002 19:03:41 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 233344D801; Tue, 9 Jul 2002 11:03:37 +0900 (JST) Date: Tue, 09 Jul 2002 11:03:37 +0900 Message-ID: <86it3ppshy.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Ville =?ISO-8859-1?Q?Skytt=E4?= Cc: freebsd-cvsweb@FreeBSD.org Subject: Re: FW: [PATCH] fileSortCmp() should properly weed out rogue non- dir files In-Reply-To: <1026164659.32411.680.camel@bobcat.ods.org> References: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> <1026164659.32411.680.camel@bobcat.ods.org> User-Agent: Wanderlust/2.9.13 (Unchained Melody) SEMI/1.14.4 (Hosorogi) LIMIT/1.14.7 (Fujiidera) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 09 Jul 2002 00:44:18 +0300, Ville Skytt=E4 wrote: > Allright, you're correct. Turns out to be that the initial data I > tested this with wasn't good enough and didn't trigger the bug, sorry > about that. But now I've verified both the bug and the fix. Still need > knu's approval before committing... Approved. --=20 / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "When I leave I don't know what I'm hoping to find When I leave I don't know what I'm leaving behind.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Mon Jul 8 19: 6:51 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0346D37B400; Mon, 8 Jul 2002 19:06:50 -0700 (PDT) Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70FD543E09; Mon, 8 Jul 2002 19:06:49 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 6C3654D801; Tue, 9 Jul 2002 11:06:45 +0900 (JST) Date: Tue, 09 Jul 2002 11:06:45 +0900 Message-ID: <86hej9pscq.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Ville =?ISO-8859-1?Q?Skytt=E4?= Cc: freebsd-cvsweb@FreeBSD.org Subject: Re: FW: [PATCH] fileSortCmp() should properly weed out rogue non- dir files In-Reply-To: <1026165668.32411.698.camel@bobcat.ods.org> References: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> <1026165668.32411.698.camel@bobcat.ods.org> User-Agent: Wanderlust/2.9.13 (Unchained Melody) SEMI/1.14.4 (Hosorogi) LIMIT/1.14.7 (Fujiidera) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 09 Jul 2002 01:01:07 +0300, Ville Skytt=E4 wrote: > Yeah, looks like the archiver can't handle Quoted-Printable properly.=20 > The software seems to be "mailindex 1.0", wonder if anyone would like to > fix it... I might give it a shot, but would like to know if we're really > using the version from 1999, see the link at the bottom of > ? >=20 > Anyway, I'd suggest that patches would be sent either inlined in the > message, or as attachments, uncompressed and in quoted-printable, not > base64. This should be enough for everyone's needs. People can always > access the raw mboxes from the archives. Comments? >=20 > A more serious problem seems to be that for freebsd-cvsweb@, *only* the > "current" archive is available ATM. There's nothing at > . Hopefully > that's temporary. >=20 > knu, do you think I should report this somewhere, and where?=20 > postmaster@? Yes, poke postmaster@. --=20 / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "When I leave I don't know what I'm hoping to find When I leave I don't know what I'm leaving behind.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Mon Jul 8 23: 0:32 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D94737B400 for ; Mon, 8 Jul 2002 23:00:31 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id BECA943E4A for ; Mon, 8 Jul 2002 23:00:29 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g6960S511124 for ; Tue, 9 Jul 2002 09:00:28 +0300 (EETDST) Subject: ML archives From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: freebsd-cvsweb@FreeBSD.org In-Reply-To: <86hej9pscq.wl@archon.local.idaemons.org> References: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> <1026165668.32411.698.camel@bobcat.ods.org> <86hej9pscq.wl@archon.local.idaemons.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 09 Jul 2002 09:00:30 +0300 Message-Id: <1026194431.32411.738.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > A more serious problem seems to be that for freebsd-cvsweb@, *only* the > > "current" archive is available ATM. There's nothing at > > . Hopefully > > that's temporary. > >=20 > > knu, do you think I should report this somewhere, and where?=20 > > postmaster@? >=20 > Yes, poke postmaster@. Done, hopefully it will be fixed soon. --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Mon Jul 8 23: 3:51 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12C8B37B400 for ; Mon, 8 Jul 2002 23:03:50 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9EB343E52 for ; Mon, 8 Jul 2002 23:03:48 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g6963l511654 for ; Tue, 9 Jul 2002 09:03:47 +0300 (EETDST) Subject: Re: FW: [PATCH] fileSortCmp() should properly weed out rogue non- dir files From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: freebsd-cvsweb@FreeBSD.org In-Reply-To: <86it3ppshy.wl@archon.local.idaemons.org> References: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> <1026164659.32411.680.camel@bobcat.ods.org> <86it3ppshy.wl@archon.local.idaemons.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 09 Jul 2002 09:03:50 +0300 Message-Id: <1026194630.32411.740.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 2002-07-09 at 05:03, Akinori MUSHA wrote: > > Allright, you're correct. Turns out to be that the initial data I > > tested this with wasn't good enough and didn't trigger the bug, sorry > > about that. But now I've verified both the bug and the fix. Still nee= d > > knu's approval before committing... >=20 > Approved. Just committed this one. Thanks again, Vassilii! --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Mon Jul 8 23:31: 3 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C861637B400 for ; Mon, 8 Jul 2002 23:31:01 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2B4343E4A for ; Mon, 8 Jul 2002 23:31:00 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g696Uo516011; Tue, 9 Jul 2002 09:30:51 +0300 (EETDST) Subject: Re: http://freshmeat.net/projects/FreeBSD-CVSweb From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: Khachaturov Vassilii Cc: freebsd-cvsweb@FreeBSD.org In-Reply-To: <6B1DF6EEBA51D31182F200902740436803B24BBC@mail-in.comverse.com> References: <6B1DF6EEBA51D31182F200902740436803B24BBC@mail-in.comverse.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 09 Jul 2002 09:30:53 +0300 Message-Id: <1026196254.32411.749.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 2002-07-09 at 01:48, Khachaturov Vassilii wrote: > Just noticed the new entry you created on Freshmeat - > why didn't you instead register a new branch through the old project, > http://freshmeat.net/projects/cvsweb/ ? >=20 > This way you would have the old project's subscribers base=20 > (20 is probably not too much, but it's still smth...) Good idea, and a matter of taste. I'm not sure if FM has branch-specific descriptions, though (which would be nice). I've sent some questions about this to the FM content people. BTW, someone has already posted a comment about the original cvsweb project, telling people to look at the FreeBSD version instead :) --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Tue Jul 9 1:43:42 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C03837B400; Tue, 9 Jul 2002 01:43:41 -0700 (PDT) Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C9D343E3B; Tue, 9 Jul 2002 01:43:40 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id D111C4D81A; Tue, 9 Jul 2002 17:43:37 +0900 (JST) Date: Tue, 09 Jul 2002 17:43:39 +0900 Message-ID: <86vg7pb8as.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Ville =?ISO-8859-1?Q?Skytt=E4?= Cc: freebsd-cvsweb@FreeBSD.org Subject: Re: FW: [PATCH] fileSortCmp() should properly weed out rogue non- dir files In-Reply-To: <1026194630.32411.740.camel@bobcat.ods.org> References: <6B1DF6EEBA51D31182F200902740436803B24BBA@mail-in.comverse.com> <1026164659.32411.680.camel@bobcat.ods.org> <86it3ppshy.wl@archon.local.idaemons.org> <1026194630.32411.740.camel@bobcat.ods.org> User-Agent: Wanderlust/2.9.13 (Unchained Melody) SEMI/1.14.4 (Hosorogi) LIMIT/1.14.7 (Fujiidera) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 09 Jul 2002 09:03:50 +0300, Ville Skytt=E4 wrote: > On Tue, 2002-07-09 at 05:03, Akinori MUSHA wrote: >=20 > > > Allright, you're correct. Turns out to be that the initial data I > > > tested this with wasn't good enough and didn't trigger the bug, sorry > > > about that. But now I've verified both the bug and the fix. Still n= eed > > > knu's approval before committing... > >=20 > > Approved. >=20 > Just committed this one. Thanks again, Vassilii! I'm coming to think that this was the sorting problem which I was seeing and which I mentioned in TODO.FreeBSD. --=20 / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "When I leave I don't know what I'm hoping to find When I leave I don't know what I'm leaving behind.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Tue Jul 9 6:44:40 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D90F37B405 for ; Tue, 9 Jul 2002 06:44:39 -0700 (PDT) Received: from ns2.comverse.com (ns2.comverse.com [63.64.185.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 153D743E42 for ; Tue, 9 Jul 2002 06:44:38 -0700 (PDT) (envelope-from Vassilii.Khachaturov@comverse.com) Received: from mail-bridge.comverse.com (mail-bridge.comverse.com [10.200.7.190]) by ns2.comverse.com (8.11.6/8.11.6) with ESMTP id g69BQiA12667; Tue, 9 Jul 2002 07:26:46 -0400 Received: by mail-bridge.comverse.com with Internet Mail Service (5.5.2653.19) id ; Tue, 9 Jul 2002 09:44:50 -0400 Received: from mail-in.comverse.com (mail-in [10.230.12.30]) by mail-bridge.comverse.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id NX84TVV4; Tue, 9 Jul 2002 09:44:45 -0400 Received: by mail-in.comverse.com with Internet Mail Service (5.5.2653.19) id ; Tue, 9 Jul 2002 09:43:46 -0400 From: Khachaturov Vassilii To: "'Akinori MUSHA'" Cc: freebsd-cvsweb@FreeBSD.ORG Message-ID: <6B1DF6EEBA51D31182F200902740436803B24BBD@mail-in.comverse.com> Subject: RE: FW: [PATCH] fileSortCmp() should properly weed out rogue non- dir files Date: Tue, 9 Jul 2002 09:43:41 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I'm coming to think that this was the sorting problem which I was > seeing and which I mentioned in TODO.FreeBSD. Actually, it was that line that inspired me for this bug fix :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Tue Jul 9 11:51:37 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DD5837B401; Tue, 9 Jul 2002 11:51:35 -0700 (PDT) Received: from ns2.comverse.com (ns2.comverse.com [63.64.185.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1319843E4A; Tue, 9 Jul 2002 11:51:34 -0700 (PDT) (envelope-from Vassilii.Khachaturov@comverse.com) Received: from mail-bridge.comverse.com (mail-bridge.comverse.com [10.200.7.190]) by ns2.comverse.com (8.11.6/8.11.6) with ESMTP id g69GXrA27050; Tue, 9 Jul 2002 12:33:57 -0400 Received: by mail-bridge.comverse.com with Internet Mail Service (5.5.2653.19) id ; Tue, 9 Jul 2002 14:52:02 -0400 Received: from mail-in.comverse.com (mail-in [10.230.12.30]) by mail-bridge.comverse.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id NX84T660; Tue, 9 Jul 2002 14:51:58 -0400 Received: by mail-in.comverse.com with Internet Mail Service (5.5.2653.19) id ; Tue, 9 Jul 2002 14:50:57 -0400 From: Khachaturov Vassilii To: "'Ville Skytta'" Cc: freebsd-cvsweb@FreeBSD.org Message-ID: <6B1DF6EEBA51D31182F200902740436803B24BBE@mail-in.comverse.com> Subject: RE: http://freshmeat.net/projects/FreeBSD-CVSweb Date: Tue, 9 Jul 2002 14:50:53 -0400 Importance: low X-Priority: 5 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Good idea, and a matter of taste. I'm not sure if FM has > branch-specific descriptions, though (which would be nice). I think it does, however the branch description field length on the form seems to be much shorter than a project description. See http://freshmeat.net/add-branch/1646/ I wonder if there is any way to either roll FreeBSD-CVSweb into a cvsweb branch. If there is not, probably you should register a new cvsweb branch (via the above URL) and provide FreeBSD-CVSweb's default branch URLs there (maybe put the fm redirector URLs there, so that later on you will only have to update them in one place - in the FreeBSD-CVSweb project only). > I've sent some questions about this to the FM content people. Let's hope they actually respond. Keep us posted... > BTW, someone has already posted a comment about the original cvsweb > project, telling people to look at the FreeBSD version instead :) :-))) Yeah, and I voted on both, too. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Tue Jul 9 12:27:21 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8072537B400 for ; Tue, 9 Jul 2002 12:27:20 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B22343E52 for ; Tue, 9 Jul 2002 12:27:19 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g69JRC509930 for ; Tue, 9 Jul 2002 22:27:12 +0300 (EETDST) Subject: RE: http://freshmeat.net/projects/FreeBSD-CVSweb From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: freebsd-cvsweb@FreeBSD.org In-Reply-To: <6B1DF6EEBA51D31182F200902740436803B24BBE@mail-in.comverse.com> References: <6B1DF6EEBA51D31182F200902740436803B24BBE@mail-in.comverse.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 09 Jul 2002 22:27:21 +0300 Message-Id: <1026242842.11174.36.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 2002-07-09 at 21:50, Khachaturov Vassilii wrote: > > I've sent some questions about this to the FM content people. >=20 > Let's hope they actually respond. Keep us posted... They already did, and suggested that I'd register the branch and put in a notice for the editors that the FreeBSD-CVSweb project can be deleted. Did that, but haven't seen any changes yet. Maybe they're checking with the FM cvsweb project admin (whoever that might be).=20 Let's wait a bit; I'll ping them again later if necessary. > > BTW, someone has already posted a comment about the original cvsweb > > project, telling people to look at the FreeBSD version instead :) >=20 > :-))) Yeah, and I voted on both, too. LoL! Actually, I noticed who it was /after/ sending my previous message :) --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Wed Jul 10 6:48:15 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C16F437B400; Wed, 10 Jul 2002 06:48:14 -0700 (PDT) Received: from ns1.comverse.com (ns1.comverse.com [63.64.185.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2697143E31; Wed, 10 Jul 2002 06:48:05 -0700 (PDT) (envelope-from Vassilii.Khachaturov@comverse.com) Received: from mail-bridge.comverse.com (mail-bridge.comverse.com [10.200.7.190]) by ns1.comverse.com (8.11.6/8.11.6) with ESMTP id g6ADVdn21930; Wed, 10 Jul 2002 09:31:43 -0400 Received: by mail-bridge.comverse.com with Internet Mail Service (5.5.2653.19) id <3T284SW0>; Wed, 10 Jul 2002 09:48:28 -0400 Received: from mail-in.comverse.com (mail-in [10.230.12.30]) by mail-bridge.comverse.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id 3T284SW8; Wed, 10 Jul 2002 09:48:22 -0400 Received: by mail-in.comverse.com with Internet Mail Service (5.5.2653.19) id ; Wed, 10 Jul 2002 09:47:21 -0400 From: Khachaturov Vassilii To: "'Ville Skytta'" Cc: freebsd-cvsweb@FreeBSD.ORG Message-ID: <6B1DF6EEBA51D31182F200902740436803B24BC1@mail-in.comverse.com> Subject: RE: http://freshmeat.net/projects/FreeBSD-CVSweb Date: Wed, 10 Jul 2002 09:47:11 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > They already did, and suggested that I'd register the branch > and put in > a notice for the editors that the FreeBSD-CVSweb project can be > deleted. Did that, but haven't seen any changes yet. Maybe they're > checking with the FM cvsweb project admin (whoever that might be). > Let's wait a bit; I'll ping them again later if necessary. Wahoo! Looks like they did it just as you asked them to overnight. The http://freshmeat.net/projects/FreeBSD-CVSweb is no longer valid, instead there's an official cvsweb branch URL for FreeBSD-CVSweb: http://freshmeat.net/branches/31167/ V. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Wed Jul 10 8:41:39 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60F0137B400 for ; Wed, 10 Jul 2002 08:41:38 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B74443E31 for ; Wed, 10 Jul 2002 08:41:37 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g6AFfZH12714 for ; Wed, 10 Jul 2002 18:41:35 +0300 (EETDST) Subject: RE: http://freshmeat.net/projects/FreeBSD-CVSweb From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: freebsd-cvsweb@FreeBSD.org In-Reply-To: <6B1DF6EEBA51D31182F200902740436803B24BC1@mail-in.comverse.com> References: <6B1DF6EEBA51D31182F200902740436803B24BC1@mail-in.comverse.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 10 Jul 2002 18:41:42 +0300 Message-Id: <1026315703.29772.6.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 2002-07-10 at 16:47, Khachaturov Vassilii wrote: > > They already did, and suggested that I'd register the branch=20 > > and put in > > a notice for the editors that the FreeBSD-CVSweb project can be > > deleted. Did that, but haven't seen any changes yet. Maybe they're > > checking with the FM cvsweb project admin (whoever that might be).=20 > > Let's wait a bit; I'll ping them again later if necessary. >=20 > Wahoo! Looks like they did it just as you asked them to overnight. > The http://freshmeat.net/projects/FreeBSD-CVSweb is no longer valid, > instead there's an official cvsweb branch URL for FreeBSD-CVSweb: >=20 > http://freshmeat.net/branches/31167/ Yeah, they also replied to me in private, giving a notice about this.=20 Quick, good, and friendly service. --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Wed Jul 10 9:55: 4 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33CCB37B400; Wed, 10 Jul 2002 09:55:02 -0700 (PDT) Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EE2943E09; Wed, 10 Jul 2002 09:55:00 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id D78024D816; Thu, 11 Jul 2002 01:54:48 +0900 (JST) Date: Thu, 11 Jul 2002 01:54:50 +0900 Message-ID: <863curwmjp.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Ville =?ISO-8859-1?Q?Skytt=E4?= Cc: freebsd-cvsweb@FreeBSD.org Subject: Re: http://freshmeat.net/projects/FreeBSD-CVSweb In-Reply-To: <1026315703.29772.6.camel@bobcat.ods.org> References: <6B1DF6EEBA51D31182F200902740436803B24BC1@mail-in.comverse.com> <1026315703.29772.6.camel@bobcat.ods.org> User-Agent: Wanderlust/2.9.13 (Unchained Melody) SEMI/1.14.4 (Hosorogi) LIMIT/1.14.7 (Fujiidera) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 10 Jul 2002 18:41:42 +0300, Ville Skytt=E4 wrote: > > http://freshmeat.net/branches/31167/ Hah, I thought we are not a branch but the trunk! :) Aside from that, we may also emphasize in the description that our version includes some important security fixes which still have not been applied to other variants such as Henner Zeller's and Debian's. --=20 / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "When I leave I don't know what I'm hoping to find When I leave I don't know what I'm leaving behind.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Wed Jul 10 10: 6:19 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 282B037B400 for ; Wed, 10 Jul 2002 10:06:18 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E4CF43E58 for ; Wed, 10 Jul 2002 10:06:17 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g6AH61H27000; Wed, 10 Jul 2002 20:06:02 +0300 (EETDST) Subject: Re: http://freshmeat.net/projects/FreeBSD-CVSweb From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: Akinori MUSHA Cc: freebsd-cvsweb@FreeBSD.org In-Reply-To: <863curwmjp.wl@archon.local.idaemons.org> References: <6B1DF6EEBA51D31182F200902740436803B24BC1@mail-in.comverse.com> <1026315703.29772.6.camel@bobcat.ods.org> <863curwmjp.wl@archon.local.idaemons.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 10 Jul 2002 20:06:09 +0300 Message-Id: <1026320770.29737.20.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 2002-07-10 at 19:54, Akinori MUSHA wrote: > > > http://freshmeat.net/branches/31167/ >=20 > Hah, I thought we are not a branch but the trunk! :) Yeah... > Aside from that, we may also emphasize in the description that our > version includes some important security fixes which still have not > been applied to other variants such as Henner Zeller's and Debian's. Yes, but the problem is that they provide such a small space for a branch description. I already suggested that they'd provide similar description fields to branches as they do for projects, but have received no reply. I'll see if I can fit a bit more info to the current one-liner :/ --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Fri Jul 12 12: 1:24 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64AE637B400 for ; Fri, 12 Jul 2002 12:01:22 -0700 (PDT) Received: from random.chezwam.org (cherche-blonde-a-forte-poitrine.chezwam.org [212.11.46.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AB0E43E7B for ; Fri, 12 Jul 2002 12:01:21 -0700 (PDT) (envelope-from ydroneaud@meuh.eu.org) Received: from meuh by random.chezwam.org with local (Exim 3.35 #1 (Debian)) id 17T5fG-0007DV-00 for ; Fri, 12 Jul 2002 21:01:14 +0200 To: freebsd-cvsweb@FreeBSD.org Subject: [PATCH] download + javascript From: Yann Droneaud Organization: This is for me Corp., Meuh, TuxFamily.org, Ambre/Chaos Date: 12 Jul 2002 21:01:13 +0200 Message-ID: <86bs9c6a9y.fsf@random.chezwam.org> Lines: 20 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-=-= Hi, I got some problems when clicking on "download" links, it reports me error. So i try to fix it. Here is the result. It set the javascript link to be like the html link. It seems to work for me. Regards ... -- Yann Droneaud +33 6 88 40 82 43 1024D/BEA43321 5D91 B5B0 5137 B8FE 6882 FE19 CAA0 6F05 BEA4 3321 http://www.meuh.eu.org/ http://www-iupmime.univ-lemans.fr/ --=-=-= Content-Disposition: attachment; filename=patch-freebsd-cvsweb-javascript.diff Content-Description: patch javascript download link =================================================================== RCS file: /home/ncvs/projects/cvsweb/cvsweb.cgi,v retrieving revision 1.114 diff -u -r1.114 cvsweb.cgi --- cvsweb.cgi 2002/07/10 15:30:56 1.114 +++ cvsweb.cgi 2002/07/12 18:28:16 @@ -3467,7 +3493,7 @@ # the same window *twice*. printf q` onclick="window.open('%s','cvs_checkout','%s');return false"`, - hrefquote($fullurl), join (',', @attr); + hrefquote("$fullurl$barequery"), join (',', @attr); } } print ">$textlink"; --=-=-=-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Sat Jul 13 15:42:32 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8288A37B400 for ; Sat, 13 Jul 2002 15:42:31 -0700 (PDT) Received: from posti.pp.htv.fi (posti.pp.htv.fi [212.90.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7036B43E58 for ; Sat, 13 Jul 2002 15:42:30 -0700 (PDT) (envelope-from scop@FreeBSD.org) Received: from cs78128057.pp.htv.fi ([62.78.128.57]) by posti.pp.htv.fi (8.11.1/8.11.1) with ESMTP id g6DMgQH20485; Sun, 14 Jul 2002 01:42:27 +0300 (EETDST) Subject: Re: [PATCH] download + javascript From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: Yann Droneaud Cc: freebsd-cvsweb@FreeBSD.org In-Reply-To: <86bs9c6a9y.fsf@random.chezwam.org> References: <86bs9c6a9y.fsf@random.chezwam.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Ximian Evolution 1.0.3 (1.0.3-6) Date: 14 Jul 2002 01:42:29 +0300 Message-Id: <1026600150.1936.19.camel@bobcat.ods.org> Mime-Version: 1.0 Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 2002-07-12 at 22:01, Yann Droneaud wrote: > I got some problems when clicking on "download" links, > it reports me error. So i try to fix it. Here is the result. >=20 > It set the javascript link to be like the html link. > It seems to work for me. Thanks for the patch, Yann! While I agree that the HTML and Javascript links should be the same, I'd be interested to hear exactly what kind of errors have you ran into without this fix? A Javascript error reported by your browser, an error message sent by the server and/or an error in the server log? It would be nice if you could send some HTML source of a page that causes these errors. I'd like to be sure that this is the correct fix, and not just a workaround for the problem. Cheers, --=20 \/ille Skytt=E4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message From owner-freebsd-cvsweb Sat Jul 13 17: 8:15 2002 Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAB1337B400; Sat, 13 Jul 2002 17:08:11 -0700 (PDT) Received: from random.chezwam.org (cherche-blonde-a-forte-poitrine.chezwam.org [212.11.46.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E96443E3B; Sat, 13 Jul 2002 17:08:10 -0700 (PDT) (envelope-from ydroneaud@meuh.eu.org) Received: from meuh by random.chezwam.org with local (Exim 3.35 #1 (Debian)) id 17TWvd-0007iE-00; Sun, 14 Jul 2002 02:07:57 +0200 To: Ville =?iso-8859-1?q?Skytt=E4?= Cc: Yann Droneaud , freebsd-cvsweb@FreeBSD.org Subject: Re: [PATCH] download + javascript References: <86bs9c6a9y.fsf@random.chezwam.org> <1026600150.1936.19.camel@bobcat.ods.org> From: Yann Droneaud Organization: This is for me Corp., Meuh, TuxFamily.org, Ambre/Chaos Date: 14 Jul 2002 02:07:57 +0200 In-Reply-To: <1026600150.1936.19.camel@bobcat.ods.org> Message-ID: <86wurz189u.fsf@random.chezwam.org> Lines: 74 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-cvsweb@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ville Skyttä writes: > On Fri, 2002-07-12 at 22:01, Yann Droneaud wrote: > > > I got some problems when clicking on "download" links, > > it reports me error. So i try to fix it. Here is the result. > > > > It set the javascript link to be like the html link. > > It seems to work for me. > > Thanks for the patch, Yann! > > While I agree that the HTML and Javascript links should be the same, I'd > be interested to hear exactly what kind of errors have you ran into > without this fix? > > A Javascript error reported by your browser, an error message sent by > the server and/or an error in the server log? > > It would be nice if you could send some HTML source of a page that > causes these errors. I'd like to be sure that this is the correct fix, > and not just a workaround for the problem. > > Cheers, > -- > \/ille Skyttä > > For the others cvsroot than the default, in the 'CVS log' page, when i hit the url download, I simply get 440 error message, because the file i wanted to see doesn't exist. Here is the example of page with bad javascript code:

CVS log for vhffs-dyndns/vhffs-dyndns/ChangeLog

[BACK] Up to [vhffs-deb] / vhffs-dyndns / vhffs-dyndns

Request diff between arbitrary revisions


Default branch: creis, MAIN


Revision 1.1.1.1.2.7 / ( download) - [select for diffs], Tue Feb 19 20:51:32 2002 UTC (4 months, 3 weeks ago) by meuh
Branch: meuh Hop this is useful for you. -- Yann Droneaud +33 6 88 40 82 43 1024D/BEA43321 5D91 B5B0 5137 B8FE 6882 FE19 CAA0 6F05 BEA4 3321 http://www.meuh.eu.org/ http://www-iupmime.univ-lemans.fr/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-cvsweb" in the body of the message