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

Diff for /cvsweb/cvsweb.cgi between version 1.1.1.7 and 1.1.1.26

version 1.1.1.7, 2000/09/23 20:23:34 version 1.1.1.26, 2001/06/05 10:56:15
Line 1 
Line 1 
 #!/usr/bin/perl5 -ws  #!/usr/bin/perl -wT
 #  #
 # cvsweb - a CGI interface to CVS trees.  # cvsweb - a CGI interface to CVS trees.
 #  #
Line 18 
Line 18 
 # Copyright (c) 1996-1998 Bill Fenner  # Copyright (c) 1996-1998 Bill Fenner
 #           (c) 1998-1999 Henner Zeller  #           (c) 1998-1999 Henner Zeller
 #           (c) 1999      Henrik Nordstrom  #           (c) 1999      Henrik Nordstrom
 #           (c) 2000      Akinori MUSHA  #           (c) 2000-2001 Akinori MUSHA
 # All rights reserved.  # All rights reserved.
 #  #
 # Redistribution and use in source and binary forms, with or without  # Redistribution and use in source and binary forms, with or without
Line 42 
Line 42 
 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF  # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 # SUCH DAMAGE.  # SUCH DAMAGE.
 #  #
 # $zId: cvsweb.cgi,v 1.103 2000/09/20 17:02:29 jumager Exp $  # $zId: cvsweb.cgi,v 1.106 2001/03/10 01:16:27 hnordstrom Exp $
 # $kId: cvsweb.cgi,v 1.26 2000/09/22 11:13:17 knu Exp $  # $Idaemons: /home/cvs/cvsweb/cvsweb.cgi,v 1.74 2001/06/05 04:46:21 knu Exp $
 #  #
 ###  ###
   
   require 5.000;
   
 use strict;  use strict;
   
 use vars qw (  use vars qw (
     $config $allow_version_select $verbose      $cvsweb_revision
     %CVSROOT %CVSROOTdescr %MIRRORS %DEFAULTVALUE %ICONS %MTYPES      $mydir $uname $config $allow_version_select $verbose
       @CVSrepositories @CVSROOT %CVSROOT %CVSROOTdescr
       %MIRRORS %DEFAULTVALUE %ICONS %MTYPES
       @DIFFTYPES %DIFFTYPES @LOGSORTKEYS %LOGSORTKEYS
     %alltags @tabcolors %fileinfo %tags @branchnames %nameprinted      %alltags @tabcolors %fileinfo %tags @branchnames %nameprinted
     %symrev %revsym @allrevisions %date %author @revdisplayorder      %symrev %revsym @allrevisions %date %author @revdisplayorder
     @revisions %state %difflines %log %branchpoint @revorder      @revisions %state %difflines %log %branchpoint @revorder
     $prcgi @prcategories $prcategories $mancgi      $prcgi @prcategories $re_prcategories $prkeyword $re_prkeyword $mancgi
     $checkoutMagic $doCheckout $scriptname $scriptwhere      $checkoutMagic $doCheckout $scriptname $scriptwhere
     $where $pathinfo $Browser $nofilelinks $maycompress @stickyvars      $where $pathinfo $Browser $nofilelinks $maycompress @stickyvars
     %funcline_regexp $is_mod_perl      %funcline_regexp $is_mod_perl
     $is_lynx $is_w3m $is_msie $is_mozilla3 $is_textbased      $is_links $is_lynx $is_w3m $is_msie $is_mozilla3 $is_textbased
     %input $query $barequery $sortby $bydate $byrev $byauthor      %input $query $barequery $sortby $bydate $byrev $byauthor
     $bylog $byfile $hr_default $logsort $cvstree $cvsroot      $bylog $byfile $defaultDiffType $logsort $cvstree $cvsroot
     $mimetype $defaultTextPlain $defaultViewable $allow_compress      $mimetype $charset $defaultTextPlain $defaultViewable
     $GZIPBIN $backicon $diricon $fileicon $fullname $newname      $command_path %CMD $allow_compress
     $cvstreedefault $body_tag $body_tag_for_src      $backicon $diricon $fileicon
     $logo $defaulttitle $address      $fullname $newname $cvstreedefault
       $body_tag $body_tag_for_src $logo $defaulttitle $address
     $long_intro $short_instruction $shortLogLen      $long_intro $short_instruction $shortLogLen
     $show_author $dirtable $tablepadding $columnHeaderColorDefault      $show_author $dirtable $tablepadding $columnHeaderColorDefault
     $columnHeaderColorSorted $hr_breakable $showfunc $hr_ignwhite      $columnHeaderColorSorted $hr_breakable $showfunc $hr_ignwhite
Line 74  use vars qw (
Line 80  use vars qw (
     $difffontsize $inputTextSize $mime_types $allow_annotate      $difffontsize $inputTextSize $mime_types $allow_annotate
     $allow_markup $use_java_script $open_extern_window      $allow_markup $use_java_script $open_extern_window
     $extern_window_width $extern_window_height $edit_option_form      $extern_window_width $extern_window_height $edit_option_form
     $checkout_magic $show_subdir_lastmod $show_log_in_markup $v      $show_subdir_lastmod $show_log_in_markup $preformat_in_markup $v
     $navigationHeaderColor $tableBorderColor $markupLogColor      $navigationHeaderColor $tableBorderColor $markupLogColor
     $tabstop $state $annTable $sel $curbranch @HideModules      $tabstop $state $annTable $sel $curbranch @HideModules
     $module $use_descriptions %descriptions @mytz $dwhere $moddate      $module $use_descriptions %descriptions @mytz $dwhere $moddate
     $use_moddate $has_zlib $gzip_open      $use_moddate $has_zlib $gzip_open
       $allow_tar @tar_options @gzip_options @cvs_options
       $LOG_FILESEPARATOR $LOG_REVSEPARATOR
 );  );
   
 sub printDiffSelect($);  sub printDiffSelect($);
   sub printDiffLinks($$);
   sub printLogSortSelect($);
 sub findLastModifiedSubdirs(@);  sub findLastModifiedSubdirs(@);
   sub htmlify_sub(&$);
 sub htmlify($;$);  sub htmlify($;$);
 sub spacedHtmlText($;$);  sub spacedHtmlText($;$);
 sub link($$);  sub link($$);
Line 90  sub revcmp($$);
Line 101  sub revcmp($$);
 sub fatal($$);  sub fatal($$);
 sub redirect($);  sub redirect($);
 sub safeglob($);  sub safeglob($);
   sub search_path($);
 sub getMimeTypeFromSuffix($);  sub getMimeTypeFromSuffix($);
 sub head($;$);  sub head($;$);
 sub scan_directives(@);  sub scan_directives(@);
Line 115  sub download_url($$;$);
Line 127  sub download_url($$;$);
 sub download_link($$$;$);  sub download_link($$$;$);
 sub toggleQuery($$);  sub toggleQuery($$);
 sub urlencode($);  sub urlencode($);
   sub htmlquote($);
   sub htmlunquote($);
   sub hrefquote($);
 sub http_header(;$);  sub http_header(;$);
 sub html_header($);  sub html_header($);
 sub html_footer();  sub html_footer();
Line 122  sub link_tags($);
Line 137  sub link_tags($);
 sub forbidden_module($);  sub forbidden_module($);
   
 ##### Start of Configuration Area ########  ##### Start of Configuration Area ########
 use Cwd;  delete $ENV{PATH};
   
 # == EDIT this ==  $cvsweb_revision = '1.106' . '.' . (split(/ /,
 # User configuration is stored in   q$Idaemons: /home/cvs/cvsweb/cvsweb.cgi,v 1.74 2001/06/05 04:46:21 knu Exp $
 $config = undef;  ))[2];
   
 for ($ENV{CVSWEB_CONFIG},  use File::Basename;
 #     '/home/knu/etc/cvsweb.conf',  
      '/usr/local/etc/cvsweb.conf',  ($mydir) = (dirname($0) =~ /(.*)/); # untaint
      getcwd . '/cvsweb.conf') {  
   $config = $_ if defined($_) && -r $_;  # == EDIT this ==
   # Locations to search for user configuration, in order:
   for (
        "$mydir/cvsweb.conf",
        '/usr/local/etc/cvsweb/cvsweb.conf'
       ) {
       if (defined($_) && -r $_) {
           $config = $_;
           last;
       }
 }  }
   
 # == Configuration defaults ==  # == Configuration defaults ==
Line 144  $allow_version_select = 1;
Line 168  $allow_version_select = 1;
   
 ######## Configuration variables #########  ######## Configuration variables #########
 # These are defined to allow checking with perl -cw  # These are defined to allow checking with perl -cw
 %CVSROOT = %MIRRORS = %DEFAULTVALUE = %ICONS = %MTYPES =  @CVSrepositories = @CVSROOT = %CVSROOT =
   %MIRRORS = %DEFAULTVALUE = %ICONS = %MTYPES =
 %tags = %alltags = @tabcolors = ();  %tags = %alltags = @tabcolors = ();
 $cvstreedefault = $body_tag = $body_tag_for_src =  $cvstreedefault = $body_tag = $body_tag_for_src =
 $logo = $defaulttitle = $address =  $logo = $defaulttitle = $address =
 $long_intro = $short_instruction = $shortLogLen =  $long_intro = $short_instruction = $shortLogLen =
 $show_author = $dirtable = $tablepadding = $columnHeaderColorDefault =  $show_author = $dirtable = $tablepadding = $columnHeaderColorDefault =
Line 156  $diffcolorChange = $diffcolorAdd = $diffcolorDarkChang
Line 181  $diffcolorChange = $diffcolorAdd = $diffcolorDarkChang
 $difffontsize = $inputTextSize = $mime_types = $allow_annotate =  $difffontsize = $inputTextSize = $mime_types = $allow_annotate =
 $allow_markup = $use_java_script = $open_extern_window =  $allow_markup = $use_java_script = $open_extern_window =
 $extern_window_width = $extern_window_height = $edit_option_form =  $extern_window_width = $extern_window_height = $edit_option_form =
 $checkout_magic = $show_subdir_lastmod = $show_log_in_markup = $v =  $show_subdir_lastmod = $show_log_in_markup = $v =
 $navigationHeaderColor = $tableBorderColor = $markupLogColor =  $navigationHeaderColor = $tableBorderColor = $markupLogColor =
 $tabstop = $use_moddate = $moddate = $gzip_open = undef;  $tabstop = $use_moddate = $moddate = $gzip_open = undef;
   
   $LOG_FILESEPARATOR = q/^={77}$/;
   $LOG_REVSEPARATOR = q/^-{28}$/;
   
   @DIFFTYPES = qw(h H u c s);
   @DIFFTYPES{@DIFFTYPES} = (
                             {
                              'descr'   => 'colored',
                              'opts'    => [ '-u' ],
                              'colored' => 1,
                             },
                             {
                              'descr'   => 'long colored',
                              'opts'    => [ '--unified=15' ],
                              'colored' => 1,
                             },
                             {
                              'descr'   => 'unified',
                              'opts'    => [ '-u' ],
                              'colored' => 0,
                             },
                             {
                              'descr'   => 'context',
                              'opts'    => [ '-c' ],
                              'colored' => 0,
                             },
                             {
                              'descr'   => 'side by side',
                              'opts'    => [ '--side-by-side', '--width=164' ],
                              'colored' => 0,
                             },
                            );
   
   @LOGSORTKEYS = qw(cvs date rev);
   @LOGSORTKEYS{@LOGSORTKEYS} = (
                                 {
                                  'descr' => 'Not sorted',
                                 },
                                 {
                                  'descr' => 'Commit date',
                                 },
                                 {
                                  'descr' => 'Revision',
                                 },
                                );
   
   
 ##### End of configuration variables #####  ##### End of configuration variables #####
   
 use Time::Local;  use Time::Local;
