Code

gitweb: Link to tree instead of snapshot in shortlog
[git.git] / gitweb / gitweb.perl
1 #!/usr/bin/perl
3 # gitweb - simple web interface to track changes in git repositories
4 #
5 # (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>
6 # (C) 2005, Christian Gierke
7 #
8 # This program is licensed under the GPLv2
10 use strict;
11 use warnings;
12 use CGI qw(:standard :escapeHTML -nosticky);
13 use CGI::Util qw(unescape);
14 use CGI::Carp qw(fatalsToBrowser);
15 use Encode;
16 use Fcntl ':mode';
17 use File::Find qw();
18 use File::Basename qw(basename);
19 binmode STDOUT, ':utf8';
21 our $cgi = new CGI;
22 our $version = "++GIT_VERSION++";
23 our $my_url = $cgi->url();
24 our $my_uri = $cgi->url(-absolute => 1);
26 # core git executable to use
27 # this can just be "git" if your webserver has a sensible PATH
28 our $GIT = "++GIT_BINDIR++/git";
30 # absolute fs-path which will be prepended to the project path
31 #our $projectroot = "/pub/scm";
32 our $projectroot = "++GITWEB_PROJECTROOT++";
34 # target of the home link on top of all pages
35 our $home_link = $my_uri || "/";
37 # string of the home link on top of all pages
38 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
40 # name of your site or organization to appear in page titles
41 # replace this with something more descriptive for clearer bookmarks
42 our $site_name = "++GITWEB_SITENAME++" || $ENV{'SERVER_NAME'} || "Untitled";
44 # html text to include at home page
45 our $home_text = "++GITWEB_HOMETEXT++";
47 # URI of default stylesheet
48 our $stylesheet = "++GITWEB_CSS++";
49 # URI of GIT logo
50 our $logo = "++GITWEB_LOGO++";
51 # URI of GIT favicon, assumed to be image/png type
52 our $favicon = "++GITWEB_FAVICON++";
54 # source of projects list
55 our $projects_list = "++GITWEB_LIST++";
57 # show repository only if this file exists
58 # (only effective if this variable evaluates to true)
59 our $export_ok = "++GITWEB_EXPORT_OK++";
61 # only allow viewing of repositories also shown on the overview page
62 our $strict_export = "++GITWEB_STRICT_EXPORT++";
64 # list of git base URLs used for URL to where fetch project from,
65 # i.e. full URL is "$git_base_url/$project"
66 our @git_base_url_list = ("++GITWEB_BASE_URL++");
68 # default blob_plain mimetype and default charset for text/plain blob
69 our $default_blob_plain_mimetype = 'text/plain';
70 our $default_text_plain_charset  = undef;
72 # file to use for guessing MIME types before trying /etc/mime.types
73 # (relative to the current git repository)
74 our $mimetypes_file = undef;
76 # You define site-wide feature defaults here; override them with
77 # $GITWEB_CONFIG as necessary.
78 our %feature = (
79         # feature => {
80         #       'sub' => feature-sub (subroutine),
81         #       'override' => allow-override (boolean),
82         #       'default' => [ default options...] (array reference)}
83         #
84         # if feature is overridable (it means that allow-override has true value,
85         # then feature-sub will be called with default options as parameters;
86         # return value of feature-sub indicates if to enable specified feature
87         #
88         # use gitweb_check_feature(<feature>) to check if <feature> is enabled
90         'blame' => {
91                 'sub' => \&feature_blame,
92                 'override' => 0,
93                 'default' => [0]},
95         'snapshot' => {
96                 'sub' => \&feature_snapshot,
97                 'override' => 0,
98                 #         => [content-encoding, suffix, program]
99                 'default' => ['x-gzip', 'gz', 'gzip']},
101         'pickaxe' => {
102                 'sub' => \&feature_pickaxe,
103                 'override' => 0,
104                 'default' => [1]},
105 );
107 sub gitweb_check_feature {
108         my ($name) = @_;
109         return undef unless exists $feature{$name};
110         my ($sub, $override, @defaults) = (
111                 $feature{$name}{'sub'},
112                 $feature{$name}{'override'},
113                 @{$feature{$name}{'default'}});
114         if (!$override) { return @defaults; }
115         return $sub->(@defaults);
118 # To enable system wide have in $GITWEB_CONFIG
119 # $feature{'blame'}{'default'} = [1];
120 # To have project specific config enable override in $GITWEB_CONFIG
121 # $feature{'blame'}{'override'} = 1;
122 # and in project config gitweb.blame = 0|1;
124 sub feature_blame {
125         my ($val) = git_get_project_config('blame', '--bool');
127         if ($val eq 'true') {
128                 return 1;
129         } elsif ($val eq 'false') {
130                 return 0;
131         }
133         return $_[0];
136 # To disable system wide have in $GITWEB_CONFIG
137 # $feature{'snapshot'}{'default'} = [undef];
138 # To have project specific config enable override in $GITWEB_CONFIG
139 # $feature{'blame'}{'override'} = 1;
140 # and in project config  gitweb.snapshot = none|gzip|bzip2
142 sub feature_snapshot {
143         my ($ctype, $suffix, $command) = @_;
145         my ($val) = git_get_project_config('snapshot');
147         if ($val eq 'gzip') {
148                 return ('x-gzip', 'gz', 'gzip');
149         } elsif ($val eq 'bzip2') {
150                 return ('x-bzip2', 'bz2', 'bzip2');
151         } elsif ($val eq 'none') {
152                 return ();
153         }
155         return ($ctype, $suffix, $command);
158 # To enable system wide have in $GITWEB_CONFIG
159 # $feature{'pickaxe'}{'default'} = [1];
160 # To have project specific config enable override in $GITWEB_CONFIG
161 # $feature{'pickaxe'}{'override'} = 1;
162 # and in project config gitweb.pickaxe = 0|1;
164 sub feature_pickaxe {
165         my ($val) = git_get_project_config('pickaxe', '--bool');
167         if ($val eq 'true') {
168                 return (1);
169         } elsif ($val eq 'false') {
170                 return (0);
171         }
173         return ($_[0]);
176 # rename detection options for git-diff and git-diff-tree
177 # - default is '-M', with the cost proportional to
178 #   (number of removed files) * (number of new files).
179 # - more costly is '-C' (or '-C', '-M'), with the cost proportional to
180 #   (number of changed files + number of removed files) * (number of new files)
181 # - even more costly is '-C', '--find-copies-harder' with cost
182 #   (number of files in the original tree) * (number of new files)
183 # - one might want to include '-B' option, e.g. '-B', '-M'
184 our @diff_opts = ('-M'); # taken from git_commit
186 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
187 do $GITWEB_CONFIG if -e $GITWEB_CONFIG;
189 # version of the core git binary
190 our $git_version = qx($GIT --version) =~ m/git version (.*)$/ ? $1 : "unknown";
192 $projects_list ||= $projectroot;
194 # ======================================================================
195 # input validation and dispatch
196 our $action = $cgi->param('a');
197 if (defined $action) {
198         if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
199                 die_error(undef, "Invalid action parameter");
200         }
203 our $project = $cgi->param('p');
204 if (defined $project) {
205         if (!validate_input($project) ||
206             !(-d "$projectroot/$project") ||
207             !(-e "$projectroot/$project/HEAD") ||
208             ($export_ok && !(-e "$projectroot/$project/$export_ok")) ||
209             ($strict_export && !project_in_list($project))) {
210                 undef $project;
211                 die_error(undef, "No such project");
212         }
215 our $file_name = $cgi->param('f');
216 if (defined $file_name) {
217         if (!validate_input($file_name)) {
218                 die_error(undef, "Invalid file parameter");
219         }
222 our $file_parent = $cgi->param('fp');
223 if (defined $file_parent) {
224         if (!validate_input($file_parent)) {
225                 die_error(undef, "Invalid file parent parameter");
226         }
229 our $hash = $cgi->param('h');
230 if (defined $hash) {
231         if (!validate_input($hash)) {
232                 die_error(undef, "Invalid hash parameter");
233         }
236 our $hash_parent = $cgi->param('hp');
237 if (defined $hash_parent) {
238         if (!validate_input($hash_parent)) {
239                 die_error(undef, "Invalid hash parent parameter");
240         }
243 our $hash_base = $cgi->param('hb');
244 if (defined $hash_base) {
245         if (!validate_input($hash_base)) {
246                 die_error(undef, "Invalid hash base parameter");
247         }
250 our $hash_parent_base = $cgi->param('hpb');
251 if (defined $hash_parent_base) {
252         if (!validate_input($hash_parent_base)) {
253                 die_error(undef, "Invalid hash parent base parameter");
254         }
257 our $page = $cgi->param('pg');
258 if (defined $page) {
259         if ($page =~ m/[^0-9]/) {
260                 die_error(undef, "Invalid page parameter");
261         }
264 our $searchtext = $cgi->param('s');
265 if (defined $searchtext) {
266         if ($searchtext =~ m/[^a-zA-Z0-9_\.\/\-\+\:\@ ]/) {
267                 die_error(undef, "Invalid search parameter");
268         }
269         $searchtext = quotemeta $searchtext;
272 # now read PATH_INFO and use it as alternative to parameters
273 sub evaluate_path_info {
274         return if defined $project;
275         my $path_info = $ENV{"PATH_INFO"};
276         return if !$path_info;
277         $path_info =~ s,^/+,,;
278         return if !$path_info;
279         # find which part of PATH_INFO is project
280         $project = $path_info;
281         $project =~ s,/+$,,;
282         while ($project && !-e "$projectroot/$project/HEAD") {
283                 $project =~ s,/*[^/]*$,,;
284         }
285         # validate project
286         $project = validate_input($project);
287         if (!$project ||
288             ($export_ok && !-e "$projectroot/$project/$export_ok") ||
289             ($strict_export && !project_in_list($project))) {
290                 undef $project;
291                 return;
292         }
293         # do not change any parameters if an action is given using the query string
294         return if $action;
295         $path_info =~ s,^$project/*,,;
296         my ($refname, $pathname) = split(/:/, $path_info, 2);
297         if (defined $pathname) {
298                 # we got "project.git/branch:filename" or "project.git/branch:dir/"
299                 # we could use git_get_type(branch:pathname), but it needs $git_dir
300                 $pathname =~ s,^/+,,;
301                 if (!$pathname || substr($pathname, -1) eq "/") {
302                         $action  ||= "tree";
303                         $pathname =~ s,/$,,;
304                 } else {
305                         $action  ||= "blob_plain";
306                 }
307                 $hash_base ||= validate_input($refname);
308                 $file_name ||= validate_input($pathname);
309         } elsif (defined $refname) {
310                 # we got "project.git/branch"
311                 $action ||= "shortlog";
312                 $hash   ||= validate_input($refname);
313         }
315 evaluate_path_info();
317 # path to the current git repository
318 our $git_dir;
319 $git_dir = "$projectroot/$project" if $project;
321 # dispatch
322 my %actions = (
323         "blame" => \&git_blame2,
324         "blobdiff" => \&git_blobdiff,
325         "blobdiff_plain" => \&git_blobdiff_plain,
326         "blob" => \&git_blob,
327         "blob_plain" => \&git_blob_plain,
328         "commitdiff" => \&git_commitdiff,
329         "commitdiff_plain" => \&git_commitdiff_plain,
330         "commit" => \&git_commit,
331         "heads" => \&git_heads,
332         "history" => \&git_history,
333         "log" => \&git_log,
334         "rss" => \&git_rss,
335         "search" => \&git_search,
336         "shortlog" => \&git_shortlog,
337         "summary" => \&git_summary,
338         "tag" => \&git_tag,
339         "tags" => \&git_tags,
340         "tree" => \&git_tree,
341         "snapshot" => \&git_snapshot,
342         # those below don't need $project
343         "opml" => \&git_opml,
344         "project_list" => \&git_project_list,
345         "project_index" => \&git_project_index,
346 );
348 if (defined $project) {
349         $action ||= 'summary';
350 } else {
351         $action ||= 'project_list';
353 if (!defined($actions{$action})) {
354         die_error(undef, "Unknown action");
356 if ($action !~ m/^(opml|project_list|project_index)$/ &&
357     !$project) {
358         die_error(undef, "Project needed");
360 $actions{$action}->();
361 exit;
363 ## ======================================================================
364 ## action links
366 sub href(%) {
367         my %params = @_;
369         my @mapping = (
370                 project => "p",
371                 action => "a",
372                 file_name => "f",
373                 file_parent => "fp",
374                 hash => "h",
375                 hash_parent => "hp",
376                 hash_base => "hb",
377                 hash_parent_base => "hpb",
378                 page => "pg",
379                 order => "o",
380                 searchtext => "s",
381         );
382         my %mapping = @mapping;
384         $params{'project'} = $project unless exists $params{'project'};
386         my @result = ();
387         for (my $i = 0; $i < @mapping; $i += 2) {
388                 my ($name, $symbol) = ($mapping[$i], $mapping[$i+1]);
389                 if (defined $params{$name}) {
390                         push @result, $symbol . "=" . esc_param($params{$name});
391                 }
392         }
393         return "$my_uri?" . join(';', @result);
397 ## ======================================================================
398 ## validation, quoting/unquoting and escaping
400 sub validate_input {
401         my $input = shift;
403         if ($input =~ m/^[0-9a-fA-F]{40}$/) {
404                 return $input;
405         }
406         if ($input =~ m/(^|\/)(|\.|\.\.)($|\/)/) {
407                 return undef;
408         }
409         if ($input =~ m/[^a-zA-Z0-9_\x80-\xff\ \t\.\/\-\+\#\~\%]/) {
410                 return undef;
411         }
412         return $input;
415 # quote unsafe chars, but keep the slash, even when it's not
416 # correct, but quoted slashes look too horrible in bookmarks
417 sub esc_param {
418         my $str = shift;
419         $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf("%%%02X", ord($1))/eg;
420         $str =~ s/\+/%2B/g;
421         $str =~ s/ /\+/g;
422         return $str;
425 # replace invalid utf8 character with SUBSTITUTION sequence
426 sub esc_html {
427         my $str = shift;
428         $str = decode("utf8", $str, Encode::FB_DEFAULT);
429         $str = escapeHTML($str);
430         $str =~ s/\014/^L/g; # escape FORM FEED (FF) character (e.g. in COPYING file)
431         return $str;
434 # git may return quoted and escaped filenames
435 sub unquote {
436         my $str = shift;
437         if ($str =~ m/^"(.*)"$/) {
438                 $str = $1;
439                 $str =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
440         }
441         return $str;
444 # escape tabs (convert tabs to spaces)
445 sub untabify {
446         my $line = shift;
448         while ((my $pos = index($line, "\t")) != -1) {
449                 if (my $count = (8 - ($pos % 8))) {
450                         my $spaces = ' ' x $count;
451                         $line =~ s/\t/$spaces/;
452                 }
453         }
455         return $line;
458 sub project_in_list {
459         my $project = shift;
460         my @list = git_get_projects_list();
461         return @list && scalar(grep { $_->{'path'} eq $project } @list);
464 ## ----------------------------------------------------------------------
465 ## HTML aware string manipulation
467 sub chop_str {
468         my $str = shift;
469         my $len = shift;
470         my $add_len = shift || 10;
472         # allow only $len chars, but don't cut a word if it would fit in $add_len
473         # if it doesn't fit, cut it if it's still longer than the dots we would add
474         $str =~ m/^(.{0,$len}[^ \/\-_:\.@]{0,$add_len})(.*)/;
475         my $body = $1;
476         my $tail = $2;
477         if (length($tail) > 4) {
478                 $tail = " ...";
479                 $body =~ s/&[^;]*$//; # remove chopped character entities
480         }
481         return "$body$tail";
484 ## ----------------------------------------------------------------------
485 ## functions returning short strings
487 # CSS class for given age value (in seconds)
488 sub age_class {
489         my $age = shift;
491         if ($age < 60*60*2) {
492                 return "age0";
493         } elsif ($age < 60*60*24*2) {
494                 return "age1";
495         } else {
496                 return "age2";
497         }
500 # convert age in seconds to "nn units ago" string
501 sub age_string {
502         my $age = shift;
503         my $age_str;
505         if ($age > 60*60*24*365*2) {
506                 $age_str = (int $age/60/60/24/365);
507                 $age_str .= " years ago";
508         } elsif ($age > 60*60*24*(365/12)*2) {
509                 $age_str = int $age/60/60/24/(365/12);
510                 $age_str .= " months ago";
511         } elsif ($age > 60*60*24*7*2) {
512                 $age_str = int $age/60/60/24/7;
513                 $age_str .= " weeks ago";
514         } elsif ($age > 60*60*24*2) {
515                 $age_str = int $age/60/60/24;
516                 $age_str .= " days ago";
517         } elsif ($age > 60*60*2) {
518                 $age_str = int $age/60/60;
519                 $age_str .= " hours ago";
520         } elsif ($age > 60*2) {
521                 $age_str = int $age/60;
522                 $age_str .= " min ago";
523         } elsif ($age > 2) {
524                 $age_str = int $age;
525                 $age_str .= " sec ago";
526         } else {
527                 $age_str .= " right now";
528         }
529         return $age_str;
532 # convert file mode in octal to symbolic file mode string
533 sub mode_str {
534         my $mode = oct shift;
536         if (S_ISDIR($mode & S_IFMT)) {
537                 return 'drwxr-xr-x';
538         } elsif (S_ISLNK($mode)) {
539                 return 'lrwxrwxrwx';
540         } elsif (S_ISREG($mode)) {
541                 # git cares only about the executable bit
542                 if ($mode & S_IXUSR) {
543                         return '-rwxr-xr-x';
544                 } else {
545                         return '-rw-r--r--';
546                 };
547         } else {
548                 return '----------';
549         }
552 # convert file mode in octal to file type string
553 sub file_type {
554         my $mode = shift;
556         if ($mode !~ m/^[0-7]+$/) {
557                 return $mode;
558         } else {
559                 $mode = oct $mode;
560         }
562         if (S_ISDIR($mode & S_IFMT)) {
563                 return "directory";
564         } elsif (S_ISLNK($mode)) {
565                 return "symlink";
566         } elsif (S_ISREG($mode)) {
567                 return "file";
568         } else {
569                 return "unknown";
570         }
573 ## ----------------------------------------------------------------------
574 ## functions returning short HTML fragments, or transforming HTML fragments
575 ## which don't beling to other sections
577 # format line of commit message or tag comment
578 sub format_log_line_html {
579         my $line = shift;
581         $line = esc_html($line);
582         $line =~ s/ /&nbsp;/g;
583         if ($line =~ m/([0-9a-fA-F]{40})/) {
584                 my $hash_text = $1;
585                 if (git_get_type($hash_text) eq "commit") {
586                         my $link =
587                                 $cgi->a({-href => href(action=>"commit", hash=>$hash_text),
588                                         -class => "text"}, $hash_text);
589                         $line =~ s/$hash_text/$link/;
590                 }
591         }
592         return $line;
595 # format marker of refs pointing to given object
596 sub format_ref_marker {
597         my ($refs, $id) = @_;
598         my $markers = '';
600         if (defined $refs->{$id}) {
601                 foreach my $ref (@{$refs->{$id}}) {
602                         my ($type, $name) = qw();
603                         # e.g. tags/v2.6.11 or heads/next
604                         if ($ref =~ m!^(.*?)s?/(.*)$!) {
605                                 $type = $1;
606                                 $name = $2;
607                         } else {
608                                 $type = "ref";
609                                 $name = $ref;
610                         }
612                         $markers .= " <span class=\"$type\">" . esc_html($name) . "</span>";
613                 }
614         }
616         if ($markers) {
617                 return ' <span class="refs">'. $markers . '</span>';
618         } else {
619                 return "";
620         }
623 # format, perhaps shortened and with markers, title line
624 sub format_subject_html {
625         my ($long, $short, $href, $extra) = @_;
626         $extra = '' unless defined($extra);
628         if (length($short) < length($long)) {
629                 return $cgi->a({-href => $href, -class => "list subject",
630                                 -title => $long},
631                        esc_html($short) . $extra);
632         } else {
633                 return $cgi->a({-href => $href, -class => "list subject"},
634                        esc_html($long)  . $extra);
635         }
638 sub format_diff_line {
639         my $line = shift;
640         my $char = substr($line, 0, 1);
641         my $diff_class = "";
643         chomp $line;
645         if ($char eq '+') {
646                 $diff_class = " add";
647         } elsif ($char eq "-") {
648                 $diff_class = " rem";
649         } elsif ($char eq "@") {
650                 $diff_class = " chunk_header";
651         } elsif ($char eq "\\") {
652                 $diff_class = " incomplete";
653         }
654         $line = untabify($line);
655         return "<div class=\"diff$diff_class\">" . esc_html($line) . "</div>\n";
658 ## ----------------------------------------------------------------------
659 ## git utility subroutines, invoking git commands
661 # returns path to the core git executable and the --git-dir parameter as list
662 sub git_cmd {
663         return $GIT, '--git-dir='.$git_dir;
666 # returns path to the core git executable and the --git-dir parameter as string
667 sub git_cmd_str {
668         return join(' ', git_cmd());
671 # get HEAD ref of given project as hash
672 sub git_get_head_hash {
673         my $project = shift;
674         my $o_git_dir = $git_dir;
675         my $retval = undef;
676         $git_dir = "$projectroot/$project";
677         if (open my $fd, "-|", git_cmd(), "rev-parse", "--verify", "HEAD") {
678                 my $head = <$fd>;
679                 close $fd;
680                 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
681                         $retval = $1;
682                 }
683         }
684         if (defined $o_git_dir) {
685                 $git_dir = $o_git_dir;
686         }
687         return $retval;
690 # get type of given object
691 sub git_get_type {
692         my $hash = shift;
694         open my $fd, "-|", git_cmd(), "cat-file", '-t', $hash or return;
695         my $type = <$fd>;
696         close $fd or return;
697         chomp $type;
698         return $type;
701 sub git_get_project_config {
702         my ($key, $type) = @_;
704         return unless ($key);
705         $key =~ s/^gitweb\.//;
706         return if ($key =~ m/\W/);
708         my @x = (git_cmd(), 'repo-config');
709         if (defined $type) { push @x, $type; }
710         push @x, "--get";
711         push @x, "gitweb.$key";
712         my $val = qx(@x);
713         chomp $val;
714         return ($val);
717 # get hash of given path at given ref
718 sub git_get_hash_by_path {
719         my $base = shift;
720         my $path = shift || return undef;
721         my $type = shift;
723         my $tree = $base;
725         open my $fd, "-|", git_cmd(), "ls-tree", $base, "--", $path
726                 or die_error(undef, "Open git-ls-tree failed");
727         my $line = <$fd>;
728         close $fd or return undef;
730         #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa  panic.c'
731         $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
732         if (defined $type && $type ne $2) {
733                 # type doesn't match
734                 return undef;
735         }
736         return $3;
739 ## ......................................................................
740 ## git utility functions, directly accessing git repository
742 sub git_get_project_description {
743         my $path = shift;
745         open my $fd, "$projectroot/$path/description" or return undef;
746         my $descr = <$fd>;
747         close $fd;
748         chomp $descr;
749         return $descr;
752 sub git_get_project_url_list {
753         my $path = shift;
755         open my $fd, "$projectroot/$path/cloneurl" or return undef;
756         my @git_project_url_list = map { chomp; $_ } <$fd>;
757         close $fd;
759         return wantarray ? @git_project_url_list : \@git_project_url_list;
762 sub git_get_projects_list {
763         my @list;
765         if (-d $projects_list) {
766                 # search in directory
767                 my $dir = $projects_list;
768                 my $pfxlen = length("$dir");
770                 File::Find::find({
771                         follow_fast => 1, # follow symbolic links
772                         dangling_symlinks => 0, # ignore dangling symlinks, silently
773                         wanted => sub {
774                                 # skip project-list toplevel, if we get it.
775                                 return if (m!^[/.]$!);
776                                 # only directories can be git repositories
777                                 return unless (-d $_);
779                                 my $subdir = substr($File::Find::name, $pfxlen + 1);
780                                 # we check related file in $projectroot
781                                 if (-e "$projectroot/$subdir/HEAD" && (!$export_ok ||
782                                     -e "$projectroot/$subdir/$export_ok")) {
783                                         push @list, { path => $subdir };
784                                         $File::Find::prune = 1;
785                                 }
786                         },
787                 }, "$dir");
789         } elsif (-f $projects_list) {
790                 # read from file(url-encoded):
791                 # 'git%2Fgit.git Linus+Torvalds'
792                 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
793                 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
794                 open my ($fd), $projects_list or return undef;
795                 while (my $line = <$fd>) {
796                         chomp $line;
797                         my ($path, $owner) = split ' ', $line;
798                         $path = unescape($path);
799                         $owner = unescape($owner);
800                         if (!defined $path) {
801                                 next;
802                         }
803                         if (-e "$projectroot/$path/HEAD" && (!$export_ok ||
804                             -e "$projectroot/$path/$export_ok")) {
805                                 my $pr = {
806                                         path => $path,
807                                         owner => decode("utf8", $owner, Encode::FB_DEFAULT),
808                                 };
809                                 push @list, $pr
810                         }
811                 }
812                 close $fd;
813         }
814         @list = sort {$a->{'path'} cmp $b->{'path'}} @list;
815         return @list;
818 sub git_get_project_owner {
819         my $project = shift;
820         my $owner;
822         return undef unless $project;
824         # read from file (url-encoded):
825         # 'git%2Fgit.git Linus+Torvalds'
826         # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
827         # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
828         if (-f $projects_list) {
829                 open (my $fd , $projects_list);
830                 while (my $line = <$fd>) {
831                         chomp $line;
832                         my ($pr, $ow) = split ' ', $line;
833                         $pr = unescape($pr);
834                         $ow = unescape($ow);
835                         if ($pr eq $project) {
836                                 $owner = decode("utf8", $ow, Encode::FB_DEFAULT);
837                                 last;
838                         }
839                 }
840                 close $fd;
841         }
842         if (!defined $owner) {
843                 $owner = get_file_owner("$projectroot/$project");
844         }
846         return $owner;
849 sub git_get_references {
850         my $type = shift || "";
851         my %refs;
852         # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c      refs/tags/v2.6.11
853         # c39ae07f393806ccf406ef966e9a15afc43cc36a      refs/tags/v2.6.11^{}
854         open my $fd, "-|", $GIT, "peek-remote", "$projectroot/$project/"
855                 or return;
857         while (my $line = <$fd>) {
858                 chomp $line;
859                 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\/?[^\^]+)/) {
860                         if (defined $refs{$1}) {
861                                 push @{$refs{$1}}, $2;
862                         } else {
863                                 $refs{$1} = [ $2 ];
864                         }
865                 }
866         }
867         close $fd or return;
868         return \%refs;
871 sub git_get_rev_name_tags {
872         my $hash = shift || return undef;
874         open my $fd, "-|", git_cmd(), "name-rev", "--tags", $hash
875                 or return;
876         my $name_rev = <$fd>;
877         close $fd;
879         if ($name_rev =~ m|^$hash tags/(.*)$|) {
880                 return $1;
881         } else {
882                 # catches also '$hash undefined' output
883                 return undef;
884         }
887 ## ----------------------------------------------------------------------
888 ## parse to hash functions
890 sub parse_date {
891         my $epoch = shift;
892         my $tz = shift || "-0000";
894         my %date;
895         my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
896         my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
897         my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
898         $date{'hour'} = $hour;
899         $date{'minute'} = $min;
900         $date{'mday'} = $mday;
901         $date{'day'} = $days[$wday];
902         $date{'month'} = $months[$mon];
903         $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
904                            $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
905         $date{'mday-time'} = sprintf "%d %s %02d:%02d",
906                              $mday, $months[$mon], $hour ,$min;
908         $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
909         my $local = $epoch + ((int $1 + ($2/60)) * 3600);
910         ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
911         $date{'hour_local'} = $hour;
912         $date{'minute_local'} = $min;
913         $date{'tz_local'} = $tz;
914         return %date;
917 sub parse_tag {
918         my $tag_id = shift;
919         my %tag;
920         my @comment;
922         open my $fd, "-|", git_cmd(), "cat-file", "tag", $tag_id or return;
923         $tag{'id'} = $tag_id;
924         while (my $line = <$fd>) {
925                 chomp $line;
926                 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
927                         $tag{'object'} = $1;
928                 } elsif ($line =~ m/^type (.+)$/) {
929                         $tag{'type'} = $1;
930                 } elsif ($line =~ m/^tag (.+)$/) {
931                         $tag{'name'} = $1;
932                 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
933                         $tag{'author'} = $1;
934                         $tag{'epoch'} = $2;
935                         $tag{'tz'} = $3;
936                 } elsif ($line =~ m/--BEGIN/) {
937                         push @comment, $line;
938                         last;
939                 } elsif ($line eq "") {
940                         last;
941                 }
942         }
943         push @comment, <$fd>;
944         $tag{'comment'} = \@comment;
945         close $fd or return;
946         if (!defined $tag{'name'}) {
947                 return
948         };
949         return %tag
952 sub parse_commit {
953         my $commit_id = shift;
954         my $commit_text = shift;
956         my @commit_lines;
957         my %co;
959         if (defined $commit_text) {
960                 @commit_lines = @$commit_text;
961         } else {
962                 $/ = "\0";
963                 open my $fd, "-|", git_cmd(), "rev-list", "--header", "--parents", "--max-count=1", $commit_id
964                         or return;
965                 @commit_lines = split '\n', <$fd>;
966                 close $fd or return;
967                 $/ = "\n";
968                 pop @commit_lines;
969         }
970         my $header = shift @commit_lines;
971         if (!($header =~ m/^[0-9a-fA-F]{40}/)) {
972                 return;
973         }
974         ($co{'id'}, my @parents) = split ' ', $header;
975         $co{'parents'} = \@parents;
976         $co{'parent'} = $parents[0];
977         while (my $line = shift @commit_lines) {
978                 last if $line eq "\n";
979                 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
980                         $co{'tree'} = $1;
981                 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
982                         $co{'author'} = $1;
983                         $co{'author_epoch'} = $2;
984                         $co{'author_tz'} = $3;
985                         if ($co{'author'} =~ m/^([^<]+) </) {
986                                 $co{'author_name'} = $1;
987                         } else {
988                                 $co{'author_name'} = $co{'author'};
989                         }
990                 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
991                         $co{'committer'} = $1;
992                         $co{'committer_epoch'} = $2;
993                         $co{'committer_tz'} = $3;
994                         $co{'committer_name'} = $co{'committer'};
995                         $co{'committer_name'} =~ s/ <.*//;
996                 }
997         }
998         if (!defined $co{'tree'}) {
999                 return;
1000         };
1002         foreach my $title (@commit_lines) {
1003                 $title =~ s/^    //;
1004                 if ($title ne "") {
1005                         $co{'title'} = chop_str($title, 80, 5);
1006                         # remove leading stuff of merges to make the interesting part visible
1007                         if (length($title) > 50) {
1008                                 $title =~ s/^Automatic //;
1009                                 $title =~ s/^merge (of|with) /Merge ... /i;
1010                                 if (length($title) > 50) {
1011                                         $title =~ s/(http|rsync):\/\///;
1012                                 }
1013                                 if (length($title) > 50) {
1014                                         $title =~ s/(master|www|rsync)\.//;
1015                                 }
1016                                 if (length($title) > 50) {
1017                                         $title =~ s/kernel.org:?//;
1018                                 }
1019                                 if (length($title) > 50) {
1020                                         $title =~ s/\/pub\/scm//;
1021                                 }
1022                         }
1023                         $co{'title_short'} = chop_str($title, 50, 5);
1024                         last;
1025                 }
1026         }
1027         # remove added spaces
1028         foreach my $line (@commit_lines) {
1029                 $line =~ s/^    //;
1030         }
1031         $co{'comment'} = \@commit_lines;
1033         my $age = time - $co{'committer_epoch'};
1034         $co{'age'} = $age;
1035         $co{'age_string'} = age_string($age);
1036         my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
1037         if ($age > 60*60*24*7*2) {
1038                 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1039                 $co{'age_string_age'} = $co{'age_string'};
1040         } else {
1041                 $co{'age_string_date'} = $co{'age_string'};
1042                 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1043         }
1044         return %co;
1047 # parse ref from ref_file, given by ref_id, with given type
1048 sub parse_ref {
1049         my $ref_file = shift;
1050         my $ref_id = shift;
1051         my $type = shift || git_get_type($ref_id);
1052         my %ref_item;
1054         $ref_item{'type'} = $type;
1055         $ref_item{'id'} = $ref_id;
1056         $ref_item{'epoch'} = 0;
1057         $ref_item{'age'} = "unknown";
1058         if ($type eq "tag") {
1059                 my %tag = parse_tag($ref_id);
1060                 $ref_item{'comment'} = $tag{'comment'};
1061                 if ($tag{'type'} eq "commit") {
1062                         my %co = parse_commit($tag{'object'});
1063                         $ref_item{'epoch'} = $co{'committer_epoch'};
1064                         $ref_item{'age'} = $co{'age_string'};
1065                 } elsif (defined($tag{'epoch'})) {
1066                         my $age = time - $tag{'epoch'};
1067                         $ref_item{'epoch'} = $tag{'epoch'};
1068                         $ref_item{'age'} = age_string($age);
1069                 }
1070                 $ref_item{'reftype'} = $tag{'type'};
1071                 $ref_item{'name'} = $tag{'name'};
1072                 $ref_item{'refid'} = $tag{'object'};
1073         } elsif ($type eq "commit"){
1074                 my %co = parse_commit($ref_id);
1075                 $ref_item{'reftype'} = "commit";
1076                 $ref_item{'name'} = $ref_file;
1077                 $ref_item{'title'} = $co{'title'};
1078                 $ref_item{'refid'} = $ref_id;
1079                 $ref_item{'epoch'} = $co{'committer_epoch'};
1080                 $ref_item{'age'} = $co{'age_string'};
1081         } else {
1082                 $ref_item{'reftype'} = $type;
1083                 $ref_item{'name'} = $ref_file;
1084                 $ref_item{'refid'} = $ref_id;
1085         }
1087         return %ref_item;
1090 # parse line of git-diff-tree "raw" output
1091 sub parse_difftree_raw_line {
1092         my $line = shift;
1093         my %res;
1095         # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M   ls-files.c'
1096         # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M   rev-tree.c'
1097         if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
1098                 $res{'from_mode'} = $1;
1099                 $res{'to_mode'} = $2;
1100                 $res{'from_id'} = $3;
1101                 $res{'to_id'} = $4;
1102                 $res{'status'} = $5;
1103                 $res{'similarity'} = $6;
1104                 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
1105                         ($res{'from_file'}, $res{'to_file'}) = map { unquote($_) } split("\t", $7);
1106                 } else {
1107                         $res{'file'} = unquote($7);
1108                 }
1109         }
1110         # 'c512b523472485aef4fff9e57b229d9d243c967f'
1111         elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
1112                 $res{'commit'} = $1;
1113         }
1115         return wantarray ? %res : \%res;
1118 # parse line of git-ls-tree output
1119 sub parse_ls_tree_line ($;%) {
1120         my $line = shift;
1121         my %opts = @_;
1122         my %res;
1124         #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa  panic.c'
1125         $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
1127         $res{'mode'} = $1;
1128         $res{'type'} = $2;
1129         $res{'hash'} = $3;
1130         if ($opts{'-z'}) {
1131                 $res{'name'} = $4;
1132         } else {
1133                 $res{'name'} = unquote($4);
1134         }
1136         return wantarray ? %res : \%res;
1139 ## ......................................................................
1140 ## parse to array of hashes functions
1142 sub git_get_refs_list {
1143         my $type = shift || "";
1144         my %refs;
1145         my @reflist;
1147         my @refs;
1148         open my $fd, "-|", $GIT, "peek-remote", "$projectroot/$project/"
1149                 or return;
1150         while (my $line = <$fd>) {
1151                 chomp $line;
1152                 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\/?([^\^]+))(\^\{\})?$/) {
1153                         if (defined $refs{$1}) {
1154                                 push @{$refs{$1}}, $2;
1155                         } else {
1156                                 $refs{$1} = [ $2 ];
1157                         }
1159                         if (! $4) { # unpeeled, direct reference
1160                                 push @refs, { hash => $1, name => $3 }; # without type
1161                         } elsif ($3 eq $refs[-1]{'name'}) {
1162                                 # most likely a tag is followed by its peeled
1163                                 # (deref) one, and when that happens we know the
1164                                 # previous one was of type 'tag'.
1165                                 $refs[-1]{'type'} = "tag";
1166                         }
1167                 }
1168         }
1169         close $fd;
1171         foreach my $ref (@refs) {
1172                 my $ref_file = $ref->{'name'};
1173                 my $ref_id   = $ref->{'hash'};
1175                 my $type = $ref->{'type'} || git_get_type($ref_id) || next;
1176                 my %ref_item = parse_ref($ref_file, $ref_id, $type);
1178                 push @reflist, \%ref_item;
1179         }
1180         # sort refs by age
1181         @reflist = sort {$b->{'epoch'} <=> $a->{'epoch'}} @reflist;
1182         return (\@reflist, \%refs);
1185 ## ----------------------------------------------------------------------
1186 ## filesystem-related functions
1188 sub get_file_owner {
1189         my $path = shift;
1191         my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
1192         my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
1193         if (!defined $gcos) {
1194                 return undef;
1195         }
1196         my $owner = $gcos;
1197         $owner =~ s/[,;].*$//;
1198         return decode("utf8", $owner, Encode::FB_DEFAULT);
1201 ## ......................................................................
1202 ## mimetype related functions
1204 sub mimetype_guess_file {
1205         my $filename = shift;
1206         my $mimemap = shift;
1207         -r $mimemap or return undef;
1209         my %mimemap;
1210         open(MIME, $mimemap) or return undef;
1211         while (<MIME>) {
1212                 next if m/^#/; # skip comments
1213                 my ($mime, $exts) = split(/\t+/);
1214                 if (defined $exts) {
1215                         my @exts = split(/\s+/, $exts);
1216                         foreach my $ext (@exts) {
1217                                 $mimemap{$ext} = $mime;
1218                         }
1219                 }
1220         }
1221         close(MIME);
1223         $filename =~ /\.([^.]*)$/;
1224         return $mimemap{$1};
1227 sub mimetype_guess {
1228         my $filename = shift;
1229         my $mime;
1230         $filename =~ /\./ or return undef;
1232         if ($mimetypes_file) {
1233                 my $file = $mimetypes_file;
1234                 if ($file !~ m!^/!) { # if it is relative path
1235                         # it is relative to project
1236                         $file = "$projectroot/$project/$file";
1237                 }
1238                 $mime = mimetype_guess_file($filename, $file);
1239         }
1240         $mime ||= mimetype_guess_file($filename, '/etc/mime.types');
1241         return $mime;
1244 sub blob_mimetype {
1245         my $fd = shift;
1246         my $filename = shift;
1248         if ($filename) {
1249                 my $mime = mimetype_guess($filename);
1250                 $mime and return $mime;
1251         }
1253         # just in case
1254         return $default_blob_plain_mimetype unless $fd;
1256         if (-T $fd) {
1257                 return 'text/plain' .
1258                        ($default_text_plain_charset ? '; charset='.$default_text_plain_charset : '');
1259         } elsif (! $filename) {
1260                 return 'application/octet-stream';
1261         } elsif ($filename =~ m/\.png$/i) {
1262                 return 'image/png';
1263         } elsif ($filename =~ m/\.gif$/i) {
1264                 return 'image/gif';
1265         } elsif ($filename =~ m/\.jpe?g$/i) {
1266                 return 'image/jpeg';
1267         } else {
1268                 return 'application/octet-stream';
1269         }
1272 ## ======================================================================
1273 ## functions printing HTML: header, footer, error page
1275 sub git_header_html {
1276         my $status = shift || "200 OK";
1277         my $expires = shift;
1279         my $title = "$site_name git";
1280         if (defined $project) {
1281                 $title .= " - $project";
1282                 if (defined $action) {
1283                         $title .= "/$action";
1284                         if (defined $file_name) {
1285                                 $title .= " - $file_name";
1286                                 if ($action eq "tree" && $file_name !~ m|/$|) {
1287                                         $title .= "/";
1288                                 }
1289                         }
1290                 }
1291         }
1292         my $content_type;
1293         # require explicit support from the UA if we are to send the page as
1294         # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
1295         # we have to do this because MSIE sometimes globs '*/*', pretending to
1296         # support xhtml+xml but choking when it gets what it asked for.
1297         if (defined $cgi->http('HTTP_ACCEPT') &&
1298             $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&
1299             $cgi->Accept('application/xhtml+xml') != 0) {
1300                 $content_type = 'application/xhtml+xml';
1301         } else {
1302                 $content_type = 'text/html';
1303         }
1304         print $cgi->header(-type=>$content_type, -charset => 'utf-8',
1305                            -status=> $status, -expires => $expires);
1306         print <<EOF;
1307 <?xml version="1.0" encoding="utf-8"?>
1308 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1309 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
1310 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
1311 <!-- git core binaries version $git_version -->
1312 <head>
1313 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
1314 <meta name="generator" content="gitweb/$version git/$git_version"/>
1315 <meta name="robots" content="index, nofollow"/>
1316 <title>$title</title>
1317 <link rel="stylesheet" type="text/css" href="$stylesheet"/>
1318 EOF
1319         if (defined $project) {
1320                 printf('<link rel="alternate" title="%s log" '.
1321                        'href="%s" type="application/rss+xml"/>'."\n",
1322                        esc_param($project), href(action=>"rss"));
1323         } else {
1324                 printf('<link rel="alternate" title="%s projects list" '.
1325                        'href="%s" type="text/plain; charset=utf-8"/>'."\n",
1326                        $site_name, href(project=>undef, action=>"project_index"));
1327                 printf('<link rel="alternate" title="%s projects logs" '.
1328                        'href="%s" type="text/x-opml"/>'."\n",
1329                        $site_name, href(project=>undef, action=>"opml"));
1330         }
1331         if (defined $favicon) {
1332                 print qq(<link rel="shortcut icon" href="$favicon" type="image/png"/>\n);
1333         }
1335         print "</head>\n" .
1336               "<body>\n" .
1337               "<div class=\"page_header\">\n" .
1338               "<a href=\"http://www.kernel.org/pub/software/scm/git/docs/\" title=\"git documentation\">" .
1339               "<img src=\"$logo\" width=\"72\" height=\"27\" alt=\"git\" style=\"float:right; border-width:0px;\"/>" .
1340               "</a>\n";
1341         print $cgi->a({-href => esc_param($home_link)}, $home_link_str) . " / ";
1342         if (defined $project) {
1343                 print $cgi->a({-href => href(action=>"summary")}, esc_html($project));
1344                 if (defined $action) {
1345                         print " / $action";
1346                 }
1347                 print "\n";
1348                 if (!defined $searchtext) {
1349                         $searchtext = "";
1350                 }
1351                 my $search_hash;
1352                 if (defined $hash_base) {
1353                         $search_hash = $hash_base;
1354                 } elsif (defined $hash) {
1355                         $search_hash = $hash;
1356                 } else {
1357                         $search_hash = "HEAD";
1358                 }
1359                 $cgi->param("a", "search");
1360                 $cgi->param("h", $search_hash);
1361                 print $cgi->startform(-method => "get", -action => $my_uri) .
1362                       "<div class=\"search\">\n" .
1363                       $cgi->hidden(-name => "p") . "\n" .
1364                       $cgi->hidden(-name => "a") . "\n" .
1365                       $cgi->hidden(-name => "h") . "\n" .
1366                       $cgi->textfield(-name => "s", -value => $searchtext) . "\n" .
1367                       "</div>" .
1368                       $cgi->end_form() . "\n";
1369         }
1370         print "</div>\n";
1373 sub git_footer_html {
1374         print "<div class=\"page_footer\">\n";
1375         if (defined $project) {
1376                 my $descr = git_get_project_description($project);
1377                 if (defined $descr) {
1378                         print "<div class=\"page_footer_text\">" . esc_html($descr) . "</div>\n";
1379                 }
1380                 print $cgi->a({-href => href(action=>"rss"),
1381                               -class => "rss_logo"}, "RSS") . "\n";
1382         } else {
1383                 print $cgi->a({-href => href(project=>undef, action=>"opml"),
1384                               -class => "rss_logo"}, "OPML") . " ";
1385                 print $cgi->a({-href => href(project=>undef, action=>"project_index"),
1386                               -class => "rss_logo"}, "TXT") . "\n";
1387         }
1388         print "</div>\n" .
1389               "</body>\n" .
1390               "</html>";
1393 sub die_error {
1394         my $status = shift || "403 Forbidden";
1395         my $error = shift || "Malformed query, file missing or permission denied";
1397         git_header_html($status);
1398         print <<EOF;
1399 <div class="page_body">
1400 <br /><br />
1401 $status - $error
1402 <br />
1403 </div>
1404 EOF
1405         git_footer_html();
1406         exit;
1409 ## ----------------------------------------------------------------------
1410 ## functions printing or outputting HTML: navigation
1412 sub git_print_page_nav {
1413         my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
1414         $extra = '' if !defined $extra; # pager or formats
1416         my @navs = qw(summary shortlog log commit commitdiff tree);
1417         if ($suppress) {
1418                 @navs = grep { $_ ne $suppress } @navs;
1419         }
1421         my %arg = map { $_ => {action=>$_} } @navs;
1422         if (defined $head) {
1423                 for (qw(commit commitdiff)) {
1424                         $arg{$_}{hash} = $head;
1425                 }
1426                 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
1427                         for (qw(shortlog log)) {
1428                                 $arg{$_}{hash} = $head;
1429                         }
1430                 }
1431         }
1432         $arg{tree}{hash} = $treehead if defined $treehead;
1433         $arg{tree}{hash_base} = $treebase if defined $treebase;
1435         print "<div class=\"page_nav\">\n" .
1436                 (join " | ",
1437                  map { $_ eq $current ?
1438                        $_ : $cgi->a({-href => href(%{$arg{$_}})}, "$_")
1439                  } @navs);
1440         print "<br/>\n$extra<br/>\n" .
1441               "</div>\n";
1444 sub format_paging_nav {
1445         my ($action, $hash, $head, $page, $nrevs) = @_;
1446         my $paging_nav;
1449         if ($hash ne $head || $page) {
1450                 $paging_nav .= $cgi->a({-href => href(action=>$action)}, "HEAD");
1451         } else {
1452                 $paging_nav .= "HEAD";
1453         }
1455         if ($page > 0) {
1456                 $paging_nav .= " &sdot; " .
1457                         $cgi->a({-href => href(action=>$action, hash=>$hash, page=>$page-1),
1458                                  -accesskey => "p", -title => "Alt-p"}, "prev");
1459         } else {
1460                 $paging_nav .= " &sdot; prev";
1461         }
1463         if ($nrevs >= (100 * ($page+1)-1)) {
1464                 $paging_nav .= " &sdot; " .
1465                         $cgi->a({-href => href(action=>$action, hash=>$hash, page=>$page+1),
1466                                  -accesskey => "n", -title => "Alt-n"}, "next");
1467         } else {
1468                 $paging_nav .= " &sdot; next";
1469         }
1471         return $paging_nav;
1474 ## ......................................................................
1475 ## functions printing or outputting HTML: div
1477 sub git_print_header_div {
1478         my ($action, $title, $hash, $hash_base) = @_;
1479         my %args = ();
1481         $args{action} = $action;
1482         $args{hash} = $hash if $hash;
1483         $args{hash_base} = $hash_base if $hash_base;
1485         print "<div class=\"header\">\n" .
1486               $cgi->a({-href => href(%args), -class => "title"},
1487               $title ? $title : $action) .
1488               "\n</div>\n";
1491 #sub git_print_authorship (\%) {
1492 sub git_print_authorship {
1493         my $co = shift;
1495         my %ad = parse_date($co->{'author_epoch'}, $co->{'author_tz'});
1496         print "<div class=\"author_date\">" .
1497               esc_html($co->{'author_name'}) .
1498               " [$ad{'rfc2822'}";
1499         if ($ad{'hour_local'} < 6) {
1500                 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
1501                        $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
1502         } else {
1503                 printf(" (%02d:%02d %s)",
1504                        $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
1505         }
1506         print "]</div>\n";
1509 sub git_print_page_path {
1510         my $name = shift;
1511         my $type = shift;
1512         my $hb = shift;
1514         if (!defined $name) {
1515                 print "<div class=\"page_path\">/</div>\n";
1516         } else {
1517                 my @dirname = split '/', $name;
1518                 my $basename = pop @dirname;
1519                 my $fullname = '';
1521                 print "<div class=\"page_path\">";
1522                 print $cgi->a({-href => href(action=>"tree", hash_base=>$hb),
1523                               -title => '/'}, '/');
1524                 print " ";
1525                 foreach my $dir (@dirname) {
1526                         $fullname .= ($fullname ? '/' : '') . $dir;
1527                         print $cgi->a({-href => href(action=>"tree", file_name=>$fullname,
1528                                                      hash_base=>$hb),
1529                                       -title => $fullname}, esc_html($dir . '/'));
1530                         print " ";
1531                 }
1532                 if (defined $type && $type eq 'blob') {
1533                         print $cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,
1534                                                      hash_base=>$hb),
1535                                       -title => $name}, esc_html($basename));
1536                 } elsif (defined $type && $type eq 'tree') {
1537                         print $cgi->a({-href => href(action=>"tree", file_name=>$file_name,
1538                                                      hash_base=>$hb),
1539                                       -title => $name}, esc_html($basename . '/'));
1540                 } else {
1541                         print esc_html($basename);
1542                 }
1543                 print "<br/></div>\n";
1544         }
1547 # sub git_print_log (\@;%) {
1548 sub git_print_log ($;%) {
1549         my $log = shift;
1550         my %opts = @_;
1552         if ($opts{'-remove_title'}) {
1553                 # remove title, i.e. first line of log
1554                 shift @$log;
1555         }
1556         # remove leading empty lines
1557         while (defined $log->[0] && $log->[0] eq "") {
1558                 shift @$log;
1559         }
1561         # print log
1562         my $signoff = 0;
1563         my $empty = 0;
1564         foreach my $line (@$log) {
1565                 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
1566                         $signoff = 1;
1567                         $empty = 0;
1568                         if (! $opts{'-remove_signoff'}) {
1569                                 print "<span class=\"signoff\">" . esc_html($line) . "</span><br/>\n";
1570                                 next;
1571                         } else {
1572                                 # remove signoff lines
1573                                 next;
1574                         }
1575                 } else {
1576                         $signoff = 0;
1577                 }
1579                 # print only one empty line
1580                 # do not print empty line after signoff
1581                 if ($line eq "") {
1582                         next if ($empty || $signoff);
1583                         $empty = 1;
1584                 } else {
1585                         $empty = 0;
1586                 }
1588                 print format_log_line_html($line) . "<br/>\n";
1589         }
1591         if ($opts{'-final_empty_line'}) {
1592                 # end with single empty line
1593                 print "<br/>\n" unless $empty;
1594         }
1597 sub git_print_simplified_log {
1598         my $log = shift;
1599         my $remove_title = shift;
1601         git_print_log($log,
1602                 -final_empty_line=> 1,
1603                 -remove_title => $remove_title);
1606 # print tree entry (row of git_tree), but without encompassing <tr> element
1607 sub git_print_tree_entry {
1608         my ($t, $basedir, $hash_base, $have_blame) = @_;
1610         my %base_key = ();
1611         $base_key{hash_base} = $hash_base if defined $hash_base;
1613         print "<td class=\"mode\">" . mode_str($t->{'mode'}) . "</td>\n";
1614         if ($t->{'type'} eq "blob") {
1615                 print "<td class=\"list\">" .
1616                       $cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},
1617                                              file_name=>"$basedir$t->{'name'}", %base_key),
1618                               -class => "list"}, esc_html($t->{'name'})) .
1619                       "</td>\n" .
1620                       "<td class=\"link\">" .
1621                       $cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},
1622                                              file_name=>"$basedir$t->{'name'}", %base_key)},
1623                               "blob");
1624                 if ($have_blame) {
1625                         print " | " .
1626                                 $cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},
1627                                                        file_name=>"$basedir$t->{'name'}", %base_key)},
1628                                         "blame");
1629                 }
1630                 if (defined $hash_base) {
1631                         print " | " .
1632                               $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
1633                                                      hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},
1634                                       "history");
1635                 }
1636                 print " | " .
1637                       $cgi->a({-href => href(action=>"blob_plain",
1638                                              hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},
1639                               "raw") .
1640                       "</td>\n";
1642         } elsif ($t->{'type'} eq "tree") {
1643                 print "<td class=\"list\">" .
1644                       $cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},
1645                                              file_name=>"$basedir$t->{'name'}", %base_key)},
1646                               esc_html($t->{'name'})) .
1647                       "</td>\n" .
1648                       "<td class=\"link\">" .
1649                       $cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},
1650                                              file_name=>"$basedir$t->{'name'}", %base_key)},
1651                               "tree");
1652                 if (defined $hash_base) {
1653                         print " | " .
1654                               $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
1655                                                      file_name=>"$basedir$t->{'name'}")},
1656                                       "history");
1657                 }
1658                 print "</td>\n";
1659         }
1662 ## ......................................................................
1663 ## functions printing large fragments of HTML
1665 sub git_difftree_body {
1666         my ($difftree, $hash, $parent) = @_;
1668         print "<div class=\"list_head\">\n";
1669         if ($#{$difftree} > 10) {
1670                 print(($#{$difftree} + 1) . " files changed:\n");
1671         }
1672         print "</div>\n";
1674         print "<table class=\"diff_tree\">\n";
1675         my $alternate = 0;
1676         my $patchno = 0;
1677         foreach my $line (@{$difftree}) {
1678                 my %diff = parse_difftree_raw_line($line);
1680                 if ($alternate) {
1681                         print "<tr class=\"dark\">\n";
1682                 } else {
1683                         print "<tr class=\"light\">\n";
1684                 }
1685                 $alternate ^= 1;
1687                 my ($to_mode_oct, $to_mode_str, $to_file_type);
1688                 my ($from_mode_oct, $from_mode_str, $from_file_type);
1689                 if ($diff{'to_mode'} ne ('0' x 6)) {
1690                         $to_mode_oct = oct $diff{'to_mode'};
1691                         if (S_ISREG($to_mode_oct)) { # only for regular file
1692                                 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
1693                         }
1694                         $to_file_type = file_type($diff{'to_mode'});
1695                 }
1696                 if ($diff{'from_mode'} ne ('0' x 6)) {
1697                         $from_mode_oct = oct $diff{'from_mode'};
1698                         if (S_ISREG($to_mode_oct)) { # only for regular file
1699                                 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
1700                         }
1701                         $from_file_type = file_type($diff{'from_mode'});
1702                 }
1704                 if ($diff{'status'} eq "A") { # created
1705                         my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
1706                         $mode_chng   .= " with mode: $to_mode_str" if $to_mode_str;
1707                         $mode_chng   .= "]</span>";
1708                         print "<td>" .
1709                               $cgi->a({-href => href(action=>"blob", hash=>$diff{'to_id'},
1710                                                      hash_base=>$hash, file_name=>$diff{'file'}),
1711                                       -class => "list"}, esc_html($diff{'file'})) .
1712                               "</td>\n" .
1713                               "<td>$mode_chng</td>\n" .
1714                               "<td class=\"link\">" .
1715                               $cgi->a({-href => href(action=>"blob", hash=>$diff{'to_id'},
1716                                                      hash_base=>$hash, file_name=>$diff{'file'})},
1717                                       "blob");
1718                         if ($action eq 'commitdiff') {
1719                                 # link to patch
1720                                 $patchno++;
1721                                 print " | " .
1722                                       $cgi->a({-href => "#patch$patchno"}, "patch");
1723                         }
1724                         print "</td>\n";
1726                 } elsif ($diff{'status'} eq "D") { # deleted
1727                         my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
1728                         print "<td>" .
1729                               $cgi->a({-href => href(action=>"blob", hash=>$diff{'from_id'},
1730                                                      hash_base=>$parent, file_name=>$diff{'file'}),
1731                                        -class => "list"}, esc_html($diff{'file'})) .
1732                               "</td>\n" .
1733                               "<td>$mode_chng</td>\n" .
1734                               "<td class=\"link\">" .
1735                               $cgi->a({-href => href(action=>"blob", hash=>$diff{'from_id'},
1736                                                      hash_base=>$parent, file_name=>$diff{'file'})},
1737                                       "blob") .
1738                               " | ";
1739                         if ($action eq 'commitdiff') {
1740                                 # link to patch
1741                                 $patchno++;
1742                                 print " | " .
1743                                       $cgi->a({-href => "#patch$patchno"}, "patch");
1744                         }
1745                         print $cgi->a({-href => href(action=>"history", hash_base=>$parent,
1746                                                      file_name=>$diff{'file'})},
1747                                       "history") .
1748                               "</td>\n";
1750                 } elsif ($diff{'status'} eq "M" || $diff{'status'} eq "T") { # modified, or type changed
1751                         my $mode_chnge = "";
1752                         if ($diff{'from_mode'} != $diff{'to_mode'}) {
1753                                 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
1754                                 if ($from_file_type != $to_file_type) {
1755                                         $mode_chnge .= " from $from_file_type to $to_file_type";
1756                                 }
1757                                 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
1758                                         if ($from_mode_str && $to_mode_str) {
1759                                                 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
1760                                         } elsif ($to_mode_str) {
1761                                                 $mode_chnge .= " mode: $to_mode_str";
1762                                         }
1763                                 }
1764                                 $mode_chnge .= "]</span>\n";
1765                         }
1766                         print "<td>";
1767                         if ($diff{'to_id'} ne $diff{'from_id'}) { # modified
1768                                 print $cgi->a({-href => href(action=>"blobdiff",
1769                                                              hash=>$diff{'to_id'}, hash_parent=>$diff{'from_id'},
1770                                                              hash_base=>$hash, hash_parent_base=>$parent,
1771                                                              file_name=>$diff{'file'}),
1772                                               -class => "list"}, esc_html($diff{'file'}));
1773                         } else { # only mode changed
1774                                 print $cgi->a({-href => href(action=>"blob", hash=>$diff{'to_id'},
1775                                                              hash_base=>$hash, file_name=>$diff{'file'}),
1776                                               -class => "list"}, esc_html($diff{'file'}));
1777                         }
1778                         print "</td>\n" .
1779                               "<td>$mode_chnge</td>\n" .
1780                               "<td class=\"link\">" .
1781                               $cgi->a({-href => href(action=>"blob", hash=>$diff{'to_id'},
1782                                                      hash_base=>$hash, file_name=>$diff{'file'})},
1783                                       "blob");
1784                         if ($diff{'to_id'} ne $diff{'from_id'}) { # modified
1785                                 if ($action eq 'commitdiff') {
1786                                         # link to patch
1787                                         $patchno++;
1788                                         print " | " .
1789                                                 $cgi->a({-href => "#patch$patchno"}, "patch");
1790                                 } else {
1791                                         print " | " .
1792                                                 $cgi->a({-href => href(action=>"blobdiff",
1793                                                                        hash=>$diff{'to_id'}, hash_parent=>$diff{'from_id'},
1794                                                                        hash_base=>$hash, hash_parent_base=>$parent,
1795                                                                        file_name=>$diff{'file'})},
1796                                                         "diff");
1797                                 }
1798                         }
1799                         print " | " .
1800                                 $cgi->a({-href => href(action=>"history",
1801                                                        hash_base=>$hash, file_name=>$diff{'file'})},
1802                                         "history");
1803                         print "</td>\n";
1805                 } elsif ($diff{'status'} eq "R" || $diff{'status'} eq "C") { # renamed or copied
1806                         my %status_name = ('R' => 'moved', 'C' => 'copied');
1807                         my $nstatus = $status_name{$diff{'status'}};
1808                         my $mode_chng = "";
1809                         if ($diff{'from_mode'} != $diff{'to_mode'}) {
1810                                 # mode also for directories, so we cannot use $to_mode_str
1811                                 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
1812                         }
1813                         print "<td>" .
1814                               $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1815                                                      hash=>$diff{'to_id'}, file_name=>$diff{'to_file'}),
1816                                       -class => "list"}, esc_html($diff{'to_file'})) . "</td>\n" .
1817                               "<td><span class=\"file_status $nstatus\">[$nstatus from " .
1818                               $cgi->a({-href => href(action=>"blob", hash_base=>$parent,
1819                                                      hash=>$diff{'from_id'}, file_name=>$diff{'from_file'}),
1820                                       -class => "list"}, esc_html($diff{'from_file'})) .
1821                               " with " . (int $diff{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
1822                               "<td class=\"link\">" .
1823                               $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1824                                                      hash=>$diff{'to_id'}, file_name=>$diff{'to_file'})},
1825                                       "blob");
1826                         if ($diff{'to_id'} ne $diff{'from_id'}) {
1827                                 if ($action eq 'commitdiff') {
1828                                         # link to patch
1829                                         $patchno++;
1830                                         print " | " .
1831                                                 $cgi->a({-href => "#patch$patchno"}, "patch");
1832                                 } else {
1833                                         print " | " .
1834                                                 $cgi->a({-href => href(action=>"blobdiff",
1835                                                                        hash=>$diff{'to_id'}, hash_parent=>$diff{'from_id'},
1836                                                                        hash_base=>$hash, hash_parent_base=>$parent,
1837                                                                        file_name=>$diff{'to_file'}, file_parent=>$diff{'from_file'})},
1838                                                         "diff");
1839                                 }
1840                         }
1841                         print "</td>\n";
1843                 } # we should not encounter Unmerged (U) or Unknown (X) status
1844                 print "</tr>\n";
1845         }
1846         print "</table>\n";
1849 sub git_patchset_body {
1850         my ($fd, $difftree, $hash, $hash_parent) = @_;
1852         my $patch_idx = 0;
1853         my $in_header = 0;
1854         my $patch_found = 0;
1855         my $diffinfo;
1857         print "<div class=\"patchset\">\n";
1859         LINE:
1860         while (my $patch_line = <$fd>) {
1861                 chomp $patch_line;
1863                 if ($patch_line =~ m/^diff /) { # "git diff" header
1864                         # beginning of patch (in patchset)
1865                         if ($patch_found) {
1866                                 # close previous patch
1867                                 print "</div>\n"; # class="patch"
1868                         } else {
1869                                 # first patch in patchset
1870                                 $patch_found = 1;
1871                         }
1872                         print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
1874                         if (ref($difftree->[$patch_idx]) eq "HASH") {
1875                                 $diffinfo = $difftree->[$patch_idx];
1876                         } else {
1877                                 $diffinfo = parse_difftree_raw_line($difftree->[$patch_idx]);
1878                         }
1879                         $patch_idx++;
1881                         # for now, no extended header, hence we skip empty patches
1882                         # companion to  next LINE if $in_header;
1883                         if ($diffinfo->{'from_id'} eq $diffinfo->{'to_id'}) { # no change
1884                                 $in_header = 1;
1885                                 next LINE;
1886                         }
1888                         if ($diffinfo->{'status'} eq "A") { # added
1889                                 print "<div class=\"diff_info\">" . file_type($diffinfo->{'to_mode'}) . ":" .
1890                                       $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1891                                                              hash=>$diffinfo->{'to_id'}, file_name=>$diffinfo->{'file'})},
1892                                               $diffinfo->{'to_id'}) . "(new)" .
1893                                       "</div>\n"; # class="diff_info"
1895                         } elsif ($diffinfo->{'status'} eq "D") { # deleted
1896                                 print "<div class=\"diff_info\">" . file_type($diffinfo->{'from_mode'}) . ":" .
1897                                       $cgi->a({-href => href(action=>"blob", hash_base=>$hash_parent,
1898                                                              hash=>$diffinfo->{'from_id'}, file_name=>$diffinfo->{'file'})},
1899                                               $diffinfo->{'from_id'}) . "(deleted)" .
1900                                       "</div>\n"; # class="diff_info"
1902                         } elsif ($diffinfo->{'status'} eq "R" || # renamed
1903                                  $diffinfo->{'status'} eq "C" || # copied
1904                                  $diffinfo->{'status'} eq "2") { # with two filenames (from git_blobdiff)
1905                                 print "<div class=\"diff_info\">" .
1906                                       file_type($diffinfo->{'from_mode'}) . ":" .
1907                                       $cgi->a({-href => href(action=>"blob", hash_base=>$hash_parent,
1908                                                              hash=>$diffinfo->{'from_id'}, file_name=>$diffinfo->{'from_file'})},
1909                                               $diffinfo->{'from_id'}) .
1910                                       " -> " .
1911                                       file_type($diffinfo->{'to_mode'}) . ":" .
1912                                       $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1913                                                              hash=>$diffinfo->{'to_id'}, file_name=>$diffinfo->{'to_file'})},
1914                                               $diffinfo->{'to_id'});
1915                                 print "</div>\n"; # class="diff_info"
1917                         } else { # modified, mode changed, ...
1918                                 print "<div class=\"diff_info\">" .
1919                                       file_type($diffinfo->{'from_mode'}) . ":" .
1920                                       $cgi->a({-href => href(action=>"blob", hash_base=>$hash_parent,
1921                                                              hash=>$diffinfo->{'from_id'}, file_name=>$diffinfo->{'file'})},
1922                                               $diffinfo->{'from_id'}) .
1923                                       " -> " .
1924                                       file_type($diffinfo->{'to_mode'}) . ":" .
1925                                       $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1926                                                              hash=>$diffinfo->{'to_id'}, file_name=>$diffinfo->{'file'})},
1927                                               $diffinfo->{'to_id'});
1928                                 print "</div>\n"; # class="diff_info"
1929                         }
1931                         #print "<div class=\"diff extended_header\">\n";
1932                         $in_header = 1;
1933                         next LINE;
1934                 } # start of patch in patchset
1937                 if ($in_header && $patch_line =~ m/^---/) {
1938                         #print "</div>\n"; # class="diff extended_header"
1939                         $in_header = 0;
1941                         my $file = $diffinfo->{'from_file'};
1942                         $file  ||= $diffinfo->{'file'};
1943                         $file = $cgi->a({-href => href(action=>"blob", hash_base=>$hash_parent,
1944                                                        hash=>$diffinfo->{'from_id'}, file_name=>$file),
1945                                         -class => "list"}, esc_html($file));
1946                         $patch_line =~ s|a/.*$|a/$file|g;
1947                         print "<div class=\"diff from_file\">$patch_line</div>\n";
1949                         $patch_line = <$fd>;
1950                         chomp $patch_line;
1952                         #$patch_line =~ m/^+++/;
1953                         $file    = $diffinfo->{'to_file'};
1954                         $file  ||= $diffinfo->{'file'};
1955                         $file = $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1956                                                        hash=>$diffinfo->{'to_id'}, file_name=>$file),
1957                                         -class => "list"}, esc_html($file));
1958                         $patch_line =~ s|b/.*|b/$file|g;
1959                         print "<div class=\"diff to_file\">$patch_line</div>\n";
1961                         next LINE;
1962                 }
1963                 next LINE if $in_header;
1965                 print format_diff_line($patch_line);
1966         }
1967         print "</div>\n" if $patch_found; # class="patch"
1969         print "</div>\n"; # class="patchset"
1972 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
1974 sub git_shortlog_body {
1975         # uses global variable $project
1976         my ($revlist, $from, $to, $refs, $extra) = @_;
1978         $from = 0 unless defined $from;
1979         $to = $#{$revlist} if (!defined $to || $#{$revlist} < $to);
1981         print "<table class=\"shortlog\" cellspacing=\"0\">\n";
1982         my $alternate = 0;
1983         for (my $i = $from; $i <= $to; $i++) {
1984                 my $commit = $revlist->[$i];
1985                 #my $ref = defined $refs ? format_ref_marker($refs, $commit) : '';
1986                 my $ref = format_ref_marker($refs, $commit);
1987                 my %co = parse_commit($commit);
1988                 if ($alternate) {
1989                         print "<tr class=\"dark\">\n";
1990                 } else {
1991                         print "<tr class=\"light\">\n";
1992                 }
1993                 $alternate ^= 1;
1994                 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
1995                 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
1996                       "<td><i>" . esc_html(chop_str($co{'author_name'}, 10)) . "</i></td>\n" .
1997                       "<td>";
1998                 print format_subject_html($co{'title'}, $co{'title_short'},
1999                                           href(action=>"commit", hash=>$commit), $ref);
2000                 print "</td>\n" .
2001                       "<td class=\"link\">" .
2002                       $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") . " | " .
2003                       $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " .
2004                       $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree");
2005                 print "</td>\n" .
2006                       "</tr>\n";
2007         }
2008         if (defined $extra) {
2009                 print "<tr>\n" .
2010                       "<td colspan=\"4\">$extra</td>\n" .
2011                       "</tr>\n";
2012         }
2013         print "</table>\n";
2016 sub git_history_body {
2017         # Warning: assumes constant type (blob or tree) during history
2018         my ($revlist, $from, $to, $refs, $hash_base, $ftype, $extra) = @_;
2020         $from = 0 unless defined $from;
2021         $to = $#{$revlist} unless (defined $to && $to <= $#{$revlist});
2023         print "<table class=\"history\" cellspacing=\"0\">\n";
2024         my $alternate = 0;
2025         for (my $i = $from; $i <= $to; $i++) {
2026                 if ($revlist->[$i] !~ m/^([0-9a-fA-F]{40})/) {
2027                         next;
2028                 }
2030                 my $commit = $1;
2031                 my %co = parse_commit($commit);
2032                 if (!%co) {
2033                         next;
2034                 }
2036                 my $ref = format_ref_marker($refs, $commit);
2038                 if ($alternate) {
2039                         print "<tr class=\"dark\">\n";
2040                 } else {
2041                         print "<tr class=\"light\">\n";
2042                 }
2043                 $alternate ^= 1;
2044                 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2045                       # shortlog uses      chop_str($co{'author_name'}, 10)
2046                       "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 3)) . "</i></td>\n" .
2047                       "<td>";
2048                 # originally git_history used chop_str($co{'title'}, 50)
2049                 print format_subject_html($co{'title'}, $co{'title_short'},
2050                                           href(action=>"commit", hash=>$commit), $ref);
2051                 print "</td>\n" .
2052                       "<td class=\"link\">" .
2053                       $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") . " | " .
2054                       $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " .
2055                       $cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)}, $ftype);
2057                 if ($ftype eq 'blob') {
2058                         my $blob_current = git_get_hash_by_path($hash_base, $file_name);
2059                         my $blob_parent  = git_get_hash_by_path($commit, $file_name);
2060                         if (defined $blob_current && defined $blob_parent &&
2061                                         $blob_current ne $blob_parent) {
2062                                 print " | " .
2063                                         $cgi->a({-href => href(action=>"blobdiff",
2064                                                                hash=>$blob_current, hash_parent=>$blob_parent,
2065                                                                hash_base=>$hash_base, hash_parent_base=>$commit,
2066                                                                file_name=>$file_name)},
2067                                                 "diff to current");
2068                         }
2069                 }
2070                 print "</td>\n" .
2071                       "</tr>\n";
2072         }
2073         if (defined $extra) {
2074                 print "<tr>\n" .
2075                       "<td colspan=\"4\">$extra</td>\n" .
2076                       "</tr>\n";
2077         }
2078         print "</table>\n";
2081 sub git_tags_body {
2082         # uses global variable $project
2083         my ($taglist, $from, $to, $extra) = @_;
2084         $from = 0 unless defined $from;
2085         $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
2087         print "<table class=\"tags\" cellspacing=\"0\">\n";
2088         my $alternate = 0;
2089         for (my $i = $from; $i <= $to; $i++) {
2090                 my $entry = $taglist->[$i];
2091                 my %tag = %$entry;
2092                 my $comment_lines = $tag{'comment'};
2093                 my $comment = shift @$comment_lines;
2094                 my $comment_short;
2095                 if (defined $comment) {
2096                         $comment_short = chop_str($comment, 30, 5);
2097                 }
2098                 if ($alternate) {
2099                         print "<tr class=\"dark\">\n";
2100                 } else {
2101                         print "<tr class=\"light\">\n";
2102                 }
2103                 $alternate ^= 1;
2104                 print "<td><i>$tag{'age'}</i></td>\n" .
2105                       "<td>" .
2106                       $cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),
2107                                -class => "list name"}, esc_html($tag{'name'})) .
2108                       "</td>\n" .
2109                       "<td>";
2110                 if (defined $comment) {
2111                         print format_subject_html($comment, $comment_short,
2112                                                   href(action=>"tag", hash=>$tag{'id'}));
2113                 }
2114                 print "</td>\n" .
2115                       "<td class=\"selflink\">";
2116                 if ($tag{'type'} eq "tag") {
2117                         print $cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})}, "tag");
2118                 } else {
2119                         print "&nbsp;";
2120                 }
2121                 print "</td>\n" .
2122                       "<td class=\"link\">" . " | " .
2123                       $cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})}, $tag{'reftype'});
2124                 if ($tag{'reftype'} eq "commit") {
2125                         print " | " . $cgi->a({-href => href(action=>"shortlog", hash=>$tag{'name'})}, "shortlog") .
2126                               " | " . $cgi->a({-href => href(action=>"log", hash=>$tag{'refid'})}, "log");
2127                 } elsif ($tag{'reftype'} eq "blob") {
2128                         print " | " . $cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})}, "raw");
2129                 }
2130                 print "</td>\n" .
2131                       "</tr>";
2132         }
2133         if (defined $extra) {
2134                 print "<tr>\n" .
2135                       "<td colspan=\"5\">$extra</td>\n" .
2136                       "</tr>\n";
2137         }
2138         print "</table>\n";
2141 sub git_heads_body {
2142         # uses global variable $project
2143         my ($headlist, $head, $from, $to, $extra) = @_;
2144         $from = 0 unless defined $from;
2145         $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
2147         print "<table class=\"heads\" cellspacing=\"0\">\n";
2148         my $alternate = 0;
2149         for (my $i = $from; $i <= $to; $i++) {
2150                 my $entry = $headlist->[$i];
2151                 my %tag = %$entry;
2152                 my $curr = $tag{'id'} eq $head;
2153                 if ($alternate) {
2154                         print "<tr class=\"dark\">\n";
2155                 } else {
2156                         print "<tr class=\"light\">\n";
2157                 }
2158                 $alternate ^= 1;
2159                 print "<td><i>$tag{'age'}</i></td>\n" .
2160                       ($tag{'id'} eq $head ? "<td class=\"current_head\">" : "<td>") .
2161                       $cgi->a({-href => href(action=>"shortlog", hash=>$tag{'name'}),
2162                                -class => "list name"},esc_html($tag{'name'})) .
2163                       "</td>\n" .
2164                       "<td class=\"link\">" .
2165                       $cgi->a({-href => href(action=>"shortlog", hash=>$tag{'name'})}, "shortlog") . " | " .
2166                       $cgi->a({-href => href(action=>"log", hash=>$tag{'name'})}, "log") .
2167                       "</td>\n" .
2168                       "</tr>";
2169         }
2170         if (defined $extra) {
2171                 print "<tr>\n" .
2172                       "<td colspan=\"3\">$extra</td>\n" .
2173                       "</tr>\n";
2174         }
2175         print "</table>\n";
2178 ## ======================================================================
2179 ## ======================================================================
2180 ## actions
2182 sub git_project_list {
2183         my $order = $cgi->param('o');
2184         if (defined $order && $order !~ m/project|descr|owner|age/) {
2185                 die_error(undef, "Unknown order parameter");
2186         }
2188         my @list = git_get_projects_list();
2189         my @projects;
2190         if (!@list) {
2191                 die_error(undef, "No projects found");
2192         }
2193         foreach my $pr (@list) {
2194                 my $head = git_get_head_hash($pr->{'path'});
2195                 if (!defined $head) {
2196                         next;
2197                 }
2198                 $git_dir = "$projectroot/$pr->{'path'}";
2199                 my %co = parse_commit($head);
2200                 if (!%co) {
2201                         next;
2202                 }
2203                 $pr->{'commit'} = \%co;
2204                 if (!defined $pr->{'descr'}) {
2205                         my $descr = git_get_project_description($pr->{'path'}) || "";
2206                         $pr->{'descr'} = chop_str($descr, 25, 5);
2207                 }
2208                 if (!defined $pr->{'owner'}) {
2209                         $pr->{'owner'} = get_file_owner("$projectroot/$pr->{'path'}") || "";
2210                 }
2211                 push @projects, $pr;
2212         }
2214         git_header_html();
2215         if (-f $home_text) {
2216                 print "<div class=\"index_include\">\n";
2217                 open (my $fd, $home_text);
2218                 print <$fd>;
2219                 close $fd;
2220                 print "</div>\n";
2221         }
2222         print "<table class=\"project_list\">\n" .
2223               "<tr>\n";
2224         $order ||= "project";
2225         if ($order eq "project") {
2226                 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
2227                 print "<th>Project</th>\n";
2228         } else {
2229                 print "<th>" .
2230                       $cgi->a({-href => href(project=>undef, order=>'project'),
2231                                -class => "header"}, "Project") .
2232                       "</th>\n";
2233         }
2234         if ($order eq "descr") {
2235                 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
2236                 print "<th>Description</th>\n";
2237         } else {
2238                 print "<th>" .
2239                       $cgi->a({-href => href(project=>undef, order=>'descr'),
2240                                -class => "header"}, "Description") .
2241                       "</th>\n";
2242         }
2243         if ($order eq "owner") {
2244                 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
2245                 print "<th>Owner</th>\n";
2246         } else {
2247                 print "<th>" .
2248                       $cgi->a({-href => href(project=>undef, order=>'owner'),
2249                                -class => "header"}, "Owner") .
2250                       "</th>\n";
2251         }
2252         if ($order eq "age") {
2253                 @projects = sort {$a->{'commit'}{'age'} <=> $b->{'commit'}{'age'}} @projects;
2254                 print "<th>Last Change</th>\n";
2255         } else {
2256                 print "<th>" .
2257                       $cgi->a({-href => href(project=>undef, order=>'age'),
2258                                -class => "header"}, "Last Change") .
2259                       "</th>\n";
2260         }
2261         print "<th></th>\n" .
2262               "</tr>\n";
2263         my $alternate = 0;
2264         foreach my $pr (@projects) {
2265                 if ($alternate) {
2266                         print "<tr class=\"dark\">\n";
2267                 } else {
2268                         print "<tr class=\"light\">\n";
2269                 }
2270                 $alternate ^= 1;
2271                 print "<td>" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),
2272                                         -class => "list"}, esc_html($pr->{'path'})) . "</td>\n" .
2273                       "<td>" . esc_html($pr->{'descr'}) . "</td>\n" .
2274                       "<td><i>" . chop_str($pr->{'owner'}, 15) . "</i></td>\n";
2275                 print "<td class=\"". age_class($pr->{'commit'}{'age'}) . "\">" .
2276                       $pr->{'commit'}{'age_string'} . "</td>\n" .
2277                       "<td class=\"link\">" .
2278                       $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")}, "summary")   . " | " .
2279                       $cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")}, "shortlog") . " | " .
2280                       $cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")}, "log") . " | " .
2281                       $cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")}, "tree") .
2282                       "</td>\n" .
2283                       "</tr>\n";
2284         }
2285         print "</table>\n";
2286         git_footer_html();
2289 sub git_project_index {
2290         my @projects = git_get_projects_list();
2292         print $cgi->header(
2293                 -type => 'text/plain',
2294                 -charset => 'utf-8',
2295                 -content_disposition => qq(inline; filename="index.aux"));
2297         foreach my $pr (@projects) {
2298                 if (!exists $pr->{'owner'}) {
2299                         $pr->{'owner'} = get_file_owner("$projectroot/$project");
2300                 }
2302                 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
2303                 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
2304                 $path  =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X", ord($1))/eg;
2305                 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X", ord($1))/eg;
2306                 $path  =~ s/ /\+/g;
2307                 $owner =~ s/ /\+/g;
2309                 print "$path $owner\n";
2310         }
2313 sub git_summary {
2314         my $descr = git_get_project_description($project) || "none";
2315         my $head = git_get_head_hash($project);
2316         my %co = parse_commit($head);
2317         my %cd = parse_date($co{'committer_epoch'}, $co{'committer_tz'});
2319         my $owner = git_get_project_owner($project);
2321         my ($reflist, $refs) = git_get_refs_list();
2323         my @taglist;
2324         my @headlist;
2325         foreach my $ref (@$reflist) {
2326                 if ($ref->{'name'} =~ s!^heads/!!) {
2327                         push @headlist, $ref;
2328                 } else {
2329                         $ref->{'name'} =~ s!^tags/!!;
2330                         push @taglist, $ref;
2331                 }
2332         }
2334         git_header_html();
2335         git_print_page_nav('summary','', $head);
2337         print "<div class=\"title\">&nbsp;</div>\n";
2338         print "<table cellspacing=\"0\">\n" .
2339               "<tr><td>description</td><td>" . esc_html($descr) . "</td></tr>\n" .
2340               "<tr><td>owner</td><td>$owner</td></tr>\n" .
2341               "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
2342         # use per project git URL list in $projectroot/$project/cloneurl
2343         # or make project git URL from git base URL and project name
2344         my $url_tag = "URL";
2345         my @url_list = git_get_project_url_list($project);
2346         @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
2347         foreach my $git_url (@url_list) {
2348                 next unless $git_url;
2349                 print "<tr><td>$url_tag</td><td>$git_url</td></tr>\n";
2350                 $url_tag = "";
2351         }
2352         print "</table>\n";
2354         open my $fd, "-|", git_cmd(), "rev-list", "--max-count=17",
2355                 git_get_head_hash($project)
2356                 or die_error(undef, "Open git-rev-list failed");
2357         my @revlist = map { chomp; $_ } <$fd>;
2358         close $fd;
2359         git_print_header_div('shortlog');
2360         git_shortlog_body(\@revlist, 0, 15, $refs,
2361                           $cgi->a({-href => href(action=>"shortlog")}, "..."));
2363         if (@taglist) {
2364                 git_print_header_div('tags');
2365                 git_tags_body(\@taglist, 0, 15,
2366                               $cgi->a({-href => href(action=>"tags")}, "..."));
2367         }
2369         if (@headlist) {
2370                 git_print_header_div('heads');
2371                 git_heads_body(\@headlist, $head, 0, 15,
2372                                $cgi->a({-href => href(action=>"heads")}, "..."));
2373         }
2375         git_footer_html();
2378 sub git_tag {
2379         my $head = git_get_head_hash($project);
2380         git_header_html();
2381         git_print_page_nav('','', $head,undef,$head);
2382         my %tag = parse_tag($hash);
2383         git_print_header_div('commit', esc_html($tag{'name'}), $hash);
2384         print "<div class=\"title_text\">\n" .
2385               "<table cellspacing=\"0\">\n" .
2386               "<tr>\n" .
2387               "<td>object</td>\n" .
2388               "<td>" . $cgi->a({-class => "list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},
2389                                $tag{'object'}) . "</td>\n" .
2390               "<td class=\"link\">" . $cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},
2391                                               $tag{'type'}) . "</td>\n" .
2392               "</tr>\n";
2393         if (defined($tag{'author'})) {
2394                 my %ad = parse_date($tag{'epoch'}, $tag{'tz'});
2395                 print "<tr><td>author</td><td>" . esc_html($tag{'author'}) . "</td></tr>\n";
2396                 print "<tr><td></td><td>" . $ad{'rfc2822'} .
2397                         sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) .
2398                         "</td></tr>\n";
2399         }
2400         print "</table>\n\n" .
2401               "</div>\n";
2402         print "<div class=\"page_body\">";
2403         my $comment = $tag{'comment'};
2404         foreach my $line (@$comment) {
2405                 print esc_html($line) . "<br/>\n";
2406         }
2407         print "</div>\n";
2408         git_footer_html();
2411 sub git_blame2 {
2412         my $fd;
2413         my $ftype;
2415         my ($have_blame) = gitweb_check_feature('blame');
2416         if (!$have_blame) {
2417                 die_error('403 Permission denied', "Permission denied");
2418         }
2419         die_error('404 Not Found', "File name not defined") if (!$file_name);
2420         $hash_base ||= git_get_head_hash($project);
2421         die_error(undef, "Couldn't find base commit") unless ($hash_base);
2422         my %co = parse_commit($hash_base)
2423                 or die_error(undef, "Reading commit failed");
2424         if (!defined $hash) {
2425                 $hash = git_get_hash_by_path($hash_base, $file_name, "blob")
2426                         or die_error(undef, "Error looking up file");
2427         }
2428         $ftype = git_get_type($hash);
2429         if ($ftype !~ "blob") {
2430                 die_error("400 Bad Request", "Object is not a blob");
2431         }
2432         open ($fd, "-|", git_cmd(), "blame", '-l', $file_name, $hash_base)
2433                 or die_error(undef, "Open git-blame failed");
2434         git_header_html();
2435         my $formats_nav =
2436                 $cgi->a({-href => href(action=>"blob", hash=>$hash, hash_base=>$hash_base, file_name=>$file_name)},
2437                         "blob") .
2438                 " | " .
2439                 $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base, file_name=>$file_name)},
2440                         "history") .
2441                 " | " .
2442                 $cgi->a({-href => href(action=>"blame", file_name=>$file_name)},
2443                         "head");
2444         git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2445         git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
2446         git_print_page_path($file_name, $ftype, $hash_base);
2447         my @rev_color = (qw(light2 dark2));
2448         my $num_colors = scalar(@rev_color);
2449         my $current_color = 0;
2450         my $last_rev;
2451         print <<HTML;
2452 <div class="page_body">
2453 <table class="blame">
2454 <tr><th>Commit</th><th>Line</th><th>Data</th></tr>
2455 HTML
2456         while (<$fd>) {
2457                 /^([0-9a-fA-F]{40}).*?(\d+)\)\s{1}(\s*.*)/;
2458                 my $full_rev = $1;
2459                 my $rev = substr($full_rev, 0, 8);
2460                 my $lineno = $2;
2461                 my $data = $3;
2463                 if (!defined $last_rev) {
2464                         $last_rev = $full_rev;
2465                 } elsif ($last_rev ne $full_rev) {
2466                         $last_rev = $full_rev;
2467                         $current_color = ++$current_color % $num_colors;
2468                 }
2469                 print "<tr class=\"$rev_color[$current_color]\">\n";
2470                 print "<td class=\"sha1\">" .
2471                         $cgi->a({-href => href(action=>"commit", hash=>$full_rev, file_name=>$file_name)},
2472                                 esc_html($rev)) . "</td>\n";
2473                 print "<td class=\"linenr\"><a id=\"l$lineno\" href=\"#l$lineno\" class=\"linenr\">" .
2474                       esc_html($lineno) . "</a></td>\n";
2475                 print "<td class=\"pre\">" . esc_html($data) . "</td>\n";
2476                 print "</tr>\n";
2477         }
2478         print "</table>\n";
2479         print "</div>";
2480         close $fd
2481                 or print "Reading blob failed\n";
2482         git_footer_html();
2485 sub git_blame {
2486         my $fd;
2488         my ($have_blame) = gitweb_check_feature('blame');
2489         if (!$have_blame) {
2490                 die_error('403 Permission denied', "Permission denied");
2491         }
2492         die_error('404 Not Found', "File name not defined") if (!$file_name);
2493         $hash_base ||= git_get_head_hash($project);
2494         die_error(undef, "Couldn't find base commit") unless ($hash_base);
2495         my %co = parse_commit($hash_base)
2496                 or die_error(undef, "Reading commit failed");
2497         if (!defined $hash) {
2498                 $hash = git_get_hash_by_path($hash_base, $file_name, "blob")
2499                         or die_error(undef, "Error lookup file");
2500         }
2501         open ($fd, "-|", git_cmd(), "annotate", '-l', '-t', '-r', $file_name, $hash_base)
2502                 or die_error(undef, "Open git-annotate failed");
2503         git_header_html();
2504         my $formats_nav =
2505                 $cgi->a({-href => href(action=>"blob", hash=>$hash, hash_base=>$hash_base, file_name=>$file_name)},
2506                         "blob") .
2507                 " | " .
2508                 $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base, file_name=>$file_name)},
2509                         "history") .
2510                 " | " .
2511                 $cgi->a({-href => href(action=>"blame", file_name=>$file_name)},
2512                         "head");
2513         git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2514         git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
2515         git_print_page_path($file_name, 'blob', $hash_base);
2516         print "<div class=\"page_body\">\n";
2517         print <<HTML;
2518 <table class="blame">
2519   <tr>
2520     <th>Commit</th>
2521     <th>Age</th>
2522     <th>Author</th>
2523     <th>Line</th>
2524     <th>Data</th>
2525   </tr>
2526 HTML
2527         my @line_class = (qw(light dark));
2528         my $line_class_len = scalar (@line_class);
2529         my $line_class_num = $#line_class;
2530         while (my $line = <$fd>) {
2531                 my $long_rev;
2532                 my $short_rev;
2533                 my $author;
2534                 my $time;
2535                 my $lineno;
2536                 my $data;
2537                 my $age;
2538                 my $age_str;
2539                 my $age_class;
2541                 chomp $line;
2542                 $line_class_num = ($line_class_num + 1) % $line_class_len;
2544                 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) [+-]\d\d\d\d\t(\d+)\)(.*)$/) {
2545                         $long_rev = $1;
2546                         $author   = $2;
2547                         $time     = $3;
2548                         $lineno   = $4;
2549                         $data     = $5;
2550                 } else {
2551                         print qq(  <tr><td colspan="5" class="error">Unable to parse: $line</td></tr>\n);
2552                         next;
2553                 }
2554                 $short_rev  = substr ($long_rev, 0, 8);
2555                 $age        = time () - $time;
2556                 $age_str    = age_string ($age);
2557                 $age_str    =~ s/ /&nbsp;/g;
2558                 $age_class  = age_class($age);
2559                 $author     = esc_html ($author);
2560                 $author     =~ s/ /&nbsp;/g;
2562                 $data = untabify($data);
2563                 $data = esc_html ($data);
2565                 print <<HTML;
2566   <tr class="$line_class[$line_class_num]">
2567     <td class="sha1"><a href="${\href (action=>"commit", hash=>$long_rev)}" class="text">$short_rev..</a></td>
2568     <td class="$age_class">$age_str</td>
2569     <td>$author</td>
2570     <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
2571     <td class="pre">$data</td>
2572   </tr>
2573 HTML
2574         } # while (my $line = <$fd>)
2575         print "</table>\n\n";
2576         close $fd
2577                 or print "Reading blob failed.\n";
2578         print "</div>";
2579         git_footer_html();
2582 sub git_tags {
2583         my $head = git_get_head_hash($project);
2584         git_header_html();
2585         git_print_page_nav('','', $head,undef,$head);
2586         git_print_header_div('summary', $project);
2588         my ($taglist) = git_get_refs_list("tags");
2589         if (@$taglist) {
2590                 git_tags_body($taglist);
2591         }
2592         git_footer_html();
2595 sub git_heads {
2596         my $head = git_get_head_hash($project);
2597         git_header_html();
2598         git_print_page_nav('','', $head,undef,$head);
2599         git_print_header_div('summary', $project);
2601         my ($headlist) = git_get_refs_list("heads");
2602         if (@$headlist) {
2603                 git_heads_body($headlist, $head);
2604         }
2605         git_footer_html();
2608 sub git_blob_plain {
2609         my $expires;
2611         if (!defined $hash) {
2612                 if (defined $file_name) {
2613                         my $base = $hash_base || git_get_head_hash($project);
2614                         $hash = git_get_hash_by_path($base, $file_name, "blob")
2615                                 or die_error(undef, "Error lookup file");
2616                 } else {
2617                         die_error(undef, "No file name defined");
2618                 }
2619         } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2620                 # blobs defined by non-textual hash id's can be cached
2621                 $expires = "+1d";
2622         }
2624         my $type = shift;
2625         open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
2626                 or die_error(undef, "Couldn't cat $file_name, $hash");
2628         $type ||= blob_mimetype($fd, $file_name);
2630         # save as filename, even when no $file_name is given
2631         my $save_as = "$hash";
2632         if (defined $file_name) {
2633                 $save_as = $file_name;
2634         } elsif ($type =~ m/^text\//) {
2635                 $save_as .= '.txt';
2636         }
2638         print $cgi->header(
2639                 -type => "$type",
2640                 -expires=>$expires,
2641                 -content_disposition => "inline; filename=\"$save_as\"");
2642         undef $/;
2643         binmode STDOUT, ':raw';
2644         print <$fd>;
2645         binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
2646         $/ = "\n";
2647         close $fd;
2650 sub git_blob {
2651         my $expires;
2653         if (!defined $hash) {
2654                 if (defined $file_name) {
2655                         my $base = $hash_base || git_get_head_hash($project);
2656                         $hash = git_get_hash_by_path($base, $file_name, "blob")
2657                                 or die_error(undef, "Error lookup file");
2658                 } else {
2659                         die_error(undef, "No file name defined");
2660                 }
2661         } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2662                 # blobs defined by non-textual hash id's can be cached
2663                 $expires = "+1d";
2664         }
2666         my ($have_blame) = gitweb_check_feature('blame');
2667         open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
2668                 or die_error(undef, "Couldn't cat $file_name, $hash");
2669         my $mimetype = blob_mimetype($fd, $file_name);
2670         if ($mimetype !~ m/^text\//) {
2671                 close $fd;
2672                 return git_blob_plain($mimetype);
2673         }
2674         git_header_html(undef, $expires);
2675         my $formats_nav = '';
2676         if (defined $hash_base && (my %co = parse_commit($hash_base))) {
2677                 if (defined $file_name) {
2678                         if ($have_blame) {
2679                                 $formats_nav .=
2680                                         $cgi->a({-href => href(action=>"blame", hash_base=>$hash_base,
2681                                                                hash=>$hash, file_name=>$file_name)},
2682                                                 "blame") .
2683                                         " | ";
2684                         }
2685                         $formats_nav .=
2686                                 $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
2687                                                        hash=>$hash, file_name=>$file_name)},
2688                                         "history") .
2689                                 " | " .
2690                                 $cgi->a({-href => href(action=>"blob_plain",
2691                                                        hash=>$hash, file_name=>$file_name)},
2692                                         "plain") .
2693                                 " | " .
2694                                 $cgi->a({-href => href(action=>"blob",
2695                                                        hash_base=>"HEAD", file_name=>$file_name)},
2696                                         "head");
2697                 } else {
2698                         $formats_nav .=
2699                                 $cgi->a({-href => href(action=>"blob_plain", hash=>$hash)}, "plain");
2700                 }
2701                 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2702                 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
2703         } else {
2704                 print "<div class=\"page_nav\">\n" .
2705                       "<br/><br/></div>\n" .
2706                       "<div class=\"title\">$hash</div>\n";
2707         }
2708         git_print_page_path($file_name, "blob", $hash_base);
2709         print "<div class=\"page_body\">\n";
2710         my $nr;
2711         while (my $line = <$fd>) {
2712                 chomp $line;
2713                 $nr++;
2714                 $line = untabify($line);
2715                 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
2716                        $nr, $nr, $nr, esc_html($line);
2717         }
2718         close $fd
2719                 or print "Reading blob failed.\n";
2720         print "</div>";
2721         git_footer_html();
2724 sub git_tree {
2725         my ($ctype, $suffix, $command) = gitweb_check_feature('snapshot');
2726         my $have_snapshot = (defined $ctype && defined $suffix);
2728         if (!defined $hash) {
2729                 $hash = git_get_head_hash($project);
2730                 if (defined $file_name) {
2731                         my $base = $hash_base || $hash;
2732                         $hash = git_get_hash_by_path($base, $file_name, "tree");
2733                 }
2734                 if (!defined $hash_base) {
2735                         $hash_base = $hash;
2736                 }
2737         }
2738         $/ = "\0";
2739         open my $fd, "-|", git_cmd(), "ls-tree", '-z', $hash
2740                 or die_error(undef, "Open git-ls-tree failed");
2741         my @entries = map { chomp; $_ } <$fd>;
2742         close $fd or die_error(undef, "Reading tree failed");
2743         $/ = "\n";
2745         my $refs = git_get_references();
2746         my $ref = format_ref_marker($refs, $hash_base);
2747         git_header_html();
2748         my $base = "";
2749         my ($have_blame) = gitweb_check_feature('blame');
2750         if (defined $hash_base && (my %co = parse_commit($hash_base))) {
2751                 my @views_nav = ();
2752                 if (defined $file_name) {
2753                         push @views_nav,
2754                                 $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
2755                                                        hash=>$hash, file_name=>$file_name)},
2756                                         "history"),
2757                                 $cgi->a({-href => href(action=>"tree",
2758                                                        hash_base=>"HEAD", file_name=>$file_name)},
2759                                         "head");
2760                 }
2761                 if ($have_snapshot) {
2762                         # FIXME: Should be available when we have no hash base as well.
2763                         push @views_nav,
2764                                 $cgi->a({-href => href(action=>"snapshot")},
2765                                         "snapshot");
2766                 }
2767                 git_print_page_nav('tree','', $hash_base, undef, undef, join(' | ', @views_nav));
2768                 git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash_base);
2769         } else {
2770                 undef $hash_base;
2771                 print "<div class=\"page_nav\">\n";
2772                 print "<br/><br/></div>\n";
2773                 print "<div class=\"title\">$hash</div>\n";
2774         }
2775         if (defined $file_name) {
2776                 $base = esc_html("$file_name/");
2777         }
2778         git_print_page_path($file_name, 'tree', $hash_base);
2779         print "<div class=\"page_body\">\n";
2780         print "<table cellspacing=\"0\">\n";
2781         my $alternate = 0;
2782         foreach my $line (@entries) {
2783                 my %t = parse_ls_tree_line($line, -z => 1);
2785                 if ($alternate) {
2786                         print "<tr class=\"dark\">\n";
2787                 } else {
2788                         print "<tr class=\"light\">\n";
2789                 }
2790                 $alternate ^= 1;
2792                 git_print_tree_entry(\%t, $base, $hash_base, $have_blame);
2794                 print "</tr>\n";
2795         }
2796         print "</table>\n" .
2797               "</div>";
2798         git_footer_html();
2801 sub git_snapshot {
2803         my ($ctype, $suffix, $command) = gitweb_check_feature('snapshot');
2804         my $have_snapshot = (defined $ctype && defined $suffix);
2805         if (!$have_snapshot) {
2806                 die_error('403 Permission denied', "Permission denied");
2807         }
2809         if (!defined $hash) {
2810                 $hash = git_get_head_hash($project);
2811         }
2813         my $filename = basename($project) . "-$hash.tar.$suffix";
2815         print $cgi->header(-type => 'application/x-tar',
2816                            -content_encoding => $ctype,
2817                            -content_disposition => "inline; filename=\"$filename\"",
2818                            -status => '200 OK');
2820         my $git_command = git_cmd_str();
2821         open my $fd, "-|", "$git_command tar-tree $hash \'$project\' | $command" or
2822                 die_error(undef, "Execute git-tar-tree failed.");
2823         binmode STDOUT, ':raw';
2824         print <$fd>;
2825         binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
2826         close $fd;
2830 sub git_log {
2831         my $head = git_get_head_hash($project);
2832         if (!defined $hash) {
2833                 $hash = $head;
2834         }
2835         if (!defined $page) {
2836                 $page = 0;
2837         }
2838         my $refs = git_get_references();
2840         my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
2841         open my $fd, "-|", git_cmd(), "rev-list", $limit, $hash
2842                 or die_error(undef, "Open git-rev-list failed");
2843         my @revlist = map { chomp; $_ } <$fd>;
2844         close $fd;
2846         my $paging_nav = format_paging_nav('log', $hash, $head, $page, $#revlist);
2848         git_header_html();
2849         git_print_page_nav('log','', $hash,undef,undef, $paging_nav);
2851         if (!@revlist) {
2852                 my %co = parse_commit($hash);
2854                 git_print_header_div('summary', $project);
2855                 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
2856         }
2857         for (my $i = ($page * 100); $i <= $#revlist; $i++) {
2858                 my $commit = $revlist[$i];
2859                 my $ref = format_ref_marker($refs, $commit);
2860                 my %co = parse_commit($commit);
2861                 next if !%co;
2862                 my %ad = parse_date($co{'author_epoch'});
2863                 git_print_header_div('commit',
2864                                "<span class=\"age\">$co{'age_string'}</span>" .
2865                                esc_html($co{'title'}) . $ref,
2866                                $commit);
2867                 print "<div class=\"title_text\">\n" .
2868                       "<div class=\"log_link\">\n" .
2869                       $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") .
2870                       " | " .
2871                       $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") .
2872                       "<br/>\n" .
2873                       "</div>\n" .
2874                       "<i>" . esc_html($co{'author_name'}) .  " [$ad{'rfc2822'}]</i><br/>\n" .
2875                       "</div>\n";
2877                 print "<div class=\"log_body\">\n";
2878                 git_print_simplified_log($co{'comment'});
2879                 print "</div>\n";
2880         }
2881         git_footer_html();
2884 sub git_commit {
2885         my %co = parse_commit($hash);
2886         if (!%co) {
2887                 die_error(undef, "Unknown commit object");
2888         }
2889         my %ad = parse_date($co{'author_epoch'}, $co{'author_tz'});
2890         my %cd = parse_date($co{'committer_epoch'}, $co{'committer_tz'});
2892         my $parent = $co{'parent'};
2893         if (!defined $parent) {
2894                 $parent = "--root";
2895         }
2896         open my $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts, $parent, $hash
2897                 or die_error(undef, "Open git-diff-tree failed");
2898         my @difftree = map { chomp; $_ } <$fd>;
2899         close $fd or die_error(undef, "Reading git-diff-tree failed");
2901         # non-textual hash id's can be cached
2902         my $expires;
2903         if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2904                 $expires = "+1d";
2905         }
2906         my $refs = git_get_references();
2907         my $ref = format_ref_marker($refs, $co{'id'});
2909         my ($ctype, $suffix, $command) = gitweb_check_feature('snapshot');
2910         my $have_snapshot = (defined $ctype && defined $suffix);
2912         my @views_nav = ();
2913         if (defined $file_name && defined $co{'parent'}) {
2914                 my $parent = $co{'parent'};
2915                 push @views_nav,
2916                         $cgi->a({-href => href(action=>"blame", hash_parent=>$parent, file_name=>$file_name)},
2917                                 "blame");
2918         }
2919         if (defined $co{'parent'}) {
2920                 push @views_nav,
2921                         $cgi->a({-href => href(action=>"shortlog", hash=>$hash)}, "shortlog"),
2922                         $cgi->a({-href => href(action=>"log", hash=>$hash)}, "log");
2923         }
2924         git_header_html(undef, $expires);
2925         git_print_page_nav('commit', defined $co{'parent'} ? '' : 'commitdiff',
2926                            $hash, $co{'tree'}, $hash,
2927                            join (' | ', @views_nav));
2929         if (defined $co{'parent'}) {
2930                 git_print_header_div('commitdiff', esc_html($co{'title'}) . $ref, $hash);
2931         } else {
2932                 git_print_header_div('tree', esc_html($co{'title'}) . $ref, $co{'tree'}, $hash);
2933         }
2934         print "<div class=\"title_text\">\n" .
2935               "<table cellspacing=\"0\">\n";
2936         print "<tr><td>author</td><td>" . esc_html($co{'author'}) . "</td></tr>\n".
2937               "<tr>" .
2938               "<td></td><td> $ad{'rfc2822'}";
2939         if ($ad{'hour_local'} < 6) {
2940                 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
2941                        $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2942         } else {
2943                 printf(" (%02d:%02d %s)",
2944                        $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2945         }
2946         print "</td>" .
2947               "</tr>\n";
2948         print "<tr><td>committer</td><td>" . esc_html($co{'committer'}) . "</td></tr>\n";
2949         print "<tr><td></td><td> $cd{'rfc2822'}" .
2950               sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) .
2951               "</td></tr>\n";
2952         print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
2953         print "<tr>" .
2954               "<td>tree</td>" .
2955               "<td class=\"sha1\">" .
2956               $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),
2957                        class => "list"}, $co{'tree'}) .
2958               "</td>" .
2959               "<td class=\"link\">" .
2960               $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},
2961                       "tree");
2962         if ($have_snapshot) {
2963                 print " | " .
2964                       $cgi->a({-href => href(action=>"snapshot", hash=>$hash)}, "snapshot");
2965         }
2966         print "</td>" .
2967               "</tr>\n";
2968         my $parents = $co{'parents'};
2969         foreach my $par (@$parents) {
2970                 print "<tr>" .
2971                       "<td>parent</td>" .
2972                       "<td class=\"sha1\">" .
2973                       $cgi->a({-href => href(action=>"commit", hash=>$par),
2974                                class => "list"}, $par) .
2975                       "</td>" .
2976                       "<td class=\"link\">" .
2977                       $cgi->a({-href => href(action=>"commit", hash=>$par)}, "commit") .
2978                       " | " .
2979                       $cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)}, "diff") .
2980                       "</td>" .
2981                       "</tr>\n";
2982         }
2983         print "</table>".
2984               "</div>\n";
2986         print "<div class=\"page_body\">\n";
2987         git_print_log($co{'comment'});
2988         print "</div>\n";
2990         git_difftree_body(\@difftree, $hash, $parent);
2992         git_footer_html();
2995 sub git_blobdiff {
2996         my $format = shift || 'html';
2998         my $fd;
2999         my @difftree;
3000         my %diffinfo;
3001         my $expires;
3003         # preparing $fd and %diffinfo for git_patchset_body
3004         # new style URI
3005         if (defined $hash_base && defined $hash_parent_base) {
3006                 if (defined $file_name) {
3007                         # read raw output
3008                         open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts, $hash_parent_base, $hash_base,
3009                                 "--", $file_name
3010                                 or die_error(undef, "Open git-diff-tree failed");
3011                         @difftree = map { chomp; $_ } <$fd>;
3012                         close $fd
3013                                 or die_error(undef, "Reading git-diff-tree failed");
3014                         @difftree
3015                                 or die_error('404 Not Found', "Blob diff not found");
3017                 } elsif (defined $hash &&
3018                          $hash =~ /[0-9a-fA-F]{40}/) {
3019                         # try to find filename from $hash
3021                         # read filtered raw output
3022                         open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts, $hash_parent_base, $hash_base
3023                                 or die_error(undef, "Open git-diff-tree failed");
3024                         @difftree =
3025                                 # ':100644 100644 03b21826... 3b93d5e7... M     ls-files.c'
3026                                 # $hash == to_id
3027                                 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
3028                                 map { chomp; $_ } <$fd>;
3029                         close $fd
3030                                 or die_error(undef, "Reading git-diff-tree failed");
3031                         @difftree
3032                                 or die_error('404 Not Found', "Blob diff not found");
3034                 } else {
3035                         die_error('404 Not Found', "Missing one of the blob diff parameters");
3036                 }
3038                 if (@difftree > 1) {
3039                         die_error('404 Not Found', "Ambiguous blob diff specification");
3040                 }
3042                 %diffinfo = parse_difftree_raw_line($difftree[0]);
3043                 $file_parent ||= $diffinfo{'from_file'} || $file_name || $diffinfo{'file'};
3044                 $file_name   ||= $diffinfo{'to_file'}   || $diffinfo{'file'};
3046                 $hash_parent ||= $diffinfo{'from_id'};
3047                 $hash        ||= $diffinfo{'to_id'};
3049                 # non-textual hash id's can be cached
3050                 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
3051                     $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
3052                         $expires = '+1d';
3053                 }
3055                 # open patch output
3056                 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
3057                         '-p', $hash_parent_base, $hash_base,
3058                         "--", $file_name
3059                         or die_error(undef, "Open git-diff-tree failed");
3060         }
3062         # old/legacy style URI
3063         if (!%diffinfo && # if new style URI failed
3064             defined $hash && defined $hash_parent) {
3065                 # fake git-diff-tree raw output
3066                 $diffinfo{'from_mode'} = $diffinfo{'to_mode'} = "blob";
3067                 $diffinfo{'from_id'} = $hash_parent;
3068                 $diffinfo{'to_id'}   = $hash;
3069                 if (defined $file_name) {
3070                         if (defined $file_parent) {
3071                                 $diffinfo{'status'} = '2';
3072                                 $diffinfo{'from_file'} = $file_parent;
3073                                 $diffinfo{'to_file'}   = $file_name;
3074                         } else { # assume not renamed
3075                                 $diffinfo{'status'} = '1';
3076                                 $diffinfo{'from_file'} = $file_name;
3077                                 $diffinfo{'to_file'}   = $file_name;
3078                         }
3079                 } else { # no filename given
3080                         $diffinfo{'status'} = '2';
3081                         $diffinfo{'from_file'} = $hash_parent;
3082                         $diffinfo{'to_file'}   = $hash;
3083                 }
3085                 # non-textual hash id's can be cached
3086                 if ($hash =~ m/^[0-9a-fA-F]{40}$/ &&
3087                     $hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
3088                         $expires = '+1d';
3089                 }
3091                 # open patch output
3092                 open $fd, "-|", git_cmd(), "diff", '-p', @diff_opts, $hash_parent, $hash
3093                         or die_error(undef, "Open git-diff failed");
3094         } else  {
3095                 die_error('404 Not Found', "Missing one of the blob diff parameters")
3096                         unless %diffinfo;
3097         }
3099         # header
3100         if ($format eq 'html') {
3101                 my $formats_nav =
3102                         $cgi->a({-href => href(action=>"blobdiff_plain",
3103                                                hash=>$hash, hash_parent=>$hash_parent,
3104                                                hash_base=>$hash_base, hash_parent_base=>$hash_parent_base,
3105                                                file_name=>$file_name, file_parent=>$file_parent)},
3106                                 "plain");
3107                 git_header_html(undef, $expires);
3108                 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
3109                         git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
3110                         git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
3111                 } else {
3112                         print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
3113                         print "<div class=\"title\">$hash vs $hash_parent</div>\n";
3114                 }
3115                 if (defined $file_name) {
3116                         git_print_page_path($file_name, "blob", $hash_base);
3117                 } else {
3118                         print "<div class=\"page_path\"></div>\n";
3119                 }
3121         } elsif ($format eq 'plain') {
3122                 print $cgi->header(
3123                         -type => 'text/plain',
3124                         -charset => 'utf-8',
3125                         -expires => $expires,
3126                         -content_disposition => qq(inline; filename="${file_name}.patch"));
3128                 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
3130         } else {
3131                 die_error(undef, "Unknown blobdiff format");
3132         }
3134         # patch
3135         if ($format eq 'html') {
3136                 print "<div class=\"page_body\">\n";
3138                 git_patchset_body($fd, [ \%diffinfo ], $hash_base, $hash_parent_base);
3139                 close $fd;
3141                 print "</div>\n"; # class="page_body"
3142                 git_footer_html();
3144         } else {
3145                 while (my $line = <$fd>) {
3146                         $line =~ s!a/($hash|$hash_parent)!a/$diffinfo{'from_file'}!g;
3147                         $line =~ s!b/($hash|$hash_parent)!b/$diffinfo{'to_file'}!g;
3149                         print $line;
3151                         last if $line =~ m!^\+\+\+!;
3152                 }
3153                 local $/ = undef;
3154                 print <$fd>;
3155                 close $fd;
3156         }
3159 sub git_blobdiff_plain {
3160         git_blobdiff('plain');
3163 sub git_commitdiff {
3164         my $format = shift || 'html';
3165         my %co = parse_commit($hash);
3166         if (!%co) {
3167                 die_error(undef, "Unknown commit object");
3168         }
3169         if (!defined $hash_parent) {
3170                 $hash_parent = $co{'parent'} || '--root';
3171         }
3173         # read commitdiff
3174         my $fd;
3175         my @difftree;
3176         if ($format eq 'html') {
3177                 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
3178                         "--patch-with-raw", "--full-index", $hash_parent, $hash
3179                         or die_error(undef, "Open git-diff-tree failed");
3181                 while (chomp(my $line = <$fd>)) {
3182                         # empty line ends raw part of diff-tree output
3183                         last unless $line;
3184                         push @difftree, $line;
3185                 }
3187         } elsif ($format eq 'plain') {
3188                 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
3189                         '-p', $hash_parent, $hash
3190                         or die_error(undef, "Open git-diff-tree failed");
3192         } else {
3193                 die_error(undef, "Unknown commitdiff format");
3194         }
3196         # non-textual hash id's can be cached
3197         my $expires;
3198         if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
3199                 $expires = "+1d";
3200         }
3202         # write commit message
3203         if ($format eq 'html') {
3204                 my $refs = git_get_references();
3205                 my $ref = format_ref_marker($refs, $co{'id'});
3206                 my $formats_nav =
3207                         $cgi->a({-href => href(action=>"commitdiff_plain",
3208                                                hash=>$hash, hash_parent=>$hash_parent)},
3209                                 "plain");
3211                 git_header_html(undef, $expires);
3212                 git_print_page_nav('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
3213                 git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash);
3214                 git_print_authorship(\%co);
3215                 print "<div class=\"page_body\">\n";
3216                 print "<div class=\"log\">\n";
3217                 git_print_simplified_log($co{'comment'}, 1); # skip title
3218                 print "</div>\n"; # class="log"
3220         } elsif ($format eq 'plain') {
3221                 my $refs = git_get_references("tags");
3222                 my $tagname = git_get_rev_name_tags($hash);
3223                 my $filename = basename($project) . "-$hash.patch";
3225                 print $cgi->header(
3226                         -type => 'text/plain',
3227                         -charset => 'utf-8',
3228                         -expires => $expires,
3229                         -content_disposition => qq(inline; filename="$filename"));
3230                 my %ad = parse_date($co{'author_epoch'}, $co{'author_tz'});
3231                 print <<TEXT;
3232 From: $co{'author'}
3233 Date: $ad{'rfc2822'} ($ad{'tz_local'})
3234 Subject: $co{'title'}
3235 TEXT
3236                 print "X-Git-Tag: $tagname\n" if $tagname;
3237                 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
3239                 foreach my $line (@{$co{'comment'}}) {
3240                         print "$line\n";
3241                 }
3242                 print "---\n\n";
3243         }
3245         # write patch
3246         if ($format eq 'html') {
3247                 git_difftree_body(\@difftree, $hash, $hash_parent);
3248                 print "<br/>\n";
3250                 git_patchset_body($fd, \@difftree, $hash, $hash_parent);
3251                 close $fd;
3252                 print "</div>\n"; # class="page_body"
3253                 git_footer_html();
3255         } elsif ($format eq 'plain') {
3256                 local $/ = undef;
3257                 print <$fd>;
3258                 close $fd
3259                         or print "Reading git-diff-tree failed\n";
3260         }
3263 sub git_commitdiff_plain {
3264         git_commitdiff('plain');
3267 sub git_history {
3268         if (!defined $hash_base) {
3269                 $hash_base = git_get_head_hash($project);
3270         }
3271         if (!defined $page) {
3272                 $page = 0;
3273         }
3274         my $ftype;
3275         my %co = parse_commit($hash_base);
3276         if (!%co) {
3277                 die_error(undef, "Unknown commit object");
3278         }
3280         my $refs = git_get_references();
3281         my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3283         if (!defined $hash && defined $file_name) {
3284                 $hash = git_get_hash_by_path($hash_base, $file_name);
3285         }
3286         if (defined $hash) {
3287                 $ftype = git_get_type($hash);
3288         }
3290         open my $fd, "-|",
3291                 git_cmd(), "rev-list", $limit, "--full-history", $hash_base, "--", $file_name
3292                         or die_error(undef, "Open git-rev-list-failed");
3293         my @revlist = map { chomp; $_ } <$fd>;
3294         close $fd
3295                 or die_error(undef, "Reading git-rev-list failed");
3297         my $paging_nav = '';
3298         if ($page > 0) {
3299                 $paging_nav .=
3300                         $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,
3301                                                file_name=>$file_name)},
3302                                 "first");
3303                 $paging_nav .= " &sdot; " .
3304                         $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,
3305                                                file_name=>$file_name, page=>$page-1),
3306                                  -accesskey => "p", -title => "Alt-p"}, "prev");
3307         } else {
3308                 $paging_nav .= "first";
3309                 $paging_nav .= " &sdot; prev";
3310         }
3311         if ($#revlist >= (100 * ($page+1)-1)) {
3312                 $paging_nav .= " &sdot; " .
3313                         $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,
3314                                                file_name=>$file_name, page=>$page+1),
3315                                  -accesskey => "n", -title => "Alt-n"}, "next");
3316         } else {
3317                 $paging_nav .= " &sdot; next";
3318         }
3319         my $next_link = '';
3320         if ($#revlist >= (100 * ($page+1)-1)) {
3321                 $next_link =
3322                         $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,
3323                                                file_name=>$file_name, page=>$page+1),
3324                                  -title => "Alt-n"}, "next");
3325         }
3327         git_header_html();
3328         git_print_page_nav('history','', $hash_base,$co{'tree'},$hash_base, $paging_nav);
3329         git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
3330         git_print_page_path($file_name, $ftype, $hash_base);
3332         git_history_body(\@revlist, ($page * 100), $#revlist,
3333                          $refs, $hash_base, $ftype, $next_link);
3335         git_footer_html();
3338 sub git_search {
3339         if (!defined $searchtext) {
3340                 die_error(undef, "Text field empty");
3341         }
3342         if (!defined $hash) {
3343                 $hash = git_get_head_hash($project);
3344         }
3345         my %co = parse_commit($hash);
3346         if (!%co) {
3347                 die_error(undef, "Unknown commit object");
3348         }
3350         my $commit_search = 1;
3351         my $author_search = 0;
3352         my $committer_search = 0;
3353         my $pickaxe_search = 0;
3354         if ($searchtext =~ s/^author\\://i) {
3355                 $author_search = 1;
3356         } elsif ($searchtext =~ s/^committer\\://i) {
3357                 $committer_search = 1;
3358         } elsif ($searchtext =~ s/^pickaxe\\://i) {
3359                 $commit_search = 0;
3360                 $pickaxe_search = 1;
3362                 # pickaxe may take all resources of your box and run for several minutes
3363                 # with every query - so decide by yourself how public you make this feature
3364                 my ($have_pickaxe) = gitweb_check_feature('pickaxe');
3365                 if (!$have_pickaxe) {
3366                         die_error('403 Permission denied', "Permission denied");
3367                 }
3368         }
3369         git_header_html();
3370         git_print_page_nav('','', $hash,$co{'tree'},$hash);
3371         git_print_header_div('commit', esc_html($co{'title'}), $hash);
3373         print "<table cellspacing=\"0\">\n";
3374         my $alternate = 0;
3375         if ($commit_search) {
3376                 $/ = "\0";
3377                 open my $fd, "-|", git_cmd(), "rev-list", "--header", "--parents", $hash or next;
3378                 while (my $commit_text = <$fd>) {
3379                         if (!grep m/$searchtext/i, $commit_text) {
3380                                 next;
3381                         }
3382                         if ($author_search && !grep m/\nauthor .*$searchtext/i, $commit_text) {
3383                                 next;
3384                         }
3385                         if ($committer_search && !grep m/\ncommitter .*$searchtext/i, $commit_text) {
3386                                 next;
3387                         }
3388                         my @commit_lines = split "\n", $commit_text;
3389                         my %co = parse_commit(undef, \@commit_lines);
3390                         if (!%co) {
3391                                 next;
3392                         }
3393                         if ($alternate) {
3394                                 print "<tr class=\"dark\">\n";
3395                         } else {
3396                                 print "<tr class=\"light\">\n";
3397                         }
3398                         $alternate ^= 1;
3399                         print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3400                               "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3401                               "<td>" .
3402                               $cgi->a({-href => href(action=>"commit", hash=>$co{'id'}), -class => "list subject"},
3403                                        esc_html(chop_str($co{'title'}, 50)) . "<br/>");
3404                         my $comment = $co{'comment'};
3405                         foreach my $line (@$comment) {
3406                                 if ($line =~ m/^(.*)($searchtext)(.*)$/i) {
3407                                         my $lead = esc_html($1) || "";
3408                                         $lead = chop_str($lead, 30, 10);
3409                                         my $match = esc_html($2) || "";
3410                                         my $trail = esc_html($3) || "";
3411                                         $trail = chop_str($trail, 30, 10);
3412                                         my $text = "$lead<span class=\"match\">$match</span>$trail";
3413                                         print chop_str($text, 80, 5) . "<br/>\n";
3414                                 }
3415                         }
3416                         print "</td>\n" .
3417                               "<td class=\"link\">" .
3418                               $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})}, "commit") .
3419                               " | " .
3420                               $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})}, "tree");
3421                         print "</td>\n" .
3422                               "</tr>\n";
3423                 }
3424                 close $fd;
3425         }
3427         if ($pickaxe_search) {
3428                 $/ = "\n";
3429                 my $git_command = git_cmd_str();
3430                 open my $fd, "-|", "$git_command rev-list $hash | " .
3431                         "$git_command diff-tree -r --stdin -S\'$searchtext\'";
3432                 undef %co;
3433                 my @files;
3434                 while (my $line = <$fd>) {
3435                         if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
3436                                 my %set;
3437                                 $set{'file'} = $6;
3438                                 $set{'from_id'} = $3;
3439                                 $set{'to_id'} = $4;
3440                                 $set{'id'} = $set{'to_id'};
3441                                 if ($set{'id'} =~ m/0{40}/) {
3442                                         $set{'id'} = $set{'from_id'};
3443                                 }
3444                                 if ($set{'id'} =~ m/0{40}/) {
3445                                         next;
3446                                 }
3447                                 push @files, \%set;
3448                         } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
3449                                 if (%co) {
3450                                         if ($alternate) {
3451                                                 print "<tr class=\"dark\">\n";
3452                                         } else {
3453                                                 print "<tr class=\"light\">\n";
3454                                         }
3455                                         $alternate ^= 1;
3456                                         print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3457                                               "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3458                                               "<td>" .
3459                                               $cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),
3460                                                       -class => "list subject"},
3461                                                       esc_html(chop_str($co{'title'}, 50)) . "<br/>");
3462                                         while (my $setref = shift @files) {
3463                                                 my %set = %$setref;
3464                                                 print $cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},
3465                                                                              hash=>$set{'id'}, file_name=>$set{'file'}),
3466                                                               -class => "list"},
3467                                                               "<span class=\"match\">" . esc_html($set{'file'}) . "</span>") .
3468                                                       "<br/>\n";
3469                                         }
3470                                         print "</td>\n" .
3471                                               "<td class=\"link\">" .
3472                                               $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})}, "commit") .
3473                                               " | " .
3474                                               $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})}, "tree");
3475                                         print "</td>\n" .
3476                                               "</tr>\n";
3477                                 }
3478                                 %co = parse_commit($1);
3479                         }
3480                 }
3481                 close $fd;
3482         }
3483         print "</table>\n";
3484         git_footer_html();
3487 sub git_shortlog {
3488         my $head = git_get_head_hash($project);
3489         if (!defined $hash) {
3490                 $hash = $head;
3491         }
3492         if (!defined $page) {
3493                 $page = 0;
3494         }
3495         my $refs = git_get_references();
3497         my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3498         open my $fd, "-|", git_cmd(), "rev-list", $limit, $hash
3499                 or die_error(undef, "Open git-rev-list failed");
3500         my @revlist = map { chomp; $_ } <$fd>;
3501         close $fd;
3503         my $paging_nav = format_paging_nav('shortlog', $hash, $head, $page, $#revlist);
3504         my $next_link = '';
3505         if ($#revlist >= (100 * ($page+1)-1)) {
3506                 $next_link =
3507                         $cgi->a({-href => href(action=>"shortlog", hash=>$hash, page=>$page+1),
3508                                  -title => "Alt-n"}, "next");
3509         }
3512         git_header_html();
3513         git_print_page_nav('shortlog','', $hash,$hash,$hash, $paging_nav);
3514         git_print_header_div('summary', $project);
3516         git_shortlog_body(\@revlist, ($page * 100), $#revlist, $refs, $next_link);
3518         git_footer_html();
3521 ## ......................................................................
3522 ## feeds (RSS, OPML)
3524 sub git_rss {
3525         # http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
3526         open my $fd, "-|", git_cmd(), "rev-list", "--max-count=150", git_get_head_hash($project)
3527                 or die_error(undef, "Open git-rev-list failed");
3528         my @revlist = map { chomp; $_ } <$fd>;
3529         close $fd or die_error(undef, "Reading git-rev-list failed");
3530         print $cgi->header(-type => 'text/xml', -charset => 'utf-8');
3531         print <<XML;
3532 <?xml version="1.0" encoding="utf-8"?>
3533 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
3534 <channel>
3535 <title>$project $my_uri $my_url</title>
3536 <link>${\esc_html("$my_url?p=$project;a=summary")}</link>
3537 <description>$project log</description>
3538 <language>en</language>
3539 XML
3541         for (my $i = 0; $i <= $#revlist; $i++) {
3542                 my $commit = $revlist[$i];
3543                 my %co = parse_commit($commit);
3544                 # we read 150, we always show 30 and the ones more recent than 48 hours
3545                 if (($i >= 20) && ((time - $co{'committer_epoch'}) > 48*60*60)) {
3546                         last;
3547                 }
3548                 my %cd = parse_date($co{'committer_epoch'});
3549                 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
3550                         $co{'parent'}, $co{'id'}
3551                         or next;
3552                 my @difftree = map { chomp; $_ } <$fd>;
3553                 close $fd
3554                         or next;
3555                 print "<item>\n" .
3556                       "<title>" .
3557                       sprintf("%d %s %02d:%02d", $cd{'mday'}, $cd{'month'}, $cd{'hour'}, $cd{'minute'}) . " - " . esc_html($co{'title'}) .
3558                       "</title>\n" .
3559                       "<author>" . esc_html($co{'author'}) . "</author>\n" .
3560                       "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
3561                       "<guid isPermaLink=\"true\">" . esc_html("$my_url?p=$project;a=commit;h=$commit") . "</guid>\n" .
3562                       "<link>" . esc_html("$my_url?p=$project;a=commit;h=$commit") . "</link>\n" .
3563                       "<description>" . esc_html($co{'title'}) . "</description>\n" .
3564                       "<content:encoded>" .
3565                       "<![CDATA[\n";
3566                 my $comment = $co{'comment'};
3567                 foreach my $line (@$comment) {
3568                         $line = decode("utf8", $line, Encode::FB_DEFAULT);
3569                         print "$line<br/>\n";
3570                 }
3571                 print "<br/>\n";
3572                 foreach my $line (@difftree) {
3573                         if (!($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/)) {
3574                                 next;
3575                         }
3576                         my $file = validate_input(unquote($7));
3577                         $file = decode("utf8", $file, Encode::FB_DEFAULT);
3578                         print "$file<br/>\n";
3579                 }
3580                 print "]]>\n" .
3581                       "</content:encoded>\n" .
3582                       "</item>\n";
3583         }
3584         print "</channel></rss>";
3587 sub git_opml {
3588         my @list = git_get_projects_list();
3590         print $cgi->header(-type => 'text/xml', -charset => 'utf-8');
3591         print <<XML;
3592 <?xml version="1.0" encoding="utf-8"?>
3593 <opml version="1.0">
3594 <head>
3595   <title>$site_name Git OPML Export</title>
3596 </head>
3597 <body>
3598 <outline text="git RSS feeds">
3599 XML
3601         foreach my $pr (@list) {
3602                 my %proj = %$pr;
3603                 my $head = git_get_head_hash($proj{'path'});
3604                 if (!defined $head) {
3605                         next;
3606                 }
3607                 $git_dir = "$projectroot/$proj{'path'}";
3608                 my %co = parse_commit($head);
3609                 if (!%co) {
3610                         next;
3611                 }
3613                 my $path = esc_html(chop_str($proj{'path'}, 25, 5));
3614                 my $rss  = "$my_url?p=$proj{'path'};a=rss";
3615                 my $html = "$my_url?p=$proj{'path'};a=summary";
3616                 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
3617         }
3618         print <<XML;
3619 </outline>
3620 </body>
3621 </opml>
3622 XML