=================================================================== RCS file: /cvs/cvsweb/Attic/cvsweb.conf,v retrieving revision 3.3 retrieving revision 3.6 diff -u -p -r3.3 -r3.6 --- cvsweb/Attic/cvsweb.conf 2000/07/20 11:14:03 3.3 +++ cvsweb/Attic/cvsweb.conf 2000/07/29 12:04:40 3.6 @@ -6,7 +6,8 @@ # 1999 H. Nordstrom # 2000 A. MUSHA # based on work by Bill Fenner -# $Id: cvsweb.conf,v 3.3 2000/07/20 11:14:03 knu Exp $ +# $zId: cvsweb.conf,v 3.27 2000/07/27 10:16:39 kcoar Exp $ +# $Id: cvsweb.conf,v 3.6 2000/07/29 12:04:40 knu Exp $ # ### @@ -57,7 +58,7 @@ $cvstreedefault = 'local'; ############## # 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 @@ -90,7 +91,7 @@ $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi"; # u Unified diff # c Context diff # s Side by side - "f" => "h", + "f" => ($is_textbased ? "u" : "h"), # hidecvsroot: Don't show the CVSROOT directory # 1 Hide CVSROOT directory @@ -99,7 +100,7 @@ $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi"; # hidenonreadable: Don't show entries which cannot be read # 1 Hide non-readable entries - # 0 Show non-readble entries + # 0 Show non-readable entries "hidenonreadable" => "1", ); @@ -142,7 +143,7 @@ display diffs between arbitrary revisions.

This script has been written by Bill Fenner -<fenner\@freebsd.org> +<fenner\@FreeBSD.org> and improved by Henner Zeller <zeller\@think.de>, Henrik Nordström @@ -159,11 +160,11 @@ If you would like to use this CGI script on your own w CVS tree, see Zeller's CVSweb distribution site. Bill's original script can be found -here. +here.

Please send any suggestions, comments, etc. to -Bill Fenner or, regarding the +Bill Fenner or, regarding the modifications, to Akinori MUSHA, Henner Zeller, @@ -260,17 +261,17 @@ $use_descriptions = 0; # exceed the width of the browser $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 # diff's heuristic doesn't work well .. # ( '-p' option to diff) -$hr_funout = 1; +$showfunc = 1; # For each pair of regexps, files that match the first regexp will be diff'ed # with an '-F' option with the second regexp. -%functionlineregexp = ( - "\\.(4th|fr)\$" => "\\(^\\| \\|\t\\): ", - ); +%funcline_regexp = ( + "\\.(4th|fr)\$" => "\\(^\\| \\|\t\\): ", + ); # ignore whitespaces for human readable diffs # (indendation and stuff ..)