Resolve conflicts.
Add $FreeBSD$ tags. Configure cvsweb.conf and add some extra confs for freefall.
This commit is contained in:
parent
10aa3ca319
commit
ee63a4ae51
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=7838
5 changed files with 2525 additions and 514 deletions
2863
en/cgi/cvsweb.cgi
2863
en/cgi/cvsweb.cgi
File diff suppressed because it is too large
Load diff
|
@ -7,7 +7,8 @@
|
||||||
# 2000 A. MUSHA <knu@FreeBSD.org>
|
# 2000 A. MUSHA <knu@FreeBSD.org>
|
||||||
# based on work by Bill Fenner <fenner@FreeBSD.org>
|
# based on work by Bill Fenner <fenner@FreeBSD.org>
|
||||||
# $zId: cvsweb.conf,v 1.27 2000/07/27 10:16:39 kcoar Exp $
|
# $zId: cvsweb.conf,v 1.27 2000/07/27 10:16:39 kcoar Exp $
|
||||||
# $Id: cvsweb.conf,v 1.1.1.1 2000-08-14 04:35:13 knu Exp $
|
# $Id: cvsweb.conf,v 1.2 2000-08-14 04:55:19 knu Exp $
|
||||||
|
# $FreeBSD$
|
||||||
#
|
#
|
||||||
###
|
###
|
||||||
|
|
||||||
|
@ -25,40 +26,35 @@
|
||||||
|
|
||||||
# 'symbolic_name' 'path_to_the_actual_repository'
|
# 'symbolic_name' 'path_to_the_actual_repository'
|
||||||
%CVSROOT = (
|
%CVSROOT = (
|
||||||
'local' => '/home/cvs',
|
|
||||||
'freebsd' => '/home/ncvs',
|
'freebsd' => '/home/ncvs',
|
||||||
|
'learn' => '/c/learncvs',
|
||||||
|
'openbsd' => '/usr/local/www/cvsroot/OpenBSD',
|
||||||
|
'netbsd' => '/usr/local/www/cvsroot/NetBSD',
|
||||||
|
'44bsdlite' => '/e/4.4BSD-Lite/4.4BSD-Lite-CVS',
|
||||||
);
|
);
|
||||||
|
|
||||||
%CVSROOTdescr = (
|
%CVSROOTdescr = (
|
||||||
'local' => 'Local Repository',
|
|
||||||
'freebsd' => 'FreeBSD',
|
'freebsd' => 'FreeBSD',
|
||||||
|
'learn' => 'Learn',
|
||||||
|
'openbsd' => 'OpenBSD',
|
||||||
|
'netbsd' => 'NetBSD',
|
||||||
|
'44bsdlite' => '4.4BSD-Lite',
|
||||||
);
|
);
|
||||||
|
|
||||||
# This tree is enabled by default when
|
# This tree is enabled by default when
|
||||||
# you enter the page
|
# you enter the page
|
||||||
$cvstreedefault = 'local';
|
$cvstreedefault = 'freebsd';
|
||||||
|
|
||||||
##############
|
##############
|
||||||
# PR categoties
|
# Mirror Sites
|
||||||
##############
|
##############
|
||||||
@prcategories = qw(
|
%MIRRORS = (
|
||||||
advocacy
|
'Germany' => 'http://www.de.FreeBSD.org/cgi/cvsweb.cgi',
|
||||||
alpha
|
'Russian' => 'http://www.FreeBSD.org.ua/cgi/cvsweb.cgi?cvsroot=freebsd',
|
||||||
bin
|
'Spain' => 'http://www.es.FreeBSD.org/cgi/cvsweb.cgi',
|
||||||
conf
|
'USA, California' => 'http://www.FreeBSD.org/cgi/cvsweb.cgi',
|
||||||
docs
|
'Japan' => 'http://www.jp.FreeBSD.org/cgi/cvsweb.cgi',
|
||||||
gnu
|
);
|
||||||
i386
|
|
||||||
kern
|
|
||||||
misc
|
|
||||||
ports
|
|
||||||
sparc
|
|
||||||
);
|
|
||||||
|
|
||||||
##############
|
|
||||||
# query-pr.cgi
|
|
||||||
##############
|
|
||||||
$prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=";
|
|
||||||
|
|
||||||
##############
|
##############
|
||||||
# Defaults for UserSettings
|
# Defaults for UserSettings
|
||||||
|
@ -112,7 +108,7 @@ $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=";
|
||||||
$body_tag = '<body text="#000000" bgcolor="#ffffff">';
|
$body_tag = '<body text="#000000" bgcolor="#ffffff">';
|
||||||
|
|
||||||
# Wanna have a logo on the page ?
|
# Wanna have a logo on the page ?
|
||||||
$logo = '<img src="/icons/apache_pb.gif">';
|
$logo = '';
|
||||||
|
|
||||||
# The title of the Page on startup
|
# The title of the Page on startup
|
||||||
$defaulttitle = "CVS Repository";
|
$defaulttitle = "CVS Repository";
|
||||||
|
@ -130,7 +126,7 @@ $navigationHeaderColor = '#9999ee';
|
||||||
|
|
||||||
$long_intro = <<EOT;
|
$long_intro = <<EOT;
|
||||||
<p>
|
<p>
|
||||||
This is a WWW interface for CVS Repositories.
|
This is a WWW interface to the !!CVSROOTdescr!! CVS tree.
|
||||||
You can browse the file hierarchy by picking directories
|
You can browse the file hierarchy by picking directories
|
||||||
(which have slashes after them, <i>e.g.</i>, <b>src/</b>).
|
(which have slashes after them, <i>e.g.</i>, <b>src/</b>).
|
||||||
If you pick a file, you will see the revision history
|
If you pick a file, you will see the revision history
|
||||||
|
@ -190,9 +186,9 @@ EOT
|
||||||
# icons/ directory; they have a width/height of 16/16
|
# icons/ directory; they have a width/height of 16/16
|
||||||
# format: TEXT ICON-URL width height
|
# format: TEXT ICON-URL width height
|
||||||
%ICONS = (
|
%ICONS = (
|
||||||
back => [ ("[BACK]", "/icons/cvsweb/back.gif", 20, 22) ],
|
back => [ ("[BACK]", "/icons/back.gif", 20, 22) ],
|
||||||
dir => [ ("[DIR]", "/icons/cvsweb/dir.gif", 20, 22) ],
|
dir => [ ("[DIR]", "/icons/dir.gif", 20, 22) ],
|
||||||
file => [ ("[TXT]", "/icons/cvsweb/text.gif", 20, 22) ],
|
file => [ ("[TXT]", "/icons/text.gif", 20, 22) ],
|
||||||
);
|
);
|
||||||
|
|
||||||
# the length to which the last logentry should
|
# the length to which the last logentry should
|
||||||
|
|
30
en/cgi/cvsweb.conf-freebsd
Normal file
30
en/cgi/cvsweb.conf-freebsd
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# Set up for FreeBSD repo options.
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
$ENV{'RCSLOCALID'} = 'FreeBSD=CVSHeader';
|
||||||
|
$ENV{'RCSINCEXC'} = 'iFreeBSD';
|
||||||
|
$ENV{'CVSROOT'} = $cvsroot;
|
||||||
|
|
||||||
|
##############
|
||||||
|
# PR categoties
|
||||||
|
##############
|
||||||
|
@prcategories = qw(
|
||||||
|
advocacy
|
||||||
|
alpha
|
||||||
|
bin
|
||||||
|
conf
|
||||||
|
docs
|
||||||
|
gnu
|
||||||
|
i386
|
||||||
|
kern
|
||||||
|
misc
|
||||||
|
ports
|
||||||
|
sparc
|
||||||
|
);
|
||||||
|
|
||||||
|
##############
|
||||||
|
# query-pr.cgi
|
||||||
|
##############
|
||||||
|
$prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=";
|
||||||
|
|
60
en/cgi/cvsweb.conf-netbsd
Normal file
60
en/cgi/cvsweb.conf-netbsd
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
# Set up for NetBSD repo options.
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
$ENV{'RCSLOCALID'} = 'NetBSD';
|
||||||
|
$ENV{'RCSINCEXC'} = 'iNetBSD';
|
||||||
|
|
||||||
|
##############
|
||||||
|
# PR categoties
|
||||||
|
##############
|
||||||
|
@prcategories = qw(
|
||||||
|
bin
|
||||||
|
install
|
||||||
|
kern
|
||||||
|
lib
|
||||||
|
misc
|
||||||
|
pkg
|
||||||
|
port-alpha
|
||||||
|
port-amiga
|
||||||
|
port-arc
|
||||||
|
port-arm26
|
||||||
|
port-arm32
|
||||||
|
port-atari
|
||||||
|
port-bebox
|
||||||
|
port-cobalt
|
||||||
|
port-hp300
|
||||||
|
port-hpcmips
|
||||||
|
port-i386
|
||||||
|
port-luna68k
|
||||||
|
port-m68k
|
||||||
|
port-mac68k
|
||||||
|
port-macppc
|
||||||
|
port-mips
|
||||||
|
port-mvme68k
|
||||||
|
port-newsmips
|
||||||
|
port-news68k
|
||||||
|
port-next68k
|
||||||
|
port-ofppc
|
||||||
|
port-pc532
|
||||||
|
port-pmax
|
||||||
|
port-powerpc
|
||||||
|
port-prep
|
||||||
|
port-sgimips
|
||||||
|
port-sh3
|
||||||
|
port-sparc
|
||||||
|
port-sparc64
|
||||||
|
port-sun3
|
||||||
|
port-vax
|
||||||
|
port-x68k
|
||||||
|
security
|
||||||
|
standards
|
||||||
|
xsrc
|
||||||
|
y2k
|
||||||
|
);
|
||||||
|
|
||||||
|
##############
|
||||||
|
# query-pr.cgi
|
||||||
|
##############
|
||||||
|
$prcgi = "http://www.NetBSD.org/cgi-bin/query-pr-single.pl?number=";
|
||||||
|
|
34
en/cgi/cvsweb.conf-openbsd
Normal file
34
en/cgi/cvsweb.conf-openbsd
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
# Set up for OpenBSD repo options.
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
$ENV{'RCSLOCALID'} = 'OpenBSD';
|
||||||
|
$ENV{'RCSINCEXC'} = 'iOpenBSD';
|
||||||
|
|
||||||
|
##############
|
||||||
|
# PR categoties
|
||||||
|
##############
|
||||||
|
@prcategories = qw(
|
||||||
|
alpha
|
||||||
|
arm
|
||||||
|
documentation
|
||||||
|
i386
|
||||||
|
kernel
|
||||||
|
library
|
||||||
|
m68k
|
||||||
|
mips
|
||||||
|
ns32k
|
||||||
|
pending
|
||||||
|
ports
|
||||||
|
ppc
|
||||||
|
sparc
|
||||||
|
system
|
||||||
|
user
|
||||||
|
vax
|
||||||
|
);
|
||||||
|
|
||||||
|
##############
|
||||||
|
# query-pr.cgi
|
||||||
|
##############
|
||||||
|
$prcgi = "http://cvs.openbsd.org/cgi-bin/wwwgnats.pl/full?pr=";
|
||||||
|
|
Loading…
Reference in a new issue