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

Diff for /cvsweb/Attic/cvsweb.conf between version 3.3 and 3.7

version 3.3, 2000/07/20 11:14:03 version 3.7, 2000/08/15 20:39:50
Line 6 
Line 6 
 #     1999      H. Nordstrom <hno@hem.passagen.se>  #     1999      H. Nordstrom <hno@hem.passagen.se>
 #     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 3.27 2000/07/27 10:16:39 kcoar Exp $
 # $Id$  # $Id$
 #  #
 ###  ###
Line 57  $cvstreedefault = 'local';
Line 58  $cvstreedefault = 'local';
 ##############  ##############
 # query-pr.cgi  # query-pr.cgi
 ##############  ##############
 $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi";  $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=";
   
 ##############  ##############
 # Defaults for UserSettings  # Defaults for UserSettings
Line 90  $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi";
Line 91  $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi";
       #   u      Unified diff        #   u      Unified diff
       #   c      Context diff        #   c      Context diff
       #   s      Side by side        #   s      Side by side
       "f" => "h",        "f" => ($is_textbased ? "u" : "h"),
   
       # hidecvsroot: Don't show the CVSROOT directory        # hidecvsroot: Don't show the CVSROOT directory
       #   1      Hide CVSROOT directory        #   1      Hide CVSROOT directory
Line 99  $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi";
Line 100  $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi";
   
       # hidenonreadable: Don't show entries which cannot be read        # hidenonreadable: Don't show entries which cannot be read
       #   1      Hide non-readable entries        #   1      Hide non-readable entries
       #   0      Show non-readble entries        #   0      Show non-readable entries
       "hidenonreadable" => "1",        "hidenonreadable" => "1",
 );  );
   
Line 142  display diffs between arbitrary revisions.
Line 143  display diffs between arbitrary revisions.
 </p>  </p>
 <p>  <p>
 This script has been written by Bill Fenner  This script has been written by Bill Fenner
 &lt;<a href="mailto:fenner\@freebsd.org">fenner\@freebsd.org</a>&gt;  &lt;<a href="mailto:fenner\@FreeBSD.org">fenner\@FreeBSD.org</a>&gt;
 and improved by Henner Zeller  and improved by Henner Zeller
 &lt;<a href="mailto:zeller\@think.de">zeller\@think.de</a>&gt;,  &lt;<a href="mailto:zeller\@think.de">zeller\@think.de</a>&gt;,
 Henrik Nordstr&ouml;m  Henrik Nordstr&ouml;m
Line 159  If you would like to use this CGI script on your own w
Line 160  If you would like to use this CGI script on your own w
 CVS tree, see Zeller's  CVS tree, see Zeller's
 <a href="http://linux.fh-heilbronn.de/~zeller/cgi/cvsweb.cgi"  <a href="http://linux.fh-heilbronn.de/~zeller/cgi/cvsweb.cgi"
 >CVSweb distribution site</a>. Bill's original script can be found  >CVSweb distribution site</a>. Bill's original script can be found
 <a href="http://www.freebsd.org/~fenner/cvsweb/">here</a>.  <a href="http://www.FreeBSD.org/~fenner/cvsweb/">here</a>.
 </p>  </p>
 <p>  <p>
 Please send any suggestions, comments, etc. to  Please send any suggestions, comments, etc. to
 <a href="mailto:fenner\@freebsd.org">Bill Fenner</a> or, regarding the  <a href="mailto:fenner\@FreeBSD.org">Bill Fenner</a> or, regarding the
 modifications, to  modifications, to
 <a href="mailto:knu\@FreeBSD.org">Akinori MUSHA</a>,  <a href="mailto:knu\@FreeBSD.org">Akinori MUSHA</a>,
 <a href="mailto:zeller\@think.de">Henner Zeller</a>,  <a href="mailto:zeller\@think.de">Henner Zeller</a>,
Line 260  $use_descriptions = 0;
Line 261  $use_descriptions = 0;
 # exceed the width of the browser  # exceed the width of the browser
 $hr_breakable = 1;  $hr_breakable = 1;
   
 # give out function names in human readable diffs  # give out function names in diffs
 # this just makes sense if we have C-files, otherwise  # this just makes sense if we have C-files, otherwise
 # diff's heuristic doesn't work well ..  # diff's heuristic doesn't work well ..
 # ( '-p' option to diff)  # ( '-p' option to diff)
 $hr_funout = 1;  $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.
 %functionlineregexp = (  %funcline_regexp = (
                        "\\.(4th|fr)\$" => "\\(^\\| \\|\t\\): ",                      "\\.(4th|fr)\$" => "\\(^\\| \\|\t\\): ",
                       );                     );
   
 # ignore whitespaces for human readable diffs  # ignore whitespaces for human readable diffs
 # (indendation and stuff ..)  # (indendation and stuff ..)
 # ( '-w' option to diff)  # ( '-w' option to diff)
 $hr_ignwhite = 1;  $hr_ignwhite = 0;
   
 # ignore diffs which are caused by  # ignore diffs which are caused by
 # keyword-substitution like $Id - Stuff  # keyword-substitution like $Id - Stuff

Legend:
Removed from v.3.3  
changed lines
  Added in v.3.7

CVSweb