[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.11 and 1.1.1.17

version 1.1.1.11, 2000/10/20 15:54:58 version 1.1.1.17, 2000/12/29 09:20:45
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.104 2000/11/01 22:05:12 hnordstrom Exp $
 # $kId: cvsweb.cgi,v 1.37 2000/10/20 15:46:01 knu Exp $  # $kId: cvsweb.cgi,v 1.49 2000/12/29 09:12:15 knu Exp $
 #  #
 ###  ###
   
Line 63  use vars qw (
Line 63  use vars qw (
     $is_links $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 $defaultDiffType $logsort $cvstree $cvsroot      $bylog $byfile $defaultDiffType $logsort $cvstree $cvsroot
     $mimetype $defaultTextPlain $defaultViewable $allow_compress      $mimetype $charset $defaultTextPlain $defaultViewable
     $GZIPBIN $backicon $diricon $fileicon $fullname $newname      $allow_compress $GZIPBIN $backicon $diricon $fileicon
     $cvstreedefault $body_tag $body_tag_for_src      $fullname $newname $cvstreedefault
     $logo $defaulttitle $address      $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 79  use vars qw (
Line 79  use vars qw (
     $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
     $LOG_FILESEPARATOR $LOG_REVSEPARATOR      $LOG_FILESEPARATOR $LOG_REVSEPARATOR
 );  );
   
Line 122  sub toggleQuery($$);
Line 122  sub toggleQuery($$);
 sub urlencode($);  sub urlencode($);
 sub htmlquote($);  sub htmlquote($);
 sub htmlunquote($);  sub htmlunquote($);
   sub hrefquote($);
 sub http_header(;$);  sub http_header(;$);
 sub html_header($);  sub html_header($);
 sub html_footer();  sub html_footer();
Line 228  $verbose = $v;
Line 229  $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;
   $where =~ tr|/|/|s;
 $doCheckout = ($where =~ /^\/$checkoutMagic/);  $doCheckout = ($where =~ /^\/$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|/+$||;  $scriptname =~ s|/+$||;
Line 244  $is_mod_perl = defined($ENV{MOD_PERL});
Line 246  $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_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);
Line 277  $maycompress = (((defined($ENV{HTTP_ACCEPT_ENCODING})
Line 279  $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",       || &fatal("500 Internal Error",
                sprintf('Error in loading configuration file: %s<BR><BR>%s<BR>',                 sprintf('Error in loading configuration file: %s<BR><BR>%s<BR>',
                        $config, &htmlify($@)));                         $config, &htmlify($@)));
Line 294  $query = $ENV{QUERY_STRING};
Line 296  $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 404  foreach $k (keys %ICONS) {
Line 407  foreach $k (keys %ICONS) {
     my ($itxt,$ipath,$iwidth,$iheight) = @{$ICONS{$k}};      my ($itxt,$ipath,$iwidth,$iheight) = @{$ICONS{$k}};
     if ($ipath) {      if ($ipath) {
         ${"${k}icon"} = sprintf('<IMG SRC="%s" ALT="%s" BORDER="0" WIDTH="%d" HEIGHT="%d">',          ${"${k}icon"} = sprintf('<IMG SRC="%s" ALT="%s" BORDER="0" WIDTH="%d" HEIGHT="%d">',
                                 htmlquote($ipath), htmlquote($itxt), $iwidth, $iheight)                                  hrefquote($ipath), htmlquote($itxt), $iwidth, $iheight)
     }      }
     else {      else {
         ${"${k}icon"} = $itxt;          ${"${k}icon"} = $itxt;
Line 416  my $config_cvstree = "$config-$cvstree";
Line 419  my $config_cvstree = "$config-$cvstree";
   
 # Do some special configuration for cvstrees  # Do some special configuration for cvstrees
 if (-f $config_cvstree) {  if (-f $config_cvstree) {
    do $config_cvstree     require $config_cvstree
      || &fatal("500 Internal Error",       || &fatal("500 Internal Error",
                sprintf('Error in loading configuration file: %s<BR><BR>%s<BR>',                 sprintf('Error in loading configuration file: %s<BR><BR>%s<BR>',
                        $config_cvstree, &htmlify($@)));                         $config_cvstree, &htmlify($@)));
Line 471  $module = $1;
Line 474  $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;
       $where =~ s,/[^/]*$,,;
       $where =~ s,^/,,;
       my($basedir) = ($where =~ m,([^/]+)$,);
   
       if ($basedir eq '' || $where 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 = '';
   
       do {
           chdir $tmpdir
             or $fatal = "500 Internal Error", "Unable to cd to temporary directory: $!"
               && last;
   
           my @params = (exists $input{only_with_tag} && length $input{only_with_tag})
             ? ("-r", $input{only_with_tag}) : ();
   
           system "cvs", "-RlQd", $cvsroot, "co", @params, $where
             and $fatal = "500 Internal Error","cvs co failure: $!: $where"
               && last;
   
           chdir "$where/.."
             or $fatal = "500 Internal Error","Cannot find expected directory in checkout"
               && last;
   
           $| = 1; # Essential to get the buffering right.
   
           print "Content-type: application/x-gzip\r\n\r\n";
   
           system "tar", "--ignore-failed-read", "--exclude", "CVS", "-zcf", "-", $basedir
             and $fatal = "500 Internal Error","tar zc failure: $!: $basedir"
               && last;
   
           chdir $tmpdir
             or $fatal = "500 Internal Error","Unable to cd to temporary directory: $!"
               && last;
       } while (0);
   
       system "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 812  elsif (-d $fullname) {
Line 873  elsif (-d $fullname) {
             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 ($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 909  elsif (-d $fullname) {
Line 986  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");
                 }                  }
             }              }
         }          }
Line 1001  sub findLastModifiedSubdirs(@) {
Line 1078  sub findLastModifiedSubdirs(@) {
 sub htmlify_sub(&$) {  sub htmlify_sub(&$) {
     (my $proc, local $_) = @_;      (my $proc, local $_) = @_;
     local @_ = split(m`(<a [^>]+>[^<]*</a>)`i);      local @_ = split(m`(<a [^>]+>[^<]*</a>)`i);
     my ($linked, $result);      my $linked;
       my $result = '';
   
     while (($_, $linked) = splice(@_, 0, 2)) {      while (($_, $linked) = splice(@_, 0, 2)) {
         &$proc();          &$proc();
         $result .= $_;          $result .= $_ if defined($_);
         $result .= $linked;          $result .= $linked if defined($linked);
     }      }
   
     $result;      $result;
Line 1051  sub htmlify($;$) {
Line 1129  sub htmlify($;$) {
                        \#?)                         \#?)
                       (\d+)\b                        (\d+)\b
                      }{                       }{
                          $1 . &link($2, sprintf($prcgi, $2)) . $3                           $1 . &link($2, sprintf($prcgi, $2))
                      }egix;                       }egix;
                 } $_;                  } $_;
             } while ($_ ne $prev);              } while ($_ ne $prev);
Line 1060  sub htmlify($;$) {
Line 1138  sub htmlify($;$) {
                 s{                  s{
                   (\b$prcategories/(\d+)\b)                    (\b$prcategories/(\d+)\b)
                  }{                   }{
                      &link($1, sprintf($prcgi, $2)) . $3                       &link($1, sprintf($prcgi, $2))
                  }egox;                   }egox;
             } $_;              } $_;
         }          }
Line 1077  sub htmlify($;$) {
Line 1155  sub htmlify($;$) {
                    )                     )
                   )                    )
                  }{                   }{
                      &link($1, sprintf($mancgi, $3 ne '' ? $3 : $4, $2)) . $5                       &link($1, sprintf($mancgi, $3 ne '' ? $3 : $4, $2))
                  }egx;                   }egx;
             } $_;              } $_;
         }          }
