[BACK]Return to cvsweb.conf-freebsd CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / cvsweb

File: [cvsweb.bsd.lv] / cvsweb / Attic / cvsweb.conf-freebsd (download)

Revision 3.7, Wed Nov 7 20:37:56 2001 UTC (22 years, 4 months ago) by knu
CVS Tags: FreeBSD-cvsweb-2_0_6, FreeBSD-cvsweb-2_0_5, FreeBSD-cvsweb-2_0_4, FreeBSD-cvsweb-2_0_3, FreeBSD-cvsweb-2_0_2, FreeBSD-cvsweb-2_0_1, FreeBSD-cvsweb-2_0_0
Branch point for: FreeBSD-cvsweb-2_0-branch
Changes since 3.6: +2 -2 lines

Allow downloading a tarball of a project directory as well as a port
directory.

# -*-perl-*-
#
# Set up for FreeBSD repo options.
#
# $FreeBSD$
# $Idaemons: /home/cvs/cvsweb/cvsweb.conf-freebsd,v 3.5 2001/08/01 09:32:22 knu Exp $

if ($uname eq 'FreeBSD') {
	$ENV{'RCSLOCALID'} = 'FreeBSD=CVSHeader';
	$ENV{'RCSINCEXC'}  = 'iFreeBSD';
} else {
	$ENV{'RCSLOCALID'} = 'FreeBSD';
}

@prcategories = qw(
    advocacy
    alpha
    bin
    conf
    docs
    gnu
    i386
    kern
    misc
    pending
    ports
    sparc
);

$prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=%s";

$prkeyword = "PR";

$mancgi =
    "http://www.FreeBSD.org/cgi/man.cgi?apropos=0&sektion=%s&query=%s&manpath=FreeBSD+5.0-current&format=html";

# Allow downloading a tarball of a port or a project directory
$allow_tar = ($where =~ m,^(ports/[^/]+/[^/]+/|projects/[^/]+/),);

1;