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:
- 1286 Bytes
1 | # -*-perl-*- |
2 | # |
3 | # Set up for NetBSD repo options. |
4 | # |
5 | # $FreeBSD: projects/cvsweb/cvsweb.conf-netbsd,v 1.8 2002/12/23 15:05:10 scop Exp $ |
6 | # $Idaemons: /home/cvs/cvsweb/cvsweb.conf-netbsd,v 1.5 2001/08/01 09:32:22 knu Exp $ |
7 | |
8 | if ($^O eq 'freebsd') { |
9 | $ENV{'RCSLOCALID'} = 'NetBSD=Id'; |
10 | $ENV{'RCSINCEXC'} = 'iNetBSD'; |
11 | } else { |
12 | $ENV{'RCSLOCALID'} = 'NetBSD'; |
13 | } |
14 | |
15 | @prcategories = qw( |
16 | admin |
17 | bin |
18 | install |
19 | kern |
20 | lib |
21 | misc |
22 | pending |
23 | pkg |
24 | port-alpha |
25 | port-amiga |
26 | port-arc |
27 | port-arm26 |
28 | port-arm32 |
29 | port-atari |
30 | port-bebox |
31 | port-cobalt |
32 | port-dreamcast |
33 | port-hp300 |
34 | port-hpcmips |
35 | port-i386 |
36 | port-luna68k |
37 | port-m68k |
38 | port-mac68k |
39 | port-macppc |
40 | port-mips |
41 | port-mvme68k |
42 | port-newsmips |
43 | port-news68k |
44 | port-next68k |
45 | port-ofppc |
46 | port-pc532 |
47 | port-pmax |
48 | port-powerpc |
49 | port-prep |
50 | port-sgimips |
51 | port-sh3 |
52 | port-sparc |
53 | port-sparc64 |
54 | port-sun3 |
55 | port-vax |
56 | port-x68k |
57 | security |
58 | standards |
59 | test |
60 | xsrc |
61 | y2k |
62 | ); |
63 | |
64 | $prcgi = "http://www.NetBSD.org/cgi-bin/query-pr-single.pl?number=%s"; |
65 | |
66 | $prkeyword = "PR"; |
67 | |
68 | $mancgi = "http://www.flame.org/cgi-bin/uncgi/hman?sect=%s&page=%s&arch=i386"; |
69 | |
70 | # Allow downloading a tarball of a pkgsrc |
71 | $allow_tar = ($where =~ m,^pkgsrc/[^/]+/[^/]+/,); |
72 | |
73 | 1; |