Line 1119  sub spacedHtmlText($;$) {
Line 1197  sub spacedHtmlText($;$) {
 sub link($$) {  sub link($$) {
         my($name, $where) = @_;          my($name, $where) = @_;
   
         sprintf '<A HREF="%s">%s</A>', htmlquote($where), $name;          sprintf '<A HREF="%s">%s</A>', hrefquote($where), $name;
 }  }
   
 sub revcmp($$) {  sub revcmp($$) {
Line 1488  sub doCheckout($$) {
Line 1566  sub doCheckout($$) {
       open(STDERR, ">&STDOUT"); # Redirect stderr to stdout        open(STDERR, ">&STDOUT"); # Redirect stderr to stdout
       exec("cvs", "-Rld", $cvsroot, "co", "-p", $revopt, $where);        exec("cvs", "-Rld", $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 1507  sub doCheckout($$) {
Line 1590  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 1563  sub cvswebMarkup($$$) {
Line 1641  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/) {
         printf '<IMG SRC="%s"><BR>', htmlquote("$url$barequery");          printf '<IMG SRC="%s"><BR>', hrefquote("$url$barequery");
     }      }
     elsif ($mimetype =~ m%^application/pdf%) {      elsif ($mimetype =~ m%^application/pdf%) {
         printf '<EMBED SRC="%s" WIDTH="100%"><BR>', htmlquote("$url$barequery");          printf '<EMBED SRC="%s" WIDTH="100%"><BR>', hrefquote("$url$barequery");
     }      }
     else {      else {
         print "<PRE>";          print "<PRE>";
Line 1779  sub getDirLogs($$@) {
Line 1857  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 (!defined($branch));
             $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 = undef;
                   $date = undef;
                   $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 = undef 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" && /$LOG_REVSEPARATOR/o) {  
             $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 (/$LOG_REVSEPARATOR/o || /$LOG_FILESEPARATOR/o) {              if (/$LOG_REVSEPARATOR/o || /$LOG_FILESEPARATOR/o) {
                 # End of a log entry.                  # End of a log entry.
Line 2010  sub readLog($;$) {
Line 2091  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 2046  sub readLog($;$) {
Line 2126  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 2053  sub readLog($;$) {
Line 2134  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 2635  sub navigateHeader($$$$$) {
Line 2715  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 qq`<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">`;
     print "<HTML>\n<HEAD>\n";      print "<HTML>\n<HEAD>\n";
     print '<!-- CVSweb $zRevision: 1.103 $  $kRevision: 1.37 $ -->';      print qq`<META name="robots" content="nofollow">\n`;
       print '<!-- CVSweb $zRevision: 1.104 $  $kRevision: 1.49 $ -->';
     print "\n<TITLE>$path$filename - $title - $rev</TITLE></HEAD>\n";      print "\n<TITLE>$path$filename - $title - $rev</TITLE></HEAD>\n";
     print  "$body_tag_for_src\n";      print  "$body_tag_for_src\n";
     print "<table width=\"100%\" border=0 cellspacing=0 cellpadding=1 bgcolor=\"$navigationHeaderColor\">";      print "<table width=\"100%\" border=0 cellspacing=0 cellpadding=1 bgcolor=\"$navigationHeaderColor\">";
Line 2860  sub download_link($$$;$) {
Line 2941  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);
   
     printf '<A HREF="%s"', htmlquote("$fullurl$barequery");      printf '<A HREF="%s"', hrefquote("$fullurl$barequery");
   
     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"';
Line 2894  sub download_link($$$;$) {
Line 2975  sub download_link($$$;$) {
               if (defined($extern_window_height));                if (defined($extern_window_height));
   
             printf q` onClick="window.open('%s','cvs_checkout','%s');"`,              printf q` onClick="window.open('%s','cvs_checkout','%s');"`,
               htmlquote($fullurl), join(',', @attr);                hrefquote($fullurl), join(',', @attr);
         }          }
     }      }
     print "><b>$textlink</b></A>";      print "><b>$textlink</b></A>";
Line 2934  sub urlencode($) {
Line 3015  sub urlencode($) {
   
     s/[\000-+{-\377]/sprintf("%%%02x", ord($&))/ge;      s/[\000-+{-\377]/sprintf("%%%02x", ord($&))/ge;
   
       $_;
        $_;  
 }  }
   
 sub htmlquote($) {  sub htmlquote($) {
Line 2962  sub htmlunquote($) {
Line 3042  sub htmlunquote($) {
     $_;      $_;
 }  }
   
   sub hrefquote($) {
       local($_) = @_;
   
       y/ /+/;
   
       htmlquote($_)
   }
   
 sub http_header(;$) {  sub http_header(;$) {
     my $content_type = shift || "text/html";      my $content_type = shift || "text/html";
     if (defined($moddate)) {      if (defined($moddate)) {
Line 2996  sub http_header(;$) {
Line 3084  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 3020  sub http_header(;$) {
Line 3108  sub http_header(;$) {
   
 sub html_header($) {  sub html_header($) {
     my ($title) = @_;      my ($title) = @_;
     my $version = '$zRevision: 1.103 $  $kRevision: 1.37 $'; #'      my $version = '$zRevision: 1.104 $  $kRevision: 1.49 $'; #'
     http_header();      http_header(defined($charset) ? "text/html; charset=$charset" : "text/html");
     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 -->  <!-- CVSweb $version -->
 </head>  </head>

Legend:
Removed from v.1.1.1.11  
changed lines
  Added in v.1.1.1.17

CVSweb