[BACK]Return to cvsweb.conf CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / cvsweb

Diff for /cvsweb/Attic/cvsweb.conf between version 3.14 and 3.15

version 3.14, 2001/01/01 21:24:03 version 3.15, 2001/01/01 23:15:03
Line 23 
Line 23 
 # to the CVS repository so :pserver:someone@xyz.com:/data/cvsroot  # to the CVS repository so :pserver:someone@xyz.com:/data/cvsroot
 # won't work!  # won't work!
   
 # 'symbolic_name' 'path_to_the_actual_repository'  # 'symbolic_name' => 'path_to_the_actual_repository'
 %CVSROOT = (  %CVSROOT = (
             'local'     => '/home/cvs',              'local'     => '/home/cvs',
             'freebsd'   => '/home/ncvs',  #           'freebsd'   => '/home/ncvs',
   #           'openbsd'   => '/home/ncvs',
   #           'netbsd'    => '/home/ncvs',
   #           'ruby'      => '/var/anoncvs/ruby',
            );             );
   
   # 'symbolic_name' => 'name_to_display'
 %CVSROOTdescr = (  %CVSROOTdescr = (
                  'local'     => 'Local Repository',                   'local'     => 'Local Repository',
                  'freebsd'   => 'FreeBSD',  #                'freebsd'   => 'FreeBSD',
   #                'openbsd'   => 'OpenBSD',
   #                'netbsd'    => 'NetBSD',
   #                'ruby'      => 'Ruby',
                 );                  );
   
 # This tree is enabled by default when  # This tree is enabled by default when
Line 39 
Line 46 
 $cvstreedefault = 'local';  $cvstreedefault = 'local';
   
 ##############  ##############
 # PR categoties  # Bug tracking system options
   # ("PR" means Problem Report, as in GNATS)
 ##############  ##############
 @prcategories = qw(  #@prcategories = qw(
                    advocacy  #                  advocacy
                    alpha  #                  alpha
                    bin  #                  bin
                    conf  #                  conf
                    docs  #                  docs
                    gnu  #                  gnu
                    i386  #                  i386
                    kern  #                  kern
                    misc  #                  misc
                    pending  #                  pending
                    ports  #                  ports
                    sparc  #                  sparc
                   );  #                 );
   #
   #$prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=%s";
   #
   #$prkeyword = "PR";
   
 ##############  ##############
 # query-pr.cgi  # Manual gateway
 ##############  ##############
 $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=%s";  
   
 ##############  
 # man.cgi  
 ##############  
 $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos=0&sektion=%s&query=%s&manpath=FreeBSD+5.0-current&format=html";  $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos=0&sektion=%s&query=%s&manpath=FreeBSD+5.0-current&format=html";
   
 ##############  ##############
Line 193  EOT
Line 200  EOT
 # These default icons are coming with apache.  # These default icons are coming with apache.
 # If these icons are too large, check out the miniicons in the  # If these icons are too large, check out the miniicons in the
 # 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  my $iconsdir = "/icons";
   # format:             TEXT      ICON-URL              width height
 %ICONS  = (  %ICONS  = (
            back => [ ("[BACK]", "/icons/cvsweb/back.gif", 20,   22) ],             back => [ ("[BACK]", "$iconsdir/back.gif", 20,   22) ],
            dir  => [ ("[DIR]",  "/icons/cvsweb/dir.gif",  20,   22) ],             dir  => [ ("[DIR]",  "$iconsdir/dir.gif",  20,   22) ],
            file => [ ("[TXT]",  "/icons/cvsweb/text.gif", 20,   22) ],             file => [ ("[TXT]",  "$iconsdir/text.gif", 20,   22) ],
            );            );
   undef $iconsdir;
   
 # the length to which the last logentry should  # the length to which the last logentry should
 # be truncated when shown in the directory view  # be truncated when shown in the directory view
Line 275  $showfunc = 1;
Line 284  $showfunc = 1;
 # For each pair of regexps, files that match the first regexp will be diff'ed  # For each pair of regexps, files that match the first regexp will be diff'ed
 # with an '-F' option with the second regexp.  # with an '-F' option with the second regexp.
 %funcline_regexp = (  %funcline_regexp = (
                     "\\.(4th|fr)\$" => "\\(^\\| \\|\t\\): ",                      "\\.(4th|fr)\$" => "\\(^\\|[ \t]\\): ",
                       "\\.rb\$" => "^[\t ]*\\(class\\|module\\|def\\) ",
                    );                     );
   
 # ignore whitespaces for human readable diffs  # ignore whitespaces for human readable diffs
Line 434  $use_moddate = 1;
Line 444  $use_moddate = 1;
 $allow_tar = '';  $allow_tar = '';
   
 # Options to pass to tar(1).  # Options to pass to tar(1).
 @tar_options = ();  @tar_options = qw();
 # e.g. @tar_options = qw(--ignore-failed-read);  # e.g. @tar_options = qw(--ignore-failed-read);
 #      GNU tar has some useful options against unexpected errors.  #      GNU tar has some useful options against unexpected errors.
   

Legend:
Removed from v.3.14  
changed lines
  Added in v.3.15

CVSweb