Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 39
- Log:
Initial import of CVSWeb 3.0.6 from http://people.freebsd.org/~scop/cvsweb/
into SVN. CVSWeb will be used as a Web interface onto the main repository,
since that is too large and too complex to convert from its current SVN
form into SVN.
- Author:
- adh
- Date:
- Mon Jul 31 15:11:40 +0100 2006
- Size:
- 864 Bytes
1 | # -*-perl-*- |
2 | # |
3 | # Set up for OpenBSD repo options. |
4 | # |
5 | # $FreeBSD: projects/cvsweb/cvsweb.conf-openbsd,v 1.8 2002/12/23 15:05:10 scop Exp $ |
6 | # $Idaemons: /home/cvs/cvsweb/cvsweb.conf-openbsd,v 1.5 2001/08/01 09:32:22 knu Exp $ |
7 | |
8 | if ($^O eq 'freebsd') { |
9 | $ENV{'RCSLOCALID'} = 'OpenBSD=Id'; |
10 | $ENV{'RCSINCEXC'} = 'iOpenBSD'; |
11 | } else { |
12 | $ENV{'RCSLOCALID'} = 'OpenBSD'; |
13 | } |
14 | |
15 | @prcategories = qw( |
16 | alpha |
17 | arm |
18 | documentation |
19 | i386 |
20 | kernel |
21 | library |
22 | m68k |
23 | mips |
24 | ns32k |
25 | pending |
26 | ports |
27 | ppc |
28 | sparc |
29 | system |
30 | user |
31 | vax |
32 | ); |
33 | |
34 | $prcgi = "http://cvs.openbsd.org/cgi-bin/wwwgnats.pl/full?pr=%s"; |
35 | |
36 | $prkeyword = "PR"; |
37 | |
38 | $mancgi = |
39 | "http://www.openbsd.org/cgi-bin/man.cgi?apropos=0&sektion=%s&query=%s&manpath=OpenBSD+Current&arch=i386&format=html"; |
40 | |
41 | # Allow downloading a tarball of a port |
42 | $allow_tar = ($where =~ m,^ports/[^/]+/[^/]+/,); |
43 | |
44 | 1; |