Line 176  $verbose = $v;
Line 247  $verbose = $v;
 $checkoutMagic = "~checkout~";  $checkoutMagic = "~checkout~";
 $pathinfo = defined($ENV{PATH_INFO}) ? $ENV{PATH_INFO} : '';  $pathinfo = defined($ENV{PATH_INFO}) ? $ENV{PATH_INFO} : '';
 $where = $pathinfo;  $where = $pathinfo;
 $doCheckout = ($where =~ /^\/$checkoutMagic/);  $doCheckout = ($where =~ m|^/$checkoutMagic/|);
 $where =~ s|^/($checkoutMagic)?||;  $where =~ s|^/$checkoutMagic/|/|;
 $where =~ s|/+$||;  $where =~ s|^/||;
 $scriptname = defined($ENV{SCRIPT_NAME}) ? $ENV{SCRIPT_NAME} : '';  $scriptname = defined($ENV{SCRIPT_NAME}) ? $ENV{SCRIPT_NAME} : '';
 $scriptname =~ s|^/?|/|;  $scriptname =~ s|^/*|/|;
 $scriptname =~ s|/+$||;  
 $scriptwhere = $scriptname;  # Let's workaround thttpd's stupidity..
 if ($where) {  if ($scriptname =~ m|/$|) {
     $scriptwhere .= '/' . urlencode($where);      $pathinfo .= '/';
       my $re = quotemeta $pathinfo;
       $scriptname =~ s/$re$//;
 }  }
   
   $scriptwhere = $scriptname;
   $scriptwhere .= '/' . urlencode($where);
   $where = '/' if ($where eq '');
   
 $is_mod_perl = defined($ENV{MOD_PERL});  $is_mod_perl = defined($ENV{MOD_PERL});
   
 # in lynx, it it very annoying to have two links  # in lynx, it it very annoying to have two links
 # per file, so disable the link at the icon  # per file, so disable the link at the icon
 # in this case:  # in this case:
 $Browser = $ENV{HTTP_USER_AGENT};  $Browser = $ENV{HTTP_USER_AGENT} || '';
   $is_links = ($Browser =~ m`^Links `);
 $is_lynx = ($Browser =~ m`^Lynx/`i);  $is_lynx = ($Browser =~ m`^Lynx/`i);
 $is_w3m = ($Browser =~ m`^w3m/`i);  $is_w3m = ($Browser =~ m`^w3m/`i);
 $is_msie = ($Browser =~ m`MSIE`);  $is_msie = ($Browser =~ m`MSIE`);
 $is_mozilla3 = ($Browser =~ m`^Mozilla/[3-9]`);  $is_mozilla3 = ($Browser =~ m`^Mozilla/[3-9]`);
   
 $is_textbased = ($is_lynx || $is_w3m);  $is_textbased = ($is_links || $is_lynx || $is_w3m);
   
 $nofilelinks = $is_textbased;  $nofilelinks = $is_textbased;
   
Line 224  $maycompress = (((defined($ENV{HTTP_ACCEPT_ENCODING})
Line 302  $maycompress = (((defined($ENV{HTTP_ACCEPT_ENCODING})
 @stickyvars = qw(cvsroot hideattic sortby logsort f only_with_tag);  @stickyvars = qw(cvsroot hideattic sortby logsort f only_with_tag);
   
 if (-f $config) {  if (-f $config) {
     do $config;     require $config
 }       || &fatal("500 Internal Error",
 else {                 sprintf('Error in loading configuration file: %s<BR><BR>%s<BR>',
                          $config, &htmlify($@)));
   } else {
    &fatal("500 Internal Error",     &fatal("500 Internal Error",
           'Configuration not found.  Set the variable <code>$config</code> '            'Configuration not found.  Set the variable <code>$config</code> '
           . 'in cvsweb.cgi, or the environment variable '            . 'in cvsweb.cgi to your <b>cvsweb.conf</b> configuration file first.');
           . '<code>CVSWEB_CONFIG</code>, to your <b>cvsweb.conf</b> '  
           . 'configuration file first.');  
 }  }
   
 undef %input;  undef %input;
Line 239  $query = $ENV{QUERY_STRING};
Line 317  $query = $ENV{QUERY_STRING};
   
 if (defined($query) && $query ne '') {  if (defined($query) && $query ne '') {
     foreach (split(/&/, $query)) {      foreach (split(/&/, $query)) {
           y/+/ /;
         s/%(..)/sprintf("%c", hex($1))/ge;      # unquote %-quoted          s/%(..)/sprintf("%c", hex($1))/ge;      # unquote %-quoted
         if (/(\S+)=(.*)/) {          if (/(\S+)=(.*)/) {
             $input{$1} = $2 if ($2 ne "");              $input{$1} = $2 if ($2 ne "");
Line 278  foreach (keys %DEFAULTVALUE)
Line 357  foreach (keys %DEFAULTVALUE)
 }  }
   
 $barequery = "";  $barequery = "";
   my @barequery;
 foreach (@stickyvars) {  foreach (@stickyvars) {
     # construct a query string with the sticky non default parameters set      # construct a query string with the sticky non default parameters set
     if (defined($input{$_}) && $input{$_} ne '' &&      if (defined($input{$_}) && $input{$_} ne '' &&
         !(defined($DEFAULTVALUE{$_}) && $input{$_} eq $DEFAULTVALUE{$_})) {          !(defined($DEFAULTVALUE{$_}) && $input{$_} eq $DEFAULTVALUE{$_})) {
         if ($barequery) {          push @barequery, join('=', urlencode($_), urlencode($input{$_}));
             $barequery = $barequery . "&amp;";  
         }  
         my $thisval = urlencode($_) . "=" . urlencode($input{$_});  
         $barequery .= $thisval;  
     }      }
 }  }
 # is there any query ?  # is there any query ?
 if ($barequery) {  if (@barequery) {
       $barequery = join('&', @barequery);
     $query = "?$barequery";      $query = "?$barequery";
     $barequery = "&amp;" . $barequery;      $barequery = "&$barequery";
 }  }
 else {  else {
     $query = "";      $query = "";
 }  }
   undef @barequery;
   
   if (defined($input{path})) {
       redirect("$scriptname/$input{path}$query");
   }
   
 # get actual parameters  # get actual parameters
 $sortby = $input{"sortby"};  $sortby = $input{"sortby"};
 $bydate = 0;  $bydate = 0;
Line 321  else {
Line 403  else {
     $byfile = 1;      $byfile = 1;
 }  }
   
 $hr_default = $input{'f'} eq 'h';  $defaultDiffType = $input{'f'};
   
 $logsort = $input{'logsort'};  $logsort = $input{'logsort'};
   
   my @tmp = @CVSrepositories;
   my @pair;
   
   while (@pair = splice(@tmp, 0, 2)) {
       my($key, $val) = @pair;
       my($descr, $cvsroot) = @$val;
   
       next if !-d $cvsroot;
   
       $CVSROOTdescr{$key} = $descr;
       $CVSROOT{$key} = $cvsroot;
       push @CVSROOT, $key;
   }
   undef @tmp;
   undef @pair;
   
 ## Default CVS-Tree  ## Default CVS-Tree
 if (!defined($CVSROOT{$cvstreedefault})) {  if (!defined($CVSROOT{$cvstreedefault})) {
    &fatal("500 Internal Error",     &fatal("500 Internal Error",
Line 344  if ($input{'cvsroot'} && $CVSROOT{$input{'cvsroot'}}) 
Line 441  if ($input{'cvsroot'} && $CVSROOT{$input{'cvsroot'}}) 
 $cvsroot = $CVSROOT{$cvstree};  $cvsroot = $CVSROOT{$cvstree};
   
 # create icons out of description  # create icons out of description
 foreach my $k (keys %ICONS) {  my $k;
   foreach $k (keys %ICONS) {
     no strict 'refs';      no strict 'refs';
     my ($itxt,$ipath,$iwidth,$iheight) = @{$ICONS{$k}};      my ($itxt,$ipath,$iwidth,$iheight) = @{$ICONS{$k}};
     if ($ipath) {      if ($ipath) {
         ${"${k}icon"} = "<IMG SRC=\"$ipath\" ALT=\"$itxt\" BORDER=\"0\" WIDTH=\"$iwidth\" HEIGHT=\"$iheight\">";          ${"${k}icon"} = sprintf('<IMG SRC="%s" ALT="%s" BORDER="0" WIDTH="%d" HEIGHT="%d">',
                                   hrefquote($ipath), htmlquote($itxt), $iwidth, $iheight)
     }      }
     else {      else {
         ${"${k}icon"} = $itxt;          ${"${k}icon"} = $itxt;
     }      }
 }  }
   undef $k;
   
   my $config_cvstree = "$config-$cvstree";
   
 # Do some special configuration for cvstrees  # Do some special configuration for cvstrees
 do "$config-$cvstree" if (-f "$config-$cvstree");  if (-f $config_cvstree) {
      require $config_cvstree
        || &fatal("500 Internal Error",
                  sprintf('Error in loading configuration file: %s<BR><BR>%s<BR>',
                          $config_cvstree, &htmlify($@)));
   }
   undef $config_cvstree;
   
 $prcategories = '(?:' . join('|', @prcategories) . ')';  $re_prcategories = '(?:' . join('|', @prcategories) . ')' if @prcategories;
   $re_prkeyword = quotemeta($prkeyword) if defined($prkeyword);
 $prcgi .= '%s' if defined($prcgi) && $prcgi !~ /%s/;  $prcgi .= '%s' if defined($prcgi) && $prcgi !~ /%s/;
   
 $fullname = $cvsroot . '/' . $where;  $fullname = "$cvsroot/$where";
 $mimetype = &getMimeTypeFromSuffix ($fullname);  $mimetype = &getMimeTypeFromSuffix ($fullname);
 $defaultTextPlain = ($mimetype eq "text/plain");  $defaultTextPlain = ($mimetype eq "text/plain");
 $defaultViewable = $allow_markup && viewable($mimetype);  $defaultViewable = $allow_markup && viewable($mimetype);
   
 # search for GZIP if compression allowed  my $rewrite = 0;
 # We've to find out if the GZIP-binary exists .. otherwise  
 # ge get an Internal Server Error if we try to pipe the  if ($pathinfo =~ m|//|) {
 # output through the nonexistent gzip ..      $pathinfo =~ y|/|/|s;
 # any more elegant ways to prevent this are welcome!      $rewrite = 1;
 if ($allow_compress && $maycompress && !$has_zlib) {  
     foreach (split(/:/, $ENV{PATH})) {  
         if (-x "$_/gzip") {  
             $GZIPBIN = "$_/gzip";  
             last;  
         }  
     }  
 }  }
   
 if (-d $fullname) {  if (-d $fullname && $pathinfo !~ m|/$|) {
     #      $pathinfo .= '/';
     # ensure, that directories always end with (exactly) one '/'      $rewrite = 1;
     # to allow relative URL's. If they're not, make a redirect.  
     ##  
     if (!($pathinfo =~ m|/$|) || ($pathinfo =~ m |/{2,}$|)) {  
         redirect ($scriptwhere . '/' . $query);  
     }  
     else {  
         $where .= '/';  
         $scriptwhere .= '/';  
     }  
 }  }
   
   if (!-d $fullname && $pathinfo =~ m|/$|) {
       chop $pathinfo;
       $rewrite = 1;
   }
   
   if ($rewrite) {
       redirect($scriptname . urlencode($pathinfo) . $query);
   }
   
   undef $rewrite;
   
 if (!-d $cvsroot) {  if (!-d $cvsroot) {
     &fatal("500 Internal Error",'$CVSROOT not found!<P>The server on which the CVS tree lives is probably down.  Please try again in a few minutes.');      &fatal("500 Internal Error",'$CVSROOT not found!<P>The server on which the CVS tree lives is probably down.  Please try again in a few minutes.');
 }  }
Line 406  $module = $1;
Line 510  $module = $1;
 if ($module && &forbidden_module($module)) {  if ($module && &forbidden_module($module)) {
     &fatal("403 Forbidden", "Access to $where forbidden.");      &fatal("403 Forbidden", "Access to $where forbidden.");
 }  }
   
   #
   # Handle tarball downloads before any headers are output.
   #
   if ($input{tarball}) {
       &fatal("403 Forbidden", "Downloading tarballs is prohibited.")
         unless $allow_tar;
       my($module) = ($where =~ m,^/?(.*),);       # untaint
       $module =~ s,/[^/]*$,,;
       my($basedir) = ($module =~ m,([^/]+)$,);
   
       if ($basedir eq '' || $module eq '') {
           &fatal("500 Internal Error", "You cannot download the top level directory.");
       }
   
       my $tmpdir = "/tmp/.cvsweb.$$." . int(time);
   
       mkdir($tmpdir, 0700)
         or &fatal("500 Internal Error", "Unable to make temporary directory: $!");
   
       my $fatal = '';
   
       while (1) {
           my $tag = (exists $input{only_with_tag} && length $input{only_with_tag})
             ? $input{only_with_tag} : "HEAD";
   
           system $CMD{cvs}, @cvs_options, '-Qd', $cvsroot, 'export', '-r', $tag, '-d', "$tmpdir/$basedir", $module
             and $fatal = "500 Internal Error","cvs co failure: $!: $module"
               && last;
   
           $| = 1; # Essential to get the buffering right.
   
           print "Content-type: application/x-gzip\r\n\r\n";
   
           system "$CMD{tar} @tar_options -cf - -C $tmpdir $basedir | $CMD{gzip} @gzip_options -c"
             and $fatal = "500 Internal Error","tar zc failure: $!: $basedir"
               && last;
   
           last;
       }
   
       system $CMD{rm}, '-rf', $tmpdir if -d $tmpdir;
   
       &fatal($fatal) if $fatal;
   
       exit;
   }
   
 ##############################  ##############################
 # View a directory  # View a directory
 ###############################  ###############################
 elsif (-d $fullname) {  if (-d $fullname) {
         my $dh = do {local(*DH);};          my $dh = do {local(*DH);};
         opendir($dh, $fullname) || &fatal("404 Not Found","$where: $!");          opendir($dh, $fullname) || &fatal("404 Not Found","$where: $!");
         my @dir = readdir($dh);          my @dir = readdir($dh);
Line 465  elsif (-d $fullname) {
Line 617  elsif (-d $fullname) {
             }              }
             print "<table  width=\"100%\" border=0 cellspacing=1 cellpadding=$tablepadding>\n";              print "<table  width=\"100%\" border=0 cellspacing=1 cellpadding=$tablepadding>\n";
             $infocols++;              $infocols++;
             print "<tr><th align=left bgcolor=\"" . (($byfile) ?              printf '<tr><th align=left bgcolor="%s">',
                                                    $columnHeaderColorSorted :                $byfile ? $columnHeaderColorSorted : $columnHeaderColorDefault;
                                                    $columnHeaderColorDefault) . "\">";              if ($byfile) {
             print "<a href=\"./" . &toggleQuery("sortby","file") .                  print 'File';
                 "#dirlist\">" if (!$byfile);              } else {
             print "File";                  print &link('File', sprintf('./%s#dirlist',
             print "</a>" if (!$byfile);                                              &toggleQuery("sortby", "file")));
               }
             print "</th>";              print "</th>";
             # do not display the other column-headers, if we do not have any files              # do not display the other column-headers, if we do not have any files
             # with revision information:              # with revision information:
             if (scalar(%fileinfo)) {              if (scalar(%fileinfo)) {
                 $infocols++;                  $infocols++;
                 print "<th align=left bgcolor=\"" . (($byrev) ?                  printf '<th align=left bgcolor="%s">',
                                                    $columnHeaderColorSorted :                    $byrev ? $columnHeaderColorSorted : $columnHeaderColorDefault;
                                                    $columnHeaderColorDefault) . "\">";                  if ($byrev) {
                 print "<a href=\"./" . &toggleQuery ("sortby","rev") .                      print 'Rev.';
                     "#dirlist\">" if (!$byrev);                  } else {
                 print "Rev.";                      print &link('Rev.', sprintf('./%s#dirlist',
                 print "</a>" if (!$byrev);                                                  &toggleQuery("sortby", "rev")));
                   }
                 print "</th>";                  print "</th>";
                 $infocols++;                  $infocols++;
                 print "<th align=left bgcolor=\"" . (($bydate) ?                  printf '<th align=left bgcolor="%s">',
                                                    $columnHeaderColorSorted :                    $bydate ? $columnHeaderColorSorted : $columnHeaderColorDefault;
                                                    $columnHeaderColorDefault) . "\">";                  if ($bydate) {
                 print "<a href=\"./" . &toggleQuery ("sortby","date") .                      print 'Age';
                     "#dirlist\">" if (!$bydate);                  } else {
                 print "Age";                      print &link('Age', sprintf('./%s#dirlist',
                 print "</a>" if (!$bydate);                                                 &toggleQuery("sortby", "date")));
                   }
                 print "</th>";                  print "</th>";
                 if ($show_author) {                  if ($show_author) {
                     $infocols++;                      $infocols++;
                     print "<th align=left bgcolor=\"" . (($byauthor) ?                      printf '<th align=left bgcolor="%s">',
                                                    $columnHeaderColorSorted :                        $byauthor ? $columnHeaderColorSorted : $columnHeaderColorDefault;
                                                    $columnHeaderColorDefault) . "\">";                      if ($byauthor) {
                     print "<a href=\"./" . &toggleQuery ("sortby","author") .                          print 'Author';
                             "#dirlist\">" if (!$byauthor);                      } else {
                     print "Author";                          print &link('Author', sprintf('./%s#dirlist',
                     print "</a>" if (!$byauthor);                                                        &toggleQuery("sortby", "author")));
                       }
                     print "</th>";                      print "</th>";
                 }                  }
                 $infocols++;                  $infocols++;
                 print "<th align=left bgcolor=\"" . (($bylog) ?                  printf '<th align=left bgcolor="%s">',
                                                $columnHeaderColorSorted :                    $bylog ? $columnHeaderColorSorted : $columnHeaderColorDefault;
                                                $columnHeaderColorDefault) . "\">";                  if ($bylog) {
                 print "<a href=\"./", toggleQuery("sortby","log"), "#dirlist\">" if (!$bylog);                      print 'Last log entry';
                 print "Last log entry";                  } else {
                 print "</a>" if (!$bylog);                      print &link('Last log entry', sprintf('./%s#dirlist',
                                                             &toggleQuery("sortby", "log")));
                   }
                 print "</th>";                  print "</th>";
             }              }
             elsif ($use_descriptions) {              elsif ($use_descriptions) {
                 print "<th align=left bgcolor=\"". $columnHeaderColorDefault . "\">";                  printf '<th align=left bgcolor="%s">', $columnHeaderColorDefault;
                 print "Description";                  print "Description";
                 $infocols++;                  $infocols++;
             }              }
Line 540  elsif (-d $fullname) {
Line 698  elsif (-d $fullname) {
             closedir($dh);              closedir($dh);
         }          }
   
         my $hideAtticToggleLink = "<a href=\"./" .          my $hideAtticToggleLink = $input{'hideattic'} ? '' :
                 &toggleQuery ("hideattic") .            &link('[Hide]', sprintf('./%s#dirlist',
                 "#dirlist\">[Hide]</a>" if (!$input{'hideattic'});                                    &toggleQuery ("hideattic")));
   
         # Sort without the Attic/ pathname.          # Sort without the Attic/ pathname.
         # place directories first          # place directories first
Line 578  elsif (-d $fullname) {
Line 736  elsif (-d $fullname) {
   
             if ($_ eq '..' || -d "$fullname/$_") {              if ($_ eq '..' || -d "$fullname/$_") {
                 next if ($_ eq '..' && $where eq '/');                  next if ($_ eq '..' && $where eq '/');
                 my ($rev,$date,$log,$author,$filename) = @{$fileinfo{$_}}                  my ($rev,$date,$log,$author,$filename);
                   ($rev,$date,$log,$author,$filename) = @{$fileinfo{$_}}
                     if (defined($fileinfo{$_}));                      if (defined($fileinfo{$_}));
                 print "<tr bgcolor=\"" . @tabcolors[$dirrow%2] . "\"><td>" if ($dirtable);                  printf '<tr bgcolor="%s"><td>', $tabcolors[$dirrow % 2] if $dirtable;
                 if ($_ eq '..') {                  if ($_ eq '..') {
                     $url = "../" . $query;                      $url = "../$query";
                     if ($nofilelinks) {                      if ($nofilelinks) {
                         print $backicon;                          print $backicon;
                     }                      }
                     else {                      else {
                         print &link($backicon,$url);                          print &link($backicon, $url);
                     }                      }
                     print " ", &link("Previous Directory",$url);                      print " ", &link("Parent Directory", $url);
                 }                  }
                 else {                  else {
                     $url = urlencode($_) . '/' . $query;                      $url = './' . urlencode($_) . "/$query";
                     print "<A NAME=\"$_\"></A>";                      print "<A NAME=\"$_\"></A>";
                     if ($nofilelinks) {                      if ($nofilelinks) {
                         print $diricon;                          print $diricon;
                     }                      }
                     else {                      else {
                         print &link($diricon,$url);                          print &link($diricon, $url);
                     }                      }
                     print " ", &link($_ . "/", $url), $attic;                      print " ", &link("$_/", $url), $attic;
                     if ($_ eq "Attic") {                      if ($_ eq "Attic") {
                         print "&nbsp; <a href=\"./" .                          print "&nbsp; ";
                             &toggleQuery ("hideattic") .                          print &link("[Don't hide]", sprintf('./%s#dirlist',
                                 "#dirlist\">[Don't hide]</a>";                                                              &toggleQuery ("hideattic")));
                     }                      }
                 }                  }
                 # Show last change in dir                  # Show last change in dir
                 if ($filename) {                  if ($filename) {
                     print "</td><td>&nbsp;</td><td>&nbsp;" if ($dirtable);                      print "</td><td>&nbsp;</td><td>&nbsp;" if ($dirtable);
                     if ($date) {                      if ($date) {
                         print " <i>" . readableTime(time() - $date,0) . "</i>";                          print " <i>", readableTime(time() - $date,0), "</i>";
                     }                      }
                     if ($show_author) {                      if ($show_author) {
                         print "</td><td>&nbsp;" if ($dirtable);                          print "</td><td>&nbsp;" if ($dirtable);
Line 622  elsif (-d $fullname) {
Line 781  elsif (-d $fullname) {
                     print "$filename/$rev";                      print "$filename/$rev";
                     print "<BR>" if ($dirtable);                      print "<BR>" if ($dirtable);
                     if ($log) {                      if ($log) {
                         print "&nbsp;<font size=-1>"                          print "&nbsp;<font size=-1>",
                             . &htmlify(substr($log,0,$shortLogLen));                            &htmlify(substr($log,0,$shortLogLen));
                         if (length $log > 80) {                          if (length $log > 80) {
                             print "...";                              print "...";
                         }                          }
Line 633  elsif (-d $fullname) {
Line 792  elsif (-d $fullname) {
                 else {                  else {
                     my ($dwhere) = ($where ne "/" ? $where : "") . $_;                      my ($dwhere) = ($where ne "/" ? $where : "") . $_;
                     if ($use_descriptions && defined $descriptions{$dwhere}) {                      if ($use_descriptions && defined $descriptions{$dwhere}) {
                         print "<TD COLSPAN=" . ($infocols-1) . ">&nbsp;" if $dirtable;                          print "<TD COLSPAN=", ($infocols-1), ">&nbsp;" if $dirtable;
                         print $descriptions{$dwhere};                          print $descriptions{$dwhere};
                     } elsif ($dirtable && $infocols > 1) {                      } elsif ($dirtable && $infocols > 1) {
                         # close the row with the appropriate number of                          # close the row with the appropriate number of
Line 655  elsif (-d $fullname) {
Line 814  elsif (-d $fullname) {
             }              }
             elsif (s/,v$//) {              elsif (s/,v$//) {
                 $fileurl = ($attic ? "Attic/" : "") . urlencode($_);                  $fileurl = ($attic ? "Attic/" : "") . urlencode($_);
                 $url = $fileurl . $query;                  $url = './' . $fileurl . $query;
                 my $rev = '';                  my $rev = '';
                 my $date = '';                  my $date = '';
                 my $log = '';                  my $log = '';
Line 664  elsif (-d $fullname) {
Line 823  elsif (-d $fullname) {
                 next if (!defined($fileinfo{$_}));                  next if (!defined($fileinfo{$_}));
                 ($rev,$date,$log,$author) = @{$fileinfo{$_}};                  ($rev,$date,$log,$author) = @{$fileinfo{$_}};
                 $filesfound++;                  $filesfound++;
                 print "<tr bgcolor=\"" . @tabcolors[$dirrow%2] . "\"><td>" if ($dirtable);                  printf '<tr bgcolor="%s"><td>', $tabcolors[$dirrow % 2] if $dirtable;
                 print "<A NAME=\"$_\"></A>";                  print "<A NAME=\"$_\"></A>";
                 if ($nofilelinks) {                  if ($nofilelinks) {
                     print $fileicon;                      print $fileicon;
Line 675  elsif (-d $fullname) {
Line 834  elsif (-d $fullname) {
                 print " ", &link($_, $url), $attic;                  print " ", &link($_, $url), $attic;
                 print "</td><td>&nbsp;" if ($dirtable);                  print "</td><td>&nbsp;" if ($dirtable);
                 download_link($fileurl,                  download_link($fileurl,
                         $rev, $rev,                                $rev, $rev,
                         $defaultViewable ? "text/x-cvsweb-markup" : undef);                                $defaultViewable ? "text/x-cvsweb-markup" : undef);
                 print "</td><td>&nbsp;" if ($dirtable);                  print "</td><td>&nbsp;" if ($dirtable);
                 if ($date) {                  if ($date) {
                     print " <i>" . readableTime(time() - $date,0) . "</i>";                      print " <i>", readableTime(time() - $date,0), "</i>";
                 }                  }
                 if ($show_author) {                  if ($show_author) {
                     print "</td><td>&nbsp;" if ($dirtable);                      print "</td><td>&nbsp;" if ($dirtable);
Line 687  elsif (-d $fullname) {
Line 846  elsif (-d $fullname) {
                 }                  }
                 print "</td><td>&nbsp;" if ($dirtable);                  print "</td><td>&nbsp;" if ($dirtable);
                 if ($log) {                  if ($log) {
                     print " <font size=-1>" . &htmlify(substr($log,0,$shortLogLen));                      print " <font size=-1>", &htmlify(substr($log,0,$shortLogLen));
                     if (length $log > 80) {                      if (length $log > 80) {
                         print "...";                          print "...";
                     }                      }
Line 702  elsif (-d $fullname) {
Line 861  elsif (-d $fullname) {
         if ($dirtable && defined($tableBorderColor)) {          if ($dirtable && defined($tableBorderColor)) {
             print "</td></tr></table>";              print "</td></tr></table>";
         }          }
         print "". ($dirtable == 1) ? "</table>" : "</menu>" . "\n";          print( $dirtable == 1 ? "</table>\n" : "</menu>\n" );
   
         if ($filesexists && !$filesfound) {          if ($filesexists && !$filesfound) {
             print "<P><B>NOTE:</B> There are $filesexists files, but none matches the current tag ($input{only_with_tag})\n";              print "<P><B>NOTE:</B> There are $filesexists files, but none matches the current tag ($input{only_with_tag})\n";
Line 738  elsif (-d $fullname) {
Line 897  elsif (-d $fullname) {
                        ">$tag\n";                         ">$tag\n";
             }              }
             print "</SELECT>\n";              print "</SELECT>\n";
               print " Module path or alias:\n";
               printf "<INPUT TYPE=TEXT NAME=\"path\" VALUE=\"%s\" SIZE=15>\n", htmlquote($where);
             print "<INPUT TYPE=SUBMIT VALUE=\"Go\">\n";              print "<INPUT TYPE=SUBMIT VALUE=\"Go\">\n";
             print "</FORM>\n";              print "</FORM>\n";
         }          }
   
           if ($allow_tar) {
               my($basefile) = ($where =~ m,(?:.*/)?([^/]+),);
   
               if (defined($basefile) && $basefile ne '') {
                   print "<HR NOSHADE>\n",
                     "<DIV align=center>",
                       &link("Download this directory in tarball",
                             # Mangle the filename so browsers show a reasonable
                             # filename to download.
                             "./$basefile.tar.gz$query".
                             ($query ? "&" : "?")."tarball=1"),
                               "</DIV>";
               }
           }
   
         my $formwhere = $scriptwhere;          my $formwhere = $scriptwhere;
         $formwhere =~ s|Attic/?$|| if ($input{'hideattic'});          $formwhere =~ s|Attic/?$|| if ($input{'hideattic'});
   
