From owner-freebsd-cvsweb@FreeBSD.ORG Mon Dec 27 20:11:17 2004 Return-Path: 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 C459016A4CE for ; Mon, 27 Dec 2004 20:11:17 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C0C043D3F for ; Mon, 27 Dec 2004 20:11:17 +0000 (GMT) (envelope-from rnhurt@gmail.com) Received: by wproxy.gmail.com with SMTP id 36so306644wra for ; Mon, 27 Dec 2004 12:11:17 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=dWHN28L/8Lp4LP2ydGqmDAo4vvl1cmp2wsDGc8pX/k8Y3PbtHbZfvEIQJu2WJFVuE9ICqNCRrnrKf+DuzYaJVlF9wPT/2mw4vIIK/NvI4c+3BjlZrIbz9pmxTyeGbURKa33YbPY+wNg1y5qrMtkKqN4almYgTMc/s7SB9oMooQE= Received: by 10.54.11.68 with SMTP id 68mr368535wrk; Mon, 27 Dec 2004 12:11:16 -0800 (PST) Received: by 10.54.4.60 with HTTP; Mon, 27 Dec 2004 12:11:16 -0800 (PST) Message-ID: <712ba87c04122712117c91d6cd@mail.gmail.com> Date: Mon, 27 Dec 2004 15:11:16 -0500 From: Richard Hurt To: freebsd-cvsweb@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: @command_path not used? X-BeenThere: freebsd-cvsweb@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Richard Hurt List-Id: CVS Web maintenance mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Dec 2004 20:11:17 -0000 Hello all, I am having difficulty using the diff functionality of CVSWeb. My system (HP-UX 11) has older, HP versions of the various external tools used by CVSWeb (rlog, rcsdiff, diff, etc.) located at /usr/bin. I have loaded the newer, GNU versions in my own directory /home/www/apps/bin and set the @command_path list to only my directory. Most things are working fine including the graph functionality, however whenever I try to diff two versions it always uses the wrong diff (/usr/bin/diff) which doesnt recognize the -u option. :( I have tried a couple of different things but nothing seems to work. When I created a blank @command_path listing I couldn't even see the home page (complained about rlog missing), so it seems to work (at least for some commands). Any thoughts on why this is happening? Thanx! Richard From owner-freebsd-cvsweb@FreeBSD.ORG Mon Dec 27 20:50:15 2004 Return-Path: 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 212FA16A4CE for ; Mon, 27 Dec 2004 20:50:15 +0000 (GMT) Received: from smtp1.pp.htv.fi (smtp1.pp.htv.fi [213.243.153.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF1C143D39 for ; Mon, 27 Dec 2004 20:50:14 +0000 (GMT) (envelope-from scop@FreeBSD.org) Received: from cs78128192.pp.htv.fi (cs78128192.pp.htv.fi [62.78.128.192]) by smtp1.pp.htv.fi (Postfix) with ESMTP id 804B17FC65 for ; Mon, 27 Dec 2004 22:50:13 +0200 (EET) From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: freebsd-cvsweb@freebsd.org In-Reply-To: <712ba87c04122712117c91d6cd@mail.gmail.com> References: <712ba87c04122712117c91d6cd@mail.gmail.com> Content-Type: text/plain Organization: FreeBSD Date: Mon, 27 Dec 2004 22:50:13 +0200 Message-Id: <1104180613.1059.7.camel@bobcat.mine.nu> Mime-Version: 1.0 X-Mailer: Evolution 2.0.2 (2.0.2-3) Content-Transfer-Encoding: 7bit Subject: Re: @command_path not used? X-BeenThere: freebsd-cvsweb@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS Web maintenance mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Dec 2004 20:50:15 -0000 On Mon, 2004-12-27 at 15:11 -0500, Richard Hurt wrote: > I am having difficulty using the diff functionality of CVSWeb. My > system (HP-UX 11) has older, HP versions of the various external tools > used by CVSWeb (rlog, rcsdiff, diff, etc.) located at /usr/bin. I > have loaded the newer, GNU versions in my own directory > /home/www/apps/bin and set the @command_path list to only my > directory. Most things are working fine including the graph > functionality, however whenever I try to diff two versions it always > uses the wrong diff (/usr/bin/diff) which doesnt recognize the -u > option. :( > > I have tried a couple of different things but nothing seems to work. > When I created a blank @command_path listing I couldn't even see the > home page (complained about rlog missing), so it seems to work (at > least for some commands). Any thoughts on why this is happening? @command_path affects only executables directly invoked by cvsweb. And cvsweb doesn't invoke diff directly [0], it invokes rcsdiff which then again uses internally whatever diff it considers appropriate. One thing to try: add this somewhere in your cvsweb.conf: $ENV{PATH} = '/home/www/apps/bin'; If rcsdiff uses $PATH, that could help. If not, it might have a compiled in path to the diff tool it's using. HTH... [0] By default, that is. One can configure different diff tools for different MIME types with %DIFF_COMMANDS in cvsweb.conf. From owner-freebsd-cvsweb@FreeBSD.ORG Mon Dec 27 22:27:25 2004 Return-Path: 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 B5C6A16A4CE; Mon, 27 Dec 2004 22:27:25 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A3AD43D49; Mon, 27 Dec 2004 22:27:25 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) iBRMRMuU028595; Mon, 27 Dec 2004 17:27:22 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id iBRMRBrd048319; Mon, 27 Dec 2004 17:27:11 -0500 (EST) (envelope-from kris) Date: Mon, 27 Dec 2004 17:27:11 -0500 (EST) From: Kris Kennaway Message-Id: <200412272227.iBRMRBrd048319@8ball.rtp.freebsd.org> To: autrijus@autrijus.org, danger@wilbury.sk, freebsd-cvsweb@FreeBSD.org, knu@FreeBSD.org, martin@tradex.sk, olgeni@FreeBSD.org, pat@FreeBSD.org, perky@FreeBSD.org, ports@FreeBSD.org, takamune2004@yahoo.co.jp, vangyzen@stat.duke.edu X-Mailman-Approved-At: Tue, 28 Dec 2004 13:41:02 +0000 Subject: Ports with duplicate LATEST_LINKS X-BeenThere: freebsd-cvsweb@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS Web maintenance mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Dec 2004 22:27:25 -0000 Dear port maintainers, The following list includes ports maintained by you that have duplicate LATEST_LINK values. They should either be modified to use a unique LATEST_LINK or suppressed using NO_LATEST_LINK, to avoid overwriting each other in the packages/Latest directory. If your ports conflict with ports maintained by another person, please coordinate your efforts with them. Thanks, Kris "Annoying Reminder Guy II" Kennaway LATEST_LINK PORTNAME MAINTAINER ========================================================================== AutoIndex www/autoindex danger@wilbury.sk AutoIndex www/autoindex2 danger@wilbury.sk cvsweb devel/cvsweb freebsd-cvsweb@FreeBSD.org cvsweb devel/cvsweb3 freebsd-cvsweb@FreeBSD.org ja-eb japanese/eb takamune2004@yahoo.co.jp ja-eb japanese/eb3 takamune2004@yahoo.co.jp jags net/jags pat@FreeBSD.org jags math/jags vangyzen@stat.duke.edu jedit editors/jedit ports@FreeBSD.org jedit editors/jedit-devel ports@FreeBSD.org jgraph graphics/jgraph ports@FreeBSD.org jgraph java/jgraph ports@FreeBSD.org mew-emacs20 mail/mew-emacs20 ports@FreeBSD.org mew-emacs20 mail/mew2-emacs20 ports@FreeBSD.org mew-emacs20 mail/mew3-emacs20 ports@FreeBSD.org mew-emacs21 mail/mew2 ports@FreeBSD.org mew-emacs21 mail/mew3 ports@FreeBSD.org mew-xemacs21-mule mail/mew-xemacs21-mule ports@FreeBSD.org mew-xemacs21-mule mail/mew2-xemacs21-mule ports@FreeBSD.org mew-xemacs21-mule mail/mew3-xemacs21-mule ports@FreeBSD.org pfe lang/forth ports@FreeBSD.org pfe lang/pfe-devel ports@FreeBSD.org python23 lang/python23 perky@FreeBSD.org python23 lang/stackless_python perky@FreeBSD.org rt www/rt3 autrijus@autrijus.org rt www/rt32 autrijus@autrijus.org ruby-devel lang/ruby18 knu@FreeBSD.org ruby-devel lang/ruby18_r knu@FreeBSD.org ruby18-xmlscan textproc/ruby-xmlscan knu@FreeBSD.org ruby18-xmlscan textproc/ruby-xmlscan-old knu@FreeBSD.org star archivers/star-devel martin@tradex.sk star archivers/star olgeni@FreeBSD.org Total: 32 ports From owner-freebsd-cvsweb@FreeBSD.ORG Tue Dec 28 14:38:34 2004 Return-Path: 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 E04E816A4CE for ; Tue, 28 Dec 2004 14:38:34 +0000 (GMT) Received: from yorktown.nielsenmedia.com (yorktown.nielsenmedia.com [206.113.192.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AA5543D39 for ; Tue, 28 Dec 2004 14:38:34 +0000 (GMT) (envelope-from Alex.Quezada@nielsenmedia.com) Received: from nmrflimg2.enterprisenet.org (nmrflimg2.enterprisenet.org [10.38.67.65])iBSEYa3x002503 for ; Tue, 28 Dec 2004 09:34:36 -0500 (EST) Received: from nmr001oldOWA01.enterprisenet.org (unverified) by nmrflimg2.enterprisenet.org for ; Tue, 28 Dec 2004 09:38:30 -0500 Received: from nmr001oldmsx05.enterprisenet.org ([10.38.67.64]) by nmr001oldOWA01.enterprisenet.org with Microsoft SMTPSVC(6.0.3790.211); Tue, 28 Dec 2004 09:38:30 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Tue, 28 Dec 2004 09:38:30 -0500 Message-ID: <3428D9627CC79A4ABF37A519431D981250A06A@nmr001oldmsx05.enterprisenet.org> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: @command_path not used Thread-Index: AcTs1PkAEMLhYL1CSrua9+9BjyUfHgAFZhYA From: "Quezada, Alex" To: X-OriginalArrivalTime: 28 Dec 2004 14:38:30.0551 (UTC) FILETIME=[E66B4A70:01C4ECEA] Subject: Re: @command_path not used X-BeenThere: freebsd-cvsweb@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS Web maintenance mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Dec 2004 14:38:35 -0000 I had the same problem with rcsdiff. What I ended up doing was compiling a new version of rcsdiff that used an updated diff under my local directory. There's an option when compiling these utilities to use an alternate path (like your local directory) rather than the standard for which you need root access. So after I did that, I had cvsweb look for utilities in my local directory first and it worked great. Alex From owner-freebsd-cvsweb@FreeBSD.ORG Tue Dec 28 22:57:55 2004 Return-Path: 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 866B016A4CE for ; Tue, 28 Dec 2004 22:57:55 +0000 (GMT) Received: from mtlsmtp1.bis.adp.com (mtlsmtp1.bis.adp.com [66.150.41.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23C9843D1F for ; Tue, 28 Dec 2004 22:57:55 +0000 (GMT) (envelope-from Stephen_Cheng@adp.com) thread-index: AcTtMKqFNU4EDLUwS22F2iJRSyRvHQ== X-MessageTextProcessor: DisclaimIt (2.00.200) on mtlsmtp1.bis.adp.com Received: from hubimc04.bis.adp.com ([66.150.41.142]) by mtlsmtp1.bis.adp.com with Microsoft SMTPSVC(5.0.2195.6713); Tue, 28 Dec 2004 17:57:54 -0500 Content-Class: urn:content-classes:message Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Received: by hubimc04.bis.adp.com with Internet Mail Service (5.5.2653.19) id ; Tue, 28 Dec 2004 17:57:17 -0500 Message-ID: From: "Cheng, Stephen x28044" To: Date: Tue, 28 Dec 2004 17:58:08 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) X-OriginalArrivalTime: 28 Dec 2004 22:57:54.0802 (UTC) FILETIME=[AA812520:01C4ED30] X-Mailman-Approved-At: Wed, 29 Dec 2004 13:12:45 +0000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: does CVSWeb interface support "check-in" or "check-out"? X-BeenThere: freebsd-cvsweb@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS Web maintenance mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Dec 2004 22:57:55 -0000 =20 =20 thanks, =20 =20 =20 _ This message and any attachments are intended only for the use of the = addressee and may contain information that is privileged and confidential. If the = reader of the=20 message is not the intended recipient or an authorized representative of = the intended recipient, you are hereby notified that any dissemination of = this communication is strictly prohibited. If you have received this = communication in error, please notify us immediately by e-mail and delete the message and = any attachments from your system. From owner-freebsd-cvsweb@FreeBSD.ORG Thu Dec 30 16:38:09 2004 Return-Path: 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 CD0AB16A4CE for ; Thu, 30 Dec 2004 16:38:09 +0000 (GMT) Received: from smtp3.pp.htv.fi (smtp3.pp.htv.fi [213.243.153.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CA2443D1D for ; Thu, 30 Dec 2004 16:38:09 +0000 (GMT) (envelope-from scop@FreeBSD.org) Received: from cs78128192.pp.htv.fi (cs78128192.pp.htv.fi [62.78.128.192]) by smtp3.pp.htv.fi (Postfix) with ESMTP id 15A0A27AC54 for ; Thu, 30 Dec 2004 18:38:08 +0200 (EET) From: Ville =?ISO-8859-1?Q?Skytt=E4?= To: freebsd-cvsweb@freebsd.org In-Reply-To: References: Content-Type: text/plain Organization: FreeBSD Date: Thu, 30 Dec 2004 18:38:07 +0200 Message-Id: <1104424687.4866.56.camel@bobcat.mine.nu> Mime-Version: 1.0 X-Mailer: Evolution 2.0.2 (2.0.2-3) Content-Transfer-Encoding: 7bit Subject: Re: does CVSWeb interface support "check-in" or "check-out"? X-BeenThere: freebsd-cvsweb@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS Web maintenance mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Dec 2004 16:38:09 -0000 On Tue, 2004-12-28 at 17:58 -0500, Cheng, Stephen x28044 wrote: > thanks, You're welcome. checkin - no, checkout - not as-is, but I've heard about tools that do something like that, for example: http://cvsgrab.sourceforge.net/