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

Annotation of cvsweb/cvsweb.cgi, Revision 4.38

4.5       schwarze    1: #!/usr/bin/perl
4.38    ! schwarze    2: # $Id: cvsweb.cgi,v 4.37 2019/11/29 18:50:15 schwarze Exp $
4.1       schwarze    3: # $knu: cvsweb.cgi,v 1.299 2010/11/13 16:37:18 simon
1.1       jfieber     4: #
3.1       knu         5: # cvsweb - a CGI interface to CVS trees.
1.1       jfieber     6: #
3.12      knu         7: # Written in their spare time by
3.113     scop        8: #             Bill Fenner          <fenner@FreeBSD.org>   (original work)
                      9: # extended by Henner Zeller        <zeller@think.de>,
                     10: #             Henrik Nordstrom     <hno@hem.passagen.se>
                     11: #             Ken Coar             <coar@Apache.Org>
                     12: #             Dick Balaska         <dick@buckosoft.com>
                     13: #             Akinori MUSHA        <knu@FreeBSD.org>
                     14: #             Jens-Uwe Mager       <jum@helios.de>
                     15: #             Ville Skyttä         <scop@FreeBSD.org>
                     16: #             Vassilii Khachaturov <vassilii@tarunz.org>
3.1       knu        17: #
                     18: # Based on:
                     19: # * Bill Fenners cvsweb.cgi revision 1.28 available from:
3.5       knu        20: #   http://www.FreeBSD.org/cgi/cvsweb.cgi/www/en/cgi/cvsweb.cgi
1.1       jfieber    21: #
1.21      wosch      22: # Copyright (c) 1996-1998 Bill Fenner
3.1       knu        23: #           (c) 1998-1999 Henner Zeller
3.109     scop       24: #           (c) 1999      Henrik Nordstrom
                     25: #           (c) 2000-2002 Akinori MUSHA
3.289     scop       26: #           (c) 2002-2005 Ville Skyttä
1.21      wosch      27: # All rights reserved.
                     28: #
                     29: # Redistribution and use in source and binary forms, with or without
                     30: # modification, are permitted provided that the following conditions
                     31: # are met:
                     32: # 1. Redistributions of source code must retain the above copyright
                     33: #    notice, this list of conditions and the following disclaimer.
                     34: # 2. Redistributions in binary form must reproduce the above copyright
                     35: #    notice, this list of conditions and the following disclaimer in the
                     36: #    documentation and/or other materials provided with the distribution.
                     37: #
                     38: # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
                     39: # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     40: # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     41: # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
                     42: # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     43: # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     44: # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     45: # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     46: # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     47: # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     48: # SUCH DAMAGE.
3.1       knu        49:
3.204     scop       50: require 5.006;
3.55      knu        51:
3.1       knu        52: use strict;
3.204     scop       53: use warnings;
                     54: use filetest qw(access);
                     55:
3.1       knu        56: use vars qw (
3.273     scop       57:   $VERSION $CheckoutMagic $MimeTypes $DEBUG
3.144     scop       58:   $config $allow_version_select
4.33      schwarze   59:   @CVSrepositories @CVSROOT %CVSROOT %CVSROOTdescr %DEFAULTVALUE %MTYPES
4.37      schwarze   60:   @DIFFTYPES %DIFFTYPES @LOGSORTKEYS %LOGSORTKEYS
3.129     scop       61:   %alltags %fileinfo %tags @branchnames %nameprinted
3.120     scop       62:   %symrev %revsym @allrevisions %date %author @revdisplayorder
3.152     scop       63:   @revisions %state %difflines %log %branchpoint @revorder $keywordsubstitution
4.20      schwarze   64:   $mancgi $doCheckout $scriptname $scriptwhere
4.2       schwarze   65:   $where $Browser $nofilelinks $maycompress @stickyvars
3.120     scop       66:   $is_links $is_lynx $is_w3m $is_msie $is_mozilla3 $is_textbased
                     67:   %input $query $barequery $sortby $bydate $byrev $byauthor
                     68:   $bylog $byfile $defaultDiffType $logsort $cvstree $cvsroot
4.38    ! schwarze   69:   %CMD $allow_compress $backicon $diricon $fileicon
4.33      schwarze   70:   $fullname $logo $defaulttitle $address $binfileicon $iconsdir
4.35      schwarze   71:   $shortLogLen $show_author $hr_breakable $hr_ignwhite $hr_ignkeysubst
4.36      schwarze   72:   $mime_types $allow_annotate $allow_markup $allow_mailtos
3.120     scop       73:   $allow_log_extra $allow_dir_extra $allow_source_extra
4.18      schwarze   74:   $edit_option_form
3.144     scop       75:   $show_subdir_lastmod $show_log_in_markup $preformat_in_markup
3.233     scop       76:   $tabstop $state $annTable $sel @ForbiddenFiles
4.24      schwarze   77:   $use_descriptions %descriptions $dwhere
3.222     scop       78:   $use_moddate $gzip_open $file_list_len
4.30      schwarze   79:   $allow_tar @tar_options @cvs_options
3.222     scop       80:   @annotate_options @rcsdiff_options
4.23      schwarze   81:   $HTML_DOCTYPE $HTML_META $cssurl $CSS
3.1       knu        82: );
                     83:
4.13      schwarze   84: require Compress::Zlib;
3.285     scop       85: use Cwd                   qw(abs_path);
3.171     scop       86: use File::Path            qw(rmtree);
3.232     scop       87: use File::Spec::Functions qw(canonpath catdir catfile curdir devnull rootdir
                     88:                              tmpdir updir);
4.37      schwarze   89: use File::Temp            qw(tempdir);
3.229     scop       90: use IPC::Run              qw();
3.172     scop       91: use Time::Local           qw(timegm);
3.206     scop       92: use URI::Escape           qw(uri_escape uri_unescape);
3.122     scop       93:
3.222     scop       94: use constant VALID_PATH   => qr/^([[:^cntrl:]]+)$/o;
                     95: use constant VALID_TAG1   => qr/^([a-zA-Z][[:graph:]]*)$/o;
                     96: use constant VALID_TAG2   => qr/^([^\$,.:;@]+)$/o;
3.261     scop       97: use constant CVSWEBMARKUP => qr{^text/(x-cvsweb|vnd\.viewcvs)-markup$}io;
3.222     scop       98: use constant LOG_FILESEPR => qr/^={77}$/o;
                     99: use constant LOG_REVSEPR  => qr/^-{28}$/o;
                    100:
3.122     scop      101: # -----------------------------------------------------------------------------
                    102:
                    103: # All global initialization that can be done in compile time should go to
                    104: # the BEGIN block.  Persistent environments, such as mod_perl, will benefit
                    105: # from this.
                    106:
                    107: BEGIN
                    108: {
4.8       schwarze  109:   $VERSION = '3.1';
3.122     scop      110:
                    111:   $HTML_DOCTYPE =
3.208     scop      112:     '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ' .
                    113:     '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
3.122     scop      114:
                    115:   $HTML_META = <<EOM;
3.208     scop      116: <meta name="robots" content="nofollow" />
4.16      schwarze  117: <meta name="generator" content="CVSweb $VERSION" />
3.208     scop      118: <meta http-equiv="Content-Style-Type" content="text/css" />
3.122     scop      119: EOM
                    120:
3.156     scop      121:   # Use MIME::Types for MIME type lookups if it's available.
                    122:   eval {
                    123:     require MIME::Types;
3.223     scop      124:     $MimeTypes = MIME::Types->new(only_complete => 1);
3.156     scop      125:   };
                    126:   $MimeTypes = undef if $@;
                    127:
3.222     scop      128:   $CheckoutMagic = '~checkout~';
4.30      schwarze  129:   $CMD{$_} = "/usr/bin/$_" for (qw(cvs rcsdiff rlog));
4.29      schwarze  130:   $CMD{tar} = "/bin/tar";
3.122     scop      131: }
                    132:
                    133: # -----------------------------------------------------------------------------
                    134:
4.17      schwarze  135: sub printDiffSelect();
3.168     scop      136: sub printDiffSelectStickyVars();
3.225     scop      137: sub getDiffLinks($$$);
4.17      schwarze  138: sub printLogSortSelect();
3.12      knu       139: sub findLastModifiedSubdirs(@);
3.36      knu       140: sub htmlify_sub(&$);
3.12      knu       141: sub htmlify($;$);
3.20      knu       142: sub spacedHtmlText($;$);
3.12      knu       143: sub link($$);
                    144: sub revcmp($$);
3.103     knu       145: sub fatal($$@);
3.269     scop      146: sub redirect($;$);
3.12      knu       147: sub safeglob($);
3.58      knu       148: sub search_path($);
3.156     scop      149: sub getMimeType($;$);
3.24      knu       150: sub head($;$);
                    151: sub scan_directives(@);
3.275     scop      152: sub doAnnotate($$);
                    153: sub doCheckout($$$);
3.219     scop      154: sub cvswebMarkup($$$$$$;$);
3.12      knu       155: sub viewable($);
                    156: sub doDiff($$$$$$);
                    157: sub getDirLogs($$@);
                    158: sub readLog($;$);
3.219     scop      159: sub printLog($$$;$$);
3.12      knu       160: sub doLog($);
                    161: sub flush_diff_rows($$$$);
3.144     scop      162: sub human_readable_diff($$);
3.163     scop      163: sub navigateHeader($$$$$;$);
3.12      knu       164: sub plural_write($$);
                    165: sub readableTime($$);
                    166: sub clickablePath($$);
                    167: sub chooseCVSRoot();
                    168: sub fileSortCmp();
                    169: sub download_url($$;$);
                    170: sub download_link($$$;$);
3.219     scop      171: sub display_url($$;$);
                    172: sub display_link($$;$$);
3.140     scop      173: sub toggleQuery($;$);
3.35      knu       174: sub htmlquote($);
3.36      knu       175: sub htmlunquote($);
3.271     scop      176: sub uri_escape_path($);
3.163     scop      177: sub http_header(;$$);
                    178: sub html_header($;$);
3.12      knu       179: sub html_footer();
                    180: sub link_tags($);
3.233     scop      181: sub forbidden($);
3.191     scop      182: sub startproc(@);
3.215     scop      183: sub runproc(@);
3.12      knu       184:
3.284     scop      185: # Get rid of unsafe environment vars.  Don't do this in the BEGIN block
                    186: # (think mod_perl)...
3.142     scop      187: delete(@ENV{qw(PATH IFS CDPATH ENV BASH_ENV)});
4.31      schwarze  188:
                    189: # Helps to achieve read only access to the repositories
                    190: # with cvs >= 1.12.1 and doesn't hurt other versions.
                    191: $ENV{CVSREADONLYFS} = 1;
3.59      knu       192:
4.4       schwarze  193: # Location of the configuration file inside the web server chroot:
                    194: $config = '/conf/cvsweb/cvsweb.conf';
3.1       knu       195:
3.284     scop      196: ######## Configuration parameters #########
3.120     scop      197:
4.33      schwarze  198: @CVSrepositories = @CVSROOT = %CVSROOT = %DEFAULTVALUE =
4.37      schwarze  199:   %MTYPES = %tags = %alltags = %fileinfo = ();
3.120     scop      200:
4.26      schwarze  201: $logo = $defaulttitle =
4.32      schwarze  202:   $address = $shortLogLen = $show_author =
4.35      schwarze  203:   $hr_breakable = $hr_ignwhite =
4.36      schwarze  204:   $hr_ignkeysubst = $mime_types = $allow_annotate =
4.17      schwarze  205:   $allow_markup = $allow_compress = $edit_option_form =
3.284     scop      206:   $show_subdir_lastmod = $show_log_in_markup = $preformat_in_markup =
4.18      schwarze  207:   $tabstop = $use_moddate = $gzip_open = $DEBUG =
4.23      schwarze  208:   $allow_tar = undef;
3.284     scop      209:
3.290     scop      210: $allow_version_select = $allow_mailtos = $allow_log_extra = 1;
3.32      knu       211:
4.2       schwarze  212: @DIFFTYPES = qw(h H u c);
3.37      knu       213: @DIFFTYPES{@DIFFTYPES} = (
3.120     scop      214:   {
                    215:     'descr'   => 'colored',
                    216:     'opts'    => ['-u'],
                    217:     'colored' => 1,
                    218:   },
                    219:   {
                    220:     'descr'   => 'long colored',
                    221:     'opts'    => ['--unified=15'],
                    222:     'colored' => 1,
                    223:   },
                    224:   {
                    225:     'descr'   => 'unified',
                    226:     'opts'    => ['-u'],
                    227:     'colored' => 0,
                    228:   },
                    229:   {
                    230:     'descr'   => 'context',
                    231:     'opts'    => ['-c'],
                    232:     'colored' => 0,
                    233:   },
3.80      knu       234: );
3.37      knu       235:
                    236: @LOGSORTKEYS = qw(cvs date rev);
                    237: @LOGSORTKEYS{@LOGSORTKEYS} = (
3.254     scop      238:   { descr => 'Not sorted',  },
                    239:   { descr => 'Commit date', },
                    240:   { descr => 'Revision',    },
3.80      knu       241: );
3.37      knu       242:
3.284     scop      243: ##### End of configuration parameters #####
3.1       knu       244:
3.264     scop      245: my $pathinfo = '';
                    246: if (defined($ENV{PATH_INFO}) && $ENV{PATH_INFO} ne '') {
3.194     scop      247:   ($pathinfo) = ($ENV{PATH_INFO} =~ VALID_PATH)
                    248:     or fatal('500 Internal Error',
                    249:              'Illegal PATH_INFO in environment: <code>%s</code>',
                    250:              $ENV{PATH_INFO});
                    251: }
                    252: if ($ENV{SCRIPT_NAME}) {
                    253:   ($scriptname) = ($ENV{SCRIPT_NAME} =~ VALID_PATH)
                    254:     or fatal('500 Internal Error',
                    255:              'Illegal SCRIPT_NAME in environment: <code>%s</code>',
                    256:              $ENV{SCRIPT_NAME});
                    257: }
                    258:
                    259: $scriptname    = '' unless defined($scriptname);
                    260:
3.120     scop      261: $where         =  $pathinfo;
3.268     scop      262: $doCheckout    =  $where =~ s|^/$CheckoutMagic/|/|o;
3.120     scop      263: $where         =~ s|^/||;
4.21      schwarze  264: $scriptname    =~ s|^/+||;
3.63      knu       265:
3.64      knu       266: # Let's workaround thttpd's stupidity..
3.63      knu       267: if ($scriptname =~ m|/$|) {
3.120     scop      268:   $pathinfo .= '/';
                    269:   my $re = quotemeta $pathinfo;
                    270:   $scriptname =~ s/$re$//;
3.63      knu       271: }
4.21      schwarze  272: $scriptname = "/$scriptname" if $scriptname;
3.63      knu       273:
3.271     scop      274: # $scriptname : the URI escaped path to this script
                    275: # $where      : the path in the CVS repository (without leading /, or only /)
                    276: # $scriptwhere: the URI escaped $scriptname + '/' + $where
                    277: $scriptname   = uri_escape_path($scriptname);
                    278: $scriptwhere  = join('/', $scriptname, uri_escape_path($where));
3.268     scop      279: $where        = '/' if ($where eq '');
3.3       knu       280:
3.188     scop      281: # In text-based browsers, it's very annoying to have two links per file;
                    282: # skip linking the image for them.
                    283:
3.120     scop      284: $Browser     = $ENV{HTTP_USER_AGENT} || '';
3.187     scop      285: $is_links    = ($Browser =~ m`^E?Links `);
3.80      knu       286: $is_lynx     = ($Browser =~ m`^Lynx/`i);
                    287: $is_w3m      = ($Browser =~ m`^w3m/`i);
                    288: $is_msie     = ($Browser =~ m`MSIE`);
3.5       knu       289: $is_mozilla3 = ($Browser =~ m`^Mozilla/[3-9]`);
3.3       knu       290:
3.34      knu       291: $is_textbased = ($is_links || $is_lynx || $is_w3m);
3.5       knu       292:
                    293: $nofilelinks = $is_textbased;
3.1       knu       294:
                    295: # newer browsers accept gzip content encoding
                    296: # and state this in a header
                    297: # (netscape did always but didn't state it)
                    298: # It has been reported that these
                    299: #  braindamaged MS-Internet Exploders claim that they
                    300: # accept gzip .. but don't in fact and
                    301: # display garbage then :-/
3.23      knu       302: # Turn off gzip if running under mod_perl and no zlib is available,
                    303: # piping does not work as expected inside the server.
3.120     scop      304: $maycompress = (
                    305:   ((defined($ENV{HTTP_ACCEPT_ENCODING})
                    306:     && $ENV{HTTP_ACCEPT_ENCODING} =~ /gzip/)
                    307:    || $is_mozilla3)
                    308:   && !$is_msie
4.13      schwarze  309:   && !(defined($ENV{MOD_PERL}))
3.120     scop      310: );
3.1       knu       311:
3.284     scop      312: # Parameters that will be sticky in all constructed links/query strings.
3.194     scop      313: @stickyvars =
3.282     scop      314:   qw(cvsroot hideattic ignorecase sortby logsort f only_with_tag ln
                    315:      hidecvsroot hidenonreadable);
1.1       jfieber   316:
3.227     scop      317: # Load configuration.
4.22      schwarze  318: {
                    319:   $config =~ m|^/| or fatal '500 Internal Error',
                    320:     'Configuration file name "<code>%s</code>" is not an absolute path.',
                    321:     $config;
                    322:   defined do $config and last;
                    323:   $@ and fatal '500 Internal Error',
                    324:     'Error loading configuration file "<code>%s</code>": <pre>%s</pre>',
                    325:     $config, $@;
                    326:   fatal '500 Internal Error',
                    327:     'Cannot read configuration file "<code>%s</code>": %s',
                    328:     $config, $! || 'unknown error';
3.1       knu       329: }
                    330:
3.183     scop      331: # Try to find a readable dir where we can cd into.  Some abs_path()
                    332: # implementations as well as various cvs operations require such a dir to
                    333: # work properly.
                    334: {
                    335:   local $^W = 0;
3.285     scop      336:   for my $dir (tmpdir(), rootdir()) {
                    337:     last if (-r $dir && chdir($dir));
3.183     scop      338:   }
                    339: }
                    340:
3.144     scop      341: $CSS = $cssurl ?
3.208     scop      342:   sprintf("<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\" />\n",
3.144     scop      343:           htmlquote($cssurl)) : '';
                    344:
3.194     scop      345: # --- input parameters
                    346:
3.202     scop      347: my %query = ();
                    348: if (defined($ENV{QUERY_STRING})) {
                    349:   for my $p (split(/[;&]+/, $ENV{QUERY_STRING})) {
                    350:     next unless $p;
                    351:     $p =~ y/+/ /;
                    352:     my ($key, $val) = split(/=/, $p, 2);
                    353:     next unless defined($key);
4.9       schwarze  354:     $key = uri_unescape($key);
                    355:     $key =~ /([^a-z_12-])/ and fatal('404 Not Found',
                    356:       'Invalid character "%s" in query parameter "%s"', $1, $key);
                    357:     if (defined $val) {
                    358:       $val = uri_unescape($val);
                    359:       $val =~ /([^a-zA-Z_01-9.\/-])/ and fatal('404 Not Found',
                    360:         'Invalid character "%s" in the value "%s" of the query parameter "%s"',
4.14      schwarze  361:         $1, $val, $key);
4.9       schwarze  362:     } else {
                    363:       $val = 1;
                    364:     }
3.202     scop      365:     $query{$key} = $val;
                    366:   }
                    367: }
                    368:
3.1       knu       369: undef %input;
1.10      wosch     370:
3.194     scop      371: my $t;
4.18      schwarze  372: for my $p (qw(hideattic hidecvsroot hidenonreadable ignorecase ln copt
                    373:               options tarball)) {
3.202     scop      374:   $t = $query{$p};
                    375:   if (defined($t)) {
3.222     scop      376:     ($input{$p}) = ($t =~ /^([01]|on)$/)
3.194     scop      377:       or fatal('500 Internal Error',
                    378:                'Invalid boolean value: <code>%s=%s</code>', $p, $t);
                    379:   }
                    380: }
                    381: for my $p (qw(annotate r1 r2 rev tr1 tr2)) {
3.202     scop      382:   $t = $query{$p};
                    383:   if (defined($t)) {
3.207     scop      384:     if (($p eq 'r1' || $p eq 'r2') && $t eq 'text') {
                    385:       # Special case for the "Use text field" option in the log view diff form.
                    386:       $input{$p} = $t;
                    387:       next;
3.275     scop      388:     } elsif (($p eq 'rev' || $p eq 'annotate') && ($t eq '.' || $t eq 'HEAD')){
3.253     scop      389:       # Another special case, allow linking to latest revision using these.
                    390:       $input{$p} = '.';
                    391:       next;
3.207     scop      392:     }
3.194     scop      393:     my ($rev, $tag) = split(/:/, $t, 2);
3.251     scop      394:     ($input{$p}) = ($rev =~ /^(\d+(?:\.\d+)*)$/)
3.194     scop      395:       or fatal('500 Internal Error',
                    396:                'Invalid revision: <code>%s=%s</code>', $p, $t);
                    397:     if (defined($tag)) {
                    398:       ($tag) = ($tag =~ VALID_TAG1)
                    399:         or fatal('500 Internal Error',
3.254     scop      400:                  'Invalid tag/branch name in revision: <code>%s=%s</code>',
                    401:                  $p, $t);
3.194     scop      402:       ($tag) = ($tag =~ VALID_TAG2)
                    403:         or fatal('500 Internal Error',
3.254     scop      404:                  'Invalid tag/branch name in revision: <code>%s=%s</code>',
                    405:                  $p, $t);
3.207     scop      406:       $input{$p} .= ':' . $tag;
3.194     scop      407:     }
                    408:   }
                    409: }
3.202     scop      410: $t = defined($query{only_with_tag}) ?
                    411:   $query{only_with_tag} : $query{only_on_branch}; # Backwards compatibility.
                    412: if (defined($t)) {
3.211     scop      413:   ($input{only_with_tag}) = ($t =~ VALID_TAG1)
3.194     scop      414:     or fatal('500 Internal Error',
                    415:              'Invalid tag/branch name: <code>%s</code>', $t);
3.211     scop      416:   ($input{only_with_tag}) = ($t =~ VALID_TAG2)
3.194     scop      417:     or fatal('500 Internal Error',
                    418:              'Invalid tag/branch name: <code>%s</code>', $t);
                    419: }
3.202     scop      420: $t = $query{logsort};
                    421: if (defined($t)) {
3.222     scop      422:   ($input{logsort}) = ($t =~ /^(cvs|date|rev)$/)
3.194     scop      423:     or fatal('500 Internal Error',
                    424:              'Unsupported log sort key: <code>%s</code>', $t);
                    425: }
3.202     scop      426: $t = $query{f};
                    427: if (defined($t)) {
3.225     scop      428:   ($input{f}) = ($t =~ /^(([hH]|[ucs]c?)|ext\d*)$/)
3.194     scop      429:     or fatal('500 Internal Error',
                    430:              'Unsupported diff format: <code>%s</code>', $t);
                    431: }
3.202     scop      432: $t = $query{sortby};
                    433: if (defined($t)) {
3.222     scop      434:   ($input{sortby}) = ($t =~ /^(file|date|rev|author|log)$/)
3.194     scop      435:     or fatal('500 Internal Error',
                    436:              'Unsupported dir sort key: <code>%s</code>', $t);
                    437: }