Line 760  elsif (-d $fullname) {
Line 937  elsif (-d $fullname) {
             print "<OPTION",$byrev ? " SELECTED" : ""," VALUE=rev>Revision";              print "<OPTION",$byrev ? " SELECTED" : ""," VALUE=rev>Revision";
             print "<OPTION",$bylog ? " SELECTED" : ""," VALUE=log>Log message";              print "<OPTION",$bylog ? " SELECTED" : ""," VALUE=log>Log message";
             print "</SELECT></td>";              print "</SELECT></td>";
             print "<td>revisions by: \n";              print "<td>Sort log by: ";
             print "<SELECT NAME=logsort>\n";              printLogSortSelect(0);
             print "<OPTION VALUE=cvs",$logsort eq "cvs" ? " SELECTED" : "", ">Not sorted";              print "</td></tr>";
             print "<OPTION VALUE=date",$logsort eq "date" ? " SELECTED" : "", ">Commit date";  
             print "<OPTION VALUE=rev",$logsort eq "rev" ? " SELECTED" : "", ">Revision";  
             print "</SELECT></td></tr>";  
             print "<tr><td>Diff format: ";              print "<tr><td>Diff format: ";
             printDiffSelect(0);              printDiffSelect(0);
             print "</td>";              print "</td>";
Line 827  elsif (-d $fullname) {
Line 1001  elsif (-d $fullname) {
         # The file has been removed and is in the Attic.          # The file has been removed and is in the Attic.
         # Send a redirect pointing to the file in the Attic.          # Send a redirect pointing to the file in the Attic.
         (my $newplace = $scriptwhere) =~ s|/([^/]+)$|/Attic/$1|;          (my $newplace = $scriptwhere) =~ s|/([^/]+)$|/Attic/$1|;
         &redirect($newplace);          redirect("$newplace$query");
         exit;          exit;
     }      }
     elsif (0 && (my @files = &safeglob($fullname . ",v"))) {      elsif (0 && (my @files = &safeglob($fullname . ",v"))) {
Line 841  elsif (-d $fullname) {
Line 1015  elsif (-d $fullname) {
         my $fh = do {local(*FH);};          my $fh = do {local(*FH);};
         my ($xtra, $module);          my ($xtra, $module);
         # Assume it's a module name with a potential path following it.          # Assume it's a module name with a potential path following it.
         $xtra = $& if (($module = $where) =~ s|/.*||);          $xtra = (($module = $where) =~ s|/.*||) ? $& : '';
         # Is there an indexed version of modules?          # Is there an indexed version of modules?
         if (open($fh, "$cvsroot/CVSROOT/modules")) {          if (open($fh, "< $cvsroot/CVSROOT/modules")) {
             while (<$fh>) {              while (<$fh>) {
                 if (/^(\S+)\s+(\S+)/o && $module eq $1                  if (/^(\S+)\s+(\S+)/o && $module eq $1
                     && -d "${cvsroot}/$2" && $module ne $2) {                      && -d "$cvsroot/$2" && $module ne $2) {
                     &redirect($scriptname . '/' . $2 . $xtra);                      redirect("$scriptname/$2$xtra$query");
                 }                  }
             }              }
         }          }
Line 859  gzipclose();
Line 1033  gzipclose();
   
 sub printDiffSelect($) {  sub printDiffSelect($) {
     my ($use_java_script) = @_;      my ($use_java_script) = @_;
     my ($f) = $input{'f'};      my $f = $input{'f'};
     print "<SELECT NAME=\"f\"";  
     print " onchange=\"submit()\"" if ($use_java_script);      print '<SELECT NAME="f"';
     print ">\n";      print ' onchange="submit()"' if $use_java_script;
     print "<OPTION VALUE=h",$f eq "h" ? " SELECTED" : "", ">Colored Diff";      print '>';
     print "<OPTION VALUE=H",$f eq "H" ? " SELECTED" : "", ">Long Colored Diff";  
     print "<OPTION VALUE=u",$f eq "u" ? " SELECTED" : "", ">Unidiff";      local $_;
     print "<OPTION VALUE=c",$f eq "c" ? " SELECTED" : "", ">Context Diff";      for (@DIFFTYPES) {
     print "<OPTION VALUE=s",$f eq "s" ? " SELECTED" : "", ">Side by Side";          printf('<OPTION VALUE="%s"%s>%s',
                  $_,
                  $f eq $_ ? ' SELECTED' : '',
                  "\u$DIFFTYPES{$_}{'descr'}"
                 );
       }
   
     print "</SELECT>";      print "</SELECT>";
 }  }
   
   sub printLogSortSelect($) {
       my ($use_java_script) = @_;
   
       print '<SELECT NAME="logsort"';
       print ' onchange="submit()"' if $use_java_script;
       print '>';
   
       local $_;
       for (@LOGSORTKEYS) {
           printf('<OPTION VALUE="%s"%s>%s',
                  $_,
                  $logsort eq $_ ? ' SELECTED' : '',
                  "\u$LOGSORTKEYS{$_}{'descr'}"
                 );
       }
   
       print "</SELECT>";
   }
   
 sub findLastModifiedSubdirs(@) {  sub findLastModifiedSubdirs(@) {
     my (@dirs) = @_;      my (@dirs) = @_;
     my ($dirname, @files);      my ($dirname, @files);
Line 905  sub findLastModifiedSubdirs(@) {
Line 1104  sub findLastModifiedSubdirs(@) {
     return @files;      return @files;
 }  }
   
   sub htmlify_sub(&$) {
       (my $proc, local $_) = @_;
       my @a = split(m`(<a [^>]+>[^<]*</a>)`i);
       my $linked;
       my $result = '';
   
       while (($_, $linked) = splice(@a, 0, 2)) {
           &$proc();
           $result .= $_ if defined($_);
           $result .= $linked if defined($linked);
       }
   
       $result;
   }
   
 sub htmlify($;$) {  sub htmlify($;$) {
         my($string, $extra) = @_;      (local $_, my $extra) = @_;
   
         # Special Characters; RFC 1866      $_ = htmlquote($_);
         $string =~ s/&/&amp;/g;  
         $string =~ s/\"/&quot;/g;  
         $string =~ s/</&lt;/g;  
         $string =~ s/>/&gt;/g;  
   
         # get URL's as link ..      # get URL's as link
         $string =~ s`(http|ftp|https)(://[-a-zA-Z0-9%.~:_/]+)([?&]([-a-zA-Z0-9%.~:_]+)=([-a-zA-Z0-9%.~:_])+)*`<A HREF="$1$2$3">$1$2$3</A>`g;    # `      s{
         # get e-mails as link        (http|ftp|https)://\S+
         $string =~ s`([-a-zA-Z0-9_.]+@([-a-zA-Z0-9]+\.)+[A-Za-z]{2,4})`<A HREF="mailto:$1">$1</A>`g;    # `       }{
            &link($&, htmlunquote($&))
        }egx;
   
         if ($extra) {      # get e-mails as link
             # get PR #'s as link ..      $_ = htmlify_sub {
             if (defined($prcgi)) {          s<
                 1 while $string =~ s`\b(pr[:#]?\s*(?:#?\d+[,\s]\s*)*#?)(\d+)\b`$1 . &link($2, sprintf($prcgi, $2))`ie; # `            [\w+=\-.!]+@[\w\-]+(\.[\w\-]+)+
                 $string =~ s`\b${prcategories}/(\d+)\b`&link($&, sprintf($prcgi, $1))`igeo;     # `              ><
             }                &link($&, "mailto:$&")
                   >egix;
       } $_;
   
             # get manpage specs as link ..      if ($extra) {
             if (defined($mancgi)) {          # get PR #'s as link: "PR#nnnn" "PR: nnnn, ..." "PR nnnn, ..." "bin/nnnn"
                 $string =~ s`\b([a-zA-Z]\w+)\(([0-9n])\)\B`&link($&, sprintf($mancgi, $2, $1))`ge; # `          if (defined($prcgi) && defined($re_prcategories) && defined($re_prkeyword)) {
             }              my $prev;
   
               do {
                   $prev = $_;
   
                   $_ = htmlify_sub {
                       s{
                         (\b$re_prkeyword[:\#]?\s*
                          (?:
                           \#?
                           \d+[,\s]\s*
                          )*
                          \#?)
                         (\d+)\b
                        }{
                            $1 . &link($2, sprintf($prcgi, $2))
                        }egix;
                   } $_;
               } while ($_ ne $prev);
   
               $_ = htmlify_sub {
                   s{
                     (\b$re_prcategories/(\d+)\b)
                    }{
                        &link($1, sprintf($prcgi, $2))
                    }egox;
               } $_;
         }          }
   
         return $string;          # get manpage specs as link: "foo.1" "foo(1)"
           if (defined($mancgi)) {
               $_ = htmlify_sub {
                   s{
                     (\b([a-zA-Z][\w.]+)
                      (?:
                       \( ([0-9n]) \)\B
                       |
                       \.([0-9n])\b
                      )
                     )
                    }{
                        &link($1, sprintf($mancgi, defined($3) ? $3 : $4, $2))
                    }egx;
               } $_;
           }
       }
   
       $_;
 }  }
   
 sub spacedHtmlText($;$) {  sub spacedHtmlText($;$) {
Line 966  sub spacedHtmlText($;$) {
Line 1224  sub spacedHtmlText($;$) {
 }  }
   
 sub link($$) {  sub link($$) {
         my($name, $where) = @_;          my($name, $url) = @_;
   
         return "<A HREF=\"$where\">$name</A>\n";          $url =~ s/:/sprintf("%%%02x", ord($&))/eg if $url =~ /^[^a-z]/; # relative
   
           sprintf '<A HREF="%s">%s</A>', hrefquote($url), $name;
 }  }
   
 sub revcmp($$) {  sub revcmp($$) {
Line 1016  sub redirect($) {
Line 1276  sub redirect($) {
                 print "Location: $url\r\n";                  print "Location: $url\r\n";
         }          }
         html_header("Moved");          html_header("Moved");
         print "This document is located <A HREF=$url>here</A>.\n";          print "This document is located ", &link('here', $url), "\n";
         print &html_footer;          print &html_footer;
         exit(1);          exit(1);
 }  }
Line 1042  sub safeglob($) {
Line 1302  sub safeglob($) {
                 $glob =~ s/{([^}]+)}/($t = $1) =~ s-,-|-g; "($t)"/eg;                  $glob =~ s/{([^}]+)}/($t = $1) =~ s-,-|-g; "($t)"/eg;
                 foreach (readdir($dh)) {                  foreach (readdir($dh)) {
                         if (/^${glob}$/) {                          if (/^${glob}$/) {
                                 push(@results, $dirname . "/" .$_);                                  push(@results, "$dirname/" .$_);
                         }                          }
                 }                  }
                   closedir($dh);
         }          }
   
         @results;          @results;
 }  }
   
   sub search_path($) {
       my($command) = @_;
       my $d;
   
       for $d (split(/:/, $command_path)) {
           return "$d/$command" if -x "$d/$command";
       }
   
       $command;
   }
   
 sub getMimeTypeFromSuffix($) {  sub getMimeTypeFromSuffix($) {
     my ($fullname) = @_;      my ($fullname) = @_;
     my ($mimetype, $suffix);      my ($mimetype, $suffix);
Line 1123  sub doAnnotate($$) {
Line 1395  sub doAnnotate($$) {
     my $reader = do {local(*FH);};      my $reader = do {local(*FH);};
     my $writer = do {local(*FH);};      my $writer = do {local(*FH);};
   
     # make sure the revisions a wellformed, for security      # make sure the revisions are wellformed, for security
     # reasons ..      # reasons ..
     if ($rev =~ /[^\w.]/) {      if ($rev =~ /[^\w.]/) {
         &fatal("404 Not Found",          &fatal("404 Not Found",
Line 1133  sub doAnnotate($$) {
Line 1405  sub doAnnotate($$) {
     ($pathname = $where) =~ s/(Attic\/)?[^\/]*$//;      ($pathname = $where) =~ s/(Attic\/)?[^\/]*$//;
     ($filename = $where) =~ s/^.*\///;      ($filename = $where) =~ s/^.*\///;
   
     http_header();  
   
     navigateHeader($scriptwhere,$pathname,$filename,$rev, "annotate");  
     print "<h3 align=center>Annotation of $pathname$filename, Revision $rev</h3>\n";  
   
     # this seems to be necessary      # this seems to be necessary
     $| = 1; $| = 0; # Flush      $| = 1; $| = 0; # Flush
   
Line 1147  sub doAnnotate($$) {
Line 1414  sub doAnnotate($$) {
     # the public domain.      # the public domain.
     # we could abandon the use of rlog, rcsdiff and co using      # we could abandon the use of rlog, rcsdiff and co using
     # the cvsserver in a similiar way one day (..after rewrite)      # the cvsserver in a similiar way one day (..after rewrite)
     $pid = open2($reader, $writer, "cvs server") || fatal ("500 Internal Error",      $pid = open2($reader, $writer, $CMD{cvs}, @cvs_options, "server")
                                                                "Fatal Error - unable to open cvs for annotation");        || fatal ("500 Internal Error", "Fatal Error - unable to open cvs for annotation");
   
     # OK, first send the request to the server.  A simplified example is:      # OK, first send the request to the server.  A simplified example is:
     #     Root /home/kingdon/zwork/cvsroot      #     Root /home/kingdon/zwork/cvsroot
Line 1199  sub doAnnotate($$) {
Line 1466  sub doAnnotate($$) {
     # were nicer about buffering, then we could just leave it open, I think.      # were nicer about buffering, then we could just leave it open, I think.
     close ($writer) || die "cannot close: $!";      close ($writer) || die "cannot close: $!";
   
       http_header();
   
       navigateHeader($scriptwhere,$pathname,$filename,$rev, "annotate");
       print "<h3 align=center>Annotation of $pathname$filename, Revision $rev</h3>\n";
   
     # Ready to get the responses from the server.      # Ready to get the responses from the server.
     # For example:      # For example:
     #     E Annotations for foo/xx      #     E Annotations for foo/xx
Line 1231  sub doAnnotate($$) {
Line 1503  sub doAnnotate($$) {
         }          }
         elsif ($words[0] eq "M") {          elsif ($words[0] eq "M") {
             $lineNr++;              $lineNr++;
             my $lrev = substr ($_, 2, 13);              (my $lrev = substr($_, 2, 13)) =~ y/ //d;
             my $lusr = substr ($_, 16,  9);              (my $lusr = substr($_, 16,  9)) =~ y/ //d;
             my $line = substr ($_, 36);              my $line = substr($_, 36);
               my $isCurrentRev = ($rev eq $lrev);
             # we should parse the date here ..              # we should parse the date here ..
             if ($lrev eq $oldLrev) {              if ($lrev eq $oldLrev) {
                 $revprint = "             ";                  $revprint = sprintf('%-8s', '');
             }              }
             else {              else {
                 $revprint = $lrev; $oldLusr = "";                  $revprint = sprintf('%-8s', $lrev);
                 $revprint =~ s`^(\S+)`<a href="${scriptwhere}${barequery}#rev$1">$1</A>`;       # `                  $revprint =~ s`\S+`&link($&, "$scriptwhere$query#rev$&")`e;     # `
                   $oldLusr = '';
             }              }
             if ($lusr eq $oldLusr) {              if ($lusr eq $oldLusr) {
                 $usrprint = "         ";                  $usrprint = '';
             }              }
             else {              else {
                 $usrprint = $lusr;                  $usrprint = $lusr;
             }              }
             $oldLrev = $lrev;              $oldLrev = $lrev;
             $oldLusr = $lusr;              $oldLusr = $lusr;
             # is there a less timeconsuming way to strip spaces ?  
             ($lrev = $lrev) =~ s/\s+//g;  
             my $isCurrentRev = ($rev eq $lrev);  
   
             print "<b>" if ($isCurrentRev);              # Set bold for text-based browsers only - graphical
             printf ("%8s%s%8s %4d:", $revprint, ($isCurrentRev ? "|" : " "), $usrprint, $lineNr);              # browsers show bold fonts a bit wider than regular fonts,
               # so it looks irregular.
               print "<b>" if ($isCurrentRev && $is_textbased);
   
               printf "%s%s %-8s %4d:",
                       $revprint,
                       $isCurrentRev ? '!' : ' ',
                       $usrprint,
                       $lineNr;
             print spacedHtmlText($line, $d{'tabstop'});              print spacedHtmlText($line, $d{'tabstop'});
             print "</b>" if ($isCurrentRev);  
               print "</b>" if ($isCurrentRev && $is_textbased);
         }          }
         elsif ($words[0] eq "ok") {          elsif ($words[0] eq "ok") {
             # We could complain about any text received after this, like the              # We could complain about any text received after this, like the
             # CVS command line client.  But for simplicity, we don't.              # CVS command line client.  But for simplicity, we don't.
         }          }
         elsif ($words[0] eq "error") {          elsif ($words[0] eq "error") {
             fatal ("500 Internal Error", "Error occured during annotate: <b>$_</b>");              fatal("500 Internal Error", "Error occured during annotate: <b>$_</b>");
         }          }
     }      }
     if ($annTable) {      if ($annTable) {
Line 1326  sub doCheckout($$) {
Line 1606  sub doCheckout($$) {
     #      #
     # Safely for a child process to read from.      # Safely for a child process to read from.
     if (! open($fh, "-|")) { # child      if (! open($fh, "-|")) { # child
       open(STDERR, ">&STDOUT"); # Redirect stderr to stdout          open(STDERR, ">&STDOUT"); # Redirect stderr to stdout
       exec("cvs", "-Rld", $cvsroot, "co", "-p", $revopt, $where);          exec($CMD{cvs}, @cvs_options, '-d', $cvsroot, 'co', '-p', $revopt, $where);
     }      }
   
       if (eof($fh)) {
           &fatal("404 Not Found",
                  "$where is not (any longer) pertinent");
       }
 #===================================================================  #===================================================================
 #Checking out squid/src/ftp.c  #Checking out squid/src/ftp.c
 #RCS:  /usr/src/CVS/squid/src/ftp.c,v  #RCS:  /usr/src/CVS/squid/src/ftp.c,v
Line 1348  sub doCheckout($$) {
Line 1633  sub doCheckout($$) {
     }      }
     if ($filename ne $where) {      if ($filename ne $where) {
         &fatal("500 Internal Error",          &fatal("500 Internal Error",
                "Unexpected output from cvs co: $cvsheader"                 "Unexpected output from cvs co: $cvsheader");
                . "<p><b>Check whether the directory $cvsroot/CVSROOT exists "  
                . "and the script has write-access to the CVSROOT/history "  
                . "file if it exists."  
                . "<br>The script needs to place lock files in the "  
                . "directory the file is in as well.</b>");  
     }      }
     $| = 1;      $| = 1;
   
Line 1381  sub cvswebMarkup($$$) {
Line 1661  sub cvswebMarkup($$$) {
     print "<HR noshade>";      print "<HR noshade>";
     print "<table width=\"100%\"><tr><td bgcolor=\"$markupLogColor\">";      print "<table width=\"100%\"><tr><td bgcolor=\"$markupLogColor\">";
     print "File: ", &clickablePath($where, 1);      print "File: ", &clickablePath($where, 1);
     print "&nbsp;";      print "&nbsp;(";
     &download_link(urlencode($fileurl), $revision, "(download)");      &download_link($fileurl, $revision, "download");
       print ")";
     if (!$defaultTextPlain) {      if (!$defaultTextPlain) {
         print "&nbsp;";          print "&nbsp;(";
         &download_link(urlencode($fileurl), $revision, "(as text)",          &download_link($fileurl, $revision, "as text",
                "text/plain");                 "text/plain");
           print ")";
     }      }
     print "<BR>\n";      print "<BR>\n";
     if ($show_log_in_markup) {      if ($show_log_in_markup) {
Line 1402  sub cvswebMarkup($$$) {
Line 1684  sub cvswebMarkup($$$) {
     my $url = download_url($fileurl, $revision, $mimetype);      my $url = download_url($fileurl, $revision, $mimetype);
     print "<HR noshade>";      print "<HR noshade>";
     if ($mimetype =~ /^image/) {      if ($mimetype =~ /^image/) {
         print "<IMG SRC=\"$url$barequery\"><BR>";          printf '<IMG SRC="%s"><BR>', hrefquote("$url$barequery");
     }      }
     elsif ($mimetype =~ m%^application/pdf%) {      elsif ($mimetype =~ m%^application/pdf%) {
         print "<EMBED SRC=\"$url$barequery\" WIDTH=\"100%\"><BR>";          printf '<EMBED SRC="%s" WIDTH="100%"><BR>', hrefquote("$url$barequery");
     }      }
     else {      elsif ($preformat_in_markup) {
         print "<PRE>";          print "<PRE>";
   
         # prefetch several lines          # prefetch several lines
Line 1422  sub cvswebMarkup($$$) {
Line 1704  sub cvswebMarkup($$$) {
         }          }
         print "</PRE>";          print "</PRE>";
     }      }
       else {
           print "<PRE>";
           while (<$filehandle>) {
               print htmlquote($_);
           }
           print "</PRE>";
       }
 }  }
   
 sub viewable($) {  sub viewable($) {
Line 1436  sub viewable($) {
Line 1725  sub viewable($) {
 sub doDiff($$$$$$) {  sub doDiff($$$$$$) {
         my($fullname, $r1, $tr1, $r2, $tr2, $f) = @_;          my($fullname, $r1, $tr1, $r2, $tr2, $f) = @_;
         my $fh = do {local(*FH);};          my $fh = do {local(*FH);};
         my ($rev1, $rev2, $sym1, $sym2, @difftype, $diffname, $f1, $f2);          my ($rev1, $rev2, $sym1, $sym2, $f1, $f2);
   
         if ($r1 =~ /([^:]+)(:(.+))?/) {          if ($r1 =~ /([^:]+)(:(.+))?/) {
             $rev1 = $1;              $rev1 = $1;
Line 1470  sub doDiff($$$$$$) {
Line 1759  sub doDiff($$$$$$) {
             ($rev1, $sym1) = ($rev2, $sym2);              ($rev1, $sym1) = ($rev2, $sym2);
             ($rev2, $sym2) = ($tmp1, $tmp2);              ($rev2, $sym2) = ($tmp1, $tmp2);
         }          }
         my $human_readable = 0;          my $difftype = $DIFFTYPES{$f};
         if ($f eq 'c') {  
             @difftype = qw{-c};          if (!$difftype) {
             $diffname = "Context diff";  
         }  
         elsif ($f eq 's') {  
             @difftype = qw{--side-by-side --width=164};  
             $diffname = "Side by Side";  
         }  
         elsif ($f eq 'H') {  
             $human_readable = 1;  
             @difftype = qw{--unified=15};  
             $diffname = "Long Human readable";  
         }  
         elsif ($f eq 'h') {  
             @difftype =qw{-u};  
             $human_readable = 1;  
             $diffname = "Human readable";  
         }  
         elsif ($f eq 'u') {  
             @difftype = qw{-u};  
             $diffname = "Unidiff";  
         }  
         else {  
             fatal ("400 Bad arguments", "Diff format $f not understood");              fatal ("400 Bad arguments", "Diff format $f not understood");
         }          }
   
           my @difftype       = @{$difftype->{'opts'}};
           my $human_readable = $difftype->{'colored'};
   
         # apply special options          # apply special options
         if ($showfunc) {          if ($showfunc) {
             push @difftype, '-p' if $f =~ /^[cHhu]$/;              push @difftype, '-p' if $f ne 's';
   
             my($re1, $re2);              my($re1, $re2);
   
             while (($re1, $re2) = each %funcline_regexp) {              while (($re1, $re2) = each %funcline_regexp) {
                 if ($fullname =~ /$re1/) {                  if ($fullname =~ /$re1/) {
                     push @difftype, '-F', '$re2';                      push @difftype, '-F', $re2;
                     last;                      last;
                 }                  }
             }              }
Line 1520  sub doDiff($$$$$$) {
Line 1791  sub doDiff($$$$$$) {
         }          }
         if (! open($fh, "-|")) { # child          if (! open($fh, "-|")) { # child
             open(STDERR, ">&STDOUT"); # Redirect stderr to stdout              open(STDERR, ">&STDOUT"); # Redirect stderr to stdout
             exec("rcsdiff",@difftype,"-r$rev1","-r$rev2",$fullname);              exec($CMD{rcsdiff}, @difftype, "-r$rev1", "-r$rev2", $fullname);
         }          }
         if ($human_readable) {          if ($human_readable) {
             http_header();              http_header();
Line 1561  sub doDiff($$$$$$) {
Line 1832  sub doDiff($$$$$$) {
                 s|$cvsroot/||o;                  s|$cvsroot/||o;
                 if ($sym1) {                  if ($sym1) {
                     chop;                      chop;
                     $_ .= " " . $sym1 . "\n";                      $_ .= " $sym1\n";
                 }                  }
             }              }
             elsif (m|^$f2 $cvsroot|o) {              elsif (m|^$f2 $cvsroot|o) {
                 s|$cvsroot/||o;                  s|$cvsroot/||o;
                 if ($sym2) {                  if ($sym2) {
                     chop;                      chop;
                     $_ .= " " . $sym2 . "\n";                      $_ .= " $sym2\n";
                 }                  }
             }              }
             print $_;              print $_;
Line 1601  sub getDirLogs($$@) {
Line 1872  sub getDirLogs($$@) {
         return;          return;
     }      }
   
     if ($tag) {      if (defined($tag)) {
         #can't use -r<tag> as - is allowed in tagnames, but misinterpreated by rlog..          #can't use -r<tag> as - is allowed in tagnames, but misinterpreated by rlog..
         if (! open($fh, "-|")) {          if (! open($fh, "-|")) {
                 open(STDERR, '>/dev/null'); # rlog may complain; ignore.              open(STDERR, '>/dev/null'); # rlog may complain; ignore.
                 exec('rlog', @files);              exec($CMD{rlog}, @files);
         }          }
     }      }
     else {      else {
         my $kidpid = open($fh, "-|");          if (! open($fh, "-|")) {
         if (! $kidpid) {              open(STDERR, '>/dev/null'); # rlog may complain; ignore.
                 open(STDERR, '>/dev/null'); # rlog may complain; ignore.              exec($CMD{rlog}, '-r', @files);
                 exec('rlog', '-r', @files);  
         }          }
     }      }
     $state = "start";      $state = "start";
     while (<$fh>) {      while (<$fh>) {
         if ($state eq "start") {          if ($state eq "start") {
             #Next file. Initialize file variables              #Next file. Initialize file variables
             $rev = undef;              $rev = '';
             $revwanted = undef;              $revwanted = '';
             $branch = undef;              $branch = '';
             $branchpoint = undef;              $branchpoint = '';
             $filename = undef;              $filename = '';
             $log = undef;              $log = '';
             $revision = undef;              $revision = '';
             $branch = undef;  
             %symrev = ();              %symrev = ();
             @filetags = ();              @filetags = ();
             #jump to head state              #jump to head state
Line 1636  sub getDirLogs($$@) {
Line 1905  sub getDirLogs($$@) {
 again:  again:
         if ($state eq "head") {          if ($state eq "head") {
             #$rcsfile = $1 if (/^RCS file: (.+)$/); #not used (yet)              #$rcsfile = $1 if (/^RCS file: (.+)$/); #not used (yet)
             $filename = $1 if (/^Working file: (.+)$/);  
             $head = $1 if (/^head: (.+)$/);              if (/^Working file: (.+)$/) {
             $branch = $1 if (/^branch: (.+)$/);                  $filename = $1;
         }              } elsif (/^head: (.+)$/) {
         if ($state eq "head" && /^symbolic names/) {                  $head = $1;
             $state = "tags";              } elsif (/^branch: (.+)$/) {
             ($branch = $head) =~ s/\.\d+$// if (!defined($branch));                  $branch = $1
             $branch =~ s/(\.?)(\d+)$/${1}0.$2/;              } elsif (/^symbolic names:/) {
             $symrev{MAIN} = $branch;                  $state = "tags";
             $symrev{HEAD} = $branch;                  ($branch = $head) =~ s/\.\d+$// if $branch eq '';
             $alltags{MAIN} = 1;                  $branch =~ s/(\d+)$/0.$1/;
             $alltags{HEAD} = 1;                  $symrev{MAIN} = $branch;
             push (@filetags, "MAIN", "HEAD");                  $symrev{HEAD} = $branch;
                   $alltags{MAIN} = 1;
                   $alltags{HEAD} = 1;
                   push (@filetags, "MAIN", "HEAD");
               } elsif (/$LOG_REVSEPARATOR/o) {
                   $state = "log";
                   $rev = '';
                   $date = '';
                   $log = '';
                   # Try to reconstruct the relative filename if RCS spits out a full path
                   $filename =~ s%^\Q$DirName\E/%%;
               }
             next;              next;
         }          }
         if ($state eq "tags" &&          if ($state eq "tags") {
                             /^\s+(.+):\s+([\d\.]+)\s+$/) {              if (/^\s+(.+):\s+([\d\.]+)\s+$/) {
             push (@filetags, $1);                  push (@filetags, $1);
             $symrev{$1} = $2;                  $symrev{$1} = $2;
             $alltags{$1} = 1;                  $alltags{$1} = 1;
             next;  
         }  
         if ($state eq "tags" && /^\S/) {  
             if (defined($tag) && (defined($symrev{$tag}) || $tag eq "HEAD")) {  
                 $revwanted = $tag eq "HEAD" ? $symrev{"MAIN"} : $symrev{$tag};  
                 ($branch = $revwanted) =~ s/\b0\.//;  
                 ($branchpoint = $branch) =~ s/\.?\d+$//;  
                 $revwanted = undef if ($revwanted ne $branch);  
             }  
             elsif (defined($tag) && $tag ne "HEAD") {  
                 print "Tag not found, skip this file" if ($verbose);  
                 $state = "skip";  
                 next;                  next;
               } elsif (/^\S/) {
                   if (defined($tag)) {
                       if(defined($symrev{$tag}) || $tag eq "HEAD") {
                           $revwanted = $symrev{$tag eq "HEAD" ? "MAIN" : $tag};
                           ($branch = $revwanted) =~ s/\b0\.//;
                           ($branchpoint = $branch) =~ s/\.?\d+$//;
                           $revwanted = '' if ($revwanted ne $branch);
                       } elsif ($tag ne "HEAD") {
                           print "Tag not found, skip this file" if ($verbose);
                           $state = "skip";
                           next;
                       }
                   }
                   foreach my $tagfound (@filetags) {
                       $tags{$tagfound} = 1;
                   }
                   $state = "head";
                   goto again;
             }              }
             foreach my $tagfound (@filetags) {  
                 $tags{$tagfound} = 1;  
             }  
             $state = "head";  
             goto again;  
         }          }
         if ($state eq "head" && /^----------------------------$/) {  
             $state = "log";  
             $rev = undef;  
             $date = undef;  
             $log = "";  
             # Try to reconstruct the relative filename if RCS spits out a full path  
             $filename =~ s%^\Q$DirName\E/%%;  
             next;  
         }  
         if ($state eq "log") {          if ($state eq "log") {
             if (/^----------------------------$/              if (/$LOG_REVSEPARATOR/o || /$LOG_FILESEPARATOR/o) {
                 || /^=============================/) {  
                 # End of a log entry.                  # End of a log entry.
                 my $revbranch;                  my $revbranch = $rev;
                 ($revbranch = $rev) =~ s/\.\d+$//;                  $revbranch =~ s/\.\d+$//;
                 print "$filename $rev Wanted: $revwanted "                  print "$filename $rev Wanted: $revwanted ",
                     . "Revbranch: $revbranch Branch: $branch "                    "Revbranch: $revbranch Branch: $branch ",
                     . "Branchpoint: $branchpoint\n" if ($verbose);                      "Branchpoint: $branchpoint\n" if ($verbose);
                 if (!defined($revwanted) && defined($branch)                  if ($revwanted eq '' && $branch ne ''
                     && $branch eq $revbranch || !defined($tag)) {                      && $branch eq $revbranch || !defined($tag)) {
                     print "File revision $rev found for branch $branch\n"                      print "File revision $rev found for branch $branch\n"
                         if ($verbose);                          if ($verbose);
                     $revwanted = $rev;                      $revwanted = $rev;
                 }                  }
                 if (defined($revwanted) ? $rev eq $revwanted :                  if ($revwanted ne '' ? $rev eq $revwanted :
                     defined($branchpoint) ? $rev eq $branchpoint :                      $branchpoint ne '' ? $rev eq $branchpoint :
                     0 && ($rev eq $head)) { # Don't think head is needed here..                      0 && ($rev eq $head)) { # Don't think head is needed here..
                     print "File info $rev found for $filename\n" if ($verbose);                      print "File info $rev found for $filename\n" if ($verbose);
                     my @finfo = ($rev,$date,$log,$author,$filename);                      my @finfo = ($rev,$date,$log,$author,$filename);
Line 1710  again:
Line 1981  again:
                     $fileinfo{$name} = [ @finfo ];                      $fileinfo{$name} = [ @finfo ];
                     $state = "done" if ($rev eq $revwanted);                      $state = "done" if ($rev eq $revwanted);
                 }                  }
                 $rev = undef;                  $rev = '';
                 $date = undef;                  $date = '';
                 $log = "";                  $log = '';
             }              }
             elsif (!defined($date) && m|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);|) {              elsif ($date eq '' && m|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);|) {
                 my $yr = $1;                  my $yr = $1;
                 # damn 2-digit year routines :-)                  # damn 2-digit year routines :-)
                 if ($yr > 100) {                  if ($yr > 100) {
Line 1726  again:
Line 1997  again:
                 $log = '';                  $log = '';
                 next;                  next;
             }              }
             elsif (!defined($rev) && m/^revision (.*)$/) {              elsif ($rev eq '' && /^revision (.*)$/) {
                 $rev = $1;                  $rev = $1;
                 next;                  next;
             }              }
             else {              else {
                 $log = $log . $_;                  $log .= $_;
             }              }
         }          }
         if (/^===============/) {          if (/$LOG_FILESEPARATOR/o) {
             $state = "start";              $state = "start";
             next;              next;
         }          }
     }      }
     if ($. == 0) {      if ($. == 0) {
         fatal("500 Internal Error",          fatal("500 Internal Error",
               "Failed to spawn GNU rlog on <em>'".join(", ", @files)."'</em><p>did you set the <b>\$ENV{PATH}</b> in your configuration file correctly ?");                "Failed to spawn GNU rlog on <em>'".join(", ", @files)."'</em><p>Did you set the <b>\$command_path</b> in your configuration file correctly ? (Currently '$command_path'");
     }      }
     close($fh);      close($fh);
 }  }
Line 1769  sub readLog($;$) {
Line 2040  sub readLog($;$) {
   
         print("Going to rlog '$fullname'\n") if ($verbose);          print("Going to rlog '$fullname'\n") if ($verbose);
         if (! open($fh, "-|")) { # child          if (! open($fh, "-|")) { # child
                 if ($revision ne '') {              if ($revision ne '') {
                         exec("rlog",$revision,$fullname);                  exec($CMD{rlog}, $revision, $fullname);
                 }              }
                 else {              else {
                         exec("rlog",$fullname);                  exec($CMD{rlog}, $fullname);
                 }              }
         }          }
         while (<$fh>) {          while (<$fh>) {
             print if ($verbose);              print if ($verbose);
Line 1808  sub readLog($;$) {
Line 2079  sub readLog($;$) {
 # log info  # log info
 # ----------------------------  # ----------------------------
         logentry:          logentry:
         while (!/^=========/) {          while (!/$LOG_FILESEPARATOR/o) {
             $_ = <$fh>;              $_ = <$fh>;
             last logentry if (!defined($_));    # EOF              last logentry if (!defined($_));    # EOF
             print "R:", $_ if ($verbose);              print "R:", $_ if ($verbose);
Line 1816  sub readLog($;$) {
Line 2087  sub readLog($;$) {
                 $rev = $1;                  $rev = $1;
                 unshift(@allrevisions,$rev);                  unshift(@allrevisions,$rev);
             }              }
             elsif (/^========/ || /^----------------------------$/) {              elsif (/$LOG_FILESEPARATOR/o || /$LOG_REVSEPARATOR/o) {
                 next logentry;                  next logentry;
             }              }
             else {              else {
Line 1850  sub readLog($;$) {
Line 2121  sub readLog($;$) {
             while (<$fh>) {              while (<$fh>) {
                 print "L:", $_ if ($verbose);                  print "L:", $_ if ($verbose);
                 next line if (/^branches:\s/);                  next line if (/^branches:\s/);
                 last line if (/^----------------------------$/ || /^=========/);                  last line if (/$LOG_FILESEPARATOR/o || /$LOG_REVSEPARATOR/o);
                 $log{$rev} .= $_;                  $log{$rev} .= $_;
             }              }
             print "E:", $_ if ($verbose);              print "E:", $_ if ($verbose);
Line 1868  sub readLog($;$) {
Line 2139  sub readLog($;$) {
 # is the first commit listed on the appropriate branch.  # is the first commit listed on the appropriate branch.
 # This is not neccesary the same revision as marked as head in the RCS file.  # This is not neccesary the same revision as marked as head in the RCS file.
         my $headrev = $curbranch || "1";          my $headrev = $curbranch || "1";
         ($symrev{"MAIN"} = $headrev) =~ s/(\.?)(\d+)$/${1}0.$2/;          ($symrev{"MAIN"} = $headrev) =~ s/(\d+)$/0.$1/;
         revision:  
         foreach $rev (@revorder) {          foreach $rev (@revorder) {
             if ($rev =~ /^(\S*)\.\d+$/ && $headrev eq $1) {              if ($rev =~ /^(\S*)\.\d+$/ && $headrev eq $1) {
                 $symrev{"HEAD"} = $rev;                  $symrev{"HEAD"} = $rev;
                 last revision;                  last;
             }              }
         }          }
         ($symrev{"HEAD"} = $headrev) =~ s/\.\d+$//          ($symrev{"HEAD"} = $headrev) =~ s/\.\d+$//
Line 1904  sub readLog($;$) {
Line 2174  sub readLog($;$) {
                 # with the branch number 0.A, with the exception that                  # with the branch number 0.A, with the exception that
                 # it has no head to translate to if there is nothing on                  # it has no head to translate to if there is nothing on
                 # the branch, but I guess this can never happen?                  # the branch, but I guess this can never happen?
                   #
                 # (the code below gracefully forgets about the branch                  # (the code below gracefully forgets about the branch
                 # if it should happen)                  # if it should happen)
                 #                  #
Line 1911  sub readLog($;$) {
Line 2182  sub readLog($;$) {
                 $branch = $3;                  $branch = $3;
                 $branchrev = $head . ($head ne "" ? "." : "") . $branch;                  $branchrev = $head . ($head ne "" ? "." : "") . $branch;
                 my $regex;                  my $regex;
                 ($regex = $branchrev) =~ s/\./\\./g;                  $regex = quotemeta $branchrev;
                 $rev = $head;                  $rev = $head;
   
                 revision:  
                 foreach my $r (@revorder) {                  foreach my $r (@revorder) {
                     if ($r =~ /^${regex}\b/) {                      if ($r =~ /^${regex}\b/) {
                         $rev = $branchrev;                          $rev = $branchrev;
                         last revision;                          last;
                     }                      }
                 }                  }
                 next if ($rev eq "");                  next if ($rev eq "");
Line 1974  sub readLog($;$) {
Line 2244  sub readLog($;$) {
   
 }  }
   
   sub printDiffLinks($$) {
       my($text, $url) = @_;
       my @extra;
   
       local $_;
       for ($DIFFTYPES{$defaultDiffType}{'colored'} ? qw(u) : qw(h)) {
           my $f = $_ eq $defaultDiffType ? '' : $_;
   
           push @extra, &link(lc $DIFFTYPES{$_}{'descr'}, "$url&f=$f");
       }
   
       print &link($text, $url), ' (', join(', ', @extra), ')';
   }
   
 sub printLog($;$) {  sub printLog($;$) {
         my ($link, $br, $brp);          my ($link, $br, $brp);
         ($_,$link) = @_;          ($_,$link) = @_;
Line 2002  sub printLog($;$) {
Line 2286  sub printLog($;$) {
             }              }
             print "\n Revision ";              print "\n Revision ";
             &download_link($fileurl, $_, $_,              &download_link($fileurl, $_, $_,
                 $defaultViewable ? "text/x-cvsweb-markup" : undef);                             $defaultViewable ? "text/x-cvsweb-markup" : undef);
             if ($defaultViewable) {              if ($defaultViewable) {
                 print " / ";                  print " / (";
                 &download_link($fileurl, $_, "(download)", $mimetype);                  &download_link($fileurl, $_, "download", $mimetype);
                   print ")";
             }              }
             if (not $defaultTextPlain) {              if (not $defaultTextPlain) {
                 print " / ";                  print " / (";
                 &download_link($fileurl, $_, "(as text)",                  &download_link($fileurl, $_, "as text", "text/plain");
                            "text/plain");                  print ")";
             }              }
             if (!$defaultViewable) {              if (!$defaultViewable) {
                 print " / ";                  print " / (";
                 &download_link($fileurl, $_, "(view)", "text/x-cvsweb-markup");                  &download_link($fileurl, $_, "view", "text/x-cvsweb-markup");
                   print ")";
             }              }
             if ($allow_annotate) {              if ($allow_annotate) {
                 print " - <a href=\"" . $scriptname . "/" . urlencode($where) . "?annotate=$_$barequery\">";                  print " - ";
                 print "annotate</a>";                  print &link('annotate',
                               sprintf('%s/%s?annotate=%s%s',
                                       $scriptname,
                                       urlencode($where),
                                       $_,
                                       $barequery));
             }              }
             # Plus a select link if enabled, and this version isn't selected              # Plus a select link if enabled, and this version isn't selected
             if ($allow_version_select) {              if ($allow_version_select) {
                 if ((!defined($input{"r1"}) || $input{"r1"} ne $_)) {                  if ((!defined($input{"r1"}) || $input{"r1"} ne $_)) {
                     print " - <A HREF=\"${scriptwhere}?r1=$_$barequery" .                      print " - ";
                         "\">[select for diffs]</A>\n";                      print &link('[select for diffs]',
                                   sprintf('%s?r1=%s%s',
                                           $scriptwhere,
                                           $_,
                                           $barequery));
                 }                  }
                 else {                  else {
                     print " - <b>[selected]</b>";                      print " - <b>[selected]</b>";
Line 2039  sub printLog($;$) {
Line 2334  sub printLog($;$) {
         }          }
         if (defined @mytz) {          if (defined @mytz) {
             my ($est) = $mytz[(localtime($date{$_}))[8]];              my ($est) = $mytz[(localtime($date{$_}))[8]];
             print ", <i>" . scalar localtime($date{$_}) . " $est</i> (";              print ", <i>", scalar localtime($date{$_}), " $est</i> (";
         } else {          } else {
             print ", <i>" . scalar gmtime($date{$_}) . " UTC</i> (";              print ", <i>", scalar gmtime($date{$_}), " UTC</i> (";
         }          }
         print readableTime(time() - $date{$_},1) . " ago)";          print readableTime(time() - $date{$_},1), " ago)";
         print " by ";          print " by ";
         print "<i>" . $author{$_} . "</i>\n";          print "<i>", $author{$_}, "</i>\n";
         print "<BR>Branch: <b>",$link?link_tags($revsym{$br}):$revsym{$br},"</b>\n"          print "<BR>Branch: <b>",$link?link_tags($revsym{$br}):$revsym{$br},"</b>\n"
             if ($revsym{$br});              if ($revsym{$br});
         print "<BR>CVS Tags: <b>",$link?link_tags($revsym{$_}):$revsym{$_},"</b>"          print "<BR>CVS Tags: <b>",$link?link_tags($revsym{$_}):$revsym{$_},"</b>"
Line 2079  sub printLog($;$) {
Line 2374  sub printLog($;$) {
             # Offer diff to previous revision              # Offer diff to previous revision
             if ($prev) {              if ($prev) {
                 $diffrev{$prev} = 1;                  $diffrev{$prev} = 1;
                 print " to previous <A HREF=\"${scriptwhere}.diff?r1=$prev";  
                 print "&amp;r2=$_" . $barequery . "\">$prev</A>\n";                  my $url = sprintf('%s.diff?r1=%s&r2=%s%s',
                 if (!$hr_default) { # offer a human readable version if not default                                    $scriptwhere,
                     print "(<A HREF=\"${scriptwhere}.diff?r1=$prev";                                    $prev,
                     print "&amp;r2=$_" . $barequery . "&amp;f=h\">colored</A>)\n";                                    $_,
                 }                                    $barequery);
   
                   print " to previous ";
                   printDiffLinks($prev, $url);
             }              }
             #              #
             # Plus, if it's on a branch, and it's not a vendor branch,              # Plus, if it's on a branch, and it's not a vendor branch,
             # offer a diff with the branch point.              # offer a diff with the branch point.
             if ($revsym{$brp} && !/^1\.1\.1\.\d+$/ && !defined($diffrev{$brp})) {              if ($revsym{$brp} && !/^1\.1\.1\.\d+$/ && !defined($diffrev{$brp})) {
                 print " to branchpoint <A HREF=\"${scriptwhere}.diff?r1=$brp";                  my $url = sprintf('%s.diff?r1=%s&r2=%s%s',
                 print "&amp;r2=$_" . $barequery . "\">$brp</A>\n";                                    $scriptwhere,
                 if (!$hr_default) { # offer a human readable version if not default                                    $brp,
                 print "(<A HREF=\"${scriptwhere}.diff?r1=$brp";                                    $_,
                 print "&amp;r2=$_" . $barequery . "&amp;f=h\">colored</A>)\n";                                    $barequery);
                 }  
                   print " to branchpoint ";
                   printDiffLinks($brp, $url);
             }              }
             #              #
             # Plus, if it's on a branch, and it's not a vendor branch,              # Plus, if it's on a branch, and it's not a vendor branch,
Line 2105  sub printLog($;$) {
Line 2405  sub printLog($;$) {
             if (/^\d+\.\d+\.\d+/ && !/^1\.1\.1\.\d+$/) {              if (/^\d+\.\d+\.\d+/ && !/^1\.1\.1\.\d+$/) {
                 my ($i,$nextmain);                  my ($i,$nextmain);
                 for ($i = 0; $i < $#revorder && $revorder[$i] ne $_; $i++){}                  for ($i = 0; $i < $#revorder && $revorder[$i] ne $_; $i++){}
                 my (@tmp2) = split(/\./, $_);                  my @tmp2 = split(/\./, $_);
                 for ($nextmain = ""; $i > 0; $i--) {                  for ($nextmain = ""; $i > 0; $i--) {
                     my ($next) = $revorder[$i-1];                      my $next = $revorder[$i-1];
                     my (@tmp1) = split(/\./, $next);                      my @tmp1 = split(/\./, $next);
                     if ($#tmp1 < $#tmp2) {                      if (@tmp1 < @tmp2) {
                         $nextmain = $next;                          $nextmain = $next;
                         last;                          last;
                     }                      }
                     # Only the highest version on a branch should have                      # Only the highest version on a branch should have
                     # a diff for the "next main".                      # a diff for the "next main".
                     last if (join(".",@tmp1[0..$#tmp1-1])                      last if (@tmp1 - 1 <= @tmp2 &&
                              eq join(".",@tmp2[0..$#tmp1-1]));                               join(".",@tmp1[0..$#tmp1-1]) eq join(".",@tmp2[0..$#tmp1-1]));
                 }                  }
                 if (!defined($diffrev{$nextmain})) {                  if (!defined($diffrev{$nextmain})) {
                     $diffrev{$nextmain} = 1;                      $diffrev{$nextmain} = 1;
                     print " next main <A HREF=\"${scriptwhere}.diff?r1=$nextmain";  
                     print "&amp;r2=$_" . $barequery .                      my $url = sprintf('%s.diff?r1=%s&r2=%s%s',
                         "\">$nextmain</A>\n";                                        $scriptwhere,
                     if (!$hr_default) { # offer a human readable version if not default                                        $nextmain,
                         print "(<A HREF=\"${scriptwhere}.diff?r1=$nextmain";                                        $_,
                         print "&amp;r2=$_" . $barequery .                                        $barequery);
                             "&amp;f=h\">colored</A>)\n";  
                     }                      print " next main ";
                       printDiffLinks($nextmain, $url);
                 }                  }
             }              }
             # Plus if user has selected only r1, then present a link              # Plus if user has selected only r1, then present a link
             # to make a diff to that revision              # to make a diff to that revision
             if (defined($input{"r1"}) && !defined($diffrev{$input{"r1"}})) {              if (defined($input{"r1"}) && !defined($diffrev{$input{"r1"}})) {
                 $diffrev{$input{"r1"}} = 1;                  $diffrev{$input{"r1"}} = 1;
                 print " to selected <A HREF=\"${scriptwhere}.diff?"  
                         . "r1=$input{'r1'}&amp;r2=$_" . $barequery  
                         . "\">$input{'r1'}</A>\n";  
                 if (!$hr_default) { # offer a human readable version if not default  
                     print "(<A HREF=\"${scriptwhere}.diff?r1=$input{'r1'}";  
                     print "&amp;r2=$_" . $barequery .  
                         "&amp;f=h\">colored</A>)\n";  
   
                 }                  my $url = sprintf('%s.diff?r1=%s&r2=%s%s',
                                     $scriptwhere,
                                     $input{'r1'},
                                     $_,
                                     $barequery);
   
                   print " to selected ";
                   printDiffLinks($input{'r1'}, $url);
             }              }
         }          }
         print "<PRE>\n";          print "<PRE>\n";
Line 2161  sub doLog($) {
Line 2462  sub doLog($) {
         ($filename = $where) =~ s|^.*/||;          ($filename = $where) =~ s|^.*/||;
         $backurl = $scriptname . "/" . urlencode($upwhere) . $query;          $backurl = $scriptname . "/" . urlencode($upwhere) . $query;
         print &link($backicon, "$backurl#$filename"),          print &link($backicon, "$backurl#$filename"),
               " <b>Up to ", &clickablePath($upwhere, 1), "</b><p>\n";            " <b>Up to ", &clickablePath($upwhere, 1), "</b><p>\n";
         print <<EOF;          print &link('Request diff between arbitrary revisions', '#diff');
 <A HREF="#diff">Request diff between arbitrary revisions</A>          print '<HR NOSHADE>';
 <HR NOSHADE>  
 EOF  
         if ($curbranch) {          if ($curbranch) {
             print "Default branch: ", ($revsym{$curbranch} || $curbranch);              print "Default branch: ", ($revsym{$curbranch} || $curbranch);
         }          }
Line 2193  EOF
Line 2493  EOF
         print "</A><P>\n";          print "</A><P>\n";
         print "<FORM METHOD=\"GET\" ACTION=\"${scriptwhere}.diff\" NAME=\"diff_select\">\n";          print "<FORM METHOD=\"GET\" ACTION=\"${scriptwhere}.diff\" NAME=\"diff_select\">\n";
         foreach (@stickyvars) {          foreach (@stickyvars) {
             print "<INPUT TYPE=HIDDEN NAME=\"$_\" VALUE=\"$input{$_}\">\n"              printf('<INPUT TYPE=HIDDEN NAME="%s" VALUE="%s">',  $_, $input{$_})
                 if (defined($input{$_})                  if (defined($input{$_})
                     && ((!defined($DEFAULTVALUE{$_})                      && ((!defined($DEFAULTVALUE{$_})
                          || $input{$_} ne $DEFAULTVALUE{$_})                           || $input{$_} ne $DEFAULTVALUE{$_})
Line 2223  EOF
Line 2523  EOF
         print "<HR noshade>\n";          print "<HR noshade>\n";
         print "<TABLE>";          print "<TABLE>";
         print "<FORM METHOD=\"GET\" ACTION=\"$scriptwhere\">\n";          print "<FORM METHOD=\"GET\" ACTION=\"$scriptwhere\">\n";
         print "<TR><TD align=right>Preferred Diff type:</TD>";          print "<TR><TD align=right>Preferred Diff type:</TD>";
         print "<TD>";          print "<TD>";
         printDiffSelect($use_java_script);          printDiffSelect($use_java_script);
         print "</TD><TD></TD></TR>\n";          print "</TD><TD></TD></TR>\n";
         if (@branchnames) {          if (@branchnames) {
Line 2259  EOF
Line 2559  EOF
         print "<TR><TD align=right>";          print "<TR><TD align=right>";
         print "<A name=logsort></A>\n";          print "<A name=logsort></A>\n";
         print "Sort log by:</TD>";          print "Sort log by:</TD>";
         print "<TD><SELECT NAME=\"logsort\"";          print "<TD>";
         print " onchange=\"submit()\"" if ($use_java_script);          printLogSortSelect($use_java_script);
         print ">\n";          print "</TD>";
         print "<OPTION VALUE=cvs",$logsort eq "cvs" ? " SELECTED" : "", ">Not sorted";  
         print "<OPTION VALUE=date",$logsort eq "date" ? " SELECTED" : "", ">Commit date";  
         print "<OPTION VALUE=rev",$logsort eq "rev" ? " SELECTED" : "", ">Revision";  
         print "</SELECT></TD>";  
         print "<TD><INPUT TYPE=SUBMIT VALUE=\"  Set  \"></TD>";          print "<TD><INPUT TYPE=SUBMIT VALUE=\"  Set  \"></TD>";
         print "</FORM>\n";          print "</FORM>\n";
         print "</TR></TABLE>";          print "</TR></TABLE>";
Line 2335  sub human_readable_diff($){
Line 2631  sub human_readable_diff($){
     $date2 = $r2d;      $date2 = $r2d;
   }    }
   
   print "<h3 align=center>Diff for /$where_nd between version $rev1 and $rev2</h3>\n";    print "<h3 align=center>Diff for /$where_nd between version $rev1 and $rev2</h3>\n",
       "<table border=0 cellspacing=0 cellpadding=0 width=\"100%\">\n",
   print "<table border=0 cellspacing=0 cellpadding=0 width=\"100%\">\n";        "<tr bgcolor=\"#ffffff\">\n",
   print "<tr bgcolor=\"#ffffff\">\n";          "<th width=\"50%\" valign=TOP>",
   print "<th width=\"50%\" valign=TOP>";            "version $rev1";
   print "version $rev1";  
   print ", $date1" if (defined($date1));    print ", $date1" if (defined($date1));
   print "<br>Tag: $sym1\n" if ($sym1);    print "<br>Tag: $sym1\n" if ($sym1);
   print "</th>\n";    print "</th>\n",
   print "<th width=\"50%\" valign=TOP>";      "<th width=\"50%\" valign=TOP>",
   print "version $rev2";        "version $rev2";
   print ", $date2" if (defined($date2));    print ", $date2" if (defined($date2));
   print "<br>Tag: $sym2\n" if ($sym1);    print "<br>Tag: $sym2\n" if ($sym1);
   print "</th>\n";    print "</th>\n";
   
   my $fs = "<font face=\"$difffontface\" size=\"$difffontsize\">";    my $fs = "<font face=\"$difffontface\" size=\"$difffontsize\"><tt>";
   my $fe = "</font>";    my $fe = "</tt></font>";
   
   my $leftRow = 0;    my $leftRow = 0;
   my $rightRow = 0;    my $rightRow = 0;
Line 2373  sub human_readable_diff($){
Line 2668  sub human_readable_diff($){
   
       if ($difftxt =~ /^@@/) {        if ($difftxt =~ /^@@/) {
           ($oldline,$newline,$funname) = $difftxt =~ /@@ \-([0-9]+).*\+([0-9]+).*@@(.*)/;            ($oldline,$newline,$funname) = $difftxt =~ /@@ \-([0-9]+).*\+([0-9]+).*@@(.*)/;
             $funname = htmlquote($funname);
           print  "<tr bgcolor=\"$diffcolorHeading\"><td width=\"50%\">";            print  "<tr bgcolor=\"$diffcolorHeading\"><td width=\"50%\">";
           print  "<table width=\"100%\" border=1 cellpadding=5><tr><td><b>Line $oldline</b>";            print  "<table width=\"100%\" border=1 cellpadding=5><tr><td><b>Line $oldline</b>";
           print  "&nbsp;<font size=-1>$funname</font></td></tr></table>";            print  "&nbsp;<font size=-1>$funname</font></td></tr></table>";
Line 2467  sub human_readable_diff($){
Line 2763  sub human_readable_diff($){
 sub navigateHeader($$$$$) {  sub navigateHeader($$$$$) {
     my ($swhere,$path,$filename,$rev,$title) = @_;      my ($swhere,$path,$filename,$rev,$title) = @_;
     $swhere = "" if ($swhere eq $scriptwhere);      $swhere = "" if ($swhere eq $scriptwhere);
     $swhere = urlencode($filename) if ($swhere eq "");      $swhere = './' . urlencode($filename) if ($swhere eq "");
     print "<\!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">";  
     print "<HTML>\n<HEAD>\n";      print <<EOF;
     print '<!-- CVSweb $zRevision: 1.103 $  $kRevision: 1.26 $ -->';  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
     print "\n<TITLE>$path$filename - $title - $rev</TITLE></HEAD>\n";  <HTML>
     print  "$body_tag_for_src\n";  <HEAD>
     print "<table width=\"100%\" border=0 cellspacing=0 cellpadding=1 bgcolor=\"$navigationHeaderColor\">";  <META name="robots" content="nofollow">
     print "<tr valign=bottom><td>";  <!-- knu-cvsweb $cvsweb_revision -->
     print  "<a href=\"$swhere$query#rev$rev\">$backicon";  <TITLE>$path$filename - $title - $rev</TITLE></HEAD>
     print "</a> <b>Return to ", &link("$filename","$swhere$query#rev$rev")," CVS log";  $body_tag_for_src
   <table width="100%" border=0 cellspacing=0 cellpadding=1 bgcolor="$navigationHeaderColor">
   <tr valign=bottom><td>
   EOF
   
       print &link($backicon, "$swhere$query#rev$rev");
       print "<b>Return to ", &link($filename,"$swhere$query#rev$rev")," CVS log";
     print "</b> $fileicon</td>";      print "</b> $fileicon</td>";
   
     print "<td align=right>$diricon <b>Up to ", &clickablePath($path, 1), "</b></td>";      print "<td align=right>$diricon <b>Up to ", &clickablePath($path, 1), "</b></td>";
Line 2486  sub navigateHeader($$$$$) {
Line 2788  sub navigateHeader($$$$$) {
 sub plural_write($$) {  sub plural_write($$) {
     my ($num,$text) = @_;      my ($num,$text) = @_;
     if ($num != 1) {      if ($num != 1) {
         $text = $text . "s";          $text .= "s";
     }      }
     if ($num > 0) {      if ($num > 0) {
         return $num . " " . $text;          return join(' ', $num, $text);
     }      }
     else {      else {
         return "";          return "";
Line 2533  sub readableTime($$) {
Line 2835  sub readableTime($$) {
         my $resttime = plural_write(int ($rest / $break),          my $resttime = plural_write(int ($rest / $break),
                                 $desc{$break});                                  $desc{$break});
         if ($resttime) {          if ($resttime) {
             $retval = $retval . ", " . $resttime;              $retval .= ", $resttime";
         }          }
     }      }
   
Line 2557  sub clickablePath($$) {
Line 2859  sub clickablePath($$) {
         $retval = "[$cvstree]";          $retval = "[$cvstree]";
     }      }
     else {      else {
         $retval = $retval . " <a href=\"${scriptname}/${query}#dirlist\">[$cvstree]</a>";          $retval .= ' ' . &link("[$cvstree]", sprintf('%s/%s#dirlist',
                                                        $scriptname,
                                                        $query));
         my $wherepath = '';          my $wherepath = '';
         my ($lastslash) = $pathname =~ m|/$|;          my ($lastslash) = $pathname =~ m|/$|;
         foreach (split(/\//, $pathname)) {          foreach (split(/\//, $pathname)) {
             $retval = $retval . " / ";              $retval .= " / ";
             $wherepath = $wherepath . '/' . $_;              $wherepath .= "/$_";
             my ($last) = "$wherepath/" eq "/$pathname"              my ($last) = "$wherepath/" eq "/$pathname"
                 || $wherepath eq "/$pathname";                  || $wherepath eq "/$pathname";
             if ($clickLast || !$last) {              if ($clickLast || !$last) {
                 $retval = $retval . "<a href=\"${scriptname}"                  $retval .= &link($_, join('',
                     . urlencode($wherepath)                                            $scriptname,
                     . (!$last || $lastslash ? '/' : '')                                            urlencode($wherepath),
                     . ${query}                                            (!$last || $lastslash ? '/' : ''),
                     . (!$last || $lastslash ? "#dirlist" : "")                                            $query,
                     . "\">$_</a>";                                            (!$last || $lastslash ? "#dirlist" : "")));
             }              }
             else { # do not make a link to the current dir              else { # do not make a link to the current dir
                 $retval = $retval .  $_;                  $retval .= $_;
             }              }
         }          }
     }      }
Line 2582  sub clickablePath($$) {
Line 2886  sub clickablePath($$) {
 }  }
   
 sub chooseCVSRoot() {  sub chooseCVSRoot() {
     my @foo;      if (2 <= @CVSROOT) {
     foreach (sort keys %CVSROOT) {  
         if (-d $CVSROOT{$_}) {  
             push(@foo, $_);  
         }  
     }  
     if (@foo > 1) {  
         my ($k);          my ($k);
         print "<form method=\"GET\" action=\"${scriptwhere}\">\n";          print "<form method=\"GET\" action=\"${scriptwhere}\">\n";
         foreach $k (keys %input) {          foreach $k (keys %input) {
Line 2603  sub chooseCVSRoot() {
Line 2901  sub chooseCVSRoot() {
         print "<td>\n<select name=\"cvsroot\"";          print "<td>\n<select name=\"cvsroot\"";
         print " onchange=\"submit()\"" if ($use_java_script);          print " onchange=\"submit()\"" if ($use_java_script);
         print ">\n";          print ">\n";
         foreach $k (@foo) {          foreach $k (@CVSROOT) {
             print "<option value=\"$k\"";              print "<option value=\"$k\"";
             print " selected" if ($k eq $cvstree);              print " selected" if ($k eq $cvstree);
             print ">" . ($CVSROOTdescr{$k} ? $CVSROOTdescr{$k} :              print ">", ($CVSROOTdescr{$k} ? $CVSROOTdescr{$k} : $k), "</option>\n";
                         $k). "</option>\n";  
         }          }
         print "</select>\n</td>";          print "</select>\n</td>";
         print "<td><input type=submit value=\"Go\"></td>";          print "<td>";
         print "</tr></table></form>";  
     }      }
     else {      else {
         # no choice ..          # no choice ..
         print "CVS Root: <b>[$cvstree]</b>";          print "CVS Root: <b>[$cvstree]</b>";
     }      }
   
       print " Module path or alias:\n";
       print "<INPUT TYPE=TEXT NAME=\"path\" VALUE=\"\" SIZE=15>\n";
       print "<input type=submit value=\"Go\">";
   
       if (2 <= @CVSROOT) {
           print "</td></tr></table></form>";
       }
 }  }
   
 sub chooseMirror() {  sub chooseMirror() {
Line 2631  sub chooseMirror() {
Line 2935  sub chooseMirror() {
         print "\nThis cvsweb is mirrored in:\n";          print "\nThis cvsweb is mirrored in:\n";
         foreach $mirror (keys %MIRRORS) {          foreach $mirror (keys %MIRRORS) {
             print ", " if ($moremirrors);              print ", " if ($moremirrors);
             print qq(<a href="$MIRRORS{$mirror}">$mirror</A>\n);              print &link(htmlquote($mirror),$MIRRORS{$mirror});
             $moremirrors = 1;              $moremirrors = 1;
         }          }
         print "<p>\n";          print "<p>\n";
Line 2674  sub download_url($$;$) {
Line 2978  sub download_url($$;$) {
   
     $revision =~ s/\b0\.//;      $revision =~ s/\b0\.//;
   
     if (defined($checkout_magic)      if (defined($checkoutMagic)
         && (!defined($mimetype) || $mimetype ne "text/x-cvsweb-markup")) {          && (!defined($mimetype) || $mimetype ne "text/x-cvsweb-markup")) {
         my ($path);          my $path = $where;
         ($path = $where) =~ s|/[^/]*$|/|;          $path =~ s|/[^/]*$|/|;
         $url = "$scriptname/$checkoutMagic/${path}$url";          $url = "$scriptname/$checkoutMagic/${path}$url";
     }      }
     $url .= "?rev=$revision";      $url .= "?rev=$revision";
     $url .= "&amp;content-type=$mimetype" if (defined($mimetype));      $url .= '&content-type=' . urlencode($mimetype) if (defined($mimetype));
   
     return $url;      $url;
 }  }
   
 # Presents a link to download the  # Presents a link to download the
 # selected revision  # selected revision
 sub download_link($$$;$) {  sub download_link($$$;$) {
     my ($url,$revision,$textlink,$mimetype) = @_;      my ($url, $revision, $textlink, $mimetype) = @_;
     my ($fullurl) = download_url($url,$revision,$mimetype);      my ($fullurl) = download_url($url, $revision, $mimetype);
     my ($paren) = $textlink =~ /^\(/;  
     $textlink =~ s/^\(// if ($paren);      $fullurl =~ s/:/sprintf("%%%02x", ord($&))/eg;
     $textlink =~ s/\)$// if ($paren);  
     print "(" if ($paren);      printf '<A HREF="%s"', hrefquote("$fullurl$barequery");
     print "<A HREF=\"$fullurl";  
     print $barequery;  
     print "\"";  
     if ($open_extern_window && (!defined($mimetype) || $mimetype ne "text/x-cvsweb-markup")) {      if ($open_extern_window && (!defined($mimetype) || $mimetype ne "text/x-cvsweb-markup")) {
         print " target=\"cvs_checkout\"";          print ' target="cvs_checkout"';
         # we should have          # we should have
         #   'if (document.cvswin==null) document.cvswin=window.open(...'          #   'if (document.cvswin==null) document.cvswin=window.open(...'
         # in order to allow the user to resize the window; otherwise          # in order to allow the user to resize the window; otherwise
Line 2718  sub download_link($$$;$) {
Line 3020  sub download_link($$$;$) {
         # currently, the best way is to comment out the size parameters          # currently, the best way is to comment out the size parameters
         # ($extern_window...) in cvsweb.conf.          # ($extern_window...) in cvsweb.conf.
         if ($use_java_script) {          if ($use_java_script) {
             print " onClick=\"window.open('$fullurl','cvs_checkout',";              my @attr = qw(resizeable scrollbars);
             print "'resizeable,scrollbars";  
             print ",status,toolbar" if (defined($mimetype)              push @attr, qw(status toolbar)
                 && $mimetype eq "text/html");                if (defined($mimetype) && $mimetype eq "text/html");
             print ",width=$extern_window_width" if (defined($extern_window_width));  
             print ",height=$extern_window_height" if (defined($extern_window_height));              push @attr, "width=$extern_window_width"
             print"');\"";                if (defined($extern_window_width));
   
               push @attr, "height=$extern_window_height"
                 if (defined($extern_window_height));
   
               printf q` onClick="window.open('%s','cvs_checkout','%s');"`,
                 hrefquote($fullurl), join(',', @attr);
         }          }
     }      }
     print "><b>$textlink</b></A>";      print "><b>$textlink</b></A>";
     print ")" if ($paren);  
 }  }
   
 # Returns a Query string with the  # Returns a Query string with the
Line 2750  sub toggleQuery($$) {
Line 3057  sub toggleQuery($$) {
         my ($value) = defined($vars{$var}) ? $vars{$var} : "";          my ($value) = defined($vars{$var}) ? $vars{$var} : "";
         my ($default) = defined($DEFAULTVALUE{$var}) ? $DEFAULTVALUE{$var} : "";          my ($default) = defined($DEFAULTVALUE{$var}) ? $DEFAULTVALUE{$var} : "";
         if ($value ne $default) {          if ($value ne $default) {
             $newquery .= "&amp;" if ($newquery ne "");              $newquery .= "&" if ($newquery ne "");
             $newquery .= urlencode($var) . "=" . urlencode($value);              $newquery .= urlencode($var) . "=" . urlencode($value);
         }          }
     }      }
Line 2761  sub toggleQuery($$) {
Line 3068  sub toggleQuery($$) {
 }  }
   
 sub urlencode($) {  sub urlencode($) {
     my ($in) = @_;      local($_) = @_;
     my ($out);  
     ($out = $in) =~ s/([\000-+{-\377])/sprintf("%%%02x", ord($1))/ge;      s/[\000-+{-\377]/sprintf("%%%02x", ord($&))/ge;
     return $out;  
       $_;
 }  }
   
   sub htmlquote($) {
       local($_) = @_;
   
       # Special Characters; RFC 1866
       s/&/&amp;/g;
       s/\"/&quot;/g;
       s/</&lt;/g;
       s/>/&gt;/g;
   
       $_;
   }
   
   sub htmlunquote($) {
       local($_) = @_;
   
       # Special Characters; RFC 1866
       s/&quot;/\"/g;
       s/&lt;/</g;
       s/&gt;/>/g;
       s/&amp;/&/g;
   
       $_;
   }
   
   sub hrefquote($) {
       local($_) = @_;
   
       y/ /+/;
   
       htmlquote($_)
   }
   
 sub http_header(;$) {  sub http_header(;$) {
     my $content_type = shift || "text/html";      my $content_type = shift || "text/html";
   
       $content_type .= "; charset=$charset"
         if $content_type =~ m,^text/, && defined($charset) && $charset;
   
     if (defined($moddate)) {      if (defined($moddate)) {
         if ($is_mod_perl) {          if ($is_mod_perl) {
             Apache->request->header_out("Last-Modified" => scalar gmtime($moddate) . " GMT");              Apache->request->header_out("Last-Modified" => scalar gmtime($moddate) . " GMT");
         }          }
         else {          else {
             print "Last-Modified: " . scalar gmtime($moddate) . " GMT\r\n";              print "Last-Modified: ", scalar gmtime($moddate), " GMT\r\n";
         }          }
     }      }
     if ($is_mod_perl) {      if ($is_mod_perl) {
Line 2784  sub http_header(;$) {
Line 3128  sub http_header(;$) {
             print "Content-type: $content_type\r\n";              print "Content-type: $content_type\r\n";
     }      }
     if ($allow_compress && $maycompress) {      if ($allow_compress && $maycompress) {
         if ($has_zlib || (defined($GZIPBIN) && open(GZIP, "|$GZIPBIN -1 -c"))) {          if ($has_zlib || (defined($CMD{gzip}) && open(GZIP, "| $CMD{gzip} -1 -c"))) {
             if ($is_mod_perl) {              if ($is_mod_perl) {
                     Apache->request->content_encoding("x-gzip");                      Apache->request->content_encoding("x-gzip");
                     Apache->request->header_out(Vary => "Accept-Encoding");                      Apache->request->header_out(Vary => "Accept-Encoding");
Line 2801  sub http_header(;$) {
Line 3145  sub http_header(;$) {
             }              }
             select(GZIP);              select(GZIP);
             $gzip_open = 1;              $gzip_open = 1;
 #           print "<!-- gzipped -->" if ($content_type eq "text/html");  #           print "<!-- gzipped -->" if ($content_type =~ m|^text/html\b|);
         }          }
         else {          else {
             if ($is_mod_perl) {              if ($is_mod_perl) {
Line 2810  sub http_header(;$) {
Line 3154  sub http_header(;$) {
             else {              else {
                     print "\r\n"; # Close headers                      print "\r\n"; # Close headers
             }              }
             print "<font size=-1>Unable to find gzip binary in the \$PATH to compress output</font><br>";              print "<font size=-1>Unable to find gzip binary in the <b>\$command_path</b> ($command_path) to compress output</font><br>";
         }          }
     }      }
     else {      else {
Line 2825  sub http_header(;$) {
Line 3169  sub http_header(;$) {
   
 sub html_header($) {  sub html_header($) {
     my ($title) = @_;      my ($title) = @_;
     my $version = '$zRevision: 1.103 $  $kRevision: 1.26 $'; #'      http_header("text/html");
     http_header();  
     print <<EOH;      print <<EOH;
 <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"  <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
  "http://www.w3.org/TR/REC-html40/loose.dtd">   "http://www.w3.org/TR/REC-html40/loose.dtd">
 <html>  <html>
   <head>
   <meta name="robots" content="nofollow">
 <title>$title</title>  <title>$title</title>
 <!-- CVSweb $version -->  <!-- knu-cvsweb $cvsweb_revision -->
 </head>  </head>
 $body_tag  $body_tag
 $logo <h1 align="center">$title</h1>  $logo <h1 align="center">$title</h1>
Line 2849  sub link_tags($) {
Line 3194  sub link_tags($) {
     my ($fileurl,$filename);      my ($fileurl,$filename);
   
     ($filename = $where) =~ s/^.*\///;      ($filename = $where) =~ s/^.*\///;
     $fileurl = urlencode($filename);      $fileurl = './' . urlencode($filename);
   
     foreach my $sym (split(", ", $tags)) {      foreach my $sym (split(", ", $tags)) {
         $ret .= ",\n" if ($ret ne "");          $ret .= ",\n" if ($ret ne "");
         $ret .= "<A HREF=\"$fileurl"          $ret .= &link($sym, $fileurl . toggleQuery('only_with_tag',$sym));
                 . toggleQuery('only_with_tag',$sym) . "\">$sym</A>";  
     }      }
     return $ret."\n";      return "$ret\n";
 }  }
   
 #  #

Legend:
Removed from v.1.1.1.7  
changed lines
  Added in v.1.1.1.26

CVSweb