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:
- 910 Bytes
1 | # -*-perl-*- |
2 | # |
3 | # Set up for FreeBSD repo options. |
4 | # |
5 | # $FreeBSD: projects/cvsweb/cvsweb.conf-freebsd,v 1.10 2004/06/07 19:33:11 knu Exp $ |
6 | # $Idaemons: /home/cvs/cvsweb/cvsweb.conf-freebsd,v 1.5 2001/08/01 09:32:22 knu Exp $ |
7 | |
8 | if ($^O eq 'freebsd') { |
9 | $ENV{'RCSLOCALID'} = 'FreeBSD=CVSHeader'; |
10 | $ENV{'RCSINCEXC'} = 'iFreeBSD'; |
11 | } else { |
12 | $ENV{'RCSLOCALID'} = 'FreeBSD'; |
13 | } |
14 | |
15 | @prcategories = qw( |
16 | advocacy |
17 | alpha |
18 | amd64 |
19 | bin |
20 | conf |
21 | docs |
22 | gnu |
23 | i386 |
24 | ia64 |
25 | java |
26 | kern |
27 | misc |
28 | pending |
29 | ports |
30 | powerpc |
31 | sparc64 |
32 | standards |
33 | www |
34 | ); |
35 | |
36 | $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=%s"; |
37 | |
38 | $prkeyword = "PR"; |
39 | |
40 | $mancgi = |
41 | "http://www.FreeBSD.org/cgi/man.cgi?apropos=0&sektion=%s&query=%s&manpath=FreeBSD+5.2-current&format=html"; |
42 | |
43 | # Allow downloading a tarball of a port or a project directory |
44 | $allow_tar = ($where =~ m,^(ports/[^/]+/[^/]+/|projects/[^/]+/),); |
45 | |
46 | 1; |