3.202     scop      438: $t = $query{'content-type'};
                    439: if (defined($t)) {
3.294     scop      440:   ($input{'content-type'}) = ($t =~ m|^([-0-9A-Za-z]+/[-0-9A-Za-z\.\+]+)$|)
3.194     scop      441:     or fatal('500 Internal Error',
                    442:              'Unsupported content type: <code>%s</code>', $t);
                    443: }
3.202     scop      444: $t = $query{cvsroot};
                    445: if (defined($t)) {
3.222     scop      446:   ($input{cvsroot}) = ($t =~ /^([[:print:]]+)$/)
3.194     scop      447:     or fatal('500 Internal Error',
                    448:              'Invalid symbolic CVS root name: <code>%s</code>', $t);
                    449: }
3.202     scop      450: $t = $query{path};
                    451: if (defined($t)) {
3.194     scop      452:   ($input{path}) = ($t =~ VALID_PATH)
                    453:     or fatal('500 Internal Error',
                    454:              'Invalid path: <code>%s</code>', $t);
3.97      knu       455: }
3.194     scop      456: undef($t);
3.205     scop      457: undef(%query);
3.97      knu       458:
3.194     scop      459: # --- end input parameters
1.10      wosch     460:
3.158     scop      461: #
                    462: # CVS roots
                    463: #
                    464: my $rootfound = 0;
                    465: for (my $i = 0; $i < scalar(@CVSrepositories); $i += 2) {
                    466:   my $key = $CVSrepositories[$i];
3.232     scop      467:   my ($descr, $root) = @{$CVSrepositories[$i+1]};
                    468:   $root = canonpath($root);
                    469:   unless (-d $root) {
                    470:     warn("Root '$root' defined in \@CVSrepositories is not a directory, " .
3.158     scop      471:          'entry ignored');
                    472:     next;
                    473:   }
                    474:   $rootfound ||= 1;
                    475:   $CVSROOTdescr{$key} = $descr;
3.232     scop      476:   $CVSROOT{$key} = $root;
3.158     scop      477:   push(@CVSROOT, $key);
                    478: }
                    479: unless ($rootfound) {
                    480:   fatal('500 Internal Error',
                    481:         'No valid CVS roots found!  See <code>@CVSrepositories</code> in ' .
3.221     scop      482:         'the configuration file (<code>%s</code>).',
3.158     scop      483:         $config);
                    484: }
                    485: undef $rootfound;
                    486:
4.26      schwarze  487: $DEFAULTVALUE{cvsroot} = $CVSrepositories[0];
1.10      wosch     488:
3.120     scop      489: while (my ($key, $defval) = each %DEFAULTVALUE) {
3.80      knu       490:
3.120     scop      491:   # Replace not given parameters with defaults.
3.194     scop      492:   next unless (defined($defval) && $defval =~ /\S/ && !defined($input{$key}));
3.120     scop      493:
3.284     scop      494:   # Empty checkboxes in forms return nothing, so we define a helper parameter
3.120     scop      495:   # in these forms (copt) which indicates that we just set parameters with a
                    496:   # checkbox.
3.194     scop      497:   if ($input{copt}) {
3.120     scop      498:
3.194     scop      499:     # 'copt' is set -> the result of empty input checkbox
3.120     scop      500:     # -> set to zero (disable) if default is a boolean (0|1).
                    501:     $input{$key} = 0 if ($defval eq '0' || $defval eq '1');
                    502:
                    503:   } else {
                    504:
3.194     scop      505:     # 'copt' isn't set --> empty input is not the result
3.120     scop      506:     # of empty input checkbox --> set default.
                    507:     $input{$key} = $defval;
                    508:   }
1.10      wosch     509: }
3.12      knu       510:
3.1       knu       511: $barequery = "";
3.31      knu       512: my @barequery;
3.1       knu       513: foreach (@stickyvars) {
3.80      knu       514:
3.120     scop      515:   # construct a query string with the sticky non default parameters set
                    516:   if (defined($input{$_})
                    517:       && !(defined($DEFAULTVALUE{$_}) && $input{$_} eq $DEFAULTVALUE{$_}))
                    518:   {
3.206     scop      519:     push(@barequery, join('=', uri_escape($_), uri_escape($input{$_})));
3.120     scop      520:   }
3.1       knu       521: }
3.80      knu       522:
3.1       knu       523: # is there any query ?
3.31      knu       524: if (@barequery) {
3.203     scop      525:   $barequery = join (';', @barequery);
3.120     scop      526:   $query     = "?$barequery";
3.203     scop      527:   $barequery = ";$barequery";
3.80      knu       528: } else {
3.120     scop      529:   $query = "";
3.1       knu       530: }
3.31      knu       531: undef @barequery;
3.1       knu       532:
3.254     scop      533: if (defined($input{path})) {
3.120     scop      534:   redirect("$scriptname/$input{path}$query");
3.57      knu       535: }
                    536:
3.1       knu       537: # get actual parameters
3.144     scop      538: {
                    539:   my $sortby = $input{sortby} || 'file';
                    540:   $bydate    = 0;
                    541:   $byrev     = 0;
                    542:   $byauthor  = 0;
                    543:   $bylog     = 0;
                    544:   $byfile    = 0;
                    545:   if ($sortby eq 'date') {
                    546:     $bydate = 1;
                    547:   } elsif ($sortby eq 'rev') {
                    548:     $byrev = 1;
                    549:   } elsif ($sortby eq 'author') {
                    550:     $byauthor = 1;
                    551:   } elsif ($sortby eq 'log') {
                    552:     $bylog = 1;
                    553:   } else {
                    554:     $byfile = 1;
                    555:   }
3.1       knu       556: }
                    557:
3.254     scop      558: $defaultDiffType = $input{f};
3.1       knu       559:
3.254     scop      560: $logsort = $input{logsort};
3.1       knu       561:
                    562: # alternate CVS-Tree, configured in cvsweb.conf
3.254     scop      563: if ($input{cvsroot} && $CVSROOT{$input{cvsroot}}) {
                    564:   $cvstree = $input{cvsroot};
3.1       knu       565: } else {
4.26      schwarze  566:   $cvstree = $CVSrepositories[0];
1.10      wosch     567: }
                    568:
3.1       knu       569: $cvsroot = $CVSROOT{$cvstree};
1.10      wosch     570:
4.33      schwarze  571: if ($iconsdir) {
                    572:   $backicon = '<img src="' . $iconsdir . '/back.gif" alt="[BACK]"' .
                    573:     ' border="0" width="20" height="22"/>';
                    574:   $diricon = '<img src="' . $iconsdir . '/dir.gif" alt="[DIR]"' .
                    575:     ' border="0" width="20" height="22"/>';
                    576:   $fileicon = '<img src="' . $iconsdir . '/text.gif" alt="[TXT]"' .
                    577:     ' border="0" width="20" height="22"/>';
                    578:   $binfileicon = '<img src="' . $iconsdir . '/binary.gif" alt="[BIN]"' .
                    579:     ' border="0" width="20" height="22"/>';
                    580: } else {
                    581:   $backicon = 'back';
                    582:   $diricon = 'dir';
                    583:   $fileicon = 'file';
                    584:   $binfileicon = 'binfile';
1.24      wosch     585: }
                    586:
3.27      knu       587: my $config_cvstree = "$config-$cvstree";
                    588:
3.1       knu       589: # Do some special configuration for cvstrees
3.27      knu       590: if (-f $config_cvstree) {
3.120     scop      591:   do "$config_cvstree"
                    592:     or fatal("500 Internal Error",
3.208     scop      593:              'Error in loading configuration file: %s<br /><br />%s<br />',
3.120     scop      594:              $config_cvstree, $@);
3.27      knu       595: }
3.31      knu       596: undef $config_cvstree;
3.1       knu       597:
3.233     scop      598: $fullname         = catfile($cvsroot, $where);
3.1       knu       599:
3.63      knu       600: my $rewrite = 0;
                    601: if ($pathinfo =~ m|//|) {
3.120     scop      602:   $pathinfo =~ y|/|/|s;
                    603:   $rewrite = 1;
3.63      knu       604: }
3.120     scop      605: if (-d $fullname) {
                    606:   if ($pathinfo !~ m|/$|) {
                    607:     $pathinfo .= '/';
                    608:     $rewrite   = 1;
                    609:   }
3.268     scop      610: } elsif ($pathinfo =~ m|/$|) {
                    611:   chop $pathinfo;
                    612:   $rewrite = 1;
3.63      knu       613: }
                    614: if ($rewrite) {
3.271     scop      615:   redirect($scriptname . uri_escape_path($pathinfo) . $query, 1);
3.1       knu       616: }
3.268     scop      617: undef $rewrite;
3.1       knu       618:
3.264     scop      619: undef $pathinfo;
3.63      knu       620:
3.1       knu       621: if (!-d $cvsroot) {
3.120     scop      622:   fatal("500 Internal Error",
                    623:         '$CVSROOT not found!<p>The server on which the CVS tree lives is probably down.  Please try again in a few minutes.');
3.1       knu       624: }
                    625:
                    626: #
3.233     scop      627: # Short-circuit forbidden things.  Note that $fullname should not change
                    628: # after this, because the rest of the code assumes this check has already
                    629: # been done.
3.1       knu       630: #
3.233     scop      631: fatal('403 Forbidden', 'Access to %s forbidden.', $where)
                    632:   if forbidden($fullname);
3.46      knu       633:
                    634: #
                    635: # Handle tarball downloads before any headers are output.
                    636: #
                    637: if ($input{tarball}) {
3.120     scop      638:   fatal('403 Forbidden', 'Downloading tarballs is prohibited.')
                    639:     unless $allow_tar;
3.191     scop      640:
3.120     scop      641:   my ($module)  =  ($where =~ m,^/?(.*),);    # untaint
                    642:   $module       =~ s,/([^/]*)$,,;
4.25      schwarze  643:   my ($ext)     =  ($1 =~ /(\.t(?:ar\.)?gz)$/);
3.120     scop      644:   my ($basedir) =  ($module =~ m,([^/]+)$,);
                    645:
                    646:   if ($basedir eq '' || $module eq '') {
                    647:     fatal('500 Internal Error',
                    648:           'You cannot download the top level directory.');
                    649:   }
                    650:
4.29      schwarze  651:   unless ($ext eq '.tar.gz' || $ext eq '.tgz') {
                    652:     fatal('404 Not Found', 'Unsupported archive type.');
3.215     scop      653:   }
3.191     scop      654:
3.138     scop      655:   my $tmpexportdir;
                    656:   eval {
                    657:     local $SIG{__DIE__};
3.171     scop      658:     # Don't use the CLEANUP argument to tempdir() here, since we might be under
                    659:     # mod_perl (the process runs for a long time), unlink explicitly later.
                    660:     $tmpexportdir = tempdir('.cvsweb.XXXXXXXX', TMPDIR => 1);
3.138     scop      661:   };
                    662:   if ($@) {
                    663:     fatal('500 Internal Error', 'Unable to make temporary directory: %s', $@);
                    664:   }
3.191     scop      665:   if (!chdir($tmpexportdir)) {
                    666:     fatal('500 Internal Error',
                    667:           "Can't cd to temporary directory %s: %s", $tmpexportdir, $!);
                    668:   }
3.120     scop      669:
                    670:   my @fatal;
3.194     scop      671:   my $tag = $input{only_with_tag} || 'HEAD';
                    672:   $tag = 'HEAD' if ($tag eq 'MAIN');
3.120     scop      673:
3.215     scop      674:   my @cmd =
3.241     scop      675:     ($CMD{cvs}, @cvs_options, '-Qd', $cvsroot, 'export', '-r', $tag,
                    676:      '-d', $basedir, $module);
3.215     scop      677:   my $export_err;
                    678:   my ($errcode, $err) = runproc(\@cmd, '2>', \$export_err);
                    679:   if ($errcode) {
                    680:     @fatal =
                    681:       ('500 Internal Error',
                    682:        'Export failure (exit status %s), output: <pre>%s</pre>',
                    683:        $errcode, $err || $export_err);
                    684:   } else {
3.120     scop      685:     $| = 1;    # Essential to get the buffering right.
3.191     scop      686:     local (*TAR_OUT);
4.30      schwarze  687:     my ($h, $err) = startproc($CMD{tar}, @tar_options, '-czf', '-',
                    688:       $basedir, '>pipe', \*TAR_OUT);
3.191     scop      689:     if ($h) {
4.30      schwarze  690:       print "Content-Type: application/x-gzip\r\n\r\n";
3.191     scop      691:       local $/ = undef;
                    692:       print <TAR_OUT>;
3.229     scop      693:       $h->finish();
3.120     scop      694:     } else {
3.215     scop      695:       @fatal = ('500 Internal Error',
4.25      schwarze  696:                 'tar failure (exit status %s), output: <pre>%s</pre>',
                    697:                 $? >> 8 || -1, $err);
3.120     scop      698:     }
                    699:   }
3.46      knu       700:
3.171     scop      701:   # Clean up.
4.11      schwarze  702:   chdir("..");
3.171     scop      703:   rmtree($tmpexportdir);
3.46      knu       704:
3.120     scop      705:   &fatal(@fatal) if @fatal;
3.46      knu       706:
3.120     scop      707:   exit;
3.46      knu       708: }
                    709:
3.1       knu       710: ##############################
                    711: # View a directory
                    712: ###############################
