doc/en_US.ISO8859-1/htdocs/cgi/cvsweb.conf-freebsd
Hiroki Sato 35babe0ae5 - Set svn:ketwords and svn:mime-type. Note that application/octet-stream is
set on some files as a workaround for binary check.
- Fix pathname for svn co in the webupdate script.

Approved by:	doceng (implicit)
2012-05-17 19:12:14 +00:00

49 lines
865 B
Perl

# -*-perl-*-
#
# Set up for FreeBSD repo options.
#
# $Idaemons: /home/cvs/cvsweb/cvsweb.conf-freebsd,v 1.5 2001/08/01 09:32:22 knu Exp $
# $FreeBSD$
if ($^O eq 'freebsd') {
$ENV{'RCSLOCALID'} = 'FreeBSD=CVSHeader';
$ENV{'RCSINCEXC'} = 'iFreeBSD';
} else {
$ENV{'RCSLOCALID'} = 'FreeBSD';
}
@prcategories = qw(
advocacy
alpha
amd64
arm
bin
conf
docs
gnu
i386
ia64
java
kern
misc
pending
ports
powerpc
sparc64
standards
threads
usb
www
);
$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+7.0-current&format=html";
# Allow downloading a tarball of a port or a project directory
$allow_tar = ($where =~ m,^(ports/[^/]+/[^/]+/|projects/[^/]+/),);
1;