3.46      knu       713: if (-d $fullname) {
3.233     scop      714:
3.120     scop      715:   my $dh = do { local (*DH); };
                    716:   opendir($dh, $fullname) or fatal("404 Not Found", '%s: %s', $where, $!);
3.233     scop      717:   my @dir = grep(!forbidden(catfile($fullname, $_)), readdir($dh));
3.120     scop      718:   closedir($dh);
3.284     scop      719:   my @subLevelFiles = findLastModifiedSubdirs(@dir) if $show_subdir_lastmod;
3.150     scop      720:   my @unreadable = getDirLogs($cvsroot, $where, @subLevelFiles);
3.120     scop      721:
                    722:   if ($where eq '/') {
                    723:     html_header($defaulttitle);
                    724:   } else {
                    725:     html_header($where);
3.212     scop      726:     my $html = (-f catfile($fullname, 'README.cvs.html,v') ||
                    727:                 -f catfile($fullname, 'Attic', 'README.cvs.html,v'));
                    728:     my $text = (!$html &&
                    729:                 (-f catfile($fullname, 'README.cvs,v') ||
                    730:                  -f catfile($fullname, 'Attic', 'README.cvs,v')));
                    731:     if ($html || $text) {
                    732:       my $rev = $input{only_with_tag} || 'HEAD';
                    733:       my $cr = abs_path($cvsroot) || $cvsroot;
                    734:       my $co = "$where/README.cvs.html" if $html;
                    735:       $co ||= "$where/README.cvs" if $text;
                    736:       # abs_path() taints when run as a CGI...
                    737:       if ($cr =~ VALID_PATH) {
                    738:         $cr = $1;
                    739:       } else {
                    740:         fatal('500 Internal Error', 'Illegal CVS root: <code>%s</code>', $cr);
                    741:       }
                    742:       my @cmd = ($CMD{cvs}, @cvs_options, '-d', $cr, 'co', '-p', "-r$rev",$co);
                    743:       local (*CVS_OUT, *CVS_ERR);
                    744:       my ($h, $err) = startproc(\@cmd, \"", '>pipe', \*CVS_OUT,
3.229     scop      745:                                 '2>pipe', \*CVS_ERR);
3.212     scop      746:       fatal('500 Internal Error', $err) unless $h;
                    747:       if ($html) {
                    748:         local $/ = undef;
                    749:         print <CVS_OUT>;
                    750:       } else {
                    751:         print "<p>\n";
                    752:         while (<CVS_OUT>) {
                    753:           chomp;
                    754:           print htmlquote($_), '<br />';
                    755:         }
                    756:         print "</p>";
                    757:       }
3.229     scop      758:       $h->finish();
3.212     scop      759:     }
3.120     scop      760:   }
                    761:
3.165     scop      762:   if ($use_descriptions &&
3.268     scop      763:       open(DESC, catfile($cvsroot, 'CVSROOT', 'descriptions'))) {
3.120     scop      764:     while (<DESC>) {
                    765:       chomp;
                    766:       my ($dir, $description) = /(\S+)\s+(.*)/;
                    767:       $descriptions{$dir} = $description;
                    768:     }
                    769:     close(DESC);
                    770:   }
                    771:
                    772:   print "<p><a name=\"dirlist\"></a></p>\n";
                    773:
                    774:   # give direct access to dirs
                    775:   if ($where eq '/') {
                    776:     chooseCVSRoot();
                    777:   } else {
3.257     scop      778:     print '<p>Current directory: <b>', clickablePath($where, 0), '</b>';
                    779:     print "</p>\n";
3.153     scop      780:     print "<p>Current tag: <b>", htmlquote($input{only_with_tag}), "</b></p>\n"
3.120     scop      781:       if $input{only_with_tag};
                    782:   }
                    783:
3.208     scop      784:   print "<hr />\n";
3.120     scop      785:
3.179     scop      786:   my $infocols = 1;
3.131     scop      787:
4.34      schwarze  788:   printf(<<EOF, 'Directory index of ' . htmlquote($where));
                    789: <table class="dir" width="100%%" cellspacing="0" cellpadding="2" summary="%s">
3.179     scop      790: <tr>
                    791: EOF
3.199     scop      792:   printf('<th colspan="2"%s>', ($byfile ? ' class="sorted"' : ''));
3.131     scop      793:
                    794:   if ($byfile) {
                    795:     print 'File';
                    796:   } else {
                    797:     print &link('File',
                    798:                 sprintf('./%s#dirlist', toggleQuery('sortby', 'file')));
                    799:   }
                    800:   print "</th>\n";
3.120     scop      801:
3.131     scop      802:   # Do not display the other column headers if we do not have any files
                    803:   # with revision information.
                    804:   if (scalar(%fileinfo)) {
3.120     scop      805:     $infocols++;
3.199     scop      806:     printf('<th%s>', ($byrev ? ' class="sorted"' : ''));
3.120     scop      807:
3.131     scop      808:     if ($byrev) {
                    809:       print 'Rev.';
3.120     scop      810:     } else {
3.131     scop      811:       print &link('Rev.',
                    812:                   sprintf('./%s#dirlist', toggleQuery('sortby', 'rev')));
3.120     scop      813:     }
                    814:     print "</th>\n";
3.131     scop      815:     $infocols++;
3.199     scop      816:     printf('<th%s>', ($bydate ? ' class="sorted"' : ''));
3.120     scop      817:
3.131     scop      818:     if ($bydate) {
                    819:       print 'Age';
                    820:     } else {
                    821:       print &link('Age',
                    822:                   sprintf('./%s#dirlist', toggleQuery('sortby', 'date')));
                    823:     }
                    824:     print "</th>\n";
3.120     scop      825:
3.131     scop      826:     if ($show_author) {
3.120     scop      827:       $infocols++;
3.199     scop      828:       printf('<th%s>', ($byauthor ? ' class="sorted"' : ''));
3.120     scop      829:
3.131     scop      830:       if ($byauthor) {
                    831:         print 'Author';
3.120     scop      832:       } else {
3.131     scop      833:         print
                    834:           &link('Author',
                    835:                 sprintf('./%s#dirlist', toggleQuery('sortby', 'author')));
3.120     scop      836:       }
                    837:       print "</th>\n";
3.131     scop      838:     }
                    839:     $infocols++;
3.199     scop      840:     printf('<th%s>', ($bylog ? ' class="sorted"' : ''));
3.120     scop      841:
3.131     scop      842:     if ($bylog) {
                    843:       print 'Last log entry';
                    844:     } else {
                    845:       print &link('Last log entry',
                    846:                   sprintf('./%s#dirlist', toggleQuery('sortby', 'log')));
3.120     scop      847:     }
3.131     scop      848:     print "</th>\n";
                    849:   } elsif ($use_descriptions) {
3.199     scop      850:     print "<th>Description</th>\n";
3.131     scop      851:     $infocols++;
3.120     scop      852:   }
3.131     scop      853:   print "</tr>\n";
                    854:
3.120     scop      855:   my $dirrow = 0;
                    856:
                    857:   my $i;
                    858:   lookingforattic:
                    859:   for ($i = 0; $i <= $#dir; $i++) {
                    860:     if ($dir[$i] eq "Attic") {
                    861:       last lookingforattic;
                    862:     }
                    863:   }
                    864:
3.254     scop      865:   if (!$input{hideattic}
3.120     scop      866:       && ($i <= $#dir)
                    867:       && opendir($dh, $fullname . '/Attic'))
                    868:   {
                    869:     splice(@dir, $i, 1, grep((s|^|Attic/|, !m|/\.|), readdir($dh)));
                    870:     closedir($dh);
                    871:   }
                    872:
                    873:   my $hideAtticToggleLink =
3.254     scop      874:     $input{hideattic}
3.120     scop      875:     ? ''
3.239     scop      876:     : &link('[hide]', sprintf('./%s#dirlist', &toggleQuery('hideattic')));
3.120     scop      877:
                    878:   # Sort without the Attic/ pathname.
                    879:   # place directories first
                    880:
                    881:   my $filesexists;
                    882:   my $filesfound;
                    883:
                    884:   foreach my $file (sort { &fileSortCmp } @dir) {
                    885:
3.196     scop      886:     next if ($file eq curdir());
3.120     scop      887:
                    888:     # ignore CVS lock and stale NFS files
                    889:     next if ($file =~ /^\#cvs\.|^,|^\.nfs/); # \# for XEmacs cperl-mode...
                    890:
                    891:     # Check whether to show the CVSROOT path
3.254     scop      892:     next if ($input{hidecvsroot} && $where eq '/' && $file eq 'CVSROOT');
3.120     scop      893:
3.150     scop      894:     # Is it a directory?
3.232     scop      895:     my $isdir = -d catdir($fullname, $file);
3.150     scop      896:
                    897:     # Ignore non-readable files and directories?
3.254     scop      898:     next if ($input{hidenonreadable} && (! -r _ || ($isdir && ! -x _)));
3.120     scop      899:
3.268     scop      900:     my $attic = '';
3.120     scop      901:     if ($file =~ s|^Attic/||) {
3.239     scop      902:       $attic = ' <span class="attic">(in the Attic) ' .
                    903:         $hideAtticToggleLink . '</span>';
3.120     scop      904:     }
                    905:
3.196     scop      906:     if ($file eq updir() || $isdir) {
                    907:       next if ($file eq updir() && $where eq '/');
3.152     scop      908:       my ($rev, $date, $log, $author, $filename, $keywordsubst) =
                    909:         @{$fileinfo{$file}} if (defined($fileinfo{$file}));
3.239     scop      910:       printf "<tr class=\"%s\">\n<td class=\"dir\" colspan=\"2\">",
3.132     scop      911:         ($dirrow % 2) ? 'even' : 'odd';
3.120     scop      912:
3.196     scop      913:       if ($file eq updir()) {
3.268     scop      914:         my $url = "../$query";
3.261     scop      915:         print $nofilelinks ? $backicon : &link($backicon, $url);
3.120     scop      916:         print '&nbsp;', &link("Parent Directory", $url);
3.261     scop      917:
3.120     scop      918:       } else {
3.271     scop      919:         my $url = './' . uri_escape_path($file) . "/$query";
                    920:         print '<a name="', htmlquote($file), '"></a>';
3.261     scop      921:         print $nofilelinks ? $diricon : &link($diricon, $url);
3.136     scop      922:         print '&nbsp;', &link(htmlquote("$file/"), $url), $attic;
3.120     scop      923:         if ($file eq "Attic") {
3.239     scop      924:           print ' <span class="attic">',
                    925:             &link('[show]',
                    926:                   sprintf('./%s#dirlist', &toggleQuery('hideattic'))),
                    927:                     '</span>';
3.120     scop      928:         }
                    929:       }
                    930:
                    931:       # Show last change in dir
                    932:       if ($filename) {
3.297     scop      933:         my $ageclass = 'age';
                    934:         my $age      = '';
                    935:         if ($date) {
                    936:           $age       = readableTime(time() - $date, 0);
                    937:           $ageclass .= " $1" if ($age =~ /^\d+ ([a-z]+)/);
                    938:         }
                    939:         print "</td>\n<td>&nbsp;</td>\n<td class=\"$ageclass\">$age";
3.199     scop      940:         print "</td>\n<td class=\"author\">", htmlquote($author)
                    941:           if $show_author;
                    942:         print "</td>\n<td class=\"log\">";
3.120     scop      943:         $filename =~ s%^[^/]+/%%;
3.199     scop      944:         print &link(htmlquote("$filename/$rev"),
                    945:                     sprintf('%s/%s%s#rev%s',
3.206     scop      946:                             uri_escape($file), uri_escape($filename),
3.208     scop      947:                             $query, $rev)), '<br />';
3.120     scop      948:         if ($log) {
3.199     scop      949:           print htmlify(substr($log, 0, $shortLogLen), $allow_dir_extra);
3.120     scop      950:           print '...' if (length($log) > 80);
                    951:         }
3.199     scop      952:
3.120     scop      953:       } else {
                    954:         my $dwhere = ($where ne '/' ? $where : '') . $file;
                    955:
                    956:         if ($use_descriptions && defined $descriptions{$dwhere}) {
3.199     scop      957:           print '<td colspan="', ($infocols - 1), '">';
3.120     scop      958:           print $descriptions{$dwhere};
                    959:
3.131     scop      960:         } elsif ($infocols > 1) {
3.120     scop      961:
                    962:           # close the row with the appropriate number of
                    963:           # columns, so that the vertical seperators are visible
                    964:           my ($cols) = $infocols;
                    965:           while ($cols > 1) {
                    966:             print "</td>\n<td>&nbsp;";
                    967:             $cols--;
                    968:           }
                    969:         }
                    970:       }
                    971:
3.131     scop      972:       print "</td>\n</tr>\n";
3.120     scop      973:       $dirrow++;
3.131     scop      974:
3.120     scop      975:     } elsif ($file =~ s/,v$//) {
                    976:
3.271     scop      977:       my $fileurl = ($attic ? 'Attic/' : '') . uri_escape_path($file);
3.268     scop      978:       my $url     = './' . $fileurl . $query;
3.120     scop      979:       $filesexists++;
                    980:       next if (!defined($fileinfo{$file}));
3.152     scop      981:       my ($rev, $date, $log, $author, $filename, $keywordsubst) =
                    982:         @{$fileinfo{$file}};
3.156     scop      983:       my $isbinary = $keywordsubst eq 'b' ? 1 : 0;
3.120     scop      984:       $filesfound++;
3.156     scop      985:
3.199     scop      986:       printf "<tr class=\"%s\">\n", ($dirrow % 2) ? 'even' : 'odd';
4.18      schwarze  987:       printf '<td class="file" colspan="2">';
3.120     scop      988:
3.156     scop      989:       my $icon = $isbinary ? $binfileicon : $fileicon;
3.261     scop      990:       print $nofilelinks ? $icon : &link($icon, $url);
3.120     scop      991:       print '&nbsp;', &link(htmlquote($file), $url), $attic;
3.219     scop      992:       print "</td>\n<td width=\"30\">", display_link($fileurl, $rev);
3.297     scop      993:       my $ageclass = 'age';
                    994:       my $age      = '';
                    995:       if ($date) {
                    996:         $age       = readableTime(time() - $date, 0);
                    997:         $ageclass .= " $1" if ($age =~ /^\d+ ([a-z]+)/);
                    998:       }
                    999:       print "</td>\n<td class=\"$ageclass\">$age";
3.199     scop     1000:       print "</td>\n<td class=\"author\">", htmlquote($author) if $show_author;
                   1001:       print "</td>\n<td class=\"log\">";
3.120     scop     1002:
                   1003:       if ($log) {
3.199     scop     1004:         print htmlify(substr($log, 0, $shortLogLen), $allow_dir_extra);
3.120     scop     1005:         print '...' if (length $log > 80);
                   1006:       }
3.131     scop     1007:       print "</td>\n</tr>";
3.120     scop     1008:       $dirrow++;
                   1009:     }
                   1010:     print "\n";
                   1011:   }
                   1012:
3.131     scop     1013:   print "</table>\n";
3.120     scop     1014:
3.150     scop     1015:   if ((my $num = scalar(@unreadable)) && ! $input{hidenonreadable}) {
                   1016:     printf(<<EOF, $num, htmlquote(join(', ', @unreadable)));
                   1017: <p>
3.208     scop     1018:  <b>NOTE:</b> The following %d unreadable files were ignored:<br />
3.150     scop     1019:  <em>%s</em>
                   1020: </p>
                   1021: EOF
                   1022:   }
                   1023:
3.120     scop     1024:   if ($filesexists && !$filesfound) {
3.150     scop     1025:     my $currtag = defined($input{only_with_tag}) ?
                   1026:       sprintf(' (%s)', htmlquote($input{only_with_tag})) : '';
                   1027:     printf(<<EOF, $filesexists, $currtag);
                   1028: <p>
                   1029:  <b>NOTE:</b> There are %d files, but none matches the current tag%s.
                   1030: </p>
                   1031: EOF
3.120     scop     1032:   }
                   1033:
                   1034:   if ($input{only_with_tag} && (!%tags || !$tags{$input{only_with_tag}})) {
                   1035:     %tags = %alltags;
                   1036:   }
                   1037:
                   1038:   if (scalar %tags
                   1039:       || $input{only_with_tag}
                   1040:       || $edit_option_form
3.254     scop     1041:       || defined($input{options}))
3.120     scop     1042:   {
3.208     scop     1043:     print "<hr />\n";
3.120     scop     1044:   }
                   1045:
                   1046:   if (scalar %tags || $input{only_with_tag}) {
3.208     scop     1047:     print "<form method=\"get\" action=\"./\">\n<p>\n";
3.120     scop     1048:     foreach my $var (@stickyvars) {
3.296     scop     1049:       printf("<input type=\"hidden\" name=\"%s\" value=\"%s\" />\n",
                   1050:              $var, htmlquote($input{$var}))
3.120     scop     1051:         if (defined($input{$var})
                   1052:             && (!defined($DEFAULTVALUE{$var})
                   1053:                 || $input{$var} ne $DEFAULTVALUE{$var})
                   1054:             && $var ne 'only_with_tag');
                   1055:     }
4.17      schwarze 1056:     print <<EOF;
3.239     scop     1057: <span class="nowrap">
3.208     scop     1058: <label for="only_with_tag" accesskey="T">Show only files with tag:
4.17      schwarze 1059: <select id="only_with_tag" name="only_with_tag">
3.208     scop     1060: <option value="">All tags / default branch</option>
                   1061: EOF
3.120     scop     1062:     foreach my $tag (reverse sort { lc $a cmp lc $b } keys %tags) {
3.136     scop     1063:       my $selected =
                   1064:         defined($input{only_with_tag}) && $input{only_with_tag} eq $tag;
                   1065:       printf("<option%s>%s</option>\n",
3.208     scop     1066:              $selected ? ' selected="selected"' : '',
3.136     scop     1067:              htmlquote($tag));
3.120     scop     1068:     }
3.208     scop     1069:     printf(<<EOF, htmlquote($where));
                   1070: </select>
3.239     scop     1071: </label></span> <span class="nowrap">
                   1072: <label for="path" accesskey="P">Module path or alias:
3.208     scop     1073: <input type="text" id="path" name="path" value="%s" size="15" /></label>
3.239     scop     1074: </span>
3.208     scop     1075: <input type="submit" value="Go" accesskey="G" />
                   1076: </p>
                   1077: </form>
                   1078: EOF
3.120     scop     1079:   }
                   1080:
3.188     scop     1081:   if ($allow_tar && $filesfound) {
3.120     scop     1082:     my ($basefile) = ($where =~ m,(?:.*/)?([^/]+),);
4.29      schwarze 1083:     if (defined($basefile) && $basefile ne '') {
3.203     scop     1084:       my $q = ($query ? "$query;" : '?') . 'tarball=1';
3.208     scop     1085:       print "<hr />\n",
3.189     scop     1086:         '<div style="text-align: center">Download this directory in ';
3.192     scop     1087:       # Mangle the filename so browsers show a reasonable filename to download.
3.271     scop     1088:       $basefile = uri_escape($basefile);
4.25      schwarze 1089:       print &link('tarball', "$basefile.tar.gz$q");
                   1090:       print "</div>\n";
3.120     scop     1091:     }
                   1092:   }
                   1093:
3.254     scop     1094:   if ($edit_option_form || defined($input{options})) {
3.120     scop     1095:
3.149     scop     1096:     print <<EOF;
3.270     scop     1097: <form method="get" action="./">
3.189     scop     1098: <fieldset>
                   1099: <legend>General options</legend>
3.208     scop     1100: <input type="hidden" name="copt" value="1" />
3.149     scop     1101: EOF
4.14      schwarze 1102:     for my $v (qw(hidecvsroot hidenonreadable)) {
3.283     scop     1103:       printf(qq{<input type="hidden" name="%s" value="%s" />\n},
                   1104:              $v, $input{$v} || 0);
                   1105:     }
4.26      schwarze 1106:     if ($cvstree ne $CVSrepositories[0]) {
3.208     scop     1107:       print "<input type=\"hidden\" name=\"cvsroot\" value=\"$cvstree\" />\n";
3.120     scop     1108:     }
3.149     scop     1109:     print <<EOF;
3.265     scop     1110: <table summary="General options">
3.149     scop     1111: <tr>
3.189     scop     1112: <td class="opt-label">
                   1113: <label for="sortby" accesskey="F">Sort files by:</label>
                   1114: </td>
                   1115: <td class="opt-value">
3.149     scop     1116: <select id="sortby" name="sortby">
                   1117: <option value="">File</option>
                   1118: EOF
3.208     scop     1119:     print "<option", $bydate ? ' selected="selected"' : '',
3.120     scop     1120:       " value=\"date\">Age</option>\n";
3.208     scop     1121:     print "<option", $byauthor ? ' selected="selected"' : '',
3.120     scop     1122:       " value=\"author\">Author</option>\n"
3.140     scop     1123:         if $show_author;
3.208     scop     1124:     print "<option", $byrev ? ' selected="selected"' : '',
3.120     scop     1125:       " value=\"rev\">Revision</option>\n";
3.208     scop     1126:     print "<option", $bylog ? ' selected="selected"' : '',
3.120     scop     1127:       " value=\"log\">Log message</option>\n";
3.189     scop     1128:     print <<EOF;
                   1129: </select>,
                   1130: <label for="ignorecase" accesskey="I">case-insensitive:
                   1131: EOF
                   1132:     print '<input id="ignorecase" name="ignorecase" type="checkbox"',
3.208     scop     1133:       $input{ignorecase} ? ' checked="checked"' : '',
                   1134:         " value=\"1\" /></label>\n";
3.189     scop     1135:     print <<EOF;
                   1136: </td>
                   1137: <td class="opt-label">
                   1138: <label for="hideattic" accesskey="A">Hide files in Attic:</label>
                   1139: </td>
                   1140: <td class="opt-value">
                   1141: EOF
                   1142:     print '<input id="hideattic" name="hideattic" type="checkbox"',
3.208     scop     1143:       $input{hideattic} ? ' checked="checked"' : '', ' value="1" />';
3.189     scop     1144:     print <<EOF;
                   1145: </td>
                   1146: </tr>
                   1147: <tr>
                   1148: <td class="opt-label">
                   1149: <label for="logsort" accesskey="L">Sort log by:</label>
                   1150: </td>
                   1151: <td class="opt-value">
                   1152: EOF
4.17      schwarze 1153:     printLogSortSelect();
3.189     scop     1154:     print <<EOF;
                   1155: </td>
                   1156: <td class="opt-label">
                   1157: <label for="ln" accesskey="N">Show line numbers:</label>
                   1158: </td>
                   1159: <td class="opt-value">
                   1160: EOF
                   1161:     print '<input id="ln" name="ln" type="checkbox"',
3.208     scop     1162:       $input{ln} ? ' checked="checked"' : '', " value=\"1\" />\n";
3.189     scop     1163:     print <<EOF;
                   1164: </td>
                   1165: </tr>
                   1166: <tr>
                   1167: <td class="opt-label">
                   1168: <label for="f" accesskey="D">Diff format:</label>
                   1169: </td>
                   1170: <td>
                   1171: EOF
4.17      schwarze 1172:     printDiffSelect();
3.149     scop     1173:     print <<EOF;
3.189     scop     1174: </td>
                   1175: <td colspan="2" class="opt-label">
3.208     scop     1176: <input type="submit" value="Change Options" accesskey="C" />
3.189     scop     1177: </td>
3.149     scop     1178: </tr>
                   1179: </table>
3.189     scop     1180: </fieldset>
3.149     scop     1181: </form>
                   1182: EOF
3.120     scop     1183:   }
                   1184:   html_footer();
3.80      knu      1185: }
3.1       knu      1186:
                   1187: ###############################
                   1188: # View Files
                   1189: ###############################
3.80      knu      1190: elsif (-f $fullname . ',v') {
3.114     scop     1191:
3.254     scop     1192:   if (defined($input{rev}) || $doCheckout) {
3.275     scop     1193:     &doCheckout($fullname, $input{rev}, $input{only_with_tag});
3.120     scop     1194:     gzipclose();
                   1195:     exit;
                   1196:   }
                   1197:
3.254     scop     1198:   if (defined($input{annotate}) && $allow_annotate) {
3.275     scop     1199:     &doAnnotate($input{annotate}, $input{only_with_tag});
3.120     scop     1200:     gzipclose();
                   1201:     exit;
                   1202:   }
                   1203:
3.254     scop     1204:   if (defined($input{r1}) && defined($input{r2})) {
                   1205:     &doDiff($fullname,  $input{r1},  $input{tr1},
                   1206:             $input{r2}, $input{tr2}, $input{f});
3.120     scop     1207:     gzipclose();
                   1208:     exit;
                   1209:   }
3.132     scop     1210:
3.120     scop     1211:   &doLog($fullname);
3.276     scop     1212: }
3.120     scop     1213:
3.276     scop     1214: ##############################
                   1215: # View Diff
                   1216: ##############################
                   1217: elsif ($fullname =~ s/\.diff$//
                   1218:        && -f $fullname . ',v' && $input{r1} && $input{r2})
3.120     scop     1219: {
                   1220:
                   1221:   # $where-diff-removal if 'cvs rdiff' is used
                   1222:   # .. but 'cvs rdiff'doesn't support some options
                   1223:   # rcsdiff does (-w and -p), so it is disabled
                   1224:   # $where =~ s/\.diff$//;
                   1225:
3.189     scop     1226:   # Allow diffs using the ".diff" extension so that browsers that default
                   1227:   # to the filename in the URL when saving don't save diffs as eg. foo.c.
3.254     scop     1228:   &doDiff($fullname,  $input{r1},  $input{tr1},
                   1229:           $input{r2}, $input{tr2}, $input{f});
3.120     scop     1230:   gzipclose();
                   1231:   exit;
                   1232:
3.276     scop     1233: }
                   1234:
                   1235: elsif (do { (my $tmp = $fullname) =~ s|/([^/]+)$|/Attic/$1|; -f "$tmp,v" }) {
3.120     scop     1236:   # The file has been removed and is in the Attic.
                   1237:   # Send a redirect pointing to the file in the Attic.
                   1238:   (my $newplace = $scriptwhere) =~ s|/([^/]+)$|/Attic/$1|;
                   1239:   if ($ENV{QUERY_STRING} ne "") {
3.268     scop     1240:     redirect("$newplace?$ENV{QUERY_STRING}");
3.120     scop     1241:   } else {
                   1242:     redirect($newplace);
                   1243:   }
                   1244:   exit;
3.268     scop     1245:
3.276     scop     1246: }
                   1247:
                   1248: elsif (0 && (my @files = &safeglob($fullname . ",v"))) {
3.120     scop     1249:   http_header("text/plain");
                   1250:   print "You matched the following files:\n";
                   1251:   print join ("\n", @files);
3.80      knu      1252:
3.276     scop     1253:   # TODO:
3.120     scop     1254:   # Find the tags from each file
                   1255:   # Display a form offering diffs between said tags
3.276     scop     1256: }
3.80      knu      1257:
3.276     scop     1258: else {
3.120     scop     1259:   # Assume it's a module name with a potential path following it.
3.268     scop     1260:   my $module;
3.266     scop     1261:   my $xtra = (($module = $where) =~ s|(/.*)||) ? $1 : '';
3.80      knu      1262:
3.120     scop     1263:   # Is there an indexed version of modules?
3.268     scop     1264:   my $fh = do { local (*FH); };
                   1265:   if (open($fh, catfile($cvsroot, 'CVSROOT', 'modules'))) {
3.120     scop     1266:     while (<$fh>) {
                   1267:       if (/^(\S+)\s+(\S+)/o
                   1268:           && $module eq $1
3.268     scop     1269:           && $module ne $2
                   1270:           && -d "$cvsroot/$2")
3.120     scop     1271:       {
3.267     scop     1272:         close($fh);
3.120     scop     1273:         redirect("$scriptname/$2$xtra$query");
                   1274:       }
                   1275:     }
3.267     scop     1276:     close($fh);
3.120     scop     1277:   }
                   1278:   fatal("404 Not Found", '%s: no such file or directory', $where);
3.80      knu      1279: }
3.23      knu      1280:
3.25      knu      1281: gzipclose();
3.80      knu      1282:
3.1       knu      1283: ## End MAIN
                   1284:
3.175     scop     1285:
4.17      schwarze 1286: sub printDiffSelect()
3.120     scop     1287: {
                   1288:   print '<select id="f" name="f"';
                   1289:   print ">\n";
                   1290:
3.175     scop     1291:   for my $difftype (@DIFFTYPES) {
3.120     scop     1292:     printf("<option value=\"%s\"%s>%s</option>\n",
3.208     scop     1293:            $difftype, $input{f} eq $difftype ? ' selected="selected"' : '',
3.175     scop     1294:            "\u$DIFFTYPES{$difftype}{descr}");
3.120     scop     1295:   }
                   1296:
                   1297:   print "</select>";
                   1298: }
                   1299:
3.175     scop     1300:
3.168     scop     1301: sub printDiffSelectStickyVars()
                   1302: {
                   1303:   while (my ($key, $val) = each %input) {
                   1304:     next if ($key eq 'f');
                   1305:     next if (defined($DEFAULTVALUE{$key}) && $DEFAULTVALUE{$key} eq $val);
3.206     scop     1306:     print "<input type=\"hidden\" name=\"", htmlquote($key), "\" value=\"",
3.208     scop     1307:       htmlquote($val), "\" />\n";
3.168     scop     1308:   }
                   1309: }
                   1310:
3.175     scop     1311:
4.17      schwarze 1312: sub printLogSortSelect()
3.120     scop     1313: {
                   1314:   print '<select id="logsort" name="logsort"';
                   1315:   print ">\n";
                   1316:
3.175     scop     1317:   for my $sortkey (@LOGSORTKEYS) {
3.120     scop     1318:     printf("<option value=\"%s\"%s>%s</option>\n",
3.208     scop     1319:            $sortkey, $logsort eq $sortkey ? ' selected="selected"' : '',
3.175     scop     1320:            "\u$LOGSORTKEYS{$sortkey}{descr}");
3.120     scop     1321:   }
                   1322:
                   1323:   print "</select>";
                   1324: }
                   1325:
3.175     scop     1326:
3.197     scop     1327: #
                   1328: # Find the last modified, version controlled files in the given directories.
                   1329: # Compares solely based on modification timestamps.  Files in the returned list
                   1330: # are without the ,v suffix, and unreadable files have been filtered out.
                   1331: #
3.120     scop     1332: sub findLastModifiedSubdirs(@)
                   1333: {
                   1334:   my (@dirs) = @_;
                   1335:
3.175     scop     1336:   my @files;
                   1337:   foreach my $dirname (@dirs) {
3.196     scop     1338:     next if ($dirname eq curdir() || $dirname eq updir());
                   1339:     my $dir = catdir($fullname, $dirname);
3.120     scop     1340:     next if (!-d $dir);
                   1341:
                   1342:     my $dh = do { local (*DH); };
                   1343:     opendir($dh, $dir) or next;
3.233     scop     1344:     my (@filenames) = grep(!forbidden(catfile($dir, $_)), readdir($dh));
3.120     scop     1345:     closedir($dh);
                   1346:
3.175     scop     1347:     my $lastmod     = undef;
                   1348:     my $lastmodtime = undef;
3.120     scop     1349:     foreach my $filename (@filenames) {
3.197     scop     1350:       ($filename) =
                   1351:         (catfile($dirname, $filename) =~ VALID_PATH) or next; # untaint
3.196     scop     1352:       my ($file) = catfile($fullname, $filename);
3.197     scop     1353:       next if ($filename !~ /,v$/o || !-f $file || !-r _);
                   1354:       my $modtime = -M _;
3.120     scop     1355:       if (!defined($lastmod) || $modtime < $lastmodtime) {
3.233     scop     1356:         ($lastmod    = $filename) =~ s/,v$//;
3.120     scop     1357:         $lastmodtime = $modtime;
                   1358:       }
                   1359:     }
3.175     scop     1360:     push(@files, $lastmod) if (defined($lastmod));
3.120     scop     1361:   }
                   1362:   return @files;
                   1363: }
                   1364:
3.175     scop     1365:
3.120     scop     1366: sub htmlify_sub(&$)
                   1367: {
                   1368:   (my $proc, local $_) = @_;
3.261     scop     1369:   my @a = split(m|(<a [^>]+>[^<]*</a>)|i);
3.120     scop     1370:   my $linked;
                   1371:   my $result = '';
                   1372:
                   1373:   while (($_, $linked) = splice(@a, 0, 2)) {
                   1374:     &$proc();
                   1375:     $result .= $_      if defined($_);
                   1376:     $result .= $linked if defined($linked);
                   1377:   }
                   1378:
3.175     scop     1379:   return $result;
3.120     scop     1380: }
                   1381:
3.175     scop     1382:
3.120     scop     1383: sub htmlify($;$)
                   1384: {
                   1385:   (local $_, my $extra) = @_;
                   1386:
                   1387:   $_ = htmlquote($_);
                   1388:
                   1389:   # get URL's as link
                   1390:   s{
3.130     scop     1391:     ((https?|ftp)://.+?)([\s\']|&(quot|[lg]t);)
3.120     scop     1392:    }{
3.130     scop     1393:      &link($1, htmlunquote($1)) . $3
3.120     scop     1394:    }egx;
                   1395:
3.290     scop     1396:   if ($allow_mailtos) {
                   1397:     # Make mailto: links from email addresses.
                   1398:     $_ = htmlify_sub {
                   1399:       s<
                   1400:         ([\w+=\-.!]+@[\w\-]+(?:\.[\w\-]+)+)
                   1401:        ><
                   1402:          &link($1, "mailto:$1")
                   1403:        >egix;
                   1404:     } $_;
                   1405:   }
3.120     scop     1406:
                   1407:   if ($extra) {
                   1408:     # get manpage specs as link: "foo.1" "foo(1)"
                   1409:     if (defined($mancgi)) {
                   1410:       $_ = htmlify_sub {
                   1411:         s{
3.143     knu      1412:           (
                   1413:            \b ( \w[\w+\-.]* (?: ::\w[\w+\-.]*)* )
3.120     scop     1414:            (?:
3.143     knu      1415:             \( ([0-9n]) \) \B
3.120     scop     1416:             |
3.143     knu      1417:             \. ([0-9n]) \b
3.120     scop     1418:            )
                   1419:           )
                   1420:          }{
3.149     scop     1421:             my($text, $name, $section) = ($1, $2, defined($3) ? $3 : $4);
                   1422:             ($name =~ /[A-Za-z]/ && $name !~ /\.(:|$)/)
4.6       schwarze 1423:              ? &link($text, sprintf($mancgi, uri_escape($name), $section))
3.149     scop     1424:               : $text;
3.120     scop     1425:          }egx;
                   1426:       } $_;
                   1427:     }
                   1428:   }
                   1429:
3.175     scop     1430:   return $_;
3.120     scop     1431: }
                   1432:
3.175     scop     1433:
3.120     scop     1434: sub spacedHtmlText($;$)
                   1435: {
3.175     scop     1436:   (local $_, my $ts) = @_;
3.224     scop     1437:   return '' unless defined($_);
3.284     scop     1438:   $ts ||= $tabstop || 8;
3.120     scop     1439:
3.286     scop     1440:   # Expand tabs
                   1441:   1 while s/(.*?)(\t+)/$1 . ' ' x (length($2) * $ts - length($1) % $ts)/e;
3.120     scop     1442:
                   1443:   if ($hr_breakable) {
3.277     scop     1444:     s/^ /\001nbsp;/;      # protect leading and...
                   1445:     s/ $/\001nbsp;/;      # ...trailing whitespace (mostly for String::Ediff),
                   1446:     s/  / \001nbsp;/g;    # ...and leave every other space 'breakable'
3.120     scop     1447:   } else {
                   1448:     s/ /\001nbsp;/g;
                   1449:   }
                   1450:
                   1451:   $_ = htmlify($_, $allow_source_extra);
                   1452:
                   1453:   # unescape
                   1454:   y/\001/&/;
                   1455:
                   1456:   return $_;
                   1457: }
                   1458:
3.175     scop     1459:
3.120     scop     1460: # Note that this doesn't htmlquote the first argument...
                   1461: sub link($$)
                   1462: {
                   1463:   my ($name, $url) = @_;
3.271     scop     1464:   return sprintf('<a href="%s">%s</a>', htmlquote($url), $name);
3.120     scop     1465: }
                   1466:
3.175     scop     1467:
3.120     scop     1468: sub revcmp($$)
                   1469: {
                   1470:   my ($rev1, $rev2) = @_;
                   1471:
                   1472:   # make no comparison for a tag or a branch
                   1473:   return 0 if $rev1 =~ /[^\d.]/ || $rev2 =~ /[^\d.]/;
                   1474:
3.261     scop     1475:   my (@r1) = split(/\./, $rev1);
                   1476:   my (@r2) = split(/\./, $rev2);
3.120     scop     1477:   my ($a, $b);
                   1478:
3.261     scop     1479:   while (($a = shift(@r1)) && ($b = shift(@r2))) {
                   1480:     return $a <=> $b unless ($a == $b);
3.120     scop     1481:   }
                   1482:   if (@r1) { return  1; }
                   1483:   if (@r2) { return -1; }
                   1484:   return 0;
                   1485: }
                   1486:
3.175     scop     1487:
3.287     scop     1488: #
                   1489: # Signal a fatal error.
                   1490: #
3.120     scop     1491: sub fatal($$@)
                   1492: {
                   1493:   my ($errcode, $format, @args) = @_;
3.185     scop     1494:   print "Status: $errcode\r\n";
3.131     scop     1495:   html_header('Error');
3.215     scop     1496:   print '<div id="error">Error: ',
                   1497:     sprintf($format, map(htmlquote($_), @args)), "</div>\n";
3.120     scop     1498:   html_footer();
                   1499:   exit(1);
3.287     scop     1500: }
                   1501:
                   1502:
                   1503: #
3.269     scop     1504: # Sends a redirect to the given URL.
                   1505: #
                   1506: sub redirect($;$)
3.120     scop     1507: {
3.269     scop     1508:   my ($url, $permanent) = @_;
                   1509:   my ($status, $text);
                   1510:   if ($permanent) {
                   1511:     $status = '301';
                   1512:     $text   = 'Moved Permanently';
                   1513:   } else {
                   1514:     $status = '302';
                   1515:     $text   = 'Found';
                   1516:   }
                   1517:   print "Status: $status $text\r\n", "Location: $url\r\n";
                   1518:   html_header($text);
                   1519:   print "<p>This document has moved ", &link('here', $url), ".</p>\n";
3.120     scop     1520:   html_footer();
                   1521:   exit(1);
                   1522: }
                   1523:
3.175     scop     1524:
3.120     scop     1525: sub safeglob($)
                   1526: {
                   1527:   my ($filename) = @_;
                   1528:
3.175     scop     1529:   (my $dirname = $filename) =~ s|/[^/]+$||;
3.120     scop     1530:   $filename =~ s|.*/||;
                   1531:
3.175     scop     1532:   my @results;
                   1533:   my $dh = do { local (*DH); };
3.120     scop     1534:   if (opendir($dh, $dirname)) {
                   1535:     my $glob = $filename;
                   1536:     my $t;
                   1537:
3.149     scop     1538:     #   transform filename from glob to regex.  Deal with:
                   1539:     #   [, {, ?, * as glob chars
                   1540:     #   make sure to escape all other regex chars
3.120     scop     1541:     $glob =~ s/([\.\(\)\|\+])/\\$1/g;
                   1542:     $glob =~ s/\*/.*/g;
                   1543:     $glob =~ s/\?/./g;
                   1544:     $glob =~ s/{([^}]+)}/($t = $1) =~ s-,-|-g; "($t)"/eg;
3.222     scop     1545:     $glob = qr/^$glob$/;
                   1546:
3.120     scop     1547:     foreach (readdir($dh)) {
3.222     scop     1548:       if ($_ =~ $glob && $_ =~ VALID_PATH) {
3.194     scop     1549:         push(@results, catfile($dirname, $1)); # untaint
3.120     scop     1550:       }
                   1551:     }
                   1552:     closedir($dh);
                   1553:   }
                   1554:
3.175     scop     1555:   return @results;
3.120     scop     1556: }
                   1557:
3.160     scop     1558:
3.227     scop     1559: #
3.219     scop     1560: # Gets the MIME type for the given file name.
                   1561: #
3.156     scop     1562: sub getMimeType($;$)
3.120     scop     1563: {
3.156     scop     1564:   my ($fullname, $binary) = @_;
                   1565:   $binary = ($keywordsubstitution && $keywordsubstitution =~ /b/)
                   1566:     unless defined($binary);
                   1567:
                   1568:   (my $suffix = $fullname) =~ s/^.*\.([^.]*)$/$1/;
                   1569:
                   1570:   my $mimetype = $MTYPES{$suffix};
                   1571:   $mimetype  ||= $MimeTypes->mimeTypeOf($fullname) if defined($MimeTypes);
                   1572:
                   1573:   if (!$mimetype && $suffix ne '*' && -f $mime_types && -r _) {
                   1574:     my $fh = do { local (*FH); };
                   1575:     if (open($fh, $mime_types)) {
                   1576:       my $re = sprintf('^\s*(\S+\/\S+)\s.+\b%s\b', quotemeta($suffix));
3.222     scop     1577:       $re = qr/$re/;
3.156     scop     1578:       while (my $line = <$fh>) {
                   1579:         if ($line =~ $re) {
                   1580:           $mimetype = $1;
                   1581:           $MTYPES{$suffix} = $mimetype;
                   1582:           last;
                   1583:         }
3.120     scop     1584:       }
3.156     scop     1585:       close($fh);
                   1586:     } else {
                   1587:       warn("Can't open MIME types file $mime_types for reading: $!");
3.120     scop     1588:     }
                   1589:   }
                   1590:
3.156     scop     1591:   $mimetype ||= $MTYPES{'*'};
                   1592:   $mimetype ||= $binary ? 'application/octet-stream' : 'text/plain';
3.120     scop     1593:   return $mimetype;
3.1       knu      1594: }
                   1595:
3.156     scop     1596:
3.1       knu      1597: ###############################
3.24      knu      1598: # read first lines like head(1)
                   1599: ###############################
3.120     scop     1600: sub head($;$)
                   1601: {
3.175     scop     1602:   my ($fh, $linecount) = @_;
                   1603:   $linecount ||= 10;
3.24      knu      1604:
3.120     scop     1605:   my @buf;
                   1606:   if ($linecount > 0) {
3.184     scop     1607:     for (my $i = 0; !eof($fh) && $i < $linecount; $i++) {
3.120     scop     1608:       push @buf, scalar <$fh>;
                   1609:     }
                   1610:   } else {
                   1611:     @buf = <$fh>;
                   1612:   }
3.175     scop     1613:   return @buf;
                   1614: }
3.120     scop     1615:
3.24      knu      1616:
                   1617: ###############################
                   1618: # scan vim and Emacs directives
                   1619: ###############################
3.120     scop     1620: sub scan_directives(@)
                   1621: {
                   1622:   my $ts = undef;
3.24      knu      1623:
3.120     scop     1624:   for (@_) {
                   1625:     $ts = $1 if /\b(?:ts|tabstop|tab-width)[:=]\s*([1-9]\d*)\b/;
                   1626:   }
3.24      knu      1627:
3.120     scop     1628:   ('tabstop' => $ts);
3.24      knu      1629: }
                   1630:
3.175     scop     1631:
3.24      knu      1632: ###############################
3.1       knu      1633: # show Annotation
                   1634: ###############################
3.275     scop     1635: sub doAnnotate($$)
3.120     scop     1636: {
3.275     scop     1637:   my ($rev, $tag) = @_;
                   1638:   $rev = $tag || 'HEAD' if ($rev eq '.');
3.262     scop     1639:   (my $pathname = $where) =~ s|((?<=/)Attic/)?[^/]*$||;
3.261     scop     1640:   (my $filename = $where) =~ s|^.*/||;
3.126     scop     1641:
3.174     scop     1642:   # This annotate version is based on the cvs annotate-demo Perl script by
                   1643:   # Cyclic Software.  It was written by Cyclic Software,
                   1644:   # http://www.cyclic.com/, and is in the public domain.
                   1645:   # We could abandon the use of rlog, rcsdiff and co using
                   1646:   # the cvs server in a similiar way one day (..after rewrite).
                   1647:
                   1648:   local (*CVS_IN, *CVS_OUT);
3.215     scop     1649:   my $annotate_err;
3.174     scop     1650:   my ($h, $err) =
                   1651:     startproc([ $CMD{cvs}, @annotate_options, 'server' ],
3.215     scop     1652:               '<pipe', \*CVS_IN, '>pipe', \*CVS_OUT,
3.229     scop     1653:               '2>', \$annotate_err);
3.215     scop     1654:   fatal('500 Internal Error',
                   1655:         'Annotate failure (exit status %s), output: <pre>%s</pre>',
                   1656:         $? >> 8 || -1, $err)
                   1657:     unless $h;
3.120     scop     1658:
                   1659:   # OK, first send the request to the server.  A simplified example is:
                   1660:   #     Root /home/kingdon/zwork/cvsroot
                   1661:   #     Argument foo/xx
                   1662:   #     Directory foo
                   1663:   #     /home/kingdon/zwork/cvsroot/foo
                   1664:   #     Directory .
                   1665:   #     /home/kingdon/zwork/cvsroot
                   1666:   #     annotate
                   1667:   # although as you can see there are a few more details.
                   1668:
3.174     scop     1669:   print CVS_IN "Root $cvsroot\n";
                   1670:   print CVS_IN
3.120     scop     1671:     "Valid-responses ok error Valid-requests Checked-in Updated Merged Removed M E\n";
                   1672:
                   1673:   # Don't worry about sending valid-requests, the server just needs to
                   1674:   # support "annotate" and if it doesn't, there isn't anything to be done.
3.174     scop     1675:   print CVS_IN "UseUnchanged\n";
                   1676:   print CVS_IN "Argument -r\n";
                   1677:   print CVS_IN "Argument $rev\n";
                   1678:   print CVS_IN "Argument $where\n";
3.120     scop     1679:
                   1680:   # The protocol requires us to fully fake a working directory (at
                   1681:   # least to the point of including the directories down to the one
                   1682:   # containing the file in question).
3.123     scop     1683:   # So if $where is "dir/sdir/file", then dirs will be ("dir","sdir","file")
                   1684:   my $path = '';
                   1685:   foreach my $dir (split('/', $where)) {
3.120     scop     1686:
                   1687:     if ($path eq "") {
3.123     scop     1688:       # In our example, $dir is "dir".
                   1689:       $path = $dir;
3.120     scop     1690:     } else {
3.174     scop     1691:       print CVS_IN "Directory $path\n";
                   1692:       print CVS_IN "$cvsroot/$path\n";
3.120     scop     1693:
                   1694:       # In our example, $_ is "sdir" and $path becomes "dir/sdir"
                   1695:       # And the next time, "file" and "dir/sdir/file" (which then gets
                   1696:       # ignored, because we don't need to send Directory for the file).
3.123     scop     1697:       $path .= "/$dir";
3.120     scop     1698:     }
                   1699:   }
3.123     scop     1700:   undef $path;
3.120     scop     1701:
                   1702:   # And the last "Directory" before "annotate" is the top level.
3.174     scop     1703:   print CVS_IN "Directory .\n";
                   1704:   print CVS_IN "$cvsroot\n";
3.120     scop     1705:
3.174     scop     1706:   print CVS_IN "annotate\n";
3.120     scop     1707:
                   1708:   # OK, we've sent our command to the server.  Thing to do is to
3.215     scop     1709:   # close the writer side and get all the responses.
                   1710:   if (!close(CVS_IN)) {
3.229     scop     1711:     $h->finish();
3.215     scop     1712:     fatal('500 Internal Error',
                   1713:           'Annotate failure (exit status %s): <code>%s</code>, output: ' .
                   1714:           '<pre>%s</pre>', $? >> 8, $!, $annotate_err);
                   1715:   }
3.120     scop     1716:
3.133     scop     1717:   navigateHeader($scriptwhere, $pathname, $filename, $rev, 'annotate');
3.120     scop     1718:
3.275     scop     1719:   my $revtype = ($rev =~ /\./) ? 'revision' : 'tag'; # TODO: tag -> branch/tag?
3.136     scop     1720:   print '<h3 style="text-align: center">Annotation of ',
3.275     scop     1721:     htmlquote("$pathname$filename"), ", $revtype $rev</h3>\n";
3.120     scop     1722:
                   1723:   # Ready to get the responses from the server.
                   1724:   # For example:
                   1725:   #     E Annotations for foo/xx
                   1726:   #     E ***************
                   1727:   #     M 1.3          (kingdon  06-Sep-97): hello
                   1728:   #     ok
                   1729:   my ($lineNr) = 0;
                   1730:   my ($oldLrev, $oldLusr) = ("", "");
                   1731:   my ($revprint, $usrprint);
                   1732:
                   1733:   if ($annTable) {
3.179     scop     1734:     print <<EOF;
                   1735: <table style="border: none" cellspacing="0" cellpadding="0" summary="Annotation">
                   1736: EOF
3.120     scop     1737:   } else {
                   1738:     print "<pre>";
                   1739:   }
                   1740:
                   1741:   # prefetch several lines
3.174     scop     1742:   my @buf = head(*CVS_OUT);
3.120     scop     1743:
                   1744:   my %d = scan_directives(@buf);
                   1745:
3.174     scop     1746:   while (@buf || !eof(*CVS_OUT)) {
3.197     scop     1747:
3.174     scop     1748:     $_ = @buf ? shift @buf : <CVS_OUT>;
3.120     scop     1749:     my @words = split;
                   1750:
                   1751:     # Adding one is for the (single) space which follows $words[0].
                   1752:     my $rest = substr($_, length($words[0]) + 1);
                   1753:     if ($words[0] eq "E") {
                   1754:       next;
                   1755:     } elsif ($words[0] eq "M") {
                   1756:       $lineNr++;
                   1757:       (my $lrev = substr($_, 2,  13)) =~ y/ //d;
                   1758:       (my $lusr = substr($_, 16, 9))  =~ y/ //d;
                   1759:       my $line = substr($_, 36);
3.275     scop     1760:       # TODO: this does not work for branch/tag revisions.
3.120     scop     1761:       my $isCurrentRev = ($rev eq $lrev);
                   1762:
                   1763:       # we should parse the date here ..
                   1764:       if ($lrev eq $oldLrev) {
                   1765:         $revprint = sprintf('%-8s', '');
                   1766:       } else {
                   1767:         $revprint = sprintf('%-8s', $lrev);
3.266     scop     1768:         $revprint =~ s|(\S+)|&link($1, uri_escape($filename)."$query#rev$1")|e;
3.120     scop     1769:         $oldLusr = '';
                   1770:       }
                   1771:
3.268     scop     1772:       $usrprint = ($lusr eq $oldLusr) ? '' : $lusr;
3.120     scop     1773:       $oldLrev = $lrev;
                   1774:       $oldLusr = $lusr;
                   1775:
3.250     scop     1776:       print $is_textbased ? '<b>' : '<span class="current-rev">'
                   1777:         if $isCurrentRev;
3.120     scop     1778:
3.136     scop     1779:       $usrprint = sprintf('%-8s', $usrprint);
                   1780:       printf '%s%s %s %4d:', $revprint, $isCurrentRev ? '!' : ' ',
                   1781:         htmlquote($usrprint), $lineNr;
3.254     scop     1782:       print spacedHtmlText($line, $d{tabstop});
3.120     scop     1783:
3.250     scop     1784:       print $is_textbased ? '</b>' : '</span>' if $isCurrentRev;
                   1785:
3.120     scop     1786:     } elsif ($words[0] eq "ok") {
                   1787:       # We could complain about any text received after this, like the
                   1788:       # CVS command line client.  But for simplicity, we don't.
3.275     scop     1789:
3.120     scop     1790:     } elsif ($words[0] eq "error") {
                   1791:       fatal("500 Internal Error",
                   1792:             'Error occured during annotate: <b>%s</b>', $_);
                   1793:     }
                   1794:   }
3.229     scop     1795:   $h->finish();
3.120     scop     1796:
                   1797:   if ($annTable) {
                   1798:     print "</table>";
                   1799:   } else {
                   1800:     print "</pre>";
                   1801:   }
3.124     scop     1802:   html_footer();
3.1       knu      1803: }
                   1804:
                   1805: ###############################
                   1806: # make Checkout
                   1807: ###############################
3.275     scop     1808: sub doCheckout($$$)
3.120     scop     1809: {
3.275     scop     1810:   my ($fullname, $rev, $tag) = @_;
                   1811:   $rev = $tag || undef if (!$rev || $rev eq '.');
3.120     scop     1812:
3.219     scop     1813:   # Start resolving whether we will do a markup view or not.
                   1814:   my $do_markup = undef;
3.226     scop     1815:   my $want_type = $input{'content-type'};
                   1816:
3.219     scop     1817:   # No markup if markup disallowed.
                   1818:   $do_markup = 0 unless $allow_markup;
3.226     scop     1819:
3.219     scop     1820:   # No markup if checkout magic cookie in URL.
                   1821:   $do_markup = 0 if (!defined($do_markup) && $doCheckout);
3.226     scop     1822:
3.219     scop     1823:   # Do markup if explicitly asked using cvsweb-markup content type.  If the
                   1824:   # asked content type is anything else, no markup.
3.226     scop     1825:   if (!defined($do_markup) && $want_type) {
                   1826:     if ($want_type =~ CVSWEBMARKUP) {
                   1827:       $want_type = undef;
                   1828:       $do_markup = 1;
                   1829:     } else {
                   1830:       $do_markup = 0;
                   1831:     }
3.219     scop     1832:   }
                   1833:
                   1834:   # Ok, if $do_markup is still undefined, we know that a download has not been
                   1835:   # explicitly asked.  For the last check further down below we'll need to
                   1836:   # know if the file is binary, and possibly run a log on it.
                   1837:   my $needlog = $do_markup || $use_moddate;
3.120     scop     1838:
3.163     scop     1839:   my $moddate = undef;
3.175     scop     1840:   my $revopt;
3.120     scop     1841:   if (defined($rev)) {
                   1842:     $revopt = "-r$rev";
3.219     scop     1843:     if ($needlog) {
3.120     scop     1844:       readLog($fullname, $rev);
3.275     scop     1845:       $moddate   = $date{$rev};
                   1846:       # TODO: even this does not work for branch tags, but only normal tags :(
                   1847:       $moddate ||= $date{$symrev{$rev}} if defined($symrev{$rev});
3.120     scop     1848:     }
                   1849:   } else {
                   1850:     $revopt = "-rHEAD";
3.219     scop     1851:     if ($needlog) {
3.120     scop     1852:       readLog($fullname);
                   1853:       $moddate = $date{$symrev{HEAD}};
                   1854:     }
                   1855:   }
                   1856:
3.194     scop     1857:   my $cr = abs_path($cvsroot) || $cvsroot;
                   1858:   # abs_path() taints when run as a CGI...
                   1859:   if ($cr =~ VALID_PATH) {
                   1860:     $cr = $1;
                   1861:   } else {
                   1862:     fatal('500 Internal Error', 'Illegal CVS root: <code>%s</code>', $cr);
                   1863:   }
3.183     scop     1864:   # Use abs_path() to work around a bug of cvs -p; expand symlinks if we can.
3.194     scop     1865:   my @cmd = ($CMD{cvs}, @cvs_options, '-d', $cr, 'co', '-p', $revopt, $where);
3.183     scop     1866:
3.174     scop     1867:   local (*CVS_OUT, *CVS_ERR);
                   1868:   my ($h, $err) =
3.229     scop     1869:     startproc(\@cmd, \"", '>pipe', \*CVS_OUT, '2>pipe', \*CVS_ERR);
3.215     scop     1870:   fatal('500 Internal Error',
                   1871:         'Checkout failure (exit status %s), output: <pre>%s</pre>',
                   1872:         $? >> 8 || -1, $err)
                   1873:     unless $h;
3.120     scop     1874:
3.174     scop     1875:   if (eof(CVS_ERR)) {
3.229     scop     1876:     $h->finish();
3.120     scop     1877:     fatal("404 Not Found", '%s is not (any longer) pertinent', $where);
                   1878:   }
                   1879:
                   1880:   #===================================================================
                   1881:   #Checking out squid/src/ftp.c
                   1882:   #RCS:  /usr/src/CVS/squid/src/ftp.c,v
                   1883:   #VERS: 1.1.1.28.6.2
                   1884:   #***************
                   1885:
                   1886:   # Parse CVS header
                   1887:   my ($revision, $filename, $cvsheader);
                   1888:   $filename = "";
3.174     scop     1889:   while (<CVS_ERR>) {
3.120     scop     1890:     last if (/^\*\*\*\*/);
                   1891:     $revision = $1 if (/^VERS: (.*)$/);
                   1892:
                   1893:     if (/^Checking out (.*)$/) {
3.214     scop     1894:       ($filename = $1) =~ s|^\./+||;
3.120     scop     1895:     }
                   1896:     $cvsheader .= $_;
                   1897:   }
3.219     scop     1898:   close(CVS_ERR);
3.120     scop     1899:
                   1900:   if ($filename ne $where) {
3.229     scop     1901:     $h->finish();
3.120     scop     1902:     fatal("500 Internal Error",
3.214     scop     1903:           'Unexpected output from cvs co: <pre>%s</pre> ' .
                   1904:           '(expected "<code>%s</code>" but got "<code>%s</code>")',
                   1905:           $cvsheader, $where, $filename);
3.120     scop     1906:   }
                   1907:
3.219     scop     1908:   # Last checks whether we'll do markup or not.
                   1909:   my $isbin = $keywordsubstitution && $keywordsubstitution =~ /b/;
                   1910:   my $mimetype = getMimeType($fullname, $isbin);
                   1911:
                   1912:   # If we still are not sure whether to do markup or not:
                   1913:   # if the MIME type is "viewable" or this is not a binary file, do.
                   1914:   $do_markup = !$isbin || viewable($mimetype) unless defined($do_markup);
                   1915:
                   1916:   if ($do_markup) {
                   1917:
                   1918:     # If this is something we'll be linking to in the markup view, we are
                   1919:     # done with this particular output from "cvs co" and must discard it.
                   1920:     my $linked = $mimetype =~ m{^image/|application/pdf$}i;
                   1921:     if ($linked) {
                   1922:       close(CVS_OUT);
3.229     scop     1923:       $h->finish();
3.219     scop     1924:     }
                   1925:
3.163     scop     1926:     # Here we know the last modified date, but don't know if tags have been
3.219     scop     1927:     # added afterwards (those are shown in the markup view): no last-modified.
                   1928:     cvswebMarkup(\*CVS_OUT, $fullname, $revision, $isbin, $mimetype, $needlog);
                   1929:
3.229     scop     1930:     $h->finish() unless $linked;
3.219     scop     1931:
3.120     scop     1932:   } else {
3.226     scop     1933:     http_header($want_type || $mimetype, $moddate);
3.174     scop     1934:     local $/ = undef;
                   1935:     print <CVS_OUT>;
3.229     scop     1936:     $h->finish();
3.120     scop     1937:   }
1.12      fenner   1938: }
                   1939:
3.174     scop     1940:
3.219     scop     1941: sub cvswebMarkup($$$$$$;$)
3.120     scop     1942: {
3.219     scop     1943:   my ($filehandle, $fullname, $rev, $isbin, $mimetype, $logged, $mod) = @_;
3.1       knu      1944:
3.262     scop     1945:   (my $pathname = $where) =~ s|((?<=/)Attic/)?[^/]*$||;
3.261     scop     1946:   (my $filename = $where) =~ s|^.*/||;
3.120     scop     1947:
3.219     scop     1948:   navigateHeader($scriptwhere, $pathname, $filename, $rev, 'view', $mod);
3.120     scop     1949:
3.144     scop     1950:   print <<EOF;
3.208     scop     1951: <hr />
3.182     scop     1952: <div class="log-markup">
                   1953: File:&nbsp;
3.144     scop     1954: EOF
3.219     scop     1955:   print &clickablePath($where, 1), "<br />\n";
3.120     scop     1956:
                   1957:   if ($show_log_in_markup) {
3.219     scop     1958:     readLog($fullname) unless $logged; #,$rev);
                   1959:     printLog($rev, $mimetype, $isbin);
3.120     scop     1960:   } else {
3.244     scop     1961:     print "Revision: <b>$rev</b><br />\n";
                   1962:     print 'Tag: ', htmlquote($input{only_with_tag}), "<br />\n"
3.120     scop     1963:       if $input{only_with_tag};
                   1964:   }
3.208     scop     1965:   print "</div>\n<hr />";
3.271     scop     1966:   my $url = download_url(uri_escape($filename), $rev, $mimetype);
3.120     scop     1967:
3.219     scop     1968:   if ($mimetype =~ m|^image/|i) {
3.208     scop     1969:     printf '<img src="%s" alt="%s" /><br />',
3.271     scop     1970:       $url . $barequery, htmlquote($filename);
3.219     scop     1971:   } elsif (lc($mimetype) eq 'application/pdf') {
3.208     scop     1972:     printf '<embed src="%s" width="100%%" height="100%%" /><br />',
3.271     scop     1973:       $url . $barequery;
3.120     scop     1974:   } else {
3.208     scop     1975:     print "<pre>\n";
3.167     scop     1976:     my $linenumbers = $input{ln} || 0;
3.200     scop     1977:       my $ln  = 0;
                   1978:       my @buf = ();
                   1979:       my $ts  = undef;
                   1980:
                   1981:       if ($preformat_in_markup) {
                   1982:         # prefetch several lines
                   1983:         @buf = head($filehandle);
                   1984:         my %d = scan_directives(@buf);
                   1985:         $ts = $d{tabstop};
                   1986:       }
                   1987:
                   1988:       while (@buf || !eof($filehandle)) {
                   1989:         $_ = @buf ? shift @buf : <$filehandle>;
3.167     scop     1990:         if ($linenumbers) {
                   1991:           $ln++;
                   1992:           printf '<a id="l%d" class="src">%5d: </a>', ($ln) x 2;
3.149     scop     1993:         }
3.200     scop     1994:         print $preformat_in_markup ? spacedHtmlText($_, $ts) : htmlquote($_);
3.148     scop     1995:       }
3.149     scop     1996:     print "</pre>\n";
3.120     scop     1997:   }
3.131     scop     1998:   html_footer();
3.120     scop     1999: }
                   2000:
3.156     scop     2001:
3.120     scop     2002: sub viewable($)
                   2003: {
3.219     scop     2004:   return shift =~ m{^((text|image)/|application/pdf)}i;
3.156     scop     2005: }
3.120     scop     2006:
3.1       knu      2007:
                   2008: ###############################
                   2009: # Show Colored Diff
                   2010: ###############################
3.120     scop     2011: sub doDiff($$$$$$)
                   2012: {
                   2013:   my ($fullname, $r1, $tr1, $r2, $tr2, $f) = @_;
                   2014:
3.233     scop     2015:   if (forbidden($fullname)) {
                   2016:     fatal('403 Forbidden', 'Access to %s forbidden.', $where);
3.120     scop     2017:   }
                   2018:
3.175     scop     2019:   my ($rev1, $sym1);
3.120     scop     2020:   if ($r1 =~ /([^:]+)(:(.+))?/) {
                   2021:     $rev1 = $1;
                   2022:     $sym1 = $3;
                   2023:   }
                   2024:   if ($r1 eq 'text') {
                   2025:     $rev1 = $tr1;
                   2026:     $sym1 = "";
                   2027:   }
                   2028:
3.175     scop     2029:   my ($rev2, $sym2);
3.120     scop     2030:   if ($r2 =~ /([^:]+)(:(.+))?/) {
                   2031:     $rev2 = $1;
                   2032:     $sym2 = $3;
                   2033:   }
                   2034:   if ($r2 eq 'text') {
                   2035:     $rev2 = $tr2;
                   2036:     $sym2 = "";
                   2037:   }
                   2038:
                   2039:   #
                   2040:   # rev1 and rev2 are now both numeric revisions.
                   2041:   # Thus we do a DWIM here and swap them if rev1 is after rev2.
                   2042:   # XXX should we warn about the fact that we do this?
                   2043:   if (&revcmp($rev1, $rev2) > 0) {
                   2044:     my ($tmp1, $tmp2) = ($rev1, $sym1);
                   2045:     ($rev1, $sym1) = ($rev2, $sym2);
                   2046:     ($rev2, $sym2) = ($tmp1, $tmp2);
                   2047:   }
3.225     scop     2048:
                   2049:   my $mimetype = getMimeType($fullname);
                   2050:
                   2051:   $f = $DEFAULTVALUE{f} || 'u' if ($f =~ /^ext\d*$/);
3.120     scop     2052:   my $difftype = $DIFFTYPES{$f};
                   2053:   if (!$difftype) {
                   2054:     fatal("400 Bad arguments", 'Diff format %s not understood', $f);
                   2055:   }
                   2056:
3.254     scop     2057:   my @difftype       = @{$difftype->{opts}};
                   2058:   my $human_readable = $difftype->{colored};
3.120     scop     2059:
4.2       schwarze 2060:   # Apply special diff options.
4.35      schwarze 2061:   push @difftype, '-p';
3.120     scop     2062:
                   2063:   if ($human_readable) {
3.247     scop     2064:     push(@difftype, '-w')  if $hr_ignwhite;
                   2065:     push(@difftype, '-kk') if $hr_ignkeysubst;
3.120     scop     2066:   }
                   2067:
3.175     scop     2068:   my $fh = do { local (*FH); };
3.120     scop     2069:   if (!open($fh, "-|")) {    # child
                   2070:     open(STDERR, ">&STDOUT");    # Redirect stderr to stdout
3.166     scop     2071:     exec($CMD{rcsdiff}, @rcsdiff_options, @difftype, "-r$rev1", "-r$rev2",
                   2072:          $fullname) or exit -1;
3.120     scop     2073:   }
3.166     scop     2074:
3.120     scop     2075:   if ($human_readable) {
3.168     scop     2076:     #
                   2077:     # Human readable diff.
                   2078:     #
                   2079:     human_readable_diff($fh, $rev2);
                   2080:     html_footer();
                   2081:     gzipclose();
                   2082:     exit;
3.120     scop     2083:   } else {
3.168     scop     2084:     #
                   2085:     # Plain diff.
                   2086:     #
3.120     scop     2087:     http_header("text/plain");
                   2088:   }
                   2089:
                   2090:   #
                   2091:   #===================================================================
                   2092:   #RCS file: /home/ncvs/src/sys/netinet/tcp_output.c,v
                   2093:   #retrieving revision 1.16
                   2094:   #retrieving revision 1.17
                   2095:   #diff -c -r1.16 -r1.17
                   2096:   #*** /home/ncvs/src/sys/netinet/tcp_output.c     1995/11/03 22:08:08     1.16
                   2097:   #--- /home/ncvs/src/sys/netinet/tcp_output.c     1995/12/05 17:46:35     1.17
                   2098:   #
                   2099:   # Ideas:
                   2100:   # - nuke the stderr output if it's what we expect it to be
                   2101:   # - Add "no differences found" if the diff command supplied no output.
                   2102:   #
                   2103:   #*** src/sys/netinet/tcp_output.c     1995/11/03 22:08:08     1.16
                   2104:   #--- src/sys/netinet/tcp_output.c     1995/12/05 17:46:35     1.17 RELENG_2_1_0
                   2105:   # (bogus example, but...)
                   2106:   #
3.175     scop     2107:   my ($f1, $f2);
3.120     scop     2108:   if (grep { $_ eq '-u' } @difftype) {
                   2109:     $f1 = '---';
                   2110:     $f2 = '\+\+\+';
                   2111:   } else {
                   2112:     $f1 = '\*\*\*';
                   2113:     $f2 = '---';
                   2114:   }
                   2115:
                   2116:   while (<$fh>) {
                   2117:     if (m|^$f1 $cvsroot|o) {
                   2118:       s|$cvsroot/||o;
                   2119:       if ($sym1) {
                   2120:         chop;
                   2121:         $_ .= " $sym1\n";
                   2122:       }
                   2123:     } elsif (m|^$f2 $cvsroot|o) {
                   2124:       s|$cvsroot/||o;
                   2125:
                   2126:       if ($sym2) {
                   2127:         chop;
                   2128:         $_ .= " $sym2\n";
                   2129:       }
                   2130:     }
                   2131:     print $_;
                   2132:   }
                   2133:   close($fh);
1.12      fenner   2134: }
                   2135:
3.175     scop     2136:
3.1       knu      2137: ###############################
                   2138: # Show Logs ..
                   2139: ###############################
3.120     scop     2140: sub getDirLogs($$@)
                   2141: {
                   2142:   my ($cvsroot, $dirname, @otherFiles) = @_;
3.139     scop     2143:   my $tag = $input{only_with_tag};
3.196     scop     2144:   my $DirName = catdir($cvsroot, $where);
3.120     scop     2145:
3.139     scop     2146:   my @files = &safeglob("$DirName/*,v");
3.254     scop     2147:   push (@files, &safeglob("$DirName/Attic/*,v")) unless $input{hideattic};
3.120     scop     2148:   foreach my $file (@otherFiles) {
3.196     scop     2149:     push(@files, catfile($DirName, $file));
3.120     scop     2150:   }
                   2151:
3.150     scop     2152:   # Weed out unreadable files.
                   2153:   my $i = 0;
                   2154:   my @unreadable = ();
                   2155:   while ($i < scalar(@files)) {
3.197     scop     2156:     # Note: last modified files from subdirs returned by
                   2157:     # findLastModifiedSubdirs() come without the ,v suffix so they're not
                   2158:     # found here, but have already been checked for readability.  *cough*
                   2159:     if (-r $files[$i] || !-e _) {
3.150     scop     2160:       $i++;
                   2161:     } else {
                   2162:       push(@unreadable, splice(@files, $i, 1));
                   2163:     }
                   2164:   }
                   2165:
3.139     scop     2166:   # If there are no files, we're done.
3.150     scop     2167:   return @unreadable unless @files;
3.120     scop     2168:
3.139     scop     2169:   my @cmd = ($CMD{rlog});
                   2170:   # Can't use -r<tag> as '-' is allowed in tagnames,
                   2171:   # but misinterpreted by rlog.
                   2172:   push(@cmd, '-r') unless defined($tag);
3.120     scop     2173:
3.139     scop     2174:   my $fh = do { local (*FH); };
3.273     scop     2175:   if (!open($fh, '-|')) {                       # Child
                   2176:     open(STDERR, '>', devnull()) unless $DEBUG; # Ignore rlog's complaints.
3.139     scop     2177:     if ($file_list_len && $file_list_len > 1) {
                   2178:       while (scalar(@files) > $file_list_len) {  # Process files in chunks.
                   2179:         system(@cmd, splice(@files, 0, $file_list_len)) == 0 or exit -1;
                   2180:       }
3.120     scop     2181:     }
3.139     scop     2182:     exec(@cmd, @files) or exit -1;
                   2183:   }
                   2184:   undef @cmd;
3.120     scop     2185:
3.139     scop     2186:   my $state = 'start';
                   2187:   my ($date, $branchpoint, $branch, $log, @filetags);
3.152     scop     2188:   my ($rev, $revision, $revwanted, $filename, $head, $author, $keywordsubst);
3.120     scop     2189:
                   2190:   while (<$fh>) {
                   2191:     if ($state eq "start") {
                   2192:
                   2193:       #Next file. Initialize file variables
                   2194:       $rev         = '';
                   2195:       $revwanted   = '';
                   2196:       $branch      = '';
                   2197:       $branchpoint = '';
                   2198:       $filename    = '';
                   2199:       $log         = '';
                   2200:       $revision    = '';
                   2201:       %symrev      = ();
                   2202:       @filetags    = ();
3.152     scop     2203:       $keywordsubst= '';
3.120     scop     2204:
                   2205:       #jump to head state
                   2206:       $state = "head";
                   2207:     }
3.144     scop     2208:
3.120     scop     2209:     again:
                   2210:
                   2211:     if ($state eq "head") {
                   2212:
                   2213:       #$rcsfile = $1 if (/^RCS file: (.+)$/); #not used (yet)
                   2214:
                   2215:       if (/^Working file: (.+)$/) {
                   2216:         $filename = $1;
                   2217:       } elsif (/^head: (.+)$/) {
                   2218:         $head = $1;
                   2219:       } elsif (/^branch: (.+)$/) {
                   2220:         $branch = $1;
3.152     scop     2221:       } elsif (/^keyword substitution: (.+)$/) {
                   2222:         $keywordsubst = $1;
3.120     scop     2223:       } elsif (/^symbolic names:/) {
                   2224:         $state = "tags";
                   2225:         ($branch = $head) =~ s/\.\d+$//
                   2226:           if $branch eq '';
                   2227:         $branch =~ s/(\d+)$/0.$1/;
                   2228:         $symrev{MAIN}  = $branch;
                   2229:         $symrev{HEAD}  = $branch;
                   2230:         $alltags{MAIN} = 1;
                   2231:         $alltags{HEAD} = 1;
                   2232:         push (@filetags, "MAIN", "HEAD");
3.222     scop     2233:       } elsif ($_ =~ LOG_REVSEPR) {
3.120     scop     2234:         $state = "log";
                   2235:         $rev   = '';
                   2236:         $date  = '';
                   2237:         $log   = '';
                   2238:
                   2239:         # Try to reconstruct the relative filename if RCS spits out a full path
                   2240:         $filename =~ s%^\Q$DirName\E/%%;
                   2241:       }
                   2242:       next;
                   2243:     }
                   2244:
                   2245:     if ($state eq "tags") {
                   2246:       if (/^\s+([^:]+):\s+([\d\.]+)\s*$/) {
                   2247:         push (@filetags, $1);
                   2248:         $symrev{$1}  = $2;
                   2249:         $alltags{$1} = 1;
                   2250:         next;
                   2251:       } elsif (/^\S/) {
                   2252:
                   2253:         if (defined($tag)) {
                   2254:           if (defined($symrev{$tag}) || $tag eq "HEAD") {
                   2255:             $revwanted    = $symrev{$tag eq "HEAD" ? "MAIN" : $tag};
                   2256:             ($branch      = $revwanted) =~ s/\b0\.//;
                   2257:             ($branchpoint = $branch)    =~ s/\.?\d+$//;
                   2258:             $revwanted    = '' if ($revwanted ne $branch);
                   2259:           } elsif ($tag ne "HEAD") {
                   2260:             $state = "skip";
                   2261:             next;
                   2262:           }
                   2263:         }
                   2264:
                   2265:         foreach my $tagfound (@filetags) {
                   2266:           $tags{$tagfound} = 1;
                   2267:         }
                   2268:         $state = "head";
                   2269:         goto again;
                   2270:       }
                   2271:     }
                   2272:
                   2273:     if ($state eq "log") {
3.222     scop     2274:       if ($_ =~ LOG_REVSEPR || $_ =~ LOG_FILESEPR) {
3.120     scop     2275:
                   2276:         # End of a log entry.
                   2277:         my $revbranch = $rev;
                   2278:         $revbranch =~ s/\.\d+$//;
                   2279:
                   2280:         if ($revwanted eq '' && $branch ne '' && $branch eq $revbranch
                   2281:             || !defined($tag))
                   2282:         {
                   2283:           $revwanted = $rev;
                   2284:         }
                   2285:
                   2286:         if ($revwanted ne ''
                   2287:             ? $rev eq $revwanted
                   2288:             : $branchpoint ne ''
                   2289:               ? $rev eq $branchpoint
                   2290:               : 0
                   2291:             && ($rev eq $head))
                   2292:         {    # Don't think head is needed here..
3.152     scop     2293:           my @finfo = ($rev, $date, $log, $author, $filename, $keywordsubst);
                   2294:           (my $name = $filename) =~ s%/.*%%;
3.120     scop     2295:           $fileinfo{$name} = [@finfo];
                   2296:           $state = "done" if ($rev eq $revwanted);
                   2297:         }
                   2298:         $rev  = '';
                   2299:         $date = '';
                   2300:         $log  = '';
                   2301:       } elsif ($date eq ''
                   2302:                && m|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);|)
                   2303:       {
3.172     scop     2304:         my $yr    = $1;
                   2305:         $yr      -= 1900 if ($yr > 100); # Damn 2-digit year routines :-)
                   2306:         $date     = timegm($6, $5, $4, $3, $2 - 1, $yr);
3.120     scop     2307:         ($author) = /author: ([^;]+)/;
3.172     scop     2308:         $state    = 'log';
                   2309:         $log      = '';
3.120     scop     2310:         next;
                   2311:       } elsif ($rev eq '' && /^revision (\d+(?:\.\d+)+).*$/) {
                   2312:         $rev = $1;    # .*$ eats up the locker(lockers?) info, if any
                   2313:         next;
                   2314:       } else {
                   2315:         $log .= $_;
                   2316:       }
                   2317:     }
                   2318:
3.222     scop     2319:     if ($_ =~ LOG_FILESEPR) {
3.120     scop     2320:       $state = "start";
                   2321:       next;
                   2322:     }
                   2323:   }
                   2324:
3.139     scop     2325:   my $linesread = $. || 0;
                   2326:   close($fh);
                   2327:
                   2328:   if ($linesread == 0) {
3.137     scop     2329:     fatal('500 Internal Error',
4.29      schwarze 2330:           'Failed to spawn rlog on <em>"%s"</em>',
                   2331:           htmlquote(join(', ', @files)));
3.120     scop     2332:   }
3.150     scop     2333:   return @unreadable;
3.120     scop     2334: }
                   2335:
3.175     scop     2336:
3.120     scop     2337: sub readLog($;$)
                   2338: {
                   2339:   my ($fullname, $revision) = @_;
                   2340:   my ($symnames, $head, $rev, $br, $brp, $branch, $branchrev);
                   2341:
                   2342:   undef %symrev;
                   2343:   undef %revsym;
                   2344:   undef @allrevisions;
                   2345:   undef %date;
                   2346:   undef %author;
                   2347:   undef %state;
                   2348:   undef %difflines;
                   2349:   undef %log;
3.152     scop     2350:   $keywordsubstitution = '';
3.120     scop     2351:
3.175     scop     2352:   my $fh = do { local (*FH); };
3.120     scop     2353:   if (!open($fh, "-|")) {    # child
3.275     scop     2354:     $revision = defined($revision) ? "-r$revision" : '';
                   2355:     if ($revision =~ /\./) {
                   2356:       # Normal revision, not a branch/tag name.
3.120     scop     2357:       exec($CMD{rlog}, $revision, $fullname) or exit -1;
                   2358:     } else {
                   2359:       exec($CMD{rlog}, $fullname) or exit -1;
                   2360:     }
                   2361:   }
                   2362:
3.217     scop     2363:   my $curbranch = undef;
3.120     scop     2364:   while (<$fh>) {
                   2365:     if ($symnames) {
                   2366:       if (/^\s+([^:]+):\s+([\d\.]+)/) {
                   2367:         $symrev{$1} = $2;
3.152     scop     2368:         next;
3.120     scop     2369:       } else {
                   2370:         $symnames = 0;
                   2371:       }
3.152     scop     2372:     }
                   2373:     if (/^head:\s+([\d\.]+)/) {
3.120     scop     2374:       $head = $1;
                   2375:     } elsif (/^branch:\s+([\d\.]+)/) {
                   2376:       $curbranch = $1;
                   2377:     } elsif (/^symbolic names/) {
                   2378:       $symnames = 1;
3.152     scop     2379:     } elsif (/^keyword substitution: (.+)$/) {
                   2380:       $keywordsubstitution = $1;
3.120     scop     2381:     } elsif (/^-----/) {
                   2382:       last;
                   2383:     }
                   2384:   }
                   2385:   ($curbranch = $head) =~ s/\.\d+$// if (!defined($curbranch));
                   2386:
                   2387:   # each log entry is of the form:
                   2388:   # ----------------------------
                   2389:   # revision 3.7.1.1
                   2390:   # date: 1995/11/29 22:15:52;  author: fenner;  state: Exp;  lines: +5 -3
                   2391:   # log info
                   2392:   # ----------------------------
                   2393:
                   2394:   # For a locked revision, the first line after the separator
                   2395:   # becomes smth like
3.149     scop     2396:   # revision 9.19       locked by: vassilii;
3.120     scop     2397:
                   2398:   logentry:
                   2399:
3.222     scop     2400:   while ($_ !~ LOG_FILESEPR) {
3.120     scop     2401:     $_ = <$fh>;
                   2402:     last logentry if (!defined($_));    # EOF
                   2403:     if (/^revision (\d+(?:\.\d+)+)/) {
                   2404:       $rev = $1;
3.261     scop     2405:       unshift(@allrevisions, $rev);
3.222     scop     2406:     } elsif ($_ =~ LOG_FILESEPR || $_ =~ LOG_REVSEPR) {
3.120     scop     2407:       next logentry;
                   2408:     } else {
                   2409:
                   2410:       # The rlog output is syntactically ambiguous.  We must
                   2411:       # have guessed wrong about where the end of the last log
                   2412:       # message was.
                   2413:       # Since this is likely to happen when people put rlog output
                   2414:       # in their commit messages, don't even bother keeping
                   2415:       # these lines since we don't know what revision they go with
                   2416:       # any more.
                   2417:       next logentry;
                   2418:     }
                   2419:     $_ = <$fh>;
                   2420:     if (
                   2421:       m|^date:\s+(\d+)/(\d+)/(\d+)\s+(\d+):(\d+):(\d+);\s+author:\s+(\S+);\s+state:\s+(\S+);\s+(lines:\s+([0-9\s+-]+))?|
                   2422:       )
                   2423:     {
3.172     scop     2424:       my $yr           = $1;
                   2425:       $yr             -= 1900 if ($yr > 100); # Damn 2-digit year routines :-)
                   2426:       $date{$rev}      = timegm($6, $5, $4, $3, $2 - 1, $yr);
3.120     scop     2427:       $author{$rev}    = $7;
                   2428:       $state{$rev}     = $8;
                   2429:       $difflines{$rev} = $10;
                   2430:     } else {
                   2431:       fatal("500 Internal Error", 'Error parsing RCS output: %s', $_);
                   2432:     }
                   2433:
                   2434:   line:
                   2435:     while (<$fh>) {
                   2436:       next line if (/^branches:\s/);
3.222     scop     2437:       last line if ($_ =~ LOG_FILESEPR || $_ =~ LOG_REVSEPR);
3.120     scop     2438:       $log{$rev} .= $_;
                   2439:     }
                   2440:   }
                   2441:   close($fh);
                   2442:
                   2443:   @revorder = reverse sort { revcmp($a, $b) } @allrevisions;
                   2444:
                   2445:   #
                   2446:   # HEAD is an artificial tag which is simply the highest tag number on the main
                   2447:   # branch, unless there is a branch tag in the RCS file in which case it's the
                   2448:   # highest revision on that branch.  Find it by looking through @revorder; it
                   2449:   # is the first commit listed on the appropriate branch.
                   2450:   # This is not neccesary the same revision as marked as head in the RCS file.
                   2451:   my $headrev = $curbranch || "1";
3.254     scop     2452:   ($symrev{MAIN} = $headrev) =~ s/(\d+)$/0.$1/;
3.120     scop     2453:
                   2454:   foreach $rev (@revorder) {
                   2455:     if ($rev =~ /^(\S*)\.\d+$/ && $headrev eq $1) {
3.254     scop     2456:       $symrev{HEAD} = $rev;
3.120     scop     2457:       last;
                   2458:     }
                   2459:   }
3.254     scop     2460:   ($symrev{HEAD} = $headrev) =~ s/\.\d+$// unless defined($symrev{HEAD});
3.120     scop     2461:
                   2462:   #
                   2463:   # Now that we know all of the revision numbers, we can associate
                   2464:   # absolute revision numbers with all of the symbolic names, and
                   2465:   # pass them to the form so that the same association doesn't have
                   2466:   # to be built then.
                   2467:   #
                   2468:   undef @branchnames;
                   2469:   undef %branchpoint;
                   2470:   undef $sel;
                   2471:
                   2472:   foreach (reverse sort keys %symrev) {
                   2473:     $rev = $symrev{$_};
                   2474:     if ($rev =~ /^((.*)\.)?\b0\.(\d+)$/) {
                   2475:       push (@branchnames, $_);
                   2476:
                   2477:       #
                   2478:       # A revision number of A.B.0.D really translates into
                   2479:       # "the highest current revision on branch A.B.D".
                   2480:       #
                   2481:       # If there is no branch A.B.D, then it translates into
                   2482:       # the head A.B .
                   2483:       #
                   2484:       # This reasoning also applies to the main branch A.B,
                   2485:       # with the branch number 0.A, with the exception that
                   2486:       # it has no head to translate to if there is nothing on
                   2487:       # the branch, but I guess this can never happen?
                   2488:       #
                   2489:       # (the code below gracefully forgets about the branch
                   2490:       # if it should happen)
                   2491:       #
                   2492:       $head = defined($2) ? $2 : "";
                   2493:       $branch = $3;
                   2494:       $branchrev = $head . ($head ne "" ? "." : "") . $branch;
3.222     scop     2495:       $rev = $head;
                   2496:
                   2497:       my $regex = '^' . quotemeta($branchrev) . '\b';
                   2498:       $regex = qr/$regex/;
3.120     scop     2499:
                   2500:       foreach my $r (@revorder) {
3.222     scop     2501:         if ($r =~ $regex) {
3.120     scop     2502:           $rev = $branchrev;
                   2503:           last;
                   2504:         }
                   2505:       }
                   2506:       next if ($rev eq "");
                   2507:
                   2508:       if ($rev ne $head && $head ne "") {
3.131     scop     2509:         $branchpoint{$head} .= ', ' if ($branchpoint{$head});
3.120     scop     2510:         $branchpoint{$head} .= $_;
                   2511:       }
                   2512:     }
                   2513:     $revsym{$rev} .= ", " if ($revsym{$rev});
                   2514:     $revsym{$rev} .= $_;
3.136     scop     2515:     $sel .= sprintf("<option value=\"%s:%s\">%s</option>\n",
                   2516:                     htmlquote($rev), (htmlquote($_)) x 2);
3.120     scop     2517:   }
                   2518:
                   2519:   my ($onlyonbranch, $onlybranchpoint);
3.254     scop     2520:   if ($onlyonbranch = $input{only_with_tag}) {
3.120     scop     2521:     $onlyonbranch = $symrev{$onlyonbranch};
3.275     scop     2522:     if ($onlyonbranch && $onlyonbranch =~ s/\b0\.//) {
3.120     scop     2523:       ($onlybranchpoint = $onlyonbranch) =~ s/\.\d+$//;
                   2524:     } else {
                   2525:       $onlybranchpoint = $onlyonbranch;
                   2526:     }
                   2527:
                   2528:     if (!defined($onlyonbranch) || $onlybranchpoint eq "") {
3.275     scop     2529:       fatal("404 Tag not found", 'Tag "<code>%s</code>" is not defined.',
3.254     scop     2530:             $input{only_with_tag});
3.120     scop     2531:     }
                   2532:   }
                   2533:
                   2534:   undef @revisions;
                   2535:
                   2536:   foreach (@allrevisions) {
                   2537:     ($br  = $_)  =~ s/\.\d+$//;
                   2538:     ($brp = $br) =~ s/\.\d+$//;
                   2539:     next if ($onlyonbranch
                   2540:              && $br ne $onlyonbranch
                   2541:              && $_  ne $onlybranchpoint);
3.261     scop     2542:     unshift(@revisions, $_);
3.120     scop     2543:   }
                   2544:
                   2545:   if ($logsort eq "date") {
                   2546:
                   2547:     # Sort the revisions in commit order an secondary sort on revision
                   2548:     # (secondary sort needed for imported sources, or the first main
                   2549:     # revision gets before the same revision on the 1.1.1 branch)
                   2550:     @revdisplayorder =
                   2551:       sort { $date{$b} <=> $date{$a} || -revcmp($a, $b) } @revisions;
                   2552:   } elsif ($logsort eq "rev") {
                   2553:
                   2554:     # Sort the revisions in revision order, highest first
                   2555:     @revdisplayorder = reverse sort { revcmp($a, $b) } @revisions;
                   2556:   } else {
                   2557:
                   2558:     # No sorting. Present in the same order as rlog / cvs log
                   2559:     @revdisplayorder = @revisions;
                   2560:   }
                   2561:
3.217     scop     2562:   return $curbranch;
3.120     scop     2563: }
                   2564:
3.175     scop     2565:
3.225     scop     2566: sub getDiffLinks($$$)
3.120     scop     2567: {
3.225     scop     2568:   my ($url, $mimetype, $isbin) = @_;
                   2569:
                   2570:   my @links = ();
                   2571:   if (!$isbin) { # Offer ordinary diff only for non-binary files.
                   2572:     push(@links, &link('preferred', $url));
                   2573:     for my $difftype ($DIFFTYPES{$defaultDiffType}{colored} ? qw(u) : qw(h)) {
                   2574:       my $f = $difftype eq $defaultDiffType ? '' : $difftype;
                   2575:       push(@links,
                   2576:            &link(htmlquote(lc($DIFFTYPES{$difftype}{descr})), "$url;f=$f"));
                   2577:     }
                   2578:   }
                   2579:   return @links;
3.120     scop     2580: }
                   2581:
3.175     scop     2582:
3.219     scop     2583: sub printLog($$$;$$)
3.120     scop     2584: {
3.219     scop     2585:   # inlogview: 1 if in log view, otherwise in markup view.
                   2586:   ($_, my $mimetype, my $isbin, my $inlogview, my $isSelected) = @_;
3.175     scop     2587:   (my $br  = $_)  =~ s/\.\d+$//;
                   2588:   (my $brp = $br) =~ s/\.?\d+$//;
3.120     scop     2589:
3.219     scop     2590:   print "<a name=\"rev$_\"></a>";
                   2591:   if (defined($revsym{$_})) {
3.261     scop     2592:     foreach my $sym (split(", ", $revsym{$_})) {
3.271     scop     2593:       print '<a name="', htmlquote($sym), '"></a>';
3.120     scop     2594:     }
3.219     scop     2595:   }
                   2596:   if ($revsym{$br} && !defined($nameprinted{$br})) {
3.261     scop     2597:     foreach my $sym (split(", ", $revsym{$br})) {
3.271     scop     2598:       print '<a name="', htmlquote($sym), '"></a>';
3.120     scop     2599:     }
3.219     scop     2600:     $nameprinted{$br} = 1;
                   2601:   }
3.120     scop     2602:
3.271     scop     2603:   print "\n Revision <b>$_</b>";
3.219     scop     2604:   if (/^1\.1\.1\.\d+$/) {
                   2605:     print " <i>(vendor branch)</i>";
                   2606:   }
3.261     scop     2607:
3.271     scop     2608:   (my $filename = $where) =~ s|^.*/||;
                   2609:   my $fileurl   = uri_escape($filename);
                   2610:   undef $filename;
                   2611:
3.261     scop     2612:   my $isDead = ($state{$_} eq 'dead');
3.219     scop     2613:   if (!$isDead) {
3.261     scop     2614:
3.220     scop     2615:     print ': ', download_link($fileurl, $_, 'download', $mimetype);
3.219     scop     2616:
                   2617:     my @vlinks = ();
                   2618:     push(@vlinks, display_link($fileurl, $_, 'text', 'text/plain'))
                   2619:       unless $isbin;
                   2620:     push(@vlinks, display_link($fileurl, $_, 'markup', 'text/x-cvsweb-markup'))
                   2621:       if ($allow_markup && $inlogview && (!$isbin || viewable($mimetype)));
3.268     scop     2622:     if (!$isbin && $allow_annotate) {
3.219     scop     2623:       push(@vlinks,
                   2624:            &link('annotated',
3.271     scop     2625:                  sprintf('%s?annotate=%s%s', $fileurl, $_, $barequery)));
3.219     scop     2626:     }
                   2627:     print ' - view: ', join(', ', @vlinks) if @vlinks;
                   2628:     undef @vlinks;
                   2629:
3.243     scop     2630:     if (!$isbin && $allow_version_select) {
                   2631:       print ' - ';
                   2632:       if ($isSelected) {
                   2633:         print '<b>[selected&nbsp;for&nbsp;diffs]</b>';
                   2634:       } else {
                   2635:         print &link('select&nbsp;for&nbsp;diffs',
                   2636:                     sprintf('%s?r1=%s%s#rev%s',
3.271     scop     2637:                             $fileurl, $_, $barequery, $_));
3.120     scop     2638:       }
                   2639:     }
                   2640:   }
3.219     scop     2641:   print "<br />\n";
3.120     scop     2642:
3.219     scop     2643:   print '<i>';
4.24      schwarze 2644:   print scalar gmtime($date{$_}), ' UTC</i> (';
3.136     scop     2645:   print readableTime(time() - $date{$_}, 1), ' ago)';
3.208     scop     2646:   print ' by <i>', htmlquote($author{$_}), "</i><br />\n";
3.136     scop     2647:
3.243     scop     2648:   printf("Branches: %s<br />\n", link_tags($revsym{$br})) if $revsym{$br};
                   2649:   printf("CVS tags: %s<br />\n", link_tags($revsym{$_}))  if $revsym{$_};
                   2650:   printf("Branch point for: %s<br />\n", link_tags($branchpoint{$_}))
                   2651:     if $branchpoint{$_};
3.120     scop     2652:
                   2653:   # Find the previous revision
3.175     scop     2654:   my $prev;
3.261     scop     2655:   my @prevrev = split(/\./, $_);
3.120     scop     2656:   do {
                   2657:     if (--$prevrev[$#prevrev] <= 0) {
                   2658:
                   2659:       # If it was X.Y.Z.1, just make it X.Y
                   2660:       pop (@prevrev);
                   2661:       pop (@prevrev);
                   2662:     }
                   2663:     $prev = join (".", @prevrev);
                   2664:   } until (defined($date{$prev}) || $prev eq "");
                   2665:
                   2666:   if ($isDead) {
3.219     scop     2667:     print "<b><i>FILE REMOVED</i></b><br />\n";
3.243     scop     2668:   } else {
3.120     scop     2669:     my %diffrev = ();
                   2670:     $diffrev{$_} = 1;
                   2671:     $diffrev{""} = 1;
3.293     scop     2672:     my $diff = 'Diff to:';
3.219     scop     2673:     my $printed = 0;
3.120     scop     2674:
                   2675:     #
                   2676:     # Offer diff to previous revision
                   2677:     if ($prev) {
                   2678:       $diffrev{$prev} = 1;
                   2679:       my $url =
3.271     scop     2680:         sprintf('%s.diff?r1=%s;r2=%s%s', $fileurl, $prev, $_, $barequery);
3.225     scop     2681:       if (my @dlinks = getDiffLinks($url, $mimetype, $isbin)) {
3.293     scop     2682:         print $diff, ' previous ', $prev, ': ', join(', ', @dlinks);
                   2683:         $diff = ';'; $printed = 1;
3.225     scop     2684:       }
3.120     scop     2685:     }
                   2686:
                   2687:     #
                   2688:     # Plus, if it's on a branch, and it's not a vendor branch,
                   2689:     # offer a diff with the branch point.
                   2690:     if ($revsym{$brp}
                   2691:       && !/^1\.1\.1\.\d+$/
                   2692:       && !defined($diffrev{$brp}))
                   2693:     {
                   2694:       my $url =
3.271     scop     2695:         sprintf('%s.diff?r1=%s;r2=%s%s', $fileurl, $brp, $_, $barequery);
3.225     scop     2696:       if (my @dlinks = getDiffLinks($url, $mimetype, $isbin)) {
3.293     scop     2697:         print $diff, ' branchpoint ', $brp, ': ', join(', ', @dlinks);
                   2698:         $diff = ';'; $printed = 1;
3.225     scop     2699:       }
3.120     scop     2700:     }
                   2701:
                   2702:     #
                   2703:     # Plus, if it's on a branch, and it's not a vendor branch,
                   2704:     # offer to diff with the next revision of the higher branch.
                   2705:     # (e.g. change gets committed and then brought
                   2706:     # over to -stable)
                   2707:     if (/^\d+\.\d+\.\d+/ && !/^1\.1\.1\.\d+$/) {
                   2708:       my ($i, $nextmain);
                   2709:
                   2710:       for ($i = 0; $i < $#revorder && $revorder[$i] ne $_; $i++) {
                   2711:       }
3.261     scop     2712:       my @tmp2 = split(/\./, $_);
3.120     scop     2713:       for ($nextmain = ""; $i > 0; $i--) {
                   2714:         my $next = $revorder[$i - 1];
3.261     scop     2715:         my @tmp1 = split(/\./, $next);
3.120     scop     2716:
                   2717:         if (@tmp1 < @tmp2) {
                   2718:           $nextmain = $next;
                   2719:           last;
                   2720:         }
                   2721:
                   2722:         # Only the highest version on a branch should have
3.293     scop     2723:         # a diff for the "next MAIN".
3.120     scop     2724:         last
                   2725:           if (@tmp1 - 1 <= @tmp2
                   2726:           && join (".", @tmp1[0 .. $#tmp1 - 1]) eq
                   2727:           join (".", @tmp2[0 .. $#tmp1 - 1]));
                   2728:       }
                   2729:
                   2730:       if (!defined($diffrev{$nextmain})) {
                   2731:         $diffrev{$nextmain} = 1;
3.203     scop     2732:         my $url = sprintf('%s.diff?r1=%s;r2=%s%s',
3.271     scop     2733:           $fileurl, $nextmain, $_, $barequery);
3.225     scop     2734:         if (my @dlinks = getDiffLinks($url, $mimetype, $isbin)) {
3.293     scop     2735:           print $diff, ' next MAIN ', $nextmain, ': ', join(', ', @dlinks);
                   2736:           $diff = ';'; $printed = 1;
3.225     scop     2737:         }
3.120     scop     2738:       }
                   2739:     }
                   2740:
                   2741:     # Plus if user has selected only r1, then present a link
                   2742:     # to make a diff to that revision
3.254     scop     2743:     if (defined($input{r1}) && !defined($diffrev{$input{r1}})) {
                   2744:       $diffrev{$input{r1}} = 1;
3.203     scop     2745:       my $url = sprintf('%s.diff?r1=%s;r2=%s%s',
3.271     scop     2746:         $fileurl, $input{r1}, $_, $barequery);
3.225     scop     2747:       if (my @dlinks = getDiffLinks($url, $mimetype, $isbin)) {
3.293     scop     2748:         print $diff, ' selected ', $input{r1}, ': ', join(', ', @dlinks);
                   2749:         $diff = ';'; $printed = 1;
3.225     scop     2750:       }
3.120     scop     2751:     }
                   2752:
3.219     scop     2753:     print "<br />\n" if $printed;
                   2754:   }
                   2755:
                   2756:   if ($prev ne "" && $difflines{$_}) {
                   2757:     printf "Changes since revision %s: %s lines<br />\n",
                   2758:       htmlquote($prev), htmlquote($difflines{$_});
3.120     scop     2759:   }
3.189     scop     2760:
3.219     scop     2761:   print "<pre class=\"log\">\n";
3.120     scop     2762:   print &htmlify($log{$_}, $allow_log_extra);
                   2763:   print "</pre>\n";
                   2764: }
                   2765:
3.175     scop     2766:
3.120     scop     2767: sub doLog($)
                   2768: {
                   2769:   my ($fullname) = @_;
                   2770:
3.217     scop     2771:   my $curbranch = readLog($fullname);
3.120     scop     2772:
                   2773:   html_header("CVS log for $where");
3.144     scop     2774:
3.271     scop     2775:   my $upwhere = $where;
3.144     scop     2776:   (my $filename = $where) =~ s|^.*/||;
3.271     scop     2777:   my $backurl = "./$query#" . uri_escape($filename);
                   2778:   if ($where =~ m|^(.*?)((?<=/)Attic/)?[^/]+$|) {
                   2779:     $upwhere = $1;
                   2780:     $backurl = ".$backurl" if $2; # skip over Attic
                   2781:   }
3.144     scop     2782:
3.219     scop     2783:   my $isbin = $keywordsubstitution =~ /b/;
                   2784:   my $mimetype = getMimeType($filename, $isbin);
                   2785:
3.120     scop     2786:   print "<p>\n ";
3.271     scop     2787:   print &link($backicon, $backurl), " <b>Up to ",
3.120     scop     2788:     &clickablePath($upwhere, 1), "</b>\n</p>\n";
                   2789:   print "<p>\n ";
                   2790:   print &link('Request diff between arbitrary revisions', '#diff');
3.208     scop     2791:   print "\n</p>\n<hr />\n";
3.120     scop     2792:
                   2793:   print "<p>\n";
3.152     scop     2794:
3.219     scop     2795:   my $explain = $isbin ? ' (i.e.: CVS considers this a binary file)' : '';
3.208     scop     2796:   print "Keyword substitution: $keywordsubstitution$explain<br />\n";
3.217     scop     2797:   if ($curbranch) {
                   2798:     print "Default branch: ", ($revsym{$curbranch} || $curbranch);
                   2799:   } else {
                   2800:     print "No default branch";
                   2801:   }
3.208     scop     2802:   print "<br />\n";
3.120     scop     2803:
3.208     scop     2804:   print 'Current tag: ', htmlquote($input{only_with_tag}), "<br />\n"
3.153     scop     2805:     if $input{only_with_tag};
3.120     scop     2806:   print "</p>\n";
                   2807:
                   2808:   undef %nameprinted;
                   2809:
3.182     scop     2810:   for my $r (@revdisplayorder) {
3.208     scop     2811:     print "<hr />\n";
3.182     scop     2812:     my $sel = (defined($input{r1}) && $input{r1} eq $r);
                   2813:     print "<div class=\"diff-selected\">\n" if $sel;
3.219     scop     2814:     printLog($r, $mimetype, $isbin, 1, $sel);
3.182     scop     2815:     print "</div>\n" if $sel;
3.120     scop     2816:   }
                   2817:
3.144     scop     2818:   printf(<<EOF, $scriptwhere);
3.208     scop     2819: <hr />
                   2820: <form method="get" action="%s.diff" id="diff_select">
3.189     scop     2821: <fieldset>
                   2822: <legend>Diff request</legend>
3.144     scop     2823: <p>
                   2824:  <a name="diff">
3.189     scop     2825:   This form allows you to request diffs between any two revisions of a file.
3.144     scop     2826:   You may select a symbolic revision name using the selection box or you may
                   2827:   type in a numeric name using the type-in text box.
                   2828:  </a>
                   2829: </p>
                   2830: EOF
3.120     scop     2831:
                   2832:   foreach (@stickyvars) {
3.208     scop     2833:     printf("<input type=\"hidden\" name=\"%s\" value=\"%s\" />\n",
3.154     scop     2834:            $_, htmlquote($input{$_}))
3.194     scop     2835:       if (defined($input{$_}) &&
                   2836:           (!defined($DEFAULTVALUE{$_}) || $input{$_} ne $DEFAULTVALUE{$_}));
3.120     scop     2837:   }
3.144     scop     2838:
                   2839:   print <<EOF;
3.189     scop     2840: <table summary="Diff between arbitrary revisions">
3.144     scop     2841: <tr>
3.189     scop     2842: <td class="opt-label">
                   2843: <label for="r1" accesskey="1">Diffs between</label>
                   2844: </td>
                   2845: <td class="opt-value">
3.144     scop     2846: <select id="r1" name="r1">
3.208     scop     2847: <option value="text" selected="selected">Use Text Field</option>
3.144     scop     2848: EOF
                   2849:   print $sel, "</select>\n";
                   2850:
                   2851:   my $diffrev = defined($input{r1}) ?
                   2852:     $input{r1} : $revdisplayorder[$#revdisplayorder];
                   2853:
4.36      schwarze 2854:   printf(<<EOF, $diffrev);
                   2855: <input type="text" size="12" name="tr1" value="%s" onchange="this.form.r1.selectedIndex=0" />
3.144     scop     2856: </td>
3.189     scop     2857: <td></td>
                   2858: </tr>
                   2859: <tr>
                   2860: <td class="opt-label">
                   2861: <label for="r2" accesskey="2">and</label>
                   2862: </td>
                   2863: <td class="opt-value">
3.144     scop     2864: <select id="r2" name="r2">
3.208     scop     2865: <option value="text" selected="selected">Use Text Field</option>
3.144     scop     2866: EOF
                   2867:   print $sel, "</select>\n";
                   2868:
                   2869:   $diffrev = defined($input{r2}) ? $input{r2} : $revdisplayorder[0];
                   2870:
4.36      schwarze 2871:   printf(<<EOF, $diffrev, $scriptwhere);
                   2872: <input type="text" size="12" name="tr2" value="%s" onchange="this.form.r2.selectedIndex=0" />
3.144     scop     2873: </td>
3.208     scop     2874: <td><input type="submit" value="Get Diffs" accesskey="G" /></td>
3.144     scop     2875: </tr>
                   2876: </table>
3.189     scop     2877: </fieldset>
3.144     scop     2878: </form>
                   2879: <form method="get" action="%s">
3.189     scop     2880: <fieldset>
                   2881: <legend>Log view options</legend>
                   2882: <table summary="Log view options">
3.144     scop     2883: <tr>
3.189     scop     2884: <td class="opt-label">
                   2885: <label for="f" accesskey="D">Preferred diff type:</label>
                   2886: </td>
                   2887: <td class="opt-value">
3.144     scop     2888: EOF
4.17      schwarze 2889:   printDiffSelect();
3.144     scop     2890:   print <<EOF;
3.189     scop     2891: </td>
                   2892: <td></td>
3.144     scop     2893: </tr>
                   2894: EOF
3.120     scop     2895:
                   2896:   if (@branchnames) {
3.144     scop     2897:
4.17      schwarze 2898:     print <<EOF;
3.144     scop     2899: <tr>
3.189     scop     2900: <td class="opt-label">
3.188     scop     2901: <label for="only_with_tag" accesskey="B">View only branch:</label>
3.189     scop     2902: </td>
                   2903: <td class="opt-value">
                   2904: <a name="branch">
4.17      schwarze 2905: <select id="only_with_tag" name="only_with_tag">
3.144     scop     2906: EOF
3.120     scop     2907:
3.193     scop     2908:     my @tmp = ();
                   2909:     my $selfound = 0;
3.120     scop     2910:     foreach (reverse sort @branchnames) {
3.136     scop     2911:       my $selected =
3.254     scop     2912:         (defined($input{only_with_tag}) && $input{only_with_tag} eq $_);
3.193     scop     2913:       $selfound ||= $selected;
                   2914:       push(@tmp, sprintf('<option%s>%s</option>',
3.208     scop     2915:                          $selected ? ' selected="selected"' : '',
3.193     scop     2916:                          htmlquote($_)));
3.120     scop     2917:     }
3.193     scop     2918:     printf("<option value=\"\"%s>Show all branches</option>\n",
3.208     scop     2919:            $selfound ? '' : ' selected="selected"');
3.193     scop     2920:     print join("\n", @tmp);
                   2921:
3.144     scop     2922:     print <<EOF
                   2923: </select>
3.189     scop     2924: </a>
3.144     scop     2925: </td>
                   2926: <td></td>
                   2927: </tr>
                   2928: EOF
3.120     scop     2929:   }
                   2930:
3.144     scop     2931:   print <<EOF;
3.189     scop     2932: <tr>
                   2933: <td class="opt-label">
                   2934: <label for="logsort" accesskey="L">Sort log by:</label>
                   2935: </td>
                   2936: <td>
3.144     scop     2937: EOF
4.17      schwarze 2938:   printLogSortSelect();
3.144     scop     2939:   print <<EOF;
3.189     scop     2940: </td>
3.208     scop     2941: <td><input type="submit" value="Set" accesskey="S" /></td>
3.189     scop     2942: </tr>
3.144     scop     2943: </table>
                   2944: EOF
3.154     scop     2945:   foreach (@stickyvars) {
                   2946:     next if ($_ eq "f");
                   2947:     next if ($_ eq "only_with_tag");
                   2948:     next if ($_ eq "logsort");
3.296     scop     2949:     printf("<input type=\"hidden\" name=\"%s\" value=\"%s\" />\n",
                   2950:            $_, htmlquote($input{$_}))
3.154     scop     2951:       if (defined($input{$_})
3.194     scop     2952:           && (!defined($DEFAULTVALUE{$_}) || $input{$_} ne $DEFAULTVALUE{$_}));
3.154     scop     2953:   }
3.189     scop     2954:   print "</fieldset>\n</form>\n";
3.120     scop     2955:   html_footer();
                   2956: }
                   2957:
3.175     scop     2958:
3.120     scop     2959: sub flush_diff_rows($$$$)
                   2960: {
                   2961:   my ($leftColRef, $rightColRef, $leftRow, $rightRow) = @_;
                   2962:
3.175     scop     2963:   return unless defined($state);
3.120     scop     2964:
                   2965:   if ($state eq "PreChangeRemove") {    # we just got remove-lines before
3.133     scop     2966:     for (my $j = 0; $j < $leftRow; $j++) {
3.256     scop     2967:       printf(<<EOF, spacedHtmlText(@$leftColRef[$j]));
3.144     scop     2968: <tr>
3.260     scop     2969:  <td class="diff diff-removed">&nbsp;%s</td>
                   2970:  <td class="diff diff-empty">&nbsp;</td>
3.144     scop     2971: </tr>
                   2972: EOF
3.120     scop     2973:     }
                   2974:   } elsif ($state eq "PreChange") {     # state eq "PreChange"
                   2975:                                         # we got removes with subsequent adds
3.176     scop     2976:       for (my $j = 0; $j < $leftRow || $j < $rightRow; $j++) { # dump both cols
                   2977:         print "<tr>\n";
                   2978:         if ($j < $leftRow) {
3.260     scop     2979:           print '<td class="diff diff-changed">&nbsp;' .
3.176     scop     2980:             spacedHtmlText(@$leftColRef[$j]) . '</td>';
                   2981:         } else {
3.260     scop     2982:           print '<td class="diff diff-changed-missing">&nbsp;</td>';
3.176     scop     2983:         }
                   2984:         print "\n";
3.120     scop     2985:
3.176     scop     2986:         if ($j < $rightRow) {
3.260     scop     2987:           print '<td class="diff diff-changed">&nbsp;' .
3.176     scop     2988:             spacedHtmlText(@$rightColRef[$j]) . '</td>';
                   2989:         } else {
3.260     scop     2990:           print '<td class="diff diff-changed-missing">&nbsp;</td>';
3.176     scop     2991:         }
                   2992:         print "\n</tr>\n";
3.120     scop     2993:       }
                   2994:   }
3.1       knu      2995: }
                   2996:
3.175     scop     2997:
3.263     scop     2998: #
                   2999: # Generates "human readable", HTMLified diffs.
                   3000: #
3.144     scop     3001: sub human_readable_diff($$)
3.120     scop     3002: {
                   3003:   my ($fh, $rev) = @_;
3.144     scop     3004:
3.169     scop     3005:   (my $where_nd       = $where)       =~ s|\.diff$||;
                   3006:   (my $filename       = $where_nd)    =~ s|^.*/||;
3.262     scop     3007:   (my $pathname       = $where_nd)    =~ s|((?<=/)Attic/)?[^/]*$||;
3.169     scop     3008:   (my $scriptwhere_nd = $scriptwhere) =~ s|\.diff$||;
3.120     scop     3009:
3.133     scop     3010:   navigateHeader($scriptwhere_nd, $pathname, $filename, $rev, 'diff');
3.120     scop     3011:
3.178     scop     3012:   # Read header to pick up read revision and date, if possible.
                   3013:
                   3014:   my ($r1d, $r1r, $r2d, $r2r);
3.120     scop     3015:   while (<$fh>) {
                   3016:     ($r1d, $r1r) = /\t(.*)\t(.*)$/ if (/^--- /);
                   3017:     ($r2d, $r2r) = /\t(.*)\t(.*)$/ if (/^\+\+\+ /);
                   3018:     last if (/^\+\+\+ /);
                   3019:   }
                   3020:
3.178     scop     3021:   my ($rev1, $date1);
3.120     scop     3022:   if (defined($r1r) && $r1r =~ /^(\d+\.)+\d+$/) {
                   3023:     $rev1  = $r1r;
                   3024:     $date1 = $r1d;
                   3025:   }
3.178     scop     3026:   my ($rev2, $date2);
3.120     scop     3027:   if (defined($r2r) && $r2r =~ /^(\d+\.)+\d+$/) {
                   3028:     $rev2  = $r2r;
                   3029:     $date2 = $r2d;
                   3030:   }
3.292     scop     3031:   $rev1  = $input{r1}      unless defined($rev1);
                   3032:   $rev1  = $input{tr1}     if (defined($rev1) && $rev1 eq 'text');
3.178     scop     3033:   $rev1  = 'unknown-left'  unless defined($rev1);
3.292     scop     3034:   $rev2  = $input{r2}      unless defined($rev2);
                   3035:   $rev2  = $input{tr2}     if (defined($rev2) && $rev2 eq 'text');
3.178     scop     3036:   $rev2  = 'unknown-right' unless defined($rev2);
                   3037:   $date1 = defined($date1) ? ', ' . htmlquote($date1) : '';
                   3038:   $date2 = defined($date2) ? ', ' . htmlquote($date2) : '';
3.120     scop     3039:
3.281     scop     3040:   my $link = uri_escape($filename) . ($query ? "$query;" : '?');
3.210     scop     3041:
3.144     scop     3042:   # Using <table style=\"border: none\" here breaks NS 4.x badly...
3.210     scop     3043:   print <<EOF;
                   3044: <h3 style="text-align: center">Diff for /$where_nd between versions $rev1 and $rev2</h3>
                   3045: <table border="0" cellspacing="0" cellpadding="0" width="100%" summary="Diff output">
3.144     scop     3046: <tr style="background-color: #ffffff">
3.210     scop     3047: <th style="text-align: center; vertical-align: top" width="50%">
3.281     scop     3048: <a href="${link}rev=$rev1">version $rev1</a>$date1
3.178     scop     3049: </th>
3.210     scop     3050: <th style="text-align: center; vertical-align: top" width="50%">
3.281     scop     3051: <a href="${link}rev=$rev2">version $rev2</a>$date2
3.144     scop     3052: </th>
3.178     scop     3053: </tr>
3.144     scop     3054: EOF
3.120     scop     3055:
                   3056:   # Process diff text
                   3057:   # prefetch several lines
                   3058:   my @buf = head($fh);
3.144     scop     3059:   my %d = scan_directives(@buf);
3.120     scop     3060:
3.144     scop     3061:   my $leftRow  = 0;
                   3062:   my $rightRow = 0;
                   3063:   my ($difftxt, @rightCol, @leftCol, $oldline, $newline, $funname);
3.120     scop     3064:
3.281     scop     3065:   $link .= 'content-type=text%2Fx-cvsweb-markup;';
                   3066:   $link .= 'ln=1;' unless ($link =~ /\?.*\bln=1\b/);
3.210     scop     3067:
3.120     scop     3068:   while (@buf || !eof($fh)) {
                   3069:     $difftxt = @buf ? shift @buf : <$fh>;
                   3070:
                   3071:     if ($difftxt =~ /^@@/) {
                   3072:       ($oldline, $newline, $funname) =
                   3073:         $difftxt =~ /@@ \-([0-9]+).*\+([0-9]+).*@@(.*)/;
                   3074:       $funname = htmlquote($funname);
                   3075:       $funname =~ s/\s/&nbsp;/go;
3.182     scop     3076:       $funname &&= "&nbsp;<span style=\"font-size: smaller\">$funname</span>";
3.210     scop     3077:       my $ol = $oldline || 1;
                   3078:       my $nl = $newline || 1;
3.144     scop     3079:
3.210     scop     3080:       print <<EOF;
3.182     scop     3081: <tr>
3.210     scop     3082: <td width="50%" class="diff-heading">
3.281     scop     3083:  <b><a href="${link}rev=$rev1#l$ol">Line&nbsp;$oldline</a></b>$funname
3.182     scop     3084: </td>
3.210     scop     3085: <td width="50%" class="diff-heading">
3.281     scop     3086:  <b><a href="${link}rev=$rev2#l$nl">Line&nbsp;$newline</a></b>$funname
3.144     scop     3087: </td>
3.208     scop     3088: </tr>
3.144     scop     3089: EOF
                   3090:
3.120     scop     3091:       $state    = "dump";
                   3092:       $leftRow  = 0;
                   3093:       $rightRow = 0;
                   3094:     } else {
3.224     scop     3095:       my ($diffcode, $rest) = $difftxt =~ /^([-+ ])(.*)/;
                   3096:       $diffcode = '' unless defined($diffcode);
3.176     scop     3097:       $_ = $rest;
3.120     scop     3098:
                   3099:       #########
                   3100:       # little state machine to parse unified-diff output (Hen, zeller@think.de)
                   3101:       # in order to get some nice 'ediff'-mode output
                   3102:       # states:
                   3103:       #  "dump"             - just dump the value
                   3104:       #  "PreChangeRemove"  - we began with '-' .. so this could be the start of a 'change' area or just remove
                   3105:       #  "PreChange"        - okey, we got several '-' lines and moved to '+' lines -> this is a change block
                   3106:       ##########
                   3107:
                   3108:       if ($diffcode eq '+') {
                   3109:         if ($state eq "dump")
                   3110:         {    # 'change' never begins with '+': just dump out value
3.254     scop     3111:           $_ = spacedHtmlText($rest, $d{tabstop});
3.144     scop     3112:           printf(<<EOF, $_);
                   3113: <tr>
3.260     scop     3114:  <td class="diff diff-empty">&nbsp;</td>
                   3115:  <td class="diff diff-added">&nbsp;%s</td>
3.144     scop     3116: </tr>
                   3117: EOF
3.120     scop     3118:         } else {    # we got minus before
                   3119:           $state = "PreChange";
                   3120:           $rightCol[$rightRow++] = $_;
                   3121:         }
                   3122:       } elsif ($diffcode eq '-') {
                   3123:         $state = "PreChangeRemove";
                   3124:         $leftCol[$leftRow++] = $_;
                   3125:       } else {    # empty diffcode
                   3126:         flush_diff_rows \@leftCol, \@rightCol, $leftRow, $rightRow;
3.254     scop     3127:         $_ = spacedHtmlText($rest, $d{tabstop});
3.147     scop     3128:         printf(<<EOF, $_, $_);
3.144     scop     3129: <tr>
3.260     scop     3130:  <td class="diff diff-same">&nbsp;%s</td>
                   3131:  <td class="diff diff-same">&nbsp;%s</td>
3.144     scop     3132: </tr>
                   3133: EOF
3.120     scop     3134:         $state    = "dump";
                   3135:         $leftRow  = 0;
                   3136:         $rightRow = 0;
                   3137:       }
                   3138:     }
                   3139:   }
                   3140:   close($fh);
                   3141:
                   3142:   flush_diff_rows \@leftCol, \@rightCol, $leftRow, $rightRow;
                   3143:
                   3144:   # state is empty if we didn't have any change
                   3145:   if (!$state) {
3.144     scop     3146:     print <<EOF;
                   3147: <tr>
                   3148:  <td colspan="2">&nbsp;</td>
                   3149: </tr>
3.260     scop     3150: <tr class="diff diff-empty">
3.144     scop     3151:  <td colspan="2" align="center"><b>- No viewable change -</b></td>
                   3152: </tr>
                   3153: EOF
3.120     scop     3154:   }
                   3155:
3.182     scop     3156:   printf(<<EOF, $scriptwhere);
3.144     scop     3157: </table>
3.208     scop     3158: <hr style="width: 100%%" />
3.144     scop     3159: <form method="get" action="%s">
3.182     scop     3160: <div style="float: left">
3.208     scop     3161: <label for="f">Diff format:<br />
3.144     scop     3162: EOF
3.168     scop     3163:   printDiffSelectStickyVars();
4.17      schwarze 3164:   printDiffSelect();
3.182     scop     3165:   printf(<<EOF, $rev1, $rev2);
3.179     scop     3166: </label>
3.208     scop     3167: <input type="submit" value="Show" />
3.182     scop     3168: </div>
                   3169: <table style="float: right; border: thin outset" cellspacing="0" cellpadding="1" title="Legend" summary="Legend">
                   3170:  <tr>
3.260     scop     3171:   <td align="center" class="diff diff-removed">Removed from v.%s</td>
                   3172:   <td class="diff diff-empty">&nbsp;</td>
                   3173:  </tr><tr class="diff diff-changed">
3.182     scop     3174:   <td align="center" colspan="2">changed lines</td>
                   3175:  </tr><tr>
3.260     scop     3176:   <td class="diff diff-empty">&nbsp;</td>
                   3177:   <td align="center" class="diff diff-added">Added in v.%s</td>
3.182     scop     3178:  </tr>
3.144     scop     3179: </table>
                   3180: </form>
3.208     scop     3181: <br clear="all" />
3.144     scop     3182: EOF
3.167     scop     3183: }
                   3184:
3.120     scop     3185:
3.271     scop     3186: #
                   3187: # The passed in $path and $filename should not be URI escaped, and $swhere
                   3188: # *should* be.
                   3189: #
3.163     scop     3190: sub navigateHeader($$$$$;$)
3.120     scop     3191: {
3.163     scop     3192:   my ($swhere, $path, $filename, $rev, $title, $moddate) = @_;
3.120     scop     3193:   $swhere = "" if ($swhere eq $scriptwhere);
3.271     scop     3194:   $swhere = './' . uri_escape($filename) if ($swhere eq "");
3.120     scop     3195:
3.136     scop     3196:   my $qfile = htmlquote($filename);
                   3197:   my $qpath = htmlquote($path);
3.274     scop     3198:   my $trev  = $rev ? " - " . htmlquote($rev) : '';
3.100     knu      3199:
3.298     simon    3200:   http_header('text/html', $moddate);
3.133     scop     3201:
3.120     scop     3202:   print <<EOF;
3.100     knu      3203: $HTML_DOCTYPE
3.89      knu      3204: <html>
                   3205: <head>
3.170     scop     3206: <title>$qpath$qfile - $title$trev</title>
3.144     scop     3207: $HTML_META$CSS</head>
3.129     scop     3208: <body class="src">
3.265     scop     3209: <table class="navigate-header" width="100%" summary="Navigation">
3.184     scop     3210:  <tr>
                   3211:   <td>
3.64      knu      3212: EOF
                   3213:
3.274     scop     3214:   my $frag = '';
                   3215:   if ($rev) {
                   3216:     $frag  = '#';
                   3217:     $frag .= 'rev' if ($rev =~ /\./);  # Normal revision: prefix with "rev".
                   3218:     $frag .= $rev;                     # Append revision/branch/tag.
                   3219:   }
                   3220:   my $backurl = "$swhere$query$frag";
                   3221:
                   3222:   print &link($backicon, $backurl);
                   3223:   printf '<b>Return to %s CVS log', &link($qfile, $backurl);
3.120     scop     3224:   print "</b> $fileicon</td>";
                   3225:
3.144     scop     3226:   printf(<<EOF, $diricon, &clickablePath($path, 1));
3.182     scop     3227:   <td style="text-align: right">%s <b>Up to %s</b></td>
3.144     scop     3228:  </tr>
                   3229: </table>
                   3230: EOF
3.120     scop     3231: }
                   3232:
3.175     scop     3233:
3.120     scop     3234: sub plural_write($$)
                   3235: {
                   3236:   my ($num, $text) = @_;
                   3237:   if ($num != 1) {
                   3238:     $text .= "s";
                   3239:   }
                   3240:
                   3241:   if ($num > 0) {
                   3242:     return join (' ', $num, $text);
                   3243:   } else {
                   3244:     return "";
                   3245:   }
3.1       knu      3246: }
                   3247:
3.175     scop     3248:
3.1       knu      3249: ##
                   3250: # print readable timestamp in terms of
                   3251: # '..time ago'
                   3252: # H. Zeller <zeller@think.de>
                   3253: ##
3.120     scop     3254: sub readableTime($$)
                   3255: {
                   3256:   my ($secs, $long) = @_;
                   3257:
3.175     scop     3258:   # This function works correctly for time >= 2 seconds.
                   3259:   return 'very little time' if ($secs < 2);
3.120     scop     3260:
                   3261:   my %desc = (
3.133     scop     3262:               1        => 'second',
                   3263:               60       => 'minute',
                   3264:               3600     => 'hour',
                   3265:               86400    => 'day',
                   3266:               604800   => 'week',
                   3267:               2628000  => 'month',
                   3268:               31536000 => 'year'
                   3269:              );
                   3270:
3.120     scop     3271:   my @breaks = sort { $a <=> $b } keys %desc;
3.133     scop     3272:   my $i = 0;
3.120     scop     3273:
                   3274:   while ($i <= $#breaks && $secs >= 2 * $breaks[$i]) {
                   3275:     $i++;
                   3276:   }
                   3277:   $i--;
3.133     scop     3278:   my $break  = $breaks[$i];
                   3279:   my $retval = plural_write(int($secs / $break), $desc{$break});
3.120     scop     3280:
                   3281:   if ($long == 1 && $i > 0) {
                   3282:     my $rest = $secs % $break;
                   3283:     $i--;
                   3284:     $break = $breaks[$i];
                   3285:     my $resttime = plural_write(int($rest / $break), $desc{$break});
                   3286:     if ($resttime) {
                   3287:       $retval .= ", $resttime";
                   3288:     }
                   3289:   }
3.1       knu      3290:
3.120     scop     3291:   return $retval;
3.1       knu      3292: }
                   3293:
3.175     scop     3294:
3.1       knu      3295: #
3.263     scop     3296: # Returns a htmlified path where each directory is a link for faster
                   3297: # navigation.  $clickLast controls whether the basename
3.271     scop     3298: # (last directory/file) is a link as well.  The passed in $pathname should
                   3299: # *not* be URI escaped.
3.263     scop     3300: #
3.120     scop     3301: sub clickablePath($$)
                   3302: {
                   3303:   my ($pathname, $clickLast) = @_;
                   3304:
3.154     scop     3305:   my $root = '[' . htmlquote($CVSROOTdescr{$cvstree} || $cvstree) . ']';
                   3306:
3.144     scop     3307:   # This should never happen (see chooseCVSRoot()), but let's be sure...
3.154     scop     3308:   return $root if ($pathname eq '/');
3.120     scop     3309:
3.144     scop     3310:   my $retval =
3.154     scop     3311:     ' ' . &link($root, sprintf('%s/%s#dirlist', $scriptname, $query));
3.144     scop     3312:   my $wherepath = '';
                   3313:   my ($lastslash) = $pathname =~ m|/$|;
                   3314:
3.261     scop     3315:   foreach (split(m|/|, $pathname)) {
3.144     scop     3316:     $retval .= ' / ';
                   3317:     $wherepath .= "/$_";
                   3318:     my $last = "$wherepath/" eq "/$pathname" || $wherepath eq "/$pathname";
                   3319:
                   3320:     if ($clickLast || !$last) {
                   3321:       $retval .= &link(htmlquote($_),
                   3322:                        join ('',
3.271     scop     3323:                              $scriptname, uri_escape_path($wherepath),
3.144     scop     3324:                              (!$last || $lastslash ? '/' : ''), $query,
                   3325:                              (!$last || $lastslash ? "#dirlist" : "")));
                   3326:     } else {    # do not make a link to the current dir
                   3327:       $retval .= htmlquote($_);
3.120     scop     3328:     }
                   3329:   }
                   3330:   return $retval;
                   3331: }
                   3332:
3.144     scop     3333:
3.120     scop     3334: sub chooseCVSRoot()
                   3335: {
3.268     scop     3336:   print "<form method=\"get\" action=\"$scriptwhere\">\n<p>\n";
3.120     scop     3337:   if (2 <= @CVSROOT) {
3.133     scop     3338:     foreach my $k (keys %input) {
3.208     scop     3339:       printf("<input type=\"hidden\" name=\"%s\" value=\"%s\" />\n",
3.154     scop     3340:              htmlquote($k), htmlquote($input{$k}))
                   3341:         if ($input{$k} && $k ne 'cvsroot');
3.120     scop     3342:     }
                   3343:
4.17      schwarze 3344:     print <<EOF;
3.208     scop     3345: <label for="cvsroot" accesskey="C">CVS Root:
4.17      schwarze 3346: <select id="cvsroot" name="cvsroot">
3.144     scop     3347: EOF
3.120     scop     3348:
3.133     scop     3349:     foreach my $k (@CVSROOT) {
3.136     scop     3350:       printf("<option value=\"%s\"%s>%s</option>\n",
                   3351:              htmlquote($k),
3.208     scop     3352:              ($k eq $cvstree) ? ' selected="selected"' : '',
3.136     scop     3353:              htmlquote($CVSROOTdescr{$k} || $k));
3.120     scop     3354:     }
3.208     scop     3355:     print '</select></label>';
3.120     scop     3356:   } else {
                   3357:
                   3358:     # no choice -- but we need the form to select module/path,
                   3359:     # at least for Netscape
3.208     scop     3360:     printf "CVS Root: <b>[%s]</b>",
3.154     scop     3361:       htmlquote($CVSROOTdescr{$cvstree} || $cvstree);
3.120     scop     3362:   }
                   3363:
3.144     scop     3364:   print <<EOF;
                   3365: <label for="mpath" accesskey="M">
                   3366: Module path or alias:
3.208     scop     3367: <input type="text" id="mpath" name="path" value="" size="15" />
3.144     scop     3368: </label>
3.208     scop     3369: <input type="submit" value="Go" accesskey="O" />
                   3370: </p>
                   3371: </form>
3.144     scop     3372: EOF
3.120     scop     3373: }
                   3374:
3.175     scop     3375:
3.120     scop     3376: sub fileSortCmp()
                   3377: {
3.175     scop     3378:   (my $af = $a) =~ s/,v$//;
                   3379:   (my $bf = $b) =~ s/,v$//;
3.120     scop     3380:   my ($rev1, $date1, $log1, $author1, $filename1) = @{$fileinfo{$af}}
                   3381:     if (defined($fileinfo{$af}));
                   3382:   my ($rev2, $date2, $log2, $author2, $filename2) = @{$fileinfo{$bf}}
                   3383:     if (defined($fileinfo{$bf}));
                   3384:
3.175     scop     3385:   my $comp = 0;
3.140     scop     3386:   if (defined($filename1) && defined($filename2) &&
                   3387:       $af eq $filename1   && $bf eq $filename2)
3.120     scop     3388:   {
                   3389:
                   3390:     # Two files
3.140     scop     3391:     $comp = -revcmp($rev1, $rev2)             if ($byrev  && $rev1  && $rev2);
                   3392:     $comp = ($date2   <=> $date1)             if ($bydate && $date1 && $date2);
                   3393:     if ($input{ignorecase}) {
                   3394:       $comp = (uc($log1)    cmp uc($log2))    if ($bylog && $log1 && $log2);
                   3395:       $comp = (uc($author1) cmp uc($author2)) if ($byauthor &&
                   3396:                                                   $author1 && $author2);
                   3397:     } else {
                   3398:       $comp = ($log1    cmp $log2)            if ($bylog && $log1 && $log2);
                   3399:       $comp = ($author1 cmp $author2)         if ($byauthor &&
                   3400:                                                   $author1 && $author2);
                   3401:     }
3.120     scop     3402:   }
                   3403:
                   3404:   if ($comp == 0) {
                   3405:
                   3406:     # Directories first, then files under version control,
                   3407:     # then other, "rogue" files.
                   3408:     # Sort by filename if no other criteria available.
                   3409:
                   3410:     my $ad = (
                   3411:       (-d "$fullname/$a")
                   3412:       ? 'D'
                   3413:       : (defined($fileinfo{$af}) ? 'F' : 'R')
                   3414:     );
                   3415:     my $bd = (
                   3416:       (-d "$fullname/$b")
                   3417:       ? 'D'
                   3418:       : (defined($fileinfo{$bf}) ? 'F' : 'R')
                   3419:     );
3.175     scop     3420:     (my $c = $a) =~ s|.*/||;
                   3421:     (my $d = $b) =~ s|.*/||;
3.144     scop     3422:
                   3423:     my ($l, $r) = ("$ad$c", "$bd$d");
                   3424:     $comp = $input{ignorecase} ? (uc($l) cmp uc($r)) : ($l cmp $r);
                   3425:
                   3426:     # Parent dir is always first, then Attic.
                   3427:     if ($comp != 0) {
                   3428:       if ($l eq 'D..') {
3.149     scop     3429:         $comp = -1;
3.144     scop     3430:       } elsif ($r eq 'D..') {
3.149     scop     3431:         $comp = 1;
3.144     scop     3432:       } elsif ($l eq 'DAttic') {
3.149     scop     3433:         $comp = -1;
3.144     scop     3434:       } elsif ($r eq 'DAttic') {
3.149     scop     3435:         $comp = 1;
3.144     scop     3436:       }
                   3437:     }
3.120     scop     3438:   }
                   3439:   return $comp;
3.1       knu      3440: }
                   3441:
3.220     scop     3442: #
                   3443: # Returns a URL to download the selected revision.
3.271     scop     3444: # Expects the passed in URL to be URI escaped, relative, and without a query
                   3445: # string.
3.220     scop     3446: #
3.120     scop     3447: sub download_url($$;$)
                   3448: {
                   3449:   my ($url, $revision, $mimetype) = @_;
3.252     scop     3450:   my @dots = $revision =~ /\./g;
                   3451:   $revision =~ s/\b0\.(?=\d+$)// if (scalar(@dots) & 1);
3.1       knu      3452:
3.222     scop     3453:   if (!defined($mimetype) || $mimetype !~ CVSWEBMARKUP) {
3.120     scop     3454:     my $path = $where;
                   3455:     $path =~ s|[^/]+$||;
3.261     scop     3456:     $url = "$scriptname/$CheckoutMagic/$path$url";
3.120     scop     3457:   }
3.219     scop     3458:   $url .= '?rev=' . uri_escape($revision);
                   3459:   $url .= ';content-type=' . uri_escape($mimetype) if $mimetype;
3.67      knu      3460:
3.175     scop     3461:   return $url;
3.1       knu      3462: }
                   3463:
3.175     scop     3464: #
3.220     scop     3465: # Returns a link to download the selected revision.
3.271     scop     3466: # Expects the passed in URL to be URI escaped, relative,
                   3467: # and without a query string.
3.175     scop     3468: #
3.120     scop     3469: sub download_link($$$;$)
                   3470: {
                   3471:   my ($url, $revision, $textlink, $mimetype) = @_;
3.220     scop     3472:   return sprintf('<a href="%s" class="download-link">%s</a>',
3.271     scop     3473:                  download_url($url, $revision, $mimetype) . $barequery,
                   3474:                  htmlquote($textlink));
3.218     scop     3475: }
3.120     scop     3476:
3.219     scop     3477: #
                   3478: # Returns a URL to display the selected revision.
3.263     scop     3479: # Expects the passed in URL to be URI escaped, and without a query string.
3.219     scop     3480: #
                   3481: sub display_url($$;$)
                   3482: {
                   3483:   my ($url, $revision, $mimetype) = @_;
                   3484:   $url .= '?rev=' . uri_escape($revision);
                   3485:   $url .= ';content-type=' . uri_escape($mimetype) if $mimetype;
                   3486:   return $url;
                   3487: }
                   3488:
                   3489: #
                   3490: # Returns a link to display the selected revision.
3.263     scop     3491: # Expects the passed in URL to be URI escaped, and without a query string.
3.219     scop     3492: #
                   3493: sub display_link($$;$$)
                   3494: {
                   3495:   my ($url, $revision, $textlink, $mtype) = @_;
                   3496:   $textlink = $revision unless defined($textlink);
                   3497:   return sprintf('<a href="%s" class="display-link">%s</a>',
3.271     scop     3498:                  display_url($url, $revision, $mtype) . $barequery,
3.219     scop     3499:                  htmlquote($textlink));
3.1       knu      3500: }
                   3501:
                   3502: # Returns a Query string with the
                   3503: # specified parameter toggled
3.140     scop     3504: sub toggleQuery($;$)
3.120     scop     3505: {
                   3506:   my ($toggle, $value) = @_;
3.133     scop     3507:
                   3508:   my %vars = %input;
3.120     scop     3509:
                   3510:   if (defined($value)) {
                   3511:     $vars{$toggle} = $value;
                   3512:   } else {
                   3513:     $vars{$toggle} = $vars{$toggle} ? 0 : 1;
                   3514:   }
                   3515:
                   3516:   # Build a new query of non-default paramenters
3.133     scop     3517:   my $newquery = "";
                   3518:   foreach my $var (@stickyvars) {
3.120     scop     3519:     my ($value)   = defined($vars{$var})         ? $vars{$var}         : "";
                   3520:     my ($default) = defined($DEFAULTVALUE{$var}) ? $DEFAULTVALUE{$var} : "";
                   3521:
                   3522:     if ($value ne $default) {
3.203     scop     3523:       $newquery .= ';' if ($newquery ne "");
3.206     scop     3524:       $newquery .= uri_escape($var) . '=' . uri_escape($value);
3.120     scop     3525:     }
                   3526:   }
                   3527:
                   3528:   if ($newquery) {
                   3529:     return '?' . $newquery;
                   3530:   }
                   3531:   return "";
                   3532: }
                   3533:
                   3534: sub htmlquote($)
                   3535: {
                   3536:   local ($_) = @_;
                   3537:   # Special Characters; RFC 1866
                   3538:   s/&/&amp;/g;
                   3539:   s/\"/&quot;/g;
4.7       schwarze 3540:   s/"/&quot;/g;
3.120     scop     3541:   s/</&lt;/g;
                   3542:   s/>/&gt;/g;
3.175     scop     3543:   return $_;
3.120     scop     3544: }
                   3545:
                   3546: sub htmlunquote($)
                   3547: {
                   3548:   local ($_) = @_;
                   3549:   # Special Characters; RFC 1866
                   3550:   s/&quot;/\"/g;
                   3551:   s/&lt;/</g;
                   3552:   s/&gt;/>/g;
                   3553:   s/&amp;/&/g;
3.175     scop     3554:   return $_;
3.120     scop     3555: }
                   3556:
3.271     scop     3557: sub uri_escape_path($)
3.120     scop     3558: {
3.271     scop     3559:   return join('/', map(uri_escape($_), split(m|/+|, shift, -1)));
3.120     scop     3560: }
                   3561:
3.163     scop     3562: sub http_header(;$$)
3.120     scop     3563: {
3.163     scop     3564:   my ($content_type, $moddate) = @_;
                   3565:   $content_type ||= 'text/html';
4.38    ! schwarze 3566:   $content_type .= '; charset="UTF-8"' if $content_type =~ /^text\//;
3.120     scop     3567:
3.185     scop     3568:   # Note that in the following, we explicitly join() and concatenate the
                   3569:   # headers instead of printing them as an array.  This is because some
                   3570:   # systems, eg. early versions of mod_perl 2 don't quite get it if the
                   3571:   # last \r\n\r\n isn't included in the last "payload" header print().
                   3572:
                   3573:   my @headers = ();
                   3574:   # TODO: ctime(3) from scalar gmtime() isn't HTTP compliant, see HTTP::Date.
                   3575:   push(@headers, 'Last-Modified: ' . scalar gmtime($moddate) . ' GMT')
                   3576:     if $moddate;
                   3577:   push(@headers, 'Content-Type: ' . $content_type);
4.10      schwarze 3578:   push(@headers, "Content-Security-Policy: default-src 'none'; " .
                   3579:     "img-src 'self'; style-src 'unsafe-inline'");
3.120     scop     3580:
                   3581:   if ($allow_compress && $maycompress) {
3.299     simon    3582:       push(@headers, 'Content-Encoding: gzip');
3.185     scop     3583:       push(@headers, 'Vary: Accept-Encoding');     # RFC 2616, 14.44
                   3584:       print join("\r\n", @headers) . "\r\n\r\n";
                   3585:
3.120     scop     3586:       $| = 1;
3.185     scop     3587:       $| = 0;                                      # Flush header output.
3.120     scop     3588:
4.13      schwarze 3589:       tie(*GZIP, __PACKAGE__, \*STDOUT);
3.120     scop     3590:       select(GZIP);
                   3591:       $gzip_open = 1;
                   3592:   } else {
3.185     scop     3593:     print join("\r\n", @headers) . "\r\n\r\n";
3.120     scop     3594:   }
                   3595: }
                   3596:
3.131     scop     3597:
3.163     scop     3598: sub html_header($;$)
3.120     scop     3599: {
3.163     scop     3600:   my ($title, $moddate) = @_;
3.288     scop     3601:   $title  = htmlquote($title);
                   3602:   my $l   = $logo || '';
                   3603:   my $css = $CSS || '';
3.163     scop     3604:   http_header('text/html', $moddate);
3.120     scop     3605:   print <<EOH;
3.100     knu      3606: $HTML_DOCTYPE
3.1       knu      3607: <html>
3.40      knu      3608: <head>
3.134     scop     3609: <title>$title</title>
3.288     scop     3610: $HTML_META$css</head>
3.129     scop     3611: <body>
3.182     scop     3612: $l <h1>$title</h1>
3.1       knu      3613: EOH
                   3614: }
                   3615:
3.120     scop     3616: sub html_footer()
                   3617: {
3.208     scop     3618:   print "<hr />\n<address>$address</address>\n" if $address;
3.127     scop     3619:   print "</body>\n</html>\n";
3.1       knu      3620: }
                   3621:
3.120     scop     3622: sub link_tags($)
                   3623: {
                   3624:   my ($tags) = @_;
                   3625:
3.261     scop     3626:   (my $filename = $where) =~ s|^.*/||;
3.271     scop     3627:   my $fileurl = './' . uri_escape($filename);
3.120     scop     3628:
3.261     scop     3629:   my $ret = "";
                   3630:   foreach my $sym (split(", ", $tags)) {
3.120     scop     3631:     $ret .= ",\n" if ($ret ne "");
3.136     scop     3632:     $ret .= &link(htmlquote($sym),
                   3633:                   $fileurl . toggleQuery('only_with_tag', $sym));
3.120     scop     3634:   }
3.219     scop     3635:   return $ret;
3.1       knu      3636: }
                   3637:
3.175     scop     3638:
3.1       knu      3639: #
3.233     scop     3640: # See if a file/dir is listed in the config file's @ForbiddenFiles list.
                   3641: # Takes a full file system path or one relative to $cvsroot, and strips the
                   3642: # trailing ",v" if present, then compares.  Returns 1 if forbidden, else 0.
3.221     scop     3643: #
3.233     scop     3644: sub forbidden($)
3.120     scop     3645: {
3.233     scop     3646:   (my $path = canonpath(shift)) =~ s/,v$//;
                   3647:   $path =~ s|^$cvsroot/+||;
3.175     scop     3648:   for my $forbidden_re (@ForbiddenFiles) {
                   3649:     return 1 if ($path =~ $forbidden_re);
3.120     scop     3650:   }
                   3651:   return 0;
3.174     scop     3652: }
                   3653:
                   3654:
                   3655: #
                   3656: # Starts a process using IPC::Run.  All arguments are passed to
                   3657: # IPC::Run::start() as-is.  Returns an array ($harness, $error) where
                   3658: # $harness is from IPC::Run if start() succeeds, undef otherwise.  In case
3.184     scop     3659: # of an error, $error contains the error message.
3.174     scop     3660: #
3.191     scop     3661: sub startproc(@)
3.174     scop     3662: {
3.215     scop     3663:   my $h = my $err = undef;
3.174     scop     3664:   eval {
                   3665:     local $SIG{__DIE__};
3.215     scop     3666:     $h = IPC::Run::start(@_) or die("return code: $?");
3.174     scop     3667:   };
3.215     scop     3668:   if ($@) {
3.229     scop     3669:     $h->finish() if $h;
3.215     scop     3670:     $h = undef;
                   3671:     $err = "'@{$_[0]}' failed: $@";
                   3672:   }
3.174     scop     3673:   return ($h, $err);
3.215     scop     3674: }
                   3675:
                   3676: #
                   3677: # Runs a process using IPC::Run.  All arguments are passed to
                   3678: # IPC::Run::run() as-is.  Returns an array ($exitcode, $errormsg).
                   3679: #
                   3680: sub runproc(@)
                   3681: {
                   3682:   eval {
                   3683:     local $SIG{__DIE__};
                   3684:     IPC::Run::run(@_);
                   3685:   };
                   3686:   my $exitcode = $? >> 8;
                   3687:   my $errormsg  = undef;
                   3688:   if ($@) {
                   3689:     $exitcode ||= -1;
                   3690:     $errormsg = "'@{$_[0]}' failed: $@";
                   3691:   }
                   3692:   return ($exitcode, $errormsg);
3.225     scop     3693: }
                   3694:
                   3695: #
3.173     scop     3696: # Close the GZIP handle, and remove the tie.
3.225     scop     3697: #
3.120     scop     3698: sub gzipclose
                   3699: {
                   3700:   if ($gzip_open) {
                   3701:     select(STDOUT);
                   3702:     close(GZIP);
                   3703:     untie *GZIP;
                   3704:     $gzip_open = 0;
                   3705:   }
3.23      knu      3706: }
                   3707:
                   3708: # implement a gzipped file handle via the Compress:Zlib compression
                   3709: # library.
                   3710:
                   3711: sub MAGIC1() { 0x1f }
                   3712: sub MAGIC2() { 0x8b }
3.80      knu      3713: sub OSCODE() { 3 }
3.23      knu      3714:
3.120     scop     3715: sub TIEHANDLE
                   3716: {
                   3717:   my ($class, $out) = @_;
                   3718:   my ($d) = Compress::Zlib::deflateInit(
                   3719:     -Level      => Compress::Zlib::Z_BEST_COMPRESSION(),
                   3720:     -WindowBits => -Compress::Zlib::MAX_WBITS()
                   3721:     )
                   3722:     or return undef;
                   3723:   my ($o) = { handle => $out,
                   3724:               dh     => $d,
                   3725:               crc    => 0,
                   3726:               len    => 0,
                   3727:             };
4.12      schwarze 3728:   my ($header) = pack("C10",
3.120     scop     3729:                       MAGIC1, MAGIC2, Compress::Zlib::Z_DEFLATED(),
                   3730:                       0, 0, 0, 0, 0, 0, OSCODE);
                   3731:   print {$o->{handle}} $header;
                   3732:   return bless($o, $class);
                   3733: }
                   3734:
                   3735: sub PRINT
                   3736: {
                   3737:   my ($o)   = shift;
3.164     scop     3738:   my ($buf) = join (defined($,) ? $, : "", @_);
3.120     scop     3739:   my ($len) = length($buf);
                   3740:   my ($compressed, $status) = $o->{dh}->deflate($buf);
                   3741:   print {$o->{handle}} $compressed if defined($compressed);
                   3742:   $o->{crc} = Compress::Zlib::crc32($buf, $o->{crc});
                   3743:   $o->{len} += $len;
                   3744:   return $len;
                   3745: }
                   3746:
                   3747: sub PRINTF
                   3748: {
                   3749:   my ($o)   = shift;
                   3750:   my ($fmt) = shift;
                   3751:   my ($buf) = sprintf($fmt, @_);
                   3752:   my ($len) = length($buf);
                   3753:   my ($compressed, $status) = $o->{dh}->deflate($buf);
                   3754:   print {$o->{handle}} $compressed if defined($compressed);
                   3755:   $o->{crc} = Compress::Zlib::crc32($buf, $o->{crc});
                   3756:   $o->{len} += $len;
                   3757:   return $len;
                   3758: }
                   3759:
                   3760: sub WRITE
                   3761: {
                   3762:   my ($o, $buf, $len, $off) = @_;
                   3763:   my ($compressed, $status) = $o->{dh}->deflate(substr($buf, 0, $len));
                   3764:   print {$o->{handle}} $compressed if defined($compressed);
                   3765:   $o->{crc} = Compress::Zlib::crc32(substr($buf, 0, $len), $o->{crc});
                   3766:   $o->{len} += $len;
                   3767:   return $len;
                   3768: }
                   3769:
                   3770: sub CLOSE
                   3771: {
                   3772:   my ($o) = @_;
                   3773:   return if !defined($o->{dh});
                   3774:   my ($buf) = $o->{dh}->flush();
                   3775:   $buf .= pack("V V", $o->{crc}, $o->{len});
                   3776:   print {$o->{handle}} $buf;
                   3777:   undef $o->{dh};
                   3778: }
                   3779:
                   3780: sub DESTROY
                   3781: {
                   3782:   my ($o) = @_;
                   3783:   CLOSE($o);
1.1       jfieber  3784: }
3.149     scop     3785:
                   3786: # Local variables:
                   3787: # indent-tabs-mode: nil
                   3788: # cperl-indent-level: 2
                   3789: # End:

CVSweb